symtable.pas 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl, Pierre Muller
  4. This unit handles the symbol tables
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit symtable;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. { common }
  23. cutils,cclasses,
  24. { global }
  25. cpuinfo,globtype,tokens,
  26. { symtable }
  27. symconst,symbase,symtype,symdef,symsym,
  28. { ppu }
  29. ppu,symppu,
  30. { assembler }
  31. aasmbase,aasmtai,aasmcpu,
  32. { cg }
  33. paramgr
  34. ;
  35. {****************************************************************************
  36. Symtable types
  37. ****************************************************************************}
  38. type
  39. tstoredsymtable = class(tsymtable)
  40. private
  41. b_needs_init_final : boolean;
  42. procedure _needs_init_final(p : tnamedindexitem;arg:pointer);
  43. procedure check_forward(sym : TNamedIndexItem;arg:pointer);
  44. procedure labeldefined(p : TNamedIndexItem;arg:pointer);
  45. procedure unitsymbolused(p : TNamedIndexItem;arg:pointer);
  46. procedure varsymbolused(p : TNamedIndexItem;arg:pointer);
  47. procedure TestPrivate(p : TNamedIndexItem;arg:pointer);
  48. procedure objectprivatesymbolused(p : TNamedIndexItem;arg:pointer);
  49. {$ifdef GDB}
  50. private
  51. procedure concatstab(p : TNamedIndexItem;arg:pointer);
  52. procedure resetstab(p : TNamedIndexItem;arg:pointer);
  53. procedure concattypestab(p : TNamedIndexItem;arg:pointer);
  54. {$endif}
  55. procedure unchain_overloads(p : TNamedIndexItem;arg:pointer);
  56. procedure loaddefs(ppufile:tcompilerppufile);
  57. procedure loadsyms(ppufile:tcompilerppufile);
  58. procedure writedefs(ppufile:tcompilerppufile);
  59. procedure writesyms(ppufile:tcompilerppufile);
  60. public
  61. { load/write }
  62. procedure ppuload(ppufile:tcompilerppufile);virtual;
  63. procedure ppuwrite(ppufile:tcompilerppufile);virtual;
  64. procedure load_references(ppufile:tcompilerppufile;locals:boolean);virtual;
  65. procedure write_references(ppufile:tcompilerppufile;locals:boolean);virtual;
  66. procedure deref;virtual;
  67. procedure derefimpl;virtual;
  68. procedure insert(sym : tsymentry);override;
  69. function speedsearch(const s : stringid;speedvalue : cardinal) : tsymentry;override;
  70. procedure allsymbolsused;
  71. procedure allprivatesused;
  72. procedure allunitsused;
  73. procedure check_forwards;
  74. procedure checklabels;
  75. function needs_init_final : boolean;
  76. procedure unchain_overloaded;
  77. procedure chainoperators;
  78. {$ifdef GDB}
  79. procedure concatstabto(asmlist : taasmoutput);virtual;
  80. function getnewtypecount : word; override;
  81. {$endif GDB}
  82. procedure testfordefaultproperty(p : TNamedIndexItem;arg:pointer);
  83. end;
  84. tabstractrecordsymtable = class(tstoredsymtable)
  85. public
  86. procedure ppuload(ppufile:tcompilerppufile);override;
  87. procedure ppuwrite(ppufile:tcompilerppufile);override;
  88. procedure load_references(ppufile:tcompilerppufile;locals:boolean);override;
  89. procedure write_references(ppufile:tcompilerppufile;locals:boolean);override;
  90. procedure insertvardata(sym : tsymentry);override;
  91. end;
  92. trecordsymtable = class(tabstractrecordsymtable)
  93. public
  94. constructor create;
  95. procedure insert_in(tsymt : tsymtable;offset : longint);
  96. end;
  97. tobjectsymtable = class(tabstractrecordsymtable)
  98. public
  99. constructor create(const n:string);
  100. procedure insert(sym : tsymentry);override;
  101. end;
  102. tabstractlocalsymtable = class(tstoredsymtable)
  103. public
  104. procedure ppuload(ppufile:tcompilerppufile);override;
  105. procedure ppuwrite(ppufile:tcompilerppufile);override;
  106. procedure load_references(ppufile:tcompilerppufile;locals:boolean);override;
  107. procedure write_references(ppufile:tcompilerppufile;locals:boolean);override;
  108. end;
  109. tlocalsymtable = class(tabstractlocalsymtable)
  110. public
  111. constructor create;
  112. procedure insert(sym : tsymentry);override;
  113. procedure insertvardata(sym : tsymentry);override;
  114. procedure insertconstdata(sym : tsymentry);override;
  115. end;
  116. tparasymtable = class(tabstractlocalsymtable)
  117. public
  118. constructor create;
  119. procedure insert(sym : tsymentry);override;
  120. procedure insertvardata(sym : tsymentry);override;
  121. end;
  122. tabstractunitsymtable = class(tstoredsymtable)
  123. public
  124. {$ifdef GDB}
  125. dbx_count : longint;
  126. prev_dbx_counter : plongint;
  127. dbx_count_ok : boolean;
  128. is_stab_written : boolean;
  129. {$endif GDB}
  130. constructor create(const n : string);
  131. {$ifdef GDB}
  132. procedure concattypestabto(asmlist : taasmoutput);
  133. {$endif GDB}
  134. procedure insertvardata(sym : tsymentry);override;
  135. procedure insertconstdata(sym : tsymentry);override;
  136. end;
  137. tglobalsymtable = class(tabstractunitsymtable)
  138. public
  139. unittypecount : word;
  140. unitsym : tunitsym;
  141. constructor create(const n : string);
  142. destructor destroy;override;
  143. procedure ppuload(ppufile:tcompilerppufile);override;
  144. procedure ppuwrite(ppufile:tcompilerppufile);override;
  145. procedure insert(sym : tsymentry);override;
  146. procedure insertvardata(sym : tsymentry);override;
  147. {$ifdef GDB}
  148. function getnewtypecount : word; override;
  149. {$endif}
  150. end;
  151. tstaticsymtable = class(tabstractunitsymtable)
  152. public
  153. constructor create(const n : string);
  154. procedure ppuload(ppufile:tcompilerppufile);override;
  155. procedure ppuwrite(ppufile:tcompilerppufile);override;
  156. procedure load_references(ppufile:tcompilerppufile;locals:boolean);override;
  157. procedure write_references(ppufile:tcompilerppufile;locals:boolean);override;
  158. procedure insert(sym : tsymentry);override;
  159. procedure insertvardata(sym : tsymentry);override;
  160. end;
  161. twithsymtable = class(tsymtable)
  162. direct_with : boolean;
  163. { in fact it is a tnode }
  164. withnode : pointer;
  165. { tnode to load of direct with var }
  166. { already usable before firstwith
  167. needed for firstpass of function parameters PM }
  168. withrefnode : pointer;
  169. constructor create(aowner:tdef;asymsearch:TDictionary);
  170. destructor destroy;override;
  171. procedure clear;override;
  172. end;
  173. tstt_exceptsymtable = class(tsymtable)
  174. public
  175. constructor create;
  176. end;
  177. var
  178. constsymtable : tsymtable; { symtable were the constants can be inserted }
  179. systemunit : tglobalsymtable; { pointer to the system unit }
  180. read_member : boolean; { reading members of an symtable }
  181. lexlevel : longint; { level of code }
  182. { 1 for main procedure }
  183. { 2 for normal function or proc }
  184. { higher for locals }
  185. {****************************************************************************
  186. Functions
  187. ****************************************************************************}
  188. {*** Misc ***}
  189. procedure globaldef(const s : string;var t:ttype);
  190. function findunitsymtable(st:tsymtable):tsymtable;
  191. procedure duplicatesym(sym:tsym);
  192. {*** Search ***}
  193. function searchsym(const s : stringid;var srsym:tsym;var srsymtable:tsymtable):boolean;
  194. function searchsymonlyin(p : tsymtable;const s : stringid):tsym;
  195. function searchsym_in_class(classh:tobjectdef;const s : stringid):tsym;
  196. function searchsystype(const s: stringid; var srsym: ttypesym): boolean;
  197. function searchsysvar(const s: stringid; var srsym: tvarsym; var symowner: tsymtable): boolean;
  198. function search_class_member(pd : tobjectdef;const s : string):tsym;
  199. {*** Object Helpers ***}
  200. function search_default_property(pd : tobjectdef) : tpropertysym;
  201. {*** symtable stack ***}
  202. procedure dellexlevel;
  203. procedure RestoreUnitSyms;
  204. {$ifdef DEBUG}
  205. procedure test_symtablestack;
  206. procedure list_symtablestack;
  207. {$endif DEBUG}
  208. {$ifdef UNITALIASES}
  209. type
  210. punit_alias = ^tunit_alias;
  211. tunit_alias = object(TNamedIndexItem)
  212. newname : pstring;
  213. constructor init(const n:string);
  214. destructor done;virtual;
  215. end;
  216. var
  217. unitaliases : pdictionary;
  218. procedure addunitalias(const n:string);
  219. function getunitalias(const n:string):string;
  220. {$endif UNITALIASES}
  221. {*** Init / Done ***}
  222. procedure InitSymtable;
  223. procedure DoneSymtable;
  224. type
  225. toverloaded_operators = array[NOTOKEN..last_overloaded] of tprocsym;
  226. var
  227. overloaded_operators : toverloaded_operators;
  228. { unequal is not equal}
  229. const
  230. overloaded_names : array [NOTOKEN..last_overloaded] of string[16] =
  231. ('error',
  232. 'plus','minus','star','slash','equal',
  233. 'greater','lower','greater_or_equal',
  234. 'lower_or_equal',
  235. 'sym_diff','starstar',
  236. 'as','is','in','or',
  237. 'and','div','mod','not','shl','shr','xor',
  238. 'assign');
  239. implementation
  240. uses
  241. { global }
  242. verbose,globals,
  243. { target }
  244. systems,
  245. { module }
  246. fmodule,
  247. {$ifdef GDB}
  248. gdb,
  249. {$endif GDB}
  250. { codegen }
  251. cgbase
  252. ;
  253. {*****************************************************************************
  254. TStoredSymtable
  255. *****************************************************************************}
  256. procedure tstoredsymtable.ppuload(ppufile:tcompilerppufile);
  257. begin
  258. { load definitions }
  259. loaddefs(ppufile);
  260. { load symbols }
  261. loadsyms(ppufile);
  262. end;
  263. procedure tstoredsymtable.ppuwrite(ppufile:tcompilerppufile);
  264. begin
  265. { write definitions }
  266. writedefs(ppufile);
  267. { write symbols }
  268. writesyms(ppufile);
  269. end;
  270. procedure tstoredsymtable.loaddefs(ppufile:tcompilerppufile);
  271. var
  272. hp : tdef;
  273. b : byte;
  274. begin
  275. { load start of definition section, which holds the amount of defs }
  276. if ppufile.readentry<>ibstartdefs then
  277. Message(unit_f_ppu_read_error);
  278. ppufile.getlongint;
  279. { read definitions }
  280. repeat
  281. b:=ppufile.readentry;
  282. case b of
  283. ibpointerdef : hp:=tpointerdef.ppuload(ppufile);
  284. ibarraydef : hp:=tarraydef.ppuload(ppufile);
  285. iborddef : hp:=torddef.ppuload(ppufile);
  286. ibfloatdef : hp:=tfloatdef.ppuload(ppufile);
  287. ibprocdef : hp:=tprocdef.ppuload(ppufile);
  288. ibshortstringdef : hp:=tstringdef.loadshort(ppufile);
  289. iblongstringdef : hp:=tstringdef.loadlong(ppufile);
  290. ibansistringdef : hp:=tstringdef.loadansi(ppufile);
  291. ibwidestringdef : hp:=tstringdef.loadwide(ppufile);
  292. ibrecorddef : hp:=trecorddef.ppuload(ppufile);
  293. ibobjectdef : hp:=tobjectdef.ppuload(ppufile);
  294. ibenumdef : hp:=tenumdef.ppuload(ppufile);
  295. ibsetdef : hp:=tsetdef.ppuload(ppufile);
  296. ibprocvardef : hp:=tprocvardef.ppuload(ppufile);
  297. ibfiledef : hp:=tfiledef.ppuload(ppufile);
  298. ibclassrefdef : hp:=tclassrefdef.ppuload(ppufile);
  299. ibformaldef : hp:=tformaldef.ppuload(ppufile);
  300. ibvariantdef : hp:=tvariantdef.ppuload(ppufile);
  301. ibenddefs : break;
  302. ibend : Message(unit_f_ppu_read_error);
  303. else
  304. Message1(unit_f_ppu_invalid_entry,tostr(b));
  305. end;
  306. hp.owner:=self;
  307. defindex.insert(hp);
  308. until false;
  309. end;
  310. procedure tstoredsymtable.loadsyms(ppufile:tcompilerppufile);
  311. var
  312. b : byte;
  313. sym : tsym;
  314. begin
  315. { load start of definition section, which holds the amount of defs }
  316. if ppufile.readentry<>ibstartsyms then
  317. Message(unit_f_ppu_read_error);
  318. { skip amount of symbols, not used currently }
  319. ppufile.getlongint;
  320. { load datasize,dataalignment of this symboltable }
  321. datasize:=ppufile.getlongint;
  322. dataalignment:=ppufile.getlongint;
  323. { now read the symbols }
  324. repeat
  325. b:=ppufile.readentry;
  326. case b of
  327. ibtypesym : sym:=ttypesym.ppuload(ppufile);
  328. ibprocsym : sym:=tprocsym.ppuload(ppufile);
  329. ibconstsym : sym:=tconstsym.ppuload(ppufile);
  330. ibvarsym : sym:=tvarsym.ppuload(ppufile);
  331. ibfuncretsym : sym:=tfuncretsym.ppuload(ppufile);
  332. ibabsolutesym : sym:=tabsolutesym.ppuload(ppufile);
  333. ibenumsym : sym:=tenumsym.ppuload(ppufile);
  334. ibtypedconstsym : sym:=ttypedconstsym.ppuload(ppufile);
  335. ibpropertysym : sym:=tpropertysym.ppuload(ppufile);
  336. ibunitsym : sym:=tunitsym.ppuload(ppufile);
  337. iblabelsym : sym:=tlabelsym.ppuload(ppufile);
  338. ibsyssym : sym:=tsyssym.ppuload(ppufile);
  339. ibrttisym : sym:=trttisym.ppuload(ppufile);
  340. ibendsyms : break;
  341. ibend : Message(unit_f_ppu_read_error);
  342. else
  343. Message1(unit_f_ppu_invalid_entry,tostr(b));
  344. end;
  345. sym.owner:=self;
  346. symindex.insert(sym);
  347. symsearch.insert(sym);
  348. until false;
  349. end;
  350. procedure tstoredsymtable.writedefs(ppufile:tcompilerppufile);
  351. var
  352. pd : tstoreddef;
  353. begin
  354. { each definition get a number, write then the amount of defs to the
  355. ibstartdef entry }
  356. ppufile.putlongint(defindex.count);
  357. ppufile.writeentry(ibstartdefs);
  358. { now write the definition }
  359. pd:=tstoreddef(defindex.first);
  360. while assigned(pd) do
  361. begin
  362. pd.ppuwrite(ppufile);
  363. pd:=tstoreddef(pd.indexnext);
  364. end;
  365. { write end of definitions }
  366. ppufile.writeentry(ibenddefs);
  367. end;
  368. procedure tstoredsymtable.writesyms(ppufile:tcompilerppufile);
  369. var
  370. pd : tstoredsym;
  371. begin
  372. { each definition get a number, write then the amount of syms and the
  373. datasize to the ibsymdef entry }
  374. ppufile.putlongint(symindex.count);
  375. ppufile.putlongint(datasize);
  376. ppufile.putlongint(dataalignment);
  377. ppufile.writeentry(ibstartsyms);
  378. { foreach is used to write all symbols }
  379. pd:=tstoredsym(symindex.first);
  380. while assigned(pd) do
  381. begin
  382. pd.ppuwrite(ppufile);
  383. pd:=tstoredsym(pd.indexnext);
  384. end;
  385. { end of symbols }
  386. ppufile.writeentry(ibendsyms);
  387. end;
  388. procedure tstoredsymtable.load_references(ppufile:tcompilerppufile;locals:boolean);
  389. var
  390. b : byte;
  391. sym : tstoredsym;
  392. prdef : tstoreddef;
  393. begin
  394. b:=ppufile.readentry;
  395. if b <> ibbeginsymtablebrowser then
  396. Message1(unit_f_ppu_invalid_entry,tostr(b));
  397. repeat
  398. b:=ppufile.readentry;
  399. case b of
  400. ibsymref :
  401. begin
  402. sym:=tstoredsym(ppufile.getderef);
  403. resolvesym(pointer(sym));
  404. if assigned(sym) then
  405. sym.load_references(ppufile,locals);
  406. end;
  407. ibdefref :
  408. begin
  409. prdef:=tstoreddef(ppufile.getderef);
  410. resolvedef(pointer(prdef));
  411. if assigned(prdef) then
  412. begin
  413. if prdef.deftype<>procdef then
  414. Message(unit_f_ppu_read_error);
  415. tprocdef(prdef).load_references(ppufile,locals);
  416. end;
  417. end;
  418. ibendsymtablebrowser :
  419. break;
  420. else
  421. Message1(unit_f_ppu_invalid_entry,tostr(b));
  422. end;
  423. until false;
  424. end;
  425. procedure tstoredsymtable.write_references(ppufile:tcompilerppufile;locals:boolean);
  426. var
  427. pd : tstoredsym;
  428. begin
  429. ppufile.writeentry(ibbeginsymtablebrowser);
  430. { write all symbols }
  431. pd:=tstoredsym(symindex.first);
  432. while assigned(pd) do
  433. begin
  434. pd.write_references(ppufile,locals);
  435. pd:=tstoredsym(pd.indexnext);
  436. end;
  437. ppufile.writeentry(ibendsymtablebrowser);
  438. end;
  439. procedure tstoredsymtable.deref;
  440. var
  441. hp : tdef;
  442. hs : tsym;
  443. begin
  444. { deref the interface definitions }
  445. hp:=tdef(defindex.first);
  446. while assigned(hp) do
  447. begin
  448. hp.deref;
  449. hp:=tdef(hp.indexnext);
  450. end;
  451. { first deref the interface ttype symbols }
  452. hs:=tsym(symindex.first);
  453. while assigned(hs) do
  454. begin
  455. if hs.typ=typesym then
  456. hs.deref;
  457. hs:=tsym(hs.indexnext);
  458. end;
  459. { deref the interface symbols }
  460. hs:=tsym(symindex.first);
  461. while assigned(hs) do
  462. begin
  463. if hs.typ<>typesym then
  464. hs.deref;
  465. hs:=tsym(hs.indexnext);
  466. end;
  467. end;
  468. procedure tstoredsymtable.derefimpl;
  469. var
  470. hp : tdef;
  471. begin
  472. { deref the implementation part of definitions }
  473. hp:=tdef(defindex.first);
  474. while assigned(hp) do
  475. begin
  476. hp.derefimpl;
  477. hp:=tdef(hp.indexnext);
  478. end;
  479. end;
  480. procedure tstoredsymtable.insert(sym:tsymentry);
  481. var
  482. hsym : tsym;
  483. begin
  484. { set owner and sym indexnb }
  485. sym.owner:=self;
  486. { check the current symtable }
  487. hsym:=tsym(search(sym.name));
  488. if assigned(hsym) then
  489. begin
  490. { in TP and Delphi you can have a local with the
  491. same name as the function, the function is then hidden for
  492. the user. (Under delphi it can still be accessed using result),
  493. but don't allow hiding of RESULT }
  494. if (m_duplicate_names in aktmodeswitches) and
  495. (hsym.typ=funcretsym) and
  496. not((m_result in aktmodeswitches) and
  497. (hsym.name='RESULT')) then
  498. hsym.owner.rename(hsym.name,'hidden'+hsym.name)
  499. else
  500. begin
  501. DuplicateSym(hsym);
  502. exit;
  503. end;
  504. end;
  505. { register definition of typesym }
  506. if (sym.typ = typesym) and
  507. assigned(ttypesym(sym).restype.def) then
  508. begin
  509. if not(assigned(ttypesym(sym).restype.def.owner)) and
  510. (ttypesym(sym).restype.def.deftype<>errordef) then
  511. registerdef(ttypesym(sym).restype.def);
  512. {$ifdef GDB}
  513. if (cs_debuginfo in aktmoduleswitches) and assigned(debuglist) and
  514. (symtabletype in [globalsymtable,staticsymtable]) then
  515. begin
  516. ttypesym(sym).isusedinstab := true;
  517. {sym.concatstabto(debuglist);}
  518. end;
  519. {$endif GDB}
  520. end;
  521. { insert in index and search hash }
  522. symindex.insert(sym);
  523. symsearch.insert(sym);
  524. end;
  525. function tstoredsymtable.speedsearch(const s : stringid;speedvalue : cardinal) : tsymentry;
  526. var
  527. hp : tstoredsym;
  528. newref : tref;
  529. begin
  530. hp:=tstoredsym(inherited speedsearch(s,speedvalue));
  531. if assigned(hp) then
  532. begin
  533. { reject non static members in static procedures }
  534. if (symtabletype=objectsymtable) and
  535. not(sp_static in hp.symoptions) and
  536. allow_only_static then
  537. Message(sym_e_only_static_in_static);
  538. { unit uses count }
  539. if (unitid<>0) and
  540. (symtabletype = globalsymtable) and
  541. assigned(tglobalsymtable(self).unitsym) then
  542. inc(tglobalsymtable(self).unitsym.refs);
  543. {$ifdef GDB}
  544. { if it is a type, we need the stabs of this type
  545. this might be the cause of the class debug problems
  546. as TCHILDCLASS.Create did not generate appropriate
  547. stabs debug info if TCHILDCLASS wasn't used anywhere else PM }
  548. if (cs_debuginfo in aktmoduleswitches) and
  549. (hp.typ=typesym) and
  550. make_ref then
  551. begin
  552. if assigned(ttypesym(hp).restype.def) then
  553. tstoreddef(ttypesym(hp).restype.def).numberstring
  554. else
  555. ttypesym(hp).isusedinstab:=true;
  556. end;
  557. {$endif GDB}
  558. { unitsym are only loaded for browsing PM }
  559. { this was buggy anyway because we could use }
  560. { unitsyms from other units in _USES !! }
  561. {if (symtabletype=unitsymtable) and (hp.typ=unitsym) and
  562. assigned(current_module) and (current_module.globalsymtable<>.load) then
  563. hp:=nil;}
  564. if assigned(hp) and
  565. make_ref and
  566. (cs_browser in aktmoduleswitches) then
  567. begin
  568. newref:=tref.create(hp.lastref,@akttokenpos);
  569. { for symbols that are in tables without
  570. browser info or syssyms (PM) }
  571. if hp.refcount=0 then
  572. begin
  573. hp.defref:=newref;
  574. hp.lastref:=newref;
  575. end
  576. else
  577. if resolving_forward and assigned(hp.defref) then
  578. { put it as second reference }
  579. begin
  580. newref.nextref:=hp.defref.nextref;
  581. hp.defref.nextref:=newref;
  582. hp.lastref.nextref:=nil;
  583. end
  584. else
  585. hp.lastref:=newref;
  586. inc(hp.refcount);
  587. end;
  588. if assigned(hp) and make_ref then
  589. begin
  590. inc(hp.refs);
  591. end;
  592. end;
  593. speedsearch:=hp;
  594. end;
  595. {**************************************
  596. Callbacks
  597. **************************************}
  598. procedure TStoredSymtable.check_forward(sym : TNamedIndexItem;arg:pointer);
  599. begin
  600. if tsym(sym).typ=procsym then
  601. tprocsym(sym).check_forward
  602. { check also object method table }
  603. { we needn't to test the def list }
  604. { because each object has to have a type sym }
  605. else
  606. if (tsym(sym).typ=typesym) and
  607. assigned(ttypesym(sym).restype.def) and
  608. (ttypesym(sym).restype.def.deftype=objectdef) then
  609. tobjectdef(ttypesym(sym).restype.def).check_forwards;
  610. end;
  611. procedure TStoredSymtable.labeldefined(p : TNamedIndexItem;arg:pointer);
  612. begin
  613. if (tsym(p).typ=labelsym) and
  614. not(tlabelsym(p).defined) then
  615. begin
  616. if tlabelsym(p).used then
  617. Message1(sym_e_label_used_and_not_defined,tlabelsym(p).realname)
  618. else
  619. Message1(sym_w_label_not_defined,tlabelsym(p).realname);
  620. end;
  621. end;
  622. procedure TStoredSymtable.unitsymbolused(p : TNamedIndexItem;arg:pointer);
  623. begin
  624. if (tsym(p).typ=unitsym) and
  625. (tunitsym(p).refs=0) and
  626. { do not claim for unit name itself !! }
  627. assigned(tunitsym(p).unitsymtable) and
  628. (tunitsym(p).unitsymtable.symtabletype=globalsymtable) then
  629. MessagePos2(tsym(p).fileinfo,sym_n_unit_not_used,p.name,current_module.modulename^);
  630. end;
  631. procedure TStoredSymtable.varsymbolused(p : TNamedIndexItem;arg:pointer);
  632. begin
  633. if (tsym(p).typ=varsym) and
  634. ((tsym(p).owner.symtabletype in
  635. [parasymtable,localsymtable,objectsymtable,staticsymtable])) then
  636. begin
  637. { unused symbol should be reported only if no }
  638. { error is reported }
  639. { if the symbol is in a register it is used }
  640. { also don't count the value parameters which have local copies }
  641. { also don't claim for high param of open parameters (PM) }
  642. if (Errorcount<>0) or
  643. (copy(p.name,1,3)='val') or
  644. (copy(p.name,1,4)='high') then
  645. exit;
  646. if (tvarsym(p).refs=0) then
  647. begin
  648. if (tsym(p).owner.symtabletype=parasymtable) or (vo_is_local_copy in tvarsym(p).varoptions) then
  649. begin
  650. MessagePos1(tsym(p).fileinfo,sym_h_para_identifier_not_used,tsym(p).realname);
  651. end
  652. else if (tsym(p).owner.symtabletype=objectsymtable) then
  653. MessagePos2(tsym(p).fileinfo,sym_n_private_identifier_not_used,tsym(p).owner.realname^,tsym(p).realname)
  654. else
  655. MessagePos1(tsym(p).fileinfo,sym_n_local_identifier_not_used,tsym(p).realname);
  656. end
  657. else if tvarsym(p).varstate=vs_assigned then
  658. begin
  659. if (tsym(p).owner.symtabletype=parasymtable) then
  660. begin
  661. if not(tvarsym(p).varspez in [vs_var,vs_out]) then
  662. MessagePos1(tsym(p).fileinfo,sym_h_para_identifier_only_set,tsym(p).realname)
  663. end
  664. else if (vo_is_local_copy in tvarsym(p).varoptions) then
  665. begin
  666. if not(tvarsym(p).varspez in [vs_var,vs_out]) then
  667. MessagePos1(tsym(p).fileinfo,sym_h_para_identifier_only_set,tsym(p).realname);
  668. end
  669. else if (tsym(p).owner.symtabletype=objectsymtable) then
  670. MessagePos2(tsym(p).fileinfo,sym_n_private_identifier_only_set,tsym(p).owner.realname^,tsym(p).realname)
  671. else if (tsym(p).owner.symtabletype<>parasymtable) then
  672. if not (vo_is_exported in tvarsym(p).varoptions) then
  673. MessagePos1(tsym(p).fileinfo,sym_n_local_identifier_only_set,tsym(p).realname);
  674. end;
  675. end
  676. else if ((tsym(p).owner.symtabletype in
  677. [objectsymtable,parasymtable,localsymtable,staticsymtable])) then
  678. begin
  679. if (Errorcount<>0) then
  680. exit;
  681. { do not claim for inherited private fields !! }
  682. if (tstoredsym(p).refs=0) and (tsym(p).owner.symtabletype=objectsymtable) then
  683. MessagePos2(tsym(p).fileinfo,sym_n_private_method_not_used,tsym(p).owner.realname^,tsym(p).realname)
  684. { units references are problematic }
  685. else if (tstoredsym(p).refs=0) and not(tsym(p).typ in [funcretsym,enumsym,unitsym]) then
  686. if (tsym(p).typ<>procsym) or not (tprocsym(p).is_global) or
  687. { all program functions are declared global
  688. but unused should still be signaled PM }
  689. ((tsym(p).owner.symtabletype=staticsymtable) and
  690. not current_module.is_unit) then
  691. MessagePos2(tsym(p).fileinfo,sym_h_local_symbol_not_used,SymTypeName[tsym(p).typ],tsym(p).realname);
  692. end;
  693. end;
  694. procedure TStoredSymtable.TestPrivate(p : TNamedIndexItem;arg:pointer);
  695. begin
  696. if sp_private in tsym(p).symoptions then
  697. varsymbolused(p,arg);
  698. end;
  699. procedure TStoredSymtable.objectprivatesymbolused(p : TNamedIndexItem;arg:pointer);
  700. begin
  701. {
  702. Don't test simple object aliases PM
  703. }
  704. if (tsym(p).typ=typesym) and
  705. (ttypesym(p).restype.def.deftype=objectdef) and
  706. (ttypesym(p).restype.def.typesym=tsym(p)) then
  707. tobjectdef(ttypesym(p).restype.def).symtable.foreach({$ifdef FPCPROCVAR}@{$endif}TestPrivate,nil);
  708. end;
  709. procedure tstoredsymtable.unchain_overloads(p : TNamedIndexItem;arg:pointer);
  710. begin
  711. if tsym(p).typ=procsym then
  712. tprocsym(p).unchain_overload;
  713. end;
  714. {$ifdef GDB}
  715. procedure TStoredSymtable.concatstab(p : TNamedIndexItem;arg:pointer);
  716. begin
  717. if tsym(p).typ <> procsym then
  718. tstoredsym(p).concatstabto(TAAsmOutput(arg));
  719. end;
  720. procedure TStoredSymtable.resetstab(p : TNamedIndexItem;arg:pointer);
  721. begin
  722. if tsym(p).typ <> procsym then
  723. tstoredsym(p).isstabwritten:=false;
  724. end;
  725. procedure TStoredSymtable.concattypestab(p : TNamedIndexItem;arg:pointer);
  726. begin
  727. if tsym(p).typ = typesym then
  728. begin
  729. tstoredsym(p).isstabwritten:=false;
  730. tstoredsym(p).concatstabto(TAAsmOutput(arg));
  731. end;
  732. end;
  733. function tstoredsymtable.getnewtypecount : word;
  734. begin
  735. getnewtypecount:=pglobaltypecount^;
  736. inc(pglobaltypecount^);
  737. end;
  738. {$endif GDB}
  739. procedure tstoredsymtable.chainoperators;
  740. var
  741. t : ttoken;
  742. srsym : tsym;
  743. srsymtable,
  744. storesymtablestack : tsymtable;
  745. begin
  746. storesymtablestack:=symtablestack;
  747. symtablestack:=self;
  748. make_ref:=false;
  749. for t:=first_overloaded to last_overloaded do
  750. begin
  751. overloaded_operators[t]:=nil;
  752. { each operator has a unique lowercased internal name PM }
  753. while assigned(symtablestack) do
  754. begin
  755. searchsym(overloaded_names[t],srsym,srsymtable);
  756. if not assigned(srsym) then
  757. begin
  758. if (t=_STARSTAR) then
  759. begin
  760. symtablestack:=systemunit;
  761. searchsym('POWER',srsym,srsymtable);
  762. end;
  763. end;
  764. if assigned(srsym) then
  765. begin
  766. if (srsym.typ<>procsym) then
  767. internalerror(12344321);
  768. { use this procsym as start ? }
  769. if not assigned(overloaded_operators[t]) then
  770. overloaded_operators[t]:=tprocsym(srsym)
  771. else
  772. { already got a procsym, only add defs of the current procsym }
  773. Tprocsym(srsym).concat_procdefs_to(overloaded_operators[t]);
  774. symtablestack:=srsym.owner.next;
  775. end
  776. else
  777. begin
  778. symtablestack:=nil;
  779. end;
  780. { search for same procsym in other units }
  781. end;
  782. symtablestack:=self;
  783. end;
  784. make_ref:=true;
  785. symtablestack:=storesymtablestack;
  786. end;
  787. {***********************************************
  788. Process all entries
  789. ***********************************************}
  790. { checks, if all procsyms and methods are defined }
  791. procedure tstoredsymtable.check_forwards;
  792. begin
  793. foreach({$ifdef FPCPROCVAR}@{$endif}check_forward,nil);
  794. end;
  795. procedure tstoredsymtable.checklabels;
  796. begin
  797. foreach({$ifdef FPCPROCVAR}@{$endif}labeldefined,nil);
  798. end;
  799. procedure tstoredsymtable.allunitsused;
  800. begin
  801. foreach({$ifdef FPCPROCVAR}@{$endif}unitsymbolused,nil);
  802. end;
  803. procedure tstoredsymtable.allsymbolsused;
  804. begin
  805. foreach({$ifdef FPCPROCVAR}@{$endif}varsymbolused,nil);
  806. end;
  807. procedure tstoredsymtable.allprivatesused;
  808. begin
  809. foreach({$ifdef FPCPROCVAR}@{$endif}objectprivatesymbolused,nil);
  810. end;
  811. procedure tstoredsymtable.unchain_overloaded;
  812. begin
  813. foreach({$ifdef FPCPROCVAR}@{$endif}unchain_overloads,nil);
  814. end;
  815. {$ifdef GDB}
  816. procedure tstoredsymtable.concatstabto(asmlist : taasmoutput);
  817. begin
  818. if symtabletype in [inlineparasymtable,inlinelocalsymtable] then
  819. foreach({$ifdef FPCPROCVAR}@{$endif}resetstab,nil);
  820. foreach({$ifdef FPCPROCVAR}@{$endif}concatstab,asmlist);
  821. end;
  822. {$endif}
  823. procedure TStoredSymtable._needs_init_final(p : tnamedindexitem;arg:pointer);
  824. begin
  825. if b_needs_init_final then
  826. exit;
  827. case tsym(p).typ of
  828. varsym :
  829. begin
  830. if not(is_class(tvarsym(p).vartype.def)) and
  831. tstoreddef(tvarsym(p).vartype.def).needs_inittable then
  832. b_needs_init_final:=true;
  833. end;
  834. typedconstsym :
  835. begin
  836. if ttypedconstsym(p).is_writable and
  837. tstoreddef(ttypedconstsym(p).typedconsttype.def).needs_inittable then
  838. b_needs_init_final:=true;
  839. end;
  840. end;
  841. end;
  842. { returns true, if p contains data which needs init/final code }
  843. function tstoredsymtable.needs_init_final : boolean;
  844. begin
  845. b_needs_init_final:=false;
  846. foreach({$ifdef FPCPROCVAR}@{$endif}_needs_init_final,nil);
  847. needs_init_final:=b_needs_init_final;
  848. end;
  849. {****************************************************************************
  850. TAbstractRecordSymtable
  851. ****************************************************************************}
  852. procedure tabstractrecordsymtable.ppuload(ppufile:tcompilerppufile);
  853. var
  854. storesymtable : tsymtable;
  855. begin
  856. storesymtable:=aktrecordsymtable;
  857. aktrecordsymtable:=self;
  858. inherited ppuload(ppufile);
  859. aktrecordsymtable:=storesymtable;
  860. end;
  861. procedure tabstractrecordsymtable.ppuwrite(ppufile:tcompilerppufile);
  862. var
  863. oldtyp : byte;
  864. storesymtable : tsymtable;
  865. begin
  866. storesymtable:=aktrecordsymtable;
  867. aktrecordsymtable:=self;
  868. oldtyp:=ppufile.entrytyp;
  869. ppufile.entrytyp:=subentryid;
  870. inherited ppuwrite(ppufile);
  871. ppufile.entrytyp:=oldtyp;
  872. aktrecordsymtable:=storesymtable;
  873. end;
  874. procedure tabstractrecordsymtable.load_references(ppufile:tcompilerppufile;locals:boolean);
  875. var
  876. storesymtable : tsymtable;
  877. begin
  878. storesymtable:=aktrecordsymtable;
  879. aktrecordsymtable:=self;
  880. inherited load_references(ppufile,locals);
  881. aktrecordsymtable:=storesymtable;
  882. end;
  883. procedure tabstractrecordsymtable.write_references(ppufile:tcompilerppufile;locals:boolean);
  884. var
  885. storesymtable : tsymtable;
  886. begin
  887. storesymtable:=aktrecordsymtable;
  888. aktrecordsymtable:=self;
  889. inherited write_references(ppufile,locals);
  890. aktrecordsymtable:=storesymtable;
  891. end;
  892. procedure tabstractrecordsymtable.insertvardata(sym : tsymentry);
  893. var
  894. l,varalign : longint;
  895. vardef : tdef;
  896. begin
  897. if sym.typ<>varsym then
  898. internalerror(200208251);
  899. l:=tvarsym(sym).getvaluesize;
  900. vardef:=tvarsym(sym).vartype.def;
  901. { this symbol can't be loaded to a register }
  902. exclude(tvarsym(sym).varoptions,vo_regable);
  903. exclude(tvarsym(sym).varoptions,vo_fpuregable);
  904. { get the alignment size }
  905. if (aktalignment.recordalignmax=-1) then
  906. begin
  907. varalign:=vardef.alignment;
  908. if (varalign>4) and
  909. ((varalign mod 4)<>0) and
  910. (vardef.deftype=arraydef) then
  911. Message1(sym_w_wrong_C_pack,vardef.typename);
  912. if varalign=0 then
  913. varalign:=l;
  914. if (dataalignment<aktalignment.maxCrecordalign) then
  915. begin
  916. if (varalign>16) and (dataalignment<32) then
  917. dataalignment:=32
  918. else if (varalign>12) and (dataalignment<16) then
  919. dataalignment:=16
  920. { 12 is needed for long double }
  921. else if (varalign>8) and (dataalignment<12) then
  922. dataalignment:=12
  923. else if (varalign>4) and (dataalignment<8) then
  924. dataalignment:=8
  925. else if (varalign>2) and (dataalignment<4) then
  926. dataalignment:=4
  927. else if (varalign>1) and (dataalignment<2) then
  928. dataalignment:=2;
  929. end;
  930. dataalignment:=min(dataalignment,aktalignment.maxCrecordalign);
  931. end
  932. else
  933. varalign:=vardef.alignment;
  934. if varalign=0 then
  935. varalign:=size_2_align(l);
  936. varalign:=used_align(varalign,aktalignment.recordalignmin,dataalignment);
  937. tvarsym(sym).address:=align(datasize,varalign);
  938. datasize:=tvarsym(sym).address+l;
  939. end;
  940. {****************************************************************************
  941. TRecordSymtable
  942. ****************************************************************************}
  943. constructor trecordsymtable.create;
  944. begin
  945. inherited create('');
  946. symtabletype:=recordsymtable;
  947. end;
  948. { this procedure is reserved for inserting case variant into
  949. a record symtable }
  950. { the offset is the location of the start of the variant
  951. and datasize and dataalignment corresponds to
  952. the complete size (see code in pdecl unit) PM }
  953. procedure trecordsymtable.insert_in(tsymt : tsymtable;offset : longint);
  954. var
  955. ps,nps : tvarsym;
  956. pd,npd : tdef;
  957. storesize,storealign : longint;
  958. begin
  959. storesize:=tsymt.datasize;
  960. storealign:=tsymt.dataalignment;
  961. tsymt.datasize:=offset;
  962. ps:=tvarsym(symindex.first);
  963. while assigned(ps) do
  964. begin
  965. nps:=tvarsym(ps.indexnext);
  966. { remove from current symtable }
  967. symindex.deleteindex(ps);
  968. ps.left:=nil;
  969. ps.right:=nil;
  970. { add to symt }
  971. ps.owner:=tsymt;
  972. tsymt.datasize:=ps.address+offset;
  973. tsymt.symindex.insert(ps);
  974. tsymt.symsearch.insert(ps);
  975. { update address }
  976. ps.address:=tsymt.datasize;
  977. { next }
  978. ps:=nps;
  979. end;
  980. pd:=tdef(defindex.first);
  981. while assigned(pd) do
  982. begin
  983. npd:=tdef(pd.indexnext);
  984. defindex.deleteindex(pd);
  985. pd.left:=nil;
  986. pd.right:=nil;
  987. tsymt.registerdef(pd);
  988. pd:=npd;
  989. end;
  990. tsymt.datasize:=storesize;
  991. tsymt.dataalignment:=storealign;
  992. end;
  993. {****************************************************************************
  994. TObjectSymtable
  995. ****************************************************************************}
  996. constructor tobjectsymtable.create(const n:string);
  997. begin
  998. inherited create(n);
  999. symtabletype:=objectsymtable;
  1000. end;
  1001. procedure tobjectsymtable.insert(sym:tsymentry);
  1002. var
  1003. hsym : tsym;
  1004. begin
  1005. { check for duplicate field id in inherited classes }
  1006. if (sym.typ=varsym) and
  1007. assigned(defowner) and
  1008. (
  1009. not(m_delphi in aktmodeswitches) or
  1010. is_object(tdef(defowner))
  1011. ) then
  1012. begin
  1013. { but private ids can be reused }
  1014. hsym:=search_class_member(tobjectdef(defowner),sym.name);
  1015. if assigned(hsym) and
  1016. tstoredsym(hsym).is_visible_for_object(tobjectdef(defowner)) then
  1017. begin
  1018. DuplicateSym(hsym);
  1019. exit;
  1020. end;
  1021. end;
  1022. inherited insert(sym);
  1023. end;
  1024. {****************************************************************************
  1025. TAbstractLocalSymtable
  1026. ****************************************************************************}
  1027. procedure tabstractlocalsymtable.ppuload(ppufile:tcompilerppufile);
  1028. var
  1029. storesymtable : tsymtable;
  1030. begin
  1031. storesymtable:=aktlocalsymtable;
  1032. aktlocalsymtable:=self;
  1033. inherited ppuload(ppufile);
  1034. aktlocalsymtable:=storesymtable;
  1035. end;
  1036. procedure tabstractlocalsymtable.ppuwrite(ppufile:tcompilerppufile);
  1037. var
  1038. oldtyp : byte;
  1039. storesymtable : tsymtable;
  1040. begin
  1041. storesymtable:=aktlocalsymtable;
  1042. aktlocalsymtable:=self;
  1043. oldtyp:=ppufile.entrytyp;
  1044. ppufile.entrytyp:=subentryid;
  1045. { write definitions }
  1046. writedefs(ppufile);
  1047. { write symbols }
  1048. writesyms(ppufile);
  1049. ppufile.entrytyp:=oldtyp;
  1050. aktlocalsymtable:=storesymtable;
  1051. end;
  1052. procedure tabstractlocalsymtable.load_references(ppufile:tcompilerppufile;locals:boolean);
  1053. var
  1054. storesymtable : tsymtable;
  1055. begin
  1056. storesymtable:=aktlocalsymtable;
  1057. aktlocalsymtable:=self;
  1058. inherited load_references(ppufile,locals);
  1059. aktlocalsymtable:=storesymtable;
  1060. end;
  1061. procedure tabstractlocalsymtable.write_references(ppufile:tcompilerppufile;locals:boolean);
  1062. var
  1063. storesymtable : tsymtable;
  1064. begin
  1065. storesymtable:=aktlocalsymtable;
  1066. aktlocalsymtable:=self;
  1067. inherited write_references(ppufile,locals);
  1068. aktlocalsymtable:=storesymtable;
  1069. end;
  1070. {****************************************************************************
  1071. TLocalSymtable
  1072. ****************************************************************************}
  1073. constructor tlocalsymtable.create;
  1074. begin
  1075. inherited create('');
  1076. symtabletype:=localsymtable;
  1077. end;
  1078. procedure tlocalsymtable.insert(sym:tsymentry);
  1079. var
  1080. hsym : tsym;
  1081. begin
  1082. if assigned(next) then
  1083. begin
  1084. if (next.symtabletype=parasymtable) then
  1085. begin
  1086. hsym:=tsym(next.search(sym.name));
  1087. if assigned(hsym) then
  1088. begin
  1089. { a parameter and the function can have the same
  1090. name in TP and Delphi, but RESULT not }
  1091. if (m_duplicate_names in aktmodeswitches) and
  1092. (sym.typ=funcretsym) and
  1093. not((m_result in aktmodeswitches) and
  1094. (sym.name='RESULT')) then
  1095. sym.name:='hidden'+sym.name
  1096. else
  1097. begin
  1098. DuplicateSym(hsym);
  1099. exit;
  1100. end;
  1101. end;
  1102. end;
  1103. { check for duplicate id in local symtable of methods }
  1104. if assigned(next.next) and
  1105. { funcretsym is allowed !! }
  1106. (sym.typ <> funcretsym) and
  1107. (next.next.symtabletype=objectsymtable) then
  1108. begin
  1109. hsym:=search_class_member(tobjectdef(next.next.defowner),sym.name);
  1110. if assigned(hsym) and
  1111. { private ids can be reused }
  1112. (not(sp_private in hsym.symoptions) or
  1113. (hsym.owner.defowner.owner.symtabletype<>globalsymtable)) then
  1114. begin
  1115. { delphi allows to reuse the names in a class, but not
  1116. in object (tp7 compatible) }
  1117. if not((m_delphi in aktmodeswitches) and
  1118. is_class(tdef(next.next.defowner))) then
  1119. begin
  1120. DuplicateSym(hsym);
  1121. exit;
  1122. end;
  1123. end;
  1124. end;
  1125. end;
  1126. inherited insert(sym);
  1127. end;
  1128. procedure tlocalsymtable.insertvardata(sym : tsymentry);
  1129. var
  1130. l,varalign : longint;
  1131. begin
  1132. if not(sym.typ in [varsym,funcretsym]) then
  1133. internalerror(200208255);
  1134. case sym.typ of
  1135. varsym :
  1136. begin
  1137. tvarsym(sym).varstate:=vs_declared;
  1138. l:=tvarsym(sym).getvaluesize;
  1139. varalign:=size_2_align(l);
  1140. varalign:=used_align(varalign,aktalignment.localalignmin,aktalignment.localalignmax);
  1141. {$ifdef powerpc}
  1142. { on the powerpc, the local variables are accessed with a positiv offset }
  1143. tvarsym(sym).address:=align(datasize,varalign);
  1144. datasize:=tvarsym(sym).address+l;
  1145. {$else powerpc}
  1146. tvarsym(sym).address:=align(datasize+l,varalign);
  1147. datasize:=tvarsym(sym).address;
  1148. {$endif powerpc}
  1149. end;
  1150. funcretsym :
  1151. begin
  1152. { if retoffset is already set then reuse it, this is needed
  1153. when inserting the result variable }
  1154. if procinfo.return_offset<>0 then
  1155. tfuncretsym(sym).address:=procinfo.return_offset
  1156. else
  1157. begin
  1158. { allocate space in local if ret in register }
  1159. if paramanager.ret_in_reg(tfuncretsym(sym).returntype.def) then
  1160. begin
  1161. l:=tfuncretsym(sym).returntype.def.size;
  1162. varalign:=size_2_align(l);
  1163. varalign:=used_align(varalign,aktalignment.localalignmin,dataalignment);
  1164. tfuncretsym(sym).address:=align(datasize+l,varalign);
  1165. datasize:=tfuncretsym(sym).address;
  1166. procinfo.return_offset:=-tfuncretsym(sym).address;
  1167. end;
  1168. end;
  1169. end;
  1170. end;
  1171. end;
  1172. procedure tlocalsymtable.insertconstdata(sym : tsymentry);
  1173. var
  1174. storefilepos : tfileposinfo;
  1175. curconstsegment : taasmoutput;
  1176. address,l,varalign : longint;
  1177. begin
  1178. { Note: this is the same code as tabstractunitsymtable.insertconstdata }
  1179. if sym.typ<>typedconstsym then
  1180. internalerror(200208254);
  1181. storefilepos:=aktfilepos;
  1182. aktfilepos:=tsym(sym).fileinfo;
  1183. if ttypedconstsym(sym).is_writable then
  1184. curconstsegment:=datasegment
  1185. else
  1186. curconstsegment:=consts;
  1187. l:=ttypedconstsym(sym).getsize;
  1188. varalign:=size_2_align(l);
  1189. varalign:=used_align(varalign,aktalignment.constalignmin,aktalignment.constalignmax);
  1190. address:=align(datasize,varalign);
  1191. { insert cut for smartlinking or alignment }
  1192. if (cs_create_smart in aktmoduleswitches) then
  1193. curconstSegment.concat(Tai_cut.Create)
  1194. else if (address<>datasize) then
  1195. curconstSegment.concat(Tai_align.create(varalign));
  1196. datasize:=address+l;
  1197. {$ifdef GDB}
  1198. if cs_debuginfo in aktmoduleswitches then
  1199. concatstabto(curconstsegment);
  1200. {$endif GDB}
  1201. if (cs_create_smart in aktmoduleswitches) or
  1202. DLLSource then
  1203. begin
  1204. curconstSegment.concat(Tai_symbol.Createdataname_global(
  1205. ttypedconstsym(sym).mangledname,ttypedconstsym(sym).getsize));
  1206. end
  1207. else
  1208. begin
  1209. curconstSegment.concat(Tai_symbol.Createdataname(
  1210. ttypedconstsym(sym).mangledname,ttypedconstsym(sym).getsize));
  1211. end;
  1212. aktfilepos:=storefilepos;
  1213. end;
  1214. {****************************************************************************
  1215. TParaSymtable
  1216. ****************************************************************************}
  1217. constructor tparasymtable.create;
  1218. begin
  1219. inherited create('');
  1220. symtabletype:=parasymtable;
  1221. dataalignment:=aktalignment.paraalign;
  1222. end;
  1223. procedure tparasymtable.insert(sym:tsymentry);
  1224. var
  1225. hsym : tsym;
  1226. begin
  1227. { check for duplicate id in para symtable of methods }
  1228. if assigned(procinfo) and
  1229. assigned(procinfo._class) and
  1230. { but not in nested procedures !}
  1231. (not(assigned(procinfo.parent)) or
  1232. (assigned(procinfo.parent) and
  1233. not(assigned(procinfo.parent._class)))
  1234. ) and
  1235. { funcretsym is allowed !! }
  1236. (sym.typ<>funcretsym) then
  1237. begin
  1238. hsym:=search_class_member(procinfo._class,sym.name);
  1239. { private ids can be reused }
  1240. if assigned(hsym) and
  1241. tstoredsym(hsym).is_visible_for_object(procinfo._class) then
  1242. begin
  1243. { delphi allows to reuse the names in a class, but not
  1244. in object (tp7 compatible) }
  1245. if not((m_delphi in aktmodeswitches) and
  1246. is_class_or_interface(procinfo._class)) then
  1247. begin
  1248. DuplicateSym(hsym);
  1249. exit;
  1250. end;
  1251. end;
  1252. end;
  1253. inherited insert(sym);
  1254. end;
  1255. procedure tparasymtable.insertvardata(sym : tsymentry);
  1256. var
  1257. l,varalign : longint;
  1258. is_cdecl : boolean;
  1259. begin
  1260. if sym.typ<>varsym then
  1261. internalerror(200208253);
  1262. { retrieve cdecl status }
  1263. if defowner.deftype<>procdef then
  1264. internalerror(200208256);
  1265. is_cdecl:=(tprocdef(defowner).proccalloption in [pocall_cdecl,pocall_cppdecl]);
  1266. { here we need the size of a push instead of the
  1267. size of the data }
  1268. l:=tvarsym(sym).getpushsize(is_cdecl);
  1269. varalign:=size_2_align(l);
  1270. tvarsym(sym).varstate:=vs_assigned;
  1271. { we need the new datasize already aligned so we can't
  1272. use the align_address here }
  1273. tvarsym(sym).address:=datasize;
  1274. varalign:=used_align(varalign,dataalignment,dataalignment);
  1275. datasize:=align(tvarsym(sym).address+l,varalign);
  1276. end;
  1277. {****************************************************************************
  1278. TAbstractUnitSymtable
  1279. ****************************************************************************}
  1280. constructor tabstractunitsymtable.create(const n : string);
  1281. begin
  1282. inherited create(n);
  1283. symsearch.usehash;
  1284. {$ifdef GDB}
  1285. { reset GDB things }
  1286. prev_dbx_counter := dbx_counter;
  1287. dbx_counter := nil;
  1288. is_stab_written:=false;
  1289. dbx_count := -1;
  1290. {$endif GDB}
  1291. end;
  1292. procedure tabstractunitsymtable.insertvardata(sym : tsymentry);
  1293. var
  1294. l,varalign : longint;
  1295. storefilepos : tfileposinfo;
  1296. begin
  1297. if sym.typ<>varsym then
  1298. internalerror(200208252);
  1299. storefilepos:=aktfilepos;
  1300. aktfilepos:=tsym(sym).fileinfo;
  1301. if (vo_is_thread_var in tvarsym(sym).varoptions) then
  1302. l:=pointer_size
  1303. else
  1304. l:=tvarsym(sym).getvaluesize;
  1305. varalign:=size_2_align(l);
  1306. varalign:=used_align(varalign,aktalignment.varalignmin,aktalignment.varalignmax);
  1307. tvarsym(sym).address:=align(datasize,varalign);
  1308. { insert cut for smartlinking or alignment }
  1309. if (cs_create_smart in aktmoduleswitches) then
  1310. bssSegment.concat(Tai_cut.Create)
  1311. else if (tvarsym(sym).address<>datasize) then
  1312. bssSegment.concat(Tai_align.create(varalign));
  1313. datasize:=tvarsym(sym).address+l;
  1314. {$ifdef GDB}
  1315. if cs_debuginfo in aktmoduleswitches then
  1316. concatstabto(bsssegment);
  1317. {$endif GDB}
  1318. if (symtabletype=globalsymtable) or
  1319. (cs_create_smart in aktmoduleswitches) or
  1320. DLLSource or
  1321. (vo_is_exported in tvarsym(sym).varoptions) or
  1322. (vo_is_C_var in tvarsym(sym).varoptions) then
  1323. bssSegment.concat(Tai_datablock.Create_global(tvarsym(sym).mangledname,l))
  1324. else
  1325. bssSegment.concat(Tai_datablock.Create(tvarsym(sym).mangledname,l));
  1326. aktfilepos:=storefilepos;
  1327. end;
  1328. procedure tabstractunitsymtable.insertconstdata(sym : tsymentry);
  1329. var
  1330. storefilepos : tfileposinfo;
  1331. curconstsegment : taasmoutput;
  1332. address,l,varalign : longint;
  1333. begin
  1334. if sym.typ<>typedconstsym then
  1335. internalerror(200208254);
  1336. storefilepos:=aktfilepos;
  1337. aktfilepos:=tsym(sym).fileinfo;
  1338. if ttypedconstsym(sym).is_writable then
  1339. curconstsegment:=datasegment
  1340. else
  1341. curconstsegment:=consts;
  1342. l:=ttypedconstsym(sym).getsize;
  1343. varalign:=size_2_align(l);
  1344. varalign:=used_align(varalign,aktalignment.constalignmin,aktalignment.constalignmax);
  1345. address:=align(datasize,varalign);
  1346. { insert cut for smartlinking or alignment }
  1347. if (cs_create_smart in aktmoduleswitches) then
  1348. curconstSegment.concat(Tai_cut.Create)
  1349. else if (address<>datasize) then
  1350. curconstSegment.concat(Tai_align.create(varalign));
  1351. datasize:=address+l;
  1352. {$ifdef GDB}
  1353. if cs_debuginfo in aktmoduleswitches then
  1354. concatstabto(curconstsegment);
  1355. {$endif GDB}
  1356. if (symtabletype=globalsymtable) or
  1357. (cs_create_smart in aktmoduleswitches) or
  1358. DLLSource then
  1359. begin
  1360. curconstSegment.concat(Tai_symbol.Createdataname_global(
  1361. ttypedconstsym(sym).mangledname,ttypedconstsym(sym).getsize));
  1362. end
  1363. else
  1364. begin
  1365. curconstSegment.concat(Tai_symbol.Createdataname(
  1366. ttypedconstsym(sym).mangledname,ttypedconstsym(sym).getsize));
  1367. end;
  1368. aktfilepos:=storefilepos;
  1369. end;
  1370. {$ifdef GDB}
  1371. procedure tabstractunitsymtable.concattypestabto(asmlist : taasmoutput);
  1372. var prev_dbx_count : plongint;
  1373. begin
  1374. if is_stab_written then
  1375. exit;
  1376. if not assigned(name) then
  1377. name := stringdup('Main_program');
  1378. if (symtabletype = globalsymtable) and
  1379. (current_module.globalsymtable<>self) then
  1380. begin
  1381. unitid:=current_module.unitcount;
  1382. inc(current_module.unitcount);
  1383. end;
  1384. asmList.concat(tai_comment.Create(strpnew('Begin unit '+name^+' has index '+tostr(unitid))));
  1385. if cs_gdb_dbx in aktglobalswitches then
  1386. begin
  1387. if dbx_count_ok then
  1388. begin
  1389. asmList.concat(tai_comment.Create(strpnew('"repeated" unit '+name^
  1390. +' has index '+tostr(unitid)+' dbx count = '+tostr(dbx_count))));
  1391. asmList.concat(Tai_stabs.Create(strpnew('"'+name^+'",'
  1392. +tostr(N_EXCL)+',0,0,'+tostr(dbx_count))));
  1393. exit;
  1394. end
  1395. else if (current_module.globalsymtable<>self) then
  1396. begin
  1397. prev_dbx_count := dbx_counter;
  1398. dbx_counter := nil;
  1399. do_count_dbx:=false;
  1400. if (symtabletype = globalsymtable) and (unitid<>0) then
  1401. asmList.concat(Tai_stabs.Create(strpnew('"'+name^+'",'+tostr(N_BINCL)+',0,0,0')));
  1402. dbx_counter := @dbx_count;
  1403. dbx_count:=0;
  1404. do_count_dbx:=assigned(dbx_counter);
  1405. end;
  1406. end;
  1407. foreach({$ifdef FPCPROCVAR}@{$endif}concattypestab,asmlist);
  1408. if cs_gdb_dbx in aktglobalswitches then
  1409. begin
  1410. if (current_module.globalsymtable<>self) then
  1411. begin
  1412. dbx_counter := prev_dbx_count;
  1413. do_count_dbx:=false;
  1414. asmList.concat(tai_comment.Create(strpnew('End unit '+name^
  1415. +' has index '+tostr(unitid))));
  1416. asmList.concat(Tai_stabs.Create(strpnew('"'+name^+'",'
  1417. +tostr(N_EINCL)+',0,0,0')));
  1418. do_count_dbx:=assigned(dbx_counter);
  1419. dbx_count_ok := {true}false;
  1420. end;
  1421. end;
  1422. is_stab_written:=true;
  1423. end;
  1424. {$endif GDB}
  1425. {****************************************************************************
  1426. TStaticSymtable
  1427. ****************************************************************************}
  1428. constructor tstaticsymtable.create(const n : string);
  1429. begin
  1430. inherited create(n);
  1431. symtabletype:=staticsymtable;
  1432. end;
  1433. procedure tstaticsymtable.ppuload(ppufile:tcompilerppufile);
  1434. begin
  1435. aktstaticsymtable:=self;
  1436. next:=symtablestack;
  1437. symtablestack:=self;
  1438. inherited ppuload(ppufile);
  1439. { now we can deref the syms and defs }
  1440. deref;
  1441. { restore symtablestack }
  1442. symtablestack:=next;
  1443. end;
  1444. procedure tstaticsymtable.ppuwrite(ppufile:tcompilerppufile);
  1445. begin
  1446. aktstaticsymtable:=self;
  1447. inherited ppuwrite(ppufile);
  1448. end;
  1449. procedure tstaticsymtable.load_references(ppufile:tcompilerppufile;locals:boolean);
  1450. begin
  1451. aktstaticsymtable:=self;
  1452. inherited load_references(ppufile,locals);
  1453. end;
  1454. procedure tstaticsymtable.write_references(ppufile:tcompilerppufile;locals:boolean);
  1455. begin
  1456. aktstaticsymtable:=self;
  1457. inherited write_references(ppufile,locals);
  1458. end;
  1459. procedure tstaticsymtable.insert(sym:tsymentry);
  1460. var
  1461. hsym : tsym;
  1462. begin
  1463. { also check the global symtable }
  1464. if assigned(next) and
  1465. (next.unitid=0) then
  1466. begin
  1467. hsym:=tsym(next.search(sym.name));
  1468. if assigned(hsym) then
  1469. begin
  1470. DuplicateSym(hsym);
  1471. exit;
  1472. end;
  1473. end;
  1474. inherited insert(sym);
  1475. end;
  1476. procedure tstaticsymtable.insertvardata(sym : tsymentry);
  1477. begin
  1478. inherited insertvardata(sym);
  1479. { enable unitialized warning for local symbols }
  1480. if sym.typ=varsym then
  1481. tvarsym(sym).varstate:=vs_declared;
  1482. end;
  1483. {****************************************************************************
  1484. TGlobalSymtable
  1485. ****************************************************************************}
  1486. constructor tglobalsymtable.create(const n : string);
  1487. begin
  1488. inherited create(n);
  1489. symtabletype:=globalsymtable;
  1490. unitid:=0;
  1491. unitsym:=nil;
  1492. {$ifdef GDB}
  1493. if cs_gdb_dbx in aktglobalswitches then
  1494. begin
  1495. dbx_count := 0;
  1496. unittypecount:=1;
  1497. pglobaltypecount := @unittypecount;
  1498. {unitid:=current_module.unitcount;}
  1499. debugList.concat(tai_comment.Create(strpnew('Global '+name^+' has index '+tostr(unitid))));
  1500. debugList.concat(Tai_stabs.Create(strpnew('"'+name^+'",'+tostr(N_BINCL)+',0,0,0')));
  1501. {inc(current_module.unitcount);}
  1502. dbx_count_ok:=false;
  1503. dbx_counter:=@dbx_count;
  1504. do_count_dbx:=true;
  1505. end;
  1506. {$endif GDB}
  1507. end;
  1508. destructor tglobalsymtable.destroy;
  1509. var
  1510. pus : tunitsym;
  1511. begin
  1512. pus:=unitsym;
  1513. while assigned(pus) do
  1514. begin
  1515. unitsym:=pus.prevsym;
  1516. pus.prevsym:=nil;
  1517. pus.unitsymtable:=nil;
  1518. pus:=unitsym;
  1519. end;
  1520. inherited destroy;
  1521. end;
  1522. procedure tglobalsymtable.ppuload(ppufile:tcompilerppufile);
  1523. begin
  1524. {$ifdef GDB}
  1525. if cs_gdb_dbx in aktglobalswitches then
  1526. begin
  1527. UnitTypeCount:=1;
  1528. PglobalTypeCount:=@UnitTypeCount;
  1529. end;
  1530. {$endif GDB}
  1531. symtablelevel:=0;
  1532. {$ifndef NEWMAP}
  1533. current_module.map^[0]:=self;
  1534. {$else NEWMAP}
  1535. current_module.globalsymtable:=self;
  1536. {$endif NEWMAP}
  1537. next:=symtablestack;
  1538. symtablestack:=self;
  1539. inherited ppuload(ppufile);
  1540. { now we can deref the syms and defs }
  1541. deref;
  1542. { restore symtablestack }
  1543. symtablestack:=next;
  1544. {$ifdef NEWMAP}
  1545. { necessary for dependencies }
  1546. current_module.globalsymtable:=nil;
  1547. {$endif NEWMAP}
  1548. end;
  1549. procedure tglobalsymtable.ppuwrite(ppufile:tcompilerppufile);
  1550. begin
  1551. { write the symtable entries }
  1552. inherited ppuwrite(ppufile);
  1553. { write dbx count }
  1554. {$ifdef GDB}
  1555. if cs_gdb_dbx in aktglobalswitches then
  1556. begin
  1557. {$IfDef EXTDEBUG}
  1558. writeln('Writing dbx_count ',dbx_count,' in unit ',name^,'.ppu');
  1559. {$ENDIF EXTDEBUG}
  1560. ppufile.do_crc:=false;
  1561. ppufile.putlongint(dbx_count);
  1562. ppufile.writeentry(ibdbxcount);
  1563. ppufile.do_crc:=true;
  1564. end;
  1565. {$endif GDB}
  1566. end;
  1567. procedure tglobalsymtable.insert(sym:tsymentry);
  1568. var
  1569. hsym : tsym;
  1570. begin
  1571. { also check the global symtable }
  1572. if assigned(next) and
  1573. (next.unitid=0) then
  1574. begin
  1575. hsym:=tsym(next.search(sym.name));
  1576. if assigned(hsym) then
  1577. begin
  1578. DuplicateSym(hsym);
  1579. exit;
  1580. end;
  1581. end;
  1582. hsym:=tsym(search(sym.name));
  1583. if assigned(hsym) then
  1584. begin
  1585. { Delphi you can have a symbol with the same name as the
  1586. unit, the unit can then not be accessed anymore using
  1587. <unit>.<id>, so we can hide the symbol }
  1588. if (m_duplicate_names in aktmodeswitches) and
  1589. (hsym.typ=symconst.unitsym) then
  1590. hsym.owner.rename(hsym.name,'hidden'+hsym.name)
  1591. else
  1592. begin
  1593. DuplicateSym(hsym);
  1594. exit;
  1595. end;
  1596. end;
  1597. inherited insert(sym);
  1598. end;
  1599. procedure tglobalsymtable.insertvardata(sym : tsymentry);
  1600. begin
  1601. inherited insertvardata(sym);
  1602. { this symbol can't be loaded to a register }
  1603. if sym.typ=varsym then
  1604. begin
  1605. exclude(tvarsym(sym).varoptions,vo_regable);
  1606. exclude(tvarsym(sym).varoptions,vo_fpuregable);
  1607. end;
  1608. end;
  1609. {$ifdef GDB}
  1610. function tglobalsymtable.getnewtypecount : word;
  1611. begin
  1612. if not (cs_gdb_dbx in aktglobalswitches) then
  1613. getnewtypecount:=inherited getnewtypecount
  1614. else
  1615. begin
  1616. getnewtypecount:=unittypecount;
  1617. inc(unittypecount);
  1618. end;
  1619. end;
  1620. {$endif}
  1621. {****************************************************************************
  1622. TWITHSYMTABLE
  1623. ****************************************************************************}
  1624. constructor twithsymtable.create(aowner:tdef;asymsearch:TDictionary);
  1625. begin
  1626. inherited create('');
  1627. symtabletype:=withsymtable;
  1628. direct_with:=false;
  1629. withnode:=nil;
  1630. withrefnode:=nil;
  1631. { we don't need the symsearch }
  1632. symsearch.free;
  1633. { set the defaults }
  1634. symsearch:=asymsearch;
  1635. defowner:=aowner;
  1636. end;
  1637. destructor twithsymtable.destroy;
  1638. begin
  1639. symsearch:=nil;
  1640. inherited destroy;
  1641. end;
  1642. procedure twithsymtable.clear;
  1643. begin
  1644. { remove no entry from a withsymtable as it is only a pointer to the
  1645. recorddef or objectdef symtable }
  1646. end;
  1647. {****************************************************************************
  1648. TSTT_ExceptionSymtable
  1649. ****************************************************************************}
  1650. constructor tstt_exceptsymtable.create;
  1651. begin
  1652. inherited create('');
  1653. symtabletype:=stt_exceptsymtable;
  1654. end;
  1655. {*****************************************************************************
  1656. Helper Routines
  1657. *****************************************************************************}
  1658. function findunitsymtable(st:tsymtable):tsymtable;
  1659. begin
  1660. findunitsymtable:=nil;
  1661. repeat
  1662. if not assigned(st) then
  1663. internalerror(5566561);
  1664. case st.symtabletype of
  1665. localsymtable,
  1666. parasymtable,
  1667. staticsymtable :
  1668. exit;
  1669. globalsymtable :
  1670. begin
  1671. findunitsymtable:=st;
  1672. exit;
  1673. end;
  1674. objectsymtable :
  1675. st:=st.defowner.owner;
  1676. recordsymtable :
  1677. begin
  1678. { don't continue when the current
  1679. symtable is used for variant records }
  1680. if trecorddef(st.defowner).isunion then
  1681. begin
  1682. findunitsymtable:=nil;
  1683. exit;
  1684. end
  1685. else
  1686. st:=st.defowner.owner;
  1687. end;
  1688. else
  1689. internalerror(5566562);
  1690. end;
  1691. until false;
  1692. end;
  1693. procedure duplicatesym(sym:tsym);
  1694. var
  1695. st : tsymtable;
  1696. begin
  1697. Message1(sym_e_duplicate_id,sym.realname);
  1698. st:=findunitsymtable(sym.owner);
  1699. with sym.fileinfo do
  1700. begin
  1701. if assigned(st) and (st.unitid<>0) then
  1702. Message2(sym_h_duplicate_id_where,'unit '+st.name^,tostr(line))
  1703. else
  1704. Message2(sym_h_duplicate_id_where,current_module.sourcefiles.get_file_name(fileindex),tostr(line));
  1705. end;
  1706. end;
  1707. {*****************************************************************************
  1708. Search
  1709. *****************************************************************************}
  1710. function searchsym(const s : stringid;var srsym:tsym;var srsymtable:tsymtable):boolean;
  1711. var
  1712. speedvalue : cardinal;
  1713. begin
  1714. speedvalue:=getspeedvalue(s);
  1715. srsymtable:=symtablestack;
  1716. while assigned(srsymtable) do
  1717. begin
  1718. srsym:=tsym(srsymtable.speedsearch(s,speedvalue));
  1719. if assigned(srsym) and
  1720. tstoredsym(srsym).is_visible_for_proc(aktprocdef) then
  1721. begin
  1722. searchsym:=true;
  1723. exit;
  1724. end
  1725. else
  1726. srsymtable:=srsymtable.next;
  1727. end;
  1728. searchsym:=false;
  1729. end;
  1730. function searchsymonlyin(p : tsymtable;const s : stringid):tsym;
  1731. var
  1732. srsym : tsym;
  1733. begin
  1734. { the caller have to take care if srsym=nil }
  1735. if assigned(p) then
  1736. begin
  1737. srsym:=tsym(p.search(s));
  1738. if assigned(srsym) then
  1739. begin
  1740. searchsymonlyin:=srsym;
  1741. exit;
  1742. end;
  1743. { also check in the local symtbale if it exists }
  1744. if (p=tsymtable(current_module.globalsymtable)) then
  1745. begin
  1746. srsym:=tsym(current_module.localsymtable.search(s));
  1747. if assigned(srsym) then
  1748. begin
  1749. searchsymonlyin:=srsym;
  1750. exit;
  1751. end;
  1752. end
  1753. end;
  1754. searchsymonlyin:=nil;
  1755. end;
  1756. function searchsym_in_class(classh:tobjectdef;const s : stringid):tsym;
  1757. var
  1758. speedvalue : cardinal;
  1759. topclassh : tobjectdef;
  1760. sym : tsym;
  1761. begin
  1762. speedvalue:=getspeedvalue(s);
  1763. { when the class passed is defined in this unit we
  1764. need to use the scope of that class. This is a trick
  1765. that can be used to access protected members in other
  1766. units. At least kylix supports it this way (PFV) }
  1767. if (classh.owner.symtabletype in [globalsymtable,staticsymtable]) and
  1768. (classh.owner.unitid=0) then
  1769. topclassh:=classh
  1770. else
  1771. topclassh:=nil;
  1772. sym:=nil;
  1773. while assigned(classh) do
  1774. begin
  1775. sym:=tsym(classh.symtable.speedsearch(s,speedvalue));
  1776. if assigned(sym) then
  1777. begin
  1778. if assigned(topclassh) then
  1779. begin
  1780. if tstoredsym(sym).is_visible_for_object(topclassh) then
  1781. break;
  1782. end
  1783. else
  1784. begin
  1785. if tstoredsym(sym).is_visible_for_proc(aktprocdef) then
  1786. break;
  1787. end;
  1788. end;
  1789. classh:=classh.childof;
  1790. end;
  1791. searchsym_in_class:=sym;
  1792. end;
  1793. function searchsystype(const s: stringid; var srsym: ttypesym): boolean;
  1794. var
  1795. symowner: tsymtable;
  1796. begin
  1797. if not(cs_compilesystem in aktmoduleswitches) then
  1798. srsym := ttypesym(searchsymonlyin(systemunit,s))
  1799. else
  1800. searchsym(s,tsym(srsym),symowner);
  1801. searchsystype :=
  1802. assigned(srsym) and
  1803. (srsym.typ = typesym);
  1804. end;
  1805. function searchsysvar(const s: stringid; var srsym: tvarsym; var symowner: tsymtable): boolean;
  1806. begin
  1807. if not(cs_compilesystem in aktmoduleswitches) then
  1808. begin
  1809. srsym := tvarsym(searchsymonlyin(systemunit,s));
  1810. symowner := systemunit;
  1811. end
  1812. else
  1813. searchsym(s,tsym(srsym),symowner);
  1814. searchsysvar :=
  1815. assigned(srsym) and
  1816. (srsym.typ = varsym);
  1817. end;
  1818. function search_class_member(pd : tobjectdef;const s : string):tsym;
  1819. { searches n in symtable of pd and all anchestors }
  1820. var
  1821. speedvalue : cardinal;
  1822. srsym : tsym;
  1823. begin
  1824. speedvalue:=getspeedvalue(s);
  1825. while assigned(pd) do
  1826. begin
  1827. srsym:=tsym(pd.symtable.speedsearch(s,speedvalue));
  1828. if assigned(srsym) then
  1829. begin
  1830. search_class_member:=srsym;
  1831. exit;
  1832. end;
  1833. pd:=pd.childof;
  1834. end;
  1835. search_class_member:=nil;
  1836. end;
  1837. {*****************************************************************************
  1838. Definition Helpers
  1839. *****************************************************************************}
  1840. procedure globaldef(const s : string;var t:ttype);
  1841. var st : string;
  1842. symt : tsymtable;
  1843. srsym : tsym;
  1844. srsymtable : tsymtable;
  1845. begin
  1846. srsym := nil;
  1847. if pos('.',s) > 0 then
  1848. begin
  1849. st := copy(s,1,pos('.',s)-1);
  1850. searchsym(st,srsym,srsymtable);
  1851. st := copy(s,pos('.',s)+1,255);
  1852. if assigned(srsym) then
  1853. begin
  1854. if srsym.typ = unitsym then
  1855. begin
  1856. symt := tunitsym(srsym).unitsymtable;
  1857. srsym := tsym(symt.search(st));
  1858. end else srsym := nil;
  1859. end;
  1860. end else st := s;
  1861. if srsym = nil then
  1862. searchsym(st,srsym,srsymtable);
  1863. if srsym = nil then
  1864. srsym:=searchsymonlyin(systemunit,st);
  1865. if (not assigned(srsym)) or
  1866. (srsym.typ<>typesym) then
  1867. begin
  1868. Message(type_e_type_id_expected);
  1869. t:=generrortype;
  1870. exit;
  1871. end;
  1872. t := ttypesym(srsym).restype;
  1873. end;
  1874. {****************************************************************************
  1875. Object Helpers
  1876. ****************************************************************************}
  1877. var
  1878. _defaultprop : tpropertysym;
  1879. procedure tstoredsymtable.testfordefaultproperty(p : TNamedIndexItem;arg:pointer);
  1880. begin
  1881. if (tsym(p).typ=propertysym) and
  1882. (ppo_defaultproperty in tpropertysym(p).propoptions) then
  1883. _defaultprop:=tpropertysym(p);
  1884. end;
  1885. function search_default_property(pd : tobjectdef) : tpropertysym;
  1886. { returns the default property of a class, searches also anchestors }
  1887. begin
  1888. _defaultprop:=nil;
  1889. while assigned(pd) do
  1890. begin
  1891. pd.symtable.foreach({$ifdef FPCPROCVAR}@{$endif}tstoredsymtable(pd.symtable).testfordefaultproperty,nil);
  1892. if assigned(_defaultprop) then
  1893. break;
  1894. pd:=pd.childof;
  1895. end;
  1896. search_default_property:=_defaultprop;
  1897. end;
  1898. {$ifdef UNITALIASES}
  1899. {****************************************************************************
  1900. TUNIT_ALIAS
  1901. ****************************************************************************}
  1902. constructor tunit_alias.create(const n:string);
  1903. var
  1904. i : longint;
  1905. begin
  1906. i:=pos('=',n);
  1907. if i=0 then
  1908. fail;
  1909. inherited createname(Copy(n,1,i-1));
  1910. newname:=stringdup(Copy(n,i+1,255));
  1911. end;
  1912. destructor tunit_alias.destroy;
  1913. begin
  1914. stringdispose(newname);
  1915. inherited destroy;
  1916. end;
  1917. procedure addunitalias(const n:string);
  1918. begin
  1919. unitaliases^.insert(tunit_alias,init(Upper(n))));
  1920. end;
  1921. function getunitalias(const n:string):string;
  1922. var
  1923. p : punit_alias;
  1924. begin
  1925. p:=punit_alias(unitaliases^.search(Upper(n)));
  1926. if assigned(p) then
  1927. getunitalias:=punit_alias(p).newname^
  1928. else
  1929. getunitalias:=n;
  1930. end;
  1931. {$endif UNITALIASES}
  1932. {****************************************************************************
  1933. Symtable Stack
  1934. ****************************************************************************}
  1935. procedure dellexlevel;
  1936. var
  1937. p : tsymtable;
  1938. begin
  1939. p:=symtablestack;
  1940. symtablestack:=p.next;
  1941. { symbol tables of unit interfaces are never disposed }
  1942. { this is handle by the unit unitm }
  1943. if not(p.symtabletype in [globalsymtable,stt_exceptsymtable]) then
  1944. p.free;
  1945. end;
  1946. procedure RestoreUnitSyms;
  1947. var
  1948. p : tsymtable;
  1949. begin
  1950. p:=symtablestack;
  1951. while assigned(p) do
  1952. begin
  1953. if (p.symtabletype=globalsymtable) and
  1954. assigned(tglobalsymtable(p).unitsym) and
  1955. ((tglobalsymtable(p).unitsym.owner=current_module.globalsymtable) or
  1956. (tglobalsymtable(p).unitsym.owner=current_module.localsymtable)) then
  1957. tglobalsymtable(p).unitsym.restoreunitsym;
  1958. p:=p.next;
  1959. end;
  1960. end;
  1961. {$ifdef DEBUG}
  1962. procedure test_symtablestack;
  1963. var
  1964. p : tsymtable;
  1965. i : longint;
  1966. begin
  1967. p:=symtablestack;
  1968. i:=0;
  1969. while assigned(p) do
  1970. begin
  1971. inc(i);
  1972. p:=p.next;
  1973. if i>500 then
  1974. Message(sym_f_internal_error_in_symtablestack);
  1975. end;
  1976. end;
  1977. procedure list_symtablestack;
  1978. var
  1979. p : tsymtable;
  1980. i : longint;
  1981. begin
  1982. p:=symtablestack;
  1983. i:=0;
  1984. while assigned(p) do
  1985. begin
  1986. inc(i);
  1987. writeln(i,' ',p.name^);
  1988. p:=p.next;
  1989. if i>500 then
  1990. Message(sym_f_internal_error_in_symtablestack);
  1991. end;
  1992. end;
  1993. {$endif DEBUG}
  1994. {****************************************************************************
  1995. Init/Done Symtable
  1996. ****************************************************************************}
  1997. procedure InitSymtable;
  1998. var
  1999. token : ttoken;
  2000. begin
  2001. { Reset symbolstack }
  2002. registerdef:=false;
  2003. read_member:=false;
  2004. symtablestack:=nil;
  2005. systemunit:=nil;
  2006. {$ifdef GDB}
  2007. firstglobaldef:=nil;
  2008. lastglobaldef:=nil;
  2009. globaltypecount:=1;
  2010. pglobaltypecount:=@globaltypecount;
  2011. {$endif GDB}
  2012. { create error syms and def }
  2013. generrorsym:=terrorsym.create;
  2014. generrortype.setdef(terrordef.create);
  2015. {$ifdef UNITALIASES}
  2016. { unit aliases }
  2017. unitaliases:=tdictionary.create;
  2018. {$endif}
  2019. for token:=first_overloaded to last_overloaded do
  2020. overloaded_operators[token]:=nil;
  2021. end;
  2022. procedure DoneSymtable;
  2023. begin
  2024. generrorsym.free;
  2025. generrortype.def.free;
  2026. {$ifdef UNITALIASES}
  2027. unitaliases.free;
  2028. {$endif}
  2029. end;
  2030. end.
  2031. {
  2032. $Log$
  2033. Revision 1.74 2002-10-06 19:41:31 peter
  2034. * Add finalization of typed consts
  2035. * Finalization of globals in the main program
  2036. Revision 1.73 2002/10/05 12:43:29 carl
  2037. * fixes for Delphi 6 compilation
  2038. (warning : Some features do not work under Delphi)
  2039. Revision 1.72 2002/09/09 19:41:46 peter
  2040. * real fix internalerror for dup ids in union sym
  2041. Revision 1.71 2002/09/09 17:34:16 peter
  2042. * tdicationary.replace added to replace and item in a dictionary. This
  2043. is only allowed for the same name
  2044. * varsyms are inserted in symtable before the types are parsed. This
  2045. fixes the long standing "var longint : longint" bug
  2046. - consume_idlist and idstringlist removed. The loops are inserted
  2047. at the callers place and uses the symtable for duplicate id checking
  2048. Revision 1.70 2002/09/05 19:29:45 peter
  2049. * memdebug enhancements
  2050. Revision 1.69 2002/08/25 19:25:21 peter
  2051. * sym.insert_in_data removed
  2052. * symtable.insertvardata/insertconstdata added
  2053. * removed insert_in_data call from symtable.insert, it needs to be
  2054. called separatly. This allows to deref the address calculation
  2055. * procedures now calculate the parast addresses after the procedure
  2056. directives are parsed. This fixes the cdecl parast problem
  2057. * push_addr_param has an extra argument that specifies if cdecl is used
  2058. or not
  2059. Revision 1.68 2002/08/18 20:06:27 peter
  2060. * inlining is now also allowed in interface
  2061. * renamed write/load to ppuwrite/ppuload
  2062. * tnode storing in ppu
  2063. * nld,ncon,nbas are already updated for storing in ppu
  2064. Revision 1.67 2002/08/17 09:23:43 florian
  2065. * first part of procinfo rewrite
  2066. Revision 1.66 2002/08/11 13:24:15 peter
  2067. * saving of asmsymbols in ppu supported
  2068. * asmsymbollist global is removed and moved into a new class
  2069. tasmlibrarydata that will hold the info of a .a file which
  2070. corresponds with a single module. Added librarydata to tmodule
  2071. to keep the library info stored for the module. In the future the
  2072. objectfiles will also be stored to the tasmlibrarydata class
  2073. * all getlabel/newasmsymbol and friends are moved to the new class
  2074. Revision 1.65 2002/07/23 09:51:27 daniel
  2075. * Tried to make Tprocsym.defs protected. I didn't succeed but the cleanups
  2076. are worth comitting.
  2077. Revision 1.64 2002/07/16 15:34:21 florian
  2078. * exit is now a syssym instead of a keyword
  2079. Revision 1.63 2002/07/15 19:44:53 florian
  2080. * fixed crash with default parameters and stdcall calling convention
  2081. Revision 1.62 2002/07/01 18:46:28 peter
  2082. * internal linker
  2083. * reorganized aasm layer
  2084. Revision 1.61 2002/05/18 13:34:19 peter
  2085. * readded missing revisions
  2086. Revision 1.60 2002/05/16 19:46:45 carl
  2087. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  2088. + try to fix temp allocation (still in ifdef)
  2089. + generic constructor calls
  2090. + start of tassembler / tmodulebase class cleanup
  2091. Revision 1.58 2002/05/12 16:53:15 peter
  2092. * moved entry and exitcode to ncgutil and cgobj
  2093. * foreach gets extra argument for passing local data to the
  2094. iterator function
  2095. * -CR checks also class typecasts at runtime by changing them
  2096. into as
  2097. * fixed compiler to cycle with the -CR option
  2098. * fixed stabs with elf writer, finally the global variables can
  2099. be watched
  2100. * removed a lot of routines from cga unit and replaced them by
  2101. calls to cgobj
  2102. * u32bit-s32bit updates for and,or,xor nodes. When one element is
  2103. u32bit then the other is typecasted also to u32bit without giving
  2104. a rangecheck warning/error.
  2105. * fixed pascal calling method with reversing also the high tree in
  2106. the parast, detected by tcalcst3 test
  2107. Revision 1.57 2002/04/04 19:06:05 peter
  2108. * removed unused units
  2109. * use tlocation.size in cg.a_*loc*() routines
  2110. Revision 1.56 2002/03/04 19:10:11 peter
  2111. * removed compiler warnings
  2112. Revision 1.55 2002/02/03 09:30:07 peter
  2113. * more fixes for protected handling
  2114. Revision 1.54 2002/01/29 21:30:25 peter
  2115. * allow also dup id in delphi mode in interfaces
  2116. Revision 1.53 2002/01/29 19:46:00 peter
  2117. * fixed recordsymtable.insert_in() for inserting variant record fields
  2118. to not used symtable.insert() because that also updates alignmentinfo
  2119. which was already set
  2120. Revision 1.52 2002/01/24 18:25:50 peter
  2121. * implicit result variable generation for assembler routines
  2122. * removed m_tp modeswitch, use m_tp7 or not(m_fpc) instead
  2123. }