symtable.pas 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696
  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);
  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);
  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. begin
  1317. result:=false;
  1318. if not assigned(defowner) then
  1319. internalerror(200602061);
  1320. { procsym and propertysym have special code
  1321. to override values in inherited classes. For other
  1322. symbols check for duplicates }
  1323. if not(sym.typ in [procsym,propertysym]) then
  1324. begin
  1325. { but private ids can be reused }
  1326. hsym:=search_struct_member(tobjectdef(defowner),hashedid.id);
  1327. if assigned(hsym) and
  1328. (
  1329. (
  1330. not(m_delphi in current_settings.modeswitches) and
  1331. is_visible_for_object(hsym,tobjectdef(defowner))
  1332. ) or
  1333. (
  1334. { In Delphi, you can repeat members of a parent class. You can't }
  1335. { do this for objects however, and you (obviouly) can't }
  1336. { declare two fields with the same name in a single class }
  1337. (m_delphi in current_settings.modeswitches) and
  1338. (
  1339. is_object(tdef(defowner)) or
  1340. (hsym.owner = self)
  1341. )
  1342. )
  1343. ) then
  1344. begin
  1345. DuplicateSym(hashedid,sym,hsym);
  1346. result:=true;
  1347. end;
  1348. end
  1349. else
  1350. result:=inherited checkduplicate(hashedid,sym);
  1351. end;
  1352. {****************************************************************************
  1353. TAbstractLocalSymtable
  1354. ****************************************************************************}
  1355. procedure tabstractlocalsymtable.ppuwrite(ppufile:tcompilerppufile);
  1356. var
  1357. oldtyp : byte;
  1358. begin
  1359. oldtyp:=ppufile.entrytyp;
  1360. ppufile.entrytyp:=subentryid;
  1361. inherited ppuwrite(ppufile);
  1362. ppufile.entrytyp:=oldtyp;
  1363. end;
  1364. function tabstractlocalsymtable.count_locals:longint;
  1365. var
  1366. i : longint;
  1367. sym : tsym;
  1368. begin
  1369. result:=0;
  1370. for i:=0 to SymList.Count-1 do
  1371. begin
  1372. sym:=tsym(SymList[i]);
  1373. { Count only varsyms, but ignore the funcretsym }
  1374. if (tsym(sym).typ in [localvarsym,paravarsym]) and
  1375. (tsym(sym)<>current_procinfo.procdef.funcretsym) and
  1376. (not(vo_is_parentfp in tabstractvarsym(sym).varoptions) or
  1377. (tstoredsym(sym).refs>0)) then
  1378. inc(result);
  1379. end;
  1380. end;
  1381. {****************************************************************************
  1382. TLocalSymtable
  1383. ****************************************************************************}
  1384. constructor tlocalsymtable.create(adefowner:tdef;level:byte);
  1385. begin
  1386. inherited create('');
  1387. defowner:=adefowner;
  1388. symtabletype:=localsymtable;
  1389. symtablelevel:=level;
  1390. end;
  1391. function tlocalsymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1392. var
  1393. hsym : tsym;
  1394. begin
  1395. if not assigned(defowner) or
  1396. (defowner.typ<>procdef) then
  1397. internalerror(200602042);
  1398. result:=false;
  1399. hsym:=tsym(FindWithHash(hashedid));
  1400. if assigned(hsym) then
  1401. begin
  1402. { a local and the function can have the same
  1403. name in TP and Delphi, but RESULT not }
  1404. if (m_duplicate_names in current_settings.modeswitches) and
  1405. (hsym.typ in [absolutevarsym,localvarsym]) and
  1406. (vo_is_funcret in tabstractvarsym(hsym).varoptions) and
  1407. not((m_result in current_settings.modeswitches) and
  1408. (vo_is_result in tabstractvarsym(hsym).varoptions)) then
  1409. HideSym(hsym)
  1410. else
  1411. DuplicateSym(hashedid,sym,hsym);
  1412. result:=true;
  1413. exit;
  1414. end;
  1415. { check also parasymtable, this needs to be done here because
  1416. of the special situation with the funcret sym that needs to be
  1417. hidden for tp and delphi modes }
  1418. hsym:=tsym(tabstractprocdef(defowner).parast.FindWithHash(hashedid));
  1419. if assigned(hsym) then
  1420. begin
  1421. { a local and the function can have the same
  1422. name in TP and Delphi, but RESULT not }
  1423. if (m_duplicate_names in current_settings.modeswitches) and
  1424. (sym.typ in [absolutevarsym,localvarsym]) and
  1425. (vo_is_funcret in tabstractvarsym(sym).varoptions) and
  1426. not((m_result in current_settings.modeswitches) and
  1427. (vo_is_result in tabstractvarsym(sym).varoptions)) then
  1428. Hidesym(sym)
  1429. else
  1430. DuplicateSym(hashedid,sym,hsym);
  1431. result:=true;
  1432. exit;
  1433. end;
  1434. { check ObjectSymtable, skip this for funcret sym because
  1435. that will always be positive because it has the same name
  1436. as the procsym }
  1437. if not is_funcret_sym(sym) and
  1438. (defowner.typ=procdef) and
  1439. assigned(tprocdef(defowner).struct) and
  1440. (tprocdef(defowner).owner.defowner=tprocdef(defowner).struct) and
  1441. (
  1442. not(m_delphi in current_settings.modeswitches) or
  1443. is_object(tprocdef(defowner).struct)
  1444. ) then
  1445. result:=tprocdef(defowner).struct.symtable.checkduplicate(hashedid,sym);
  1446. end;
  1447. {****************************************************************************
  1448. TParaSymtable
  1449. ****************************************************************************}
  1450. constructor tparasymtable.create(adefowner:tdef;level:byte);
  1451. begin
  1452. inherited create('');
  1453. readonly:=false;
  1454. defowner:=adefowner;
  1455. symtabletype:=parasymtable;
  1456. symtablelevel:=level;
  1457. end;
  1458. function tparasymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1459. begin
  1460. result:=inherited checkduplicate(hashedid,sym);
  1461. if result then
  1462. exit;
  1463. if not(m_duplicate_names in current_settings.modeswitches) and
  1464. assigned(defowner) and (defowner.typ=procdef) and
  1465. assigned(tprocdef(defowner).struct) and
  1466. (tprocdef(defowner).owner.defowner=tprocdef(defowner).struct) and
  1467. (
  1468. not(m_delphi in current_settings.modeswitches) or
  1469. is_object(tprocdef(defowner).struct)
  1470. ) then
  1471. result:=tprocdef(defowner).struct.symtable.checkduplicate(hashedid,sym);
  1472. end;
  1473. procedure tparasymtable.insertdef(def: TDefEntry);
  1474. begin
  1475. if readonly then
  1476. defowner.owner.insertdef(def)
  1477. else
  1478. inherited insertdef(def);
  1479. end;
  1480. {****************************************************************************
  1481. TAbstractUniTSymtable
  1482. ****************************************************************************}
  1483. constructor tabstractuniTSymtable.create(const n : string;id:word);
  1484. begin
  1485. inherited create(n);
  1486. moduleid:=id;
  1487. end;
  1488. function tabstractuniTSymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1489. var
  1490. hsym : tsym;
  1491. begin
  1492. result:=false;
  1493. hsym:=tsym(FindWithHash(hashedid));
  1494. if assigned(hsym) then
  1495. begin
  1496. if (sym is tstoredsym) and handle_generic_dummysym(hsym,tstoredsym(sym).symoptions) then
  1497. exit;
  1498. if hsym.typ=symconst.namespacesym then
  1499. begin
  1500. case sym.typ of
  1501. symconst.namespacesym:;
  1502. symconst.unitsym:
  1503. begin
  1504. 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 }
  1505. tnamespacesym(hsym).unitsym:=tsym(sym);
  1506. end
  1507. else
  1508. HideSym(hsym);
  1509. end;
  1510. end
  1511. else
  1512. { In delphi (contrary to TP) you can have a symbol with the same name as the
  1513. unit, the unit can then not be accessed anymore using
  1514. <unit>.<id>, so we can hide the symbol.
  1515. Do the same if we add a namespace and there is a unit with the same name }
  1516. if (hsym.typ=symconst.unitsym) and
  1517. ((m_delphi in current_settings.modeswitches) or (sym.typ=symconst.namespacesym)) then
  1518. begin
  1519. HideSym(hsym);
  1520. if sym.typ=symconst.namespacesym then
  1521. tnamespacesym(sym).unitsym:=tsym(hsym);
  1522. end
  1523. else
  1524. DuplicateSym(hashedid,sym,hsym);
  1525. result:=true;
  1526. exit;
  1527. end;
  1528. end;
  1529. function tabstractuniTSymtable.findnamespace(const n:string):TSymEntry;
  1530. begin
  1531. result:=find(n);
  1532. if assigned(result)and(result.typ<>namespacesym)then
  1533. result:=nil;
  1534. end;
  1535. function tabstractuniTSymtable.iscurrentunit:boolean;
  1536. begin
  1537. result:=assigned(current_module) and
  1538. (
  1539. (current_module.globalsymtable=self) or
  1540. (current_module.localsymtable=self)
  1541. );
  1542. end;
  1543. procedure tabstractuniTSymtable.insertunit(sym:TSymEntry);
  1544. var
  1545. p:integer;
  1546. n,ns:string;
  1547. oldsym:TSymEntry;
  1548. begin
  1549. insert(sym);
  1550. n:=sym.realname;
  1551. p:=pos('.',n);
  1552. ns:='';
  1553. while p>0 do
  1554. begin
  1555. if ns='' then
  1556. ns:=copy(n,1,p-1)
  1557. else
  1558. ns:=ns+'.'+copy(n,1,p-1);
  1559. system.delete(n,1,p);
  1560. oldsym:=findnamespace(upper(ns));
  1561. if not assigned(oldsym) then
  1562. insert(cnamespacesym.create(ns));
  1563. p:=pos('.',n);
  1564. end;
  1565. end;
  1566. {****************************************************************************
  1567. TStaticSymtable
  1568. ****************************************************************************}
  1569. constructor tstaticsymtable.create(const n : string;id:word);
  1570. begin
  1571. inherited create(n,id);
  1572. symtabletype:=staticsymtable;
  1573. symtablelevel:=main_program_level;
  1574. currentvisibility:=vis_private;
  1575. end;
  1576. procedure tstaticsymtable.ppuload(ppufile:tcompilerppufile);
  1577. begin
  1578. inherited ppuload(ppufile);
  1579. { now we can deref the syms and defs }
  1580. deref;
  1581. end;
  1582. procedure tstaticsymtable.ppuwrite(ppufile:tcompilerppufile);
  1583. begin
  1584. inherited ppuwrite(ppufile);
  1585. end;
  1586. function tstaticsymtable.checkduplicate(var hashedid:THashedIDString;sym:TSymEntry):boolean;
  1587. begin
  1588. result:=inherited checkduplicate(hashedid,sym);
  1589. if not result and
  1590. (current_module.localsymtable=self) and
  1591. assigned(current_module.globalsymtable) then
  1592. result:=tglobalsymtable(current_module.globalsymtable).checkduplicate(hashedid,sym);
  1593. end;
  1594. function tstaticsymtable.findnamespace(const n:string):TSymEntry;
  1595. begin
  1596. result:=inherited findnamespace(n);
  1597. if not assigned(result) and
  1598. (current_module.localsymtable=self) and
  1599. assigned(current_module.globalsymtable) then
  1600. result:=tglobalsymtable(current_module.globalsymtable).findnamespace(n);
  1601. end;
  1602. {****************************************************************************
  1603. TGlobalSymtable
  1604. ****************************************************************************}
  1605. constructor tglobalsymtable.create(const n : string;id:word);
  1606. begin
  1607. inherited create(n,id);
  1608. symtabletype:=globalsymtable;
  1609. symtablelevel:=main_program_level;
  1610. end;
  1611. procedure tglobalsymtable.ppuload(ppufile:tcompilerppufile);
  1612. begin
  1613. inherited ppuload(ppufile);
  1614. { now we can deref the syms and defs }
  1615. deref;
  1616. end;
  1617. procedure tglobalsymtable.ppuwrite(ppufile:tcompilerppufile);
  1618. begin
  1619. { write the symtable entries }
  1620. inherited ppuwrite(ppufile);
  1621. end;
  1622. {*****************************************************************************
  1623. tspecializesymtable
  1624. *****************************************************************************}
  1625. constructor tspecializesymtable.create(const n : string;id:word);
  1626. begin
  1627. inherited create(n,id);
  1628. { the specialize symtable does not own the syms and defs as they are all
  1629. moved to a different symtable before the symtable is destroyed; this
  1630. avoids calls to "extract" }
  1631. symlist.ownsobjects:=false;
  1632. deflist.ownsobjects:=false;
  1633. end;
  1634. function tspecializesymtable.iscurrentunit: boolean;
  1635. begin
  1636. Result:=true;
  1637. end;
  1638. {****************************************************************************
  1639. TWITHSYMTABLE
  1640. ****************************************************************************}
  1641. constructor twithsymtable.create(aowner:tdef;ASymList:TFPHashObjectList;refnode:tobject{tnode});
  1642. begin
  1643. inherited create('');
  1644. symtabletype:=withsymtable;
  1645. withrefnode:=refnode;
  1646. { Replace SymList with the passed symlist }
  1647. SymList.free;
  1648. SymList:=ASymList;
  1649. defowner:=aowner;
  1650. end;
  1651. destructor twithsymtable.destroy;
  1652. begin
  1653. withrefnode.free;
  1654. { Disable SymList because we don't Own it }
  1655. SymList:=nil;
  1656. inherited destroy;
  1657. end;
  1658. procedure twithsymtable.clear;
  1659. begin
  1660. { remove no entry from a withsymtable as it is only a pointer to the
  1661. recorddef or objectdef symtable }
  1662. end;
  1663. procedure twithsymtable.insertdef(def:TDefEntry);
  1664. begin
  1665. { Definitions can't be registered in the withsymtable
  1666. because the withsymtable is removed after the with block.
  1667. We can't easily solve it here because the next symtable in the
  1668. stack is not known. }
  1669. internalerror(200602046);
  1670. end;
  1671. {****************************************************************************
  1672. TSTT_ExceptionSymtable
  1673. ****************************************************************************}
  1674. constructor tstt_excepTSymtable.create;
  1675. begin
  1676. inherited create('');
  1677. symtabletype:=stt_excepTSymtable;
  1678. end;
  1679. {****************************************************************************
  1680. TMacroSymtable
  1681. ****************************************************************************}
  1682. constructor tmacrosymtable.create(exported: boolean);
  1683. begin
  1684. inherited create('');
  1685. if exported then
  1686. symtabletype:=exportedmacrosymtable
  1687. else
  1688. symtabletype:=localmacrosymtable;
  1689. symtablelevel:=main_program_level;
  1690. end;
  1691. {****************************************************************************
  1692. TEnumSymtable
  1693. ****************************************************************************}
  1694. procedure tenumsymtable.insert(sym: TSymEntry; checkdup: boolean);
  1695. var
  1696. value: longint;
  1697. def: tenumdef;
  1698. begin
  1699. // defowner = nil only when we are loading from ppu
  1700. if defowner<>nil then
  1701. begin
  1702. { First entry? Then we need to set the minval }
  1703. value:=tenumsym(sym).value;
  1704. def:=tenumdef(defowner);
  1705. if SymList.count=0 then
  1706. begin
  1707. if value>0 then
  1708. def.has_jumps:=true;
  1709. def.setmin(value);
  1710. def.setmax(value);
  1711. end
  1712. else
  1713. begin
  1714. { check for jumps }
  1715. if value>def.max+1 then
  1716. def.has_jumps:=true;
  1717. { update low and high }
  1718. if def.min>value then
  1719. def.setmin(value);
  1720. if def.max<value then
  1721. def.setmax(value);
  1722. end;
  1723. end;
  1724. inherited insert(sym, checkdup);
  1725. end;
  1726. constructor tenumsymtable.create(adefowner: tdef);
  1727. begin
  1728. inherited Create('');
  1729. symtabletype:=enumsymtable;
  1730. defowner:=adefowner;
  1731. end;
  1732. {****************************************************************************
  1733. TArraySymtable
  1734. ****************************************************************************}
  1735. procedure tarraysymtable.insertdef(def: TDefEntry);
  1736. begin
  1737. { Enums must also be available outside the record scope,
  1738. insert in the owner of this symtable }
  1739. if def.typ=enumdef then
  1740. defowner.owner.insertdef(def)
  1741. else
  1742. inherited insertdef(def);
  1743. end;
  1744. constructor tarraysymtable.create(adefowner: tdef);
  1745. begin
  1746. inherited Create('');
  1747. symtabletype:=arraysymtable;
  1748. defowner:=adefowner;
  1749. end;
  1750. {*****************************************************************************
  1751. Helper Routines
  1752. *****************************************************************************}
  1753. function FullTypeName(def,otherdef:tdef):string;
  1754. var
  1755. s1,s2 : string;
  1756. begin
  1757. if def.typ in [objectdef,recorddef] then
  1758. s1:=tabstractrecorddef(def).RttiName
  1759. else
  1760. s1:=def.typename;
  1761. { When the names are the same try to include the unit name }
  1762. if assigned(otherdef) and
  1763. (def.owner.symtabletype in [globalsymtable,staticsymtable]) then
  1764. begin
  1765. s2:=otherdef.typename;
  1766. if upper(s1)=upper(s2) then
  1767. s1:=def.owner.realname^+'.'+s1;
  1768. end;
  1769. FullTypeName:=s1;
  1770. end;
  1771. function generate_nested_name(symtable:tsymtable;delimiter:string):string;
  1772. begin
  1773. result:='';
  1774. while assigned(symtable) and (symtable.symtabletype in [ObjectSymtable,recordsymtable]) do
  1775. begin
  1776. if (result='') then
  1777. if symtable.name<>nil then
  1778. result:=symtable.name^
  1779. else
  1780. else
  1781. if symtable.name<>nil then
  1782. result:=symtable.name^+delimiter+result
  1783. else
  1784. result:=delimiter+result;
  1785. symtable:=symtable.defowner.owner;
  1786. end;
  1787. end;
  1788. function generate_objectpascal_helper_key(def:tdef):string;
  1789. begin
  1790. if not assigned(def) then
  1791. internalerror(2013020501);
  1792. if def.typ in [recorddef,objectdef] then
  1793. result:=make_mangledname('',tabstractrecorddef(def).symtable,'')
  1794. else
  1795. result:=make_mangledname('',def.owner,def.typesym.name);
  1796. end;
  1797. procedure incompatibletypes(def1,def2:tdef);
  1798. begin
  1799. { When there is an errordef there is already an error message show }
  1800. if (def2.typ=errordef) or
  1801. (def1.typ=errordef) then
  1802. exit;
  1803. CGMessage2(type_e_incompatible_types,FullTypeName(def1,def2),FullTypeName(def2,def1));
  1804. end;
  1805. procedure hidesym(sym:TSymEntry);
  1806. begin
  1807. sym.realname:='$hidden'+sym.realname;
  1808. tsym(sym).visibility:=vis_hidden;
  1809. end;
  1810. procedure duplicatesym(var hashedid:THashedIDString;dupsym,origsym:TSymEntry);
  1811. var
  1812. st : TSymtable;
  1813. begin
  1814. Message1(sym_e_duplicate_id,tsym(origsym).realname);
  1815. { Write hint where the original symbol was found }
  1816. st:=finduniTSymtable(origsym.owner);
  1817. with tsym(origsym).fileinfo do
  1818. begin
  1819. if assigned(st) and
  1820. (st.symtabletype=globalsymtable) and
  1821. st.iscurrentunit then
  1822. Message2(sym_h_duplicate_id_where,current_module.sourcefiles.get_file_name(fileindex),tostr(line))
  1823. else if assigned(st.name) then
  1824. Message2(sym_h_duplicate_id_where,'unit '+st.name^,tostr(line));
  1825. end;
  1826. { Rename duplicate sym to an unreachable name, but it can be
  1827. inserted in the symtable without errors }
  1828. inc(dupnr);
  1829. hashedid.id:='dup'+tostr(dupnr)+hashedid.id;
  1830. if assigned(dupsym) then
  1831. include(tsym(dupsym).symoptions,sp_implicitrename);
  1832. end;
  1833. function handle_generic_dummysym(sym:TSymEntry;var symoptions:tsymoptions):boolean;
  1834. begin
  1835. result:=false;
  1836. if not assigned(sym) or not (sym is tstoredsym) then
  1837. Internalerror(2011081101);
  1838. { For generics a dummy symbol without the parameter count is created
  1839. if such a symbol not yet exists so that different parts of the
  1840. parser can find that symbol. If that symbol is still a
  1841. undefineddef we replace the generic dummy symbol's
  1842. name with a "dup" name and use the new symbol as the generic dummy
  1843. symbol }
  1844. if (sp_generic_dummy in tstoredsym(sym).symoptions) and
  1845. (sym.typ=typesym) and (ttypesym(sym).typedef.typ=undefineddef) and
  1846. (m_delphi in current_settings.modeswitches) then
  1847. begin
  1848. inc(dupnr);
  1849. sym.Owner.SymList.Rename(upper(sym.realname),'dup_'+tostr(dupnr)+sym.realname);
  1850. include(tsym(sym).symoptions,sp_implicitrename);
  1851. { we need to find the new symbol now if checking for a dummy }
  1852. include(symoptions,sp_generic_dummy);
  1853. result:=true;
  1854. end;
  1855. end;
  1856. function get_jumpbuf_size : longint;
  1857. var
  1858. srsym : ttypesym;
  1859. begin
  1860. if jmp_buf_size=-1 then
  1861. begin
  1862. srsym:=search_system_type('JMP_BUF');
  1863. jmp_buf_size:=srsym.typedef.size;
  1864. jmp_buf_align:=srsym.typedef.alignment;
  1865. end;
  1866. result:=jmp_buf_size;
  1867. end;
  1868. {*****************************************************************************
  1869. Search
  1870. *****************************************************************************}
  1871. procedure addsymref(sym:tsym);
  1872. var
  1873. owner: tsymtable;
  1874. begin
  1875. { symbol uses count }
  1876. sym.IncRefCount;
  1877. { unit uses count }
  1878. owner:=sym.owner;
  1879. while owner.symtabletype in [objectsymtable,recordsymtable,enumsymtable] do
  1880. owner:=tdef(owner.defowner).owner;
  1881. if assigned(current_module) and
  1882. (owner.symtabletype=globalsymtable) then
  1883. begin
  1884. if tglobalsymtable(owner).moduleid>=current_module.unitmapsize then
  1885. internalerror(200501152);
  1886. inc(current_module.unitmap[tglobalsymtable(owner).moduleid].refs);
  1887. end;
  1888. end;
  1889. function is_owned_by(nesteddef,ownerdef:tdef):boolean;
  1890. begin
  1891. result:=nesteddef=ownerdef;
  1892. if not result and
  1893. { types declared locally in a record method are not defined in the
  1894. record itself }
  1895. not(nesteddef.owner.symtabletype in [localsymtable,parasymtable]) and
  1896. assigned(nesteddef.owner.defowner) then
  1897. result:=is_owned_by(tdef(nesteddef.owner.defowner),ownerdef);
  1898. end;
  1899. function sym_is_owned_by(childsym:tsym;symtable:tsymtable):boolean;
  1900. begin
  1901. result:=assigned(childsym) and (childsym.owner=symtable);
  1902. if not result and assigned(childsym) and
  1903. (childsym.owner.symtabletype in [objectsymtable,recordsymtable]) then
  1904. result:=sym_is_owned_by(tabstractrecorddef(childsym.owner.defowner).typesym,symtable);
  1905. end;
  1906. function defs_belong_to_same_generic(def1, def2: tdef): boolean;
  1907. begin
  1908. result:=false;
  1909. if not assigned(def1) or not assigned(def2) then
  1910. exit;
  1911. { for both defs walk to the topmost generic }
  1912. while assigned(def1.owner.defowner) and (df_generic in tstoreddef(def1.owner.defowner).defoptions) do
  1913. def1:=tdef(def1.owner.defowner);
  1914. while assigned(def2.owner.defowner) and (df_generic in tstoreddef(def2.owner.defowner).defoptions) do
  1915. def2:=tdef(def2.owner.defowner);
  1916. result:=def1=def2;
  1917. end;
  1918. function get_generic_in_hierarchy_by_name(srsym: tsym; def: tdef): tdef;
  1919. var
  1920. uname : string;
  1921. begin
  1922. { TODO : check regarding arrays and records declared as their type }
  1923. if not (def.typ in [recorddef,objectdef]) then
  1924. internalerror(2012051501);
  1925. uname:=upper(srsym.realname);
  1926. repeat
  1927. if uname=copy(tabstractrecorddef(def).objname^,1,pos('$',tabstractrecorddef(def).objname^)-1) then
  1928. begin
  1929. result:=def;
  1930. exit;
  1931. end;
  1932. def:=tdef(def.owner.defowner);
  1933. until not (def.typ in [recorddef,objectdef]);
  1934. result:=nil;
  1935. end;
  1936. function return_specialization_of_generic(nesteddef,genericdef:tdef; out resultdef:tdef):boolean;
  1937. begin
  1938. { TODO : check regarding arrays and records declared as their type }
  1939. if not (nesteddef.typ in [recorddef,objectdef]) then
  1940. internalerror(2012051601);
  1941. repeat
  1942. if tstoreddef(nesteddef).genericdef=genericdef then
  1943. begin
  1944. resultdef:=nesteddef;
  1945. result:=true;
  1946. exit;
  1947. end;
  1948. nesteddef:=tdef(nesteddef.owner.defowner);
  1949. until not assigned(nesteddef) or not (nesteddef.typ in [recorddef,objectdef]);
  1950. resultdef:=nil;
  1951. result:=false;
  1952. end;
  1953. { symst: symboltable that contains the symbol (-> symowner def: record/objectdef in which the symbol is defined)
  1954. symvisibility: visibility of the symbol
  1955. contextobjdef: via which def the symbol is accessed, e.g.:
  1956. fieldname:=1 -> contextobjdef = current_structdef
  1957. objfield.fieldname:=1 -> contextobjdef = def of objfield
  1958. }
  1959. function is_visible_for_object(symst:tsymtable;symvisibility:tvisibility;contextobjdef:tabstractrecorddef):boolean;
  1960. var
  1961. symownerdef : tabstractrecorddef;
  1962. begin
  1963. result:=false;
  1964. { Get objdectdef owner of the symtable for the is_related checks }
  1965. if not assigned(symst) or
  1966. not (symst.symtabletype in [objectsymtable,recordsymtable]) then
  1967. internalerror(200810285);
  1968. symownerdef:=tabstractrecorddef(symst.defowner);
  1969. case symvisibility of
  1970. vis_private :
  1971. begin
  1972. { private symbols are allowed when we are in the same
  1973. module as they are defined }
  1974. result:=(
  1975. (symownerdef.owner.symtabletype in [globalsymtable,staticsymtable]) and
  1976. (symownerdef.owner.iscurrentunit)
  1977. ) or
  1978. ( // the case of specialize inside the generic declaration and nested types
  1979. (symownerdef.owner.symtabletype in [objectsymtable,recordsymtable]) and
  1980. (
  1981. assigned(current_structdef) and
  1982. (
  1983. (current_structdef=symownerdef) or
  1984. (current_structdef.owner.iscurrentunit)
  1985. )
  1986. ) or
  1987. (
  1988. not assigned(current_structdef) and
  1989. (symownerdef.owner.iscurrentunit)
  1990. )
  1991. );
  1992. end;
  1993. vis_strictprivate :
  1994. begin
  1995. result:=assigned(current_structdef) and
  1996. is_owned_by(current_structdef,symownerdef);
  1997. end;
  1998. vis_strictprotected :
  1999. begin
  2000. result:=(
  2001. { access from nested class }
  2002. assigned(current_structdef) and
  2003. is_owned_by(current_structdef,symownerdef)
  2004. ) or
  2005. (
  2006. { access from child class }
  2007. assigned(contextobjdef) and
  2008. assigned(current_structdef) and
  2009. def_is_related(contextobjdef,symownerdef) and
  2010. def_is_related(current_structdef,contextobjdef)
  2011. ) or
  2012. (
  2013. { helpers can access strict protected symbols }
  2014. is_objectpascal_helper(contextobjdef) and
  2015. def_is_related(tobjectdef(contextobjdef).extendeddef,symownerdef)
  2016. ) or
  2017. (
  2018. { same as above, but from context of call node inside
  2019. helper method }
  2020. is_objectpascal_helper(current_structdef) and
  2021. def_is_related(tobjectdef(current_structdef).extendeddef,symownerdef)
  2022. );
  2023. end;
  2024. vis_protected :
  2025. begin
  2026. { protected symbols are visible in the module that defines them and
  2027. also visible to related objects. The related object must be defined
  2028. in the current module }
  2029. result:=(
  2030. (
  2031. (symownerdef.owner.symtabletype in [globalsymtable,staticsymtable]) and
  2032. (symownerdef.owner.iscurrentunit)
  2033. ) or
  2034. (
  2035. assigned(contextobjdef) and
  2036. (contextobjdef.owner.symtabletype in [globalsymtable,staticsymtable,ObjectSymtable]) and
  2037. (contextobjdef.owner.iscurrentunit) and
  2038. def_is_related(contextobjdef,symownerdef)
  2039. ) or
  2040. ( // the case of specialize inside the generic declaration and nested types
  2041. (symownerdef.owner.symtabletype in [objectsymtable,recordsymtable]) and
  2042. (
  2043. assigned(current_structdef) and
  2044. (
  2045. (current_structdef=symownerdef) or
  2046. (current_structdef.owner.iscurrentunit)
  2047. )
  2048. ) or
  2049. (
  2050. not assigned(current_structdef) and
  2051. (symownerdef.owner.iscurrentunit)
  2052. ) or
  2053. (
  2054. { helpers can access protected symbols }
  2055. is_objectpascal_helper(contextobjdef) and
  2056. def_is_related(tobjectdef(contextobjdef).extendeddef,symownerdef)
  2057. )
  2058. )
  2059. );
  2060. end;
  2061. vis_public,
  2062. vis_published :
  2063. result:=true;
  2064. end;
  2065. end;
  2066. function is_visible_for_object(pd:tprocdef;contextobjdef:tabstractrecorddef):boolean;
  2067. begin
  2068. result:=is_visible_for_object(pd.owner,pd.visibility,contextobjdef);
  2069. end;
  2070. function is_visible_for_object(sym:tsym;contextobjdef:tabstractrecorddef):boolean;
  2071. var
  2072. i : longint;
  2073. pd : tprocdef;
  2074. begin
  2075. if sym.typ=procsym then
  2076. begin
  2077. { A procsym is visible, when there is at least one of the procdefs visible }
  2078. result:=false;
  2079. for i:=0 to tprocsym(sym).ProcdefList.Count-1 do
  2080. begin
  2081. pd:=tprocdef(tprocsym(sym).ProcdefList[i]);
  2082. if (pd.owner=sym.owner) and
  2083. is_visible_for_object(pd,contextobjdef) then
  2084. begin
  2085. result:=true;
  2086. exit;
  2087. end;
  2088. end;
  2089. end
  2090. else
  2091. result:=is_visible_for_object(sym.owner,sym.visibility,contextobjdef);
  2092. end;
  2093. function searchsym(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2094. begin
  2095. result:=searchsym_maybe_with_symoption(s,srsym,srsymtable,[],sp_none);
  2096. end;
  2097. function searchsym_with_flags(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  2098. begin
  2099. result:=searchsym_maybe_with_symoption(s,srsym,srsymtable,flags,sp_none);
  2100. end;
  2101. function searchsym_maybe_with_symoption(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags;option:tsymoption):boolean;
  2102. var
  2103. hashedid: THashedIDString;
  2104. contextstructdef: tabstractrecorddef;
  2105. stackitem: psymtablestackitem;
  2106. begin
  2107. result:=false;
  2108. hashedid.id:=s;
  2109. stackitem:=symtablestack.stack;
  2110. while assigned(stackitem) do
  2111. begin
  2112. srsymtable:=stackitem^.symtable;
  2113. if (srsymtable.symtabletype=objectsymtable) then
  2114. begin
  2115. { TODO : implement the search for an option in classes as well }
  2116. if ssf_search_option in flags then
  2117. begin
  2118. result:=false;
  2119. exit;
  2120. end;
  2121. if searchsym_in_class(tobjectdef(srsymtable.defowner),tobjectdef(srsymtable.defowner),s,srsym,srsymtable,flags+[ssf_search_helper]) then
  2122. begin
  2123. result:=true;
  2124. exit;
  2125. end;
  2126. end
  2127. else if not((srsymtable.symtabletype=withsymtable) and assigned(srsymtable.defowner) and
  2128. (srsymtable.defowner.typ=undefineddef)) then
  2129. begin
  2130. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2131. { First check if it is a unit/namespace symbol.
  2132. They are visible only if they are from the current unit or
  2133. unit of generic of currently processed specialization. }
  2134. if assigned(srsym) and
  2135. (
  2136. not(srsym.typ in [unitsym,namespacesym]) or
  2137. srsymtable.iscurrentunit or
  2138. (assigned(current_specializedef)and(current_specializedef.genericdef.owner.moduleid=srsymtable.moduleid))
  2139. ) and
  2140. (not (ssf_search_option in flags) or (option in srsym.symoptions))then
  2141. begin
  2142. { use the class from withsymtable only when it is
  2143. defined in this unit }
  2144. if (srsymtable.symtabletype=withsymtable) and
  2145. assigned(srsymtable.defowner) and
  2146. (srsymtable.defowner.typ in [recorddef,objectdef]) and
  2147. (srsymtable.defowner.owner.symtabletype in [globalsymtable,staticsymtable,objectsymtable,recordsymtable]) and
  2148. (srsymtable.defowner.owner.iscurrentunit) then
  2149. contextstructdef:=tabstractrecorddef(srsymtable.defowner)
  2150. else
  2151. contextstructdef:=current_structdef;
  2152. if not(srsym.owner.symtabletype in [objectsymtable,recordsymtable]) or
  2153. is_visible_for_object(srsym,contextstructdef) then
  2154. begin
  2155. { we need to know if a procedure references symbols
  2156. in the static symtable, because then it can't be
  2157. inlined from outside this unit }
  2158. if assigned(current_procinfo) and
  2159. (srsym.owner.symtabletype=staticsymtable) then
  2160. include(current_procinfo.flags,pi_uses_static_symtable);
  2161. if not (ssf_no_addsymref in flags) then
  2162. addsymref(srsym);
  2163. result:=true;
  2164. exit;
  2165. end;
  2166. end;
  2167. end;
  2168. stackitem:=stackitem^.next;
  2169. end;
  2170. srsym:=nil;
  2171. srsymtable:=nil;
  2172. end;
  2173. function searchsym_with_symoption(const s: TIDString;out srsym:tsym;out
  2174. srsymtable:TSymtable;option:tsymoption):boolean;
  2175. begin
  2176. result:=searchsym_maybe_with_symoption(s,srsym,srsymtable,[ssf_search_option],option);
  2177. end;
  2178. function searchsym_type(const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2179. var
  2180. hashedid : THashedIDString;
  2181. stackitem : psymtablestackitem;
  2182. classh : tobjectdef;
  2183. begin
  2184. result:=false;
  2185. hashedid.id:=s;
  2186. stackitem:=symtablestack.stack;
  2187. while assigned(stackitem) do
  2188. begin
  2189. {
  2190. It is not possible to have type symbols in:
  2191. parameters
  2192. Exception are classes, objects, records, generic definitions and specializations
  2193. that have the parameterized types inserted in the symtable.
  2194. }
  2195. srsymtable:=stackitem^.symtable;
  2196. if (srsymtable.symtabletype=ObjectSymtable) then
  2197. begin
  2198. classh:=tobjectdef(srsymtable.defowner);
  2199. while assigned(classh) do
  2200. begin
  2201. srsymtable:=classh.symtable;
  2202. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2203. if assigned(srsym) and
  2204. not(srsym.typ in [fieldvarsym,paravarsym,propertysym,procsym,labelsym]) and
  2205. is_visible_for_object(srsym,current_structdef) then
  2206. begin
  2207. addsymref(srsym);
  2208. result:=true;
  2209. exit;
  2210. end;
  2211. classh:=classh.childof;
  2212. end;
  2213. end
  2214. else
  2215. begin
  2216. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2217. if assigned(srsym) and
  2218. (
  2219. not(srsym.typ in [unitsym,namespacesym]) or
  2220. srsymtable.iscurrentunit or
  2221. (assigned(current_specializedef)and(current_specializedef.genericdef.owner.moduleid=srsymtable.moduleid))
  2222. ) and
  2223. not(srsym.typ in [fieldvarsym,paravarsym,propertysym,procsym,labelsym]) and
  2224. (not (srsym.owner.symtabletype in [objectsymtable,recordsymtable]) or is_visible_for_object(srsym,current_structdef)) then
  2225. begin
  2226. { we need to know if a procedure references symbols
  2227. in the static symtable, because then it can't be
  2228. inlined from outside this unit }
  2229. if assigned(current_procinfo) and
  2230. (srsym.owner.symtabletype=staticsymtable) then
  2231. include(current_procinfo.flags,pi_uses_static_symtable);
  2232. addsymref(srsym);
  2233. result:=true;
  2234. exit;
  2235. end;
  2236. end;
  2237. stackitem:=stackitem^.next;
  2238. end;
  2239. result:=false;
  2240. srsym:=nil;
  2241. srsymtable:=nil;
  2242. end;
  2243. function searchsym_in_module(pm:pointer;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2244. var
  2245. pmod : tmodule;
  2246. begin
  2247. pmod:=tmodule(pm);
  2248. result:=false;
  2249. if assigned(pmod.globalsymtable) then
  2250. begin
  2251. srsym:=tsym(pmod.globalsymtable.Find(s));
  2252. if assigned(srsym) then
  2253. begin
  2254. srsymtable:=pmod.globalsymtable;
  2255. addsymref(srsym);
  2256. result:=true;
  2257. exit;
  2258. end;
  2259. end;
  2260. { If the module is the current unit we also need
  2261. to search the local symtable }
  2262. if (pmod=current_module) and
  2263. assigned(pmod.localsymtable) then
  2264. begin
  2265. srsym:=tsym(pmod.localsymtable.Find(s));
  2266. if assigned(srsym) then
  2267. begin
  2268. srsymtable:=pmod.localsymtable;
  2269. addsymref(srsym);
  2270. result:=true;
  2271. exit;
  2272. end;
  2273. end;
  2274. srsym:=nil;
  2275. srsymtable:=nil;
  2276. end;
  2277. function searchsym_in_named_module(const unitname, symname: TIDString; out srsym: tsym; out srsymtable: tsymtable): boolean;
  2278. var
  2279. stackitem : psymtablestackitem;
  2280. begin
  2281. result:=false;
  2282. stackitem:=symtablestack.stack;
  2283. while assigned(stackitem) do
  2284. begin
  2285. srsymtable:=stackitem^.symtable;
  2286. if (srsymtable.symtabletype=globalsymtable) and
  2287. (srsymtable.name^=unitname) then
  2288. begin
  2289. srsym:=tsym(srsymtable.find(symname));
  2290. if not assigned(srsym) then
  2291. break;
  2292. result:=true;
  2293. exit;
  2294. end;
  2295. stackitem:=stackitem^.next;
  2296. end;
  2297. { If the module is the current unit we also need
  2298. to search the local symtable }
  2299. if assigned(current_module.localsymtable) and
  2300. (current_module.localsymtable.name^=unitname) then
  2301. begin
  2302. srsymtable:=current_module.localsymtable;
  2303. srsym:=tsym(srsymtable.find(symname));
  2304. if assigned(srsym) then
  2305. begin
  2306. result:=true;
  2307. exit;
  2308. end;
  2309. end;
  2310. end;
  2311. function maybe_find_real_class_definition(pd: tdef; erroronfailure: boolean): tdef;
  2312. begin
  2313. result:=pd;
  2314. if pd.typ<>objectdef then
  2315. exit;
  2316. result:=find_real_class_definition(tobjectdef(pd),erroronfailure);
  2317. end;
  2318. function find_real_class_definition(pd: tobjectdef; erroronfailure: boolean): tobjectdef;
  2319. var
  2320. hashedid : THashedIDString;
  2321. stackitem : psymtablestackitem;
  2322. srsymtable : tsymtable;
  2323. srsym : tsym;
  2324. formalname,
  2325. foundname : shortstring;
  2326. formalnameptr,
  2327. foundnameptr: pshortstring;
  2328. begin
  2329. { not a formal definition -> return it }
  2330. if not(oo_is_formal in pd.objectoptions) then
  2331. begin
  2332. result:=pd;
  2333. exit;
  2334. end;
  2335. hashedid.id:=pd.typesym.name;
  2336. stackitem:=symtablestack.stack;
  2337. while assigned(stackitem) do
  2338. begin
  2339. srsymtable:=stackitem^.symtable;
  2340. { ObjC classes can't appear in generics or as nested class
  2341. definitions. Java classes can. }
  2342. if not(srsymtable.symtabletype in [recordsymtable,parasymtable]) or
  2343. (is_java_class_or_interface(pd) and
  2344. (srsymtable.symtabletype=ObjectSymtable)) then
  2345. begin
  2346. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2347. if assigned(srsym) and
  2348. (srsym.typ=typesym) and
  2349. (ttypesym(srsym).typedef.typ=objectdef) and
  2350. (tobjectdef(ttypesym(srsym).typedef).objecttype=pd.objecttype) and
  2351. not(oo_is_formal in tobjectdef(ttypesym(srsym).typedef).objectoptions) then
  2352. begin
  2353. if not(oo_is_forward in tobjectdef(ttypesym(srsym).typedef).objectoptions) then
  2354. begin
  2355. { the external name for the formal and the real
  2356. definition must match }
  2357. if assigned(tobjectdef(ttypesym(srsym).typedef).import_lib) or
  2358. assigned(pd.import_lib) then
  2359. begin
  2360. if assigned(pd.import_lib) then
  2361. formalname:=pd.import_lib^+'.'
  2362. else
  2363. formalname:='';
  2364. formalname:=formalname+pd.objextname^;
  2365. if assigned(tobjectdef(ttypesym(srsym).typedef).import_lib) then
  2366. foundname:=tobjectdef(ttypesym(srsym).typedef).import_lib^+'.'
  2367. else
  2368. foundname:='';
  2369. foundname:=foundname+tobjectdef(ttypesym(srsym).typedef).objextname^;
  2370. formalnameptr:=@formalname;
  2371. foundnameptr:=@foundname;
  2372. end
  2373. else
  2374. begin
  2375. formalnameptr:=pd.objextname;
  2376. foundnameptr:=tobjectdef(ttypesym(srsym).typedef).objextname;
  2377. end;
  2378. if foundnameptr^<>formalnameptr^ then
  2379. begin
  2380. MessagePos2(pd.typesym.fileinfo,sym_e_external_class_name_mismatch1,formalnameptr^,pd.typename);
  2381. MessagePos1(srsym.fileinfo,sym_e_external_class_name_mismatch2,foundnameptr^);
  2382. end;
  2383. end;
  2384. result:=tobjectdef(ttypesym(srsym).typedef);
  2385. if assigned(current_procinfo) and
  2386. (srsym.owner.symtabletype=staticsymtable) then
  2387. include(current_procinfo.flags,pi_uses_static_symtable);
  2388. addsymref(srsym);
  2389. exit;
  2390. end;
  2391. end;
  2392. stackitem:=stackitem^.next;
  2393. end;
  2394. { nothing found: optionally give an error and return the original
  2395. (empty) one }
  2396. if erroronfailure then
  2397. Message1(sym_e_formal_class_not_resolved,pd.objrealname^);
  2398. result:=pd;
  2399. end;
  2400. function searchsym_in_class(classh: tobjectdef;contextclassh:tabstractrecorddef;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  2401. var
  2402. hashedid : THashedIDString;
  2403. orgclass : tobjectdef;
  2404. i : longint;
  2405. hlpsrsym : tsym;
  2406. hlpsrsymtable : tsymtable;
  2407. begin
  2408. orgclass:=classh;
  2409. { in case this is a formal class, first find the real definition }
  2410. if assigned(classh) then
  2411. begin
  2412. if (oo_is_formal in classh.objectoptions) then
  2413. classh:=find_real_class_definition(classh,true);
  2414. { The contextclassh is used for visibility. The classh must be equal to
  2415. or be a parent of contextclassh. E.g. for inherited searches the classh is the
  2416. parent or a class helper. }
  2417. if not (def_is_related(contextclassh,classh) or
  2418. (is_classhelper(contextclassh) and
  2419. assigned(tobjectdef(contextclassh).extendeddef) and
  2420. (tobjectdef(contextclassh).extendeddef.typ=objectdef) and
  2421. def_is_related(tobjectdef(contextclassh).extendeddef,classh))) then
  2422. internalerror(200811161);
  2423. end;
  2424. result:=false;
  2425. hashedid.id:=s;
  2426. { an Objective-C protocol or Java interface can inherit from multiple
  2427. other protocols/interfaces -> use ImplementedInterfaces instead }
  2428. if is_objcprotocol(classh) or
  2429. is_javainterface(classh) then
  2430. begin
  2431. srsymtable:=classh.symtable;
  2432. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2433. if assigned(srsym) and
  2434. is_visible_for_object(srsym,contextclassh) then
  2435. begin
  2436. if not (ssf_no_addsymref in flags) then
  2437. addsymref(srsym);
  2438. result:=true;
  2439. exit;
  2440. end;
  2441. for i:=0 to classh.ImplementedInterfaces.count-1 do
  2442. begin
  2443. if searchsym_in_class(TImplementedInterface(classh.ImplementedInterfaces[i]).intfdef,contextclassh,s,srsym,srsymtable,flags-[ssf_search_helper]) then
  2444. begin
  2445. result:=true;
  2446. exit;
  2447. end;
  2448. end;
  2449. end
  2450. else
  2451. if is_objectpascal_helper(classh) then
  2452. begin
  2453. { helpers have their own obscure search logic... }
  2454. result:=searchsym_in_helper(classh,tobjectdef(contextclassh),s,srsym,srsymtable,flags-[ssf_has_inherited]);
  2455. if result then
  2456. exit;
  2457. end
  2458. else
  2459. begin
  2460. hlpsrsym:=nil;
  2461. hlpsrsymtable:=nil;
  2462. while assigned(classh) do
  2463. begin
  2464. { search for a class helper method first if this is an Object
  2465. Pascal class and we haven't yet found a helper symbol }
  2466. if is_class(classh) and
  2467. (ssf_search_helper in flags) and
  2468. not assigned(hlpsrsym) then
  2469. begin
  2470. result:=search_objectpascal_helper(classh,contextclassh,s,srsym,srsymtable);
  2471. if result then
  2472. { if the procsym is overloaded we need to use the
  2473. "original" symbol; the helper symbol will be found when
  2474. searching for overloads }
  2475. if (srsym.typ<>procsym) or
  2476. not (sp_has_overloaded in tprocsym(srsym).symoptions) then
  2477. exit
  2478. else
  2479. begin
  2480. { remember the found symbol if the class hierarchy
  2481. should not contain the a method with that name }
  2482. hlpsrsym:=srsym;
  2483. hlpsrsymtable:=srsymtable;
  2484. end;
  2485. end;
  2486. srsymtable:=classh.symtable;
  2487. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2488. if assigned(srsym) and
  2489. is_visible_for_object(srsym,contextclassh) then
  2490. begin
  2491. if not (ssf_no_addsymref in flags) then
  2492. addsymref(srsym);
  2493. result:=true;
  2494. exit;
  2495. end;
  2496. classh:=classh.childof;
  2497. end;
  2498. { did we find a helper symbol, but no symbol with the same name in
  2499. the extended object's hierarchy? }
  2500. if assigned(hlpsrsym) then
  2501. begin
  2502. srsym:=hlpsrsym;
  2503. srsymtable:=hlpsrsymtable;
  2504. result:=true;
  2505. exit;
  2506. end;
  2507. end;
  2508. if is_objcclass(orgclass) then
  2509. result:=search_objc_helper(orgclass,s,srsym,srsymtable)
  2510. else
  2511. begin
  2512. srsym:=nil;
  2513. srsymtable:=nil;
  2514. end;
  2515. end;
  2516. function searchsym_in_record(recordh:tabstractrecorddef;const s : TIDString;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2517. var
  2518. hashedid : THashedIDString;
  2519. hlpsrsym : tsym;
  2520. hlpsrsymtable : tsymtable;
  2521. begin
  2522. result:=false;
  2523. hlpsrsym:=nil;
  2524. hlpsrsymtable:=nil;
  2525. hashedid.id:=s;
  2526. { search for a record helper method first }
  2527. result:=search_objectpascal_helper(recordh,recordh,s,srsym,srsymtable);
  2528. if result then
  2529. { if the procsym is overloaded we need to use the
  2530. "original" symbol; the helper symbol will be found when
  2531. searching for overloads }
  2532. if (srsym.typ<>procsym) or
  2533. not (sp_has_overloaded in tprocsym(srsym).symoptions) then
  2534. exit
  2535. else
  2536. begin
  2537. { remember the found symbol if we should not find a symbol with
  2538. the same name in the extended record }
  2539. hlpsrsym:=srsym;
  2540. hlpsrsymtable:=srsymtable;
  2541. end;
  2542. srsymtable:=recordh.symtable;
  2543. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2544. if assigned(srsym) and is_visible_for_object(srsym,recordh) then
  2545. begin
  2546. addsymref(srsym);
  2547. result:=true;
  2548. exit;
  2549. end;
  2550. srsym:=hlpsrsym;
  2551. srsymtable:=hlpsrsymtable;
  2552. result:=assigned(srsym);
  2553. end;
  2554. function searchsym_in_class_by_msgint(classh:tobjectdef;msgid:longint;out srdef : tdef;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2555. var
  2556. def : tdef;
  2557. i : longint;
  2558. begin
  2559. { in case this is a formal class, first find the real definition }
  2560. if assigned(classh) and
  2561. (oo_is_formal in classh.objectoptions) then
  2562. classh:=find_real_class_definition(classh,true);
  2563. result:=false;
  2564. def:=nil;
  2565. while assigned(classh) do
  2566. begin
  2567. for i:=0 to classh.symtable.DefList.Count-1 do
  2568. begin
  2569. def:=tstoreddef(classh.symtable.DefList[i]);
  2570. { Find also all hidden private methods to
  2571. be compatible with delphi, see tw6203 (PFV) }
  2572. if (def.typ=procdef) and
  2573. (po_msgint in tprocdef(def).procoptions) and
  2574. (tprocdef(def).messageinf.i=msgid) then
  2575. begin
  2576. srdef:=def;
  2577. srsym:=tprocdef(def).procsym;
  2578. srsymtable:=classh.symtable;
  2579. addsymref(srsym);
  2580. result:=true;
  2581. exit;
  2582. end;
  2583. end;
  2584. classh:=classh.childof;
  2585. end;
  2586. srdef:=nil;
  2587. srsym:=nil;
  2588. srsymtable:=nil;
  2589. end;
  2590. function searchsym_in_class_by_msgstr(classh:tobjectdef;const s:string;out srsym:tsym;out srsymtable:TSymtable):boolean;
  2591. var
  2592. def : tdef;
  2593. i : longint;
  2594. begin
  2595. { in case this is a formal class, first find the real definition }
  2596. if assigned(classh) and
  2597. (oo_is_formal in classh.objectoptions) then
  2598. classh:=find_real_class_definition(classh,true);
  2599. result:=false;
  2600. def:=nil;
  2601. while assigned(classh) do
  2602. begin
  2603. for i:=0 to classh.symtable.DefList.Count-1 do
  2604. begin
  2605. def:=tstoreddef(classh.symtable.DefList[i]);
  2606. { Find also all hidden private methods to
  2607. be compatible with delphi, see tw6203 (PFV) }
  2608. if (def.typ=procdef) and
  2609. (po_msgstr in tprocdef(def).procoptions) and
  2610. (tprocdef(def).messageinf.str^=s) then
  2611. begin
  2612. srsym:=tprocdef(def).procsym;
  2613. srsymtable:=classh.symtable;
  2614. addsymref(srsym);
  2615. result:=true;
  2616. exit;
  2617. end;
  2618. end;
  2619. classh:=classh.childof;
  2620. end;
  2621. srsym:=nil;
  2622. srsymtable:=nil;
  2623. end;
  2624. function searchsym_in_helper(classh,contextclassh:tobjectdef;const s: TIDString;out srsym:tsym;out srsymtable:TSymtable;flags:tsymbol_search_flags):boolean;
  2625. var
  2626. hashedid : THashedIDString;
  2627. parentclassh : tobjectdef;
  2628. begin
  2629. result:=false;
  2630. if not is_objectpascal_helper(classh) then
  2631. Internalerror(2011030101);
  2632. hashedid.id:=s;
  2633. { in a helper things are a bit more complex:
  2634. 1. search the symbol in the helper (if not "inherited")
  2635. 2. search the symbol in the extended type
  2636. 3. search the symbol in the parent helpers
  2637. 4. only classes: search the symbol in the parents of the extended type
  2638. }
  2639. if not (ssf_has_inherited in flags) then
  2640. begin
  2641. { search in the helper itself }
  2642. srsymtable:=classh.symtable;
  2643. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2644. if assigned(srsym) and
  2645. is_visible_for_object(srsym,contextclassh) then
  2646. begin
  2647. if not (ssf_no_addsymref in flags) then
  2648. addsymref(srsym);
  2649. result:=true;
  2650. exit;
  2651. end;
  2652. end;
  2653. { now search in the extended type itself }
  2654. { Note: the extendeddef might be Nil if we are currently parsing the
  2655. extended type itself and the identifier was not found }
  2656. if assigned(classh.extendeddef) and (classh.extendeddef.typ in [recorddef,objectdef]) then
  2657. begin
  2658. srsymtable:=tabstractrecorddef(classh.extendeddef).symtable;
  2659. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2660. if assigned(srsym) and
  2661. is_visible_for_object(srsym,contextclassh) then
  2662. begin
  2663. if not (ssf_no_addsymref in flags) then
  2664. addsymref(srsym);
  2665. result:=true;
  2666. exit;
  2667. end;
  2668. end;
  2669. { now search in the parent helpers }
  2670. parentclassh:=classh.childof;
  2671. while assigned(parentclassh) do
  2672. begin
  2673. srsymtable:=parentclassh.symtable;
  2674. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2675. if assigned(srsym) and
  2676. is_visible_for_object(srsym,contextclassh) then
  2677. begin
  2678. if not (ssf_no_addsymref in flags) then
  2679. addsymref(srsym);
  2680. result:=true;
  2681. exit;
  2682. end;
  2683. parentclassh:=parentclassh.childof;
  2684. end;
  2685. if is_class(classh.extendeddef) then
  2686. { now search in the parents of the extended class (with helpers!) }
  2687. result:=searchsym_in_class(tobjectdef(classh.extendeddef).childof,contextclassh,s,srsym,srsymtable,flags+[ssf_search_helper]);
  2688. { addsymref is already called by searchsym_in_class }
  2689. end;
  2690. function search_specific_assignment_operator(assignment_type:ttoken;from_def,to_def:Tdef):Tprocdef;
  2691. var
  2692. sym : Tprocsym;
  2693. hashedid : THashedIDString;
  2694. curreq,
  2695. besteq : tequaltype;
  2696. currpd,
  2697. bestpd : tprocdef;
  2698. stackitem : psymtablestackitem;
  2699. begin
  2700. hashedid.id:=overloaded_names[assignment_type];
  2701. besteq:=te_incompatible;
  2702. bestpd:=nil;
  2703. stackitem:=symtablestack.stack;
  2704. while assigned(stackitem) do
  2705. begin
  2706. sym:=Tprocsym(stackitem^.symtable.FindWithHash(hashedid));
  2707. if sym<>nil then
  2708. begin
  2709. if sym.typ<>procsym then
  2710. internalerror(200402031);
  2711. { if the source type is an alias then this is only the second choice,
  2712. if you mess with this code, check tw4093 }
  2713. currpd:=sym.find_procdef_assignment_operator(from_def,to_def,curreq);
  2714. if curreq>besteq then
  2715. begin
  2716. besteq:=curreq;
  2717. bestpd:=currpd;
  2718. if (besteq=te_exact) then
  2719. break;
  2720. end;
  2721. end;
  2722. stackitem:=stackitem^.next;
  2723. end;
  2724. result:=bestpd;
  2725. end;
  2726. function search_assignment_operator(from_def,to_def:Tdef;explicit:boolean):Tprocdef;
  2727. begin
  2728. { search record/object symtable first for a suitable operator }
  2729. if from_def.typ in [recorddef,objectdef] then
  2730. symtablestack.push(tabstractrecorddef(from_def).symtable);
  2731. if to_def.typ in [recorddef,objectdef] then
  2732. symtablestack.push(tabstractrecorddef(to_def).symtable);
  2733. { if type conversion is explicit then search first for explicit
  2734. operator overload and if not found then use implicit operator }
  2735. if explicit then
  2736. result:=search_specific_assignment_operator(_OP_EXPLICIT,from_def,to_def)
  2737. else
  2738. result:=nil;
  2739. if result=nil then
  2740. result:=search_specific_assignment_operator(_ASSIGNMENT,from_def,to_def);
  2741. { restore symtable stack }
  2742. if to_def.typ in [recorddef,objectdef] then
  2743. symtablestack.pop(tabstractrecorddef(to_def).symtable);
  2744. if from_def.typ in [recorddef,objectdef] then
  2745. symtablestack.pop(tabstractrecorddef(from_def).symtable);
  2746. end;
  2747. function search_enumerator_operator(from_def,to_def:Tdef): Tprocdef;
  2748. var
  2749. sym : Tprocsym;
  2750. hashedid : THashedIDString;
  2751. curreq,
  2752. besteq : tequaltype;
  2753. currpd,
  2754. bestpd : tprocdef;
  2755. stackitem : psymtablestackitem;
  2756. begin
  2757. hashedid.id:='enumerator';
  2758. besteq:=te_incompatible;
  2759. bestpd:=nil;
  2760. stackitem:=symtablestack.stack;
  2761. while assigned(stackitem) do
  2762. begin
  2763. sym:=Tprocsym(stackitem^.symtable.FindWithHash(hashedid));
  2764. if sym<>nil then
  2765. begin
  2766. if sym.typ<>procsym then
  2767. internalerror(200910241);
  2768. { if the source type is an alias then this is only the second choice,
  2769. if you mess with this code, check tw4093 }
  2770. currpd:=sym.find_procdef_enumerator_operator(from_def,to_def,curreq);
  2771. if curreq>besteq then
  2772. begin
  2773. besteq:=curreq;
  2774. bestpd:=currpd;
  2775. if (besteq=te_exact) then
  2776. break;
  2777. end;
  2778. end;
  2779. stackitem:=stackitem^.next;
  2780. end;
  2781. result:=bestpd;
  2782. end;
  2783. function search_system_type(const s: TIDString): ttypesym;
  2784. var
  2785. sym : tsym;
  2786. begin
  2787. sym:=tsym(systemunit.Find(s));
  2788. if not assigned(sym) or
  2789. (sym.typ<>typesym) then
  2790. message1(cg_f_unknown_system_type,s);
  2791. result:=ttypesym(sym);
  2792. end;
  2793. function try_search_system_type(const s: TIDString): ttypesym;
  2794. var
  2795. sym : tsym;
  2796. begin
  2797. sym:=tsym(systemunit.Find(s));
  2798. if not assigned(sym) then
  2799. result:=nil
  2800. else
  2801. begin
  2802. if sym.typ<>typesym then
  2803. message1(cg_f_unknown_system_type,s);
  2804. result:=ttypesym(sym);
  2805. end;
  2806. end;
  2807. function search_system_proc(const s: TIDString): tprocdef;
  2808. var
  2809. srsym: tsym;
  2810. begin
  2811. srsym:=tsym(systemunit.find(s));
  2812. if not assigned(srsym) and
  2813. (cs_compilesystem in current_settings.moduleswitches) then
  2814. srsym:=tsym(systemunit.Find(upper(s)));
  2815. if not assigned(srsym) or
  2816. (srsym.typ<>procsym) then
  2817. message1(cg_f_unknown_compilerproc,s);
  2818. result:=tprocdef(tprocsym(srsym).procdeflist[0]);
  2819. end;
  2820. function search_named_unit_globaltype(const unitname, typename: TIDString; throwerror: boolean): ttypesym;
  2821. var
  2822. srsymtable: tsymtable;
  2823. sym: tsym;
  2824. begin
  2825. sym:=nil;
  2826. if searchsym_in_named_module(unitname,typename,sym,srsymtable) and
  2827. (sym.typ=typesym) then
  2828. begin
  2829. result:=ttypesym(sym);
  2830. exit;
  2831. end
  2832. else
  2833. begin
  2834. if throwerror then
  2835. message2(cg_f_unknown_type_in_unit,typename,unitname);
  2836. result:=nil;
  2837. end;
  2838. end;
  2839. function search_last_objectpascal_helper(pd : tdef;contextclassh : tabstractrecorddef;out odef : tobjectdef):boolean;
  2840. var
  2841. s: string;
  2842. list: TFPObjectList;
  2843. i: integer;
  2844. st: tsymtable;
  2845. begin
  2846. result:=false;
  2847. odef:=nil;
  2848. { when there are no helpers active currently then we don't need to do
  2849. anything }
  2850. if current_module.extendeddefs.count=0 then
  2851. exit;
  2852. { no helpers for anonymous types }
  2853. if ((pd.typ in [recorddef,objectdef]) and
  2854. (
  2855. not assigned(tabstractrecorddef(pd).objrealname) or
  2856. (tabstractrecorddef(pd).objrealname^='')
  2857. )
  2858. ) or
  2859. not assigned(pd.typesym) then
  2860. exit;
  2861. { if pd is defined inside a procedure we must not use make_mangledname
  2862. (as a helper may not be defined in a procedure this is no problem...)}
  2863. st:=pd.owner;
  2864. while st.symtabletype in [objectsymtable,recordsymtable] do
  2865. st:=st.defowner.owner;
  2866. if st.symtabletype=localsymtable then
  2867. exit;
  2868. { the mangled name is used as the key for tmodule.extendeddefs }
  2869. s:=generate_objectpascal_helper_key(pd);
  2870. list:=TFPObjectList(current_module.extendeddefs.Find(s));
  2871. if assigned(list) and (list.count>0) then
  2872. begin
  2873. i:=list.count-1;
  2874. repeat
  2875. odef:=tobjectdef(list[list.count-1]);
  2876. result:=(odef.owner.symtabletype in [staticsymtable,globalsymtable]) or
  2877. is_visible_for_object(tobjectdef(list[i]).typesym,contextclassh);
  2878. dec(i);
  2879. until result or (i<0);
  2880. if not result then
  2881. { just to be sure that noone uses odef }
  2882. odef:=nil;
  2883. end;
  2884. end;
  2885. function search_objectpascal_helper(pd : tdef;contextclassh : tabstractrecorddef;const s: string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  2886. var
  2887. hashedid : THashedIDString;
  2888. classh : tobjectdef;
  2889. i : integer;
  2890. pdef : tprocdef;
  2891. begin
  2892. result:=false;
  2893. { if there is no class helper for the class then there is no need to
  2894. search further }
  2895. if not search_last_objectpascal_helper(pd,contextclassh,classh) then
  2896. exit;
  2897. hashedid.id:=s;
  2898. repeat
  2899. srsymtable:=classh.symtable;
  2900. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2901. if srsym<>nil then
  2902. begin
  2903. case srsym.typ of
  2904. procsym:
  2905. begin
  2906. for i:=0 to tprocsym(srsym).procdeflist.count-1 do
  2907. begin
  2908. pdef:=tprocdef(tprocsym(srsym).procdeflist[i]);
  2909. if not is_visible_for_object(pdef.owner,pdef.visibility,contextclassh) then
  2910. continue;
  2911. { we need to know if a procedure references symbols
  2912. in the static symtable, because then it can't be
  2913. inlined from outside this unit }
  2914. if assigned(current_procinfo) and
  2915. (srsym.owner.symtabletype=staticsymtable) then
  2916. include(current_procinfo.flags,pi_uses_static_symtable);
  2917. { the first found method wins }
  2918. srsym:=tprocdef(tprocsym(srsym).procdeflist[i]).procsym;
  2919. srsymtable:=srsym.owner;
  2920. addsymref(srsym);
  2921. result:=true;
  2922. exit;
  2923. end;
  2924. end;
  2925. typesym,
  2926. fieldvarsym,
  2927. constsym,
  2928. enumsym,
  2929. undefinedsym,
  2930. propertysym:
  2931. begin
  2932. addsymref(srsym);
  2933. result:=true;
  2934. exit;
  2935. end;
  2936. else
  2937. internalerror(2014041101);
  2938. end;
  2939. end;
  2940. { try the helper parent if available }
  2941. classh:=classh.childof;
  2942. until classh=nil;
  2943. srsym:=nil;
  2944. srsymtable:=nil;
  2945. end;
  2946. function search_objc_helper(pd : tobjectdef;const s : string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  2947. var
  2948. hashedid : THashedIDString;
  2949. stackitem : psymtablestackitem;
  2950. i : longint;
  2951. defowner : tobjectdef;
  2952. begin
  2953. hashedid.id:=class_helper_prefix+s;
  2954. stackitem:=symtablestack.stack;
  2955. while assigned(stackitem) do
  2956. begin
  2957. srsymtable:=stackitem^.symtable;
  2958. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  2959. if assigned(srsym) then
  2960. begin
  2961. if not(srsymtable.symtabletype in [globalsymtable,staticsymtable]) or
  2962. not(srsym.owner.symtabletype in [globalsymtable,staticsymtable]) or
  2963. (srsym.typ<>procsym) then
  2964. internalerror(2009111505);
  2965. { check whether this procsym includes a helper for this particular class }
  2966. for i:=0 to tprocsym(srsym).procdeflist.count-1 do
  2967. begin
  2968. { does pd inherit from (or is the same as) the class
  2969. that this method's category extended?
  2970. Warning: this list contains both category and objcclass methods
  2971. (for id.randommethod), so only check category methods here
  2972. }
  2973. defowner:=tobjectdef(tprocdef(tprocsym(srsym).procdeflist[i]).owner.defowner);
  2974. if (oo_is_classhelper in defowner.objectoptions) and
  2975. def_is_related(pd,defowner.childof) then
  2976. begin
  2977. { we need to know if a procedure references symbols
  2978. in the static symtable, because then it can't be
  2979. inlined from outside this unit }
  2980. if assigned(current_procinfo) and
  2981. (srsym.owner.symtabletype=staticsymtable) then
  2982. include(current_procinfo.flags,pi_uses_static_symtable);
  2983. { no need to keep looking. There might be other
  2984. categories that extend this, a parent or child
  2985. class with a method with the same name (either
  2986. overriding this one, or overridden by this one),
  2987. but that doesn't matter as far as the basic
  2988. procsym is concerned.
  2989. }
  2990. srsym:=tprocdef(tprocsym(srsym).procdeflist[i]).procsym;
  2991. srsymtable:=srsym.owner;
  2992. addsymref(srsym);
  2993. result:=true;
  2994. exit;
  2995. end;
  2996. end;
  2997. end;
  2998. stackitem:=stackitem^.next;
  2999. end;
  3000. srsym:=nil;
  3001. srsymtable:=nil;
  3002. result:=false;
  3003. end;
  3004. function search_objc_method(const s : string; out srsym: tsym; out srsymtable: tsymtable):boolean;
  3005. var
  3006. hashedid : THashedIDString;
  3007. stackitem : psymtablestackitem;
  3008. i : longint;
  3009. begin
  3010. hashedid.id:=class_helper_prefix+s;
  3011. stackitem:=symtablestack.stack;
  3012. while assigned(stackitem) do
  3013. begin
  3014. srsymtable:=stackitem^.symtable;
  3015. srsym:=tsym(srsymtable.FindWithHash(hashedid));
  3016. if assigned(srsym) then
  3017. begin
  3018. if not(srsymtable.symtabletype in [globalsymtable,staticsymtable]) or
  3019. not(srsym.owner.symtabletype in [globalsymtable,staticsymtable]) or
  3020. (srsym.typ<>procsym) then
  3021. internalerror(2009112005);
  3022. { check whether this procsym includes a helper for this particular class }
  3023. for i:=0 to tprocsym(srsym).procdeflist.count-1 do
  3024. begin
  3025. { we need to know if a procedure references symbols
  3026. in the static symtable, because then it can't be
  3027. inlined from outside this unit }
  3028. if assigned(current_procinfo) and
  3029. (srsym.owner.symtabletype=staticsymtable) then
  3030. include(current_procinfo.flags,pi_uses_static_symtable);
  3031. { no need to keep looking. There might be other
  3032. methods with the same name, but that doesn't matter
  3033. as far as the basic procsym is concerned.
  3034. }
  3035. srsym:=tprocdef(tprocsym(srsym).procdeflist[i]).procsym;
  3036. { We need the symtable in which the classhelper-like sym
  3037. is located, not the objectdef. The reason is that the
  3038. callnode will climb the symtablestack until it encounters
  3039. this symtable to start looking for overloads (and it won't
  3040. find the objectsymtable in which this method sym is
  3041. located
  3042. srsymtable:=srsym.owner;
  3043. }
  3044. addsymref(srsym);
  3045. result:=true;
  3046. exit;
  3047. end;
  3048. end;
  3049. stackitem:=stackitem^.next;
  3050. end;
  3051. srsym:=nil;
  3052. srsymtable:=nil;
  3053. result:=false;
  3054. end;
  3055. function search_struct_member(pd : tabstractrecorddef;const s : string):tsym;
  3056. { searches n in symtable of pd and all anchestors }
  3057. var
  3058. srsymtable : tsymtable;
  3059. begin
  3060. { in case this is a formal class, first find the real definition }
  3061. if (oo_is_formal in pd.objectoptions) then
  3062. pd:=find_real_class_definition(tobjectdef(pd),true);
  3063. if search_objectpascal_helper(pd, pd, s, result, srsymtable) then
  3064. exit;
  3065. result:=search_struct_member_no_helper(pd,s);
  3066. if assigned(result) then
  3067. exit;
  3068. { not found, now look for class helpers }
  3069. if is_objcclass(pd) then
  3070. search_objc_helper(tobjectdef(pd),s,result,srsymtable)
  3071. end;
  3072. function search_struct_member_no_helper(pd: tabstractrecorddef; const s: string): tsym;
  3073. var
  3074. hashedid : THashedIDString;
  3075. srsym : tsym;
  3076. begin
  3077. hashedid.id:=s;
  3078. while assigned(pd) do
  3079. begin
  3080. srsym:=tsym(pd.symtable.FindWithHash(hashedid));
  3081. if assigned(srsym) then
  3082. begin
  3083. result:=srsym;
  3084. exit;
  3085. end;
  3086. if pd.typ=objectdef then
  3087. pd:=tobjectdef(pd).childof
  3088. else
  3089. pd:=nil;
  3090. end;
  3091. result:=nil;
  3092. end;
  3093. function search_macro(const s : string):tsym;
  3094. var
  3095. stackitem : psymtablestackitem;
  3096. hashedid : THashedIDString;
  3097. srsym : tsym;
  3098. begin
  3099. hashedid.id:=s;
  3100. { First search the localmacrosymtable before searching the
  3101. global macrosymtables from the units }
  3102. if assigned(current_module) then
  3103. begin
  3104. srsym:=tsym(current_module.localmacrosymtable.FindWithHash(hashedid));
  3105. if assigned(srsym) then
  3106. begin
  3107. result:= srsym;
  3108. exit;
  3109. end;
  3110. end;
  3111. stackitem:=macrosymtablestack.stack;
  3112. while assigned(stackitem) do
  3113. begin
  3114. srsym:=tsym(stackitem^.symtable.FindWithHash(hashedid));
  3115. if assigned(srsym) then
  3116. begin
  3117. result:= srsym;
  3118. exit;
  3119. end;
  3120. stackitem:=stackitem^.next;
  3121. end;
  3122. result:= nil;
  3123. end;
  3124. function defined_macro(const s : string):boolean;
  3125. var
  3126. mac: tmacro;
  3127. begin
  3128. mac:=tmacro(search_macro(s));
  3129. if assigned(mac) then
  3130. begin
  3131. mac.is_used:=true;
  3132. defined_macro:=mac.defined;
  3133. end
  3134. else
  3135. defined_macro:=false;
  3136. end;
  3137. {****************************************************************************
  3138. Object Helpers
  3139. ****************************************************************************}
  3140. function search_default_property(pd : tabstractrecorddef) : tpropertysym;
  3141. { returns the default property of a class, searches also anchestors }
  3142. var
  3143. _defaultprop : tpropertysym;
  3144. helperpd : tobjectdef;
  3145. begin
  3146. _defaultprop:=nil;
  3147. { first search in helper's hierarchy }
  3148. if search_last_objectpascal_helper(pd,nil,helperpd) then
  3149. while assigned(helperpd) do
  3150. begin
  3151. helperpd.symtable.SymList.ForEachCall(@tstoredsymtable(helperpd.symtable).testfordefaultproperty,@_defaultprop);
  3152. if assigned(_defaultprop) then
  3153. break;
  3154. helperpd:=helperpd.childof;
  3155. end;
  3156. if assigned(_defaultprop) then
  3157. begin
  3158. search_default_property:=_defaultprop;
  3159. exit;
  3160. end;
  3161. { now search in the type's hierarchy itself }
  3162. while assigned(pd) do
  3163. begin
  3164. pd.symtable.SymList.ForEachCall(@tstoredsymtable(pd.symtable).testfordefaultproperty,@_defaultprop);
  3165. if assigned(_defaultprop) then
  3166. break;
  3167. if (pd.typ=objectdef) then
  3168. pd:=tobjectdef(pd).childof
  3169. else
  3170. break;
  3171. end;
  3172. search_default_property:=_defaultprop;
  3173. end;
  3174. {****************************************************************************
  3175. Macro Helpers
  3176. ****************************************************************************}
  3177. procedure def_system_macro(const name : string);
  3178. var
  3179. mac : tmacro;
  3180. s: string;
  3181. begin
  3182. if name = '' then
  3183. internalerror(2004121202);
  3184. s:= upper(name);
  3185. mac:=tmacro(search_macro(s));
  3186. if not assigned(mac) then
  3187. begin
  3188. mac:=tmacro.create(s);
  3189. if assigned(current_module) then
  3190. current_module.localmacrosymtable.insert(mac)
  3191. else
  3192. initialmacrosymtable.insert(mac);
  3193. end;
  3194. Message1(parser_c_macro_defined,mac.name);
  3195. mac.defined:=true;
  3196. end;
  3197. procedure set_system_macro(const name, value : string);
  3198. var
  3199. mac : tmacro;
  3200. s: string;
  3201. begin
  3202. if name = '' then
  3203. internalerror(2004121203);
  3204. s:= upper(name);
  3205. mac:=tmacro(search_macro(s));
  3206. if not assigned(mac) then
  3207. begin
  3208. mac:=tmacro.create(s);
  3209. if assigned(current_module) then
  3210. current_module.localmacrosymtable.insert(mac)
  3211. else
  3212. initialmacrosymtable.insert(mac);
  3213. end
  3214. else
  3215. begin
  3216. mac.is_compiler_var:=false;
  3217. if assigned(mac.buftext) then
  3218. freemem(mac.buftext,mac.buflen);
  3219. end;
  3220. Message2(parser_c_macro_set_to,mac.name,value);
  3221. mac.buflen:=length(value);
  3222. getmem(mac.buftext,mac.buflen);
  3223. move(value[1],mac.buftext^,mac.buflen);
  3224. mac.defined:=true;
  3225. end;
  3226. procedure set_system_compvar(const name, value : string);
  3227. var
  3228. mac : tmacro;
  3229. s: string;
  3230. begin
  3231. if name = '' then
  3232. internalerror(2004121204);
  3233. s:= upper(name);
  3234. mac:=tmacro(search_macro(s));
  3235. if not assigned(mac) then
  3236. begin
  3237. mac:=tmacro.create(s);
  3238. mac.is_compiler_var:=true;
  3239. if assigned(current_module) then
  3240. current_module.localmacrosymtable.insert(mac)
  3241. else
  3242. initialmacrosymtable.insert(mac);
  3243. end
  3244. else
  3245. begin
  3246. mac.is_compiler_var:=true;
  3247. if assigned(mac.buftext) then
  3248. freemem(mac.buftext,mac.buflen);
  3249. end;
  3250. Message2(parser_c_macro_set_to,mac.name,value);
  3251. mac.buflen:=length(value);
  3252. getmem(mac.buftext,mac.buflen);
  3253. move(value[1],mac.buftext^,mac.buflen);
  3254. mac.defined:=true;
  3255. end;
  3256. procedure undef_system_macro(const name : string);
  3257. var
  3258. mac : tmacro;
  3259. s: string;
  3260. begin
  3261. if name = '' then
  3262. internalerror(2004121205);
  3263. s:= upper(name);
  3264. mac:=tmacro(search_macro(s));
  3265. if not assigned(mac) then
  3266. {If not found, then it's already undefined.}
  3267. else
  3268. begin
  3269. Message1(parser_c_macro_undefined,mac.name);
  3270. mac.defined:=false;
  3271. mac.is_compiler_var:=false;
  3272. { delete old definition }
  3273. if assigned(mac.buftext) then
  3274. begin
  3275. freemem(mac.buftext,mac.buflen);
  3276. mac.buftext:=nil;
  3277. end;
  3278. end;
  3279. end;
  3280. {$ifdef UNITALIASES}
  3281. {****************************************************************************
  3282. TUNIT_ALIAS
  3283. ****************************************************************************}
  3284. constructor tunit_alias.create(const n:string);
  3285. var
  3286. i : longint;
  3287. begin
  3288. i:=pos('=',n);
  3289. if i=0 then
  3290. fail;
  3291. inherited createname(Copy(n,1,i-1));
  3292. newname:=stringdup(Copy(n,i+1,255));
  3293. end;
  3294. destructor tunit_alias.destroy;
  3295. begin
  3296. stringdispose(newname);
  3297. inherited destroy;
  3298. end;
  3299. procedure addunitalias(const n:string);
  3300. begin
  3301. unitaliases^.insert(tunit_alias,init(Upper(n))));
  3302. end;
  3303. function getunitalias(const n:string):string;
  3304. var
  3305. p : punit_alias;
  3306. begin
  3307. p:=punit_alias(unitaliases^.Find(Upper(n)));
  3308. if assigned(p) then
  3309. getunitalias:=punit_alias(p).newname^
  3310. else
  3311. getunitalias:=n;
  3312. end;
  3313. {$endif UNITALIASES}
  3314. {****************************************************************************
  3315. Init/Done Symtable
  3316. ****************************************************************************}
  3317. procedure InitSymtable;
  3318. begin
  3319. { Reset symbolstack }
  3320. symtablestack:=nil;
  3321. systemunit:=nil;
  3322. { create error syms and def }
  3323. generrorsym:=terrorsym.create;
  3324. generrordef:=cerrordef.create;
  3325. { macros }
  3326. initialmacrosymtable:=tmacrosymtable.create(false);
  3327. macrosymtablestack:=TSymtablestack.create;
  3328. macrosymtablestack.push(initialmacrosymtable);
  3329. {$ifdef UNITALIASES}
  3330. { unit aliases }
  3331. unitaliases:=TFPHashObjectList.create;
  3332. {$endif}
  3333. { set some global vars to nil, might be important for the ide }
  3334. class_tobject:=nil;
  3335. interface_iunknown:=nil;
  3336. interface_idispatch:=nil;
  3337. rec_tguid:=nil;
  3338. dupnr:=0;
  3339. end;
  3340. procedure DoneSymtable;
  3341. begin
  3342. generrorsym.owner:=nil;
  3343. generrorsym.free;
  3344. generrordef.owner:=nil;
  3345. generrordef.free;
  3346. initialmacrosymtable.free;
  3347. macrosymtablestack.free;
  3348. {$ifdef UNITALIASES}
  3349. unitaliases.free;
  3350. {$endif}
  3351. end;
  3352. end.