symtable.pas 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl, Pierre Muller
  3. This unit handles the symbol tables
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit symtable;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. { common }
  22. cutils,cclasses,globtype,tokens,
  23. { symtable }
  24. symconst,symbase,symtype,symdef,symsym,
  25. { ppu }
  26. ppu;
  27. {****************************************************************************
  28. Symtable types
  29. ****************************************************************************}
  30. type
  31. tstoredsymtable = class(TSymtable)
  32. private
  33. init_final_check_done : boolean;
  34. procedure _needs_init_final(sym:TObject;arg:pointer);
  35. procedure check_forward(sym:TObject;arg:pointer);
  36. procedure labeldefined(sym:TObject;arg:pointer);
  37. procedure varsymbolused(sym:TObject;arg:pointer);
  38. procedure TestPrivate(sym:TObject;arg:pointer);
  39. procedure objectprivatesymbolused(sym:TObject;arg:pointer);
  40. procedure loaddefs(ppufile:tcompilerppufile);
  41. procedure loadsyms(ppufile:tcompilerppufile);
  42. procedure writedefs(ppufile:tcompilerppufile);
  43. procedure writesyms(ppufile:tcompilerppufile);
  44. public
  45. procedure insert(sym:TSymEntry;checkdup:boolean=true);override;
  46. procedure delete(sym:TSymEntry);override;
  47. { load/write }
  48. procedure ppuload(ppufile:tcompilerppufile);virtual;
  49. procedure ppuwrite(ppufile:tcompilerppufile);virtual;
  50. procedure buildderef;virtual;
  51. procedure buildderefimpl;virtual;
  52. procedure deref;virtual;
  53. procedure derefimpl;virtual;
  54. function checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;override;
  55. procedure allsymbolsused;
  56. procedure allprivatesused;
  57. procedure check_forwards;
  58. procedure checklabels;
  59. function needs_init_final : boolean;
  60. procedure testfordefaultproperty(sym:TObject;arg:pointer);
  61. end;
  62. tabstractrecordsymtable = class(tstoredsymtable)
  63. public
  64. usefieldalignment, { alignment to use for fields (PACKRECORDS value), C_alignment is C style }
  65. recordalignment, { alignment desired when inserting this record }
  66. fieldalignment, { alignment current alignment used when fields are inserted }
  67. padalignment : shortint; { size to a multiple of which the symtable has to be rounded up }
  68. constructor create(const n:string;usealign:shortint);
  69. procedure ppuload(ppufile:tcompilerppufile);override;
  70. procedure ppuwrite(ppufile:tcompilerppufile);override;
  71. procedure alignrecord(fieldoffset:asizeint;varalign:shortint);
  72. procedure addfield(sym:tfieldvarsym;vis:tvisibility);
  73. procedure addfieldlist(list: tfpobjectlist; maybereorder: boolean);
  74. procedure addalignmentpadding;
  75. procedure insertdef(def:TDefEntry);override;
  76. function is_packed: boolean;
  77. function has_single_field(out sym:tfieldvarsym): boolean;
  78. function get_unit_symtable: tsymtable;
  79. protected
  80. { size in bytes including padding }
  81. _datasize : asizeint;
  82. { size in bits of the data in case of bitpacked record. Only important during construction, }
  83. { no need to save in/restore from ppu file. datasize is always (databitsize+7) div 8. }
  84. databitsize : asizeint;
  85. { size in bytes of padding }
  86. _paddingsize : word;
  87. procedure setdatasize(val: asizeint);
  88. function getfieldoffset(sym: tfieldvarsym; base: asizeint; var globalfieldalignment: shortint): asizeint;
  89. public
  90. function iscurrentunit: boolean; override;
  91. property datasize : asizeint read _datasize write setdatasize;
  92. property paddingsize: word read _paddingsize write _paddingsize;
  93. end;
  94. trecordsymtable = class(tabstractrecordsymtable)
  95. public
  96. constructor create(const n:string;usealign:shortint);
  97. procedure insertunionst(unionst : trecordsymtable;offset : longint);
  98. end;
  99. tObjectSymtable = class(tabstractrecordsymtable)
  100. public
  101. constructor create(adefowner:tdef;const n:string;usealign:shortint);
  102. function checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;override;
  103. end;
  104. { tabstractlocalsymtable }
  105. tabstractlocalsymtable = class(tstoredsymtable)
  106. public
  107. procedure ppuwrite(ppufile:tcompilerppufile);override;
  108. function count_locals:longint;
  109. end;
  110. tlocalsymtable = class(tabstractlocalsymtable)
  111. public
  112. constructor create(adefowner:tdef;level:byte);
  113. function checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;override;
  114. end;
  115. { tparasymtable }
  116. tparasymtable = class(tabstractlocalsymtable)
  117. public
  118. readonly: boolean;
  119. constructor create(adefowner:tdef;level:byte);
  120. function checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;override;
  121. procedure insertdef(def:TDefEntry);override;
  122. end;
  123. tabstractuniTSymtable = class(tstoredsymtable)
  124. public
  125. constructor create(const n : string;id:word);
  126. function checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;override;
  127. function findnamespace(const n:string):TSymEntry;virtual;
  128. function iscurrentunit:boolean;override;
  129. procedure insertunit(sym:TSymEntry);
  130. end;
  131. tglobalsymtable = class(tabstractuniTSymtable)
  132. public
  133. unittypecount : word;
  134. constructor create(const n : string;id:word);
  135. procedure ppuload(ppufile:tcompilerppufile);override;
  136. procedure ppuwrite(ppufile:tcompilerppufile);override;
  137. end;
  138. tstaticsymtable = class(tabstractuniTSymtable)
  139. public
  140. constructor create(const n : string;id:word);
  141. procedure ppuload(ppufile:tcompilerppufile);override;
  142. procedure ppuwrite(ppufile:tcompilerppufile);override;
  143. function checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;override;
  144. function findnamespace(const n:string):TSymEntry;override;
  145. end;
  146. tspecializesymtable = class(tglobalsymtable)
  147. public
  148. constructor create(const n : string;id:word);
  149. function iscurrentunit:boolean;override;
  150. end;
  151. twithsymtable = class(TSymtable)
  152. withrefnode : tobject; { tnode }
  153. constructor create(aowner:tdef;ASymList:TFPHashObjectList;refnode:tobject{tnode});
  154. destructor destroy;override;
  155. procedure clear;override;
  156. procedure insertdef(def:TDefEntry);override;
  157. end;
  158. tstt_excepTSymtable = class(TSymtable)
  159. public
  160. constructor create;
  161. end;
  162. tmacrosymtable = class(tstoredsymtable)
  163. public
  164. constructor create(exported: boolean);
  165. end;
  166. { tenumsymtable }
  167. tenumsymtable = class(tstoredsymtable)
  168. public
  169. procedure insert(sym: TSymEntry; checkdup: boolean = true); override;
  170. constructor create(adefowner:tdef);
  171. end;
  172. { tarraysymtable }
  173. tarraysymtable = class(tstoredsymtable)
  174. public
  175. procedure insertdef(def:TDefEntry);override;
  176. constructor create(adefowner:tdef);
  177. end;
  178. var
  179. systemunit : tglobalsymtable; { pointer to the system unit }
  180. type
  181. tsymbol_search_flag = (
  182. ssf_search_option,
  183. ssf_search_helper,
  184. ssf_has_inherited,
  185. ssf_no_addsymref
  186. );
  187. tsymbol_search_flags = set of tsymbol_search_flag;
  188. {****************************************************************************
  189. Functions
  190. ****************************************************************************}
  191. {*** Misc ***}
  192. function FullTypeName(def,otherdef:tdef):string;
  193. function generate_nested_name(symtable:tsymtable;delimiter:string):string;
  194. { def is the extended type of a helper }
  195. function generate_objectpascal_helper_key(def:tdef):string;
  196. procedure incompatibletypes(def1,def2:tdef);
  197. procedure hidesym(sym:TSymEntry);
  198. procedure duplicatesym(var hashedid: THashedIDString; dupsym, origsym:TSymEntry; warn: boolean);
  199. function handle_generic_dummysym(sym:TSymEntry;var symoptions:tsymoptions):boolean;
  200. function get_jumpbuf_size : longint;
  201. {*** Search ***}
  202. procedure addsymref(sym:tsym);
  203. function is_owned_by(nesteddef,ownerdef:tdef):boolean;
  204. function sym_is_owned_by(childsym:tsym;symtable:tsymtable):boolean;
  205. function defs_belong_to_same_generic(def1,def2:tdef):boolean;
  206. function get_generic_in_hierarchy_by_name(srsym:tsym;def:tdef):tdef;
  207. function return_specialization_of_generic(nesteddef,genericdef:tdef;out resultdef:tdef):boolean;
  208. function is_visible_for_object(symst:tsymtable;symvisibility:tvisibility;contextobjdef:tabstractrecorddef):boolean;
  209. function is_visible_for_object(pd:tprocdef;contextobjdef:tabstractrecorddef):boolean;
  210. function is_visible_for_object(sym:tsym;contextobjdef:tabstractrecorddef):boolean;
  211. function searchsym(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  212. function searchsym_with_flags(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  213. function searchsym_maybe_with_symoption(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags;option:tsymoption):boolean;
  214. { searches for a symbol with the given name that has the given option in
  215. symoptions set }
  216. function searchsym_with_symoption(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;option:tsymoption):boolean;
  217. function searchsym_type(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  218. function searchsym_in_module(pm:pointer;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  219. function searchsym_in_named_module(const unitname, symname: TIDString; out srsym: tsym; out srsymtable: tsymtable): boolean;
  220. function searchsym_in_class(classh: tobjectdef; contextclassh:tabstractrecorddef;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  221. function searchsym_in_record(recordh:tabstractrecorddef;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  222. function searchsym_in_class_by_msgint(classh:tobjectdef;msgid:longint;out srdef : tdef;out srsym:tsym;out srsymtable:TSymtable):boolean;
  223. function searchsym_in_class_by_msgstr(classh:tobjectdef;const s:string;out srsym:tsym;out srsymtable:TSymtable):boolean;
  224. { searches symbols inside of a helper's implementation }
  225. function searchsym_in_helper(classh,contextclassh:tobjectdef;const s: TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  226. function search_system_type(const s: TIDString): ttypesym;
  227. function try_search_system_type(const s: TIDString): ttypesym;
  228. function search_system_proc(const s: TIDString): tprocdef;
  229. function search_named_unit_globaltype(const unitname, typename: TIDString; throwerror: boolean): ttypesym;
  230. function search_struct_member(pd : tabstractrecorddef;const s : string):tsym;
  231. function search_struct_member_no_helper(pd : tabstractrecorddef;const s : string):tsym;
  232. function search_assignment_operator(from_def,to_def:Tdef;explicit:boolean):Tprocdef;
  233. function search_enumerator_operator(from_def,to_def:Tdef):Tprocdef;
  234. { searches for the helper definition that's currently active for pd }
  235. function search_last_objectpascal_helper(pd : tdef;contextclassh : tabstractrecorddef;out odef : tobjectdef):boolean;
  236. { searches whether the symbol s is available in the currently active }
  237. { helper for pd }
  238. function search_objectpascal_helper(pd : tdef;contextclassh : tabstractrecorddef;const s : string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  239. function search_objc_helper(pd : tobjectdef;const s : string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  240. function search_objc_method(const s : string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  241. {Looks for macro s (must be given in upper case) in the macrosymbolstack, }
  242. {and returns it if found. Returns nil otherwise.}
  243. function search_macro(const s : string):tsym;
  244. { Additionally to searching for a macro, also checks whether it's still }
  245. { actually defined (could be disable using "undef") }
  246. function defined_macro(const s : string):boolean;
  247. { Look for a system procedure (no overloads supported) }
  248. {*** Object Helpers ***}
  249. function search_default_property(pd : tabstractrecorddef) : tpropertysym;
  250. function maybe_find_real_class_definition(pd: tdef; erroronfailure: boolean): tdef;
  251. function find_real_class_definition(pd: tobjectdef; erroronfailure: boolean): tobjectdef;
  252. {*** Macro Helpers ***}
  253. {If called initially, the following procedures manipulate macros in }
  254. {initialmacrotable, otherwise they manipulate system macros local to a module.}
  255. {Name can be given in any case (it will be converted to upper case).}
  256. procedure def_system_macro(const name : string);
  257. procedure set_system_macro(const name, value : string);
  258. procedure set_system_compvar(const name, value : string);
  259. procedure undef_system_macro(const name : string);
  260. {*** symtable stack ***}
  261. { $ifdef DEBUG
  262. procedure test_symtablestack;
  263. procedure list_symtablestack;
  264. $endif DEBUG}
  265. {$ifdef UNITALIASES}
  266. type
  267. punit_alias = ^tunit_alias;
  268. tunit_alias = object(TNamedIndexItem)
  269. newname : pshortstring;
  270. constructor init(const n:string);
  271. destructor done;virtual;
  272. end;
  273. var
  274. unitaliases : pdictionary;
  275. procedure addunitalias(const n:string);
  276. function getunitalias(const n:string):string;
  277. {$endif UNITALIASES}
  278. {*** Init / Done ***}
  279. procedure IniTSymtable;
  280. procedure DoneSymtable;
  281. const
  282. overloaded_names : array [NOTOKEN..last_overloaded] of string[16] = (
  283. { NOTOKEN } 'error',
  284. { _PLUS } 'plus',
  285. { _MINUS } 'minus',
  286. { _STAR } 'star',
  287. { _SLASH } 'slash',
  288. { _EQ } 'equal',
  289. { _GT } 'greater',
  290. { _LT } 'lower',
  291. { _GTE } 'greater_or_equal',
  292. { _LTE } 'lower_or_equal',
  293. { _NE } 'not_equal',
  294. { _SYMDIF } 'sym_diff',
  295. { _STARSTAR } 'starstar',
  296. { _OP_AS } 'as',
  297. { _OP_IN } 'in',
  298. { _OP_IS } 'is',
  299. { _OP_OR } 'or',
  300. { _OP_AND } 'and',
  301. { _OP_DIV } 'div',
  302. { _OP_MOD } 'mod',
  303. { _OP_NOT } 'not',
  304. { _OP_SHL } 'shl',
  305. { _OP_SHR } 'shr',
  306. { _OP_XOR } 'xor',
  307. { _ASSIGNMENT } 'assign',
  308. { _OP_EXPLICIT } 'explicit',
  309. { _OP_ENUMERATOR } 'enumerator',
  310. { _OP_INC } 'inc',
  311. { _OP_DEC } 'dec');
  312. implementation
  313. uses
  314. { global }
  315. verbose,globals,
  316. { symtable }
  317. symutil,defutil,defcmp,
  318. { module }
  319. fmodule,
  320. { codegen }
  321. procinfo
  322. ;
  323. var
  324. dupnr : longint; { unique number for duplicate symbols }
  325. {*****************************************************************************
  326. TStoredSymtable
  327. *****************************************************************************}
  328. procedure tstoredsymtable.insert(sym:TSymEntry;checkdup:boolean=true);
  329. begin
  330. inherited insert(sym,checkdup);
  331. end;
  332. procedure tstoredsymtable.delete(sym:TSymEntry);
  333. begin
  334. inherited delete(sym);
  335. end;
  336. procedure tstoredsymtable.ppuload(ppufile:tcompilerppufile);
  337. begin
  338. { load the table's flags }
  339. if ppufile.readentry<>ibsymtableoptions then
  340. Message(unit_f_ppu_read_error);
  341. ppufile.getsmallset(tableoptions);
  342. { load definitions }
  343. loaddefs(ppufile);
  344. { load symbols }
  345. loadsyms(ppufile);
  346. init_final_check_done:=true;
  347. end;
  348. procedure tstoredsymtable.ppuwrite(ppufile:tcompilerppufile);
  349. begin
  350. { ensure that we have the sto_needs_init_final flag set if needed }
  351. if not init_final_check_done then
  352. needs_init_final;
  353. { write the table's flags }
  354. ppufile.putsmallset(tableoptions);
  355. ppufile.writeentry(ibsymtableoptions);
  356. { write definitions }
  357. writedefs(ppufile);
  358. { write symbols }
  359. writesyms(ppufile);
  360. end;
  361. procedure tstoredsymtable.loaddefs(ppufile:tcompilerppufile);
  362. var
  363. def : tdef;
  364. b : byte;
  365. begin
  366. def:=nil;
  367. { load start of definition section, which holds the amount of defs }
  368. if ppufile.readentry<>ibstartdefs then
  369. Message(unit_f_ppu_read_error);
  370. { read definitions }
  371. repeat
  372. b:=ppufile.readentry;
  373. case b of
  374. ibpointerdef : def:=cpointerdef.ppuload(ppufile);
  375. ibarraydef : def:=carraydef.ppuload(ppufile);
  376. iborddef : def:=corddef.ppuload(ppufile);
  377. ibfloatdef : def:=cfloatdef.ppuload(ppufile);
  378. ibprocdef : def:=cprocdef.ppuload(ppufile);
  379. ibshortstringdef : def:=cstringdef.loadshort(ppufile);
  380. iblongstringdef : def:=cstringdef.loadlong(ppufile);
  381. ibansistringdef : def:=cstringdef.loadansi(ppufile);
  382. ibwidestringdef : def:=cstringdef.loadwide(ppufile);
  383. ibunicodestringdef : def:=cstringdef.loadunicode(ppufile);
  384. ibrecorddef : def:=crecorddef.ppuload(ppufile);
  385. ibobjectdef : def:=cobjectdef.ppuload(ppufile);
  386. ibenumdef : def:=cenumdef.ppuload(ppufile);
  387. ibsetdef : def:=csetdef.ppuload(ppufile);
  388. ibprocvardef : def:=cprocvardef.ppuload(ppufile);
  389. ibfiledef : def:=cfiledef.ppuload(ppufile);
  390. ibclassrefdef : def:=cclassrefdef.ppuload(ppufile);
  391. ibformaldef : def:=cformaldef.ppuload(ppufile);
  392. ibvariantdef : def:=cvariantdef.ppuload(ppufile);
  393. ibundefineddef : def:=cundefineddef.ppuload(ppufile);
  394. ibenddefs : break;
  395. ibend : Message(unit_f_ppu_read_error);
  396. else
  397. Message1(unit_f_ppu_invalid_entry,tostr(b));
  398. end;
  399. InsertDef(def);
  400. until false;
  401. end;
  402. procedure tstoredsymtable.loadsyms(ppufile:tcompilerppufile);
  403. var
  404. b : byte;
  405. sym : tsym;
  406. begin
  407. sym:=nil;
  408. { load start of definition section, which holds the amount of defs }
  409. if ppufile.readentry<>ibstartsyms then
  410. Message(unit_f_ppu_read_error);
  411. { now read the symbols }
  412. repeat
  413. b:=ppufile.readentry;
  414. case b of
  415. ibtypesym : sym:=ctypesym.ppuload(ppufile);
  416. ibprocsym : sym:=cprocsym.ppuload(ppufile);
  417. ibconstsym : sym:=cconstsym.ppuload(ppufile);
  418. ibstaticvarsym : sym:=cstaticvarsym.ppuload(ppufile);
  419. iblocalvarsym : sym:=clocalvarsym.ppuload(ppufile);
  420. ibparavarsym : sym:=cparavarsym.ppuload(ppufile);
  421. ibfieldvarsym : sym:=cfieldvarsym.ppuload(ppufile);
  422. ibabsolutevarsym : sym:=cabsolutevarsym.ppuload(ppufile);
  423. ibenumsym : sym:=cenumsym.ppuload(ppufile);
  424. ibpropertysym : sym:=cpropertysym.ppuload(ppufile);
  425. ibunitsym : sym:=cunitsym.ppuload(ppufile);
  426. iblabelsym : sym:=clabelsym.ppuload(ppufile);
  427. ibsyssym : sym:=csyssym.ppuload(ppufile);
  428. ibmacrosym : sym:=tmacro.ppuload(ppufile);
  429. ibnamespacesym : sym:=cnamespacesym.ppuload(ppufile);
  430. ibendsyms : break;
  431. ibend : Message(unit_f_ppu_read_error);
  432. else
  433. Message1(unit_f_ppu_invalid_entry,tostr(b));
  434. end;
  435. Insert(sym,false);
  436. until false;
  437. end;
  438. procedure tstoredsymtable.writedefs(ppufile:tcompilerppufile);
  439. var
  440. i : longint;
  441. def : tstoreddef;
  442. begin
  443. { each definition get a number, write then the amount of defs to the
  444. ibstartdef entry }
  445. ppufile.putlongint(DefList.count);
  446. ppufile.writeentry(ibstartdefs);
  447. { now write the definition }
  448. for i:=0 to DefList.Count-1 do
  449. begin
  450. def:=tstoreddef(DefList[i]);
  451. def.ppuwrite(ppufile);
  452. end;
  453. { write end of definitions }
  454. ppufile.writeentry(ibenddefs);
  455. end;
  456. procedure tstoredsymtable.writesyms(ppufile:tcompilerppufile);
  457. var
  458. i : longint;
  459. sym : Tstoredsym;
  460. begin
  461. { each definition get a number, write then the amount of syms and the
  462. datasize to the ibsymdef entry }
  463. ppufile.putlongint(SymList.count);
  464. ppufile.writeentry(ibstartsyms);
  465. { foreach is used to write all symbols }
  466. for i:=0 to SymList.Count-1 do
  467. begin
  468. sym:=tstoredsym(SymList[i]);
  469. sym.ppuwrite(ppufile);
  470. end;
  471. { end of symbols }
  472. ppufile.writeentry(ibendsyms);
  473. end;
  474. procedure tstoredsymtable.buildderef;
  475. var
  476. i : longint;
  477. def : tstoreddef;
  478. sym : tstoredsym;
  479. begin
  480. { interface definitions }
  481. for i:=0 to DefList.Count-1 do
  482. begin
  483. def:=tstoreddef(DefList[i]);
  484. def.buildderef;
  485. end;
  486. { interface symbols }
  487. for i:=0 to SymList.Count-1 do
  488. begin
  489. sym:=tstoredsym(SymList[i]);
  490. sym.buildderef;
  491. end;
  492. end;
  493. procedure tstoredsymtable.buildderefimpl;
  494. var
  495. i : longint;
  496. def : tstoreddef;
  497. begin
  498. { implementation definitions }
  499. for i:=0 to DefList.Count-1 do
  500. begin
  501. def:=tstoreddef(DefList[i]);
  502. def.buildderefimpl;
  503. end;
  504. end;
  505. procedure tstoredsymtable.deref;
  506. var
  507. i : longint;
  508. def : tstoreddef;
  509. sym : tstoredsym;
  510. begin
  511. { first deref the interface ttype symbols. This is needs
  512. to be done before the interface defs are derefed, because
  513. the interface defs can contain references to the type symbols
  514. which then already need to contain a resolved typedef field (PFV) }
  515. for i:=0 to SymList.Count-1 do
  516. begin
  517. sym:=tstoredsym(SymList[i]);
  518. if sym.typ=typesym then
  519. sym.deref;
  520. end;
  521. { interface definitions }
  522. for i:=0 to DefList.Count-1 do
  523. begin
  524. def:=tstoreddef(DefList[i]);
  525. def.deref;
  526. end;
  527. { interface symbols }
  528. for i:=0 to SymList.Count-1 do
  529. begin
  530. sym:=tstoredsym(SymList[i]);
  531. if sym.typ<>typesym then
  532. sym.deref;
  533. end;
  534. end;
  535. procedure tstoredsymtable.derefimpl;
  536. var
  537. i : longint;
  538. def : tstoreddef;
  539. begin
  540. { implementation definitions }
  541. for i:=0 to DefList.Count-1 do
  542. begin
  543. def:=tstoreddef(DefList[i]);
  544. def.derefimpl;
  545. end;
  546. end;
  547. function tstoredsymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  548. var
  549. hsym : tsym;
  550. begin
  551. hsym:=tsym(FindWithHash(hashedid));
  552. if assigned(hsym) then
  553. DuplicateSym(hashedid,sym,hsym,false);
  554. result:=assigned(hsym);
  555. end;
  556. {**************************************
  557. Callbacks
  558. **************************************}
  559. procedure TStoredSymtable.check_forward(sym:TObject;arg:pointer);
  560. begin
  561. if tsym(sym).typ=procsym then
  562. tprocsym(sym).check_forward
  563. { check also object method table }
  564. { we needn't to test the def list }
  565. { because each object has to have a type sym,
  566. only test objects declarations, not type renamings }
  567. else
  568. if (tsym(sym).typ=typesym) and
  569. assigned(ttypesym(sym).typedef) and
  570. (ttypesym(sym).typedef.typesym=ttypesym(sym)) and
  571. (ttypesym(sym).typedef.typ in [objectdef,recorddef]) then
  572. tabstractrecorddef(ttypesym(sym).typedef).check_forwards;
  573. end;
  574. procedure TStoredSymtable.labeldefined(sym:TObject;arg:pointer);
  575. begin
  576. if (tsym(sym).typ=labelsym) and
  577. not(tlabelsym(sym).defined) then
  578. begin
  579. if tlabelsym(sym).used then
  580. Message1(sym_e_label_used_and_not_defined,tlabelsym(sym).realname)
  581. else
  582. Message1(sym_w_label_not_defined,tlabelsym(sym).realname);
  583. end;
  584. end;
  585. procedure TStoredSymtable.varsymbolused(sym:TObject;arg:pointer);
  586. begin
  587. if (tsym(sym).typ in [staticvarsym,localvarsym,paravarsym,fieldvarsym]) and
  588. ((tsym(sym).owner.symtabletype in
  589. [parasymtable,localsymtable,ObjectSymtable,recordsymtable,staticsymtable])) then
  590. begin
  591. { unused symbol should be reported only if no }
  592. { error is reported }
  593. { if the symbol is in a register it is used }
  594. { also don't count the value parameters which have local copies }
  595. { also don't claim for high param of open parameters (PM) }
  596. { also don't complain about unused symbols in generic procedures }
  597. { and methods }
  598. if (Errorcount<>0) or
  599. ([vo_is_hidden_para,vo_is_funcret] * tabstractvarsym(sym).varoptions = [vo_is_hidden_para]) or
  600. (sp_internal in tsym(sym).symoptions) or
  601. ((assigned(tsym(sym).owner.defowner) and
  602. (tsym(sym).owner.defowner.typ=procdef) and
  603. (df_generic in tprocdef(tsym(sym).owner.defowner).defoptions))) then
  604. exit;
  605. if (tstoredsym(sym).refs=0) then
  606. begin
  607. if (vo_is_funcret in tabstractvarsym(sym).varoptions) then
  608. begin
  609. { don't warn about the result of constructors }
  610. if ((tsym(sym).owner.symtabletype<>localsymtable) or
  611. (tprocdef(tsym(sym).owner.defowner).proctypeoption<>potype_constructor)) and
  612. not(cs_opt_nodedfa in current_settings.optimizerswitches) then
  613. MessagePos(tsym(sym).fileinfo,sym_w_function_result_not_set)
  614. end
  615. else if (tsym(sym).owner.symtabletype=parasymtable) then
  616. MessagePos1(tsym(sym).fileinfo,sym_h_para_identifier_not_used,tsym(sym).prettyname)
  617. else if (tsym(sym).owner.symtabletype in [ObjectSymtable,recordsymtable]) then
  618. MessagePos2(tsym(sym).fileinfo,sym_n_private_identifier_not_used,tabstractrecorddef(tsym(sym).owner.defowner).GetTypeName,tsym(sym).prettyname)
  619. else
  620. MessagePos1(tsym(sym).fileinfo,sym_n_local_identifier_not_used,tsym(sym).prettyname);
  621. end
  622. else if tabstractvarsym(sym).varstate in [vs_written,vs_initialised] then
  623. begin
  624. if (tsym(sym).owner.symtabletype=parasymtable) then
  625. begin
  626. if not(tabstractvarsym(sym).varspez in [vs_var,vs_out,vs_constref]) and
  627. not(vo_is_funcret in tabstractvarsym(sym).varoptions) then
  628. MessagePos1(tsym(sym).fileinfo,sym_h_para_identifier_only_set,tsym(sym).prettyname)
  629. end
  630. else if (tsym(sym).owner.symtabletype in [ObjectSymtable,recordsymtable]) then
  631. MessagePos2(tsym(sym).fileinfo,sym_n_private_identifier_only_set,tabstractrecorddef(tsym(sym).owner.defowner).GetTypeName,tsym(sym).prettyname)
  632. else if tabstractvarsym(sym).varoptions*[vo_is_funcret,vo_is_public,vo_is_external]=[] then
  633. MessagePos1(tsym(sym).fileinfo,sym_n_local_identifier_only_set,tsym(sym).prettyname);
  634. end
  635. else if (tabstractvarsym(sym).varstate = vs_read_not_warned) and
  636. ([vo_is_public,vo_is_external] * tabstractvarsym(sym).varoptions = []) then
  637. MessagePos1(tsym(sym).fileinfo,sym_w_identifier_only_read,tsym(sym).prettyname)
  638. end
  639. else if ((tsym(sym).owner.symtabletype in
  640. [ObjectSymtable,parasymtable,localsymtable,staticsymtable,recordsymtable])) then
  641. begin
  642. if (Errorcount<>0) or
  643. (sp_internal in tsym(sym).symoptions) then
  644. exit;
  645. { do not claim for inherited private fields !! }
  646. if (tsym(sym).refs=0) and (tsym(sym).owner.symtabletype in [ObjectSymtable,recordsymtable]) then
  647. case tsym(sym).typ of
  648. typesym:
  649. MessagePos2(tsym(sym).fileinfo,sym_n_private_type_not_used,tabstractrecorddef(tsym(sym).owner.defowner).GetTypeName,tsym(sym).prettyname);
  650. constsym:
  651. MessagePos2(tsym(sym).fileinfo,sym_n_private_const_not_used,tabstractrecorddef(tsym(sym).owner.defowner).GetTypeName,tsym(sym).prettyname);
  652. propertysym:
  653. MessagePos2(tsym(sym).fileinfo,sym_n_private_property_not_used,tabstractrecorddef(tsym(sym).owner.defowner).GetTypeName,tsym(sym).prettyname);
  654. else
  655. MessagePos2(tsym(sym).fileinfo,sym_n_private_method_not_used,tabstractrecorddef(tsym(sym).owner.defowner).GetTypeName,tsym(sym).prettyname);
  656. end
  657. { units references are problematic }
  658. else
  659. begin
  660. if (tsym(sym).refs=0) and
  661. not(tsym(sym).typ in [enumsym,unitsym,namespacesym]) and
  662. not(is_funcret_sym(tsym(sym))) and
  663. { don't complain about compiler generated syms for specializations, see also #13405 }
  664. not((tsym(sym).typ=typesym) and (df_specialization in ttypesym(sym).typedef.defoptions) and
  665. (pos('$',ttypesym(sym).Realname)<>0)) and
  666. (
  667. (tsym(sym).typ<>procsym) or
  668. ((tsym(sym).owner.symtabletype=staticsymtable) and
  669. not current_module.is_unit)
  670. ) and
  671. { don't complain about alias for hidden _cmd parameter to
  672. obj-c methods }
  673. not((tsym(sym).typ in [localvarsym,paravarsym,absolutevarsym]) and
  674. (vo_is_msgsel in tabstractvarsym(sym).varoptions)) then
  675. MessagePos2(tsym(sym).fileinfo,sym_h_local_symbol_not_used,SymTypeName[tsym(sym).typ],tsym(sym).prettyname);
  676. end;
  677. end;
  678. end;
  679. procedure TStoredSymtable.TestPrivate(sym:TObject;arg:pointer);
  680. begin
  681. if tsym(sym).visibility in [vis_private,vis_strictprivate] then
  682. varsymbolused(sym,arg);
  683. end;
  684. procedure TStoredSymtable.objectprivatesymbolused(sym:TObject;arg:pointer);
  685. begin
  686. {
  687. Don't test simple object aliases PM
  688. }
  689. if (tsym(sym).typ=typesym) and
  690. (ttypesym(sym).typedef.typ in [objectdef,recorddef]) and
  691. (ttypesym(sym).typedef.typesym=tsym(sym)) then
  692. tabstractrecorddef(ttypesym(sym).typedef).symtable.SymList.ForEachCall(@TestPrivate,nil);
  693. end;
  694. procedure tstoredsymtable.testfordefaultproperty(sym:TObject;arg:pointer);
  695. begin
  696. if (tsym(sym).typ=propertysym) and
  697. (ppo_defaultproperty in tpropertysym(sym).propoptions) then
  698. ppointer(arg)^:=sym;
  699. end;
  700. {***********************************************
  701. Process all entries
  702. ***********************************************}
  703. { checks, if all procsyms and methods are defined }
  704. procedure tstoredsymtable.check_forwards;
  705. begin
  706. SymList.ForEachCall(@check_forward,nil);
  707. end;
  708. procedure tstoredsymtable.checklabels;
  709. begin
  710. SymList.ForEachCall(@labeldefined,nil);
  711. end;
  712. procedure tstoredsymtable.allsymbolsused;
  713. begin
  714. SymList.ForEachCall(@varsymbolused,nil);
  715. end;
  716. procedure tstoredsymtable.allprivatesused;
  717. begin
  718. SymList.ForEachCall(@objectprivatesymbolused,nil);
  719. end;
  720. procedure TStoredSymtable._needs_init_final(sym:TObject;arg:pointer);
  721. begin
  722. if sto_needs_init_final in tableoptions then
  723. exit;
  724. { don't check static symbols - they can be present in structures only and
  725. always have a reference to a symbol defined on unit level }
  726. if sp_static in tsym(sym).symoptions then
  727. exit;
  728. case tsym(sym).typ of
  729. fieldvarsym,
  730. staticvarsym,
  731. localvarsym,
  732. paravarsym :
  733. begin
  734. if assigned(tabstractvarsym(sym).vardef) and
  735. is_managed_type(tabstractvarsym(sym).vardef) then
  736. include(tableoptions,sto_needs_init_final);
  737. end;
  738. end;
  739. end;
  740. { returns true, if p contains data which needs init/final code }
  741. function tstoredsymtable.needs_init_final : boolean;
  742. begin
  743. if not init_final_check_done then
  744. begin
  745. exclude(tableoptions,sto_needs_init_final);
  746. SymList.ForEachCall(@_needs_init_final,nil);
  747. init_final_check_done:=true;
  748. end;
  749. result:=sto_needs_init_final in tableoptions;
  750. end;
  751. {****************************************************************************
  752. TAbstractRecordSymtable
  753. ****************************************************************************}
  754. constructor tabstractrecordsymtable.create(const n:string;usealign:shortint);
  755. begin
  756. inherited create(n);
  757. moduleid:=current_module.moduleid;
  758. _datasize:=0;
  759. databitsize:=0;
  760. recordalignment:=1;
  761. usefieldalignment:=usealign;
  762. padalignment:=1;
  763. { recordalign C_alignment means C record packing, that starts
  764. with an alignment of 1 }
  765. case usealign of
  766. C_alignment,
  767. bit_alignment:
  768. fieldalignment:=1;
  769. mac68k_alignment:
  770. fieldalignment:=2;
  771. else
  772. fieldalignment:=usealign;
  773. end;
  774. end;
  775. procedure tabstractrecordsymtable.ppuload(ppufile:tcompilerppufile);
  776. begin
  777. if ppufile.readentry<>ibrecsymtableoptions then
  778. Message(unit_f_ppu_read_error);
  779. recordalignment:=shortint(ppufile.getbyte);
  780. usefieldalignment:=shortint(ppufile.getbyte);
  781. if (usefieldalignment=C_alignment) then
  782. fieldalignment:=shortint(ppufile.getbyte);
  783. inherited ppuload(ppufile);
  784. end;
  785. procedure tabstractrecordsymtable.ppuwrite(ppufile:tcompilerppufile);
  786. var
  787. oldtyp : byte;
  788. begin
  789. oldtyp:=ppufile.entrytyp;
  790. ppufile.entrytyp:=subentryid;
  791. { in case of classes using C alignment, the alignment of the parent
  792. affects the alignment of fields of the childs }
  793. ppufile.putbyte(byte(recordalignment));
  794. ppufile.putbyte(byte(usefieldalignment));
  795. if (usefieldalignment=C_alignment) then
  796. ppufile.putbyte(byte(fieldalignment));
  797. ppufile.writeentry(ibrecsymtableoptions);
  798. inherited ppuwrite(ppufile);
  799. ppufile.entrytyp:=oldtyp;
  800. end;
  801. function field2recordalignment(fieldoffs, fieldalign: asizeint): asizeint;
  802. begin
  803. { optimal alignment of the record when declaring a variable of this }
  804. { type is independent of the packrecords setting }
  805. if (fieldoffs mod fieldalign) = 0 then
  806. result:=fieldalign
  807. else if (fieldalign >= 16) and
  808. ((fieldoffs mod 16) = 0) and
  809. ((fieldalign mod 16) = 0) then
  810. result:=16
  811. else if (fieldalign >= 8) and
  812. ((fieldoffs mod 8) = 0) and
  813. ((fieldalign mod 8) = 0) then
  814. result:=8
  815. else if (fieldalign >= 4) and
  816. ((fieldoffs mod 4) = 0) and
  817. ((fieldalign mod 4) = 0) then
  818. result:=4
  819. else if (fieldalign >= 2) and
  820. ((fieldoffs mod 2) = 0) and
  821. ((fieldalign mod 2) = 0) then
  822. result:=2
  823. else
  824. result:=1;
  825. end;
  826. procedure tabstractrecordsymtable.alignrecord(fieldoffset:asizeint;varalign:shortint);
  827. var
  828. varalignrecord: shortint;
  829. begin
  830. case usefieldalignment of
  831. C_alignment:
  832. varalignrecord:=used_align(varalign,current_settings.alignment.recordalignmin,current_settings.alignment.maxCrecordalign);
  833. mac68k_alignment:
  834. varalignrecord:=2;
  835. else
  836. varalignrecord:=field2recordalignment(fieldoffset,varalign);
  837. end;
  838. recordalignment:=max(recordalignment,varalignrecord);
  839. end;
  840. procedure tabstractrecordsymtable.addfield(sym:tfieldvarsym;vis:tvisibility);
  841. var
  842. l : asizeint;
  843. varalign : shortint;
  844. vardef : tdef;
  845. begin
  846. if (sym.owner<>self) then
  847. internalerror(200602031);
  848. if sym.fieldoffset<>-1 then
  849. internalerror(200602032);
  850. { set visibility for the symbol }
  851. sym.visibility:=vis;
  852. { this symbol can't be loaded to a register }
  853. sym.varregable:=vr_none;
  854. { Calculate field offset }
  855. l:=sym.getsize;
  856. vardef:=sym.vardef;
  857. varalign:=vardef.structalignment;
  858. case usefieldalignment of
  859. bit_alignment:
  860. begin
  861. { bitpacking only happens for ordinals, the rest is aligned at }
  862. { 1 byte (compatible with GPC/GCC) }
  863. if is_ordinal(vardef) then
  864. begin
  865. sym.fieldoffset:=databitsize;
  866. l:=sym.getpackedbitsize;
  867. end
  868. else
  869. begin
  870. databitsize:=_datasize*8;
  871. sym.fieldoffset:=databitsize;
  872. if (l>high(asizeint) div 8) then
  873. Message(sym_e_segment_too_large);
  874. l:=l*8;
  875. end;
  876. if varalign=0 then
  877. varalign:=size_2_align(l);
  878. recordalignment:=max(recordalignment,field2recordalignment(databitsize mod 8,varalign));
  879. { bit packed records are limited to high(aint) bits }
  880. { instead of bytes to avoid double precision }
  881. { arithmetic in offset calculations }
  882. if int64(l)>high(asizeint)-sym.fieldoffset then
  883. begin
  884. Message(sym_e_segment_too_large);
  885. _datasize:=high(asizeint);
  886. databitsize:=high(asizeint);
  887. end
  888. else
  889. begin
  890. databitsize:=sym.fieldoffset+l;
  891. _datasize:=(databitsize+7) div 8;
  892. end;
  893. { rest is not applicable }
  894. exit;
  895. end;
  896. else
  897. begin
  898. sym.fieldoffset:=getfieldoffset(sym,_datasize,fieldalignment);
  899. if l>high(asizeint)-sym.fieldoffset then
  900. begin
  901. Message(sym_e_segment_too_large);
  902. _datasize:=high(asizeint);
  903. end
  904. else
  905. _datasize:=sym.fieldoffset+l;
  906. { Calc alignment needed for this record }
  907. alignrecord(sym.fieldoffset,varalign);
  908. end;
  909. end;
  910. end;
  911. function field_alignment_compare(item1, item2: pointer): integer;
  912. var
  913. field1: tfieldvarsym absolute item1;
  914. field2: tfieldvarsym absolute item2;
  915. begin
  916. { we don't care about static fields, those become global variables }
  917. if (sp_static in field1.symoptions) or
  918. (sp_static in field2.symoptions) then
  919. exit(0);
  920. { sort from large to small alignment, and in case of the same alignment
  921. in declaration order (items declared close together are possibly
  922. also related and hence possibly used together -> putting them next
  923. to each other can improve cache behaviour) }
  924. result:=field2.vardef.alignment-field1.vardef.alignment;
  925. if result=0 then
  926. result:=field1.symid-field2.symid;
  927. end;
  928. procedure tabstractrecordsymtable.addfieldlist(list: tfpobjectlist; maybereorder: boolean);
  929. var
  930. fieldvs, insertfieldvs: tfieldvarsym;
  931. base, fieldoffset, space, insertfieldsize, insertfieldoffset, bestinsertfieldoffset, bestspaceleft: asizeint;
  932. i, j, bestfieldindex: longint;
  933. globalfieldalignment,
  934. prevglobalfieldalignment,
  935. newfieldalignment: shortint;
  936. changed: boolean;
  937. begin
  938. if maybereorder and
  939. (cs_opt_reorder_fields in current_settings.optimizerswitches) then
  940. begin
  941. { sort the non-class fields to minimise losses due to alignment }
  942. list.sort(@field_alignment_compare);
  943. { now fill up gaps caused by alignment skips with smaller fields
  944. where possible }
  945. repeat
  946. i:=0;
  947. base:=_datasize;
  948. globalfieldalignment:=fieldalignment;
  949. changed:=false;
  950. while i<list.count do
  951. begin
  952. fieldvs:=tfieldvarsym(list[i]);
  953. if sp_static in fieldvs.symoptions then
  954. begin
  955. inc(i);
  956. continue;
  957. end;
  958. prevglobalfieldalignment:=globalfieldalignment;
  959. fieldoffset:=getfieldoffset(fieldvs,base,globalfieldalignment);
  960. newfieldalignment:=globalfieldalignment;
  961. { size of the gap between the end of the previous field and
  962. the start of the current one }
  963. space:=fieldoffset-base;
  964. bestspaceleft:=space;
  965. while space>0 do
  966. begin
  967. bestfieldindex:=-1;
  968. bestinsertfieldoffset:=-1;
  969. for j:=i+1 to list.count-1 do
  970. begin
  971. insertfieldvs:=tfieldvarsym(list[j]);
  972. if sp_static in insertfieldvs.symoptions then
  973. continue;
  974. insertfieldsize:=insertfieldvs.getsize;
  975. { can the new field fit possibly in the gap? }
  976. if insertfieldsize<=space then
  977. begin
  978. { restore globalfieldalignment to situation before
  979. the original field was inserted }
  980. globalfieldalignment:=prevglobalfieldalignment;
  981. { at what offset would it be inserted? (this new
  982. field has its own alignment requirements, which
  983. may make it impossible to fit after all) }
  984. insertfieldoffset:=getfieldoffset(insertfieldvs,base,globalfieldalignment);
  985. globalfieldalignment:=prevglobalfieldalignment;
  986. { taking into account the alignment, does it still
  987. fit and if so, does it fit better than the
  988. previously found best fit? }
  989. if (insertfieldoffset+insertfieldsize<=fieldoffset) and
  990. (fieldoffset-insertfieldoffset-insertfieldsize<bestspaceleft) then
  991. begin
  992. { new best fit }
  993. bestfieldindex:=j;
  994. bestinsertfieldoffset:=insertfieldoffset;
  995. bestspaceleft:=fieldoffset-insertfieldoffset-insertfieldsize;
  996. if bestspaceleft=0 then
  997. break;
  998. end;
  999. end;
  1000. end;
  1001. { if we didn't find any field to fit, stop trying for this
  1002. gap }
  1003. if bestfieldindex=-1 then
  1004. break;
  1005. changed:=true;
  1006. { we found a field to insert -> adjust the new base
  1007. address }
  1008. base:=bestinsertfieldoffset+tfieldvarsym(list[bestfieldindex]).getsize;
  1009. { update globalfieldalignment for this newly inserted
  1010. field }
  1011. getfieldoffset(tfieldvarsym(list[bestfieldindex]),base,globalfieldalignment);
  1012. { move the new field before the current one }
  1013. list.move(bestfieldindex,i);
  1014. { and skip the new field (which is now at position i) }
  1015. inc(i);
  1016. { there may be more space left -> continue }
  1017. space:=bestspaceleft;
  1018. end;
  1019. if base>fieldoffset then
  1020. internalerror(2012071302);
  1021. { check the next field }
  1022. base:=fieldoffset+fieldvs.getsize;
  1023. { since the original field had the same or greater alignment
  1024. than anything we inserted before it, the global field
  1025. alignment is still the same now as it was originally after
  1026. inserting that field }
  1027. globalfieldalignment:=newfieldalignment;
  1028. inc(i);
  1029. end;
  1030. { there may be small gaps left *before* inserted fields }
  1031. until not changed;
  1032. end;
  1033. { finally, set the actual field offsets }
  1034. for i:=0 to list.count-1 do
  1035. begin
  1036. fieldvs:=tfieldvarsym(list[i]);
  1037. { static data fields are already inserted in the globalsymtable }
  1038. if not(sp_static in fieldvs.symoptions) then
  1039. begin
  1040. { read_record_fields already set the visibility of the fields,
  1041. because a single list can contain symbols with different
  1042. visibility }
  1043. addfield(fieldvs,fieldvs.visibility);
  1044. end;
  1045. end;
  1046. end;
  1047. procedure tabstractrecordsymtable.addalignmentpadding;
  1048. var
  1049. padded_datasize: asizeint;
  1050. begin
  1051. { make the record size aligned correctly so it can be
  1052. used as elements in an array. For C records we
  1053. use the fieldalignment, because that is updated with the
  1054. used alignment. }
  1055. if (padalignment = 1) then
  1056. case usefieldalignment of
  1057. C_alignment:
  1058. padalignment:=fieldalignment;
  1059. { bitpacked }
  1060. bit_alignment:
  1061. padalignment:=1;
  1062. { mac68k: always round to multiple of 2 }
  1063. mac68k_alignment:
  1064. padalignment:=2;
  1065. { default/no packrecords specified }
  1066. 0:
  1067. padalignment:=recordalignment
  1068. { specific packrecords setting -> use as upper limit }
  1069. else
  1070. padalignment:=min(recordalignment,usefieldalignment);
  1071. end;
  1072. padded_datasize:=align(_datasize,padalignment);
  1073. _paddingsize:=padded_datasize-_datasize;
  1074. _datasize:=padded_datasize;
  1075. end;
  1076. procedure tabstractrecordsymtable.insertdef(def:TDefEntry);
  1077. begin
  1078. { Enums must also be available outside the record scope,
  1079. insert in the owner of this symtable }
  1080. if def.typ=enumdef then
  1081. defowner.owner.insertdef(def)
  1082. else
  1083. inherited insertdef(def);
  1084. end;
  1085. function tabstractrecordsymtable.is_packed: boolean;
  1086. begin
  1087. result:=usefieldalignment=bit_alignment;
  1088. end;
  1089. function tabstractrecordsymtable.has_single_field(out sym: tfieldvarsym): boolean;
  1090. var
  1091. i: longint;
  1092. begin
  1093. result:=false;
  1094. { If a record contains a union, it does not contain a "single
  1095. non-composite field" in the context of certain ABIs requiring
  1096. special treatment for such records }
  1097. if (defowner.typ=recorddef) and
  1098. trecorddef(defowner).isunion then
  1099. exit;
  1100. { a record/object can contain other things than fields }
  1101. for i:=0 to SymList.Count-1 do
  1102. begin
  1103. if tsym(symlist[i]).typ=fieldvarsym then
  1104. begin
  1105. if result then
  1106. begin
  1107. result:=false;
  1108. exit;
  1109. end;
  1110. result:=true;
  1111. sym:=tfieldvarsym(symlist[i])
  1112. end;
  1113. end;
  1114. end;
  1115. function tabstractrecordsymtable.get_unit_symtable: tsymtable;
  1116. begin
  1117. result:=defowner.owner;
  1118. while assigned(result) and (result.symtabletype in [ObjectSymtable,recordsymtable]) do
  1119. result:=result.defowner.owner;
  1120. end;
  1121. procedure tabstractrecordsymtable.setdatasize(val: asizeint);
  1122. begin
  1123. _datasize:=val;
  1124. if (usefieldalignment=bit_alignment) then
  1125. { can overflow in non bitpacked records }
  1126. databitsize:=val*8;
  1127. end;
  1128. function tabstractrecordsymtable.getfieldoffset(sym: tfieldvarsym; base: asizeint; var globalfieldalignment: shortint): asizeint;
  1129. var
  1130. l : asizeint;
  1131. varalignfield,
  1132. varalign : shortint;
  1133. vardef : tdef;
  1134. begin
  1135. { Calculate field offset }
  1136. l:=sym.getsize;
  1137. vardef:=sym.vardef;
  1138. varalign:=vardef.structalignment;
  1139. case usefieldalignment of
  1140. bit_alignment:
  1141. { has to be handled separately }
  1142. internalerror(2012071301);
  1143. C_alignment:
  1144. begin
  1145. { Calc the alignment size for C style records }
  1146. if (varalign>4) and
  1147. ((varalign mod 4)<>0) and
  1148. (vardef.typ=arraydef) then
  1149. Message1(sym_w_wrong_C_pack,vardef.typename);
  1150. if varalign=0 then
  1151. varalign:=l;
  1152. if (globalfieldalignment<current_settings.alignment.maxCrecordalign) then
  1153. begin
  1154. if (varalign>16) and (globalfieldalignment<32) then
  1155. globalfieldalignment:=32
  1156. else if (varalign>12) and (globalfieldalignment<16) then
  1157. globalfieldalignment:=16
  1158. { 12 is needed for long double }
  1159. else if (varalign>8) and (globalfieldalignment<12) then
  1160. globalfieldalignment:=12
  1161. else if (varalign>4) and (globalfieldalignment<8) then
  1162. globalfieldalignment:=8
  1163. else if (varalign>2) and (globalfieldalignment<4) then
  1164. globalfieldalignment:=4
  1165. else if (varalign>1) and (globalfieldalignment<2) then
  1166. globalfieldalignment:=2;
  1167. end;
  1168. globalfieldalignment:=min(globalfieldalignment,current_settings.alignment.maxCrecordalign);
  1169. end;
  1170. mac68k_alignment:
  1171. begin
  1172. { mac68k alignment (C description):
  1173. * char is aligned to 1 byte
  1174. * everything else (except vector) is aligned to 2 bytes
  1175. * vector is aligned to 16 bytes
  1176. }
  1177. if l>1 then
  1178. globalfieldalignment:=2
  1179. else
  1180. globalfieldalignment:=1;
  1181. varalign:=2;
  1182. end;
  1183. end;
  1184. if varalign=0 then
  1185. varalign:=size_2_align(l);
  1186. varalignfield:=used_align(varalign,current_settings.alignment.recordalignmin,globalfieldalignment);
  1187. result:=align(base,varalignfield);
  1188. end;
  1189. function tabstractrecordsymtable.iscurrentunit: boolean;
  1190. begin
  1191. Result:=assigned(current_module)and(current_module.moduleid=moduleid);
  1192. end;
  1193. {****************************************************************************
  1194. TRecordSymtable
  1195. ****************************************************************************}
  1196. constructor trecordsymtable.create(const n:string;usealign:shortint);
  1197. begin
  1198. inherited create(n,usealign);
  1199. symtabletype:=recordsymtable;
  1200. end;
  1201. { this procedure is reserved for inserting case variant into
  1202. a record symtable }
  1203. { the offset is the location of the start of the variant
  1204. and datasize and dataalignment corresponds to
  1205. the complete size (see code in pdecl unit) PM }
  1206. procedure trecordsymtable.insertunionst(unionst : trecordsymtable;offset : longint);
  1207. var
  1208. sym : tsym;
  1209. def : tdef;
  1210. i : integer;
  1211. varalignrecord,varalign,
  1212. storesize,storealign : aint;
  1213. bitsize: tcgint;
  1214. begin
  1215. storesize:=_datasize;
  1216. storealign:=fieldalignment;
  1217. _datasize:=offset;
  1218. if (usefieldalignment=bit_alignment) then
  1219. databitsize:=offset*8;
  1220. { We move the ownership of the defs and symbols to the new recordsymtable.
  1221. The old unionsymtable keeps the references, but doesn't own the
  1222. objects anymore }
  1223. unionst.DefList.OwnsObjects:=false;
  1224. unionst.SymList.OwnsObjects:=false;
  1225. { copy symbols }
  1226. for i:=0 to unionst.SymList.Count-1 do
  1227. begin
  1228. sym:=TSym(unionst.SymList[i]);
  1229. if sym.typ<>fieldvarsym then
  1230. internalerror(200601272);
  1231. if tfieldvarsym(sym).fieldoffset=0 then
  1232. include(tfieldvarsym(sym).varoptions,vo_is_first_field);
  1233. { add to this record symtable, checking for duplicate names }
  1234. // unionst.SymList.List.List^[i].Data:=nil;
  1235. insert(sym);
  1236. varalign:=tfieldvarsym(sym).vardef.alignment;
  1237. if varalign=0 then
  1238. varalign:=size_2_align(tfieldvarsym(sym).getsize);
  1239. { retrieve size }
  1240. if (usefieldalignment=bit_alignment) then
  1241. begin
  1242. { bit packed records are limited to high(aint) bits }
  1243. { instead of bytes to avoid double precision }
  1244. { arithmetic in offset calculations }
  1245. if is_ordinal(tfieldvarsym(sym).vardef) then
  1246. bitsize:=tfieldvarsym(sym).getpackedbitsize
  1247. else
  1248. begin
  1249. bitsize:=tfieldvarsym(sym).getsize;
  1250. if (bitsize>high(asizeint) div 8) then
  1251. Message(sym_e_segment_too_large);
  1252. bitsize:=bitsize*8;
  1253. end;
  1254. if bitsize>high(asizeint)-databitsize then
  1255. begin
  1256. Message(sym_e_segment_too_large);
  1257. _datasize:=high(asizeint);
  1258. databitsize:=high(asizeint);
  1259. end
  1260. else
  1261. begin
  1262. databitsize:=tfieldvarsym(sym).fieldoffset+offset*8;
  1263. _datasize:=(databitsize+7) div 8;
  1264. end;
  1265. tfieldvarsym(sym).fieldoffset:=databitsize;
  1266. varalignrecord:=field2recordalignment(tfieldvarsym(sym).fieldoffset div 8,varalign);
  1267. end
  1268. else
  1269. begin
  1270. if tfieldvarsym(sym).getsize>high(asizeint)-_datasize then
  1271. begin
  1272. Message(sym_e_segment_too_large);
  1273. _datasize:=high(asizeint);
  1274. end
  1275. else
  1276. _datasize:=tfieldvarsym(sym).fieldoffset+offset;
  1277. { update address }
  1278. tfieldvarsym(sym).fieldoffset:=_datasize;
  1279. varalignrecord:=field2recordalignment(tfieldvarsym(sym).fieldoffset,varalign);
  1280. end;
  1281. { update alignment of this record }
  1282. if (usefieldalignment<>C_alignment) and
  1283. (usefieldalignment<>mac68k_alignment) then
  1284. recordalignment:=max(recordalignment,varalignrecord);
  1285. end;
  1286. { update alignment for C records }
  1287. if (usefieldalignment=C_alignment) and
  1288. (usefieldalignment<>mac68k_alignment) then
  1289. recordalignment:=max(recordalignment,unionst.recordalignment);
  1290. { Register defs in the new record symtable }
  1291. for i:=0 to unionst.DefList.Count-1 do
  1292. begin
  1293. def:=TDef(unionst.DefList[i]);
  1294. def.ChangeOwner(self);
  1295. end;
  1296. _datasize:=storesize;
  1297. fieldalignment:=storealign;
  1298. { If a record contains a union, it does not contain a "single
  1299. non-composite field" in the context of certain ABIs requiring
  1300. special treatment for such records }
  1301. if defowner.typ=recorddef then
  1302. trecorddef(defowner).isunion:=true;
  1303. end;
  1304. {****************************************************************************
  1305. TObjectSymtable
  1306. ****************************************************************************}
  1307. constructor tObjectSymtable.create(adefowner:tdef;const n:string;usealign:shortint);
  1308. begin
  1309. inherited create(n,usealign);
  1310. symtabletype:=ObjectSymtable;
  1311. defowner:=adefowner;
  1312. end;
  1313. function tObjectSymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1314. var
  1315. hsym: tsym;
  1316. warn: boolean;
  1317. begin
  1318. result:=false;
  1319. if not assigned(defowner) then
  1320. internalerror(200602061);
  1321. { procsym and propertysym have special code
  1322. to override values in inherited classes. For other
  1323. symbols check for duplicates }
  1324. if not(sym.typ in [procsym,propertysym]) then
  1325. begin
  1326. { but private ids can be reused }
  1327. hsym:=search_struct_member(tobjectdef(defowner),hashedid.id);
  1328. if assigned(hsym) and
  1329. (
  1330. (
  1331. not(m_delphi in current_settings.modeswitches) and
  1332. is_visible_for_object(hsym,tobjectdef(defowner))
  1333. ) or
  1334. (
  1335. { In Delphi, you can repeat members of a parent class. You can't }
  1336. { do this for objects however, and you (obviouly) can't }
  1337. { declare two fields with the same name in a single class }
  1338. (m_delphi in current_settings.modeswitches) and
  1339. (
  1340. is_object(tdef(defowner)) or
  1341. (hsym.owner = self)
  1342. )
  1343. )
  1344. ) then
  1345. begin
  1346. { only watn when a parameter/local variable in a method
  1347. conflicts with a category method, because this can easily
  1348. happen due to all possible categories being imported via
  1349. CocoaAll }
  1350. warn:=
  1351. (is_objccategory(tdef(hsym.owner.defowner)) or
  1352. is_classhelper(tdef(hsym.owner.defowner))) and
  1353. (sym.typ in [paravarsym,localvarsym,fieldvarsym]);
  1354. DuplicateSym(hashedid,sym,hsym,warn);
  1355. result:=true;
  1356. end;
  1357. end
  1358. else
  1359. result:=inherited checkduplicate(hashedid,sym);
  1360. end;
  1361. {****************************************************************************
  1362. TAbstractLocalSymtable
  1363. ****************************************************************************}
  1364. procedure tabstractlocalsymtable.ppuwrite(ppufile:tcompilerppufile);
  1365. var
  1366. oldtyp : byte;
  1367. begin
  1368. oldtyp:=ppufile.entrytyp;
  1369. ppufile.entrytyp:=subentryid;
  1370. inherited ppuwrite(ppufile);
  1371. ppufile.entrytyp:=oldtyp;
  1372. end;
  1373. function tabstractlocalsymtable.count_locals:longint;
  1374. var
  1375. i : longint;
  1376. sym : tsym;
  1377. begin
  1378. result:=0;
  1379. for i:=0 to SymList.Count-1 do
  1380. begin
  1381. sym:=tsym(SymList[i]);
  1382. { Count only varsyms, but ignore the funcretsym }
  1383. if (tsym(sym).typ in [localvarsym,paravarsym]) and
  1384. (tsym(sym)<>current_procinfo.procdef.funcretsym) and
  1385. (not(vo_is_parentfp in tabstractvarsym(sym).varoptions) or
  1386. (tstoredsym(sym).refs>0)) then
  1387. inc(result);
  1388. end;
  1389. end;
  1390. {****************************************************************************
  1391. TLocalSymtable
  1392. ****************************************************************************}
  1393. constructor tlocalsymtable.create(adefowner:tdef;level:byte);
  1394. begin
  1395. inherited create('');
  1396. defowner:=adefowner;
  1397. symtabletype:=localsymtable;
  1398. symtablelevel:=level;
  1399. end;
  1400. function tlocalsymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1401. var
  1402. hsym : tsym;
  1403. begin
  1404. if not assigned(defowner) or
  1405. (defowner.typ<>procdef) then
  1406. internalerror(200602042);
  1407. result:=false;
  1408. hsym:=tsym(FindWithHash(hashedid));
  1409. if assigned(hsym) then
  1410. begin
  1411. { a local and the function can have the same
  1412. name in TP and Delphi, but RESULT not }
  1413. if (m_duplicate_names in current_settings.modeswitches) and
  1414. (hsym.typ in [absolutevarsym,localvarsym]) and
  1415. (vo_is_funcret in tabstractvarsym(hsym).varoptions) and
  1416. not((m_result in current_settings.modeswitches) and
  1417. (vo_is_result in tabstractvarsym(hsym).varoptions)) then
  1418. HideSym(hsym)
  1419. else
  1420. DuplicateSym(hashedid,sym,hsym,false);
  1421. result:=true;
  1422. exit;
  1423. end;
  1424. { check also parasymtable, this needs to be done here because
  1425. of the special situation with the funcret sym that needs to be
  1426. hidden for tp and delphi modes }
  1427. hsym:=tsym(tabstractprocdef(defowner).parast.FindWithHash(hashedid));
  1428. if assigned(hsym) then
  1429. begin
  1430. { a local and the function can have the same
  1431. name in TP and Delphi, but RESULT not }
  1432. if (m_duplicate_names in current_settings.modeswitches) and
  1433. (sym.typ in [absolutevarsym,localvarsym]) and
  1434. (vo_is_funcret in tabstractvarsym(sym).varoptions) and
  1435. not((m_result in current_settings.modeswitches) and
  1436. (vo_is_result in tabstractvarsym(sym).varoptions)) then
  1437. Hidesym(sym)
  1438. else
  1439. DuplicateSym(hashedid,sym,hsym,false);
  1440. result:=true;
  1441. exit;
  1442. end;
  1443. { check ObjectSymtable, skip this for funcret sym because
  1444. that will always be positive because it has the same name
  1445. as the procsym }
  1446. if not is_funcret_sym(sym) and
  1447. (defowner.typ=procdef) and
  1448. assigned(tprocdef(defowner).struct) and
  1449. (tprocdef(defowner).owner.defowner=tprocdef(defowner).struct) and
  1450. (
  1451. not(m_delphi in current_settings.modeswitches) or
  1452. is_object(tprocdef(defowner).struct)
  1453. ) then
  1454. result:=tprocdef(defowner).struct.symtable.checkduplicate(hashedid,sym);
  1455. end;
  1456. {****************************************************************************
  1457. TParaSymtable
  1458. ****************************************************************************}
  1459. constructor tparasymtable.create(adefowner:tdef;level:byte);
  1460. begin
  1461. inherited create('');
  1462. readonly:=false;
  1463. defowner:=adefowner;
  1464. symtabletype:=parasymtable;
  1465. symtablelevel:=level;
  1466. end;
  1467. function tparasymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1468. begin
  1469. result:=inherited checkduplicate(hashedid,sym);
  1470. if result then
  1471. exit;
  1472. if not(m_duplicate_names in current_settings.modeswitches) and
  1473. assigned(defowner) and (defowner.typ=procdef) and
  1474. assigned(tprocdef(defowner).struct) and
  1475. (tprocdef(defowner).owner.defowner=tprocdef(defowner).struct) and
  1476. (
  1477. not(m_delphi in current_settings.modeswitches) or
  1478. is_object(tprocdef(defowner).struct)
  1479. ) then
  1480. result:=tprocdef(defowner).struct.symtable.checkduplicate(hashedid,sym);
  1481. end;
  1482. procedure tparasymtable.insertdef(def: TDefEntry);
  1483. begin
  1484. if readonly then
  1485. defowner.owner.insertdef(def)
  1486. else
  1487. inherited insertdef(def);
  1488. end;
  1489. {****************************************************************************
  1490. TAbstractUniTSymtable
  1491. ****************************************************************************}
  1492. constructor tabstractuniTSymtable.create(const n : string;id:word);
  1493. begin
  1494. inherited create(n);
  1495. moduleid:=id;
  1496. end;
  1497. function tabstractuniTSymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1498. var
  1499. hsym : tsym;
  1500. begin
  1501. result:=false;
  1502. hsym:=tsym(FindWithHash(hashedid));
  1503. if assigned(hsym) then
  1504. begin
  1505. if (sym is tstoredsym) and handle_generic_dummysym(hsym,tstoredsym(sym).symoptions) then
  1506. exit;
  1507. if hsym.typ=symconst.namespacesym then
  1508. begin
  1509. case sym.typ of
  1510. symconst.namespacesym:;
  1511. symconst.unitsym:
  1512. begin
  1513. HideSym(sym); { if we add a unit and there is a namespace with the same name then hide the unit name and not the namespace }
  1514. tnamespacesym(hsym).unitsym:=tsym(sym);
  1515. end
  1516. else
  1517. HideSym(hsym);
  1518. end;
  1519. end
  1520. else
  1521. { In delphi (contrary to TP) you can have a symbol with the same name as the
  1522. unit, the unit can then not be accessed anymore using
  1523. <unit>.<id>, so we can hide the symbol.
  1524. Do the same if we add a namespace and there is a unit with the same name }
  1525. if (hsym.typ=symconst.unitsym) and
  1526. ((m_delphi in current_settings.modeswitches) or (sym.typ=symconst.namespacesym)) then
  1527. begin
  1528. HideSym(hsym);
  1529. if sym.typ=symconst.namespacesym then
  1530. tnamespacesym(sym).unitsym:=tsym(hsym);
  1531. end
  1532. else
  1533. DuplicateSym(hashedid,sym,hsym,false);
  1534. result:=true;
  1535. exit;
  1536. end;
  1537. end;
  1538. function tabstractuniTSymtable.findnamespace(const n:string):TSymEntry;
  1539. begin
  1540. result:=find(n);
  1541. if assigned(result)and(result.typ<>namespacesym)then
  1542. result:=nil;
  1543. end;
  1544. function tabstractuniTSymtable.iscurrentunit:boolean;
  1545. begin
  1546. result:=assigned(current_module) and
  1547. (
  1548. (current_module.globalsymtable=self) or
  1549. (current_module.localsymtable=self)
  1550. );
  1551. end;
  1552. procedure tabstractuniTSymtable.insertunit(sym:TSymEntry);
  1553. var
  1554. p:integer;
  1555. n,ns:string;
  1556. oldsym:TSymEntry;
  1557. begin
  1558. insert(sym);
  1559. n:=sym.realname;
  1560. p:=pos('.',n);
  1561. ns:='';
  1562. while p>0 do
  1563. begin
  1564. if ns='' then
  1565. ns:=copy(n,1,p-1)
  1566. else
  1567. ns:=ns+'.'+copy(n,1,p-1);
  1568. system.delete(n,1,p);
  1569. oldsym:=findnamespace(upper(ns));
  1570. if not assigned(oldsym) then
  1571. insert(cnamespacesym.create(ns));
  1572. p:=pos('.',n);
  1573. end;
  1574. end;
  1575. {****************************************************************************
  1576. TStaticSymtable
  1577. ****************************************************************************}
  1578. constructor tstaticsymtable.create(const n : string;id:word);
  1579. begin
  1580. inherited create(n,id);
  1581. symtabletype:=staticsymtable;
  1582. symtablelevel:=main_program_level;
  1583. currentvisibility:=vis_private;
  1584. end;
  1585. procedure tstaticsymtable.ppuload(ppufile:tcompilerppufile);
  1586. begin
  1587. inherited ppuload(ppufile);
  1588. { now we can deref the syms and defs }
  1589. deref;
  1590. end;
  1591. procedure tstaticsymtable.ppuwrite(ppufile:tcompilerppufile);
  1592. begin
  1593. inherited ppuwrite(ppufile);
  1594. end;
  1595. function tstaticsymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1596. begin
  1597. result:=inherited checkduplicate(hashedid,sym);
  1598. if not result and
  1599. (current_module.localsymtable=self) and
  1600. assigned(current_module.globalsymtable) then
  1601. result:=tglobalsymtable(current_module.globalsymtable).checkduplicate(hashedid,sym);
  1602. end;
  1603. function tstaticsymtable.findnamespace(const n:string):TSymEntry;
  1604. begin
  1605. result:=inherited findnamespace(n);
  1606. if not assigned(result) and
  1607. (current_module.localsymtable=self) and
  1608. assigned(current_module.globalsymtable) then
  1609. result:=tglobalsymtable(current_module.globalsymtable).findnamespace(n);
  1610. end;
  1611. {****************************************************************************
  1612. TGlobalSymtable
  1613. ****************************************************************************}
  1614. constructor tglobalsymtable.create(const n : string;id:word);
  1615. begin
  1616. inherited create(n,id);
  1617. symtabletype:=globalsymtable;
  1618. symtablelevel:=main_program_level;
  1619. end;
  1620. procedure tglobalsymtable.ppuload(ppufile:tcompilerppufile);
  1621. begin
  1622. inherited ppuload(ppufile);
  1623. { now we can deref the syms and defs }
  1624. deref;
  1625. end;
  1626. procedure tglobalsymtable.ppuwrite(ppufile:tcompilerppufile);
  1627. begin
  1628. { write the symtable entries }
  1629. inherited ppuwrite(ppufile);
  1630. end;
  1631. {*****************************************************************************
  1632. tspecializesymtable
  1633. *****************************************************************************}
  1634. constructor tspecializesymtable.create(const n : string;id:word);
  1635. begin
  1636. inherited create(n,id);
  1637. { the specialize symtable does not own the syms and defs as they are all
  1638. moved to a different symtable before the symtable is destroyed; this
  1639. avoids calls to "extract" }
  1640. symlist.ownsobjects:=false;
  1641. deflist.ownsobjects:=false;
  1642. end;
  1643. function tspecializesymtable.iscurrentunit: boolean;
  1644. begin
  1645. Result:=true;
  1646. end;
  1647. {****************************************************************************
  1648. TWITHSYMTABLE
  1649. ****************************************************************************}
  1650. constructor twithsymtable.create(aowner:tdef;ASymList:TFPHashObjectList;refnode:tobject{tnode});
  1651. begin
  1652. inherited create('');
  1653. symtabletype:=withsymtable;
  1654. withrefnode:=refnode;
  1655. { Replace SymList with the passed symlist }
  1656. SymList.free;
  1657. SymList:=ASymList;
  1658. defowner:=aowner;
  1659. end;
  1660. destructor twithsymtable.destroy;
  1661. begin
  1662. withrefnode.free;
  1663. { Disable SymList because we don't Own it }
  1664. SymList:=nil;
  1665. inherited destroy;
  1666. end;
  1667. procedure twithsymtable.clear;
  1668. begin
  1669. { remove no entry from a withsymtable as it is only a pointer to the
  1670. recorddef or objectdef symtable }
  1671. end;
  1672. procedure twithsymtable.insertdef(def:TDefEntry);
  1673. begin
  1674. { Definitions can't be registered in the withsymtable
  1675. because the withsymtable is removed after the with block.
  1676. We can't easily solve it here because the next symtable in the
  1677. stack is not known. }
  1678. internalerror(200602046);
  1679. end;
  1680. {****************************************************************************
  1681. TSTT_ExceptionSymtable
  1682. ****************************************************************************}
  1683. constructor tstt_excepTSymtable.create;
  1684. begin
  1685. inherited create('');
  1686. symtabletype:=stt_excepTSymtable;
  1687. end;
  1688. {****************************************************************************
  1689. TMacroSymtable
  1690. ****************************************************************************}
  1691. constructor tmacrosymtable.create(exported: boolean);
  1692. begin
  1693. inherited create('');
  1694. if exported then
  1695. symtabletype:=exportedmacrosymtable
  1696. else
  1697. symtabletype:=localmacrosymtable;
  1698. symtablelevel:=main_program_level;
  1699. end;
  1700. {****************************************************************************
  1701. TEnumSymtable
  1702. ****************************************************************************}
  1703. procedure tenumsymtable.insert(sym: TSymEntry; checkdup: boolean);
  1704. var
  1705. value: longint;
  1706. def: tenumdef;
  1707. begin
  1708. // defowner = nil only when we are loading from ppu
  1709. if defowner<>nil then
  1710. begin
  1711. { First entry? Then we need to set the minval }
  1712. value:=tenumsym(sym).value;
  1713. def:=tenumdef(defowner);
  1714. if SymList.count=0 then
  1715. begin
  1716. if value>0 then
  1717. def.has_jumps:=true;
  1718. def.setmin(value);
  1719. def.setmax(value);
  1720. end
  1721. else
  1722. begin
  1723. { check for jumps }
  1724. if value>def.max+1 then
  1725. def.has_jumps:=true;
  1726. { update low and high }
  1727. if def.min>value then
  1728. def.setmin(value);
  1729. if def.max<value then
  1730. def.setmax(value);
  1731. end;
  1732. end;
  1733. inherited insert(sym, checkdup);
  1734. end;
  1735. constructor tenumsymtable.create(adefowner: tdef);
  1736. begin
  1737. inherited Create('');
  1738. symtabletype:=enumsymtable;
  1739. defowner:=adefowner;
  1740. end;
  1741. {****************************************************************************
  1742. TArraySymtable
  1743. ****************************************************************************}
  1744. procedure tarraysymtable.insertdef(def: TDefEntry);
  1745. begin
  1746. { Enums must also be available outside the record scope,
  1747. insert in the owner of this symtable }
  1748. if def.typ=enumdef then
  1749. defowner.owner.insertdef(def)
  1750. else
  1751. inherited insertdef(def);
  1752. end;
  1753. constructor tarraysymtable.create(adefowner: tdef);
  1754. begin
  1755. inherited Create('');
  1756. symtabletype:=arraysymtable;
  1757. defowner:=adefowner;
  1758. end;
  1759. {*****************************************************************************
  1760. Helper Routines
  1761. *****************************************************************************}
  1762. function FullTypeName(def,otherdef:tdef):string;
  1763. var
  1764. s1,s2 : string;
  1765. begin
  1766. if def.typ in [objectdef,recorddef] then
  1767. s1:=tabstractrecorddef(def).RttiName
  1768. else
  1769. s1:=def.typename;
  1770. { When the names are the same try to include the unit name }
  1771. if assigned(otherdef) and
  1772. (def.owner.symtabletype in [globalsymtable,staticsymtable]) then
  1773. begin
  1774. s2:=otherdef.typename;
  1775. if upper(s1)=upper(s2) then
  1776. s1:=def.owner.realname^+'.'+s1;
  1777. end;
  1778. FullTypeName:=s1;
  1779. end;
  1780. function generate_nested_name(symtable:tsymtable;delimiter:string):string;
  1781. begin
  1782. result:='';
  1783. while assigned(symtable) and (symtable.symtabletype in [ObjectSymtable,recordsymtable]) do
  1784. begin
  1785. if (result='') then
  1786. if symtable.name<>nil then
  1787. result:=symtable.name^
  1788. else
  1789. else
  1790. if symtable.name<>nil then
  1791. result:=symtable.name^+delimiter+result
  1792. else
  1793. result:=delimiter+result;
  1794. symtable:=symtable.defowner.owner;
  1795. end;
  1796. end;
  1797. function generate_objectpascal_helper_key(def:tdef):string;
  1798. begin
  1799. if not assigned(def) then
  1800. internalerror(2013020501);
  1801. if def.typ in [recorddef,objectdef] then
  1802. result:=make_mangledname('',tabstractrecorddef(def).symtable,'')
  1803. else
  1804. result:=make_mangledname('',def.owner,def.typesym.name);
  1805. end;
  1806. procedure incompatibletypes(def1,def2:tdef);
  1807. begin
  1808. { When there is an errordef there is already an error message show }
  1809. if (def2.typ=errordef) or
  1810. (def1.typ=errordef) then
  1811. exit;
  1812. CGMessage2(type_e_incompatible_types,FullTypeName(def1,def2),FullTypeName(def2,def1));
  1813. end;
  1814. procedure hidesym(sym:TSymEntry);
  1815. begin
  1816. sym.realname:='$hidden'+sym.realname;
  1817. tsym(sym).visibility:=vis_hidden;
  1818. end;
  1819. procedure duplicatesym(var hashedid: THashedIDString; dupsym, origsym: TSymEntry; warn: boolean);
  1820. var
  1821. st : TSymtable;
  1822. begin
  1823. if not warn then
  1824. Message1(sym_e_duplicate_id,tsym(origsym).realname)
  1825. else
  1826. Message1(sym_w_duplicate_id,tsym(origsym).realname);
  1827. { Write hint where the original symbol was found }
  1828. st:=finduniTSymtable(origsym.owner);
  1829. with tsym(origsym).fileinfo do
  1830. begin
  1831. if assigned(st) and
  1832. (st.symtabletype=globalsymtable) and
  1833. st.iscurrentunit then
  1834. Message2(sym_h_duplicate_id_where,current_module.sourcefiles.get_file_name(fileindex),tostr(line))
  1835. else if assigned(st.name) then
  1836. Message2(sym_h_duplicate_id_where,'unit '+st.name^,tostr(line));
  1837. end;
  1838. { Rename duplicate sym to an unreachable name, but it can be
  1839. inserted in the symtable without errors }
  1840. inc(dupnr);
  1841. hashedid.id:='dup'+tostr(dupnr)+hashedid.id;
  1842. if assigned(dupsym) then
  1843. include(tsym(dupsym).symoptions,sp_implicitrename);
  1844. end;
  1845. function handle_generic_dummysym(sym:TSymEntry;var symoptions:tsymoptions):boolean;
  1846. begin
  1847. result:=false;
  1848. if not assigned(sym) or not (sym is tstoredsym) then
  1849. Internalerror(2011081101);
  1850. { For generics a dummy symbol without the parameter count is created
  1851. if such a symbol not yet exists so that different parts of the
  1852. parser can find that symbol. If that symbol is still a
  1853. undefineddef we replace the generic dummy symbol's
  1854. name with a "dup" name and use the new symbol as the generic dummy
  1855. symbol }
  1856. if (sp_generic_dummy in tstoredsym(sym).symoptions) and
  1857. (sym.typ=typesym) and (ttypesym(sym).typedef.typ=undefineddef) and
  1858. (m_delphi in current_settings.modeswitches) then
  1859. begin
  1860. inc(dupnr);
  1861. sym.Owner.SymList.Rename(upper(sym.realname),'dup_'+tostr(dupnr)+sym.realname);
  1862. include(tsym(sym).symoptions,sp_implicitrename);
  1863. { we need to find the new symbol now if checking for a dummy }
  1864. include(symoptions,sp_generic_dummy);
  1865. result:=true;
  1866. end;
  1867. end;
  1868. function get_jumpbuf_size : longint;
  1869. var
  1870. srsym : ttypesym;
  1871. begin
  1872. if jmp_buf_size=-1 then
  1873. begin
  1874. srsym:=search_system_type('JMP_BUF');
  1875. jmp_buf_size:=srsym.typedef.size;
  1876. jmp_buf_align:=srsym.typedef.alignment;
  1877. end;
  1878. result:=jmp_buf_size;
  1879. end;
  1880. {*****************************************************************************
  1881. Search
  1882. *****************************************************************************}
  1883. procedure addsymref(sym:tsym);
  1884. var
  1885. owner: tsymtable;
  1886. begin
  1887. { symbol uses count }
  1888. sym.IncRefCount;
  1889. { unit uses count }
  1890. owner:=sym.owner;
  1891. while owner.symtabletype in [objectsymtable,recordsymtable,enumsymtable] do
  1892. owner:=tdef(owner.defowner).owner;
  1893. if assigned(current_module) and
  1894. (owner.symtabletype=globalsymtable) then
  1895. begin
  1896. if tglobalsymtable(owner).moduleid>=current_module.unitmapsize then
  1897. internalerror(200501152);
  1898. inc(current_module.unitmap[tglobalsymtable(owner).moduleid].refs);
  1899. end;
  1900. end;
  1901. function is_owned_by(nesteddef,ownerdef:tdef):boolean;
  1902. begin
  1903. result:=nesteddef=ownerdef;
  1904. if not result and
  1905. { types declared locally in a record method are not defined in the
  1906. record itself }
  1907. not(nesteddef.owner.symtabletype in [localsymtable,parasymtable]) and
  1908. assigned(nesteddef.owner.defowner) then
  1909. result:=is_owned_by(tdef(nesteddef.owner.defowner),ownerdef);
  1910. end;
  1911. function sym_is_owned_by(childsym:tsym;symtable:tsymtable):boolean;
  1912. begin
  1913. result:=assigned(childsym) and (childsym.owner=symtable);
  1914. if not result and assigned(childsym) and
  1915. (childsym.owner.symtabletype in [objectsymtable,recordsymtable]) then
  1916. result:=sym_is_owned_by(tabstractrecorddef(childsym.owner.defowner).typesym,symtable);
  1917. end;
  1918. function defs_belong_to_same_generic(def1, def2: tdef): boolean;
  1919. begin
  1920. result:=false;
  1921. if not assigned(def1) or not assigned(def2) then
  1922. exit;
  1923. { for both defs walk to the topmost generic }
  1924. while assigned(def1.owner.defowner) and (df_generic in tstoreddef(def1.owner.defowner).defoptions) do
  1925. def1:=tdef(def1.owner.defowner);
  1926. while assigned(def2.owner.defowner) and (df_generic in tstoreddef(def2.owner.defowner).defoptions) do
  1927. def2:=tdef(def2.owner.defowner);
  1928. result:=def1=def2;
  1929. end;
  1930. function get_generic_in_hierarchy_by_name(srsym: tsym; def: tdef): tdef;
  1931. var
  1932. uname : string;
  1933. begin
  1934. { TODO : check regarding arrays and records declared as their type }
  1935. if not (def.typ in [recorddef,objectdef]) then
  1936. internalerror(2012051501);
  1937. uname:=upper(srsym.realname);
  1938. repeat
  1939. if uname=copy(tabstractrecorddef(def).objname^,1,pos('$',tabstractrecorddef(def).objname^)-1) then
  1940. begin
  1941. result:=def;
  1942. exit;
  1943. end;
  1944. def:=tdef(def.owner.defowner);
  1945. until not (def.typ in [recorddef,objectdef]);
  1946. result:=nil;
  1947. end;
  1948. function return_specialization_of_generic(nesteddef,genericdef:tdef; out resultdef:tdef):boolean;
  1949. begin
  1950. { TODO : check regarding arrays and records declared as their type }
  1951. if not (nesteddef.typ in [recorddef,objectdef]) then
  1952. internalerror(2012051601);
  1953. repeat
  1954. if tstoreddef(nesteddef).genericdef=genericdef then
  1955. begin
  1956. resultdef:=nesteddef;
  1957. result:=true;
  1958. exit;
  1959. end;
  1960. nesteddef:=tdef(nesteddef.owner.defowner);
  1961. until not assigned(nesteddef) or not (nesteddef.typ in [recorddef,objectdef]);
  1962. resultdef:=nil;
  1963. result:=false;
  1964. end;
  1965. { symst: symboltable that contains the symbol (-> symowner def: record/objectdef in which the symbol is defined)
  1966. symvisibility: visibility of the symbol
  1967. contextobjdef: via which def the symbol is accessed, e.g.:
  1968. fieldname:=1 -> contextobjdef = current_structdef
  1969. objfield.fieldname:=1 -> contextobjdef = def of objfield
  1970. }
  1971. function is_visible_for_object(symst:tsymtable;symvisibility:tvisibility;contextobjdef:tabstractrecorddef):boolean;
  1972. var
  1973. symownerdef : tabstractrecorddef;
  1974. nonlocalst : tsymtable;
  1975. begin
  1976. result:=false;
  1977. { Get objdectdef owner of the symtable for the is_related checks }
  1978. if not assigned(symst) or
  1979. not (symst.symtabletype in [objectsymtable,recordsymtable]) then
  1980. internalerror(200810285);
  1981. symownerdef:=tabstractrecorddef(symst.defowner);
  1982. { specializations might belong to a localsymtable or parasymtable }
  1983. nonlocalst:=symownerdef.owner;
  1984. if tstoreddef(symst.defowner).is_specialization then
  1985. while nonlocalst.symtabletype in [localsymtable,parasymtable] do
  1986. nonlocalst:=nonlocalst.defowner.owner;
  1987. case symvisibility of
  1988. vis_private :
  1989. begin
  1990. { private symbols are allowed when we are in the same
  1991. module as they are defined }
  1992. result:=(
  1993. (nonlocalst.symtabletype in [globalsymtable,staticsymtable]) and
  1994. (nonlocalst.iscurrentunit)
  1995. ) or
  1996. ( // the case of specialize inside the generic declaration and nested types
  1997. (nonlocalst.symtabletype in [objectsymtable,recordsymtable]) and
  1998. (
  1999. assigned(current_structdef) and
  2000. (
  2001. (current_structdef=symownerdef) or
  2002. (current_structdef.owner.iscurrentunit)
  2003. )
  2004. ) or
  2005. (
  2006. not assigned(current_structdef) and
  2007. (symownerdef.owner.iscurrentunit)
  2008. )
  2009. );
  2010. end;
  2011. vis_strictprivate :
  2012. begin
  2013. result:=assigned(current_structdef) and
  2014. is_owned_by(current_structdef,symownerdef);
  2015. end;
  2016. vis_strictprotected :
  2017. begin
  2018. result:=(
  2019. { access from nested class }
  2020. assigned(current_structdef) and
  2021. is_owned_by(current_structdef,symownerdef)
  2022. ) or
  2023. (
  2024. { access from child class }
  2025. assigned(contextobjdef) and
  2026. assigned(current_structdef) and
  2027. def_is_related(contextobjdef,symownerdef) and
  2028. def_is_related(current_structdef,contextobjdef)
  2029. ) or
  2030. (
  2031. { helpers can access strict protected symbols }
  2032. is_objectpascal_helper(contextobjdef) and
  2033. def_is_related(tobjectdef(contextobjdef).extendeddef,symownerdef)
  2034. ) or
  2035. (
  2036. { same as above, but from context of call node inside
  2037. helper method }
  2038. is_objectpascal_helper(current_structdef) and
  2039. def_is_related(tobjectdef(current_structdef).extendeddef,symownerdef)
  2040. );
  2041. end;
  2042. vis_protected :
  2043. begin
  2044. { protected symbols are visible in the module that defines them and
  2045. also visible to related objects. The related object must be defined
  2046. in the current module }
  2047. result:=(
  2048. (
  2049. (nonlocalst.symtabletype in [globalsymtable,staticsymtable]) and
  2050. (nonlocalst.iscurrentunit)
  2051. ) or
  2052. (
  2053. assigned(contextobjdef) and
  2054. (contextobjdef.owner.symtabletype in [globalsymtable,staticsymtable,ObjectSymtable]) and
  2055. (contextobjdef.owner.iscurrentunit) and
  2056. def_is_related(contextobjdef,symownerdef)
  2057. ) or
  2058. ( // the case of specialize inside the generic declaration and nested types
  2059. (nonlocalst.symtabletype in [objectsymtable,recordsymtable]) and
  2060. (
  2061. assigned(current_structdef) and
  2062. (
  2063. (current_structdef=symownerdef) or
  2064. (current_structdef.owner.iscurrentunit)
  2065. )
  2066. ) or
  2067. (
  2068. not assigned(current_structdef) and
  2069. (symownerdef.owner.iscurrentunit)
  2070. ) or
  2071. (
  2072. { helpers can access protected symbols }
  2073. is_objectpascal_helper(contextobjdef) and
  2074. def_is_related(tobjectdef(contextobjdef).extendeddef,symownerdef)
  2075. )
  2076. )
  2077. );
  2078. end;
  2079. vis_public,
  2080. vis_published :
  2081. result:=true;
  2082. end;
  2083. end;
  2084. function is_visible_for_object(pd:tprocdef;contextobjdef:tabstractrecorddef):boolean;
  2085. begin
  2086. result:=is_visible_for_object(pd.owner,pd.visibility,contextobjdef);
  2087. end;
  2088. function is_visible_for_object(sym:tsym;contextobjdef:tabstractrecorddef):boolean;
  2089. var
  2090. i : longint;
  2091. pd : tprocdef;
  2092. begin
  2093. if sym.typ=procsym then
  2094. begin
  2095. { A procsym is visible, when there is at least one of the procdefs visible }
  2096. result:=false;
  2097. for i:=0 to tprocsym(sym).ProcdefList.Count-1 do
  2098. begin
  2099. pd:=tprocdef(tprocsym(sym).ProcdefList[i]);
  2100. if (pd.owner=sym.owner) and
  2101. is_visible_for_object(pd,contextobjdef) then
  2102. begin
  2103. result:=true;
  2104. exit;
  2105. end;
  2106. end;
  2107. end
  2108. else
  2109. result:=is_visible_for_object(sym.owner,sym.visibility,contextobjdef);
  2110. end;
  2111. function searchsym(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2112. begin
  2113. result:=searchsym_maybe_with_symoption(s,srsym,srsymtable,[],sp_none);
  2114. end;
  2115. function searchsym_with_flags(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  2116. begin
  2117. result:=searchsym_maybe_with_symoption(s,srsym,srsymtable,flags,sp_none);
  2118. end;
  2119. function searchsym_maybe_with_symoption(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags;option:tsymoption):boolean;
  2120. var
  2121. hashedid: THashedIDString;
  2122. contextstructdef: tabstractrecorddef;
  2123. stackitem: psymtablestackitem;
  2124. begin
  2125. result:=false;
  2126. hashedid.id:=s;
  2127. stackitem:=symtablestack.stack;
  2128. while assigned(stackitem) do
  2129. begin
  2130. srsymtable:=stackitem^.symtable;
  2131. if (srsymtable.symtabletype=objectsymtable) then
  2132. begin
  2133. { TODO : implement the search for an option in classes as well }
  2134. if ssf_search_option in flags then
  2135. begin
  2136. result:=false;
  2137. exit;
  2138. end;
  2139. if searchsym_in_class(tobjectdef(srsymtable.defowner),tobjectdef(srsymtable.defowner),s,srsym,srsymtable,flags+[ssf_search_helper]) then
  2140. begin
  2141. result:=true;
  2142. exit;
  2143. end;
  2144. end
  2145. else if not((srsymtable.symtabletype=withsymtable) and assigned(srsymtable.defowner) and
  2146. (srsymtable.defowner.typ=undefineddef)) then
  2147. begin
  2148. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2149. { First check if it is a unit/namespace symbol.
  2150. They are visible only if they are from the current unit or
  2151. unit of generic of currently processed specialization. }
  2152. if assigned(srsym) and
  2153. (
  2154. not(srsym.typ in [unitsym,namespacesym]) or
  2155. srsymtable.iscurrentunit or
  2156. (assigned(current_specializedef)and(current_specializedef.genericdef.owner.moduleid=srsymtable.moduleid))
  2157. ) and
  2158. (not (ssf_search_option in flags) or (option in srsym.symoptions))then
  2159. begin
  2160. { use the class from withsymtable only when it is
  2161. defined in this unit }
  2162. if (srsymtable.symtabletype=withsymtable) and
  2163. assigned(srsymtable.defowner) and
  2164. (srsymtable.defowner.typ in [recorddef,objectdef]) and
  2165. (srsymtable.defowner.owner.symtabletype in [globalsymtable,staticsymtable,objectsymtable,recordsymtable]) and
  2166. (srsymtable.defowner.owner.iscurrentunit) then
  2167. contextstructdef:=tabstractrecorddef(srsymtable.defowner)
  2168. else
  2169. contextstructdef:=current_structdef;
  2170. if not(srsym.owner.symtabletype in [objectsymtable,recordsymtable]) or
  2171. is_visible_for_object(srsym,contextstructdef) then
  2172. begin
  2173. { we need to know if a procedure references symbols
  2174. in the static symtable, because then it can't be
  2175. inlined from outside this unit }
  2176. if assigned(current_procinfo) and
  2177. (srsym.owner.symtabletype=staticsymtable) then
  2178. include(current_procinfo.flags,pi_uses_static_symtable);
  2179. if not (ssf_no_addsymref in flags) then
  2180. addsymref(srsym);
  2181. result:=true;
  2182. exit;
  2183. end;
  2184. end;
  2185. end;
  2186. stackitem:=stackitem^.next;
  2187. end;
  2188. srsym:=nil;
  2189. srsymtable:=nil;
  2190. end;
  2191. function searchsym_with_symoption(const s: TIDString;out srsym:tsym;out
  2192. srsymtable:TSymtable;option:tsymoption):boolean;
  2193. begin
  2194. result:=searchsym_maybe_with_symoption(s,srsym,srsymtable,[ssf_search_option],option);
  2195. end;
  2196. function searchsym_type(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2197. var
  2198. hashedid : THashedIDString;
  2199. stackitem : psymtablestackitem;
  2200. classh : tobjectdef;
  2201. begin
  2202. result:=false;
  2203. hashedid.id:=s;
  2204. stackitem:=symtablestack.stack;
  2205. while assigned(stackitem) do
  2206. begin
  2207. {
  2208. It is not possible to have type symbols in:
  2209. parameters
  2210. Exception are classes, objects, records, generic definitions and specializations
  2211. that have the parameterized types inserted in the symtable.
  2212. }
  2213. srsymtable:=stackitem^.symtable;
  2214. if (srsymtable.symtabletype=ObjectSymtable) then
  2215. begin
  2216. classh:=tobjectdef(srsymtable.defowner);
  2217. while assigned(classh) do
  2218. begin
  2219. srsymtable:=classh.symtable;
  2220. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2221. if assigned(srsym) and
  2222. not(srsym.typ in [fieldvarsym,paravarsym,propertysym,procsym,labelsym]) and
  2223. is_visible_for_object(srsym,current_structdef) then
  2224. begin
  2225. addsymref(srsym);
  2226. result:=true;
  2227. exit;
  2228. end;
  2229. classh:=classh.childof;
  2230. end;
  2231. end
  2232. else
  2233. begin
  2234. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2235. if assigned(srsym) and
  2236. (
  2237. not(srsym.typ in [unitsym,namespacesym]) or
  2238. srsymtable.iscurrentunit or
  2239. (assigned(current_specializedef)and(current_specializedef.genericdef.owner.moduleid=srsymtable.moduleid))
  2240. ) and
  2241. not(srsym.typ in [fieldvarsym,paravarsym,propertysym,procsym,labelsym]) and
  2242. (not (srsym.owner.symtabletype in [objectsymtable,recordsymtable]) or is_visible_for_object(srsym,current_structdef)) then
  2243. begin
  2244. { we need to know if a procedure references symbols
  2245. in the static symtable, because then it can't be
  2246. inlined from outside this unit }
  2247. if assigned(current_procinfo) and
  2248. (srsym.owner.symtabletype=staticsymtable) then
  2249. include(current_procinfo.flags,pi_uses_static_symtable);
  2250. addsymref(srsym);
  2251. result:=true;
  2252. exit;
  2253. end;
  2254. end;
  2255. stackitem:=stackitem^.next;
  2256. end;
  2257. result:=false;
  2258. srsym:=nil;
  2259. srsymtable:=nil;
  2260. end;
  2261. function searchsym_in_module(pm:pointer;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2262. var
  2263. pmod : tmodule;
  2264. begin
  2265. pmod:=tmodule(pm);
  2266. result:=false;
  2267. if assigned(pmod.globalsymtable) then
  2268. begin
  2269. srsym:=tsym(pmod.globalsymtable.Find(s));
  2270. if assigned(srsym) then
  2271. begin
  2272. srsymtable:=pmod.globalsymtable;
  2273. addsymref(srsym);
  2274. result:=true;
  2275. exit;
  2276. end;
  2277. end;
  2278. { If the module is the current unit we also need
  2279. to search the local symtable }
  2280. if (pmod=current_module) and
  2281. assigned(pmod.localsymtable) then
  2282. begin
  2283. srsym:=tsym(pmod.localsymtable.Find(s));
  2284. if assigned(srsym) then
  2285. begin
  2286. srsymtable:=pmod.localsymtable;
  2287. addsymref(srsym);
  2288. result:=true;
  2289. exit;
  2290. end;
  2291. end;
  2292. srsym:=nil;
  2293. srsymtable:=nil;
  2294. end;
  2295. function searchsym_in_named_module(const unitname, symname: TIDString; out srsym: tsym; out srsymtable: tsymtable): boolean;
  2296. var
  2297. stackitem : psymtablestackitem;
  2298. begin
  2299. result:=false;
  2300. stackitem:=symtablestack.stack;
  2301. while assigned(stackitem) do
  2302. begin
  2303. srsymtable:=stackitem^.symtable;
  2304. if (srsymtable.symtabletype=globalsymtable) and
  2305. (srsymtable.name^=unitname) then
  2306. begin
  2307. srsym:=tsym(srsymtable.find(symname));
  2308. if not assigned(srsym) then
  2309. break;
  2310. result:=true;
  2311. exit;
  2312. end;
  2313. stackitem:=stackitem^.next;
  2314. end;
  2315. { If the module is the current unit we also need
  2316. to search the local symtable }
  2317. if assigned(current_module.localsymtable) and
  2318. (current_module.localsymtable.name^=unitname) then
  2319. begin
  2320. srsymtable:=current_module.localsymtable;
  2321. srsym:=tsym(srsymtable.find(symname));
  2322. if assigned(srsym) then
  2323. begin
  2324. result:=true;
  2325. exit;
  2326. end;
  2327. end;
  2328. end;
  2329. function maybe_find_real_class_definition(pd: tdef; erroronfailure: boolean): tdef;
  2330. begin
  2331. result:=pd;
  2332. if pd.typ<>objectdef then
  2333. exit;
  2334. result:=find_real_class_definition(tobjectdef(pd),erroronfailure);
  2335. end;
  2336. function find_real_class_definition(pd: tobjectdef; erroronfailure: boolean): tobjectdef;
  2337. var
  2338. hashedid : THashedIDString;
  2339. stackitem : psymtablestackitem;
  2340. srsymtable : tsymtable;
  2341. srsym : tsym;
  2342. formalname,
  2343. foundname : shortstring;
  2344. formalnameptr,
  2345. foundnameptr: pshortstring;
  2346. begin
  2347. { not a formal definition -> return it }
  2348. if not(oo_is_formal in pd.objectoptions) then
  2349. begin
  2350. result:=pd;
  2351. exit;
  2352. end;
  2353. hashedid.id:=pd.typesym.name;
  2354. stackitem:=symtablestack.stack;
  2355. while assigned(stackitem) do
  2356. begin
  2357. srsymtable:=stackitem^.symtable;
  2358. { ObjC classes can't appear in generics or as nested class
  2359. definitions. Java classes can. }
  2360. if not(srsymtable.symtabletype in [recordsymtable,parasymtable]) or
  2361. (is_java_class_or_interface(pd) and
  2362. (srsymtable.symtabletype=ObjectSymtable)) then
  2363. begin
  2364. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2365. if assigned(srsym) and
  2366. (srsym.typ=typesym) and
  2367. (ttypesym(srsym).typedef.typ=objectdef) and
  2368. (tobjectdef(ttypesym(srsym).typedef).objecttype=pd.objecttype) and
  2369. not(oo_is_formal in tobjectdef(ttypesym(srsym).typedef).objectoptions) then
  2370. begin
  2371. if not(oo_is_forward in tobjectdef(ttypesym(srsym).typedef).objectoptions) then
  2372. begin
  2373. { the external name for the formal and the real
  2374. definition must match }
  2375. if assigned(tobjectdef(ttypesym(srsym).typedef).import_lib) or
  2376. assigned(pd.import_lib) then
  2377. begin
  2378. if assigned(pd.import_lib) then
  2379. formalname:=pd.import_lib^+'.'
  2380. else
  2381. formalname:='';
  2382. formalname:=formalname+pd.objextname^;
  2383. if assigned(tobjectdef(ttypesym(srsym).typedef).import_lib) then
  2384. foundname:=tobjectdef(ttypesym(srsym).typedef).import_lib^+'.'
  2385. else
  2386. foundname:='';
  2387. foundname:=foundname+tobjectdef(ttypesym(srsym).typedef).objextname^;
  2388. formalnameptr:=@formalname;
  2389. foundnameptr:=@foundname;
  2390. end
  2391. else
  2392. begin
  2393. formalnameptr:=pd.objextname;
  2394. foundnameptr:=tobjectdef(ttypesym(srsym).typedef).objextname;
  2395. end;
  2396. if foundnameptr^<>formalnameptr^ then
  2397. begin
  2398. MessagePos2(pd.typesym.fileinfo,sym_e_external_class_name_mismatch1,formalnameptr^,pd.typename);
  2399. MessagePos1(srsym.fileinfo,sym_e_external_class_name_mismatch2,foundnameptr^);
  2400. end;
  2401. end;
  2402. result:=tobjectdef(ttypesym(srsym).typedef);
  2403. if assigned(current_procinfo) and
  2404. (srsym.owner.symtabletype=staticsymtable) then
  2405. include(current_procinfo.flags,pi_uses_static_symtable);
  2406. addsymref(srsym);
  2407. exit;
  2408. end;
  2409. end;
  2410. stackitem:=stackitem^.next;
  2411. end;
  2412. { nothing found: optionally give an error and return the original
  2413. (empty) one }
  2414. if erroronfailure then
  2415. Message1(sym_e_formal_class_not_resolved,pd.objrealname^);
  2416. result:=pd;
  2417. end;
  2418. function searchsym_in_class(classh: tobjectdef;contextclassh:tabstractrecorddef;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  2419. var
  2420. hashedid : THashedIDString;
  2421. orgclass : tobjectdef;
  2422. i : longint;
  2423. hlpsrsym : tsym;
  2424. hlpsrsymtable : tsymtable;
  2425. begin
  2426. orgclass:=classh;
  2427. { in case this is a formal class, first find the real definition }
  2428. if assigned(classh) then
  2429. begin
  2430. if (oo_is_formal in classh.objectoptions) then
  2431. classh:=find_real_class_definition(classh,true);
  2432. { The contextclassh is used for visibility. The classh must be equal to
  2433. or be a parent of contextclassh. E.g. for inherited searches the classh is the
  2434. parent or a class helper. }
  2435. if not (def_is_related(contextclassh,classh) or
  2436. (is_classhelper(contextclassh) and
  2437. assigned(tobjectdef(contextclassh).extendeddef) and
  2438. (tobjectdef(contextclassh).extendeddef.typ=objectdef) and
  2439. def_is_related(tobjectdef(contextclassh).extendeddef,classh))) then
  2440. internalerror(200811161);
  2441. end;
  2442. result:=false;
  2443. hashedid.id:=s;
  2444. { an Objective-C protocol or Java interface can inherit from multiple
  2445. other protocols/interfaces -> use ImplementedInterfaces instead }
  2446. if is_objcprotocol(classh) or
  2447. is_javainterface(classh) then
  2448. begin
  2449. srsymtable:=classh.symtable;
  2450. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2451. if assigned(srsym) and
  2452. is_visible_for_object(srsym,contextclassh) then
  2453. begin
  2454. if not (ssf_no_addsymref in flags) then
  2455. addsymref(srsym);
  2456. result:=true;
  2457. exit;
  2458. end;
  2459. for i:=0 to classh.ImplementedInterfaces.count-1 do
  2460. begin
  2461. if searchsym_in_class(TImplementedInterface(classh.ImplementedInterfaces[i]).intfdef,contextclassh,s,srsym,srsymtable,flags-[ssf_search_helper]) then
  2462. begin
  2463. result:=true;
  2464. exit;
  2465. end;
  2466. end;
  2467. end
  2468. else
  2469. if is_objectpascal_helper(classh) then
  2470. begin
  2471. { helpers have their own obscure search logic... }
  2472. result:=searchsym_in_helper(classh,tobjectdef(contextclassh),s,srsym,srsymtable,flags-[ssf_has_inherited]);
  2473. if result then
  2474. exit;
  2475. end
  2476. else
  2477. begin
  2478. hlpsrsym:=nil;
  2479. hlpsrsymtable:=nil;
  2480. while assigned(classh) do
  2481. begin
  2482. { search for a class helper method first if this is an Object
  2483. Pascal class and we haven't yet found a helper symbol }
  2484. if is_class(classh) and
  2485. (ssf_search_helper in flags) and
  2486. not assigned(hlpsrsym) then
  2487. begin
  2488. result:=search_objectpascal_helper(classh,contextclassh,s,srsym,srsymtable);
  2489. if result then
  2490. { if the procsym is overloaded we need to use the
  2491. "original" symbol; the helper symbol will be found when
  2492. searching for overloads }
  2493. if (srsym.typ<>procsym) or
  2494. not (sp_has_overloaded in tprocsym(srsym).symoptions) then
  2495. exit
  2496. else
  2497. begin
  2498. { remember the found symbol if the class hierarchy
  2499. should not contain the a method with that name }
  2500. hlpsrsym:=srsym;
  2501. hlpsrsymtable:=srsymtable;
  2502. end;
  2503. end;
  2504. srsymtable:=classh.symtable;
  2505. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2506. if assigned(srsym) and
  2507. is_visible_for_object(srsym,contextclassh) then
  2508. begin
  2509. if not (ssf_no_addsymref in flags) then
  2510. addsymref(srsym);
  2511. result:=true;
  2512. exit;
  2513. end;
  2514. classh:=classh.childof;
  2515. end;
  2516. { did we find a helper symbol, but no symbol with the same name in
  2517. the extended object's hierarchy? }
  2518. if assigned(hlpsrsym) then
  2519. begin
  2520. srsym:=hlpsrsym;
  2521. srsymtable:=hlpsrsymtable;
  2522. result:=true;
  2523. exit;
  2524. end;
  2525. end;
  2526. if is_objcclass(orgclass) then
  2527. result:=search_objc_helper(orgclass,s,srsym,srsymtable)
  2528. else
  2529. begin
  2530. srsym:=nil;
  2531. srsymtable:=nil;
  2532. end;
  2533. end;
  2534. function searchsym_in_record(recordh:tabstractrecorddef;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2535. var
  2536. hashedid : THashedIDString;
  2537. hlpsrsym : tsym;
  2538. hlpsrsymtable : tsymtable;
  2539. begin
  2540. result:=false;
  2541. hlpsrsym:=nil;
  2542. hlpsrsymtable:=nil;
  2543. hashedid.id:=s;
  2544. { search for a record helper method first }
  2545. result:=search_objectpascal_helper(recordh,recordh,s,srsym,srsymtable);
  2546. if result then
  2547. { if the procsym is overloaded we need to use the
  2548. "original" symbol; the helper symbol will be found when
  2549. searching for overloads }
  2550. if (srsym.typ<>procsym) or
  2551. not (sp_has_overloaded in tprocsym(srsym).symoptions) then
  2552. exit
  2553. else
  2554. begin
  2555. { remember the found symbol if we should not find a symbol with
  2556. the same name in the extended record }
  2557. hlpsrsym:=srsym;
  2558. hlpsrsymtable:=srsymtable;
  2559. end;
  2560. srsymtable:=recordh.symtable;
  2561. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2562. if assigned(srsym) and is_visible_for_object(srsym,recordh) then
  2563. begin
  2564. addsymref(srsym);
  2565. result:=true;
  2566. exit;
  2567. end;
  2568. srsym:=hlpsrsym;
  2569. srsymtable:=hlpsrsymtable;
  2570. result:=assigned(srsym);
  2571. end;
  2572. function searchsym_in_class_by_msgint(classh:tobjectdef;msgid:longint;out srdef : tdef;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2573. var
  2574. def : tdef;
  2575. i : longint;
  2576. begin
  2577. { in case this is a formal class, first find the real definition }
  2578. if assigned(classh) and
  2579. (oo_is_formal in classh.objectoptions) then
  2580. classh:=find_real_class_definition(classh,true);
  2581. result:=false;
  2582. def:=nil;
  2583. while assigned(classh) do
  2584. begin
  2585. for i:=0 to classh.symtable.DefList.Count-1 do
  2586. begin
  2587. def:=tstoreddef(classh.symtable.DefList[i]);
  2588. { Find also all hidden private methods to
  2589. be compatible with delphi, see tw6203 (PFV) }
  2590. if (def.typ=procdef) and
  2591. (po_msgint in tprocdef(def).procoptions) and
  2592. (tprocdef(def).messageinf.i=msgid) then
  2593. begin
  2594. srdef:=def;
  2595. srsym:=tprocdef(def).procsym;
  2596. srsymtable:=classh.symtable;
  2597. addsymref(srsym);
  2598. result:=true;
  2599. exit;
  2600. end;
  2601. end;
  2602. classh:=classh.childof;
  2603. end;
  2604. srdef:=nil;
  2605. srsym:=nil;
  2606. srsymtable:=nil;
  2607. end;
  2608. function searchsym_in_class_by_msgstr(classh:tobjectdef;const s:string;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2609. var
  2610. def : tdef;
  2611. i : longint;
  2612. begin
  2613. { in case this is a formal class, first find the real definition }
  2614. if assigned(classh) and
  2615. (oo_is_formal in classh.objectoptions) then
  2616. classh:=find_real_class_definition(classh,true);
  2617. result:=false;
  2618. def:=nil;
  2619. while assigned(classh) do
  2620. begin
  2621. for i:=0 to classh.symtable.DefList.Count-1 do
  2622. begin
  2623. def:=tstoreddef(classh.symtable.DefList[i]);
  2624. { Find also all hidden private methods to
  2625. be compatible with delphi, see tw6203 (PFV) }
  2626. if (def.typ=procdef) and
  2627. (po_msgstr in tprocdef(def).procoptions) and
  2628. (tprocdef(def).messageinf.str^=s) then
  2629. begin
  2630. srsym:=tprocdef(def).procsym;
  2631. srsymtable:=classh.symtable;
  2632. addsymref(srsym);
  2633. result:=true;
  2634. exit;
  2635. end;
  2636. end;
  2637. classh:=classh.childof;
  2638. end;
  2639. srsym:=nil;
  2640. srsymtable:=nil;
  2641. end;
  2642. function searchsym_in_helper(classh,contextclassh:tobjectdef;const s: TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  2643. var
  2644. hashedid : THashedIDString;
  2645. parentclassh : tobjectdef;
  2646. begin
  2647. result:=false;
  2648. if not is_objectpascal_helper(classh) then
  2649. Internalerror(2011030101);
  2650. hashedid.id:=s;
  2651. { in a helper things are a bit more complex:
  2652. 1. search the symbol in the helper (if not "inherited")
  2653. 2. search the symbol in the extended type
  2654. 3. search the symbol in the parent helpers
  2655. 4. only classes: search the symbol in the parents of the extended type
  2656. }
  2657. if not (ssf_has_inherited in flags) then
  2658. begin
  2659. { search in the helper itself }
  2660. srsymtable:=classh.symtable;
  2661. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2662. if assigned(srsym) and
  2663. is_visible_for_object(srsym,contextclassh) then
  2664. begin
  2665. if not (ssf_no_addsymref in flags) then
  2666. addsymref(srsym);
  2667. result:=true;
  2668. exit;
  2669. end;
  2670. end;
  2671. { now search in the extended type itself }
  2672. { Note: the extendeddef might be Nil if we are currently parsing the
  2673. extended type itself and the identifier was not found }
  2674. if assigned(classh.extendeddef) and (classh.extendeddef.typ in [recorddef,objectdef]) then
  2675. begin
  2676. srsymtable:=tabstractrecorddef(classh.extendeddef).symtable;
  2677. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2678. if assigned(srsym) and
  2679. is_visible_for_object(srsym,contextclassh) then
  2680. begin
  2681. if not (ssf_no_addsymref in flags) then
  2682. addsymref(srsym);
  2683. result:=true;
  2684. exit;
  2685. end;
  2686. end;
  2687. { now search in the parent helpers }
  2688. parentclassh:=classh.childof;
  2689. while assigned(parentclassh) do
  2690. begin
  2691. srsymtable:=parentclassh.symtable;
  2692. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2693. if assigned(srsym) and
  2694. is_visible_for_object(srsym,contextclassh) then
  2695. begin
  2696. if not (ssf_no_addsymref in flags) then
  2697. addsymref(srsym);
  2698. result:=true;
  2699. exit;
  2700. end;
  2701. parentclassh:=parentclassh.childof;
  2702. end;
  2703. if is_class(classh.extendeddef) then
  2704. { now search in the parents of the extended class (with helpers!) }
  2705. result:=searchsym_in_class(tobjectdef(classh.extendeddef).childof,contextclassh,s,srsym,srsymtable,flags+[ssf_search_helper]);
  2706. { addsymref is already called by searchsym_in_class }
  2707. end;
  2708. function search_specific_assignment_operator(assignment_type:ttoken;from_def,to_def:Tdef):Tprocdef;
  2709. var
  2710. sym : Tprocsym;
  2711. hashedid : THashedIDString;
  2712. curreq,
  2713. besteq : tequaltype;
  2714. currpd,
  2715. bestpd : tprocdef;
  2716. stackitem : psymtablestackitem;
  2717. begin
  2718. hashedid.id:=overloaded_names[assignment_type];
  2719. besteq:=te_incompatible;
  2720. bestpd:=nil;
  2721. stackitem:=symtablestack.stack;
  2722. while assigned(stackitem) do
  2723. begin
  2724. sym:=Tprocsym(stackitem^.symtable.FindWithHash(hashedid));
  2725. if sym<>nil then
  2726. begin
  2727. if sym.typ<>procsym then
  2728. internalerror(200402031);
  2729. { if the source type is an alias then this is only the second choice,
  2730. if you mess with this code, check tw4093 }
  2731. currpd:=sym.find_procdef_assignment_operator(from_def,to_def,curreq);
  2732. if curreq>besteq then
  2733. begin
  2734. besteq:=curreq;
  2735. bestpd:=currpd;
  2736. if (besteq=te_exact) then
  2737. break;
  2738. end;
  2739. end;
  2740. stackitem:=stackitem^.next;
  2741. end;
  2742. result:=bestpd;
  2743. end;
  2744. function search_assignment_operator(from_def,to_def:Tdef;explicit:boolean):Tprocdef;
  2745. begin
  2746. { search record/object symtable first for a suitable operator }
  2747. if from_def.typ in [recorddef,objectdef] then
  2748. symtablestack.push(tabstractrecorddef(from_def).symtable);
  2749. if to_def.typ in [recorddef,objectdef] then
  2750. symtablestack.push(tabstractrecorddef(to_def).symtable);
  2751. { if type conversion is explicit then search first for explicit
  2752. operator overload and if not found then use implicit operator }
  2753. if explicit then
  2754. result:=search_specific_assignment_operator(_OP_EXPLICIT,from_def,to_def)
  2755. else
  2756. result:=nil;
  2757. if result=nil then
  2758. result:=search_specific_assignment_operator(_ASSIGNMENT,from_def,to_def);
  2759. { restore symtable stack }
  2760. if to_def.typ in [recorddef,objectdef] then
  2761. symtablestack.pop(tabstractrecorddef(to_def).symtable);
  2762. if from_def.typ in [recorddef,objectdef] then
  2763. symtablestack.pop(tabstractrecorddef(from_def).symtable);
  2764. end;
  2765. function search_enumerator_operator(from_def,to_def:Tdef): Tprocdef;
  2766. var
  2767. sym : Tprocsym;
  2768. hashedid : THashedIDString;
  2769. curreq,
  2770. besteq : tequaltype;
  2771. currpd,
  2772. bestpd : tprocdef;
  2773. stackitem : psymtablestackitem;
  2774. begin
  2775. hashedid.id:='enumerator';
  2776. besteq:=te_incompatible;
  2777. bestpd:=nil;
  2778. stackitem:=symtablestack.stack;
  2779. while assigned(stackitem) do
  2780. begin
  2781. sym:=Tprocsym(stackitem^.symtable.FindWithHash(hashedid));
  2782. if sym<>nil then
  2783. begin
  2784. if sym.typ<>procsym then
  2785. internalerror(200910241);
  2786. { if the source type is an alias then this is only the second choice,
  2787. if you mess with this code, check tw4093 }
  2788. currpd:=sym.find_procdef_enumerator_operator(from_def,to_def,curreq);
  2789. if curreq>besteq then
  2790. begin
  2791. besteq:=curreq;
  2792. bestpd:=currpd;
  2793. if (besteq=te_exact) then
  2794. break;
  2795. end;
  2796. end;
  2797. stackitem:=stackitem^.next;
  2798. end;
  2799. result:=bestpd;
  2800. end;
  2801. function search_system_type(const s: TIDString): ttypesym;
  2802. var
  2803. sym : tsym;
  2804. begin
  2805. sym:=tsym(systemunit.Find(s));
  2806. if not assigned(sym) or
  2807. (sym.typ<>typesym) then
  2808. message1(cg_f_unknown_system_type,s);
  2809. result:=ttypesym(sym);
  2810. end;
  2811. function try_search_system_type(const s: TIDString): ttypesym;
  2812. var
  2813. sym : tsym;
  2814. begin
  2815. sym:=tsym(systemunit.Find(s));
  2816. if not assigned(sym) then
  2817. result:=nil
  2818. else
  2819. begin
  2820. if sym.typ<>typesym then
  2821. message1(cg_f_unknown_system_type,s);
  2822. result:=ttypesym(sym);
  2823. end;
  2824. end;
  2825. function search_system_proc(const s: TIDString): tprocdef;
  2826. var
  2827. srsym: tsym;
  2828. begin
  2829. srsym:=tsym(systemunit.find(s));
  2830. if not assigned(srsym) and
  2831. (cs_compilesystem in current_settings.moduleswitches) then
  2832. srsym:=tsym(systemunit.Find(upper(s)));
  2833. if not assigned(srsym) or
  2834. (srsym.typ<>procsym) then
  2835. message1(cg_f_unknown_compilerproc,s);
  2836. result:=tprocdef(tprocsym(srsym).procdeflist[0]);
  2837. end;
  2838. function search_named_unit_globaltype(const unitname, typename: TIDString; throwerror: boolean): ttypesym;
  2839. var
  2840. srsymtable: tsymtable;
  2841. sym: tsym;
  2842. begin
  2843. sym:=nil;
  2844. if searchsym_in_named_module(unitname,typename,sym,srsymtable) and
  2845. (sym.typ=typesym) then
  2846. begin
  2847. result:=ttypesym(sym);
  2848. exit;
  2849. end
  2850. else
  2851. begin
  2852. if throwerror then
  2853. message2(cg_f_unknown_type_in_unit,typename,unitname);
  2854. result:=nil;
  2855. end;
  2856. end;
  2857. function search_last_objectpascal_helper(pd : tdef;contextclassh : tabstractrecorddef;out odef : tobjectdef):boolean;
  2858. var
  2859. s: string;
  2860. list: TFPObjectList;
  2861. i: integer;
  2862. st: tsymtable;
  2863. begin
  2864. result:=false;
  2865. odef:=nil;
  2866. { when there are no helpers active currently then we don't need to do
  2867. anything }
  2868. if current_module.extendeddefs.count=0 then
  2869. exit;
  2870. { no helpers for anonymous types }
  2871. if ((pd.typ in [recorddef,objectdef]) and
  2872. (
  2873. not assigned(tabstractrecorddef(pd).objrealname) or
  2874. (tabstractrecorddef(pd).objrealname^='')
  2875. )
  2876. ) or
  2877. not assigned(pd.typesym) then
  2878. exit;
  2879. { if pd is defined inside a procedure we must not use make_mangledname
  2880. (as a helper may not be defined in a procedure this is no problem...)}
  2881. st:=pd.owner;
  2882. while st.symtabletype in [objectsymtable,recordsymtable] do
  2883. st:=st.defowner.owner;
  2884. if st.symtabletype=localsymtable then
  2885. exit;
  2886. { the mangled name is used as the key for tmodule.extendeddefs }
  2887. s:=generate_objectpascal_helper_key(pd);
  2888. list:=TFPObjectList(current_module.extendeddefs.Find(s));
  2889. if assigned(list) and (list.count>0) then
  2890. begin
  2891. i:=list.count-1;
  2892. repeat
  2893. odef:=tobjectdef(list[list.count-1]);
  2894. result:=(odef.owner.symtabletype in [staticsymtable,globalsymtable]) or
  2895. is_visible_for_object(tobjectdef(list[i]).typesym,contextclassh);
  2896. dec(i);
  2897. until result or (i<0);
  2898. if not result then
  2899. { just to be sure that noone uses odef }
  2900. odef:=nil;
  2901. end;
  2902. end;
  2903. function search_objectpascal_helper(pd : tdef;contextclassh : tabstractrecorddef;const s: string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  2904. var
  2905. hashedid : THashedIDString;
  2906. classh : tobjectdef;
  2907. i : integer;
  2908. pdef : tprocdef;
  2909. begin
  2910. result:=false;
  2911. { if there is no class helper for the class then there is no need to
  2912. search further }
  2913. if not search_last_objectpascal_helper(pd,contextclassh,classh) then
  2914. exit;
  2915. hashedid.id:=s;
  2916. repeat
  2917. srsymtable:=classh.symtable;
  2918. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2919. if srsym<>nil then
  2920. begin
  2921. case srsym.typ of
  2922. procsym:
  2923. begin
  2924. for i:=0 to tprocsym(srsym).procdeflist.count-1 do
  2925. begin
  2926. pdef:=tprocdef(tprocsym(srsym).procdeflist[i]);
  2927. if not is_visible_for_object(pdef.owner,pdef.visibility,contextclassh) then
  2928. continue;
  2929. { we need to know if a procedure references symbols
  2930. in the static symtable, because then it can't be
  2931. inlined from outside this unit }
  2932. if assigned(current_procinfo) and
  2933. (srsym.owner.symtabletype=staticsymtable) then
  2934. include(current_procinfo.flags,pi_uses_static_symtable);
  2935. { the first found method wins }
  2936. srsym:=tprocdef(tprocsym(srsym).procdeflist[i]).procsym;
  2937. srsymtable:=srsym.owner;
  2938. addsymref(srsym);
  2939. result:=true;
  2940. exit;
  2941. end;
  2942. end;
  2943. typesym,
  2944. fieldvarsym,
  2945. constsym,
  2946. enumsym,
  2947. undefinedsym,
  2948. propertysym:
  2949. begin
  2950. addsymref(srsym);
  2951. result:=true;
  2952. exit;
  2953. end;
  2954. else
  2955. internalerror(2014041101);
  2956. end;
  2957. end;
  2958. { try the helper parent if available }
  2959. classh:=classh.childof;
  2960. until classh=nil;
  2961. srsym:=nil;
  2962. srsymtable:=nil;
  2963. end;
  2964. function search_objc_helper(pd : tobjectdef;const s : string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  2965. var
  2966. hashedid : THashedIDString;
  2967. stackitem : psymtablestackitem;
  2968. i : longint;
  2969. defowner : tobjectdef;
  2970. begin
  2971. hashedid.id:=class_helper_prefix+s;
  2972. stackitem:=symtablestack.stack;
  2973. while assigned(stackitem) do
  2974. begin
  2975. srsymtable:=stackitem^.symtable;
  2976. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2977. if assigned(srsym) then
  2978. begin
  2979. if not(srsymtable.symtabletype in [globalsymtable,staticsymtable]) or
  2980. not(srsym.owner.symtabletype in [globalsymtable,staticsymtable]) or
  2981. (srsym.typ<>procsym) then
  2982. internalerror(2009111505);
  2983. { check whether this procsym includes a helper for this particular class }
  2984. for i:=0 to tprocsym(srsym).procdeflist.count-1 do
  2985. begin
  2986. { does pd inherit from (or is the same as) the class
  2987. that this method's category extended?
  2988. Warning: this list contains both category and objcclass methods
  2989. (for id.randommethod), so only check category methods here
  2990. }
  2991. defowner:=tobjectdef(tprocdef(tprocsym(srsym).procdeflist[i]).owner.defowner);
  2992. if (oo_is_classhelper in defowner.objectoptions) and
  2993. def_is_related(pd,defowner.childof) then
  2994. begin
  2995. { we need to know if a procedure references symbols
  2996. in the static symtable, because then it can't be
  2997. inlined from outside this unit }
  2998. if assigned(current_procinfo) and
  2999. (srsym.owner.symtabletype=staticsymtable) then
  3000. include(current_procinfo.flags,pi_uses_static_symtable);
  3001. { no need to keep looking. There might be other
  3002. categories that extend this, a parent or child
  3003. class with a method with the same name (either
  3004. overriding this one, or overridden by this one),
  3005. but that doesn't matter as far as the basic
  3006. procsym is concerned.
  3007. }
  3008. srsym:=tprocdef(tprocsym(srsym).procdeflist[i]).procsym;
  3009. srsymtable:=srsym.owner;
  3010. addsymref(srsym);
  3011. result:=true;
  3012. exit;
  3013. end;
  3014. end;
  3015. end;
  3016. stackitem:=stackitem^.next;
  3017. end;
  3018. srsym:=nil;
  3019. srsymtable:=nil;
  3020. result:=false;
  3021. end;
  3022. function search_objc_method(const s : string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  3023. var
  3024. hashedid : THashedIDString;
  3025. stackitem : psymtablestackitem;
  3026. i : longint;
  3027. begin
  3028. hashedid.id:=class_helper_prefix+s;
  3029. stackitem:=symtablestack.stack;
  3030. while assigned(stackitem) do
  3031. begin
  3032. srsymtable:=stackitem^.symtable;
  3033. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  3034. if assigned(srsym) then
  3035. begin
  3036. if not(srsymtable.symtabletype in [globalsymtable,staticsymtable]) or
  3037. not(srsym.owner.symtabletype in [globalsymtable,staticsymtable]) or
  3038. (srsym.typ<>procsym) then
  3039. internalerror(2009112005);
  3040. { check whether this procsym includes a helper for this particular class }
  3041. for i:=0 to tprocsym(srsym).procdeflist.count-1 do
  3042. begin
  3043. { we need to know if a procedure references symbols
  3044. in the static symtable, because then it can't be
  3045. inlined from outside this unit }
  3046. if assigned(current_procinfo) and
  3047. (srsym.owner.symtabletype=staticsymtable) then
  3048. include(current_procinfo.flags,pi_uses_static_symtable);
  3049. { no need to keep looking. There might be other
  3050. methods with the same name, but that doesn't matter
  3051. as far as the basic procsym is concerned.
  3052. }
  3053. srsym:=tprocdef(tprocsym(srsym).procdeflist[i]).procsym;
  3054. { We need the symtable in which the classhelper-like sym
  3055. is located, not the objectdef. The reason is that the
  3056. callnode will climb the symtablestack until it encounters
  3057. this symtable to start looking for overloads (and it won't
  3058. find the objectsymtable in which this method sym is
  3059. located
  3060. srsymtable:=srsym.owner;
  3061. }
  3062. addsymref(srsym);
  3063. result:=true;
  3064. exit;
  3065. end;
  3066. end;
  3067. stackitem:=stackitem^.next;
  3068. end;
  3069. srsym:=nil;
  3070. srsymtable:=nil;
  3071. result:=false;
  3072. end;
  3073. function search_struct_member(pd : tabstractrecorddef;const s : string):tsym;
  3074. { searches n in symtable of pd and all anchestors }
  3075. var
  3076. srsymtable : tsymtable;
  3077. begin
  3078. { in case this is a formal class, first find the real definition }
  3079. if (oo_is_formal in pd.objectoptions) then
  3080. pd:=find_real_class_definition(tobjectdef(pd),true);
  3081. if search_objectpascal_helper(pd, pd, s, result, srsymtable) then
  3082. exit;
  3083. result:=search_struct_member_no_helper(pd,s);
  3084. if assigned(result) then
  3085. exit;
  3086. { not found, now look for class helpers }
  3087. if is_objcclass(pd) then
  3088. search_objc_helper(tobjectdef(pd),s,result,srsymtable)
  3089. end;
  3090. function search_struct_member_no_helper(pd: tabstractrecorddef; const s: string): tsym;
  3091. var
  3092. hashedid : THashedIDString;
  3093. srsym : tsym;
  3094. begin
  3095. hashedid.id:=s;
  3096. while assigned(pd) do
  3097. begin
  3098. srsym:=tsym(pd.symtable.FindWithHash(hashedid));
  3099. if assigned(srsym) then
  3100. begin
  3101. result:=srsym;
  3102. exit;
  3103. end;
  3104. if pd.typ=objectdef then
  3105. pd:=tobjectdef(pd).childof
  3106. else
  3107. pd:=nil;
  3108. end;
  3109. result:=nil;
  3110. end;
  3111. function search_macro(const s : string):tsym;
  3112. var
  3113. stackitem : psymtablestackitem;
  3114. hashedid : THashedIDString;
  3115. srsym : tsym;
  3116. begin
  3117. hashedid.id:=s;
  3118. { First search the localmacrosymtable before searching the
  3119. global macrosymtables from the units }
  3120. if assigned(current_module) then
  3121. begin
  3122. srsym:=tsym(current_module.localmacrosymtable.FindWithHash(hashedid));
  3123. if assigned(srsym) then
  3124. begin
  3125. result:= srsym;
  3126. exit;
  3127. end;
  3128. end;
  3129. stackitem:=macrosymtablestack.stack;
  3130. while assigned(stackitem) do
  3131. begin
  3132. srsym:=tsym(stackitem^.symtable.FindWithHash(hashedid));
  3133. if assigned(srsym) then
  3134. begin
  3135. result:= srsym;
  3136. exit;
  3137. end;
  3138. stackitem:=stackitem^.next;
  3139. end;
  3140. result:= nil;
  3141. end;
  3142. function defined_macro(const s : string):boolean;
  3143. var
  3144. mac: tmacro;
  3145. begin
  3146. mac:=tmacro(search_macro(s));
  3147. if assigned(mac) then
  3148. begin
  3149. mac.is_used:=true;
  3150. defined_macro:=mac.defined;
  3151. end
  3152. else
  3153. defined_macro:=false;
  3154. end;
  3155. {****************************************************************************
  3156. Object Helpers
  3157. ****************************************************************************}
  3158. function search_default_property(pd : tabstractrecorddef) : tpropertysym;
  3159. { returns the default property of a class, searches also anchestors }
  3160. var
  3161. _defaultprop : tpropertysym;
  3162. helperpd : tobjectdef;
  3163. begin
  3164. _defaultprop:=nil;
  3165. { first search in helper's hierarchy }
  3166. if search_last_objectpascal_helper(pd,nil,helperpd) then
  3167. while assigned(helperpd) do
  3168. begin
  3169. helperpd.symtable.SymList.ForEachCall(@tstoredsymtable(helperpd.symtable).testfordefaultproperty,@_defaultprop);
  3170. if assigned(_defaultprop) then
  3171. break;
  3172. helperpd:=helperpd.childof;
  3173. end;
  3174. if assigned(_defaultprop) then
  3175. begin
  3176. search_default_property:=_defaultprop;
  3177. exit;
  3178. end;
  3179. { now search in the type's hierarchy itself }
  3180. while assigned(pd) do
  3181. begin
  3182. pd.symtable.SymList.ForEachCall(@tstoredsymtable(pd.symtable).testfordefaultproperty,@_defaultprop);
  3183. if assigned(_defaultprop) then
  3184. break;
  3185. if (pd.typ=objectdef) then
  3186. pd:=tobjectdef(pd).childof
  3187. else
  3188. break;
  3189. end;
  3190. search_default_property:=_defaultprop;
  3191. end;
  3192. {****************************************************************************
  3193. Macro Helpers
  3194. ****************************************************************************}
  3195. procedure def_system_macro(const name : string);
  3196. var
  3197. mac : tmacro;
  3198. s: string;
  3199. begin
  3200. if name = '' then
  3201. internalerror(2004121202);
  3202. s:= upper(name);
  3203. mac:=tmacro(search_macro(s));
  3204. if not assigned(mac) then
  3205. begin
  3206. mac:=tmacro.create(s);
  3207. if assigned(current_module) then
  3208. current_module.localmacrosymtable.insert(mac)
  3209. else
  3210. initialmacrosymtable.insert(mac);
  3211. end;
  3212. Message1(parser_c_macro_defined,mac.name);
  3213. mac.defined:=true;
  3214. end;
  3215. procedure set_system_macro(const name, value : string);
  3216. var
  3217. mac : tmacro;
  3218. s: string;
  3219. begin
  3220. if name = '' then
  3221. internalerror(2004121203);
  3222. s:= upper(name);
  3223. mac:=tmacro(search_macro(s));
  3224. if not assigned(mac) then
  3225. begin
  3226. mac:=tmacro.create(s);
  3227. if assigned(current_module) then
  3228. current_module.localmacrosymtable.insert(mac)
  3229. else
  3230. initialmacrosymtable.insert(mac);
  3231. end
  3232. else
  3233. begin
  3234. mac.is_compiler_var:=false;
  3235. if assigned(mac.buftext) then
  3236. freemem(mac.buftext,mac.buflen);
  3237. end;
  3238. Message2(parser_c_macro_set_to,mac.name,value);
  3239. mac.buflen:=length(value);
  3240. getmem(mac.buftext,mac.buflen);
  3241. move(value[1],mac.buftext^,mac.buflen);
  3242. mac.defined:=true;
  3243. end;
  3244. procedure set_system_compvar(const name, value : string);
  3245. var
  3246. mac : tmacro;
  3247. s: string;
  3248. begin
  3249. if name = '' then
  3250. internalerror(2004121204);
  3251. s:= upper(name);
  3252. mac:=tmacro(search_macro(s));
  3253. if not assigned(mac) then
  3254. begin
  3255. mac:=tmacro.create(s);
  3256. mac.is_compiler_var:=true;
  3257. if assigned(current_module) then
  3258. current_module.localmacrosymtable.insert(mac)
  3259. else
  3260. initialmacrosymtable.insert(mac);
  3261. end
  3262. else
  3263. begin
  3264. mac.is_compiler_var:=true;
  3265. if assigned(mac.buftext) then
  3266. freemem(mac.buftext,mac.buflen);
  3267. end;
  3268. Message2(parser_c_macro_set_to,mac.name,value);
  3269. mac.buflen:=length(value);
  3270. getmem(mac.buftext,mac.buflen);
  3271. move(value[1],mac.buftext^,mac.buflen);
  3272. mac.defined:=true;
  3273. end;
  3274. procedure undef_system_macro(const name : string);
  3275. var
  3276. mac : tmacro;
  3277. s: string;
  3278. begin
  3279. if name = '' then
  3280. internalerror(2004121205);
  3281. s:= upper(name);
  3282. mac:=tmacro(search_macro(s));
  3283. if not assigned(mac) then
  3284. {If not found, then it's already undefined.}
  3285. else
  3286. begin
  3287. Message1(parser_c_macro_undefined,mac.name);
  3288. mac.defined:=false;
  3289. mac.is_compiler_var:=false;
  3290. { delete old definition }
  3291. if assigned(mac.buftext) then
  3292. begin
  3293. freemem(mac.buftext,mac.buflen);
  3294. mac.buftext:=nil;
  3295. end;
  3296. end;
  3297. end;
  3298. {$ifdef UNITALIASES}
  3299. {****************************************************************************
  3300. TUNIT_ALIAS
  3301. ****************************************************************************}
  3302. constructor tunit_alias.create(const n:string);
  3303. var
  3304. i : longint;
  3305. begin
  3306. i:=pos('=',n);
  3307. if i=0 then
  3308. fail;
  3309. inherited createname(Copy(n,1,i-1));
  3310. newname:=stringdup(Copy(n,i+1,255));
  3311. end;
  3312. destructor tunit_alias.destroy;
  3313. begin
  3314. stringdispose(newname);
  3315. inherited destroy;
  3316. end;
  3317. procedure addunitalias(const n:string);
  3318. begin
  3319. unitaliases^.insert(tunit_alias,init(Upper(n))));
  3320. end;
  3321. function getunitalias(const n:string):string;
  3322. var
  3323. p : punit_alias;
  3324. begin
  3325. p:=punit_alias(unitaliases^.Find(Upper(n)));
  3326. if assigned(p) then
  3327. getunitalias:=punit_alias(p).newname^
  3328. else
  3329. getunitalias:=n;
  3330. end;
  3331. {$endif UNITALIASES}
  3332. {****************************************************************************
  3333. Init/Done Symtable
  3334. ****************************************************************************}
  3335. procedure InitSymtable;
  3336. begin
  3337. { Reset symbolstack }
  3338. symtablestack:=nil;
  3339. systemunit:=nil;
  3340. { create error syms and def }
  3341. generrorsym:=terrorsym.create;
  3342. generrordef:=cerrordef.create;
  3343. { macros }
  3344. initialmacrosymtable:=tmacrosymtable.create(false);
  3345. macrosymtablestack:=TSymtablestack.create;
  3346. macrosymtablestack.push(initialmacrosymtable);
  3347. {$ifdef UNITALIASES}
  3348. { unit aliases }
  3349. unitaliases:=TFPHashObjectList.create;
  3350. {$endif}
  3351. { set some global vars to nil, might be important for the ide }
  3352. class_tobject:=nil;
  3353. interface_iunknown:=nil;
  3354. interface_idispatch:=nil;
  3355. rec_tguid:=nil;
  3356. dupnr:=0;
  3357. end;
  3358. procedure DoneSymtable;
  3359. begin
  3360. generrorsym.owner:=nil;
  3361. generrorsym.free;
  3362. generrordef.owner:=nil;
  3363. generrordef.free;
  3364. initialmacrosymtable.free;
  3365. macrosymtablestack.free;
  3366. {$ifdef UNITALIASES}
  3367. unitaliases.free;
  3368. {$endif}
  3369. end;
  3370. end.