symdef.inc 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864
  1. {
  2. $Id$
  3. Copyright (c) 1993-98 by Florian Klaempfl, Pierre Muller
  4. Symbol table implementation for the definitions
  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. {****************************************************************************
  19. TDEF (base class for definitions)
  20. ****************************************************************************}
  21. const
  22. { if you change one of the following contants, }
  23. { you have also to change the typinfo unit }
  24. { and the rtl/[i386,template/rttip.inc files }
  25. tkUnknown = 0;
  26. tkInteger = 1;
  27. tkChar = 2;
  28. tkEnumeration = 3;
  29. tkFloat = 4;
  30. tkSet = 5;
  31. tkMethod = 6;
  32. tkSString = 7;
  33. tkString = tkSString;
  34. tkLString = 8;
  35. tkAString = 9;
  36. tkWString = 10;
  37. tkVariant = 11;
  38. tkArray = 12;
  39. tkRecord = 13;
  40. tkInterface = 14;
  41. tkClass = 15;
  42. tkObject = 16;
  43. tkWChar = 17;
  44. tkBool = 18;
  45. otSByte = 0;
  46. otUByte = 1;
  47. otSWord = 2;
  48. otUWord = 3;
  49. otSLong = 4;
  50. otULong = 5;
  51. ftSingle = 0;
  52. ftDouble = 1;
  53. ftExtended = 2;
  54. ftComp = 3;
  55. ftCurr = 4;
  56. ftFixed16 = 5;
  57. ftFixed32 = 6;
  58. constructor tdef.init;
  59. begin
  60. {$ifndef OLDPPU}
  61. inherited init;
  62. {$else}
  63. indexnb := 0;
  64. next := nil;
  65. {$endif}
  66. deftype:=abstractdef;
  67. owner := nil;
  68. sym := nil;
  69. savesize := 0;
  70. if registerdef then
  71. symtablestack^.registerdef(@self);
  72. has_rtti:=false;
  73. has_inittable:=false;
  74. {$ifdef GDB}
  75. is_def_stab_written := false;
  76. globalnb := 0;
  77. {$endif GDB}
  78. if assigned(lastglobaldef) then
  79. begin
  80. lastglobaldef^.nextglobal := @self;
  81. previousglobal:=lastglobaldef;
  82. end
  83. else
  84. begin
  85. firstglobaldef := @self;
  86. previousglobal := nil;
  87. end;
  88. lastglobaldef := @self;
  89. nextglobal := nil;
  90. end;
  91. constructor tdef.load;
  92. begin
  93. deftype:=abstractdef;
  94. next := nil;
  95. owner := nil;
  96. has_rtti:=false;
  97. has_inittable:=false;
  98. {$ifdef GDB}
  99. is_def_stab_written := false;
  100. globalnb := 0;
  101. {$endif GDB}
  102. if assigned(lastglobaldef) then
  103. begin
  104. lastglobaldef^.nextglobal := @self;
  105. previousglobal:=lastglobaldef;
  106. end
  107. else
  108. begin
  109. firstglobaldef := @self;
  110. previousglobal:=nil;
  111. end;
  112. lastglobaldef := @self;
  113. nextglobal := nil;
  114. { load }
  115. {$ifndef OLDPPU}
  116. indexnr:=readword;
  117. sym:=ptypesym(readsymref);
  118. {$else}
  119. indexnb := 0;
  120. sym:=nil;
  121. {$endif}
  122. end;
  123. destructor tdef.done;
  124. begin
  125. { first element ? }
  126. if not(assigned(previousglobal)) then
  127. begin
  128. firstglobaldef := nextglobal;
  129. if assigned(firstglobaldef) then
  130. firstglobaldef^.previousglobal:=nil;
  131. end
  132. else
  133. begin
  134. { remove reference in the element before }
  135. previousglobal^.nextglobal:=nextglobal;
  136. end;
  137. { last element ? }
  138. if not(assigned(nextglobal)) then
  139. begin
  140. lastglobaldef := previousglobal;
  141. if assigned(lastglobaldef) then
  142. lastglobaldef^.nextglobal:=nil;
  143. end
  144. else
  145. nextglobal^.previousglobal:=previousglobal;
  146. previousglobal:=nil;
  147. nextglobal:=nil;
  148. end;
  149. { used for enumdef because the symbols are
  150. inserted in the owner symtable }
  151. procedure tdef.correct_owner_symtable;
  152. var
  153. st : psymtable;
  154. begin
  155. if assigned(owner) and
  156. (owner^.symtabletype in [recordsymtable,objectsymtable]) then
  157. begin
  158. {$ifndef OLDPPU}
  159. owner^.defindex^.delete(@self);
  160. {$else}
  161. { no other definition
  162. has been inserted !! (PM) }
  163. owner^.rootdef:=next;
  164. {$endif}
  165. st:=owner;
  166. while (st^.symtabletype in [recordsymtable,objectsymtable]) do
  167. st:=st^.next;
  168. st^.registerdef(@self);
  169. end;
  170. end;
  171. function tdef.typename:string;
  172. begin
  173. if assigned(sym) then
  174. typename:=Upper(sym^.name)
  175. else
  176. typename:='unknown';
  177. end;
  178. function tdef.is_in_current : boolean;
  179. var
  180. p : psymtable;
  181. begin
  182. p:=owner;
  183. is_in_current:=false;
  184. while assigned(p) do
  185. begin
  186. if (p=current_module^.globalsymtable) or (p=current_module^.localsymtable)
  187. or (p^.symtabletype in [globalsymtable,staticsymtable]) then
  188. begin
  189. is_in_current:=true;
  190. exit;
  191. end
  192. else if p^.symtabletype=objectsymtable then
  193. begin
  194. if assigned(p^.defowner) then
  195. p:=pobjectdef(p^.defowner)^.owner
  196. else
  197. exit;
  198. end
  199. else
  200. exit;
  201. end;
  202. end;
  203. procedure tdef.write;
  204. begin
  205. {$ifndef OLDPPU}
  206. writeword(indexnr);
  207. writesymref(sym);
  208. {$endif}
  209. {$ifdef GDB}
  210. if globalnb = 0 then
  211. begin
  212. if assigned(owner) then
  213. globalnb := owner^.getnewtypecount
  214. else
  215. begin
  216. globalnb := PGlobalTypeCount^;
  217. Inc(PGlobalTypeCount^);
  218. end;
  219. end;
  220. {$endif GDB}
  221. end;
  222. function tdef.size : longint;
  223. begin
  224. size:=savesize;
  225. end;
  226. {$ifdef GDB}
  227. procedure tdef.set_globalnb;
  228. begin
  229. globalnb :=PGlobalTypeCount^;
  230. inc(PglobalTypeCount^);
  231. end;
  232. function tdef.stabstring : pchar;
  233. begin
  234. stabstring := strpnew('t'+numberstring+';');
  235. end;
  236. function tdef.numberstring : string;
  237. var table : psymtable;
  238. begin
  239. {formal def have no type !}
  240. if deftype = formaldef then
  241. begin
  242. numberstring := voiddef^.numberstring;
  243. exit;
  244. end;
  245. if (not assigned(sym)) or (not sym^.isusedinstab) then
  246. begin
  247. {set even if debuglist is not defined}
  248. if assigned(sym) then
  249. sym^.isusedinstab := true;
  250. if assigned(debuglist) and not is_def_stab_written then
  251. concatstabto(debuglist);
  252. end;
  253. if not (cs_gdb_dbx in aktglobalswitches) then
  254. begin
  255. if globalnb = 0 then
  256. set_globalnb;
  257. numberstring := tostr(globalnb);
  258. end
  259. else
  260. begin
  261. if globalnb = 0 then
  262. begin
  263. if assigned(owner) then
  264. globalnb := owner^.getnewtypecount
  265. else
  266. begin
  267. globalnb := PGlobalTypeCount^;
  268. Inc(PGlobalTypeCount^);
  269. end;
  270. end;
  271. if assigned(sym) then
  272. begin
  273. table := sym^.owner;
  274. if table^.unitid > 0 then
  275. numberstring := '('+tostr(table^.unitid)+','
  276. +tostr(sym^.definition^.globalnb)+')'
  277. else
  278. numberstring := tostr(globalnb);
  279. exit;
  280. end;
  281. numberstring := tostr(globalnb);
  282. end;
  283. end;
  284. function tdef.allstabstring : pchar;
  285. var stabchar : string[2];
  286. ss,st : pchar;
  287. sname : string;
  288. sym_line_no : longint;
  289. begin
  290. ss := stabstring;
  291. getmem(st,strlen(ss)+512);
  292. stabchar := 't';
  293. if deftype in tagtypes then
  294. stabchar := 'Tt';
  295. if assigned(sym) then
  296. begin
  297. sname := sym^.name;
  298. sym_line_no:=sym^.fileinfo.line;
  299. end
  300. else
  301. begin
  302. sname := ' ';
  303. sym_line_no:=0;
  304. end;
  305. strpcopy(st,'"'+sname+':'+stabchar+numberstring+'=');
  306. strpcopy(strecopy(strend(st),ss),'",'+tostr(N_LSYM)+',0,'+tostr(sym_line_no)+',0');
  307. allstabstring := strnew(st);
  308. freemem(st,strlen(ss)+512);
  309. strdispose(ss);
  310. end;
  311. procedure tdef.concatstabto(asmlist : paasmoutput);
  312. var stab_str : pchar;
  313. begin
  314. if ((sym = nil) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches))
  315. and not is_def_stab_written then
  316. begin
  317. If cs_gdb_dbx in aktglobalswitches then
  318. begin
  319. { otherwise you get two of each def }
  320. If assigned(sym) then
  321. begin
  322. if sym^.typ=typesym then
  323. sym^.isusedinstab:=true;
  324. if (sym^.owner = nil) or
  325. ((sym^.owner^.symtabletype = unitsymtable) and
  326. punitsymtable(sym^.owner)^.dbx_count_ok) then
  327. begin
  328. {with DBX we get the definition from the other objects }
  329. is_def_stab_written := true;
  330. exit;
  331. end;
  332. end;
  333. end;
  334. { to avoid infinite loops }
  335. is_def_stab_written := true;
  336. stab_str := allstabstring;
  337. if asmlist = debuglist then do_count_dbx := true;
  338. { count_dbx(stab_str); moved to GDB.PAS}
  339. asmlist^.concat(new(pai_stabs,init(stab_str)));
  340. end;
  341. end;
  342. {$endif GDB}
  343. procedure tdef.deref;
  344. begin
  345. end;
  346. procedure tdef.symderef;
  347. begin
  348. resolvesym(psym(sym));
  349. end;
  350. { rtti generation }
  351. procedure tdef.generate_rtti;
  352. begin
  353. has_rtti:=true;
  354. getlabel(rtti_label);
  355. write_child_rtti_data;
  356. rttilist^.concat(new(pai_label,init(rtti_label)));
  357. write_rtti_data;
  358. end;
  359. function tdef.get_rtti_label : string;
  360. begin
  361. if not(has_rtti) then
  362. generate_rtti;
  363. get_rtti_label:=lab2str(rtti_label);
  364. end;
  365. { init table handling }
  366. function tdef.needs_inittable : boolean;
  367. begin
  368. needs_inittable:=false;
  369. end;
  370. procedure tdef.generate_inittable;
  371. begin
  372. has_inittable:=true;
  373. getlabel(inittable_label);
  374. write_child_init_data;
  375. rttilist^.concat(new(pai_label,init(inittable_label)));
  376. write_init_data;
  377. end;
  378. procedure tdef.write_init_data;
  379. begin
  380. write_rtti_data;
  381. end;
  382. procedure tdef.write_child_init_data;
  383. begin
  384. write_child_rtti_data;
  385. end;
  386. function tdef.get_inittable_label : plabel;
  387. begin
  388. if not(has_inittable) then
  389. generate_inittable;
  390. get_inittable_label:=inittable_label;
  391. end;
  392. procedure tdef.write_rtti_name;
  393. var
  394. str : string;
  395. begin
  396. { name }
  397. if assigned(sym) then
  398. begin
  399. str:=sym^.name;
  400. rttilist^.concat(new(pai_string,init(chr(length(str))+str)));
  401. end
  402. else
  403. rttilist^.concat(new(pai_string,init(#0)))
  404. end;
  405. { returns true, if the definition can be published }
  406. function tdef.is_publishable : boolean;
  407. begin
  408. is_publishable:=false;
  409. end;
  410. procedure tdef.write_rtti_data;
  411. begin
  412. end;
  413. procedure tdef.write_child_rtti_data;
  414. begin
  415. end;
  416. {****************************************************************************
  417. TSTRINGDEF
  418. ****************************************************************************}
  419. constructor tstringdef.shortinit(l : byte);
  420. begin
  421. tdef.init;
  422. string_typ:=st_shortstring;
  423. deftype:=stringdef;
  424. len:=l;
  425. savesize:=len+1;
  426. end;
  427. constructor tstringdef.shortload;
  428. begin
  429. tdef.load;
  430. string_typ:=st_shortstring;
  431. deftype:=stringdef;
  432. len:=readbyte;
  433. savesize:=len+1;
  434. end;
  435. constructor tstringdef.longinit(l : longint);
  436. begin
  437. tdef.init;
  438. string_typ:=st_longstring;
  439. deftype:=stringdef;
  440. len:=l;
  441. savesize:=target_os.size_of_pointer;
  442. end;
  443. constructor tstringdef.longload;
  444. begin
  445. tdef.load;
  446. deftype:=stringdef;
  447. string_typ:=st_longstring;
  448. len:=readlong;
  449. savesize:=target_os.size_of_pointer;
  450. end;
  451. constructor tstringdef.ansiinit(l : longint);
  452. begin
  453. tdef.init;
  454. string_typ:=st_ansistring;
  455. deftype:=stringdef;
  456. len:=l;
  457. savesize:=target_os.size_of_pointer;
  458. end;
  459. constructor tstringdef.ansiload;
  460. begin
  461. tdef.load;
  462. deftype:=stringdef;
  463. string_typ:=st_ansistring;
  464. len:=readlong;
  465. savesize:=target_os.size_of_pointer;
  466. end;
  467. constructor tstringdef.wideinit(l : longint);
  468. begin
  469. tdef.init;
  470. string_typ:=st_widestring;
  471. deftype:=stringdef;
  472. len:=l;
  473. savesize:=target_os.size_of_pointer;
  474. end;
  475. constructor tstringdef.wideload;
  476. begin
  477. tdef.load;
  478. deftype:=stringdef;
  479. string_typ:=st_widestring;
  480. len:=readlong;
  481. savesize:=target_os.size_of_pointer;
  482. end;
  483. function tstringdef.stringtypname:string;
  484. const
  485. typname:array[tstringtype] of string[8]=(
  486. 'SHORTSTR','LONGSTR','ANSISTR','WIDESTR'
  487. );
  488. begin
  489. stringtypname:=typname[string_typ];
  490. end;
  491. function tstringdef.size : longint;
  492. begin
  493. size:=savesize;
  494. end;
  495. procedure tstringdef.write;
  496. begin
  497. tdef.write;
  498. if string_typ=st_shortstring then
  499. writebyte(len)
  500. else
  501. writelong(len);
  502. case string_typ of
  503. st_shortstring : current_ppu^.writeentry(ibshortstringdef);
  504. st_longstring : current_ppu^.writeentry(iblongstringdef);
  505. st_ansistring : current_ppu^.writeentry(ibansistringdef);
  506. st_widestring : current_ppu^.writeentry(ibwidestringdef);
  507. end;
  508. end;
  509. {$ifdef GDB}
  510. function tstringdef.stabstring : pchar;
  511. var
  512. bytest,charst,longst : string;
  513. begin
  514. case string_typ of
  515. st_shortstring:
  516. begin
  517. charst := typeglobalnumber('char');
  518. { this is what I found in stabs.texinfo but
  519. gdb 4.12 for go32 doesn't understand that !! }
  520. {$IfDef GDBknowsstrings}
  521. stabstring := strpnew('n'+charst+';'+tostr(len));
  522. {$else}
  523. bytest := typeglobalnumber('byte');
  524. stabstring := strpnew('s'+tostr(len+1)+'length:'+bytest
  525. +',0,8;st:ar'+bytest
  526. +';1;'+tostr(len)+';'+charst+',8,'+tostr(len*8)+';;');
  527. {$EndIf}
  528. end;
  529. st_longstring:
  530. begin
  531. charst := typeglobalnumber('char');
  532. { this is what I found in stabs.texinfo but
  533. gdb 4.12 for go32 doesn't understand that !! }
  534. {$IfDef GDBknowsstrings}
  535. stabstring := strpnew('n'+charst+';'+tostr(len));
  536. {$else}
  537. bytest := typeglobalnumber('byte');
  538. longst := typeglobalnumber('longint');
  539. stabstring := strpnew('s'+tostr(len+5)+'length:'+longst
  540. +',0,32;dummy:'+bytest+',32,8;st:ar'+bytest
  541. +';1;'+tostr(len)+';'+charst+',40,'+tostr(len*8)+';;');
  542. {$EndIf}
  543. end;
  544. st_ansistring:
  545. begin
  546. { an ansi string looks like a pchar easy !! }
  547. stabstring:=strpnew('*'+typeglobalnumber('char'));
  548. end;
  549. st_widestring:
  550. begin
  551. { an ansi string looks like a pchar easy !! }
  552. stabstring:=strpnew('*'+typeglobalnumber('char'));
  553. end;
  554. end;
  555. end;
  556. procedure tstringdef.concatstabto(asmlist : paasmoutput);
  557. begin
  558. inherited concatstabto(asmlist);
  559. end;
  560. {$endif GDB}
  561. function tstringdef.needs_inittable : boolean;
  562. begin
  563. needs_inittable:=string_typ in [st_ansistring,st_widestring];
  564. end;
  565. procedure tstringdef.write_rtti_data;
  566. begin
  567. case string_typ of
  568. st_ansistring:
  569. begin
  570. rttilist^.concat(new(pai_const,init_8bit(tkAString)));
  571. end;
  572. st_widestring:
  573. begin
  574. rttilist^.concat(new(pai_const,init_8bit(tkWString)));
  575. end;
  576. st_longstring:
  577. begin
  578. rttilist^.concat(new(pai_const,init_8bit(tkLString)));
  579. end;
  580. st_shortstring:
  581. begin
  582. rttilist^.concat(new(pai_const,init_8bit(tkSString)));
  583. rttilist^.concat(new(pai_const,init_8bit(len)));
  584. end;
  585. end;
  586. end;
  587. function tstringdef.is_publishable : boolean;
  588. begin
  589. is_publishable:=true;
  590. end;
  591. {****************************************************************************
  592. TENUMDEF
  593. ****************************************************************************}
  594. constructor tenumdef.init;
  595. begin
  596. tdef.init;
  597. deftype:=enumdef;
  598. minval:=0;
  599. maxval:=0;
  600. calcsavesize;
  601. has_jumps:=false;
  602. basedef:=nil;
  603. rangenr:=0;
  604. firstenum:=nil;
  605. correct_owner_symtable;
  606. end;
  607. constructor tenumdef.init_subrange(_basedef:penumdef;_min,_max:longint);
  608. begin
  609. tdef.init;
  610. deftype:=enumdef;
  611. minval:=_min;
  612. maxval:=_max;
  613. basedef:=_basedef;
  614. calcsavesize;
  615. has_jumps:=false;
  616. rangenr:=0;
  617. firstenum:=basedef^.firstenum;
  618. while assigned(firstenum) and (penumsym(firstenum)^.value<>minval) do
  619. firstenum:=firstenum^.nextenum;
  620. correct_owner_symtable;
  621. end;
  622. constructor tenumdef.load;
  623. begin
  624. tdef.load;
  625. deftype:=enumdef;
  626. basedef:=penumdef(readdefref);
  627. minval:=readlong;
  628. maxval:=readlong;
  629. savesize:=readlong;
  630. has_jumps:=false;
  631. firstenum:=Nil;
  632. end;
  633. procedure tenumdef.calcsavesize;
  634. begin
  635. if (aktpackenum=4) or (min<0) or (max>65535) then
  636. savesize:=4
  637. else
  638. if (aktpackenum=2) or (min<0) or (max>255) then
  639. savesize:=2
  640. else
  641. savesize:=1;
  642. end;
  643. procedure tenumdef.setmax(_max:longint);
  644. begin
  645. maxval:=_max;
  646. calcsavesize;
  647. end;
  648. procedure tenumdef.setmin(_min:longint);
  649. begin
  650. minval:=_min;
  651. calcsavesize;
  652. end;
  653. function tenumdef.min:longint;
  654. begin
  655. min:=minval;
  656. end;
  657. function tenumdef.max:longint;
  658. begin
  659. max:=maxval;
  660. end;
  661. procedure tenumdef.deref;
  662. begin
  663. resolvedef(pdef(basedef));
  664. end;
  665. destructor tenumdef.done;
  666. begin
  667. inherited done;
  668. end;
  669. procedure tenumdef.write;
  670. begin
  671. tdef.write;
  672. writedefref(basedef);
  673. writelong(min);
  674. writelong(max);
  675. writelong(savesize);
  676. current_ppu^.writeentry(ibenumdef);
  677. end;
  678. function tenumdef.getrangecheckstring : string;
  679. begin
  680. if (cs_smartlink in aktmoduleswitches) then
  681. getrangecheckstring:='R_'+current_module^.modulename^+tostr(rangenr)
  682. else
  683. getrangecheckstring:='R_'+tostr(rangenr);
  684. end;
  685. procedure tenumdef.genrangecheck;
  686. begin
  687. if rangenr=0 then
  688. begin
  689. { generate two constant for bounds }
  690. getlabelnr(rangenr);
  691. if (cs_smartlink in aktmoduleswitches) then
  692. datasegment^.concat(new(pai_symbol,init_global(getrangecheckstring)))
  693. else
  694. datasegment^.concat(new(pai_symbol,init(getrangecheckstring)));
  695. datasegment^.concat(new(pai_const,init_32bit(min)));
  696. datasegment^.concat(new(pai_const,init_32bit(max)));
  697. end;
  698. end;
  699. {$ifdef GDB}
  700. function tenumdef.stabstring : pchar;
  701. var st,st2 : pchar;
  702. p : penumsym;
  703. s : string;
  704. memsize : word;
  705. begin
  706. memsize := memsizeinc;
  707. getmem(st,memsize);
  708. strpcopy(st,'e');
  709. p := firstenum;
  710. while assigned(p) do
  711. begin
  712. s :=p^.name+':'+tostr(p^.value)+',';
  713. { place for the ending ';' also }
  714. if (strlen(st)+length(s)+1<memsize) then
  715. strpcopy(strend(st),s)
  716. else
  717. begin
  718. getmem(st2,memsize+memsizeinc);
  719. strcopy(st2,st);
  720. freemem(st,memsize);
  721. st := st2;
  722. memsize := memsize+memsizeinc;
  723. strpcopy(strend(st),s);
  724. end;
  725. p := p^.nextenum;
  726. end;
  727. strpcopy(strend(st),';');
  728. stabstring := strnew(st);
  729. freemem(st,memsize);
  730. end;
  731. {$endif GDB}
  732. procedure tenumdef.write_child_rtti_data;
  733. begin
  734. if assigned(basedef) then
  735. basedef^.get_rtti_label;
  736. end;
  737. procedure tenumdef.write_rtti_data;
  738. var
  739. hp : penumsym;
  740. begin
  741. rttilist^.concat(new(pai_const,init_8bit(tkEnumeration)));
  742. case savesize of
  743. 1:
  744. rttilist^.concat(new(pai_const,init_8bit(otUByte)));
  745. 2:
  746. rttilist^.concat(new(pai_const,init_8bit(otUWord)));
  747. 4:
  748. rttilist^.concat(new(pai_const,init_8bit(otULong)));
  749. end;
  750. rttilist^.concat(new(pai_const,init_32bit(min)));
  751. rttilist^.concat(new(pai_const,init_32bit(max)));
  752. if assigned(basedef) then
  753. rttilist^.concat(new(pai_const_symbol,init(basedef^.get_rtti_label)))
  754. else
  755. rttilist^.concat(new(pai_const,init_32bit(0)));
  756. hp:=firstenum;
  757. while assigned(hp) do
  758. begin
  759. rttilist^.concat(new(pai_const,init_8bit(length(hp^.name))));
  760. rttilist^.concat(new(pai_string,init(hp^.name)));
  761. hp:=hp^.nextenum;
  762. end;
  763. rttilist^.concat(new(pai_const,init_8bit(0)));
  764. end;
  765. function tenumdef.is_publishable : boolean;
  766. begin
  767. is_publishable:=true;
  768. end;
  769. {****************************************************************************
  770. TORDDEF
  771. ****************************************************************************}
  772. constructor torddef.init(t : tbasetype;v,b : longint);
  773. begin
  774. inherited init;
  775. deftype:=orddef;
  776. low:=v;
  777. high:=b;
  778. typ:=t;
  779. rangenr:=0;
  780. setsize;
  781. end;
  782. constructor torddef.load;
  783. begin
  784. inherited load;
  785. deftype:=orddef;
  786. typ:=tbasetype(readbyte);
  787. low:=readlong;
  788. high:=readlong;
  789. rangenr:=0;
  790. setsize;
  791. end;
  792. procedure torddef.setsize;
  793. begin
  794. if typ=uauto then
  795. begin
  796. { generate a unsigned range if high<0 and low>=0 }
  797. if (low>=0) and (high<0) then
  798. begin
  799. savesize:=4;
  800. typ:=u32bit;
  801. end
  802. else if (low>=0) and (high<=255) then
  803. begin
  804. savesize:=1;
  805. typ:=u8bit;
  806. end
  807. else if (low>=-128) and (high<=127) then
  808. begin
  809. savesize:=1;
  810. typ:=s8bit;
  811. end
  812. else if (low>=0) and (high<=65536) then
  813. begin
  814. savesize:=2;
  815. typ:=u16bit;
  816. end
  817. else if (low>=-32768) and (high<=32767) then
  818. begin
  819. savesize:=2;
  820. typ:=s16bit;
  821. end
  822. else
  823. begin
  824. savesize:=4;
  825. typ:=s32bit;
  826. end;
  827. end
  828. else
  829. begin
  830. case typ of
  831. u8bit,s8bit,
  832. uchar,bool8bit:
  833. savesize:=1;
  834. u16bit,s16bit,
  835. bool16bit:
  836. savesize:=2;
  837. s32bit,u32bit,
  838. bool32bit:
  839. savesize:=4;
  840. u64bit,s64bitint:
  841. savesize:=8;
  842. else
  843. savesize:=0;
  844. end;
  845. end;
  846. { there are no entrys for range checking }
  847. rangenr:=0;
  848. end;
  849. function torddef.getrangecheckstring : string;
  850. begin
  851. if (cs_smartlink in aktmoduleswitches) then
  852. getrangecheckstring:='R_'+current_module^.modulename^+tostr(rangenr)
  853. else
  854. getrangecheckstring:='R_'+tostr(rangenr);
  855. end;
  856. procedure torddef.genrangecheck;
  857. begin
  858. if rangenr=0 then
  859. begin
  860. { generate two constant for bounds }
  861. getlabelnr(rangenr);
  862. if (cs_smartlink in aktmoduleswitches) then
  863. datasegment^.concat(new(pai_symbol,init_global(getrangecheckstring)))
  864. else
  865. datasegment^.concat(new(pai_symbol,init(getrangecheckstring)));
  866. if low<=high then
  867. begin
  868. datasegment^.concat(new(pai_const,init_32bit(low)));
  869. datasegment^.concat(new(pai_const,init_32bit(high)));
  870. end
  871. { for u32bit we need two bounds }
  872. else
  873. begin
  874. datasegment^.concat(new(pai_const,init_32bit(low)));
  875. datasegment^.concat(new(pai_const,init_32bit($7fffffff)));
  876. datasegment^.concat(new(pai_const,init_32bit($80000000)));
  877. datasegment^.concat(new(pai_const,init_32bit(high)));
  878. end;
  879. end;
  880. end;
  881. procedure torddef.write;
  882. begin
  883. tdef.write;
  884. writebyte(byte(typ));
  885. writelong(low);
  886. writelong(high);
  887. current_ppu^.writeentry(iborddef);
  888. end;
  889. {$ifdef GDB}
  890. function torddef.stabstring : pchar;
  891. begin
  892. case typ of
  893. uvoid : stabstring := strpnew(numberstring+';');
  894. {GDB 4.12 for go32 doesn't like boolean as range for 0 to 1 !!!}
  895. {$ifdef Use_integer_types_for_boolean}
  896. bool8bit,
  897. bool16bit,
  898. bool32bit : stabstring := strpnew('r'+numberstring+';0;255;');
  899. {$else : not Use_integer_types_for_boolean}
  900. bool8bit : stabstring := strpnew('-21;');
  901. bool16bit : stabstring := strpnew('-22;');
  902. bool32bit : stabstring := strpnew('-23;');
  903. u64bit : stabstring := strpnew('-32;');
  904. s64bitint : stabstring := strpnew('-31;');
  905. {$endif not Use_integer_types_for_boolean}
  906. { u32bit : stabstring := strpnew('r'+
  907. s32bitdef^.numberstring+';0;-1;'); }
  908. else
  909. stabstring := strpnew('r'+s32bitdef^.numberstring+';'+tostr(low)+';'+tostr(high)+';');
  910. end;
  911. end;
  912. {$endif GDB}
  913. procedure torddef.write_rtti_data;
  914. const
  915. trans : array[uchar..bool8bit] of byte =
  916. (otUByte,otUByte,otUWord,otULong,otSByte,otSWord,otSLong,otUByte);
  917. begin
  918. case typ of
  919. bool8bit:
  920. rttilist^.concat(new(pai_const,init_8bit(tkBool)));
  921. uchar:
  922. rttilist^.concat(new(pai_const,init_8bit(tkChar)));
  923. else
  924. rttilist^.concat(new(pai_const,init_8bit(tkInteger)));
  925. end;
  926. rttilist^.concat(new(pai_const,init_8bit(byte(trans[typ]))));
  927. rttilist^.concat(new(pai_const,init_32bit(low)));
  928. rttilist^.concat(new(pai_const,init_32bit(high)));
  929. end;
  930. function torddef.is_publishable : boolean;
  931. begin
  932. is_publishable:=typ in [uchar..bool8bit];
  933. end;
  934. {****************************************************************************
  935. TFLOATDEF
  936. ****************************************************************************}
  937. constructor tfloatdef.init(t : tfloattype);
  938. begin
  939. inherited init;
  940. deftype:=floatdef;
  941. typ:=t;
  942. setsize;
  943. end;
  944. constructor tfloatdef.load;
  945. begin
  946. inherited load;
  947. deftype:=floatdef;
  948. typ:=tfloattype(readbyte);
  949. setsize;
  950. end;
  951. procedure tfloatdef.setsize;
  952. begin
  953. case typ of
  954. f16bit : savesize:=2;
  955. f32bit,
  956. s32real : savesize:=4;
  957. s64real : savesize:=8;
  958. s64bit : savesize:=8;
  959. s80real : savesize:=extended_size;
  960. else
  961. savesize:=0;
  962. end;
  963. end;
  964. procedure tfloatdef.write;
  965. begin
  966. inherited write;
  967. writebyte(byte(typ));
  968. current_ppu^.writeentry(ibfloatdef);
  969. end;
  970. {$ifdef GDB}
  971. function tfloatdef.stabstring : pchar;
  972. begin
  973. case typ of
  974. s32real,
  975. s64real : stabstring := strpnew('r'+
  976. s32bitdef^.numberstring+';'+tostr(savesize)+';0;');
  977. { for fixed real use longint instead to be able to }
  978. { debug something at least }
  979. f32bit:
  980. stabstring := s32bitdef^.stabstring;
  981. f16bit:
  982. stabstring := strpnew('r'+s32bitdef^.numberstring+';0;'+
  983. tostr($ffff)+';');
  984. { found this solution in stabsread.c from GDB v4.16 }
  985. s64bit : stabstring := strpnew('r'+
  986. s32bitdef^.numberstring+';-'+tostr(savesize)+';0;');
  987. {$ifdef i386}
  988. { under dos at least you must give a size of twelve instead of 10 !! }
  989. { this is probably do to the fact that in gcc all is pushed in 4 bytes size }
  990. s80real : stabstring := strpnew('r'+s32bitdef^.numberstring+';12;0;');
  991. {$endif i386}
  992. else
  993. internalerror(10005);
  994. end;
  995. end;
  996. {$endif GDB}
  997. procedure tfloatdef.write_rtti_data;
  998. const
  999. translate : array[tfloattype] of byte =
  1000. (ftFixed32,ftSingle,ftDouble,ftExtended,ftComp,ftFixed16);
  1001. begin
  1002. rttilist^.concat(new(pai_const,init_8bit(tkFloat)));
  1003. rttilist^.concat(new(pai_const,init_8bit(translate[typ])));
  1004. end;
  1005. function tfloatdef.is_publishable : boolean;
  1006. begin
  1007. is_publishable:=true;
  1008. end;
  1009. {****************************************************************************
  1010. TFILEDEF
  1011. ****************************************************************************}
  1012. constructor tfiledef.init(ft : tfiletype;tas : pdef);
  1013. begin
  1014. inherited init;
  1015. deftype:=filedef;
  1016. filetype:=ft;
  1017. typed_as:=tas;
  1018. setsize;
  1019. end;
  1020. constructor tfiledef.load;
  1021. begin
  1022. inherited load;
  1023. deftype:=filedef;
  1024. filetype:=tfiletype(readbyte);
  1025. if filetype=ft_typed then
  1026. typed_as:=readdefref
  1027. else
  1028. typed_as:=nil;
  1029. setsize;
  1030. end;
  1031. procedure tfiledef.deref;
  1032. begin
  1033. if filetype=ft_typed then
  1034. resolvedef(typed_as);
  1035. end;
  1036. procedure tfiledef.setsize;
  1037. begin
  1038. case filetype of
  1039. ft_text : savesize:=572;
  1040. ft_typed,
  1041. ft_untyped : savesize:=316;
  1042. end;
  1043. end;
  1044. procedure tfiledef.write;
  1045. begin
  1046. inherited write;
  1047. writebyte(byte(filetype));
  1048. if filetype=ft_typed then
  1049. writedefref(typed_as);
  1050. current_ppu^.writeentry(ibfiledef);
  1051. end;
  1052. {$ifdef GDB}
  1053. function tfiledef.stabstring : pchar;
  1054. begin
  1055. {$IfDef GDBknowsfiles}
  1056. case filetyp of
  1057. ft_typed : stabstring := strpnew('d'+typed_as^.numberstring{+';'});
  1058. ft_untyped : stabstring := strpnew('d'+voiddef^.numberstring{+';'});
  1059. ft_text : stabstring := strpnew('d'+cchardef^.numberstring{+';'});
  1060. end;
  1061. {$Else}
  1062. {based on
  1063. FileRec = Packed Record
  1064. Handle,
  1065. Mode,
  1066. RecSize : longint;
  1067. _private : array[1..32] of byte;
  1068. UserData : array[1..16] of byte;
  1069. name : array[0..255] of char;
  1070. End; }
  1071. { the buffer part is still missing !! (PM) }
  1072. { but the string could become too long !! }
  1073. stabstring := strpnew('s'+tostr(savesize)+
  1074. 'HANDLE:'+typeglobalnumber('longint')+',0,32;'+
  1075. 'MODE:'+typeglobalnumber('longint')+',32,32;'+
  1076. 'RECSIZE:'+typeglobalnumber('longint')+',64,32;'+
  1077. '_PRIVATE:ar'+typeglobalnumber('word')+';1;32;'+typeglobalnumber('byte')
  1078. +',96,256;'+
  1079. 'USERDATA:ar'+typeglobalnumber('word')+';1;16;'+typeglobalnumber('byte')
  1080. +',352,128;'+
  1081. 'NAME:ar'+typeglobalnumber('word')+';0;255;'+typeglobalnumber('char')
  1082. +',480,2048;;');
  1083. {$EndIf}
  1084. end;
  1085. procedure tfiledef.concatstabto(asmlist : paasmoutput);
  1086. begin
  1087. { most file defs are unnamed !!! }
  1088. if ((sym = nil) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches)) and
  1089. not is_def_stab_written then
  1090. begin
  1091. if assigned(typed_as) then forcestabto(asmlist,typed_as);
  1092. inherited concatstabto(asmlist);
  1093. end;
  1094. end;
  1095. {$endif GDB}
  1096. {****************************************************************************
  1097. TPOINTERDEF
  1098. ****************************************************************************}
  1099. constructor tpointerdef.init(def : pdef);
  1100. begin
  1101. inherited init;
  1102. deftype:=pointerdef;
  1103. definition:=def;
  1104. is_far:=false;
  1105. savesize:=target_os.size_of_pointer;
  1106. end;
  1107. constructor tpointerdef.initfar(def : pdef);
  1108. begin
  1109. inherited init;
  1110. deftype:=pointerdef;
  1111. definition:=def;
  1112. is_far:=true;
  1113. savesize:=target_os.size_of_pointer;
  1114. end;
  1115. constructor tpointerdef.load;
  1116. begin
  1117. inherited load;
  1118. deftype:=pointerdef;
  1119. { the real address in memory is calculated later (deref) }
  1120. definition:=readdefref;
  1121. is_far:=(readbyte<>0);
  1122. savesize:=target_os.size_of_pointer;
  1123. end;
  1124. procedure tpointerdef.deref;
  1125. begin
  1126. resolvedef(definition);
  1127. end;
  1128. procedure tpointerdef.write;
  1129. begin
  1130. inherited write;
  1131. writedefref(definition);
  1132. writebyte(byte(is_far));
  1133. current_ppu^.writeentry(ibpointerdef);
  1134. end;
  1135. {$ifdef GDB}
  1136. function tpointerdef.stabstring : pchar;
  1137. begin
  1138. stabstring := strpnew('*'+definition^.numberstring);
  1139. end;
  1140. procedure tpointerdef.concatstabto(asmlist : paasmoutput);
  1141. var st,nb : string;
  1142. sym_line_no : longint;
  1143. begin
  1144. if ( (sym=nil) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches)) and
  1145. not is_def_stab_written then
  1146. begin
  1147. if assigned(definition) then
  1148. if definition^.deftype in [recorddef,objectdef] then
  1149. begin
  1150. is_def_stab_written := true;
  1151. {to avoid infinite recursion in record with next-like fields }
  1152. nb := definition^.numberstring;
  1153. is_def_stab_written := false;
  1154. if not definition^.is_def_stab_written then
  1155. begin
  1156. if assigned(definition^.sym) then
  1157. begin
  1158. if assigned(sym) then
  1159. begin
  1160. st := sym^.name;
  1161. sym_line_no:=sym^.fileinfo.line;
  1162. end
  1163. else
  1164. begin
  1165. st := ' ';
  1166. sym_line_no:=0;
  1167. end;
  1168. st := '"'+st+':t'+numberstring+'=*'+definition^.numberstring
  1169. +'=xs'+definition^.sym^.name+':",'+tostr(N_LSYM)+',0,'+tostr(sym_line_no)+',0';
  1170. if asmlist = debuglist then do_count_dbx := true;
  1171. asmlist^.concat(new(pai_stabs,init(strpnew(st))));
  1172. end;
  1173. end else inherited concatstabto(asmlist);
  1174. is_def_stab_written := true;
  1175. end else
  1176. begin
  1177. { p =^p1; p1=^p problem }
  1178. is_def_stab_written := true;
  1179. forcestabto(asmlist,definition);
  1180. is_def_stab_written := false;
  1181. inherited concatstabto(asmlist);
  1182. end;
  1183. end;
  1184. end;
  1185. {$endif GDB}
  1186. {****************************************************************************
  1187. TCLASSREFDEF
  1188. ****************************************************************************}
  1189. constructor tclassrefdef.init(def : pdef);
  1190. begin
  1191. inherited init(def);
  1192. deftype:=classrefdef;
  1193. definition:=def;
  1194. savesize:=target_os.size_of_pointer;
  1195. end;
  1196. constructor tclassrefdef.load;
  1197. begin
  1198. inherited load;
  1199. deftype:=classrefdef;
  1200. end;
  1201. procedure tclassrefdef.write;
  1202. begin
  1203. { be careful, tclassdefref inherits from tpointerdef }
  1204. tdef.write;
  1205. writedefref(definition);
  1206. writebyte(byte(is_far));
  1207. current_ppu^.writeentry(ibclassrefdef);
  1208. end;
  1209. {$ifdef GDB}
  1210. function tclassrefdef.stabstring : pchar;
  1211. begin
  1212. stabstring:=strpnew('');
  1213. end;
  1214. procedure tclassrefdef.concatstabto(asmlist : paasmoutput);
  1215. begin
  1216. end;
  1217. {$endif GDB}
  1218. {***************************************************************************
  1219. TSETDEF
  1220. ***************************************************************************}
  1221. { For i386 smallsets work,
  1222. for m68k there are problems
  1223. can be test by compiling with -dusesmallset PM }
  1224. {$ifdef i386}
  1225. {$define usesmallset}
  1226. {$endif i386}
  1227. constructor tsetdef.init(s : pdef;high : longint);
  1228. begin
  1229. inherited init;
  1230. deftype:=setdef;
  1231. setof:=s;
  1232. {$ifdef usesmallset}
  1233. { small sets only working for i386 PM }
  1234. if high<32 then
  1235. begin
  1236. settype:=smallset;
  1237. savesize:=Sizeof(longint);
  1238. end
  1239. else
  1240. {$endif usesmallset}
  1241. if high<256 then
  1242. begin
  1243. settype:=normset;
  1244. savesize:=32;
  1245. end
  1246. else
  1247. {$ifdef testvarsets}
  1248. if high<$10000 then
  1249. begin
  1250. settype:=varset;
  1251. savesize:=4*((high+31) div 32);
  1252. end
  1253. else
  1254. {$endif testvarsets}
  1255. Message(sym_e_ill_type_decl_set);
  1256. end;
  1257. constructor tsetdef.load;
  1258. begin
  1259. inherited load;
  1260. deftype:=setdef;
  1261. setof:=readdefref;
  1262. settype:=tsettype(readbyte);
  1263. case settype of
  1264. normset : savesize:=32;
  1265. varset : savesize:=readlong;
  1266. smallset : savesize:=Sizeof(longint);
  1267. end;
  1268. end;
  1269. procedure tsetdef.write;
  1270. begin
  1271. inherited write;
  1272. writedefref(setof);
  1273. writebyte(byte(settype));
  1274. if settype=varset then
  1275. writelong(savesize);
  1276. current_ppu^.writeentry(ibsetdef);
  1277. end;
  1278. {$ifdef GDB}
  1279. function tsetdef.stabstring : pchar;
  1280. begin
  1281. stabstring := strpnew('S'+setof^.numberstring);
  1282. end;
  1283. procedure tsetdef.concatstabto(asmlist : paasmoutput);
  1284. begin
  1285. if ( not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches)) and
  1286. not is_def_stab_written then
  1287. begin
  1288. if assigned(setof) then
  1289. forcestabto(asmlist,setof);
  1290. inherited concatstabto(asmlist);
  1291. end;
  1292. end;
  1293. {$endif GDB}
  1294. procedure tsetdef.deref;
  1295. begin
  1296. resolvedef(setof);
  1297. end;
  1298. procedure tsetdef.write_rtti_data;
  1299. begin
  1300. rttilist^.concat(new(pai_const,init_8bit(tkSet)));
  1301. rttilist^.concat(new(pai_const,init_8bit(otULong)));
  1302. rttilist^.concat(new(pai_const_symbol,init(setof^.get_rtti_label)));
  1303. end;
  1304. procedure tsetdef.write_child_rtti_data;
  1305. begin
  1306. setof^.get_rtti_label;
  1307. end;
  1308. function tsetdef.is_publishable : boolean;
  1309. begin
  1310. is_publishable:=settype=smallset;
  1311. end;
  1312. {***************************************************************************
  1313. TFORMALDEF
  1314. ***************************************************************************}
  1315. constructor tformaldef.init;
  1316. var
  1317. stregdef : boolean;
  1318. begin
  1319. stregdef:=registerdef;
  1320. registerdef:=false;
  1321. inherited init;
  1322. deftype:=formaldef;
  1323. registerdef:=stregdef;
  1324. { formaldef must be registered at unit level !! }
  1325. if registerdef and assigned(current_module) then
  1326. if assigned(current_module^.localsymtable) then
  1327. psymtable(current_module^.localsymtable)^.registerdef(@self)
  1328. else if assigned(current_module^.globalsymtable) then
  1329. psymtable(current_module^.globalsymtable)^.registerdef(@self);
  1330. savesize:=target_os.size_of_pointer;
  1331. end;
  1332. constructor tformaldef.load;
  1333. begin
  1334. inherited load;
  1335. deftype:=formaldef;
  1336. savesize:=target_os.size_of_pointer;
  1337. end;
  1338. procedure tformaldef.write;
  1339. begin
  1340. inherited write;
  1341. current_ppu^.writeentry(ibformaldef);
  1342. end;
  1343. {$ifdef GDB}
  1344. function tformaldef.stabstring : pchar;
  1345. begin
  1346. stabstring := strpnew('formal'+numberstring+';');
  1347. end;
  1348. procedure tformaldef.concatstabto(asmlist : paasmoutput);
  1349. begin
  1350. { formaldef can't be stab'ed !}
  1351. end;
  1352. {$endif GDB}
  1353. {***************************************************************************
  1354. TARRAYDEF
  1355. ***************************************************************************}
  1356. constructor tarraydef.init(l,h : longint;rd : pdef);
  1357. begin
  1358. inherited init;
  1359. deftype:=arraydef;
  1360. lowrange:=l;
  1361. highrange:=h;
  1362. rangedef:=rd;
  1363. definition:=nil;
  1364. IsVariant:=false;
  1365. IsConstructor:=false;
  1366. IsArrayOfConst:=false;
  1367. rangenr:=0;
  1368. end;
  1369. constructor tarraydef.load;
  1370. begin
  1371. inherited load;
  1372. deftype:=arraydef;
  1373. { the addresses are calculated later }
  1374. definition:=readdefref;
  1375. rangedef:=readdefref;
  1376. lowrange:=readlong;
  1377. highrange:=readlong;
  1378. IsArrayOfConst:=boolean(readbyte);
  1379. IsVariant:=false;
  1380. IsConstructor:=false;
  1381. rangenr:=0;
  1382. end;
  1383. function tarraydef.getrangecheckstring : string;
  1384. begin
  1385. if (cs_smartlink in aktmoduleswitches) then
  1386. getrangecheckstring:='R_'+current_module^.modulename^+tostr(rangenr)
  1387. else
  1388. getrangecheckstring:='R_'+tostr(rangenr);
  1389. end;
  1390. procedure tarraydef.genrangecheck;
  1391. begin
  1392. if rangenr=0 then
  1393. begin
  1394. { generates the data for range checking }
  1395. getlabelnr(rangenr);
  1396. if (cs_smartlink in aktmoduleswitches) then
  1397. datasegment^.concat(new(pai_symbol,init_global(getrangecheckstring)))
  1398. else
  1399. datasegment^.concat(new(pai_symbol,init(getrangecheckstring)));
  1400. datasegment^.concat(new(pai_const,init_32bit(lowrange)));
  1401. datasegment^.concat(new(pai_const,init_32bit(highrange)));
  1402. end;
  1403. end;
  1404. procedure tarraydef.deref;
  1405. begin
  1406. resolvedef(definition);
  1407. resolvedef(rangedef);
  1408. end;
  1409. procedure tarraydef.write;
  1410. begin
  1411. inherited write;
  1412. writedefref(definition);
  1413. writedefref(rangedef);
  1414. writelong(lowrange);
  1415. writelong(highrange);
  1416. writebyte(byte(IsArrayOfConst));
  1417. current_ppu^.writeentry(ibarraydef);
  1418. end;
  1419. {$ifdef GDB}
  1420. function tarraydef.stabstring : pchar;
  1421. begin
  1422. stabstring := strpnew('ar'+rangedef^.numberstring+';'
  1423. +tostr(lowrange)+';'+tostr(highrange)+';'+definition^.numberstring);
  1424. end;
  1425. procedure tarraydef.concatstabto(asmlist : paasmoutput);
  1426. begin
  1427. if (not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches))
  1428. and not is_def_stab_written then
  1429. begin
  1430. {when array are inserted they have no definition yet !!}
  1431. if assigned(definition) then
  1432. inherited concatstabto(asmlist);
  1433. end;
  1434. end;
  1435. {$endif GDB}
  1436. function tarraydef.elesize : longint;
  1437. begin
  1438. elesize:=definition^.size;
  1439. end;
  1440. function tarraydef.size : longint;
  1441. begin
  1442. { dirty hack to overcome an overflow (PFV) }
  1443. if highrange=$7fffffff then
  1444. size:=$7fffffff
  1445. else
  1446. size:=(highrange-lowrange+1)*elesize;
  1447. end;
  1448. function tarraydef.needs_inittable : boolean;
  1449. begin
  1450. needs_inittable:=definition^.needs_inittable;
  1451. end;
  1452. procedure tarraydef.write_child_rtti_data;
  1453. begin
  1454. definition^.get_rtti_label;
  1455. end;
  1456. procedure tarraydef.write_rtti_data;
  1457. begin
  1458. rttilist^.concat(new(pai_const,init_8bit(13)));
  1459. write_rtti_name;
  1460. { size of elements }
  1461. rttilist^.concat(new(pai_const,init_32bit(definition^.size)));
  1462. { count of elements }
  1463. rttilist^.concat(new(pai_const,init_32bit(highrange-lowrange+1)));
  1464. { element type }
  1465. rttilist^.concat(new(pai_const_symbol,init(definition^.get_rtti_label)));
  1466. end;
  1467. {***************************************************************************
  1468. TRECDEF
  1469. ***************************************************************************}
  1470. constructor trecdef.init(p : psymtable);
  1471. begin
  1472. inherited init;
  1473. deftype:=recorddef;
  1474. symtable:=p;
  1475. savesize:=symtable^.datasize;
  1476. symtable^.defowner := @self;
  1477. end;
  1478. constructor trecdef.load;
  1479. var
  1480. oldread_member : boolean;
  1481. begin
  1482. inherited load;
  1483. deftype:=recorddef;
  1484. savesize:=readlong;
  1485. oldread_member:=read_member;
  1486. read_member:=true;
  1487. symtable:=new(psymtable,loadas(recordsymtable));
  1488. read_member:=oldread_member;
  1489. symtable^.defowner := @self;
  1490. end;
  1491. destructor trecdef.done;
  1492. begin
  1493. if assigned(symtable) then dispose(symtable,done);
  1494. inherited done;
  1495. end;
  1496. var
  1497. binittable : boolean;
  1498. procedure check_rec_inittable(s : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});
  1499. begin
  1500. if (psym(s)^.typ=varsym) and
  1501. ((pvarsym(s)^.definition^.deftype<>objectdef) or
  1502. not(pobjectdef(pvarsym(s)^.definition)^.isclass)) then
  1503. binittable:=pvarsym(s)^.definition^.needs_inittable;
  1504. end;
  1505. function trecdef.needs_inittable : boolean;
  1506. var
  1507. oldb : boolean;
  1508. begin
  1509. { there are recursive calls to needs_rtti possible, }
  1510. { so we have to change to old value how else should }
  1511. { we do that ? check_rec_rtti can't be a nested }
  1512. { procedure of needs_rtti ! }
  1513. oldb:=binittable;
  1514. binittable:=false;
  1515. symtable^.foreach(check_rec_inittable);
  1516. needs_inittable:=binittable;
  1517. binittable:=oldb;
  1518. end;
  1519. procedure trecdef.deref;
  1520. var
  1521. {$ifdef OLDPPU}
  1522. hp : pdef;
  1523. {$endif}
  1524. oldrecsyms : psymtable;
  1525. begin
  1526. oldrecsyms:=aktrecordsymtable;
  1527. aktrecordsymtable:=symtable;
  1528. { now dereference the definitions }
  1529. {$ifndef OLDPPU}
  1530. symtable^.deref;
  1531. {$else}
  1532. hp:=symtable^.rootdef;
  1533. while assigned(hp) do
  1534. begin
  1535. hp^.deref;
  1536. { set owner }
  1537. hp^.owner:=symtable;
  1538. hp:=pdef(hp^.next);
  1539. end;
  1540. symtable^.foreach({$ifdef fpc}@{$endif}derefsym);
  1541. {$endif}
  1542. aktrecordsymtable:=oldrecsyms;
  1543. end;
  1544. procedure trecdef.write;
  1545. var
  1546. oldread_member : boolean;
  1547. begin
  1548. oldread_member:=read_member;
  1549. read_member:=true;
  1550. inherited write;
  1551. writelong(savesize);
  1552. current_ppu^.writeentry(ibrecorddef);
  1553. self.symtable^.writeas;
  1554. read_member:=oldread_member;
  1555. end;
  1556. {$ifdef GDB}
  1557. Const StabRecString : pchar = Nil;
  1558. StabRecSize : longint = 0;
  1559. RecOffset : Longint = 0;
  1560. procedure addname(p : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});
  1561. var
  1562. news, newrec : pchar;
  1563. spec : string[2];
  1564. size : longint;
  1565. begin
  1566. { static variables from objects are like global objects }
  1567. if ((psym(p)^.properties and sp_static)<>0) then
  1568. exit;
  1569. if ((psym(p)^.properties and sp_protected)<>0) then
  1570. spec:='/1'
  1571. else if ((psym(p)^.properties and sp_private)<>0) then
  1572. spec:='/0'
  1573. else
  1574. spec:='';
  1575. If psym(p)^.typ = varsym then
  1576. begin
  1577. size:=pvarsym(p)^.definition^.size;
  1578. { open arrays made overflows !! }
  1579. if size>$fffffff then
  1580. size:=$fffffff;
  1581. newrec := strpnew(p^.name+':'+spec+pvarsym(p)^.definition^.numberstring
  1582. +','+tostr(pvarsym(p)^.address*8)+','
  1583. +tostr(size*8)+';');
  1584. if strlen(StabRecString) + strlen(newrec) >= StabRecSize-256 then
  1585. begin
  1586. getmem(news,stabrecsize+memsizeinc);
  1587. strcopy(news,stabrecstring);
  1588. freemem(stabrecstring,stabrecsize);
  1589. stabrecsize:=stabrecsize+memsizeinc;
  1590. stabrecstring:=news;
  1591. end;
  1592. strcat(StabRecstring,newrec);
  1593. strdispose(newrec);
  1594. {This should be used for case !!}
  1595. RecOffset := RecOffset + pvarsym(p)^.definition^.size;
  1596. end;
  1597. end;
  1598. function trecdef.stabstring : pchar;
  1599. Var oldrec : pchar;
  1600. oldsize : longint;
  1601. {$ifdef OLDPPU}
  1602. cur : psym;
  1603. {$endif}
  1604. begin
  1605. oldrec := stabrecstring;
  1606. oldsize:=stabrecsize;
  1607. GetMem(stabrecstring,memsizeinc);
  1608. stabrecsize:=memsizeinc;
  1609. strpcopy(stabRecString,'s'+tostr(savesize));
  1610. RecOffset := 0;
  1611. {$ifndef OLDPPU}
  1612. symtable^.foreach({$ifdef fpc}@{$endif}addname);
  1613. {$else}
  1614. cur:=symtable^.searchroot;
  1615. while assigned(cur) do
  1616. begin
  1617. addname(cur);
  1618. cur:=cur^.nextsym;
  1619. end;
  1620. {$endif}
  1621. { FPC doesn't want to convert a char to a pchar}
  1622. { is this a bug ? }
  1623. strpcopy(strend(StabRecString),';');
  1624. stabstring := strnew(StabRecString);
  1625. Freemem(stabrecstring,stabrecsize);
  1626. stabrecstring := oldrec;
  1627. stabrecsize:=oldsize;
  1628. end;
  1629. procedure trecdef.concatstabto(asmlist : paasmoutput);
  1630. begin
  1631. if (not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches)) and
  1632. (not is_def_stab_written) then
  1633. inherited concatstabto(asmlist);
  1634. end;
  1635. {$endif GDB}
  1636. var
  1637. count : longint;
  1638. procedure count_inittable_fields(sym : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});{$ifndef fpc}far;{$endif}
  1639. begin
  1640. if (psym(sym)^.typ=varsym) and
  1641. (pvarsym(sym)^.definition^.needs_inittable) then
  1642. inc(count);
  1643. end;
  1644. procedure count_fields(sym : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});{$ifndef fpc}far;{$endif}
  1645. begin
  1646. inc(count);
  1647. end;
  1648. procedure write_field_inittable(sym : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});{$ifndef fpc}far;{$endif}
  1649. begin
  1650. if (psym(sym)^.typ=varsym) and
  1651. pvarsym(sym)^.definition^.needs_inittable then
  1652. begin
  1653. rttilist^.concat(new(pai_const_symbol,init(lab2str(pvarsym(sym)^.definition^.get_inittable_label))));
  1654. rttilist^.concat(new(pai_const,init_32bit(pvarsym(sym)^.address)));
  1655. end;
  1656. end;
  1657. procedure write_field_rtti(sym : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});{$ifndef fpc}far;{$endif}
  1658. begin
  1659. rttilist^.concat(new(pai_const_symbol,init(pvarsym(sym)^.definition^.get_rtti_label)));
  1660. rttilist^.concat(new(pai_const,init_32bit(pvarsym(sym)^.address)));
  1661. end;
  1662. procedure generate_child_inittable(sym:{$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});{$ifndef fpc}far;{$endif}
  1663. begin
  1664. if (psym(sym)^.typ=varsym) and
  1665. pvarsym(sym)^.definition^.needs_inittable then
  1666. { force inittable generation }
  1667. pvarsym(sym)^.definition^.get_inittable_label;
  1668. end;
  1669. procedure generate_child_rtti(sym : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});{$ifndef fpc}far;{$endif}
  1670. begin
  1671. pvarsym(sym)^.definition^.get_rtti_label;
  1672. end;
  1673. procedure trecdef.write_child_rtti_data;
  1674. begin
  1675. symtable^.foreach(generate_child_rtti);
  1676. end;
  1677. procedure trecdef.write_child_init_data;
  1678. begin
  1679. symtable^.foreach(generate_child_inittable);
  1680. end;
  1681. procedure trecdef.write_rtti_data;
  1682. begin
  1683. rttilist^.concat(new(pai_const,init_8bit(14)));
  1684. write_rtti_name;
  1685. rttilist^.concat(new(pai_const,init_32bit(size)));
  1686. count:=0;
  1687. symtable^.foreach(count_fields);
  1688. rttilist^.concat(new(pai_const,init_32bit(count)));
  1689. symtable^.foreach(write_field_rtti);
  1690. end;
  1691. procedure trecdef.write_init_data;
  1692. begin
  1693. rttilist^.concat(new(pai_const,init_8bit(14)));
  1694. write_rtti_name;
  1695. rttilist^.concat(new(pai_const,init_32bit(size)));
  1696. count:=0;
  1697. symtable^.foreach(count_inittable_fields);
  1698. rttilist^.concat(new(pai_const,init_32bit(count)));
  1699. symtable^.foreach(write_field_inittable);
  1700. end;
  1701. {***************************************************************************
  1702. TABSTRACTPROCDEF
  1703. ***************************************************************************}
  1704. constructor tabstractprocdef.init;
  1705. begin
  1706. inherited init;
  1707. para1:=nil;
  1708. fpu_used:=0;
  1709. options:=0;
  1710. retdef:=voiddef;
  1711. savesize:=target_os.size_of_pointer;
  1712. end;
  1713. procedure disposepdefcoll(var para1 : pdefcoll);
  1714. var
  1715. hp : pdefcoll;
  1716. begin
  1717. hp:=para1;
  1718. while assigned(hp) do
  1719. begin
  1720. para1:=hp^.next;
  1721. dispose(hp);
  1722. hp:=para1;
  1723. end;
  1724. end;
  1725. destructor tabstractprocdef.done;
  1726. begin
  1727. disposepdefcoll(para1);
  1728. inherited done;
  1729. end;
  1730. procedure tabstractprocdef.concatdef(p : pdef;vsp : tvarspez);
  1731. var
  1732. hp : pdefcoll;
  1733. begin
  1734. new(hp);
  1735. hp^.paratyp:=vsp;
  1736. hp^.data:=p;
  1737. hp^.next:=para1;
  1738. para1:=hp;
  1739. end;
  1740. { all functions returning in FPU are
  1741. assume to use 2 FPU registers
  1742. until the function implementation
  1743. is processed PM }
  1744. procedure tabstractprocdef.test_if_fpu_result;
  1745. begin
  1746. if assigned(retdef) and is_fpu(retdef) then
  1747. fpu_used:=2;
  1748. end;
  1749. procedure tabstractprocdef.deref;
  1750. var
  1751. hp : pdefcoll;
  1752. begin
  1753. inherited deref;
  1754. resolvedef(retdef);
  1755. hp:=para1;
  1756. while assigned(hp) do
  1757. begin
  1758. resolvedef(hp^.data);
  1759. hp:=hp^.next;
  1760. end;
  1761. end;
  1762. constructor tabstractprocdef.load;
  1763. var
  1764. last,hp : pdefcoll;
  1765. count,i : word;
  1766. begin
  1767. inherited load;
  1768. retdef:=readdefref;
  1769. fpu_used:=readbyte;
  1770. options:=readlong;
  1771. count:=readword;
  1772. para1:=nil;
  1773. savesize:=target_os.size_of_pointer;
  1774. for i:=1 to count do
  1775. begin
  1776. new(hp);
  1777. hp^.paratyp:=tvarspez(readbyte);
  1778. hp^.data:=readdefref;
  1779. hp^.next:=nil;
  1780. if para1=nil then
  1781. para1:=hp
  1782. else
  1783. last^.next:=hp;
  1784. last:=hp;
  1785. end;
  1786. end;
  1787. function tabstractprocdef.para_size : longint;
  1788. var
  1789. pdc : pdefcoll;
  1790. l : longint;
  1791. begin
  1792. l:=0;
  1793. pdc:=para1;
  1794. while assigned(pdc) do
  1795. begin
  1796. case pdc^.paratyp of
  1797. vs_var : inc(l,target_os.size_of_pointer);
  1798. vs_value,
  1799. vs_const : if push_addr_param(pdc^.data) then
  1800. inc(l,target_os.size_of_pointer)
  1801. else
  1802. inc(l,align(pdc^.data^.size,target_os.stackalignment));
  1803. end;
  1804. pdc:=pdc^.next;
  1805. end;
  1806. para_size:=l;
  1807. end;
  1808. procedure tabstractprocdef.write;
  1809. var
  1810. count : word;
  1811. hp : pdefcoll;
  1812. begin
  1813. inherited write;
  1814. writedefref(retdef);
  1815. {$ifndef OLDPPU}
  1816. current_ppu^.do_interface_crc:=false;
  1817. {$endif}
  1818. writebyte(fpu_used);
  1819. {$ifdef OLDPPU}
  1820. current_ppu^.do_interface_crc:=true;
  1821. {$endif}
  1822. writelong(options);
  1823. hp:=para1;
  1824. count:=0;
  1825. while assigned(hp) do
  1826. begin
  1827. inc(count);
  1828. hp:=hp^.next;
  1829. end;
  1830. writeword(count);
  1831. hp:=para1;
  1832. while assigned(hp) do
  1833. begin
  1834. writebyte(byte(hp^.paratyp));
  1835. writedefref(hp^.data);
  1836. hp:=hp^.next;
  1837. end;
  1838. end;
  1839. function tabstractprocdef.demangled_paras : string;
  1840. var s : string;
  1841. p : pdefcoll;
  1842. begin
  1843. s:='';
  1844. p:=para1;
  1845. if assigned(p) then
  1846. begin
  1847. s:=s+'(';
  1848. while assigned(p) do
  1849. begin
  1850. if assigned(p^.data^.sym) then
  1851. s:=s+p^.data^.sym^.name
  1852. else if p^.paratyp=vs_var then
  1853. s:=s+'var'
  1854. else if p^.paratyp=vs_const then
  1855. s:=s+'const';
  1856. p:=p^.next;
  1857. if assigned(p) then
  1858. s:=s+','
  1859. else
  1860. s:=s+')';
  1861. end;
  1862. end;
  1863. demangled_paras:=s;
  1864. end;
  1865. {$ifdef GDB}
  1866. function tabstractprocdef.stabstring : pchar;
  1867. begin
  1868. stabstring := strpnew('abstractproc'+numberstring+';');
  1869. end;
  1870. procedure tabstractprocdef.concatstabto(asmlist : paasmoutput);
  1871. begin
  1872. if (not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches))
  1873. and not is_def_stab_written then
  1874. begin
  1875. if assigned(retdef) then forcestabto(asmlist,retdef);
  1876. inherited concatstabto(asmlist);
  1877. end;
  1878. end;
  1879. {$endif GDB}
  1880. {***************************************************************************
  1881. TPROCDEF
  1882. ***************************************************************************}
  1883. constructor tprocdef.init;
  1884. begin
  1885. inherited init;
  1886. deftype:=procdef;
  1887. _mangledname:=nil;
  1888. nextoverloaded:=nil;
  1889. extnumber:=-1;
  1890. localst:=new(psymtable,init(localsymtable));
  1891. parast:=new(psymtable,init(parasymtable));
  1892. localst^.defowner:=@self;
  1893. parast^.defowner:=@self;
  1894. { this is used by insert
  1895. to check same names in parast and localst }
  1896. localst^.next:=parast;
  1897. defref:=nil;
  1898. lastwritten:=nil;
  1899. refcount:=0;
  1900. if (cs_browser in aktmoduleswitches) and make_ref then
  1901. begin
  1902. defref:=new(pref,init(defref,@tokenpos));
  1903. inc(refcount);
  1904. end;
  1905. lastref:=defref;
  1906. { first, we assume, that all registers are used }
  1907. {$ifdef i386}
  1908. usedregisters:=$ff;
  1909. {$endif i386}
  1910. {$ifdef m68k}
  1911. usedregisters:=$FFFF;
  1912. {$endif}
  1913. {$ifdef alpha}
  1914. usedregisters_int:=$ffffffff;
  1915. usedregisters_fpu:=$ffffffff;
  1916. {$endif alpha}
  1917. forwarddef:=true;
  1918. _class := nil;
  1919. code:=nil;
  1920. count:=false;
  1921. is_used:=false;
  1922. end;
  1923. constructor tprocdef.load;
  1924. var
  1925. s : string;
  1926. begin
  1927. inherited load;
  1928. deftype:=procdef;
  1929. {$ifdef i386}
  1930. usedregisters:=readbyte;
  1931. {$endif i386}
  1932. {$ifdef m68k}
  1933. usedregisters:=readword;
  1934. {$endif}
  1935. {$ifdef alpha}
  1936. usedregisters_int:=readlong;
  1937. usedregisters_fpu:=readlong;
  1938. {$endif alpha}
  1939. s:=readstring;
  1940. setstring(_mangledname,s);
  1941. extnumber:=readlong;
  1942. nextoverloaded:=pprocdef(readdefref);
  1943. _class := pobjectdef(readdefref);
  1944. if (cs_link_deffile in aktglobalswitches) and ((options and poexports)<>0) then
  1945. deffile.AddExport(mangledname);
  1946. parast:=nil;
  1947. localst:=nil;
  1948. forwarddef:=false;
  1949. lastref:=nil;
  1950. lastwritten:=nil;
  1951. defref:=nil;
  1952. refcount:=0;
  1953. count:=true;
  1954. is_used:=false;
  1955. end;
  1956. Const local_symtable_index : longint = $8001;
  1957. procedure tprocdef.load_references;
  1958. var
  1959. pos : tfileposinfo;
  1960. {$ifndef NOLOCALBROWSER}
  1961. pdo : pobjectdef;
  1962. {$endif ndef NOLOCALBROWSER}
  1963. move_last : boolean;
  1964. begin
  1965. move_last:=lastwritten=lastref;
  1966. while (not current_ppu^.endofentry) do
  1967. begin
  1968. readposinfo(pos);
  1969. inc(refcount);
  1970. lastref:=new(pref,init(lastref,@pos));
  1971. lastref^.is_written:=true;
  1972. if refcount=1 then
  1973. defref:=lastref;
  1974. end;
  1975. if move_last then
  1976. lastwritten:=lastref;
  1977. if ((current_module^.flags and uf_local_browser)<>0)
  1978. and is_in_current then
  1979. begin
  1980. {$ifndef NOLOCALBROWSER}
  1981. pdo:=_class;
  1982. if assigned(pdo) and (owner^.symtabletype<>localsymtable) then
  1983. localsymtablestack:=pdo^.publicsyms;
  1984. if owner^.symtabletype<>localsymtable then
  1985. while assigned(pdo) do
  1986. begin
  1987. if pdo^.publicsyms<>aktrecordsymtable then
  1988. begin
  1989. pdo^.publicsyms^.unitid:=local_symtable_index;
  1990. inc(local_symtable_index);
  1991. end;
  1992. pdo:=pdo^.childof;
  1993. end;
  1994. new(parast,loadas(parasymtable));
  1995. parast^.next:=localsymtablestack;
  1996. localsymtablestack:=parast;
  1997. parast^.unitid:=local_symtable_index;
  1998. inc(local_symtable_index);
  1999. parast^.load_browser;
  2000. new(localst,loadas(localsymtable));
  2001. localst^.next:=localsymtablestack;
  2002. localsymtablestack:=localst;
  2003. localst^.unitid:=local_symtable_index;
  2004. inc(local_symtable_index);
  2005. localst^.load_browser;
  2006. { decrement for }
  2007. local_symtable_index:=local_symtable_index-2;
  2008. localsymtablestack:=localsymtablestack^.next^.next;
  2009. pdo:=_class;
  2010. if (owner^.symtabletype<>localsymtable) then
  2011. localsymtablestack:=nil;
  2012. if (owner^.symtabletype<>localsymtable) then
  2013. while assigned(pdo) do
  2014. begin
  2015. if pdo^.publicsyms<>aktrecordsymtable then
  2016. dec(local_symtable_index);
  2017. pdo:=pdo^.childof;
  2018. end;
  2019. {$endif ndef NOLOCALBROWSER}
  2020. end;
  2021. end;
  2022. function tprocdef.write_references : boolean;
  2023. var
  2024. ref : pref;
  2025. {$ifndef NOLOCALBROWSER}
  2026. pdo : pobjectdef;
  2027. {$endif ndef NOLOCALBROWSER}
  2028. move_last : boolean;
  2029. begin
  2030. move_last:=lastwritten=lastref;
  2031. if move_last and (((current_module^.flags and uf_local_browser)=0)
  2032. or not is_in_current) then
  2033. exit;
  2034. { write address of this symbol }
  2035. writedefref(@self);
  2036. { write refs }
  2037. if assigned(lastwritten) then
  2038. ref:=lastwritten
  2039. else
  2040. ref:=defref;
  2041. while assigned(ref) do
  2042. begin
  2043. if ref^.moduleindex=current_module^.unit_index then
  2044. begin
  2045. writeposinfo(ref^.posinfo);
  2046. ref^.is_written:=true;
  2047. if move_last then
  2048. lastwritten:=ref;
  2049. end
  2050. else if not ref^.is_written then
  2051. move_last:=false
  2052. else if move_last then
  2053. lastwritten:=ref;
  2054. ref:=ref^.nextref;
  2055. end;
  2056. current_ppu^.writeentry(ibdefref);
  2057. write_references:=true;
  2058. if ((current_module^.flags and uf_local_browser)<>0)
  2059. and is_in_current then
  2060. begin
  2061. {$ifndef NOLOCALBROWSER}
  2062. pdo:=_class;
  2063. if (owner^.symtabletype<>localsymtable) then
  2064. while assigned(pdo) do
  2065. begin
  2066. if pdo^.publicsyms<>aktrecordsymtable then
  2067. begin
  2068. pdo^.publicsyms^.unitid:=local_symtable_index;
  2069. inc(local_symtable_index);
  2070. end;
  2071. pdo:=pdo^.childof;
  2072. end;
  2073. { we need TESTLOCALBROWSER para and local symtables
  2074. PPU files are then easier to read PM }
  2075. if not assigned(parast) then
  2076. parast:=new(psymtable,init(parasymtable));
  2077. parast^.writeas;
  2078. parast^.unitid:=local_symtable_index;
  2079. inc(local_symtable_index);
  2080. parast^.write_browser;
  2081. if not assigned(localst) then
  2082. localst:=new(psymtable,init(localsymtable));
  2083. localst^.writeas;
  2084. localst^.unitid:=local_symtable_index;
  2085. inc(local_symtable_index);
  2086. localst^.write_browser;
  2087. { decrement for }
  2088. local_symtable_index:=local_symtable_index-2;
  2089. pdo:=_class;
  2090. if (owner^.symtabletype<>localsymtable) then
  2091. while assigned(pdo) do
  2092. begin
  2093. if pdo^.publicsyms<>aktrecordsymtable then
  2094. dec(local_symtable_index);
  2095. pdo:=pdo^.childof;
  2096. end;
  2097. {$endif ndef NOLOCALBROWSER}
  2098. end;
  2099. end;
  2100. {$ifdef BrowserLog}
  2101. procedure tprocdef.add_to_browserlog;
  2102. begin
  2103. if assigned(defref) then
  2104. begin
  2105. browserlog.AddLog('***'+mangledname);
  2106. browserlog.AddLogRefs(defref);
  2107. if (current_module^.flags and uf_local_browser)<>0 then
  2108. begin
  2109. if assigned(parast) then
  2110. parast^.writebrowserlog;
  2111. if assigned(localst) then
  2112. localst^.writebrowserlog;
  2113. end;
  2114. end;
  2115. end;
  2116. {$endif BrowserLog}
  2117. destructor tprocdef.done;
  2118. begin
  2119. if assigned(defref) then
  2120. dispose(defref,done);
  2121. if assigned(parast) then
  2122. dispose(parast,done);
  2123. if assigned(localst) and (localst^.symtabletype<>staticsymtable) then
  2124. dispose(localst,done);
  2125. if ((options and poinline) <> 0) and assigned(code) then
  2126. disposetree(ptree(code));
  2127. if (options and pomsgstr)<>0 then
  2128. strdispose(messageinf.str);
  2129. if
  2130. {$ifdef tp}
  2131. not(use_big) and
  2132. {$endif}
  2133. assigned(_mangledname) then
  2134. strdispose(_mangledname);
  2135. inherited done;
  2136. end;
  2137. procedure tprocdef.write;
  2138. begin
  2139. inherited write;
  2140. {$ifndef OLDPPU}
  2141. current_ppu^.do_interface_crc:=false;
  2142. {$endif}
  2143. {$ifdef i386}
  2144. writebyte(usedregisters);
  2145. {$endif i386}
  2146. {$ifdef m68k}
  2147. writeword(usedregisters);
  2148. {$endif}
  2149. {$ifdef alpha}
  2150. writelong(usedregisters_int);
  2151. writelong(usedregisters_fpu);
  2152. {$endif alpha}
  2153. writestring(mangledname);
  2154. {$ifndef OLDPPU}
  2155. current_ppu^.do_interface_crc:=true;
  2156. {$endif}
  2157. writelong(extnumber);
  2158. if (options and pooperator) = 0 then
  2159. writedefref(nextoverloaded)
  2160. else
  2161. begin
  2162. { only write the overloads from the same unit }
  2163. if assigned(nextoverloaded) and
  2164. (nextoverloaded^.owner=owner) then
  2165. writedefref(nextoverloaded)
  2166. else
  2167. writedefref(nil);
  2168. end;
  2169. writedefref(_class);
  2170. if (options and poinline) <> 0 then
  2171. begin
  2172. { we need to save
  2173. - the para and the local symtable
  2174. - the code ptree !! PM
  2175. writesymtable(parast);
  2176. writesymtable(localst);
  2177. writeptree(ptree(code));
  2178. }
  2179. end;
  2180. current_ppu^.writeentry(ibprocdef);
  2181. end;
  2182. {$ifdef GDB}
  2183. procedure addparaname(p : psym);
  2184. var vs : char;
  2185. begin
  2186. if pvarsym(p)^.varspez = vs_value then vs := '1'
  2187. else vs := '0';
  2188. strpcopy(strend(StabRecString),p^.name+':'+pvarsym(p)^.definition^.numberstring+','+vs+';');
  2189. end;
  2190. function tprocdef.stabstring : pchar;
  2191. var param : pdefcoll;
  2192. i : word;
  2193. oldrec : pchar;
  2194. begin
  2195. oldrec := stabrecstring;
  2196. getmem(StabRecString,1024);
  2197. param := para1;
  2198. i := 0;
  2199. while assigned(param) do
  2200. begin
  2201. inc(i);
  2202. param := param^.next;
  2203. end;
  2204. strpcopy(StabRecString,'f'+retdef^.numberstring);
  2205. if i>0 then
  2206. begin
  2207. strpcopy(strend(StabRecString),','+tostr(i)+';');
  2208. (* confuse gdb !! PM
  2209. if assigned(parast) then
  2210. {$IfDef TP}
  2211. parast^.foreach(addparaname)
  2212. {$Else}
  2213. parast^.foreach(@addparaname)
  2214. {$EndIf}
  2215. else
  2216. begin
  2217. param := para1;
  2218. i := 0;
  2219. while assigned(param) do
  2220. begin
  2221. inc(i);
  2222. if param^.paratyp = vs_value then vartyp := '1' else vartyp := '0';
  2223. {Here we have lost the parameter names !!}
  2224. {using lower case parameters }
  2225. strpcopy(strend(stabrecstring),'p'+tostr(i)
  2226. +':'+param^.data^.numberstring+','+vartyp+';');
  2227. param := param^.next;
  2228. end;
  2229. end; *)
  2230. {strpcopy(strend(StabRecString),';');}
  2231. end;
  2232. stabstring := strnew(stabrecstring);
  2233. freemem(stabrecstring,1024);
  2234. stabrecstring := oldrec;
  2235. end;
  2236. procedure tprocdef.concatstabto(asmlist : paasmoutput);
  2237. begin
  2238. end;
  2239. {$endif GDB}
  2240. procedure tprocdef.deref;
  2241. begin
  2242. inherited deref;
  2243. resolvedef(pdef(nextoverloaded));
  2244. resolvedef(pdef(_class));
  2245. end;
  2246. function tprocdef.mangledname : string;
  2247. {$ifdef tp}
  2248. var
  2249. oldpos : longint;
  2250. s : string;
  2251. b : byte;
  2252. {$endif tp}
  2253. begin
  2254. {$ifdef tp}
  2255. if use_big then
  2256. begin
  2257. symbolstream.seek(longint(_mangledname));
  2258. symbolstream.read(b,1);
  2259. symbolstream.read(s[1],b);
  2260. s[0]:=chr(b);
  2261. mangledname:=s;
  2262. end
  2263. else
  2264. {$endif}
  2265. mangledname:=strpas(_mangledname);
  2266. if count then
  2267. is_used:=true;
  2268. end;
  2269. {$IfDef GDB}
  2270. function tprocdef.cplusplusmangledname : string;
  2271. var
  2272. s,s2 : string;
  2273. param : pdefcoll;
  2274. begin
  2275. s := sym^.name;
  2276. if _class <> nil then
  2277. begin
  2278. s2 := _class^.objname^;
  2279. s := s+'__'+tostr(length(s2))+s2;
  2280. end else s := s + '_';
  2281. param := para1;
  2282. while assigned(param) do
  2283. begin
  2284. s2 := param^.data^.sym^.name;
  2285. s := s+tostr(length(s2))+s2;
  2286. param := param^.next;
  2287. end;
  2288. cplusplusmangledname:=s;
  2289. end;
  2290. {$EndIf GDB}
  2291. procedure tprocdef.setmangledname(const s : string);
  2292. begin
  2293. if {$ifdef tp}not(use_big) and{$endif} (assigned(_mangledname)) then
  2294. strdispose(_mangledname);
  2295. setstring(_mangledname,s);
  2296. if assigned(parast) then
  2297. begin
  2298. stringdispose(parast^.name);
  2299. parast^.name:=stringdup('args of '+s);
  2300. end;
  2301. if assigned(localst) then
  2302. begin
  2303. stringdispose(localst^.name);
  2304. localst^.name:=stringdup('locals of '+s);
  2305. end;
  2306. end;
  2307. {***************************************************************************
  2308. TPROCVARDEF
  2309. ***************************************************************************}
  2310. constructor tprocvardef.init;
  2311. begin
  2312. inherited init;
  2313. deftype:=procvardef;
  2314. end;
  2315. constructor tprocvardef.load;
  2316. begin
  2317. inherited load;
  2318. deftype:=procvardef;
  2319. end;
  2320. procedure tprocvardef.write;
  2321. begin
  2322. { here we cannot get a real good value so just give something }
  2323. { plausible (PM) }
  2324. { a more secure way would be
  2325. to allways store in a temp }
  2326. if is_fpu(retdef) then
  2327. fpu_used:=2
  2328. else
  2329. fpu_used:=0;
  2330. inherited write;
  2331. current_ppu^.writeentry(ibprocvardef);
  2332. end;
  2333. function tprocvardef.size : longint;
  2334. begin
  2335. if (options and pomethodpointer)=0 then
  2336. size:=target_os.size_of_pointer
  2337. else
  2338. size:=2*target_os.size_of_pointer;
  2339. end;
  2340. {$ifdef GDB}
  2341. function tprocvardef.stabstring : pchar;
  2342. var
  2343. nss : pchar;
  2344. i : word;
  2345. param : pdefcoll;
  2346. begin
  2347. i := 0;
  2348. param := para1;
  2349. while assigned(param) do
  2350. begin
  2351. inc(i);
  2352. param := param^.next;
  2353. end;
  2354. getmem(nss,1024);
  2355. { it is not a function but a function pointer !! (PM) }
  2356. strpcopy(nss,'*f'+retdef^.numberstring{+','+tostr(i)}+';');
  2357. param := para1;
  2358. i := 0;
  2359. { this confuses gdb !!
  2360. we should use 'F' instead of 'f' but
  2361. as we use c++ language mode
  2362. it does not like that either
  2363. Please do not remove this part
  2364. might be used once
  2365. gdb for pascal is ready PM }
  2366. (* while assigned(param) do
  2367. begin
  2368. inc(i);
  2369. if param^.paratyp = vs_value then vartyp := '1' else vartyp := '0';
  2370. {Here we have lost the parameter names !!}
  2371. pst := strpnew('p'+tostr(i)+':'+param^.data^.numberstring+','+vartyp+';');
  2372. strcat(nss,pst);
  2373. strdispose(pst);
  2374. param := param^.next;
  2375. end; *)
  2376. {strpcopy(strend(nss),';');}
  2377. stabstring := strnew(nss);
  2378. freemem(nss,1024);
  2379. end;
  2380. procedure tprocvardef.concatstabto(asmlist : paasmoutput);
  2381. begin
  2382. if ( not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches))
  2383. and not is_def_stab_written then
  2384. inherited concatstabto(asmlist);
  2385. is_def_stab_written:=true;
  2386. end;
  2387. {$endif GDB}
  2388. procedure tprocvardef.write_rtti_data;
  2389. begin
  2390. {!!!!!!!}
  2391. end;
  2392. procedure tprocvardef.write_child_rtti_data;
  2393. begin
  2394. {!!!!!!!!}
  2395. end;
  2396. function tprocvardef.is_publishable : boolean;
  2397. begin
  2398. is_publishable:=(options and pomethodpointer)<>0;
  2399. end;
  2400. {***************************************************************************
  2401. TOBJECTDEF
  2402. ***************************************************************************}
  2403. {$ifdef GDB}
  2404. const
  2405. vtabletype : word = 0;
  2406. vtableassigned : boolean = false;
  2407. {$endif GDB}
  2408. constructor tobjectdef.init(const n : string;c : pobjectdef);
  2409. begin
  2410. tdef.init;
  2411. deftype:=objectdef;
  2412. options:=0;
  2413. childof:=nil;
  2414. publicsyms:=new(psymtable,init(objectsymtable));
  2415. publicsyms^.name := stringdup(n);
  2416. { create space for vmt !! }
  2417. {$ifdef OLDVMTSTYLE}
  2418. publicsyms^.datasize:=target_os.size_of_pointer;
  2419. options:=oo_hasvmt;
  2420. vmt_offset:=0;
  2421. {$else }
  2422. options:=0;
  2423. vmt_offset:=0;
  2424. publicsyms^.datasize:=0;
  2425. {$endif }
  2426. publicsyms^.defowner:=@self;
  2427. set_parent(c);
  2428. objname:=stringdup(n);
  2429. end;
  2430. procedure tobjectdef.set_parent( c : pobjectdef);
  2431. begin
  2432. { nothing to do if the parent was not forward !}
  2433. if assigned(childof) then
  2434. exit;
  2435. childof:=c;
  2436. { some options are inherited !! }
  2437. if assigned(c) then
  2438. begin
  2439. options:= options or (c^.options and
  2440. (oo_hasvirtual or oo_hasprivate or
  2441. oo_hasprotected or
  2442. oo_hasconstructor or oo_hasdestructor
  2443. ));
  2444. { add the data of the anchestor class }
  2445. publicsyms^.datasize:=publicsyms^.datasize
  2446. +childof^.publicsyms^.datasize;
  2447. if ((options and oo_hasvmt)<>0) and
  2448. ((c^.options and oo_hasvmt)<>0) then
  2449. publicsyms^.datasize:=publicsyms^.datasize-target_os.size_of_pointer;
  2450. { if parent has a vmt field then
  2451. the offset is the same for the child PM }
  2452. if ((c^.options and oo_hasvmt)<>0) or isclass then
  2453. begin
  2454. vmt_offset:=c^.vmt_offset;
  2455. options:=options or oo_hasvmt;
  2456. end;
  2457. end;
  2458. savesize := publicsyms^.datasize;
  2459. end;
  2460. constructor tobjectdef.load;
  2461. var
  2462. oldread_member : boolean;
  2463. begin
  2464. tdef.load;
  2465. deftype:=objectdef;
  2466. savesize:=readlong;
  2467. vmt_offset:=readlong;
  2468. objname:=stringdup(readstring);
  2469. childof:=pobjectdef(readdefref);
  2470. options:=readlong;
  2471. oldread_member:=read_member;
  2472. read_member:=true;
  2473. publicsyms:=new(psymtable,loadas(objectsymtable));
  2474. read_member:=oldread_member;
  2475. publicsyms^.defowner:=@self;
  2476. { publicsyms^.datasize:=savesize; }
  2477. publicsyms^.name := stringdup(objname^);
  2478. { handles the predefined class tobject }
  2479. { the last TOBJECT which is loaded gets }
  2480. { it ! }
  2481. if (objname^='TOBJECT') and not(cs_compilesystem in aktmoduleswitches) and
  2482. isclass and (childof=pointer($ffffffff)) then
  2483. class_tobject:=@self;
  2484. has_rtti:=true;
  2485. end;
  2486. procedure tobjectdef.insertvmt;
  2487. begin
  2488. if (options and oo_hasvmt)<>0 then
  2489. internalerror(12345)
  2490. else
  2491. begin
  2492. { first round up to multiple of 4 }
  2493. if (aktpackrecords=2) then
  2494. begin
  2495. if (publicsyms^.datasize and 1)<>0 then
  2496. inc(publicsyms^.datasize);
  2497. end;
  2498. if (aktpackrecords>=4) then
  2499. begin
  2500. if (publicsyms^.datasize mod 4) <> 0 then
  2501. publicsyms^.datasize:=publicsyms^.datasize+4-(publicsyms^.datasize mod 4);
  2502. end;
  2503. vmt_offset:=publicsyms^.datasize;
  2504. publicsyms^.datasize:=publicsyms^.datasize+target_os.size_of_pointer;
  2505. options:=options or oo_hasvmt;
  2506. end;
  2507. end;
  2508. procedure tobjectdef.check_forwards;
  2509. begin
  2510. publicsyms^.check_forwards;
  2511. if (options and oo_isforward)<>0 then
  2512. begin
  2513. { ok, in future, the forward can be resolved }
  2514. Message1(sym_e_class_forward_not_resolved,objname^);
  2515. options:=options and not(oo_isforward);
  2516. end;
  2517. end;
  2518. destructor tobjectdef.done;
  2519. begin
  2520. if assigned(publicsyms) then
  2521. dispose(publicsyms,done);
  2522. if (options and oo_isforward)<>0 then
  2523. Message1(sym_e_class_forward_not_resolved,objname^);
  2524. stringdispose(objname);
  2525. tdef.done;
  2526. end;
  2527. { true, if self inherits from d (or if they are equal) }
  2528. function tobjectdef.isrelated(d : pobjectdef) : boolean;
  2529. var
  2530. hp : pobjectdef;
  2531. begin
  2532. hp:=@self;
  2533. while assigned(hp) do
  2534. begin
  2535. if hp=d then
  2536. begin
  2537. isrelated:=true;
  2538. exit;
  2539. end;
  2540. hp:=hp^.childof;
  2541. end;
  2542. isrelated:=false;
  2543. end;
  2544. function tobjectdef.size : longint;
  2545. begin
  2546. if (options and oo_is_class)<>0 then
  2547. size:=target_os.size_of_pointer
  2548. else
  2549. size:=publicsyms^.datasize;
  2550. end;
  2551. procedure tobjectdef.deref;
  2552. var
  2553. {$ifdef OLDPPU}
  2554. hp : pdef;
  2555. {$endif}
  2556. oldrecsyms : psymtable;
  2557. begin
  2558. resolvedef(pdef(childof));
  2559. oldrecsyms:=aktrecordsymtable;
  2560. aktrecordsymtable:=publicsyms;
  2561. {$ifndef OLDPPU}
  2562. publicsyms^.deref;
  2563. {$else}
  2564. hp:=publicsyms^.rootdef;
  2565. while assigned(hp) do
  2566. begin
  2567. hp^.deref;
  2568. { set owner }
  2569. hp^.owner:=publicsyms;
  2570. hp:=pdef(hp^.next);
  2571. end;
  2572. publicsyms^.foreach({$ifdef fpc}@{$endif}derefsym);
  2573. {$endif}
  2574. aktrecordsymtable:=oldrecsyms;
  2575. end;
  2576. function tobjectdef.vmt_mangledname : string;
  2577. {DM: I get a nil pointer on the owner name. I don't know if this
  2578. mayhappen, and I have therefore fixed the problem by doing nil pointer
  2579. checks.}
  2580. var
  2581. s1,s2:string;
  2582. begin
  2583. if (options and oo_hasvmt)=0 then
  2584. {internalerror(12346);}
  2585. Message1(parser_object_has_no_vmt,objname^);
  2586. if owner^.name=nil then
  2587. s1:=''
  2588. else
  2589. s1:=owner^.name^;
  2590. if objname=nil then
  2591. s2:=''
  2592. else
  2593. s2:=objname^;
  2594. vmt_mangledname:='VMT_'+s1+'$_'+s2;
  2595. end;
  2596. function tobjectdef.rtti_name : string;
  2597. var
  2598. s1,s2:string;
  2599. begin
  2600. if owner^.name=nil then
  2601. s1:=''
  2602. else
  2603. s1:=owner^.name^;
  2604. if objname=nil then
  2605. s2:=''
  2606. else
  2607. s2:=objname^;
  2608. rtti_name:='RTTI_'+s1+'$_'+s2;
  2609. end;
  2610. function tobjectdef.isclass : boolean;
  2611. begin
  2612. isclass:=(options and oo_is_class)<>0;
  2613. end;
  2614. procedure tobjectdef.write;
  2615. var
  2616. oldread_member : boolean;
  2617. begin
  2618. tdef.write;
  2619. writelong(size);
  2620. writelong(vmt_offset);
  2621. writestring(objname^);
  2622. writedefref(childof);
  2623. writelong(options);
  2624. current_ppu^.writeentry(ibobjectdef);
  2625. oldread_member:=read_member;
  2626. read_member:=true;
  2627. publicsyms^.writeas;
  2628. read_member:=oldread_member;
  2629. end;
  2630. {$ifdef GDB}
  2631. procedure addprocname(p :{$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});
  2632. var virtualind,argnames : string;
  2633. news, newrec : pchar;
  2634. pd,ipd : pprocdef;
  2635. lindex : longint;
  2636. para : pdefcoll;
  2637. arglength : byte;
  2638. sp : char;
  2639. begin
  2640. If psym(p)^.typ = procsym then
  2641. begin
  2642. pd := pprocsym(p)^.definition;
  2643. { this will be used for full implementation of object stabs
  2644. not yet done }
  2645. ipd := pd;
  2646. while assigned(ipd^.nextoverloaded) do ipd := ipd^.nextoverloaded;
  2647. if (pd^.options and povirtualmethod) <> 0 then
  2648. begin
  2649. lindex := pd^.extnumber;
  2650. {doesnt seem to be necessary
  2651. lindex := lindex or $80000000;}
  2652. virtualind := '*'+tostr(lindex)+';'+ipd^._class^.numberstring+';'
  2653. end else virtualind := '.';
  2654. { arguments are not listed here }
  2655. {we don't need another definition}
  2656. para := pd^.para1;
  2657. { used by gdbpas to recognize constructor and destructors }
  2658. if (pd^.options and poconstructor) <> 0 then
  2659. argnames:='__ct__'
  2660. else if (pd^.options and podestructor) <> 0 then
  2661. argnames:='__dt__'
  2662. else
  2663. argnames := '';
  2664. while assigned(para) do
  2665. begin
  2666. if para^.data^.deftype = formaldef then
  2667. begin
  2668. if para^.paratyp=vs_var then
  2669. argnames := argnames+'3var'
  2670. else if para^.paratyp=vs_const then
  2671. argnames:=argnames+'5const';
  2672. end
  2673. else
  2674. begin
  2675. { if the arg definition is like (v: ^byte;..
  2676. there is no sym attached to data !!! }
  2677. if assigned(para^.data^.sym) then
  2678. begin
  2679. arglength := length(para^.data^.sym^.name);
  2680. argnames := argnames + tostr(arglength)+para^.data^.sym^.name;
  2681. end
  2682. else
  2683. begin
  2684. argnames:=argnames+'11unnamedtype';
  2685. end;
  2686. end;
  2687. para := para^.next;
  2688. end;
  2689. ipd^.is_def_stab_written := true;
  2690. { here 2A must be changed for private and protected }
  2691. { 0 is private 1 protected and 2 public }
  2692. if (psym(p)^.properties and sp_private)<>0 then sp:='0'
  2693. else if (psym(p)^.properties and sp_protected)<>0 then sp:='1'
  2694. else sp:='2';
  2695. newrec := strpnew(p^.name+'::'+ipd^.numberstring
  2696. +'=##'+pd^.retdef^.numberstring+';:'+argnames+';'+sp+'A'
  2697. +virtualind+';');
  2698. { get spare place for a string at the end }
  2699. if strlen(StabRecString) + strlen(newrec) >= StabRecSize-256 then
  2700. begin
  2701. getmem(news,stabrecsize+memsizeinc);
  2702. strcopy(news,stabrecstring);
  2703. freemem(stabrecstring,stabrecsize);
  2704. stabrecsize:=stabrecsize+memsizeinc;
  2705. stabrecstring:=news;
  2706. end;
  2707. strcat(StabRecstring,newrec);
  2708. {freemem(newrec,memsizeinc); }
  2709. strdispose(newrec);
  2710. {This should be used for case !!}
  2711. RecOffset := RecOffset + pd^.size;
  2712. end;
  2713. end;
  2714. function tobjectdef.stabstring : pchar;
  2715. var anc : pobjectdef;
  2716. oldrec : pchar;
  2717. oldrecsize : longint;
  2718. str_end : string;
  2719. {$ifdef OLDPPU}
  2720. cur : psym;
  2721. {$endif}
  2722. begin
  2723. oldrec := stabrecstring;
  2724. oldrecsize:=stabrecsize;
  2725. stabrecsize:=memsizeinc;
  2726. GetMem(stabrecstring,stabrecsize);
  2727. strpcopy(stabRecString,'s'+tostr(size));
  2728. if assigned(childof) then
  2729. {only one ancestor not virtual, public, at base offset 0 }
  2730. { !1 , 0 2 0 , }
  2731. strpcopy(strend(stabrecstring),'!1,020,'+childof^.numberstring+';');
  2732. {virtual table to implement yet}
  2733. RecOffset := 0;
  2734. {$ifndef OLDPPU}
  2735. {$ifdef tp}
  2736. publicsyms^.foreach(addname);
  2737. {$else}
  2738. publicsyms^.foreach(@addname);
  2739. {$endif}
  2740. {$else}
  2741. cur:=publicsyms^.searchroot;
  2742. while assigned(cur) do
  2743. begin
  2744. addname(cur);
  2745. cur:=psym(cur)^.nextsym;
  2746. end;
  2747. {$endif}
  2748. if (options and oo_hasvmt) <> 0 then
  2749. if not assigned(childof) or ((childof^.options and oo_hasvmt) = 0) then
  2750. begin
  2751. strpcopy(strend(stabrecstring),'$vf'+numberstring+':'+typeglobalnumber('vtblarray')
  2752. +','+tostr(vmt_offset*8)+';');
  2753. end;
  2754. {$ifndef OLDPPU}
  2755. {$ifdef tp}
  2756. publicsyms^.foreach(addprocname);
  2757. {$else}
  2758. publicsyms^.foreach(@addprocname);
  2759. {$endif tp }
  2760. {$else}
  2761. cur:=publicsyms^.searchroot;
  2762. while assigned(cur) do
  2763. begin
  2764. addprocname(cur);
  2765. cur:=psym(cur)^.nextsym;
  2766. end;
  2767. {$endif}
  2768. if (options and oo_hasvmt) <> 0 then
  2769. begin
  2770. anc := @self;
  2771. while assigned(anc^.childof) and ((anc^.childof^.options and oo_hasvmt) <> 0) do
  2772. anc := anc^.childof;
  2773. str_end:=';~%'+anc^.numberstring+';';
  2774. end
  2775. else
  2776. str_end:=';';
  2777. strpcopy(strend(stabrecstring),str_end);
  2778. stabstring := strnew(StabRecString);
  2779. freemem(stabrecstring,stabrecsize);
  2780. stabrecstring := oldrec;
  2781. stabrecsize:=oldrecsize;
  2782. end;
  2783. {$endif GDB}
  2784. procedure tobjectdef.write_child_init_data;
  2785. begin
  2786. end;
  2787. procedure tobjectdef.write_init_data;
  2788. begin
  2789. if isclass then
  2790. rttilist^.concat(new(pai_const,init_8bit(tkclass)))
  2791. else
  2792. rttilist^.concat(new(pai_const,init_8bit(tkobject)));
  2793. { generate the name }
  2794. rttilist^.concat(new(pai_const,init_8bit(length(objname^))));
  2795. rttilist^.concat(new(pai_string,init(objname^)));
  2796. rttilist^.concat(new(pai_const,init_32bit(size)));
  2797. count:=0;
  2798. publicsyms^.foreach(count_inittable_fields);
  2799. rttilist^.concat(new(pai_const,init_32bit(count)));
  2800. publicsyms^.foreach(write_field_inittable);
  2801. end;
  2802. function tobjectdef.needs_inittable : boolean;
  2803. var
  2804. oldb : boolean;
  2805. begin
  2806. { there are recursive calls to needs_inittable possible, }
  2807. { so we have to change to old value how else should }
  2808. { we do that ? check_rec_rtti can't be a nested }
  2809. { procedure of needs_rtti ! }
  2810. oldb:=binittable;
  2811. binittable:=false;
  2812. publicsyms^.foreach(check_rec_inittable);
  2813. needs_inittable:=binittable;
  2814. binittable:=oldb;
  2815. end;
  2816. procedure count_published_properties(sym:{$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});
  2817. {$ifndef fpc}far;{$endif}
  2818. begin
  2819. if (psym(sym)^.typ=propertysym) and ((psym(sym)^.properties and sp_published)<>0) then
  2820. inc(count);
  2821. end;
  2822. procedure write_property_info(sym : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});{$ifndef fpc}far;{$endif}
  2823. var
  2824. proctypesinfo : byte;
  2825. procedure writeproc(sym : psym;def : pdef;shiftvalue : byte);
  2826. var
  2827. typvalue : byte;
  2828. begin
  2829. if not(assigned(sym)) then
  2830. begin
  2831. rttilist^.concat(new(pai_const,init_32bit(1)));
  2832. typvalue:=3;
  2833. end
  2834. else if sym^.typ=varsym then
  2835. begin
  2836. rttilist^.concat(new(pai_const,init_32bit(
  2837. pvarsym(sym)^.address)));
  2838. typvalue:=0;
  2839. end
  2840. else
  2841. begin
  2842. if (pprocdef(def)^.options and povirtualmethod)=0 then
  2843. begin
  2844. rttilist^.concat(new(pai_const_symbol,init(pprocdef(def)^.mangledname)));
  2845. typvalue:=1;
  2846. end
  2847. else
  2848. begin
  2849. { virtual method, write vmt offset }
  2850. rttilist^.concat(new(pai_const,init_32bit(pprocdef(def)^.extnumber*4+12)));
  2851. typvalue:=2;
  2852. end;
  2853. end;
  2854. proctypesinfo:=proctypesinfo or (typvalue shl shiftvalue);
  2855. end;
  2856. begin
  2857. if (psym(sym)^.typ=propertysym) and
  2858. ((ppropertysym(sym)^.options and ppo_indexed)<>0) then
  2859. proctypesinfo:=$40
  2860. else
  2861. proctypesinfo:=0;
  2862. if (psym(sym)^.typ=propertysym) and
  2863. ((psym(sym)^.properties and sp_published)<>0) then
  2864. begin
  2865. rttilist^.concat(new(pai_const_symbol,init(ppropertysym(sym)^.proptype^.get_rtti_label)));
  2866. writeproc(ppropertysym(sym)^.readaccesssym,ppropertysym(sym)^.readaccessdef,0);
  2867. writeproc(ppropertysym(sym)^.writeaccesssym,ppropertysym(sym)^.writeaccessdef,2);
  2868. { isn't it stored ? }
  2869. if (ppropertysym(sym)^.options and ppo_stored)=0 then
  2870. begin
  2871. rttilist^.concat(new(pai_const,init_32bit(1)));
  2872. proctypesinfo:=proctypesinfo or (3 shl 4);
  2873. end
  2874. else
  2875. writeproc(ppropertysym(sym)^.storedsym,ppropertysym(sym)^.storeddef,4);
  2876. rttilist^.concat(new(pai_const,init_32bit(ppropertysym(sym)^.index)));
  2877. rttilist^.concat(new(pai_const,init_32bit(ppropertysym(sym)^.default)));
  2878. rttilist^.concat(new(pai_const,init_16bit(count)));
  2879. inc(count);
  2880. rttilist^.concat(new(pai_const,init_8bit(proctypesinfo)));
  2881. rttilist^.concat(new(pai_const,init_8bit(length(ppropertysym(sym)^.name))));
  2882. rttilist^.concat(new(pai_string,init(ppropertysym(sym)^.name)));
  2883. end;
  2884. end;
  2885. procedure generate_published_child_rtti(sym : {$ifndef OLDPPU}pnamedindexobject{$else}psym{$endif});
  2886. {$ifndef fpc}far;{$endif}
  2887. begin
  2888. if (psym(sym)^.typ=propertysym) and
  2889. ((psym(sym)^.properties and sp_published)<>0) then
  2890. ppropertysym(sym)^.proptype^.get_rtti_label;
  2891. end;
  2892. procedure tobjectdef.write_child_rtti_data;
  2893. begin
  2894. publicsyms^.foreach(generate_published_child_rtti);
  2895. end;
  2896. procedure tobjectdef.generate_rtti;
  2897. begin
  2898. has_rtti:=true;
  2899. getlabel(rtti_label);
  2900. write_child_rtti_data;
  2901. rttilist^.concat(new(pai_symbol,init_global(rtti_name)));
  2902. rttilist^.concat(new(pai_label,init(rtti_label)));
  2903. write_rtti_data;
  2904. end;
  2905. function tobjectdef.next_free_name_index : longint;
  2906. var
  2907. i : longint;
  2908. begin
  2909. if assigned(childof) and ((childof^.options and oo_can_have_published)<>0) then
  2910. i:=childof^.next_free_name_index
  2911. else
  2912. i:=0;
  2913. count:=0;
  2914. publicsyms^.foreach(count_published_properties);
  2915. next_free_name_index:=i+count;
  2916. end;
  2917. procedure tobjectdef.write_rtti_data;
  2918. begin
  2919. if isclass then
  2920. rttilist^.concat(new(pai_const,init_8bit(tkclass)))
  2921. else
  2922. rttilist^.concat(new(pai_const,init_8bit(tkobject)));
  2923. { generate the name }
  2924. rttilist^.concat(new(pai_const,init_8bit(length(objname^))));
  2925. rttilist^.concat(new(pai_string,init(objname^)));
  2926. { write class type }
  2927. rttilist^.concat(new(pai_const_symbol,init(vmt_mangledname)));
  2928. { write owner typeinfo }
  2929. if assigned(childof) and ((childof^.options and oo_can_have_published)<>0) then
  2930. rttilist^.concat(new(pai_const_symbol,init(childof^.get_rtti_label)))
  2931. else
  2932. rttilist^.concat(new(pai_const,init_32bit(0)));
  2933. { count total number of properties }
  2934. if assigned(childof) and ((childof^.options and oo_can_have_published)<>0) then
  2935. count:=childof^.next_free_name_index
  2936. else
  2937. count:=0;
  2938. { write it }
  2939. publicsyms^.foreach(count_published_properties);
  2940. rttilist^.concat(new(pai_const,init_16bit(count)));
  2941. { write unit name }
  2942. if assigned(owner^.name) then
  2943. begin
  2944. rttilist^.concat(new(pai_const,init_8bit(length(owner^.name^))));
  2945. rttilist^.concat(new(pai_string,init(owner^.name^)));
  2946. end
  2947. else
  2948. rttilist^.concat(new(pai_const,init_8bit(0)));
  2949. { write published properties count }
  2950. count:=0;
  2951. publicsyms^.foreach(count_published_properties);
  2952. rttilist^.concat(new(pai_const,init_16bit(count)));
  2953. { count is used to write nameindex }
  2954. { but we need an offset of the owner }
  2955. { to give each property an own slot }
  2956. if assigned(childof) and ((childof^.options and oo_can_have_published)<>0) then
  2957. count:=childof^.next_free_name_index
  2958. else
  2959. count:=0;
  2960. publicsyms^.foreach(write_property_info);
  2961. end;
  2962. function tobjectdef.is_publishable : boolean;
  2963. begin
  2964. is_publishable:=isclass;
  2965. end;
  2966. function tobjectdef.get_rtti_label : string;
  2967. begin
  2968. get_rtti_label:=rtti_name;
  2969. end;
  2970. {****************************************************************************
  2971. TERRORDEF
  2972. ****************************************************************************}
  2973. constructor terrordef.init;
  2974. begin
  2975. inherited init;
  2976. deftype:=errordef;
  2977. end;
  2978. {$ifdef GDB}
  2979. function terrordef.stabstring : pchar;
  2980. begin
  2981. stabstring:=strpnew('error'+numberstring);
  2982. end;
  2983. {$endif GDB}
  2984. {
  2985. $Log$
  2986. Revision 1.106 1999-04-26 18:30:01 peter
  2987. * farpointerdef moved into pointerdef.is_far
  2988. Revision 1.105 1999/04/26 13:31:47 peter
  2989. * release storenumber,double_checksum
  2990. Revision 1.104 1999/04/21 09:43:50 peter
  2991. * storenumber works
  2992. * fixed some typos in double_checksum
  2993. + incompatible types type1 and type2 message (with storenumber)
  2994. Revision 1.103 1999/04/19 09:28:20 peter
  2995. * fixed crash when writing overload operator to ppu
  2996. Revision 1.102 1999/04/17 22:01:28 pierre
  2997. * typo error fix in STORENUMBER code
  2998. Revision 1.101 1999/04/14 09:14:58 peter
  2999. * first things to store the symbol/def number in the ppu
  3000. Revision 1.100 1999/04/08 15:57:51 peter
  3001. + subrange checking for readln()
  3002. Revision 1.99 1999/04/07 15:39:32 pierre
  3003. + double_checksum code added
  3004. Revision 1.98 1999/03/06 17:24:16 peter
  3005. * reset savesize in tdef.init
  3006. Revision 1.97 1999/03/01 13:45:04 pierre
  3007. + added staticppusymtable symtable type for local browsing
  3008. Revision 1.96 1999/02/25 21:02:52 peter
  3009. * ag386bin updates
  3010. + coff writer
  3011. Revision 1.95 1999/02/23 18:29:23 pierre
  3012. * win32 compilation error fix
  3013. + some work for local browser (not cl=omplete yet)
  3014. Revision 1.94 1999/02/22 20:13:38 florian
  3015. + first implementation of message keyword
  3016. Revision 1.93 1999/02/22 13:07:07 pierre
  3017. + -b and -bl options work !
  3018. + cs_local_browser ($L+) is disabled if cs_browser ($Y+)
  3019. is not enabled when quitting global section
  3020. * local vars and procedures are not yet stored into PPU
  3021. Revision 1.92 1999/02/17 10:14:20 peter
  3022. * set the first enumsym also for subrange types
  3023. Revision 1.91 1999/02/08 09:51:21 pierre
  3024. * gdb info for local functions was wrong
  3025. Revision 1.90 1999/01/26 09:57:29 pierre
  3026. * open arrays stabs changed
  3027. Revision 1.89 1999/01/22 17:29:30 pierre
  3028. * overflow in addname for open arrays removed
  3029. Revision 1.88 1999/01/20 14:18:39 pierre
  3030. * bugs related to mangledname solved
  3031. - linux external without name
  3032. -external procs already used
  3033. (added count and is_used boolean fiels in tprocvar)
  3034. Revision 1.87 1999/01/19 10:56:05 pierre
  3035. typeof(object) without vmt generates an error instead of an internalerror
  3036. Revision 1.86 1999/01/12 14:25:32 peter
  3037. + BrowserLog for browser.log generation
  3038. + BrowserCol for browser info in TCollections
  3039. * released all other UseBrowser
  3040. Revision 1.85 1998/12/30 22:15:52 peter
  3041. + farpointer type
  3042. * absolutesym now also stores if its far
  3043. Revision 1.84 1998/12/30 13:41:12 peter
  3044. * released valuepara
  3045. Revision 1.83 1998/12/21 14:03:08 pierre
  3046. * procvar stabs correction
  3047. Revision 1.82 1998/12/19 00:23:52 florian
  3048. * ansistring memory leaks fixed
  3049. Revision 1.81 1998/12/11 08:57:22 pierre
  3050. * internal gdb types for booleans and 64bit integers
  3051. Revision 1.80 1998/12/10 09:47:26 florian
  3052. + basic operations with int64/qord (compiler with -dint64)
  3053. + rtti of enumerations extended: names are now written
  3054. Revision 1.79 1998/12/08 10:18:12 peter
  3055. + -gh for heaptrc unit
  3056. Revision 1.78 1998/12/08 09:06:30 pierre
  3057. + constructor destructor info for gdbpas
  3058. Revision 1.77 1998/12/01 23:37:39 pierre
  3059. * function type problem for gdb fix
  3060. Revision 1.76 1998/11/29 21:45:48 florian
  3061. * problem with arrays with init tables fixed
  3062. Revision 1.75 1998/11/29 12:45:59 peter
  3063. * hack for arraydef.size overflow
  3064. Revision 1.74 1998/11/27 14:50:47 peter
  3065. + open strings, $P switch support
  3066. Revision 1.73 1998/11/26 14:47:00 michael
  3067. + Fixed RTTI constants
  3068. Revision 1.72 1998/11/25 14:35:28 florian
  3069. * writting of rtti for properties fixed
  3070. Revision 1.71 1998/11/20 15:35:59 florian
  3071. * problems with rtti fixed, hope it works
  3072. Revision 1.70 1998/11/18 15:44:16 peter
  3073. * VALUEPARA for tp7 compatible value parameters
  3074. Revision 1.69 1998/11/10 17:54:56 peter
  3075. * removed warning
  3076. Revision 1.68 1998/11/05 23:34:36 peter
  3077. * don't dispose staticsymtable (caused crash under tp7 after a fatal
  3078. error)
  3079. Revision 1.67 1998/11/05 12:02:56 peter
  3080. * released useansistring
  3081. * removed -Sv, its now available in fpc modes
  3082. Revision 1.66 1998/10/26 22:58:22 florian
  3083. * new introduded problem with classes fix, the parent class wasn't set
  3084. correct, if the class was defined forward before
  3085. Revision 1.65 1998/10/26 14:19:28 pierre
  3086. + added options -lS and -lT for source and target os output
  3087. (to have a easier way to test OS_SOURCE abd OS_TARGET in makefiles)
  3088. * several problems with rtti data
  3089. (type of sym was not checked)
  3090. assumed to be varsym when they could be procsym or property syms !!
  3091. Revision 1.64 1998/10/22 17:11:21 pierre
  3092. + terminated the include exclude implementation for i386
  3093. * enums inside records fixed
  3094. Revision 1.63 1998/10/20 09:32:56 peter
  3095. * removed some unused vars
  3096. Revision 1.62 1998/10/20 08:06:58 pierre
  3097. * several memory corruptions due to double freemem solved
  3098. => never use p^.loc.location:=p^.left^.loc.location;
  3099. + finally I added now by default
  3100. that ra386dir translates global and unit symbols
  3101. + added a first field in tsymtable and
  3102. a nextsym field in tsym
  3103. (this allows to obtain ordered type info for
  3104. records and objects in gdb !)
  3105. Revision 1.61 1998/10/19 08:55:05 pierre
  3106. * wrong stabs info corrected once again !!
  3107. + variable vmt offset with vmt field only if required
  3108. implemented now !!!
  3109. Revision 1.60 1998/10/16 13:12:53 pierre
  3110. * added vmt_offsets in destructors code also !!!
  3111. * vmt_offset code for m68k
  3112. Revision 1.59 1998/10/16 08:51:51 peter
  3113. + target_os.stackalignment
  3114. + stack can be aligned at 2 or 4 byte boundaries
  3115. Revision 1.58 1998/10/15 15:13:30 pierre
  3116. + added oo_hasconstructor and oo_hasdestructor
  3117. for objects options
  3118. Revision 1.57 1998/10/14 15:54:20 pierre
  3119. * smallsets are not entirely implemented for
  3120. m68k added a ifdef usesmallset
  3121. that is allways defined for i386
  3122. (enables testing for m68k)
  3123. Revision 1.56 1998/10/09 11:47:56 pierre
  3124. * still more memory leaks fixes !!
  3125. Revision 1.55 1998/10/06 17:16:55 pierre
  3126. * some memory leaks fixed (thanks to Peter for heaptrc !)
  3127. Revision 1.54 1998/10/05 21:33:28 peter
  3128. * fixed 161,165,166,167,168
  3129. Revision 1.53 1998/10/05 12:48:39 pierre
  3130. * wrong handling of range check for arrays fixed
  3131. Revision 1.52 1998/10/02 07:20:38 florian
  3132. * range checking in units doesn't work if the units are smartlinked, fixed
  3133. Revision 1.51 1998/09/25 12:01:41 florian
  3134. * tobjectdef.publicsyms.datasize was set to savesize, this is wrong now
  3135. because the symtable size is read from the ppu file
  3136. Revision 1.50 1998/09/23 15:46:40 florian
  3137. * problem with with and classes fixed
  3138. Revision 1.49 1998/09/23 12:03:55 peter
  3139. * overloading fix for array of const
  3140. Revision 1.48 1998/09/22 15:37:23 peter
  3141. + array of const start
  3142. Revision 1.47 1998/09/21 15:46:01 michael
  3143. Applied florians fix for check_rec_inittable
  3144. Revision 1.46 1998/09/21 08:45:21 pierre
  3145. + added vmt_offset in tobjectdef.write for fututre use
  3146. (first steps to have objects without vmt if no virtual !!)
  3147. + added fpu_used field for tabstractprocdef :
  3148. sets this level to 2 if the functions return with value in FPU
  3149. (is then set to correct value at parsing of implementation)
  3150. THIS MIGHT refuse some code with FPU expression too complex
  3151. that were accepted before and even in some cases
  3152. that don't overflow in fact
  3153. ( like if f : float; is a forward that finally in implementation
  3154. only uses one fpu register !!)
  3155. Nevertheless I think that it will improve security on
  3156. FPU operations !!
  3157. * most other changes only for UseBrowser code
  3158. (added symtable references for record and objects)
  3159. local switch for refs to args and local of each function
  3160. (static symtable still missing)
  3161. UseBrowser still not stable and probably broken by
  3162. the definition hash array !!
  3163. Revision 1.45 1998/09/20 08:31:29 florian
  3164. + bit 6 of tpropinfo.propprocs is set, if the property contains a
  3165. constant index
  3166. Revision 1.44 1998/09/19 15:23:58 florian
  3167. * rtti for ordtypes corrected
  3168. Revision 1.43 1998/09/18 17:12:40 florian
  3169. * problem with writing of class references fixed
  3170. Revision 1.42 1998/09/17 13:41:20 pierre
  3171. sizeof(TPOINT) problem
  3172. Revision 1.40.2.2 1998/09/17 08:42:33 pierre
  3173. TPOINT sizeof fix
  3174. Revision 1.41 1998/09/15 17:39:30 jonas
  3175. + bugfix from bugfix branch
  3176. Revision 1.40.2.1 1998/09/15 17:35:32 jonas
  3177. * chenged string_typ in tstringdef.wideload from ansistring to widestring
  3178. Revision 1.40 1998/09/09 15:34:00 peter
  3179. * removed warnings
  3180. Revision 1.39 1998/09/08 10:23:44 pierre
  3181. * name field of filedef corrected
  3182. Revision 1.38 1998/09/07 23:10:23 florian
  3183. * a lot of stuff fixed regarding rtti and publishing of properties,
  3184. basics should now work
  3185. Revision 1.37 1998/09/07 19:33:24 florian
  3186. + some stuff for property rtti added:
  3187. - NameIndex of the TPropInfo record is now written correctly
  3188. - the DEFAULT/NODEFAULT keyword is supported now
  3189. - the default value and the storedsym/def are now written to
  3190. the PPU fiel
  3191. Revision 1.36 1998/09/07 17:37:01 florian
  3192. * first fixes for published properties
  3193. Revision 1.35 1998/09/06 22:42:02 florian
  3194. + rtti genreation for properties added
  3195. Revision 1.34 1998/09/04 18:15:02 peter
  3196. * filedef updated
  3197. Revision 1.33 1998/09/03 17:08:49 pierre
  3198. * better lines for stabs
  3199. (no scroll back to if before else part
  3200. no return to case line at jump outside case)
  3201. + source lines also if not in order
  3202. Revision 1.32 1998/09/03 16:03:20 florian
  3203. + rtti generation
  3204. * init table generation changed
  3205. Revision 1.31 1998/09/02 15:14:28 peter
  3206. * enum packing changed from len to max
  3207. Revision 1.30 1998/09/01 17:37:29 peter
  3208. * removed debug writeln :(
  3209. Revision 1.29 1998/09/01 12:53:25 peter
  3210. + aktpackenum
  3211. Revision 1.28 1998/09/01 07:54:22 pierre
  3212. * UseBrowser a little updated (might still be buggy !!)
  3213. * bug in psub.pas in function specifier removed
  3214. * stdcall allowed in interface and in implementation
  3215. (FPC will not yet complain if it is missing in either part
  3216. because stdcall is only a dummy !!)
  3217. Revision 1.27 1998/08/28 12:51:43 florian
  3218. + ansistring to pchar type cast fixed
  3219. Revision 1.26 1998/08/25 12:42:44 pierre
  3220. * CDECL changed to CVAR for variables
  3221. specifications are read in structures also
  3222. + started adding GPC compatibility mode ( option -Sp)
  3223. * names changed to lowercase
  3224. Revision 1.25 1998/08/23 21:04:38 florian
  3225. + rtti generation for classes added
  3226. + new/dispose do now also a call to INITIALIZE/FINALIZE, if necessaray
  3227. Revision 1.24 1998/08/20 12:53:26 peter
  3228. * object_options are always written for object syms
  3229. Revision 1.23 1998/08/19 00:42:42 peter
  3230. + subrange types for enums
  3231. + checking for bounds type with ranges
  3232. Revision 1.22 1998/08/17 10:10:10 peter
  3233. - removed OLDPPU
  3234. Revision 1.21 1998/08/10 14:50:28 peter
  3235. + localswitches, moduleswitches, globalswitches splitting
  3236. Revision 1.20 1998/07/18 22:54:30 florian
  3237. * some ansi/wide/longstring support fixed:
  3238. o parameter passing
  3239. o returning as result from functions
  3240. Revision 1.19 1998/07/14 14:47:05 peter
  3241. * released NEWINPUT
  3242. Revision 1.18 1998/07/10 10:51:04 peter
  3243. * m68k updates
  3244. Revision 1.16 1998/07/07 11:20:13 peter
  3245. + NEWINPUT for a better inputfile and scanner object
  3246. Revision 1.15 1998/06/24 14:48:37 peter
  3247. * ifdef newppu -> ifndef oldppu
  3248. Revision 1.14 1998/06/16 08:56:31 peter
  3249. + targetcpu
  3250. * cleaner pmodules for newppu
  3251. Revision 1.13 1998/06/15 15:38:09 pierre
  3252. * small bug in systems.pas corrected
  3253. + operators in different units better hanlded
  3254. Revision 1.12 1998/06/15 14:30:12 daniel
  3255. * Reverted my changes.
  3256. Revision 1.10 1998/06/13 00:10:16 peter
  3257. * working browser and newppu
  3258. * some small fixes against crashes which occured in bp7 (but not in
  3259. fpc?!)
  3260. Revision 1.9 1998/06/12 14:10:37 michael
  3261. * Fixed wrong code for ansistring
  3262. Revision 1.8 1998/06/11 10:11:58 peter
  3263. * -gb works again
  3264. Revision 1.7 1998/06/07 15:30:25 florian
  3265. + first working rtti
  3266. + data init/final. for local variables
  3267. Revision 1.6 1998/06/05 14:37:37 pierre
  3268. * fixes for inline for operators
  3269. * inline procedure more correctly restricted
  3270. Revision 1.5 1998/06/04 23:52:01 peter
  3271. * m68k compiles
  3272. + .def file creation moved to gendef.pas so it could also be used
  3273. for win32
  3274. Revision 1.4 1998/06/04 09:55:45 pierre
  3275. * demangled name of procsym reworked to become independant of the mangling
  3276. scheme
  3277. Revision 1.3 1998/06/03 22:49:03 peter
  3278. + wordbool,longbool
  3279. * rename bis,von -> high,low
  3280. * moved some systemunit loading/creating to psystem.pas
  3281. Revision 1.2 1998/05/31 14:13:37 peter
  3282. * fixed call bugs with assembler readers
  3283. + OPR_SYMBOL to hold a symbol in the asm parser
  3284. * fixed staticsymtable vars which were acessed through %ebp instead of
  3285. name
  3286. Revision 1.1 1998/05/27 19:45:09 peter
  3287. * symtable.pas splitted into includefiles
  3288. * symtable adapted for $ifndef OLDPPU
  3289. }