symdef.inc 102 KB

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