symdef.inc 125 KB

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