123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900 |
- {
- $Id$
- Copyright (c) 1993-99 by Florian Klaempfl, Pierre Muller
- Symbol table implementation for the definitions
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- {****************************************************************************
- TDEF (base class for definitions)
- ****************************************************************************}
- const
- { if you change one of the following contants, }
- { you have also to change the typinfo unit }
- { and the rtl/i386,template/rttip.inc files }
- tkUnknown = 0;
- tkInteger = 1;
- tkChar = 2;
- tkEnumeration = 3;
- tkFloat = 4;
- tkSet = 5;
- tkMethod = 6;
- tkSString = 7;
- tkString = tkSString;
- tkLString = 8;
- tkAString = 9;
- tkWString = 10;
- tkVariant = 11;
- tkArray = 12;
- tkRecord = 13;
- tkInterface = 14;
- tkClass = 15;
- tkObject = 16;
- tkWChar = 17;
- tkBool = 18;
- otSByte = 0;
- otUByte = 1;
- otSWord = 2;
- otUWord = 3;
- otSLong = 4;
- otULong = 5;
- ftSingle = 0;
- ftDouble = 1;
- ftExtended = 2;
- ftComp = 3;
- ftCurr = 4;
- ftFixed16 = 5;
- ftFixed32 = 6;
- mkProcedure = 0;
- mkFunction = 1;
- mkConstructor = 2;
- mkDestructor = 3;
- mkClassProcedure= 4;
- mkClassFunction = 5;
- pfvar = 1;
- pfConst = 2;
- pfArray = 4;
- pfAddress = 8;
- pfReference = 16;
- pfOut = 32;
- constructor tdef.init;
- begin
- inherited init;
- deftype:=abstractdef;
- owner := nil;
- sym := nil;
- savesize := 0;
- if registerdef then
- symtablestack^.registerdef(@self);
- has_rtti:=false;
- has_inittable:=false;
- {$ifdef GDB}
- is_def_stab_written := false;
- globalnb := 0;
- {$endif GDB}
- if assigned(lastglobaldef) then
- begin
- lastglobaldef^.nextglobal := @self;
- previousglobal:=lastglobaldef;
- end
- else
- begin
- firstglobaldef := @self;
- previousglobal := nil;
- end;
- lastglobaldef := @self;
- nextglobal := nil;
- end;
- constructor tdef.load;
- begin
- deftype:=abstractdef;
- next := nil;
- owner := nil;
- has_rtti:=false;
- has_inittable:=false;
- {$ifdef GDB}
- is_def_stab_written := false;
- globalnb := 0;
- {$endif GDB}
- if assigned(lastglobaldef) then
- begin
- lastglobaldef^.nextglobal := @self;
- previousglobal:=lastglobaldef;
- end
- else
- begin
- firstglobaldef := @self;
- previousglobal:=nil;
- end;
- lastglobaldef := @self;
- nextglobal := nil;
- { load }
- indexnr:=readword;
- sym:=ptypesym(readsymref);
- end;
- destructor tdef.done;
- begin
- { first element ? }
- if not(assigned(previousglobal)) then
- begin
- firstglobaldef := nextglobal;
- if assigned(firstglobaldef) then
- firstglobaldef^.previousglobal:=nil;
- end
- else
- begin
- { remove reference in the element before }
- previousglobal^.nextglobal:=nextglobal;
- end;
- { last element ? }
- if not(assigned(nextglobal)) then
- begin
- lastglobaldef := previousglobal;
- if assigned(lastglobaldef) then
- lastglobaldef^.nextglobal:=nil;
- end
- else
- nextglobal^.previousglobal:=previousglobal;
- previousglobal:=nil;
- nextglobal:=nil;
- while assigned(sym) do
- begin
- sym^.definition:=nil;
- sym:=sym^.synonym;
- end;
- end;
- { used for enumdef because the symbols are
- inserted in the owner symtable }
- procedure tdef.correct_owner_symtable;
- var
- st : psymtable;
- begin
- if assigned(owner) and
- (owner^.symtabletype in [recordsymtable,objectsymtable]) then
- begin
- owner^.defindex^.deleteindex(@self);
- st:=owner;
- while (st^.symtabletype in [recordsymtable,objectsymtable]) do
- st:=st^.next;
- st^.registerdef(@self);
- end;
- end;
- function tdef.typename:string;
- begin
- if assigned(sym) then
- typename:=Upper(sym^.name)
- else
- typename:=gettypename;
- end;
- function tdef.gettypename : string;
- begin
- gettypename:='<unknown type>'
- end;
- function tdef.is_in_current : boolean;
- var
- p : psymtable;
- begin
- p:=owner;
- is_in_current:=false;
- while assigned(p) do
- begin
- if (p=current_module^.globalsymtable) or (p=current_module^.localsymtable)
- or (p^.symtabletype in [globalsymtable,staticsymtable]) then
- begin
- is_in_current:=true;
- exit;
- end
- else if p^.symtabletype in [{localsymtable,parasymtable,}objectsymtable] then
- begin
- if assigned(p^.defowner) then
- p:=pobjectdef(p^.defowner)^.owner
- else
- exit;
- end
- else
- exit;
- end;
- end;
- procedure tdef.write;
- begin
- writeword(indexnr);
- writesymref(sym);
- {$ifdef GDB}
- if globalnb = 0 then
- begin
- if assigned(owner) then
- globalnb := owner^.getnewtypecount
- else
- begin
- globalnb := PGlobalTypeCount^;
- Inc(PGlobalTypeCount^);
- end;
- end;
- {$endif GDB}
- end;
- function tdef.size : longint;
- begin
- size:=savesize;
- end;
- function tdef.alignment : longint;
- begin
- { normal alignment by default }
- alignment:=0;
- end;
- {$ifdef GDB}
- procedure tdef.set_globalnb;
- begin
- globalnb :=PGlobalTypeCount^;
- inc(PglobalTypeCount^);
- end;
- function tdef.stabstring : pchar;
- begin
- stabstring := strpnew('t'+numberstring+';');
- end;
- function tdef.numberstring : string;
- var table : psymtable;
- begin
- {formal def have no type !}
- if deftype = formaldef then
- begin
- numberstring := voiddef^.numberstring;
- exit;
- end;
- if (not assigned(sym)) or (not sym^.isusedinstab) then
- begin
- {set even if debuglist is not defined}
- if assigned(sym) then
- sym^.isusedinstab := true;
- if assigned(debuglist) and not is_def_stab_written then
- concatstabto(debuglist);
- end;
- if not (cs_gdb_dbx in aktglobalswitches) then
- begin
- if globalnb = 0 then
- set_globalnb;
- numberstring := tostr(globalnb);
- end
- else
- begin
- if globalnb = 0 then
- begin
- if assigned(owner) then
- globalnb := owner^.getnewtypecount
- else
- begin
- globalnb := PGlobalTypeCount^;
- Inc(PGlobalTypeCount^);
- end;
- end;
- if assigned(sym) then
- begin
- table := sym^.owner;
- if table^.unitid > 0 then
- numberstring := '('+tostr(table^.unitid)+','
- +tostr(sym^.definition^.globalnb)+')'
- else
- numberstring := tostr(globalnb);
- exit;
- end;
- numberstring := tostr(globalnb);
- end;
- end;
- function tdef.allstabstring : pchar;
- var stabchar : string[2];
- ss,st : pchar;
- sname : string;
- sym_line_no : longint;
- begin
- ss := stabstring;
- getmem(st,strlen(ss)+512);
- stabchar := 't';
- if deftype in tagtypes then
- stabchar := 'Tt';
- if assigned(sym) then
- begin
- sname := sym^.name;
- sym_line_no:=sym^.fileinfo.line;
- end
- else
- begin
- sname := ' ';
- sym_line_no:=0;
- end;
- strpcopy(st,'"'+sname+':'+stabchar+numberstring+'=');
- strpcopy(strecopy(strend(st),ss),'",'+tostr(N_LSYM)+',0,'+tostr(sym_line_no)+',0');
- allstabstring := strnew(st);
- freemem(st,strlen(ss)+512);
- strdispose(ss);
- end;
- procedure tdef.concatstabto(asmlist : paasmoutput);
- var stab_str : pchar;
- begin
- if ((sym = nil) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches))
- and not is_def_stab_written then
- begin
- If cs_gdb_dbx in aktglobalswitches then
- begin
- { otherwise you get two of each def }
- If assigned(sym) then
- begin
- if sym^.typ=typesym then
- sym^.isusedinstab:=true;
- if (sym^.owner = nil) or
- ((sym^.owner^.symtabletype = unitsymtable) and
- punitsymtable(sym^.owner)^.dbx_count_ok) then
- begin
- {with DBX we get the definition from the other objects }
- is_def_stab_written := true;
- exit;
- end;
- end;
- end;
- { to avoid infinite loops }
- is_def_stab_written := true;
- stab_str := allstabstring;
- asmlist^.concat(new(pai_stabs,init(stab_str)));
- end;
- end;
- {$endif GDB}
- procedure tdef.deref;
- begin
- end;
- procedure tdef.symderef;
- begin
- resolvesym(psym(sym));
- end;
- { rtti generation }
- procedure tdef.generate_rtti;
- begin
- has_rtti:=true;
- getdatalabel(rtti_label);
- write_child_rtti_data;
- rttilist^.concat(new(pai_symbol,init(rtti_label,0)));
- write_rtti_data;
- rttilist^.concat(new(pai_symbol_end,init(rtti_label)));
- end;
- function tdef.get_rtti_label : string;
- begin
- if not(has_rtti) then
- generate_rtti;
- get_rtti_label:=rtti_label^.name;
- end;
- { init table handling }
- function tdef.needs_inittable : boolean;
- begin
- needs_inittable:=false;
- end;
- procedure tdef.generate_inittable;
- begin
- has_inittable:=true;
- getdatalabel(inittable_label);
- write_child_init_data;
- rttilist^.concat(new(pai_label,init(inittable_label)));
- write_init_data;
- end;
- procedure tdef.write_init_data;
- begin
- write_rtti_data;
- end;
- procedure tdef.write_child_init_data;
- begin
- write_child_rtti_data;
- end;
- function tdef.get_inittable_label : pasmlabel;
- begin
- if not(has_inittable) then
- generate_inittable;
- get_inittable_label:=inittable_label;
- end;
- procedure tdef.write_rtti_name;
- var
- str : string;
- begin
- { name }
- if assigned(sym) then
- begin
- str:=sym^.name;
- rttilist^.concat(new(pai_string,init(chr(length(str))+str)));
- end
- else
- rttilist^.concat(new(pai_string,init(#0)))
- end;
- { returns true, if the definition can be published }
- function tdef.is_publishable : boolean;
- begin
- is_publishable:=false;
- end;
- procedure tdef.write_rtti_data;
- begin
- end;
- procedure tdef.write_child_rtti_data;
- begin
- end;
- function tdef.is_intregable : boolean;
- begin
- is_intregable:=false;
- case deftype of
- pointerdef,
- enumdef,
- procvardef :
- is_intregable:=true;
- orddef :
- case porddef(@self)^.typ of
- bool8bit,bool16bit,bool32bit,
- u8bit,u16bit,u32bit,
- s8bit,s16bit,s32bit:
- is_intregable:=true;
- end;
- setdef:
- is_intregable:=is_smallset(@self);
- end;
- end;
- function tdef.is_fpuregable : boolean;
- begin
- is_fpuregable:=(deftype=floatdef) and not(pfloatdef(@self)^.typ in [f32bit,f16bit]);
- end;
- {****************************************************************************
- TSTRINGDEF
- ****************************************************************************}
- constructor tstringdef.shortinit(l : byte);
- begin
- tdef.init;
- string_typ:=st_shortstring;
- deftype:=stringdef;
- len:=l;
- savesize:=len+1;
- end;
- constructor tstringdef.shortload;
- begin
- tdef.load;
- string_typ:=st_shortstring;
- deftype:=stringdef;
- len:=readbyte;
- savesize:=len+1;
- end;
- constructor tstringdef.longinit(l : longint);
- begin
- tdef.init;
- string_typ:=st_longstring;
- deftype:=stringdef;
- len:=l;
- savesize:=target_os.size_of_pointer;
- end;
- constructor tstringdef.longload;
- begin
- tdef.load;
- deftype:=stringdef;
- string_typ:=st_longstring;
- len:=readlong;
- savesize:=target_os.size_of_pointer;
- end;
- constructor tstringdef.ansiinit(l : longint);
- begin
- tdef.init;
- string_typ:=st_ansistring;
- deftype:=stringdef;
- len:=l;
- savesize:=target_os.size_of_pointer;
- end;
- constructor tstringdef.ansiload;
- begin
- tdef.load;
- deftype:=stringdef;
- string_typ:=st_ansistring;
- len:=readlong;
- savesize:=target_os.size_of_pointer;
- end;
- constructor tstringdef.wideinit(l : longint);
- begin
- tdef.init;
- string_typ:=st_widestring;
- deftype:=stringdef;
- len:=l;
- savesize:=target_os.size_of_pointer;
- end;
- constructor tstringdef.wideload;
- begin
- tdef.load;
- deftype:=stringdef;
- string_typ:=st_widestring;
- len:=readlong;
- savesize:=target_os.size_of_pointer;
- end;
- function tstringdef.stringtypname:string;
- const
- typname:array[tstringtype] of string[8]=(
- 'SHORTSTR','LONGSTR','ANSISTR','WIDESTR'
- );
- begin
- stringtypname:=typname[string_typ];
- end;
- function tstringdef.size : longint;
- begin
- size:=savesize;
- end;
- procedure tstringdef.write;
- begin
- tdef.write;
- if string_typ=st_shortstring then
- writebyte(len)
- else
- writelong(len);
- case string_typ of
- st_shortstring : current_ppu^.writeentry(ibshortstringdef);
- st_longstring : current_ppu^.writeentry(iblongstringdef);
- st_ansistring : current_ppu^.writeentry(ibansistringdef);
- st_widestring : current_ppu^.writeentry(ibwidestringdef);
- end;
- end;
- {$ifdef GDB}
- function tstringdef.stabstring : pchar;
- var
- bytest,charst,longst : string;
- begin
- case string_typ of
- st_shortstring:
- begin
- charst := typeglobalnumber('char');
- { this is what I found in stabs.texinfo but
- gdb 4.12 for go32 doesn't understand that !! }
- {$IfDef GDBknowsstrings}
- stabstring := strpnew('n'+charst+';'+tostr(len));
- {$else}
- bytest := typeglobalnumber('byte');
- stabstring := strpnew('s'+tostr(len+1)+'length:'+bytest
- +',0,8;st:ar'+bytest
- +';1;'+tostr(len)+';'+charst+',8,'+tostr(len*8)+';;');
- {$EndIf}
- end;
- st_longstring:
- begin
- charst := typeglobalnumber('char');
- { this is what I found in stabs.texinfo but
- gdb 4.12 for go32 doesn't understand that !! }
- {$IfDef GDBknowsstrings}
- stabstring := strpnew('n'+charst+';'+tostr(len));
- {$else}
- bytest := typeglobalnumber('byte');
- longst := typeglobalnumber('longint');
- stabstring := strpnew('s'+tostr(len+5)+'length:'+longst
- +',0,32;dummy:'+bytest+',32,8;st:ar'+bytest
- +';1;'+tostr(len)+';'+charst+',40,'+tostr(len*8)+';;');
- {$EndIf}
- end;
- st_ansistring:
- begin
- { an ansi string looks like a pchar easy !! }
- stabstring:=strpnew('*'+typeglobalnumber('char'));
- end;
- st_widestring:
- begin
- { an ansi string looks like a pchar easy !! }
- stabstring:=strpnew('*'+typeglobalnumber('char'));
- end;
- end;
- end;
- procedure tstringdef.concatstabto(asmlist : paasmoutput);
- begin
- inherited concatstabto(asmlist);
- end;
- {$endif GDB}
- function tstringdef.needs_inittable : boolean;
- begin
- needs_inittable:=string_typ in [st_ansistring,st_widestring];
- end;
- function tstringdef.gettypename : string;
- const
- names : array[tstringtype] of string[20] =
- ('ShortString','LongString','AnsiString','WideString');
- begin
- gettypename:=names[string_typ];
- end;
- procedure tstringdef.write_rtti_data;
- begin
- case string_typ of
- st_ansistring:
- begin
- rttilist^.concat(new(pai_const,init_8bit(tkAString)));
- write_rtti_name;
- end;
- st_widestring:
- begin
- rttilist^.concat(new(pai_const,init_8bit(tkWString)));
- write_rtti_name;
- end;
- st_longstring:
- begin
- rttilist^.concat(new(pai_const,init_8bit(tkLString)));
- write_rtti_name;
- end;
- st_shortstring:
- begin
- rttilist^.concat(new(pai_const,init_8bit(tkSString)));
- write_rtti_name;
- rttilist^.concat(new(pai_const,init_8bit(len)));
- end;
- end;
- end;
- function tstringdef.is_publishable : boolean;
- begin
- is_publishable:=true;
- end;
- {****************************************************************************
- TENUMDEF
- ****************************************************************************}
- constructor tenumdef.init;
- begin
- tdef.init;
- deftype:=enumdef;
- minval:=0;
- maxval:=0;
- calcsavesize;
- has_jumps:=false;
- basedef:=nil;
- rangenr:=0;
- firstenum:=nil;
- correct_owner_symtable;
- end;
- constructor tenumdef.init_subrange(_basedef:penumdef;_min,_max:longint);
- begin
- tdef.init;
- deftype:=enumdef;
- minval:=_min;
- maxval:=_max;
- basedef:=_basedef;
- calcsavesize;
- has_jumps:=false;
- rangenr:=0;
- firstenum:=basedef^.firstenum;
- while assigned(firstenum) and (penumsym(firstenum)^.value<>minval) do
- firstenum:=firstenum^.nextenum;
- correct_owner_symtable;
- end;
- constructor tenumdef.load;
- begin
- tdef.load;
- deftype:=enumdef;
- basedef:=penumdef(readdefref);
- minval:=readlong;
- maxval:=readlong;
- savesize:=readlong;
- has_jumps:=false;
- firstenum:=Nil;
- end;
- procedure tenumdef.calcsavesize;
- begin
- if (aktpackenum=4) or (min<0) or (max>65535) then
- savesize:=4
- else
- if (aktpackenum=2) or (min<0) or (max>255) then
- savesize:=2
- else
- savesize:=1;
- end;
- procedure tenumdef.setmax(_max:longint);
- begin
- maxval:=_max;
- calcsavesize;
- end;
- procedure tenumdef.setmin(_min:longint);
- begin
- minval:=_min;
- calcsavesize;
- end;
- function tenumdef.min:longint;
- begin
- min:=minval;
- end;
- function tenumdef.max:longint;
- begin
- max:=maxval;
- end;
- procedure tenumdef.deref;
- begin
- resolvedef(pdef(basedef));
- end;
- destructor tenumdef.done;
- begin
- inherited done;
- end;
- procedure tenumdef.write;
- begin
- tdef.write;
- writedefref(basedef);
- writelong(min);
- writelong(max);
- writelong(savesize);
- current_ppu^.writeentry(ibenumdef);
- end;
- function tenumdef.getrangecheckstring : string;
- begin
- if (cs_create_smart in aktmoduleswitches) then
- getrangecheckstring:='R_'+current_module^.modulename^+tostr(rangenr)
- else
- getrangecheckstring:='R_'+tostr(rangenr);
- end;
- procedure tenumdef.genrangecheck;
- begin
- if rangenr=0 then
- begin
- { generate two constant for bounds }
- getlabelnr(rangenr);
- if (cs_create_smart in aktmoduleswitches) then
- datasegment^.concat(new(pai_symbol,initname_global(getrangecheckstring,8)))
- else
- datasegment^.concat(new(pai_symbol,initname(getrangecheckstring,8)));
- datasegment^.concat(new(pai_const,init_32bit(min)));
- datasegment^.concat(new(pai_const,init_32bit(max)));
- end;
- end;
- {$ifdef GDB}
- function tenumdef.stabstring : pchar;
- var st,st2 : pchar;
- p : penumsym;
- s : string;
- memsize : word;
- begin
- memsize := memsizeinc;
- getmem(st,memsize);
- strpcopy(st,'e');
- p := firstenum;
- while assigned(p) do
- begin
- s :=p^.name+':'+tostr(p^.value)+',';
- { place for the ending ';' also }
- if (strlen(st)+length(s)+1<memsize) then
- strpcopy(strend(st),s)
- else
- begin
- getmem(st2,memsize+memsizeinc);
- strcopy(st2,st);
- freemem(st,memsize);
- st := st2;
- memsize := memsize+memsizeinc;
- strpcopy(strend(st),s);
- end;
- p := p^.nextenum;
- end;
- strpcopy(strend(st),';');
- stabstring := strnew(st);
- freemem(st,memsize);
- end;
- {$endif GDB}
- procedure tenumdef.write_child_rtti_data;
- begin
- if assigned(basedef) then
- basedef^.get_rtti_label;
- end;
- procedure tenumdef.write_rtti_data;
- var
- hp : penumsym;
- begin
- rttilist^.concat(new(pai_const,init_8bit(tkEnumeration)));
- write_rtti_name;
- case savesize of
- 1:
- rttilist^.concat(new(pai_const,init_8bit(otUByte)));
- 2:
- rttilist^.concat(new(pai_const,init_8bit(otUWord)));
- 4:
- rttilist^.concat(new(pai_const,init_8bit(otULong)));
- end;
- rttilist^.concat(new(pai_const,init_32bit(min)));
- rttilist^.concat(new(pai_const,init_32bit(max)));
- if assigned(basedef) then
- rttilist^.concat(new(pai_const_symbol,initname(basedef^.get_rtti_label)))
- else
- rttilist^.concat(new(pai_const,init_32bit(0)));
- hp:=firstenum;
- while assigned(hp) do
- begin
- rttilist^.concat(new(pai_const,init_8bit(length(hp^.name))));
- rttilist^.concat(new(pai_string,init(globals.lower(hp^.name))));
- hp:=hp^.nextenum;
- end;
- rttilist^.concat(new(pai_const,init_8bit(0)));
- end;
- function tenumdef.is_publishable : boolean;
- begin
- is_publishable:=true;
- end;
- function tenumdef.gettypename : string;
- begin
- gettypename:='<enumeration type>';
- end;
- {****************************************************************************
- TORDDEF
- ****************************************************************************}
- constructor torddef.init(t : tbasetype;v,b : longint);
- begin
- inherited init;
- deftype:=orddef;
- low:=v;
- high:=b;
- typ:=t;
- rangenr:=0;
- setsize;
- end;
- constructor torddef.load;
- begin
- inherited load;
- deftype:=orddef;
- typ:=tbasetype(readbyte);
- low:=readlong;
- high:=readlong;
- rangenr:=0;
- setsize;
- end;
- procedure torddef.setsize;
- begin
- if typ=uauto then
- begin
- { generate a unsigned range if high<0 and low>=0 }
- if (low>=0) and (high<0) then
- begin
- savesize:=4;
- typ:=u32bit;
- end
- else if (low>=0) and (high<=255) then
- begin
- savesize:=1;
- typ:=u8bit;
- end
- else if (low>=-128) and (high<=127) then
- begin
- savesize:=1;
- typ:=s8bit;
- end
- else if (low>=0) and (high<=65536) then
- begin
- savesize:=2;
- typ:=u16bit;
- end
- else if (low>=-32768) and (high<=32767) then
- begin
- savesize:=2;
- typ:=s16bit;
- end
- else
- begin
- savesize:=4;
- typ:=s32bit;
- end;
- end
- else
- begin
- case typ of
- u8bit,s8bit,
- uchar,bool8bit:
- savesize:=1;
- u16bit,s16bit,
- bool16bit:
- savesize:=2;
- s32bit,u32bit,
- bool32bit:
- savesize:=4;
- u64bit,s64bit:
- savesize:=8;
- else
- savesize:=0;
- end;
- end;
- { there are no entrys for range checking }
- rangenr:=0;
- end;
- function torddef.getrangecheckstring : string;
- begin
- if (cs_create_smart in aktmoduleswitches) then
- getrangecheckstring:='R_'+current_module^.modulename^+tostr(rangenr)
- else
- getrangecheckstring:='R_'+tostr(rangenr);
- end;
- procedure torddef.genrangecheck;
- var
- rangechecksize : longint;
- begin
- if rangenr=0 then
- begin
- if low<=high then
- rangechecksize:=8
- else
- rangechecksize:=16;
- { generate two constant for bounds }
- getlabelnr(rangenr);
- if (cs_create_smart in aktmoduleswitches) then
- datasegment^.concat(new(pai_symbol,initname_global(getrangecheckstring,rangechecksize)))
- else
- datasegment^.concat(new(pai_symbol,initname(getrangecheckstring,rangechecksize)));
- if low<=high then
- begin
- datasegment^.concat(new(pai_const,init_32bit(low)));
- datasegment^.concat(new(pai_const,init_32bit(high)));
- end
- { for u32bit we need two bounds }
- else
- begin
- datasegment^.concat(new(pai_const,init_32bit(low)));
- datasegment^.concat(new(pai_const,init_32bit($7fffffff)));
- datasegment^.concat(new(pai_const,init_32bit($80000000)));
- datasegment^.concat(new(pai_const,init_32bit(high)));
- end;
- end;
- end;
- procedure torddef.write;
- begin
- tdef.write;
- writebyte(byte(typ));
- writelong(low);
- writelong(high);
- current_ppu^.writeentry(iborddef);
- end;
- {$ifdef GDB}
- function torddef.stabstring : pchar;
- begin
- case typ of
- uvoid : stabstring := strpnew(numberstring+';');
- {GDB 4.12 for go32 doesn't like boolean as range for 0 to 1 !!!}
- {$ifdef Use_integer_types_for_boolean}
- bool8bit,
- bool16bit,
- bool32bit : stabstring := strpnew('r'+numberstring+';0;255;');
- {$else : not Use_integer_types_for_boolean}
- bool8bit : stabstring := strpnew('-21;');
- bool16bit : stabstring := strpnew('-22;');
- bool32bit : stabstring := strpnew('-23;');
- u64bit : stabstring := strpnew('-32;');
- s64bit : stabstring := strpnew('-31;');
- {$endif not Use_integer_types_for_boolean}
- { u32bit : stabstring := strpnew('r'+
- s32bitdef^.numberstring+';0;-1;'); }
- else
- stabstring := strpnew('r'+s32bitdef^.numberstring+';'+tostr(low)+';'+tostr(high)+';');
- end;
- end;
- {$endif GDB}
- procedure torddef.write_rtti_data;
- const
- trans : array[uchar..bool8bit] of byte =
- (otUByte,otUByte,otUWord,otULong,otSByte,otSWord,otSLong,otUByte);
- begin
- case typ of
- bool8bit:
- rttilist^.concat(new(pai_const,init_8bit(tkBool)));
- uchar:
- rttilist^.concat(new(pai_const,init_8bit(tkChar)));
- else
- rttilist^.concat(new(pai_const,init_8bit(tkInteger)));
- end;
- write_rtti_name;
- rttilist^.concat(new(pai_const,init_8bit(byte(trans[typ]))));
- rttilist^.concat(new(pai_const,init_32bit(low)));
- rttilist^.concat(new(pai_const,init_32bit(high)));
- end;
- function torddef.is_publishable : boolean;
- begin
- is_publishable:=typ in [uchar..bool8bit];
- end;
- function torddef.gettypename : string;
- const
- names : array[tbasetype] of string[20] = ('<unknown type>',
- 'untyped','Char','Byte','Word','DWord','ShortInt',
- 'SmallInt','LongInt','Boolean','WordBool',
- 'LongBool','QWord','Int64');
- begin
- gettypename:=names[typ];
- end;
- {****************************************************************************
- TFLOATDEF
- ****************************************************************************}
- constructor tfloatdef.init(t : tfloattype);
- begin
- inherited init;
- deftype:=floatdef;
- typ:=t;
- setsize;
- end;
- constructor tfloatdef.load;
- begin
- inherited load;
- deftype:=floatdef;
- typ:=tfloattype(readbyte);
- setsize;
- end;
- procedure tfloatdef.setsize;
- begin
- case typ of
- f16bit : savesize:=2;
- f32bit,
- s32real : savesize:=4;
- s64real : savesize:=8;
- s80real : savesize:=extended_size;
- s64comp : savesize:=8;
- else
- savesize:=0;
- end;
- end;
- procedure tfloatdef.write;
- begin
- inherited write;
- writebyte(byte(typ));
- current_ppu^.writeentry(ibfloatdef);
- end;
- {$ifdef GDB}
- function tfloatdef.stabstring : pchar;
- begin
- case typ of
- s32real,
- s64real : stabstring := strpnew('r'+
- s32bitdef^.numberstring+';'+tostr(savesize)+';0;');
- { for fixed real use longint instead to be able to }
- { debug something at least }
- f32bit:
- stabstring := s32bitdef^.stabstring;
- f16bit:
- stabstring := strpnew('r'+s32bitdef^.numberstring+';0;'+
- tostr($ffff)+';');
- { found this solution in stabsread.c from GDB v4.16 }
- s64comp : stabstring := strpnew('r'+
- s32bitdef^.numberstring+';-'+tostr(savesize)+';0;');
- {$ifdef i386}
- { under dos at least you must give a size of twelve instead of 10 !! }
- { this is probably do to the fact that in gcc all is pushed in 4 bytes size }
- s80real : stabstring := strpnew('r'+s32bitdef^.numberstring+';12;0;');
- {$endif i386}
- else
- internalerror(10005);
- end;
- end;
- {$endif GDB}
- procedure tfloatdef.write_rtti_data;
- const
- {tfloattype = (s32real,s64real,s80real,s64bit,f16bit,f32bit);}
- translate : array[tfloattype] of byte =
- (ftSingle,ftDouble,ftExtended,ftComp,ftFixed16,ftFixed32);
- begin
- rttilist^.concat(new(pai_const,init_8bit(tkFloat)));
- write_rtti_name;
- rttilist^.concat(new(pai_const,init_8bit(translate[typ])));
- end;
- function tfloatdef.is_publishable : boolean;
- begin
- is_publishable:=true;
- end;
- function tfloatdef.gettypename : string;
- const
- names : array[tfloattype] of string[20] = (
- 'Single','Double','Extended','Comp','Fixed','Fixed16');
- begin
- gettypename:=names[typ];
- end;
- {****************************************************************************
- TFILEDEF
- ****************************************************************************}
- constructor tfiledef.init(ft : tfiletype;tas : pdef);
- begin
- inherited init;
- deftype:=filedef;
- filetype:=ft;
- typed_as:=tas;
- setsize;
- end;
- constructor tfiledef.load;
- begin
- inherited load;
- deftype:=filedef;
- filetype:=tfiletype(readbyte);
- if filetype=ft_typed then
- typed_as:=readdefref
- else
- typed_as:=nil;
- setsize;
- end;
- procedure tfiledef.deref;
- begin
- if filetype=ft_typed then
- resolvedef(typed_as);
- end;
- procedure tfiledef.setsize;
- begin
- case filetype of
- ft_text : savesize:=572;
- ft_typed,
- ft_untyped : savesize:=316;
- end;
- end;
- procedure tfiledef.write;
- begin
- inherited write;
- writebyte(byte(filetype));
- if filetype=ft_typed then
- writedefref(typed_as);
- current_ppu^.writeentry(ibfiledef);
- end;
- {$ifdef GDB}
- function tfiledef.stabstring : pchar;
- begin
- {$IfDef GDBknowsfiles}
- case filetyp of
- ft_typed : stabstring := strpnew('d'+typed_as^.numberstring{+';'});
- ft_untyped : stabstring := strpnew('d'+voiddef^.numberstring{+';'});
- ft_text : stabstring := strpnew('d'+cchardef^.numberstring{+';'});
- end;
- {$Else}
- {based on
- FileRec = Packed Record
- Handle,
- Mode,
- RecSize : longint;
- _private : array[1..32] of byte;
- UserData : array[1..16] of byte;
- name : array[0..255] of char;
- End; }
- { the buffer part is still missing !! (PM) }
- { but the string could become too long !! }
- stabstring := strpnew('s'+tostr(savesize)+
- 'HANDLE:'+typeglobalnumber('longint')+',0,32;'+
- 'MODE:'+typeglobalnumber('longint')+',32,32;'+
- 'RECSIZE:'+typeglobalnumber('longint')+',64,32;'+
- '_PRIVATE:ar'+typeglobalnumber('word')+';1;32;'+typeglobalnumber('byte')
- +',96,256;'+
- 'USERDATA:ar'+typeglobalnumber('word')+';1;16;'+typeglobalnumber('byte')
- +',352,128;'+
- 'NAME:ar'+typeglobalnumber('word')+';0;255;'+typeglobalnumber('char')
- +',480,2048;;');
- {$EndIf}
- end;
- procedure tfiledef.concatstabto(asmlist : paasmoutput);
- begin
- { most file defs are unnamed !!! }
- if ((sym = nil) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches)) and
- not is_def_stab_written then
- begin
- if assigned(typed_as) then forcestabto(asmlist,typed_as);
- inherited concatstabto(asmlist);
- end;
- end;
- {$endif GDB}
- function tfiledef.gettypename : string;
- begin
- case filetype of
- ft_untyped:
- gettypename:='File';
- ft_typed:
- gettypename:='File Of '+typed_as^.typename;
- ft_text:
- gettypename:='Text'
- end;
- end;
- {****************************************************************************
- TPOINTERDEF
- ****************************************************************************}
- constructor tpointerdef.init(def : pdef);
- begin
- inherited init;
- deftype:=pointerdef;
- definition:=def;
- is_far:=false;
- savesize:=target_os.size_of_pointer;
- end;
- constructor tpointerdef.initfar(def : pdef);
- begin
- inherited init;
- deftype:=pointerdef;
- definition:=def;
- is_far:=true;
- savesize:=target_os.size_of_pointer;
- end;
- constructor tpointerdef.load;
- begin
- inherited load;
- deftype:=pointerdef;
- { the real address in memory is calculated later (deref) }
- definition:=readdefref;
- is_far:=(readbyte<>0);
- savesize:=target_os.size_of_pointer;
- end;
- destructor tpointerdef.done;
- begin
- if assigned(definition) and
- (definition^.deftype=forwarddef) then
- begin
- dispose(definition,done);
- definition:=nil;
- end;
- inherited done;
- end;
- procedure tpointerdef.deref;
- begin
- resolvedef(definition);
- end;
- procedure tpointerdef.write;
- begin
- inherited write;
- writedefref(definition);
- writebyte(byte(is_far));
- current_ppu^.writeentry(ibpointerdef);
- end;
- {$ifdef GDB}
- function tpointerdef.stabstring : pchar;
- begin
- stabstring := strpnew('*'+definition^.numberstring);
- end;
- procedure tpointerdef.concatstabto(asmlist : paasmoutput);
- var st,nb : string;
- sym_line_no : longint;
- begin
- if assigned(definition) and
- (definition^.deftype=forwarddef) then
- exit;
- if ( (sym=nil) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches)) and
- not is_def_stab_written then
- begin
- if assigned(definition) then
- if definition^.deftype in [recorddef,objectdef] then
- begin
- is_def_stab_written := true;
- {to avoid infinite recursion in record with next-like fields }
- nb := definition^.numberstring;
- is_def_stab_written := false;
- if not definition^.is_def_stab_written then
- begin
- if assigned(definition^.sym) then
- begin
- if assigned(sym) then
- begin
- st := sym^.name;
- sym_line_no:=sym^.fileinfo.line;
- end
- else
- begin
- st := ' ';
- sym_line_no:=0;
- end;
- st := '"'+st+':t'+numberstring+'=*'+definition^.numberstring
- +'=xs'+definition^.sym^.name+':",'+tostr(N_LSYM)+',0,'+tostr(sym_line_no)+',0';
- asmlist^.concat(new(pai_stabs,init(strpnew(st))));
- end;
- end else inherited concatstabto(asmlist);
- is_def_stab_written := true;
- end else
- begin
- { p =^p1; p1=^p problem }
- is_def_stab_written := true;
- forcestabto(asmlist,definition);
- is_def_stab_written := false;
- inherited concatstabto(asmlist);
- end;
- end;
- end;
- {$endif GDB}
- function tpointerdef.gettypename : string;
- begin
- gettypename:='^'+definition^.typename;
- end;
- {****************************************************************************
- TCLASSREFDEF
- ****************************************************************************}
- constructor tclassrefdef.init(def : pdef);
- begin
- inherited init(def);
- deftype:=classrefdef;
- definition:=def;
- savesize:=target_os.size_of_pointer;
- end;
- constructor tclassrefdef.load;
- begin
- { be careful, tclassdefref inherits from tpointerdef }
- tdef.load;
- deftype:=classrefdef;
- definition:=readdefref;
- is_far:=false;
- savesize:=target_os.size_of_pointer;
- end;
- procedure tclassrefdef.write;
- begin
- { be careful, tclassdefref inherits from tpointerdef }
- tdef.write;
- writedefref(definition);
- current_ppu^.writeentry(ibclassrefdef);
- end;
- {$ifdef GDB}
- function tclassrefdef.stabstring : pchar;
- begin
- stabstring:=strpnew(pvmtdef^.numberstring+';');
- end;
- procedure tclassrefdef.concatstabto(asmlist : paasmoutput);
- begin
- inherited concatstabto(asmlist);
- end;
- {$endif GDB}
- function tclassrefdef.gettypename : string;
- begin
- gettypename:='Class Of '+definition^.typename;
- end;
- {***************************************************************************
- TSETDEF
- ***************************************************************************}
- { For i386 smallsets work,
- for m68k there are problems
- can be test by compiling with -dusesmallset PM }
- {$ifdef i386}
- {$define usesmallset}
- {$endif i386}
- constructor tsetdef.init(s : pdef;high : longint);
- begin
- inherited init;
- deftype:=setdef;
- setof:=s;
- {$ifdef usesmallset}
- { small sets only working for i386 PM }
- if high<32 then
- begin
- settype:=smallset;
- savesize:=Sizeof(longint);
- end
- else
- {$endif usesmallset}
- if high<256 then
- begin
- settype:=normset;
- savesize:=32;
- end
- else
- {$ifdef testvarsets}
- if high<$10000 then
- begin
- settype:=varset;
- savesize:=4*((high+31) div 32);
- end
- else
- {$endif testvarsets}
- Message(sym_e_ill_type_decl_set);
- end;
- constructor tsetdef.load;
- begin
- inherited load;
- deftype:=setdef;
- setof:=readdefref;
- settype:=tsettype(readbyte);
- case settype of
- normset : savesize:=32;
- varset : savesize:=readlong;
- smallset : savesize:=Sizeof(longint);
- end;
- end;
- procedure tsetdef.write;
- begin
- inherited write;
- writedefref(setof);
- writebyte(byte(settype));
- if settype=varset then
- writelong(savesize);
- current_ppu^.writeentry(ibsetdef);
- end;
- {$ifdef GDB}
- function tsetdef.stabstring : pchar;
- begin
- { For small sets write a longint, which can at least be seen
- in the current GDB's (PFV)
- this is obsolete with GDBPAS !!
- and anyhow creates problems with version 4.18!! PM
- if settype=smallset then
- stabstring := strpnew('r'+s32bitdef^.numberstring+';0;0xffffffff;')
- else }
- stabstring := strpnew('S'+setof^.numberstring);
- end;
- procedure tsetdef.concatstabto(asmlist : paasmoutput);
- begin
- if ( not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches)) and
- not is_def_stab_written then
- begin
- if assigned(setof) then
- forcestabto(asmlist,setof);
- inherited concatstabto(asmlist);
- end;
- end;
- {$endif GDB}
- procedure tsetdef.deref;
- begin
- resolvedef(setof);
- end;
- procedure tsetdef.write_rtti_data;
- begin
- rttilist^.concat(new(pai_const,init_8bit(tkSet)));
- write_rtti_name;
- rttilist^.concat(new(pai_const,init_8bit(otULong)));
- rttilist^.concat(new(pai_const_symbol,initname(setof^.get_rtti_label)));
- end;
- procedure tsetdef.write_child_rtti_data;
- begin
- setof^.get_rtti_label;
- end;
- function tsetdef.is_publishable : boolean;
- begin
- is_publishable:=settype=smallset;
- end;
- function tsetdef.gettypename : string;
- begin
- gettypename:='Set Of '+setof^.typename;
- end;
- {***************************************************************************
- TFORMALDEF
- ***************************************************************************}
- constructor tformaldef.init;
- var
- stregdef : boolean;
- begin
- stregdef:=registerdef;
- registerdef:=false;
- inherited init;
- deftype:=formaldef;
- registerdef:=stregdef;
- { formaldef must be registered at unit level !! }
- if registerdef and assigned(current_module) then
- if assigned(current_module^.localsymtable) then
- psymtable(current_module^.localsymtable)^.registerdef(@self)
- else if assigned(current_module^.globalsymtable) then
- psymtable(current_module^.globalsymtable)^.registerdef(@self);
- savesize:=target_os.size_of_pointer;
- end;
- constructor tformaldef.load;
- begin
- inherited load;
- deftype:=formaldef;
- savesize:=target_os.size_of_pointer;
- end;
- procedure tformaldef.write;
- begin
- inherited write;
- current_ppu^.writeentry(ibformaldef);
- end;
- {$ifdef GDB}
- function tformaldef.stabstring : pchar;
- begin
- stabstring := strpnew('formal'+numberstring+';');
- end;
- procedure tformaldef.concatstabto(asmlist : paasmoutput);
- begin
- { formaldef can't be stab'ed !}
- end;
- {$endif GDB}
- function tformaldef.gettypename : string;
- begin
- gettypename:='Var';
- end;
- {***************************************************************************
- TARRAYDEF
- ***************************************************************************}
- constructor tarraydef.init(l,h : longint;rd : pdef);
- begin
- inherited init;
- deftype:=arraydef;
- lowrange:=l;
- highrange:=h;
- rangedef:=rd;
- definition:=nil;
- IsVariant:=false;
- IsConstructor:=false;
- IsArrayOfConst:=false;
- rangenr:=0;
- end;
- constructor tarraydef.load;
- begin
- inherited load;
- deftype:=arraydef;
- { the addresses are calculated later }
- definition:=readdefref;
- rangedef:=readdefref;
- lowrange:=readlong;
- highrange:=readlong;
- IsArrayOfConst:=boolean(readbyte);
- IsVariant:=false;
- IsConstructor:=false;
- rangenr:=0;
- end;
- function tarraydef.getrangecheckstring : string;
- begin
- if (cs_create_smart in aktmoduleswitches) then
- getrangecheckstring:='R_'+current_module^.modulename^+tostr(rangenr)
- else
- getrangecheckstring:='R_'+tostr(rangenr);
- end;
- procedure tarraydef.genrangecheck;
- begin
- if rangenr=0 then
- begin
- { generates the data for range checking }
- getlabelnr(rangenr);
- if (cs_create_smart in aktmoduleswitches) then
- datasegment^.concat(new(pai_symbol,initname_global(getrangecheckstring,8)))
- else
- datasegment^.concat(new(pai_symbol,initname(getrangecheckstring,8)));
- datasegment^.concat(new(pai_const,init_32bit(lowrange)));
- datasegment^.concat(new(pai_const,init_32bit(highrange)));
- end;
- end;
- procedure tarraydef.deref;
- begin
- resolvedef(definition);
- resolvedef(rangedef);
- end;
- procedure tarraydef.write;
- begin
- inherited write;
- writedefref(definition);
- writedefref(rangedef);
- writelong(lowrange);
- writelong(highrange);
- writebyte(byte(IsArrayOfConst));
- current_ppu^.writeentry(ibarraydef);
- end;
- {$ifdef GDB}
- function tarraydef.stabstring : pchar;
- begin
- stabstring := strpnew('ar'+rangedef^.numberstring+';'
- +tostr(lowrange)+';'+tostr(highrange)+';'+definition^.numberstring);
- end;
- procedure tarraydef.concatstabto(asmlist : paasmoutput);
- begin
- if (not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches))
- and not is_def_stab_written then
- begin
- {when array are inserted they have no definition yet !!}
- if assigned(definition) then
- inherited concatstabto(asmlist);
- end;
- end;
- {$endif GDB}
- function tarraydef.elesize : longint;
- begin
- elesize:=definition^.size;
- end;
- function tarraydef.size : longint;
- begin
- {Tarraydef.size may never be called for an open array!}
- if highrange<lowrange then
- internalerror(99080501);
- If (elesize>0) and
- (
- (highrange-lowrange = $7fffffff) or
- { () are needed around elesize-1 to avoid a possible
- integer overflow for elesize=1 !! PM }
- (($7fffffff div elesize + (elesize -1)) < (highrange - lowrange))
- ) Then
- Begin
- Message(sym_e_segment_too_large);
- size := 4
- End
- Else size:=(highrange-lowrange+1)*elesize;
- end;
- function tarraydef.alignment : longint;
- begin
- { alignment is the size of the elements }
- alignment:=definition^.size;
- end;
- function tarraydef.needs_inittable : boolean;
- begin
- needs_inittable:=definition^.needs_inittable;
- end;
- procedure tarraydef.write_child_rtti_data;
- begin
- definition^.get_rtti_label;
- end;
- procedure tarraydef.write_rtti_data;
- begin
- rttilist^.concat(new(pai_const,init_8bit(13)));
- write_rtti_name;
- { size of elements }
- rttilist^.concat(new(pai_const,init_32bit(definition^.size)));
- { count of elements }
- rttilist^.concat(new(pai_const,init_32bit(highrange-lowrange+1)));
- { element type }
- rttilist^.concat(new(pai_const_symbol,initname(definition^.get_rtti_label)));
- end;
- function tarraydef.gettypename : string;
- begin
- if isarrayofconst or isConstructor then
- begin
- if isvariant then
- gettypename:='Array Of Const'
- else
- gettypename:='Array Of '+definition^.typename;
- end
- else if is_open_array(@self) then
- gettypename:='Array Of '+definition^.typename
- else
- begin
- if rangedef^.deftype=enumdef then
- gettypename:='Array['+rangedef^.typename+'] Of '+definition^.typename
- else
- gettypename:='Array['+tostr(lowrange)+'..'+
- tostr(highrange)+'] Of '+definition^.typename
- end;
- end;
- {***************************************************************************
- trecorddef
- ***************************************************************************}
- constructor trecorddef.init(p : psymtable);
- begin
- inherited init;
- deftype:=recorddef;
- symtable:=p;
- symtable^.defowner := @self;
- symtable^.dataalignment:=packrecordalignment[aktpackrecords];
- end;
- constructor trecorddef.load;
- var
- oldread_member : boolean;
- begin
- inherited load;
- deftype:=recorddef;
- savesize:=readlong;
- oldread_member:=read_member;
- read_member:=true;
- symtable:=new(psymtable,loadas(recordsymtable));
- read_member:=oldread_member;
- symtable^.defowner := @self;
- end;
- destructor trecorddef.done;
- begin
- if assigned(symtable) then
- dispose(symtable,done);
- inherited done;
- end;
- var
- binittable : boolean;
- procedure check_rec_inittable(s : pnamedindexobject);
- begin
- if (not binittable) and
- (psym(s)^.typ=varsym) then
- begin
- if ((pvarsym(s)^.definition^.deftype<>objectdef) or
- not(pobjectdef(pvarsym(s)^.definition)^.is_class)) then
- binittable:=pvarsym(s)^.definition^.needs_inittable;
- end;
- end;
- function trecorddef.needs_inittable : boolean;
- var
- oldb : boolean;
- begin
- { there are recursive calls to needs_rtti possible, }
- { so we have to change to old value how else should }
- { we do that ? check_rec_rtti can't be a nested }
- { procedure of needs_rtti ! }
- oldb:=binittable;
- binittable:=false;
- symtable^.foreach({$ifndef TP}@{$endif}check_rec_inittable);
- needs_inittable:=binittable;
- binittable:=oldb;
- end;
- procedure trecorddef.deref;
- var
- oldrecsyms : psymtable;
- begin
- oldrecsyms:=aktrecordsymtable;
- aktrecordsymtable:=symtable;
- { now dereference the definitions }
- symtable^.deref;
- aktrecordsymtable:=oldrecsyms;
- end;
- procedure trecorddef.write;
- var
- oldread_member : boolean;
- begin
- oldread_member:=read_member;
- read_member:=true;
- inherited write;
- writelong(savesize);
- current_ppu^.writeentry(ibrecorddef);
- self.symtable^.writeas;
- read_member:=oldread_member;
- end;
- function trecorddef.size:longint;
- begin
- size:=symtable^.datasize;
- end;
- function trecorddef.alignment:longint;
- begin
- alignment:=symtable^.dataalignment;
- end;
- {$ifdef GDB}
- Const StabRecString : pchar = Nil;
- StabRecSize : longint = 0;
- RecOffset : Longint = 0;
- procedure addname(p : pnamedindexobject);
- var
- news, newrec : pchar;
- spec : string[3];
- size : longint;
- begin
- { static variables from objects are like global objects }
- if (sp_static in psym(p)^.symoptions) then
- exit;
- If psym(p)^.typ = varsym then
- begin
- if (sp_protected in psym(p)^.symoptions) then
- spec:='/1'
- else if (sp_private in psym(p)^.symoptions) then
- spec:='/0'
- else
- spec:='';
- { class fields are pointers PM }
- if (pvarsym(p)^.definition^.deftype=objectdef) and
- pobjectdef(pvarsym(p)^.definition)^.is_class then
- spec:=spec+'*';
- size:=pvarsym(p)^.definition^.size;
- { open arrays made overflows !! }
- if size>$fffffff then
- size:=$fffffff;
- newrec := strpnew(p^.name+':'+spec+pvarsym(p)^.definition^.numberstring
- +','+tostr(pvarsym(p)^.address*8)+','
- +tostr(size*8)+';');
- if strlen(StabRecString) + strlen(newrec) >= StabRecSize-256 then
- begin
- getmem(news,stabrecsize+memsizeinc);
- strcopy(news,stabrecstring);
- freemem(stabrecstring,stabrecsize);
- stabrecsize:=stabrecsize+memsizeinc;
- stabrecstring:=news;
- end;
- strcat(StabRecstring,newrec);
- strdispose(newrec);
- {This should be used for case !!}
- RecOffset := RecOffset + pvarsym(p)^.definition^.size;
- end;
- end;
- function trecorddef.stabstring : pchar;
- Var oldrec : pchar;
- oldsize : longint;
- begin
- oldrec := stabrecstring;
- oldsize:=stabrecsize;
- GetMem(stabrecstring,memsizeinc);
- stabrecsize:=memsizeinc;
- strpcopy(stabRecString,'s'+tostr(size));
- RecOffset := 0;
- symtable^.foreach({$ifndef TP}@{$endif}addname);
- { FPC doesn't want to convert a char to a pchar}
- { is this a bug ? }
- strpcopy(strend(StabRecString),';');
- stabstring := strnew(StabRecString);
- Freemem(stabrecstring,stabrecsize);
- stabrecstring := oldrec;
- stabrecsize:=oldsize;
- end;
- procedure trecorddef.concatstabto(asmlist : paasmoutput);
- begin
- if (not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches)) and
- (not is_def_stab_written) then
- inherited concatstabto(asmlist);
- end;
- {$endif GDB}
- var
- count : longint;
- procedure count_inittable_fields(sym : pnamedindexobject);{$ifndef fpc}far;{$endif}
- begin
- if ((psym(sym)^.typ=varsym) and
- pvarsym(sym)^.definition^.needs_inittable)
- and ((pvarsym(sym)^.definition^.deftype<>objectdef) or
- (not pobjectdef(pvarsym(sym)^.definition)^.is_class)) then
- inc(count);
- end;
- procedure count_fields(sym : pnamedindexobject);{$ifndef fpc}far;{$endif}
- begin
- inc(count);
- end;
- procedure write_field_inittable(sym : pnamedindexobject);{$ifndef fpc}far;{$endif}
- begin
- if ((psym(sym)^.typ=varsym) and
- pvarsym(sym)^.definition^.needs_inittable)
- and ((pvarsym(sym)^.definition^.deftype<>objectdef) or
- (not pobjectdef(pvarsym(sym)^.definition)^.is_class)) then
- begin
- rttilist^.concat(new(pai_const_symbol,init(pvarsym(sym)^.definition^.get_inittable_label)));
- rttilist^.concat(new(pai_const,init_32bit(pvarsym(sym)^.address)));
- end;
- end;
- procedure write_field_rtti(sym : pnamedindexobject);{$ifndef fpc}far;{$endif}
- begin
- rttilist^.concat(new(pai_const_symbol,initname(pvarsym(sym)^.definition^.get_rtti_label)));
- rttilist^.concat(new(pai_const,init_32bit(pvarsym(sym)^.address)));
- end;
- procedure generate_child_inittable(sym:pnamedindexobject);{$ifndef fpc}far;{$endif}
- begin
- if (psym(sym)^.typ=varsym) and
- pvarsym(sym)^.definition^.needs_inittable then
- { force inittable generation }
- pvarsym(sym)^.definition^.get_inittable_label;
- end;
- procedure generate_child_rtti(sym : pnamedindexobject);{$ifndef fpc}far;{$endif}
- begin
- pvarsym(sym)^.definition^.get_rtti_label;
- end;
- procedure trecorddef.write_child_rtti_data;
- begin
- symtable^.foreach({$ifndef TP}@{$endif}generate_child_rtti);
- end;
- procedure trecorddef.write_child_init_data;
- begin
- symtable^.foreach({$ifndef TP}@{$endif}generate_child_inittable);
- end;
- procedure trecorddef.write_rtti_data;
- begin
- rttilist^.concat(new(pai_const,init_8bit(tkrecord)));
- write_rtti_name;
- rttilist^.concat(new(pai_const,init_32bit(size)));
- count:=0;
- symtable^.foreach({$ifndef TP}@{$endif}count_fields);
- rttilist^.concat(new(pai_const,init_32bit(count)));
- symtable^.foreach({$ifndef TP}@{$endif}write_field_rtti);
- end;
- procedure trecorddef.write_init_data;
- begin
- rttilist^.concat(new(pai_const,init_8bit(14)));
- write_rtti_name;
- rttilist^.concat(new(pai_const,init_32bit(size)));
- count:=0;
- symtable^.foreach({$ifndef TP}@{$endif}count_inittable_fields);
- rttilist^.concat(new(pai_const,init_32bit(count)));
- symtable^.foreach({$ifndef TP}@{$endif}write_field_inittable);
- end;
- function trecorddef.gettypename : string;
- begin
- gettypename:='<record type>'
- end;
- {***************************************************************************
- TABSTRACTPROCDEF
- ***************************************************************************}
- constructor tabstractprocdef.init;
- begin
- inherited init;
- new(para,init);
- fpu_used:=0;
- proctypeoption:=potype_none;
- proccalloptions:=[];
- procoptions:=[];
- retdef:=voiddef;
- symtablelevel:=0;
- savesize:=target_os.size_of_pointer;
- end;
- destructor tabstractprocdef.done;
- begin
- dispose(para,done);
- inherited done;
- end;
- procedure tabstractprocdef.concatdef(p : pdef;vsp : tvarspez);
- var
- hp : pparaitem;
- begin
- new(hp,init);
- hp^.paratyp:=vsp;
- hp^.datasym:=nil;
- hp^.data:=p;
- hp^.register:=R_NO;
- para^.insert(hp);
- end;
- procedure tabstractprocdef.concattypesym(p : ptypesym;vsp : tvarspez);
- var
- hp : pparaitem;
- begin
- new(hp,init);
- hp^.paratyp:=vsp;
- hp^.datasym:=p;
- hp^.data:=p^.definition;
- hp^.register:=R_NO;
- para^.insert(hp);
- end;
- { all functions returning in FPU are
- assume to use 2 FPU registers
- until the function implementation
- is processed PM }
- procedure tabstractprocdef.test_if_fpu_result;
- begin
- if assigned(retdef) and is_fpu(retdef) then
- fpu_used:=2;
- end;
- procedure tabstractprocdef.deref;
- var
- hp : pparaitem;
- begin
- inherited deref;
- resolvedef(retdef);
- hp:=pparaitem(para^.first);
- while assigned(hp) do
- begin
- if assigned(hp^.datasym) then
- begin
- resolvesym(psym(hp^.datasym));
- hp^.data:=hp^.datasym^.definition;
- end
- else
- resolvedef(hp^.data);
- hp:=pparaitem(hp^.next);
- end;
- end;
- constructor tabstractprocdef.load;
- var
- hp : pparaitem;
- count,i : word;
- begin
- inherited load;
- new(para,init);
- retdef:=readdefref;
- fpu_used:=readbyte;
- proctypeoption:=tproctypeoption(readlong);
- readsmallset(proccalloptions);
- readsmallset(procoptions);
- count:=readword;
- savesize:=target_os.size_of_pointer;
- for i:=1 to count do
- begin
- new(hp,init);
- hp^.paratyp:=tvarspez(readbyte);
- { hp^.register:=tregister(readbyte); }
- hp^.register:=R_NO;
- hp^.data:=readdefref;
- hp^.datasym:=ptypesym(readsymref);
- para^.concat(hp);
- end;
- end;
- procedure tabstractprocdef.write;
- var
- hp : pparaitem;
- begin
- inherited write;
- writedefref(retdef);
- current_ppu^.do_interface_crc:=false;
- writebyte(fpu_used);
- writelong(ord(proctypeoption));
- writesmallset(proccalloptions);
- writesmallset(procoptions);
- writeword(para^.count);
- hp:=pparaitem(para^.first);
- while assigned(hp) do
- begin
- writebyte(byte(hp^.paratyp));
- { writebyte(byte(hp^.register)); }
- if assigned(hp^.datasym) then
- begin
- writedefref(nil);
- writesymref(psym(hp^.datasym));
- end
- else
- begin
- writedefref(hp^.data);
- writesymref(nil);
- end;
- hp:=pparaitem(hp^.next);
- end;
- end;
- function tabstractprocdef.para_size : longint;
- var
- pdc : pparaitem;
- l : longint;
- begin
- l:=0;
- pdc:=pparaitem(para^.first);
- while assigned(pdc) do
- begin
- case pdc^.paratyp of
- vs_var : inc(l,target_os.size_of_pointer);
- vs_value,
- vs_const : if push_addr_param(pdc^.data) then
- inc(l,target_os.size_of_pointer)
- else
- inc(l,align(pdc^.data^.size,target_os.stackalignment));
- end;
- pdc:=pparaitem(pdc^.next);
- end;
- para_size:=l;
- end;
- function tabstractprocdef.demangled_paras : string;
- var
- s : string;
- hp : pparaitem;
- begin
- s:='(';
- hp:=pparaitem(para^.last);
- while assigned(hp) do
- begin
- if assigned(hp^.data^.sym) then
- s:=s+hp^.data^.sym^.name
- else if hp^.paratyp=vs_var then
- s:=s+'var'
- else if hp^.paratyp=vs_const then
- s:=s+'const';
- hp:=pparaitem(hp^.previous);
- if assigned(hp) then
- s:=s+',';
- end;
- s:=s+')';
- demangled_paras:=s;
- end;
- function tabstractprocdef.proccalloption2str : string;
- type
- tproccallopt=record
- mask : tproccalloption;
- str : string[30];
- end;
- const
- proccallopts=12;
- proccallopt : array[1..proccallopts] of tproccallopt=(
- (mask:pocall_none; str:''),
- (mask:pocall_clearstack; str:'ClearStack'),
- (mask:pocall_leftright; str:'LeftRight'),
- (mask:pocall_cdecl; str:'Cdecl'),
- (mask:pocall_register; str:'Register'),
- (mask:pocall_stdcall; str:'StdCall'),
- (mask:pocall_safecall; str:'SafeCall'),
- (mask:pocall_palmossyscall;str:'PalmOSSysCall'),
- (mask:pocall_system; str:'System'),
- (mask:pocall_inline; str:'Inline'),
- (mask:pocall_internproc; str:'InternProc'),
- (mask:pocall_internconst; str:'InternConst')
- );
- var
- s : string;
- i : longint;
- first : boolean;
- begin
- s:='';
- first:=true;
- for i:=1to proccallopts do
- if (proccallopt[i].mask in proccalloptions) then
- begin
- if first then
- first:=false
- else
- s:=s+';';
- s:=s+proccallopt[i].str;
- end;
- proccalloption2str:=s;
- end;
- {$ifdef GDB}
- function tabstractprocdef.stabstring : pchar;
- begin
- stabstring := strpnew('abstractproc'+numberstring+';');
- end;
- procedure tabstractprocdef.concatstabto(asmlist : paasmoutput);
- begin
- if (not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches))
- and not is_def_stab_written then
- begin
- if assigned(retdef) then forcestabto(asmlist,retdef);
- inherited concatstabto(asmlist);
- end;
- end;
- {$endif GDB}
- {***************************************************************************
- TPROCDEF
- ***************************************************************************}
- constructor tprocdef.init;
- begin
- inherited init;
- deftype:=procdef;
- _mangledname:=nil;
- nextoverloaded:=nil;
- fileinfo:=aktfilepos;
- extnumber:=-1;
- localst:=new(psymtable,init(localsymtable));
- parast:=new(psymtable,init(parasymtable));
- localst^.defowner:=@self;
- parast^.defowner:=@self;
- { this is used by insert
- to check same names in parast and localst }
- localst^.next:=parast;
- defref:=nil;
- crossref:=nil;
- lastwritten:=nil;
- refcount:=0;
- if (cs_browser in aktmoduleswitches) and make_ref then
- begin
- defref:=new(pref,init(defref,@tokenpos));
- inc(refcount);
- end;
- lastref:=defref;
- { first, we assume that all registers are used }
- {$ifdef newcg}
- usedregisters:=[firstreg..lastreg];
- {$else newcg}
- {$ifdef i386}
- usedregisters:=$ff;
- {$endif i386}
- {$ifdef m68k}
- usedregisters:=$FFFF;
- {$endif}
- {$endif newcg}
- forwarddef:=true;
- interfacedef:=false;
- _class := nil;
- code:=nil;
- count:=false;
- is_used:=false;
- end;
- constructor tprocdef.load;
- var
- s : string;
- begin
- inherited load;
- deftype:=procdef;
- {$ifdef newcg}
- readnormalset(usedregisters);
- {$else newcg}
- {$ifdef i386}
- usedregisters:=readbyte;
- {$endif i386}
- {$ifdef m68k}
- usedregisters:=readword;
- {$endif}
- {$endif newcg}
- s:=readstring;
- setstring(_mangledname,s);
- extnumber:=readlong;
- nextoverloaded:=pprocdef(readdefref);
- _class := pobjectdef(readdefref);
- readposinfo(fileinfo);
- if (cs_link_deffile in aktglobalswitches) and
- (tf_need_export in target_info.flags) and
- (po_exports in procoptions) then
- deffile.AddExport(mangledname);
- parast:=nil;
- localst:=nil;
- forwarddef:=false;
- interfacedef:=false;
- lastref:=nil;
- lastwritten:=nil;
- defref:=nil;
- refcount:=0;
- count:=true;
- is_used:=false;
- end;
- Const local_symtable_index : longint = $8001;
- procedure tprocdef.load_references;
- var
- pos : tfileposinfo;
- {$ifndef NOLOCALBROWSER}
- pdo : pobjectdef;
- st : psymtable;
- {$endif ndef NOLOCALBROWSER}
- move_last : boolean;
- begin
- move_last:=lastwritten=lastref;
- while (not current_ppu^.endofentry) do
- begin
- readposinfo(pos);
- inc(refcount);
- lastref:=new(pref,init(lastref,@pos));
- lastref^.is_written:=true;
- if refcount=1 then
- defref:=lastref;
- end;
- if move_last then
- lastwritten:=lastref;
- if ((current_module^.flags and uf_local_browser)<>0)
- and is_in_current then
- begin
- {$ifndef NOLOCALBROWSER}
- pdo:=_class;
- st:=aktlocalsymtable;
- new(parast,loadas(parasymtable));
- aktlocalsymtable:=parast;
- parast^.deref;
- parast^.next:=owner;
- parast^.load_browser;
- aktlocalsymtable:=st;
- new(localst,loadas(localsymtable));
- aktlocalsymtable:=localst;
- localst^.deref;
- localst^.next:=parast;
- localst^.load_browser;
- aktlocalsymtable:=st;
- {$endif ndef NOLOCALBROWSER}
- end;
- end;
- function tprocdef.write_references : boolean;
- var
- ref : pref;
- {$ifndef NOLOCALBROWSER}
- pdo : pobjectdef;
- st : psymtable;
- {$endif ndef NOLOCALBROWSER}
- move_last : boolean;
- begin
- move_last:=lastwritten=lastref;
- if move_last and (((current_module^.flags and uf_local_browser)=0)
- or not is_in_current) then
- exit;
- { write address of this symbol }
- writedefref(@self);
- { write refs }
- if assigned(lastwritten) then
- ref:=lastwritten
- else
- ref:=defref;
- while assigned(ref) do
- begin
- if ref^.moduleindex=current_module^.unit_index then
- begin
- writeposinfo(ref^.posinfo);
- ref^.is_written:=true;
- if move_last then
- lastwritten:=ref;
- end
- else if not ref^.is_written then
- move_last:=false
- else if move_last then
- lastwritten:=ref;
- ref:=ref^.nextref;
- end;
- current_ppu^.writeentry(ibdefref);
- write_references:=true;
- if ((current_module^.flags and uf_local_browser)<>0)
- and is_in_current then
- begin
- {$ifndef NOLOCALBROWSER}
- pdo:=_class;
- if (owner^.symtabletype<>localsymtable) then
- while assigned(pdo) do
- begin
- if pdo^.symtable<>aktrecordsymtable then
- begin
- pdo^.symtable^.unitid:=local_symtable_index;
- inc(local_symtable_index);
- end;
- pdo:=pdo^.childof;
- end;
- { we need TESTLOCALBROWSER para and local symtables
- PPU files are then easier to read PM }
- if not assigned(parast) then
- parast:=new(psymtable,init(parasymtable));
- st:=aktlocalsymtable;
- aktlocalsymtable:=parast;
- parast^.writeas;
- parast^.unitid:=local_symtable_index;
- inc(local_symtable_index);
- parast^.write_browser;
- if not assigned(localst) then
- localst:=new(psymtable,init(localsymtable));
- aktlocalsymtable:=localst;
- localst^.writeas;
- localst^.unitid:=local_symtable_index;
- inc(local_symtable_index);
- localst^.write_browser;
- aktlocalsymtable:=st;
- { decrement for }
- local_symtable_index:=local_symtable_index-2;
- pdo:=_class;
- if (owner^.symtabletype<>localsymtable) then
- while assigned(pdo) do
- begin
- if pdo^.symtable<>aktrecordsymtable then
- dec(local_symtable_index);
- pdo:=pdo^.childof;
- end;
- {$endif ndef NOLOCALBROWSER}
- end;
- end;
- {$ifdef BrowserLog}
- procedure tprocdef.add_to_browserlog;
- begin
- if assigned(defref) then
- begin
- browserlog.AddLog('***'+mangledname);
- browserlog.AddLogRefs(defref);
- if (current_module^.flags and uf_local_browser)<>0 then
- begin
- if assigned(parast) then
- parast^.writebrowserlog;
- if assigned(localst) then
- localst^.writebrowserlog;
- end;
- end;
- end;
- {$endif BrowserLog}
- destructor tprocdef.done;
- begin
- if assigned(defref) then
- dispose(defref,done);
- if assigned(parast) then
- dispose(parast,done);
- if assigned(localst) and (localst^.symtabletype<>staticsymtable) then
- dispose(localst,done);
- if (pocall_inline in proccalloptions) and assigned(code) then
- disposetree(ptree(code));
- if (po_msgstr in procoptions) then
- strdispose(messageinf.str);
- if
- {$ifdef tp}
- not(use_big) and
- {$endif}
- assigned(_mangledname) then
- globals.strdispose(_mangledname);
- inherited done;
- end;
- procedure tprocdef.write;
- begin
- inherited write;
- current_ppu^.do_interface_crc:=false;
- { set all registers to used for simplified compilation PM }
- if simplify_ppu then
- begin
- {$ifdef newcg}
- usedregisters:=[firstreg..lastreg];
- {$else newcg}
- {$ifdef i386}
- usedregisters:=$ff;
- {$endif i386}
- {$ifdef m68k}
- usedregisters:=$ffff;
- {$endif}
- {$endif newcg}
- end;
- {$ifdef newcg}
- writenormalset(usedregisters);
- {$else newcg}
- {$ifdef i386}
- writebyte(usedregisters);
- {$endif i386}
- {$ifdef m68k}
- writeword(usedregisters);
- {$endif}
- {$endif newcg}
- current_ppu^.do_interface_crc:=true;
- writestring(mangledname);
- writelong(extnumber);
- if (proctypeoption<>potype_operator) then
- writedefref(nextoverloaded)
- else
- begin
- { only write the overloads from the same unit }
- if assigned(nextoverloaded) and
- (nextoverloaded^.owner=owner) then
- writedefref(nextoverloaded)
- else
- writedefref(nil);
- end;
- writedefref(_class);
- writeposinfo(fileinfo);
- if (pocall_inline in proccalloptions) then
- begin
- { we need to save
- - the para and the local symtable
- - the code ptree !! PM
- writesymtable(parast);
- writesymtable(localst);
- writeptree(ptree(code));
- }
- end;
- current_ppu^.writeentry(ibprocdef);
- end;
- function tprocdef.haspara:boolean;
- begin
- haspara:=assigned(aktprocsym^.definition^.parast^.symindex^.first);
- end;
- {$ifdef GDB}
- procedure addparaname(p : psym);
- var vs : char;
- begin
- if pvarsym(p)^.varspez = vs_value then vs := '1'
- else vs := '0';
- strpcopy(strend(StabRecString),p^.name+':'+pvarsym(p)^.definition^.numberstring+','+vs+';');
- end;
- function tprocdef.stabstring : pchar;
- var
- i : longint;
- oldrec : pchar;
- begin
- oldrec := stabrecstring;
- getmem(StabRecString,1024);
- strpcopy(StabRecString,'f'+retdef^.numberstring);
- i:=para^.count;
- if i>0 then
- begin
- strpcopy(strend(StabRecString),','+tostr(i)+';');
- (* confuse gdb !! PM
- if assigned(parast) then
- parast^.foreach({$ifndef TP}@{$endif}addparaname)
- else
- begin
- param := para1;
- i := 0;
- while assigned(param) do
- begin
- inc(i);
- if param^.paratyp = vs_value then vartyp := '1' else vartyp := '0';
- {Here we have lost the parameter names !!}
- {using lower case parameters }
- strpcopy(strend(stabrecstring),'p'+tostr(i)
- +':'+param^.data^.numberstring+','+vartyp+';');
- param := param^.next;
- end;
- end; *)
- {strpcopy(strend(StabRecString),';');}
- end;
- stabstring := strnew(stabrecstring);
- freemem(stabrecstring,1024);
- stabrecstring := oldrec;
- end;
- procedure tprocdef.concatstabto(asmlist : paasmoutput);
- begin
- end;
- {$endif GDB}
- procedure tprocdef.deref;
- begin
- inherited deref;
- resolvedef(pdef(nextoverloaded));
- resolvedef(pdef(_class));
- end;
- function tprocdef.mangledname : string;
- {$ifdef tp}
- var
- oldpos : longint;
- s : string;
- b : byte;
- {$endif tp}
- begin
- {$ifndef Delphi}
- {$ifdef tp}
- if use_big then
- begin
- symbolstream.seek(longint(_mangledname));
- symbolstream.read(b,1);
- symbolstream.read(s[1],b);
- s[0]:=chr(b);
- mangledname:=s;
- end
- else
- {$endif}
- {$endif Delphi}
- mangledname:=strpas(_mangledname);
- if count then
- is_used:=true;
- end;
- function tprocdef.procname: string;
- var
- s : string;
- l : longint;
- begin
- s:=mangledname;
- { delete leading $$'s }
- l:=pos('$$',s);
- while l<>0 do
- begin
- delete(s,1,l+1);
- l:=pos('$$',s);
- end;
- { delete leading _$'s }
- l:=pos('_$',s);
- while l<>0 do
- begin
- delete(s,1,l+1);
- l:=pos('_$',s);
- end;
- l:=pos('$',s);
- if l=0 then
- procname:=s
- else
- procname:=Copy(s,1,l-1);
- end;
- {$IfDef GDB}
- function tprocdef.cplusplusmangledname : string;
- var
- s,s2 : string;
- param : pparaitem;
- begin
- s := sym^.name;
- if _class <> nil then
- begin
- s2 := _class^.objname^;
- s := s+'__'+tostr(length(s2))+s2;
- end else s := s + '_';
- param := pparaitem(para^.first);
- while assigned(param) do
- begin
- s2 := param^.data^.sym^.name;
- s := s+tostr(length(s2))+s2;
- param := pparaitem(param^.next);
- end;
- cplusplusmangledname:=s;
- end;
- {$EndIf GDB}
- procedure tprocdef.setmangledname(const s : string);
- begin
- if {$ifdef tp}not(use_big) and{$endif} (assigned(_mangledname)) then
- strdispose(_mangledname);
- setstring(_mangledname,s);
- if assigned(parast) then
- begin
- stringdispose(parast^.name);
- parast^.name:=stringdup('args of '+s);
- end;
- if assigned(localst) then
- begin
- stringdispose(localst^.name);
- localst^.name:=stringdup('locals of '+s);
- end;
- end;
- {***************************************************************************
- TPROCVARDEF
- ***************************************************************************}
- constructor tprocvardef.init;
- begin
- inherited init;
- deftype:=procvardef;
- end;
- constructor tprocvardef.load;
- begin
- inherited load;
- deftype:=procvardef;
- end;
- procedure tprocvardef.write;
- begin
- { here we cannot get a real good value so just give something }
- { plausible (PM) }
- { a more secure way would be
- to allways store in a temp }
- if is_fpu(retdef) then
- fpu_used:=2
- else
- fpu_used:=0;
- inherited write;
- current_ppu^.writeentry(ibprocvardef);
- end;
- function tprocvardef.size : longint;
- begin
- if (po_methodpointer in procoptions) then
- size:=2*target_os.size_of_pointer
- else
- size:=target_os.size_of_pointer;
- end;
- {$ifdef GDB}
- function tprocvardef.stabstring : pchar;
- var
- nss : pchar;
- i : longint;
- begin
- i := para^.count;
- getmem(nss,1024);
- { it is not a function but a function pointer !! (PM) }
- strpcopy(nss,'*f'+retdef^.numberstring{+','+tostr(i)}+';');
- { this confuses gdb !!
- we should use 'F' instead of 'f' but
- as we use c++ language mode
- it does not like that either
- Please do not remove this part
- might be used once
- gdb for pascal is ready PM }
- (*
- param := para1;
- i := 0;
- while assigned(param) do
- begin
- inc(i);
- if param^.paratyp = vs_value then vartyp := '1' else vartyp := '0';
- {Here we have lost the parameter names !!}
- pst := strpnew('p'+tostr(i)+':'+param^.data^.numberstring+','+vartyp+';');
- strcat(nss,pst);
- strdispose(pst);
- param := param^.next;
- end; *)
- {strpcopy(strend(nss),';');}
- stabstring := strnew(nss);
- freemem(nss,1024);
- end;
- procedure tprocvardef.concatstabto(asmlist : paasmoutput);
- begin
- if ( not assigned(sym) or sym^.isusedinstab or (cs_gdb_dbx in aktglobalswitches))
- and not is_def_stab_written then
- inherited concatstabto(asmlist);
- is_def_stab_written:=true;
- end;
- {$endif GDB}
- procedure tprocvardef.write_rtti_data;
- var
- pdc : pparaitem;
- methodkind, paraspec : byte;
- begin
- if po_methodpointer in procoptions then
- begin
- { write method id and name }
- rttilist^.concat(new(pai_const,init_8bit(tkmethod)));
- write_rtti_name;
- { write kind of method (can only be function or procedure)}
- if retdef = pdef(voiddef) then { ### typecast shoudln't be necessary! (sg) }
- methodkind := mkProcedure
- else
- methodkind := mkFunction;
- rttilist^.concat(new(pai_const,init_8bit(methodkind)));
- { get # of parameters }
- rttilist^.concat(new(pai_const,init_8bit(para^.count)));
- { write parameter info. The parameters must be written in reverse order
- if this method uses right to left parameter pushing! }
- if (pocall_leftright in proccalloptions) then
- pdc:=pparaitem(para^.last)
- else
- pdc:=pparaitem(para^.first);
- while assigned(pdc) do
- begin
- case pdc^.paratyp of
- vs_value: paraspec := 0;
- vs_const: paraspec := pfConst;
- vs_var : paraspec := pfVar;
- end;
- { write flags for current parameter }
- rttilist^.concat(new(pai_const,init_8bit(paraspec)));
- { write name of current parameter ### how can I get this??? (sg)}
- rttilist^.concat(new(pai_const,init_8bit(0)));
- { write name of type of current parameter }
- pdc^.data^.write_rtti_name;
- if (pocall_leftright in proccalloptions) then
- pdc:=pparaitem(pdc^.previous)
- else
- pdc:=pparaitem(pdc^.next);
- end;
- { write name of result type }
- retdef^.write_rtti_name;
- end;
- end;
- procedure tprocvardef.write_child_rtti_data;
- begin
- {!!!!!!!!}
- end;
- function tprocvardef.is_publishable : boolean;
- begin
- is_publishable:=(po_methodpointer in procoptions);
- end;
- function tprocvardef.gettypename : string;
- begin
- if assigned(retdef) and
- (retdef<>pdef(voiddef)) then
- gettypename:='<procedure variable type of function'+demangled_paras+
- ':'+retdef^.gettypename+';'+proccalloption2str+'>'
- else
- gettypename:='<procedure variable type of procedure'+demangled_paras+
- ';'+proccalloption2str+'>';
- end;
- {***************************************************************************
- TOBJECTDEF
- ***************************************************************************}
- {$ifdef GDB}
- const
- vtabletype : word = 0;
- vtableassigned : boolean = false;
- {$endif GDB}
- constructor tobjectdef.init(const n : string;c : pobjectdef);
- begin
- tdef.init;
- deftype:=objectdef;
- objectoptions:=[];
- childof:=nil;
- symtable:=new(psymtable,init(objectsymtable));
- symtable^.name := stringdup(n);
- { create space for vmt !! }
- vmt_offset:=0;
- symtable^.datasize:=0;
- symtable^.defowner:=@self;
- symtable^.dataalignment:=packrecordalignment[aktpackrecords];
- set_parent(c);
- objname:=stringdup(n);
- end;
- constructor tobjectdef.load;
- var
- oldread_member : boolean;
- begin
- tdef.load;
- deftype:=objectdef;
- savesize:=readlong;
- vmt_offset:=readlong;
- objname:=stringdup(readstring);
- childof:=pobjectdef(readdefref);
- readsmallset(objectoptions);
- oldread_member:=read_member;
- read_member:=true;
- symtable:=new(psymtable,loadas(objectsymtable));
- read_member:=oldread_member;
- symtable^.defowner:=@self;
- symtable^.name := stringdup(objname^);
- { handles the predefined class tobject }
- { the last TOBJECT which is loaded gets }
- { it ! }
- if (childof=nil) and
- is_class and
- (objname^='TOBJECT') then
- class_tobject:=@self;
- has_rtti:=true;
- end;
- destructor tobjectdef.done;
- begin
- if assigned(symtable) then
- dispose(symtable,done);
- if (oo_is_forward in objectoptions) then
- Message1(sym_e_class_forward_not_resolved,objname^);
- stringdispose(objname);
- tdef.done;
- end;
- procedure tobjectdef.write;
- var
- oldread_member : boolean;
- begin
- tdef.write;
- writelong(size);
- writelong(vmt_offset);
- writestring(objname^);
- writedefref(childof);
- writesmallset(objectoptions);
- current_ppu^.writeentry(ibobjectdef);
- oldread_member:=read_member;
- read_member:=true;
- symtable^.writeas;
- read_member:=oldread_member;
- end;
- procedure tobjectdef.deref;
- var
- oldrecsyms : psymtable;
- begin
- resolvedef(pdef(childof));
- oldrecsyms:=aktrecordsymtable;
- aktrecordsymtable:=symtable;
- symtable^.deref;
- aktrecordsymtable:=oldrecsyms;
- end;
- procedure tobjectdef.set_parent( c : pobjectdef);
- begin
- { nothing to do if the parent was not forward !}
- if assigned(childof) then
- exit;
- childof:=c;
- { some options are inherited !! }
- if assigned(c) then
- begin
- objectoptions:=objectoptions+(c^.objectoptions*
- [oo_has_virtual,oo_has_private,oo_has_protected,oo_has_constructor,oo_has_destructor]);
- { add the data of the anchestor class }
- inc(symtable^.datasize,c^.symtable^.datasize);
- if (oo_has_vmt in objectoptions) and
- (oo_has_vmt in c^.objectoptions) then
- dec(symtable^.datasize,target_os.size_of_pointer);
- { if parent has a vmt field then
- the offset is the same for the child PM }
- if (oo_has_vmt in c^.objectoptions) or is_class then
- begin
- vmt_offset:=c^.vmt_offset;
- {$ifdef INCLUDEOK}
- include(objectoptions,oo_has_vmt);
- {$else}
- objectoptions:=objectoptions+[oo_has_vmt];
- {$endif}
- end;
- end;
- savesize := symtable^.datasize;
- end;
- procedure tobjectdef.insertvmt;
- begin
- if (oo_has_vmt in objectoptions) then
- internalerror(12345)
- else
- begin
- { first round up to multiple of 4 }
- if (symtable^.dataalignment=2) then
- begin
- if (symtable^.datasize and 1)<>0 then
- inc(symtable^.datasize);
- end
- else
- if (symtable^.dataalignment>=4) then
- begin
- if (symtable^.datasize mod 4) <> 0 then
- inc(symtable^.datasize,4-(symtable^.datasize mod 4));
- end;
- vmt_offset:=symtable^.datasize;
- inc(symtable^.datasize,target_os.size_of_pointer);
- {$ifdef INCLUDEOK}
- include(objectoptions,oo_has_vmt);
- {$else}
- objectoptions:=objectoptions+[oo_has_vmt];
- {$endif}
- end;
- end;
- procedure tobjectdef.check_forwards;
- begin
- symtable^.check_forwards;
- if (oo_is_forward in objectoptions) then
- begin
- { ok, in future, the forward can be resolved }
- Message1(sym_e_class_forward_not_resolved,objname^);
- {$ifdef INCLUDEOK}
- exclude(objectoptions,oo_is_forward);
- {$else}
- objectoptions:=objectoptions-[oo_is_forward];
- {$endif}
- end;
- end;
- { true, if self inherits from d (or if they are equal) }
- function tobjectdef.is_related(d : pobjectdef) : boolean;
- var
- hp : pobjectdef;
- begin
- hp:=@self;
- while assigned(hp) do
- begin
- if hp=d then
- begin
- is_related:=true;
- exit;
- end;
- hp:=hp^.childof;
- end;
- is_related:=false;
- end;
- function tobjectdef.size : longint;
- begin
- if (oo_is_class in objectoptions) then
- size:=target_os.size_of_pointer
- else
- size:=symtable^.datasize;
- end;
- function tobjectdef.alignment:longint;
- begin
- alignment:=symtable^.dataalignment;
- end;
- function tobjectdef.vmtmethodoffset(index:longint):longint;
- begin
- { for offset of methods for classes, see rtl/inc/objpash.inc }
- if is_class then
- vmtmethodoffset:=(index+12)*target_os.size_of_pointer
- else
- vmtmethodoffset:=(index+3)*target_os.size_of_pointer;
- end;
- function tobjectdef.vmt_mangledname : string;
- {DM: I get a nil pointer on the owner name. I don't know if this
- mayhappen, and I have therefore fixed the problem by doing nil pointer
- checks.}
- var
- s1,s2:string;
- begin
- if not(oo_has_vmt in objectoptions) then
- Message1(parser_object_has_no_vmt,objname^);
- if owner^.name=nil then
- s1:=''
- else
- s1:=owner^.name^;
- if objname=nil then
- s2:=''
- else
- s2:=objname^;
- vmt_mangledname:='VMT_'+s1+'$_'+s2;
- end;
- function tobjectdef.rtti_name : string;
- var
- s1,s2:string;
- begin
- if owner^.name=nil then
- s1:=''
- else
- s1:=owner^.name^;
- if objname=nil then
- s2:=''
- else
- s2:=objname^;
- rtti_name:='RTTI_'+s1+'$_'+s2;
- end;
- function tobjectdef.is_class : boolean;
- begin
- is_class:=(oo_is_class in objectoptions);
- end;
- {$ifdef GDB}
- procedure addprocname(p :pnamedindexobject);
- var virtualind,argnames : string;
- news, newrec : pchar;
- pd,ipd : pprocdef;
- lindex : longint;
- para : pparaitem;
- arglength : byte;
- sp : char;
- begin
- If psym(p)^.typ = procsym then
- begin
- pd := pprocsym(p)^.definition;
- { this will be used for full implementation of object stabs
- not yet done }
- ipd := pd;
- while assigned(ipd^.nextoverloaded) do ipd := ipd^.nextoverloaded;
- if (po_virtualmethod in pd^.procoptions) then
- begin
- lindex := pd^.extnumber;
- {doesnt seem to be necessary
- lindex := lindex or $80000000;}
- virtualind := '*'+tostr(lindex)+';'+ipd^._class^.numberstring+';'
- end else virtualind := '.';
- { used by gdbpas to recognize constructor and destructors }
- if (pd^.proctypeoption=potype_constructor) then
- argnames:='__ct__'
- else if (pd^.proctypeoption=potype_destructor) then
- argnames:='__dt__'
- else
- argnames := '';
- { arguments are not listed here }
- {we don't need another definition}
- para := pparaitem(pd^.para^.first);
- while assigned(para) do
- begin
- if para^.data^.deftype = formaldef then
- begin
- if para^.paratyp=vs_var then
- argnames := argnames+'3var'
- else if para^.paratyp=vs_const then
- argnames:=argnames+'5const';
- end
- else
- begin
- { if the arg definition is like (v: ^byte;..
- there is no sym attached to data !!! }
- if assigned(para^.data^.sym) then
- begin
- arglength := length(para^.data^.sym^.name);
- argnames := argnames + tostr(arglength)+para^.data^.sym^.name;
- end
- else
- begin
- argnames:=argnames+'11unnamedtype';
- end;
- end;
- para := pparaitem(para^.next);
- end;
- ipd^.is_def_stab_written := true;
- { here 2A must be changed for private and protected }
- { 0 is private 1 protected and 2 public }
- if (sp_private in psym(p)^.symoptions) then sp:='0'
- else if (sp_protected in psym(p)^.symoptions) then sp:='1'
- else sp:='2';
- newrec := strpnew(p^.name+'::'+ipd^.numberstring
- +'=##'+pd^.retdef^.numberstring+';:'+argnames+';'+sp+'A'
- +virtualind+';');
- { get spare place for a string at the end }
- if strlen(StabRecString) + strlen(newrec) >= StabRecSize-256 then
- begin
- getmem(news,stabrecsize+memsizeinc);
- strcopy(news,stabrecstring);
- freemem(stabrecstring,stabrecsize);
- stabrecsize:=stabrecsize+memsizeinc;
- stabrecstring:=news;
- end;
- strcat(StabRecstring,newrec);
- {freemem(newrec,memsizeinc); }
- strdispose(newrec);
- {This should be used for case !!}
- RecOffset := RecOffset + pd^.size;
- end;
- end;
- function tobjectdef.stabstring : pchar;
- var anc : pobjectdef;
- oldrec : pchar;
- oldrecsize : longint;
- str_end : string;
- begin
- oldrec := stabrecstring;
- oldrecsize:=stabrecsize;
- stabrecsize:=memsizeinc;
- GetMem(stabrecstring,stabrecsize);
- strpcopy(stabRecString,'s'+tostr(symtable^.datasize));
- if assigned(childof) then
- {only one ancestor not virtual, public, at base offset 0 }
- { !1 , 0 2 0 , }
- strpcopy(strend(stabrecstring),'!1,020,'+childof^.numberstring+';');
- {virtual table to implement yet}
- RecOffset := 0;
- symtable^.foreach({$ifndef TP}@{$endif}addname);
- if (oo_has_vmt in objectoptions) then
- if not assigned(childof) or not(oo_has_vmt in childof^.objectoptions) then
- begin
- strpcopy(strend(stabrecstring),'$vf'+numberstring+':'+typeglobalnumber('vtblarray')
- +','+tostr(vmt_offset*8)+';');
- end;
- symtable^.foreach({$ifndef TP}@{$endif}addprocname);
- if (oo_has_vmt in objectoptions) then
- begin
- anc := @self;
- while assigned(anc^.childof) and (oo_has_vmt in anc^.childof^.objectoptions) do
- anc := anc^.childof;
- str_end:=';~%'+anc^.numberstring+';';
- end
- else
- str_end:=';';
- strpcopy(strend(stabrecstring),str_end);
- stabstring := strnew(StabRecString);
- freemem(stabrecstring,stabrecsize);
- stabrecstring := oldrec;
- stabrecsize:=oldrecsize;
- end;
- {$endif GDB}
- procedure tobjectdef.write_child_init_data;
- begin
- symtable^.foreach({$ifndef TP}@{$endif}generate_child_inittable);
- end;
- procedure tobjectdef.write_init_data;
- begin
- if is_class then
- rttilist^.concat(new(pai_const,init_8bit(tkclass)))
- else
- rttilist^.concat(new(pai_const,init_8bit(tkobject)));
- { generate the name }
- rttilist^.concat(new(pai_const,init_8bit(length(objname^))));
- rttilist^.concat(new(pai_string,init(objname^)));
- rttilist^.concat(new(pai_const,init_32bit(size)));
- count:=0;
- symtable^.foreach({$ifndef TP}@{$endif}count_inittable_fields);
- rttilist^.concat(new(pai_const,init_32bit(count)));
- symtable^.foreach({$ifndef TP}@{$endif}write_field_inittable);
- end;
- function tobjectdef.needs_inittable : boolean;
- var
- oldb : boolean;
- begin
- { there are recursive calls to needs_inittable possible, }
- { so we have to change to old value how else should }
- { we do that ? check_rec_rtti can't be a nested }
- { procedure of needs_rtti ! }
- oldb:=binittable;
- binittable:=false;
- symtable^.foreach({$ifndef TP}@{$endif}check_rec_inittable);
- needs_inittable:=binittable;
- binittable:=oldb;
- end;
- procedure count_published_properties(sym:pnamedindexobject);
- {$ifndef fpc}far;{$endif}
- begin
- if needs_prop_entry(psym(sym)) then
- inc(count);
- end;
- procedure write_property_info(sym : pnamedindexobject);{$ifndef fpc}far;{$endif}
- var
- proctypesinfo : byte;
- procedure writeproc(sym : ppropsymlist;def : pdef;shiftvalue : byte);
- var
- typvalue : byte;
- hp : ppropsymlist;
- address : longint;
- begin
- if not(assigned(sym) and assigned(sym^.sym)) then
- begin
- rttilist^.concat(new(pai_const,init_32bit(1)));
- typvalue:=3;
- end
- else if sym^.sym^.typ=varsym then
- begin
- address:=0;
- hp:=sym;
- while assigned(hp) do
- begin
- inc(address,pvarsym(hp^.sym)^.address);
- hp:=hp^.next;
- end;
- rttilist^.concat(new(pai_const,init_32bit(address)));
- typvalue:=0;
- end
- else
- begin
- if not(po_virtualmethod in pprocdef(def)^.procoptions) then
- begin
- rttilist^.concat(new(pai_const_symbol,initname(pprocdef(def)^.mangledname)));
- typvalue:=1;
- end
- else
- begin
- { virtual method, write vmt offset }
- rttilist^.concat(new(pai_const,init_32bit(
- pprocdef(def)^._class^.vmtmethodoffset(pprocdef(def)^.extnumber))));
- typvalue:=2;
- end;
- end;
- proctypesinfo:=proctypesinfo or (typvalue shl shiftvalue);
- end;
- begin
- if needs_prop_entry(psym(sym)) then
- case psym(sym)^.typ of
- varsym:
- begin
- if not(pvarsym(sym)^.definition^.deftype=objectdef) or
- not(pobjectdef(pvarsym(sym)^.definition)^.is_class) then
- internalerror(1509992);
- { access to implicit class property as field }
- proctypesinfo:=(0 shl 0) or (0 shl 2) or (0 shl 4);
- rttilist^.concat(new(pai_const_symbol,initname(pvarsym(sym)^.definition^.get_rtti_label)));
- rttilist^.concat(new(pai_const,init_32bit(pvarsym(sym)^.address)));
- rttilist^.concat(new(pai_const,init_32bit(pvarsym(sym)^.address)));
- { per default stored }
- rttilist^.concat(new(pai_const,init_32bit(1)));
- { index as well as ... }
- rttilist^.concat(new(pai_const,init_32bit(0)));
- { default value are zero }
- rttilist^.concat(new(pai_const,init_32bit(0)));
- rttilist^.concat(new(pai_const,init_16bit(count)));
- inc(count);
- rttilist^.concat(new(pai_const,init_8bit(proctypesinfo)));
- rttilist^.concat(new(pai_const,init_8bit(length(pvarsym(sym)^.name))));
- rttilist^.concat(new(pai_string,init(pvarsym(sym)^.name)));
- end;
- propertysym:
- begin
- if ppo_indexed in ppropertysym(sym)^.propoptions then
- proctypesinfo:=$40
- else
- proctypesinfo:=0;
- rttilist^.concat(new(pai_const_symbol,initname(ppropertysym(sym)^.proptype^.get_rtti_label)));
- writeproc(ppropertysym(sym)^.readaccesssym,ppropertysym(sym)^.readaccessdef,0);
- writeproc(ppropertysym(sym)^.writeaccesssym,ppropertysym(sym)^.writeaccessdef,2);
- { isn't it stored ? }
- if not(ppo_stored in ppropertysym(sym)^.propoptions) then
- begin
- rttilist^.concat(new(pai_const,init_32bit(0)));
- proctypesinfo:=proctypesinfo or (3 shl 4);
- end
- else
- writeproc(ppropertysym(sym)^.storedsym,ppropertysym(sym)^.storeddef,4);
- rttilist^.concat(new(pai_const,init_32bit(ppropertysym(sym)^.index)));
- rttilist^.concat(new(pai_const,init_32bit(ppropertysym(sym)^.default)));
- rttilist^.concat(new(pai_const,init_16bit(count)));
- inc(count);
- rttilist^.concat(new(pai_const,init_8bit(proctypesinfo)));
- rttilist^.concat(new(pai_const,init_8bit(length(ppropertysym(sym)^.name))));
- rttilist^.concat(new(pai_string,init(ppropertysym(sym)^.name)));
- end;
- else internalerror(1509992);
- end;
- end;
- procedure generate_published_child_rtti(sym : pnamedindexobject);{$ifndef fpc}far;{$endif}
- begin
- if needs_prop_entry(psym(sym)) then
- case psym(sym)^.typ of
- varsym:
- pvarsym(sym)^.definition^.get_rtti_label;
- propertysym:
- ppropertysym(sym)^.proptype^.get_rtti_label;
- else internalerror(1509991);
- end;
- end;
- procedure tobjectdef.write_child_rtti_data;
- begin
- symtable^.foreach({$ifndef TP}@{$endif}generate_published_child_rtti);
- end;
- procedure tobjectdef.generate_rtti;
- begin
- has_rtti:=true;
- getdatalabel(rtti_label);
- write_child_rtti_data;
- rttilist^.concat(new(pai_symbol,initname_global(rtti_name,0)));
- rttilist^.concat(new(pai_label,init(rtti_label)));
- write_rtti_data;
- rttilist^.concat(new(pai_symbol_end,initname(rtti_name)));
- end;
- function tobjectdef.next_free_name_index : longint;
- var
- i : longint;
- begin
- if assigned(childof) and (oo_can_have_published in childof^.objectoptions) then
- i:=childof^.next_free_name_index
- else
- i:=0;
- count:=0;
- symtable^.foreach({$ifndef TP}@{$endif}count_published_properties);
- next_free_name_index:=i+count;
- end;
- procedure tobjectdef.write_rtti_data;
- begin
- if is_class then
- rttilist^.concat(new(pai_const,init_8bit(tkclass)))
- else
- rttilist^.concat(new(pai_const,init_8bit(tkobject)));
- { generate the name }
- rttilist^.concat(new(pai_const,init_8bit(length(objname^))));
- rttilist^.concat(new(pai_string,init(objname^)));
- { write class type }
- rttilist^.concat(new(pai_const_symbol,initname(vmt_mangledname)));
- { write owner typeinfo }
- if assigned(childof) and (oo_can_have_published in childof^.objectoptions) then
- rttilist^.concat(new(pai_const_symbol,initname(childof^.get_rtti_label)))
- else
- rttilist^.concat(new(pai_const,init_32bit(0)));
- { count total number of properties }
- if assigned(childof) and (oo_can_have_published in childof^.objectoptions) then
- count:=childof^.next_free_name_index
- else
- count:=0;
- { write it }
- symtable^.foreach({$ifndef TP}@{$endif}count_published_properties);
- rttilist^.concat(new(pai_const,init_16bit(count)));
- { write unit name }
- if assigned(owner^.name) then
- begin
- rttilist^.concat(new(pai_const,init_8bit(length(owner^.name^))));
- rttilist^.concat(new(pai_string,init(owner^.name^)));
- end
- else
- rttilist^.concat(new(pai_const,init_8bit(0)));
- { write published properties count }
- count:=0;
- symtable^.foreach({$ifndef TP}@{$endif}count_published_properties);
- rttilist^.concat(new(pai_const,init_16bit(count)));
- { count is used to write nameindex }
- { but we need an offset of the owner }
- { to give each property an own slot }
- if assigned(childof) and (oo_can_have_published in childof^.objectoptions) then
- count:=childof^.next_free_name_index
- else
- count:=0;
- symtable^.foreach({$ifndef TP}@{$endif}write_property_info);
- end;
- function tobjectdef.is_publishable : boolean;
- begin
- is_publishable:=is_class;
- end;
- function tobjectdef.get_rtti_label : string;
- begin
- get_rtti_label:=rtti_name;
- end;
- {****************************************************************************
- TFORWARDDEF
- ****************************************************************************}
- constructor tforwarddef.init(const s:string);
- var
- oldregisterdef : boolean;
- begin
- { never register the forwarddefs, they are disposed at the
- end of the type declaration block }
- oldregisterdef:=registerdef;
- registerdef:=false;
- inherited init;
- registerdef:=oldregisterdef;
- deftype:=forwarddef;
- tosymname:=s;
- end;
- function tforwarddef.gettypename:string;
- begin
- gettypename:='unresolved forward to '+tosymname;
- end;
- {****************************************************************************
- TERRORDEF
- ****************************************************************************}
- constructor terrordef.init;
- begin
- inherited init;
- deftype:=errordef;
- end;
- {$ifdef GDB}
- function terrordef.stabstring : pchar;
- begin
- stabstring:=strpnew('error'+numberstring);
- end;
- {$endif GDB}
- function terrordef.gettypename:string;
- begin
- gettypename:='<erroneous type>';
- end;
- {
- $Log$
- Revision 1.174 1999-11-06 14:34:26 peter
- * truncated log to 20 revs
- Revision 1.173 1999/11/05 17:18:02 pierre
- * local browsing works at first level
- ie for function defined in interface or implementation
- not yet for functions inside other functions
- Revision 1.172 1999/10/26 12:30:45 peter
- * const parameter is now checked
- * better and generic check if a node can be used for assigning
- * export fixes
- * procvar equal works now (it never had worked at least from 0.99.8)
- * defcoll changed to linkedlist with pparaitem so it can easily be
- walked both directions
- Revision 1.171 1999/10/06 17:39:15 peter
- * fixed stabs writting for forward types
- Revision 1.170 1999/10/04 13:46:04 michael
- * patch from peter for classes
- Revision 1.169 1999/10/03 19:41:38 peter
- * inittable for record fixed (it was only checking for classes)
- Revision 1.168 1999/10/01 10:05:44 peter
- + procedure directive support in const declarations, fixes bug 232
- Revision 1.167 1999/10/01 08:02:48 peter
- * forward type declaration rewritten
- Revision 1.166 1999/09/26 21:30:21 peter
- + constant pointer support which can happend with typecasting like
- const p=pointer(1)
- * better procvar parsing in typed consts
- Revision 1.165 1999/09/20 16:39:02 peter
- * cs_create_smart instead of cs_smartlink
- * -CX is create smartlink
- * -CD is create dynamic, but does nothing atm.
- Revision 1.164 1999/09/15 22:09:26 florian
- + rtti is now automatically generated for published classes, i.e.
- they are handled like an implicit property
- Revision 1.163 1999/09/15 20:35:44 florian
- * small fix to operator overloading when in MMX mode
- + the compiler uses now fldz and fld1 if possible
- + some fixes to floating point registers
- + some math. functions (arctan, ln, sin, cos, sqrt, sqr, pi) are now inlined
- * .... ???
- Revision 1.162 1999/09/12 08:48:09 florian
- * bugs 593 and 607 fixed
- * some other potential bugs with array constructors fixed
- * for classes compiled in $M+ and it's childs, the default access method
- is now published
- * fixed copyright message (it is now 1993-99)
- Revision 1.161 1999/09/10 18:48:09 florian
- * some bug fixes (e.g. must_be_valid and procinfo.funcret_is_valid)
- * most things for stored properties fixed
- Revision 1.160 1999/09/02 17:07:40 florian
- * problems with -Or fixed: tdef.isfpuregable was wrong!
- Revision 1.159 1999/08/27 10:52:19 pierre
- + simplify_ppu code added :
- sets all registers used at PPU writing
- * tprocdef mangledname writing is CRC relevant
- Revision 1.158 1999/08/27 10:24:34 michael
- + Inittables should not contain fields which are classes
- Revision 1.157 1999/08/26 21:13:58 peter
- * array elementsize of 0 doesn't crash anymore
- Revision 1.156 1999/08/17 13:58:56 michael
- RTTI writing patch
- Revision 1.155 1999/08/16 16:26:04 pierre
- * error in stabs for tclassrefdef corrected
- Revision 1.154 1999/08/14 00:38:58 peter
- * hack to support property with record fields
- }
|