symdef.inc 112 KB

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