ppudump.pp 168 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292
  1. {
  2. Copyright (c) 1998-2020 by the FPC Development Team
  3. Dumps the contents of a FPC unit file (PPU File)
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************}
  16. program ppudump;
  17. {$i fpcdefs.inc}
  18. {$H+}
  19. {$packenum 1}
  20. {$define IN_PPUDUMP}
  21. uses
  22. { do NOT add symconst or globtype to make merging easier }
  23. { do include symconst and globtype now before splitting 2.5 PM 2011-06-15 }
  24. cutils,
  25. SysUtils,
  26. constexp,
  27. symconst,
  28. ppu,
  29. entfile,
  30. systems,
  31. cpuinfo,
  32. globals,
  33. globtype,
  34. widestr,
  35. tokens,
  36. version,
  37. ppuout,
  38. ppujson,
  39. ppuxml;
  40. const
  41. Title = 'PPU-Analyser';
  42. Copyright = 'Copyright (c) 1998-2020 by the Free Pascal Development Team';
  43. { verbosity }
  44. v_none = $0;
  45. v_header = $1;
  46. v_defs = $2;
  47. v_syms = $4;
  48. v_interface = $8;
  49. v_implementation = $10;
  50. // v_browser = $20;
  51. v_all = $ff;
  52. { not needed anymore $i systems.inc }
  53. { List of all supported cpus }
  54. const
  55. CpuTxt : array[tsystemcpu] of string[16]=
  56. (
  57. { 0 } 'none',
  58. { 1 } 'i386',
  59. { 2 } 'm68k',
  60. { 3 } 'alpha (obsolete)',
  61. { 4 } 'powerpc',
  62. { 5 } 'sparc',
  63. { 6 } 'vis (obsolete)',
  64. { 7 } 'ia64 (obsolete)',
  65. { 8 } 'x86_64',
  66. { 9 } 'mipseb',
  67. { 10 } 'arm',
  68. { 11 } 'powerpc64',
  69. { 12 } 'avr',
  70. { 13 } 'mipsel',
  71. { 14 } 'jvm',
  72. { 15 } 'i8086',
  73. { 16 } 'aarch64',
  74. { 17 } 'wasm32',
  75. { 18 } 'sparc64',
  76. { 19 } 'riscv32',
  77. { 20 } 'riscv64',
  78. { 21 } 'xtensa',
  79. { 22 } 'z80',
  80. { 23 } 'mips64',
  81. { 24 } 'mips64el'
  82. );
  83. CpuHasController : array[tsystemcpu] of boolean =
  84. (
  85. { 0 } false {'none'},
  86. { 1 } false {'i386'},
  87. { 2 } false {'m68k'},
  88. { 3 } false {'alpha (obsolete)'},
  89. { 4 } false {'powerpc'},
  90. { 5 } false {'sparc'},
  91. { 6 } false {'vis (obsolete)'},
  92. { 7 } false {'ia64 (obsolete)'},
  93. { 8 } false {'x86_64'},
  94. { 9 } false {'mipseb'},
  95. { 10 } true {'arm'},
  96. { 11 } false {'powerpc64'},
  97. { 12 } true {'avr'},
  98. { 13 } true {'mipsel'},
  99. { 14 } false {'jvm'},
  100. { 15 } false {'i8086'},
  101. { 16 } false {'aarch64'},
  102. { 17 } false {'wasm32'},
  103. { 18 } false {'sparc64'},
  104. { 19 } false {'riscv32'},
  105. { 20 } false {'riscv64'},
  106. { 21 } true {'xtensa'},
  107. { 22 } true {'z80'},
  108. { 23 } false {'mips64'},
  109. { 24 } false {'mips64el'}
  110. );
  111. { List of all supported system-cpu couples }
  112. const
  113. Targets : array[tsystem] of string[26]=(
  114. { 0 } 'none',
  115. { 1 } 'GO32V1 (obsolete)',
  116. { 2 } 'GO32V2',
  117. { 3 } 'Linux-i386',
  118. { 4 } 'OS/2',
  119. { 5 } 'Win32',
  120. { 6 } 'FreeBSD-i386',
  121. { 7 } 'Amiga',
  122. { 8 } 'Atari',
  123. { 9 } 'MacOSClassic-m68k',
  124. { 10 } 'Linux-m68k',
  125. { 11 } 'PalmOS-m68k',
  126. { 12 } 'Linux-alpha (obsolete)',
  127. { 13 } 'Linux-ppc',
  128. { 14 } 'MacOSClassic-ppc',
  129. { 15 } 'Solaris-i386',
  130. { 16 } 'BeOS-i386',
  131. { 17 } 'NetBSD-i386',
  132. { 18 } 'NetBSD-m68k',
  133. { 19 } 'Netware-i386-clib',
  134. { 20 } 'Qnx-i386',
  135. { 21 } 'WDOSX-i386',
  136. { 22 } 'Solaris-sparc',
  137. { 23 } 'Linux-sparc',
  138. { 24 } 'OpenBSD-i386',
  139. { 25 } 'OpenBSD-m68k (obsolete)',
  140. { 26 } 'Linux-x86-64',
  141. { 27 } 'Darwin-ppc',
  142. { 28 } 'OS/2 via EMX',
  143. { 29 } 'NetBSD-powerpc',
  144. { 30 } 'OpenBSD-powerpc',
  145. { 31 } 'Linux-arm',
  146. { 32 } 'Watcom-i386',
  147. { 33 } 'MorphOS-powerpc',
  148. { 34 } 'FreeBSD-x86-64',
  149. { 35 } 'Netware-i386-libc',
  150. { 36 } 'Amiga-PowerPC',
  151. { 37 } 'Win64-x64',
  152. { 38 } 'WinCE-ARM',
  153. { 39 } 'Win64-iA64 (obsolete)',
  154. { 40 } 'WinCE-i386',
  155. { 41 } 'Linux-x64',
  156. { 42 } 'GBA-arm',
  157. { 43 } 'Linux-powerpc64',
  158. { 44 } 'Darwin-i386',
  159. { 45 } 'PalmOS-arm',
  160. { 46 } 'Darwin-powerpc64',
  161. { 47 } 'NDS-arm',
  162. { 48 } 'Embedded-i386',
  163. { 49 } 'Embedded-m68k',
  164. { 50 } 'Embedded-alpha (obsolete)',
  165. { 51 } 'Embedded-powerpc',
  166. { 52 } 'Embedded-sparc',
  167. { 53 } 'Embedded-vm (obsolete)',
  168. { 54 } 'Embedded-iA64 (obsolete)',
  169. { 55 } 'Embedded-x64',
  170. { 56 } 'Embedded-mips',
  171. { 57 } 'Embedded-arm',
  172. { 58 } 'Embedded-powerpc64',
  173. { 59 } 'Symbian-i386',
  174. { 60 } 'Symbian-arm',
  175. { 61 } 'Darwin-x64',
  176. { 62 } 'Embedded-avr',
  177. { 63 } 'Haiku-i386',
  178. { 64 } 'iOS-ARM',
  179. { 65 } 'Solaris-x86-64',
  180. { 66 } 'Linux-MIPS',
  181. { 67 } 'Linux-MIPSel',
  182. { 68 } 'NativeNT-i386',
  183. { 69 } 'iPhoneSim-i386',
  184. { 70 } 'Wii-powerpc',
  185. { 71 } 'OpenBSD-x86-64',
  186. { 72 } 'NetBSD-x86-64',
  187. { 73 } 'AIX-powerpc',
  188. { 74 } 'AIX-powerpc64',
  189. { 75 } 'Java-JVM',
  190. { 76 } 'Android-JVM',
  191. { 77 } 'Android-arm',
  192. { 78 } 'Android-i386',
  193. { 79 } 'MSDOS-i8086',
  194. { 80 } 'Android-MIPSel',
  195. { 81 } 'Embedded-mipseb',
  196. { 82 } 'Embedded-mipsel',
  197. { 83 } 'AROS-i386',
  198. { 84 } 'AROS-x86-64',
  199. { 85 } 'DragonFly-x86-64',
  200. { 86 } 'iOS-AArch64',
  201. { 87 } 'iPhoneSim-x86-64',
  202. { 88 } 'Linux-AArch64',
  203. { 89 } 'Win16',
  204. { 90 } 'Embedded-i8086',
  205. { 91 } 'AROS-arm',
  206. { 92 } 'WebAssembly-wasm',
  207. { 93 } 'Linux-sparc64',
  208. { 94 } 'Solaris-sparc64',
  209. { 95 } 'NetBSD-arm',
  210. { 96 } 'Linux-RiscV32',
  211. { 97 } 'Linux-RiscV64',
  212. { 98 } 'Embedded-RiscV32',
  213. { 99 } 'Embedded-RiscV64',
  214. { 100 } 'Android-AArch64',
  215. { 101 } 'Android-x86-64',
  216. { 102 } 'Haiku-x86-64',
  217. { 103 } 'Embedded-Xtensa',
  218. { 104 } 'FreeRTos-Xtensa',
  219. { 105 } 'Linux-Xtensa',
  220. { 106 } 'FreeRTos-arm',
  221. { 107 } 'Win64-AArch64',
  222. { 108 } 'Embedded-Z80',
  223. { 109 } 'ZXSpectrum-Z80',
  224. { 110 } 'MSX-DOS-Z80',
  225. { 111 } 'Darwin-AArch64',
  226. { 112 } 'AmstradCPC-Z80',
  227. { 113 } 'SinclairQL-m68k',
  228. { 114 } 'WASI-WASM32',
  229. { 115 } 'FreeBSD-AArch64',
  230. { 116 } 'Embedded-aarch64',
  231. { 117 } 'Linux-MIPS64',
  232. { 118 } 'Linux-MIPS64el'
  233. );
  234. const
  235. { in widestr, we have the following definition
  236. type
  237. tcompilerwidechar = word;
  238. thus widecharsize seems to always be 2 bytes }
  239. widecharsize : longint = 2;
  240. cpu : tsystemcpu = cpu_no;
  241. { This type is defined in scanner.pas unit }
  242. type
  243. tspecialgenerictoken = (
  244. ST_LOADSETTINGS,
  245. ST_LINE,
  246. ST_COLUMN,
  247. ST_FILEINDEX,
  248. ST_LOADMESSAGES,
  249. ST_INVALID);
  250. type
  251. tcpu_i386 = (
  252. cpu_variant_i386_none,
  253. cpu_variant_386,
  254. cpu_variant_486,
  255. cpu_variant_Pentium,
  256. cpu_variant_Pentium2,
  257. cpu_variant_Pentium3,
  258. cpu_variant_Pentium4,
  259. cpu_variant_PentiumM,
  260. cpu_variant_core_i,
  261. cpu_variant_core_avx,
  262. cpu_variant_core_avx2);
  263. tcpu_m68k = (
  264. cpu_variant_m68k_none,
  265. cpu_variant_MC68000,
  266. cpu_variant_MC68020,
  267. cpu_variant_MC68040,
  268. cpu_variant_MC68060,
  269. cpu_variant_isa_a,
  270. cpu_variant_isa_a_p,
  271. cpu_variant_isa_b,
  272. cpu_variant_isa_c,
  273. cpu_variant_cfv4e
  274. );
  275. tcpu_powerpc = (
  276. cpu_variant_powerpc_none,
  277. cpu_variant_ppc604,
  278. cpu_variant_ppc750,
  279. cpu_variant_ppc7400,
  280. cpu_variant_ppc970
  281. );
  282. tcpu_sparc = (
  283. cpu_variant_sparc_none,
  284. cpu_variant_SPARC_V7,
  285. cpu_variant_SPARC_V8,
  286. cpu_variant_SPARC_V9
  287. );
  288. tcpu_x86_64 = (
  289. cpu_variant_x86_64_none,
  290. cpu_variant_athlon64,
  291. cpu_variant_x86_64_core_i,
  292. cpu_variant_x86_64_core_avx,
  293. cpu_variant_x86_64_core_avx2
  294. );
  295. tcpu_mipseb = (
  296. cpu_variant_mipseb_none,
  297. cpu_variant_mips1,
  298. cpu_variant_mips2,
  299. cpu_variant_mips3,
  300. cpu_variant_mips4,
  301. cpu_variant_mips5,
  302. cpu_variant_mips32,
  303. cpu_variant_mips32r2,
  304. cpu_variant_pic32mx
  305. );
  306. tcpu_arm = (
  307. cpu_variant_arm_none,
  308. cpu_variant_armv3,
  309. cpu_variant_armv4,
  310. cpu_variant_armv4t,
  311. cpu_variant_armv5,
  312. cpu_variant_armv5t,
  313. cpu_variant_armv5te,
  314. cpu_variant_armv5tej,
  315. cpu_variant_armv6,
  316. cpu_variant_armv6k,
  317. cpu_variant_armv6t2,
  318. cpu_variant_armv6z,
  319. cpu_variant_armv6m,
  320. cpu_variant_armv7,
  321. cpu_variant_armv7a,
  322. cpu_variant_armv7r,
  323. cpu_variant_armv7m,
  324. cpu_variant_armv7em
  325. );
  326. tcpu_powerpc64 = (
  327. cpu_variant_powerpc64_none,
  328. cpu_variant_powerpc64_ppc970
  329. );
  330. tcpu_avr = (
  331. cpu_variant_avr_none,
  332. cpu_variant_avr1,
  333. cpu_variant_avr2,
  334. cpu_variant_avr25,
  335. cpu_variant_avr3,
  336. cpu_variant_avr31,
  337. cpu_variant_avr35,
  338. cpu_variant_avr4,
  339. cpu_variant_avr5,
  340. cpu_variant_avr51,
  341. cpu_variant_avr6
  342. );
  343. tcpu_mipsel = tcpu_mipseb;
  344. tcpu_jvm = (
  345. cpu_variant_jvm_none,
  346. { jvm, same as cpu_none }
  347. cpu_variant_jvm,
  348. { jvm byte code to be translated into Dalvik bytecode: more type-
  349. sensitive }
  350. cpu_variant_dalvik
  351. );
  352. tcpu_i8086 = (
  353. cpu_variant_i8086_none,
  354. cpu_variant_8086,
  355. cpu_variant_186,
  356. cpu_variant_286,
  357. cpu_variant_i8086_386,
  358. cpu_variant_i8086_486,
  359. cpu_variant_i8086_Pentium,
  360. cpu_variant_i8086_Pentium2,
  361. cpu_variant_i8086_Pentium3,
  362. cpu_variant_i8086_Pentium4,
  363. cpu_variant_i8086_PentiumM
  364. );
  365. tcpu_aarch64 = (
  366. cpu_variant_aarch64_none,
  367. cpu_variant_armv8
  368. );
  369. tcpu_wasm32 = (
  370. cpu_variant_wasm32_none);
  371. tcpu_sparc64 = (
  372. cpu_variant_sparc64_none,
  373. cpu_variant_SPARC64_V9
  374. );
  375. tcpu_riscv32 = (
  376. cpu_variant_riscv32_none,
  377. cpu_variant_rv32imafd,
  378. cpu_variant_rv32ima,
  379. cpu_variant_rv32im,
  380. cpu_variant_rv32i
  381. );
  382. tcpu_riscv64 = (
  383. cpu_variant_riscv64_none,
  384. cpu_variant_rv64imafdc,
  385. cpu_variant_rv64imafd,
  386. cpu_variant_rv64ima,
  387. cpu_variant_rv64im,
  388. cpu_variant_rv64i
  389. );
  390. tcpu_type = record
  391. case tsystemcpu of
  392. cpu_no: { 0 }
  393. ();
  394. cpu_i386: { 1 }
  395. (cpu_i386 : tcpu_i386;);
  396. cpu_m68k: { 2 }
  397. (cpu_m68k : tcpu_m68k;);
  398. obsolete_cpu_alpha: { 3 }
  399. ();
  400. cpu_powerpc: { 4 }
  401. (cpu_powerpc : tcpu_powerpc;);
  402. cpu_sparc: { 5 }
  403. (cpu_sparc : tcpu_sparc;);
  404. obsolete_cpu_vm: { 6 }
  405. ();
  406. obsolete_cpu_ia64: { 7 }
  407. ();
  408. cpu_x86_64: { 8 }
  409. (cpu_x86_64 : tcpu_x86_64;);
  410. cpu_mipseb: { 9 }
  411. (cpu_mipseb : tcpu_mipseb;);
  412. cpu_arm: { 10 }
  413. (cpu_arm : tcpu_arm;);
  414. cpu_powerpc64: { 11 }
  415. (cpu_powerpc64 : tcpu_powerpc64;);
  416. cpu_avr: { 12 }
  417. (cpu_avr : tcpu_avr;);
  418. cpu_mipsel: { 13 }
  419. (cpu_mipsel : tcpu_mipsel;);
  420. cpu_jvm: { 14 }
  421. (cpu_jvm : tcpu_jvm;);
  422. cpu_i8086: { 15 }
  423. (cpu_i8086 : tcpu_i8086;);
  424. cpu_aarch64: { 16 }
  425. (cpu_aarch64 : tcpu_aarch64;);
  426. cpu_wasm32: { 17 }
  427. (cpu_wasm32 : tcpu_wasm32;);
  428. cpu_sparc64: { 18 }
  429. (cpu_sparc64 : tcpu_sparc64;);
  430. cpu_riscv32: { 19 }
  431. (cpu_riscv32 : tcpu_riscv32;);
  432. cpu_riscv64: { 20 }
  433. (cpu_riscv64 : tcpu_riscv64;);
  434. end;
  435. TPpuModuleDef = class(TPpuUnitDef)
  436. ModuleFlags: tmoduleflags;
  437. end;
  438. type
  439. tppudumpfile = class(tppufile)
  440. protected
  441. procedure RaiseAssertion(Code: Longint); override;
  442. end;
  443. var
  444. ppufile : tppudumpfile;
  445. ppuversion : dword;
  446. space : string;
  447. verbose : longint;
  448. derefdata : pbyte;
  449. derefdatalen : longint;
  450. pout: TPpuOutput;
  451. nostdout: boolean;
  452. UnitList: TPpuContainerDef;
  453. CurUnit: TPpuModuleDef;
  454. SkipVersionCheck: boolean;
  455. SymAnsiStr: boolean;
  456. var
  457. { needed during tobjectdef parsing... }
  458. current_defoptions : tdefoptions;
  459. current_objectoptions : tobjectoptions;
  460. current_symtable_options : tsymtableoptions;
  461. {****************************************************************************
  462. Helper Routines
  463. ****************************************************************************}
  464. {****************************************************************************
  465. Routine to read 80-bit reals
  466. ****************************************************************************
  467. }
  468. {$PUSH}
  469. {$WARN 6018 OFF} { Turn off unreachable code warning }
  470. { On platforms with sizeof(ext) <> 10 the code below will cause an unreachable
  471. code warning, which will cause compilation failures with -Sew (KB) }
  472. type
  473. TSplit80bitReal = packed record
  474. case byte of
  475. 0: (bytes: Array[0..9] of byte);
  476. 1: (words: Array[0..4] of word);
  477. {$ifdef FPC_LITTLE_ENDIAN}
  478. 2: (cards: Array[0..1] of cardinal; w: word);
  479. {$else not FPC_LITTLE_ENDIAN}
  480. 2: (w:word; cards: Array[0..1] of cardinal);
  481. {$endif not FPC_LITTLE_ENDIAN}
  482. end;
  483. const
  484. maxDigits = 17;
  485. function Real80bitToStr(var e : TSplit80bitReal;var ext : extended) : string;
  486. var
  487. Temp : string;
  488. new : TSplit80bitReal;
  489. fraczero, expmaximal, sign, outside_double : boolean;
  490. exp : smallint;
  491. d : double;
  492. i : longint;
  493. mantval : qword;
  494. begin
  495. if ppufile.change_endian then
  496. begin
  497. for i:=0 to 9 do
  498. new.bytes[i]:=e.bytes[9-i];
  499. e:=new;
  500. end;
  501. if sizeof(ext)=10 then
  502. begin
  503. ext:=pextended(@e)^;
  504. str(ext,result);
  505. exit;
  506. end;
  507. { extended, format (MSB): 1 Sign bit, 15 bit exponent, 64 bit mantissa }
  508. sign := (e.w and $8000) <> 0;
  509. expMaximal := (e.w and $7fff) = 32767;
  510. exp:=(e.w and $7fff) - 16383 - 63;
  511. fraczero := (e.cards[0] = 0) and
  512. ((e.cards[1] and $7fffffff) = 0);
  513. {$ifdef FPC_LITTLE_ENDIAN}
  514. mantval := qword(e.cards[0]) or (qword(e.cards[1]) shl 32);
  515. {$else not FPC_LITTLE_ENDIAN}
  516. mantval := (qword(e.cards[0]) shl 32) or qword(e.cards[1]);
  517. {$endif not FPC_LITTLE_ENDIAN}
  518. if expMaximal then
  519. if fraczero then
  520. if sign then
  521. temp := '-Inf'
  522. else temp := '+Inf'
  523. else temp := 'Nan'
  524. else
  525. begin
  526. d:=double(mantval);
  527. if sign then
  528. d:=-d;
  529. outside_double:=false;
  530. Try
  531. if exp > 0 then
  532. begin
  533. for i:=1 to exp do
  534. d:=d *2.0;
  535. end
  536. else if exp < 0 then
  537. begin
  538. for i:=1 to -exp do
  539. d:=d /2.0;
  540. end;
  541. Except
  542. outside_double:=true;
  543. end;
  544. if (mantval<>0) and (d=0.0) then
  545. outside_double:=true;
  546. if outside_double then
  547. begin
  548. Temp:='Extended value outside double bound';
  549. ext:=0.0;
  550. end
  551. else
  552. begin
  553. ext:=d;
  554. system.str(d,temp);
  555. end;
  556. end;
  557. result:=temp;
  558. end;
  559. {$POP}
  560. const has_errors : boolean = false;
  561. has_warnings : boolean = false;
  562. has_more_infos : boolean = false;
  563. procedure SetHasErrors;
  564. begin
  565. has_errors:=true;
  566. end;
  567. Procedure WriteError(const S : string);
  568. Begin
  569. system.Writeln(StdErr, S);
  570. SetHasErrors;
  571. End;
  572. procedure StrAppend(var st : string; const st2 : string);
  573. begin
  574. st:=st+st2;
  575. end;
  576. procedure tppudumpfile.RaiseAssertion(Code: Longint);
  577. begin
  578. WriteError('Internal Error ' + ToStr(Code));
  579. inherited RaiseAssertion(Code);
  580. end;
  581. Procedure WriteWarning(const S : string);
  582. var
  583. ss: string;
  584. Begin
  585. ss:='!! Warning: ' + S;
  586. if nostdout then
  587. system.Writeln(StdErr, ss)
  588. else
  589. system.Writeln(ss);
  590. has_warnings:=true;
  591. End;
  592. procedure Write(const s: string);
  593. begin
  594. if nostdout then exit;
  595. system.write(s);
  596. end;
  597. procedure Write(const params: array of const);
  598. var
  599. i: integer;
  600. { Last vtType define in rtl/inc/objpash.inc }
  601. const
  602. max_vttype = vtUnicodeString;
  603. begin
  604. if nostdout then exit;
  605. for i:=Low(params) to High(params) do
  606. { All vtType in
  607. vtInteger = 0;
  608. vtBoolean = 1;
  609. vtChar = 2;
  610. vtExtended = 3;
  611. vtString = 4;
  612. vtPointer = 5;
  613. vtPChar = 6;
  614. vtObject = 7;
  615. vtClass = 8;
  616. vtWideChar = 9;
  617. vtPWideChar = 10;
  618. vtAnsiString32 = 11; called vtAnsiString in objpas unit
  619. vtCurrency = 12;
  620. vtVariant = 13;
  621. vtInterface = 14;
  622. vtWideString = 15;
  623. vtInt64 = 16;
  624. vtQWord = 17;
  625. vtUnicodeString = 18;
  626. // vtAnsiString16 = 19; not yet used
  627. // vtAnsiString64 = 20; not yet used
  628. }
  629. with TVarRec(params[i]) do
  630. case VType of
  631. vtInteger: system.write(VInteger);
  632. vtBoolean: system.write(VBoolean);
  633. vtChar: system.write(VChar);
  634. vtExtended: system.write(VExtended^);
  635. vtString: system.write(VString^);
  636. vtPointer:
  637. begin
  638. { Not sure the display will be correct
  639. if sizeof pointer is not native }
  640. WriteWarning('Pointer constant');
  641. end;
  642. vtPChar: system.write(VPChar);
  643. vtObject:
  644. begin
  645. { Not sure the display will be correct
  646. if sizeof pointer is not native }
  647. WriteWarning('Object constant');
  648. end;
  649. vtClass:
  650. begin
  651. { Not sure the display will be correct
  652. if sizeof pointer is not native }
  653. WriteWarning('Class constant');
  654. end;
  655. vtWideChar: system.write(VWideChar);
  656. vtPWideChar:
  657. begin
  658. WriteWarning('PWideChar constant');
  659. end;
  660. vtAnsiString: system.write(ansistring(VAnsiString));
  661. vtCurrency : system.write(VCurrency^);
  662. vtVariant :
  663. begin
  664. { Not sure the display will be correct
  665. if sizeof pointer is not native }
  666. WriteWarning('Variant constant');
  667. end;
  668. vtInterface :
  669. begin
  670. { Not sure the display will be correct
  671. if sizeof pointer is not native }
  672. WriteWarning('Interface constant');
  673. end;
  674. vtWideString : system.write(widestring(VWideString));
  675. vtInt64: system.write(VInt64^);
  676. vtQWord: system.write(VQWord^);
  677. vtUnicodeString : system.write(unicodestring(VUnicodeString));
  678. else
  679. begin
  680. system.writeln;
  681. system.writeln('Unsupported var type: ', VType);
  682. Halt(10);
  683. end;
  684. end;
  685. end;
  686. procedure Writeln(const s: string = '');
  687. begin
  688. if nostdout then exit;
  689. system.writeln(s);
  690. end;
  691. procedure Writeln(const params: array of const);
  692. begin
  693. if nostdout then exit;
  694. Write(params);
  695. system.writeln;
  696. end;
  697. Procedure HasMoreInfos;
  698. begin
  699. Writeln('!! Entry has more information stored');
  700. has_more_infos:=true;
  701. end;
  702. function Unknown(const st : string; val :longint) : string;
  703. Begin
  704. Unknown:='<!! Unknown'+st+' value '+tostr(val)+'>';
  705. SetHasErrors;
  706. end;
  707. function ToStr(w:longint):String;
  708. begin
  709. Str(w,ToStr);
  710. end;
  711. Function Target2Str(w:longint):string;
  712. begin
  713. if w<=ord(high(tsystem)) then
  714. Target2Str:=Targets[tsystem(w)]
  715. else
  716. Target2Str:=Unknown('target',w);
  717. end;
  718. Function Cpu2Str(w:longint):string;
  719. begin
  720. if w<=ord(high(tsystemcpu)) then
  721. begin
  722. cpu:=tsystemcpu(w);
  723. Cpu2Str:=CpuTxt[cpu];
  724. end
  725. else
  726. Cpu2Str:=Unknown('cpu',w);
  727. end;
  728. Function Varspez2Str(w:longint):string;
  729. const
  730. { in symconst unit
  731. tvarspez = (vs_value,vs_const,vs_var,vs_out,vs_constref); }
  732. varspezstr : array[tvarspez] of string[8]=('Value','Const','Var','Out','ConstRef','Final');
  733. begin
  734. if w<=ord(high(varspezstr)) then
  735. Varspez2Str:=varspezstr[tvarspez(w)]
  736. else
  737. Varspez2Str:=Unknown('varspez',w);
  738. end;
  739. Function VarRegable2Str(w:longint):string;
  740. { tvarregable type is defined in symconst unit }
  741. const
  742. varregableStr : array[tvarregable] of string[6]=('None','IntReg','FPUReg','MMReg','Addr');
  743. begin
  744. if w<=ord(high(varregablestr)) then
  745. Varregable2Str:=varregablestr[tvarregable(w)]
  746. else
  747. Varregable2Str:=Unknown('regable',w);
  748. end;
  749. Function Visibility2Str(w:longint):string;
  750. const
  751. { tvisibility type is defined in symconst unit }
  752. visibilityName : array[tvisibility] of string[16] = (
  753. 'hidden','strict private','private','strict protected','protected',
  754. 'public','published','<none>'
  755. );
  756. begin
  757. if w<=ord(high(visibilityName)) then
  758. result:=visibilityName[tvisibility(w)]
  759. else
  760. result:=Unknown('visibility',w);
  761. end;
  762. Function IntfEntryType2Str(w:longint):string;
  763. const
  764. { tinterfaceentrytype type is defined in symconst unit }
  765. Name : array[tinterfaceentrytype] of string = (
  766. 'standard','virtual method result','static method result','field value','virtual method class',
  767. 'static method class','field value class'
  768. );
  769. begin
  770. if w<=ord(high(Name)) then
  771. result:=Name[tinterfaceentrytype(w)]
  772. else
  773. result:=Unknown('entry type',w);
  774. end;
  775. function PPUFlags2Str(flags:dword):string;
  776. type
  777. tflagopt=record
  778. mask : dword;
  779. str : string[30];
  780. end;
  781. const
  782. flagopts=8;
  783. flagopt : array[1..flagopts] of tflagopt=(
  784. (mask: $4 ;str:'big_endian'),
  785. // (mask: $10 ;str:'browser'),
  786. (mask: $20 ;str:'in_library'),
  787. (mask: $40 ;str:'smart_linked'),
  788. (mask: $80 ;str:'static_linked'),
  789. (mask: $100 ;str:'shared_linked'),
  790. (mask: $400 ;str:'no_link'),
  791. (mask: $1000 ;str:'little_endian'),
  792. (mask: $8000 ;str:'fpu_emulation_on')
  793. );
  794. var
  795. i : longint;
  796. ntflags : dword;
  797. first : boolean;
  798. s : string;
  799. begin
  800. s:='';
  801. ntflags:=flags;
  802. if flags<>0 then
  803. begin
  804. first:=true;
  805. for i:=1to flagopts do
  806. if (flags and flagopt[i].mask)<>0 then
  807. begin
  808. if first then
  809. first:=false
  810. else
  811. s:=s+', ';
  812. s:=s+flagopt[i].str;
  813. ntflags:=ntflags and (not flagopt[i].mask);
  814. end;
  815. end
  816. else
  817. s:='none';
  818. if ntflags<>0 then
  819. begin
  820. s:=s+' unknown '+hexstr(ntflags,8);
  821. SetHasErrors;
  822. end;
  823. PPUFlags2Str:=s;
  824. end;
  825. Function L0(l:longint):string;
  826. {
  827. return the string of value l, if l<10 then insert a zero, so
  828. the string is always at least 2 chars '01','02',etc
  829. }
  830. var
  831. s : string;
  832. begin
  833. Str(l,s);
  834. if l<10 then
  835. s:='0'+s;
  836. L0:=s;
  837. end;
  838. function filetimestring( t : longint) : string;
  839. {
  840. convert dos datetime t to a string YY/MM/DD HH:MM:SS
  841. }
  842. var
  843. DT : TDateTime;
  844. hsec : word;
  845. Year,Month,Day: Word;
  846. hour,min,sec : word;
  847. begin
  848. if t=-1 then
  849. begin
  850. Result := 'Not Found';
  851. SetHasErrors;
  852. exit;
  853. end;
  854. DT := FileDateToDateTime(t);
  855. DecodeTime(DT,hour,min,sec,hsec);
  856. DecodeDate(DT,year,month,day);
  857. Result := L0(Year)+'/'+L0(Month)+'/'+L0(Day)+' '+L0(Hour)+':'+L0(min)+':'+L0(sec);
  858. end;
  859. {****************************************************************************
  860. Read Routines
  861. ****************************************************************************}
  862. function readsymstr(ppufile: tppufile): ansistring;
  863. begin
  864. if not(mf_symansistr in CurUnit.ModuleFlags) then
  865. result:=ppufile.getstring
  866. else
  867. result:=ppufile.getansistring;
  868. end;
  869. function readmanagementoperatoroptions(const space : string;const name : string):tmanagementoperators;forward;
  870. procedure readrecsymtableoptions;
  871. var
  872. usefieldalignment : shortint;
  873. begin
  874. if ppufile.readentry<>ibrecsymtableoptions then
  875. begin
  876. SetHasErrors;
  877. exit;
  878. end;
  879. writeln([space,' recordalignment: ',shortint(ppufile.getbyte)]);
  880. usefieldalignment:=shortint(ppufile.getbyte);
  881. writeln([space,' usefieldalignment: ',usefieldalignment]);
  882. writeln([space,' recordalignmin: ',shortint(ppufile.getbyte)]);
  883. if (usefieldalignment=C_alignment) then
  884. writeln([space,' fieldalignment: ',shortint(ppufile.getbyte)]);
  885. readmanagementoperatoroptions(space,'Fields have MOPs');
  886. end;
  887. function readsymtableoptions(const s: string) : tsymtableoptions;
  888. type
  889. tsymtblopt=record
  890. mask : tsymtableoption;
  891. str : string[30];
  892. end;
  893. const
  894. symtblopts=ord(high(tsymtableoption)) + 1;
  895. symtblopt : array[1..symtblopts] of tsymtblopt=(
  896. (mask:sto_has_helper; str:'Has helper'),
  897. (mask:sto_has_generic; str:'Has generic'),
  898. (mask:sto_has_operator; str:'Has operator'),
  899. (mask:sto_needs_init_final;str:'Needs init final table'),
  900. (mask:sto_has_non_trivial_init;str:'Has non trivial init')
  901. );
  902. var
  903. options : tsymtableoptions;
  904. first : boolean;
  905. i : integer;
  906. begin
  907. if ppufile.readentry<>ibsymtableoptions then
  908. begin
  909. SetHasErrors;
  910. exit;
  911. end;
  912. ppufile.getset(tppuset1(options));
  913. if space<>'' then
  914. writeln([space,'------ ',s,' ------']);
  915. write([space,'Symtable options: ']);
  916. if options<>[] then
  917. begin
  918. first:=true;
  919. for i:=1 to symtblopts do
  920. if (symtblopt[i].mask in options) then
  921. begin
  922. if first then
  923. first:=false
  924. else
  925. write(', ');
  926. write(symtblopt[i].str);
  927. end;
  928. end
  929. else
  930. write('none');
  931. writeln;
  932. readsymtableoptions:=options;
  933. end;
  934. procedure readdefinitions(const s:string; ParentDef: TPpuContainerDef); forward;
  935. procedure readsymbols(const s:string; ParentDef: TPpuContainerDef = nil); forward;
  936. procedure readsymtable(const s: string; ParentDef: TPpuContainerDef = nil);
  937. var
  938. stored_symtable_options : tsymtableoptions;
  939. begin
  940. stored_symtable_options:=current_symtable_options;
  941. current_symtable_options:=readsymtableoptions(s);
  942. readdefinitions(s, ParentDef);
  943. readsymbols(s, ParentDef);
  944. current_symtable_options:=stored_symtable_options;
  945. end;
  946. procedure readrecordsymtable(const s: string; ParentDef: TPpuContainerDef = nil);
  947. begin
  948. readrecsymtableoptions;
  949. readsymtable(s, ParentDef);
  950. end;
  951. Procedure ReadLinkContainer(const prefix:string);
  952. {
  953. Read a serie of strings and write to the screen starting every line
  954. with prefix
  955. }
  956. function maskstr(m:longint):string;
  957. { link options are in globtype unit
  958. const
  959. link_none = $0;
  960. link_always = $1;
  961. link_static = $2;
  962. link_smart = $4;
  963. link_shared = $8; }
  964. var
  965. s : string;
  966. begin
  967. s:='';
  968. if (m and link_always)<>0 then
  969. s:=s+'always ';
  970. if (m and link_static)<>0 then
  971. s:=s+'static ';
  972. if (m and link_smart)<>0 then
  973. s:=s+'smart ';
  974. if (m and link_shared)<>0 then
  975. s:=s+'shared ';
  976. maskstr:=s;
  977. end;
  978. var
  979. s : string;
  980. m : longint;
  981. begin
  982. while not ppufile.endofentry do
  983. begin
  984. s:=ppufile.getstring;
  985. m:=ppufile.getlongint;
  986. WriteLn([prefix,s,' (',maskstr(m),')']);
  987. end;
  988. end;
  989. Procedure ReadContainer(const prefix:string);
  990. {
  991. Read a series of strings and write to the screen starting every line
  992. with prefix
  993. }
  994. begin
  995. while not ppufile.endofentry do
  996. WriteLn([prefix,ppufile.getstring]);
  997. end;
  998. procedure ReadLoadUnit;
  999. var
  1000. ucrc,uintfcrc, indcrc : cardinal;
  1001. un: TPpuUnitDef;
  1002. begin
  1003. while not ppufile.EndOfEntry do
  1004. begin
  1005. un:=TPpuUnitDef.Create(CurUnit.UsedUnits);
  1006. un.Name:=ppufile.getstring;
  1007. write(['Uses unit: ',un.Name]);
  1008. ucrc:=cardinal(ppufile.getlongint);
  1009. uintfcrc:=cardinal(ppufile.getlongint);
  1010. indcrc:=cardinal(ppufile.getlongint);
  1011. writeln([' (Crc: ',hexstr(ucrc,8),', IntfcCrc: ',hexstr(uintfcrc,8),', IndCrc: ',hexstr(indcrc,8),')']);
  1012. un.Crc:=ucrc;
  1013. un.IntfCrc:=uintfcrc;
  1014. end;
  1015. end;
  1016. Procedure ReadDerefmap;
  1017. var
  1018. i,mapsize : longint;
  1019. s: string;
  1020. begin
  1021. mapsize:=ppufile.getlongint;
  1022. writeln(['DerefMapsize: ',mapsize]);
  1023. SetLength(CurUnit.RefUnits, mapsize);
  1024. for i:=0 to mapsize-1 do
  1025. begin
  1026. s:=ppufile.getstring;
  1027. writeln(['DerefMap[',i,'] = ',s]);
  1028. CurUnit.RefUnits[i]:=LowerCase(s);
  1029. end;
  1030. end;
  1031. Procedure ReadImportSymbols;
  1032. var
  1033. extlibname : string;
  1034. j,
  1035. extsymcnt : longint;
  1036. extsymname : string;
  1037. extsymmangledname : string;
  1038. extsymordnr : longint;
  1039. extsymisvar : boolean;
  1040. begin
  1041. while not ppufile.endofentry do
  1042. begin
  1043. extlibname:=ppufile.getstring;
  1044. extsymcnt:=ppufile.getlongint;
  1045. writeln(['External Library: ',extlibname,' (',extsymcnt,' imports)']);
  1046. for j:=0 to extsymcnt-1 do
  1047. begin
  1048. extsymname:=ppufile.getstring;
  1049. extsymmangledname:=ppufile.getstring;
  1050. extsymordnr:=ppufile.getlongint;
  1051. extsymisvar:=ppufile.getbyte<>0;
  1052. writeln([' ',extsymname,' as ',extsymmangledname,
  1053. '(OrdNr: ',extsymordnr,' IsVar: ',extsymisvar,')']);
  1054. end;
  1055. end;
  1056. end;
  1057. Procedure ReadDerefdata;
  1058. begin
  1059. derefdatalen:=ppufile.entrysize;
  1060. if derefdatalen=0 then
  1061. begin
  1062. Writeln(['No Derefdata length=0']);
  1063. derefdata:=nil;
  1064. exit;
  1065. end;
  1066. Writeln(['Derefdata length: ',derefdatalen]);
  1067. derefdata:=allocmem(derefdatalen);
  1068. ppufile.getdata(derefdata^,derefdatalen);
  1069. end;
  1070. Procedure FreeDerefdata;
  1071. begin
  1072. if assigned(derefdata) then
  1073. begin
  1074. FreeMem(derefdata);
  1075. derefdata:=nil;
  1076. derefdatalen:=0;
  1077. end;
  1078. end;
  1079. Procedure ReadWpoFileInfo;
  1080. begin
  1081. Writeln(['Compiled with input whole-program optimisation from ',ppufile.getstring,' ',filetimestring(ppufile.getlongint)]);
  1082. end;
  1083. Procedure ReadAsmSymbols;
  1084. const
  1085. unitasmlisttype: array[tunitasmlisttype] of string[6]=(
  1086. 'PUBLIC',
  1087. 'EXTERN'
  1088. );
  1089. type
  1090. { Copied from aasmbase.pas }
  1091. TAsmsymbind=(
  1092. AB_NONE,AB_EXTERNAL,AB_COMMON,AB_LOCAL,AB_GLOBAL,AB_WEAK_EXTERNAL,
  1093. { global in the current program/library, but not visible outside it }
  1094. AB_PRIVATE_EXTERN,AB_LAZY,AB_IMPORT,
  1095. { a symbol that's internal to the compiler and used as a temp }
  1096. AB_TEMP,
  1097. { a global symbol that points to another global symbol and is only used
  1098. to allow indirect loading in case of packages and indirect imports }
  1099. AB_INDIRECT,AB_EXTERNAL_INDIRECT,
  1100. AB_WEAK);
  1101. TAsmsymtype=(
  1102. AT_NONE,AT_FUNCTION,AT_DATA,AT_SECTION,AT_LABEL,
  1103. {
  1104. the address of this code label is taken somewhere in the code
  1105. so it must be taken care of it when creating pic
  1106. }
  1107. AT_ADDR,
  1108. { Label for debug or other non-program information }
  1109. AT_METADATA,
  1110. { label for data that must always be accessed indirectly, because it
  1111. is handled explcitely in the system unit or (e.g. RTTI and threadvar
  1112. tables) -- never seen in an assembler/assembler writer, always
  1113. changed to AT_DATA }
  1114. AT_DATA_FORCEINDIRECT,
  1115. { don't generate an implicit indirect symbol as that might be provided
  1116. by other means (e.g. the typed const builder) to ensure a correct
  1117. section name }
  1118. AT_DATA_NOINDIRECT,
  1119. { Thread-local symbol (ELF targets) }
  1120. AT_TLS,
  1121. { GNU indirect function (ELF targets) }
  1122. AT_GNU_IFUNC,
  1123. { WebAssembly global variable }
  1124. AT_WASM_GLOBAL,
  1125. { WebAssembly exception tag (used as a parameter for the 'throw' and
  1126. 'catch' instructions) }
  1127. AT_WASM_EXCEPTION_TAG
  1128. );
  1129. var
  1130. s,
  1131. bindstr,
  1132. typestr : string;
  1133. i : longint;
  1134. t: tunitasmlisttype;
  1135. begin
  1136. writeln([space,'Assembler Symbols']);
  1137. writeln([space,'-----------------']);
  1138. t:=tunitasmlisttype(ppufile.getbyte);
  1139. if (t>=Low(tunitasmlisttype)) and (t<=High(tunitasmlisttype)) then
  1140. typestr:=unitasmlisttype[t]
  1141. else
  1142. typestr:='UNKNOWN';
  1143. writeln([space,'Type: ',typestr]);
  1144. writeln([space,'Count: ',ppufile.getlongint]);
  1145. i:=0;
  1146. while (not ppufile.endofentry) and (not ppufile.error) do
  1147. begin
  1148. s:=ppufile.getstring;
  1149. case tasmsymbind(ppufile.getbyte) of
  1150. AB_EXTERNAL :
  1151. bindstr:='External';
  1152. AB_COMMON :
  1153. bindstr:='Common';
  1154. AB_LOCAL :
  1155. bindstr:='Local';
  1156. AB_GLOBAL :
  1157. bindstr:='Global';
  1158. AB_WEAK_EXTERNAL :
  1159. bindstr:='Weak external';
  1160. AB_PRIVATE_EXTERN :
  1161. bindstr:='Private extern';
  1162. AB_LAZY :
  1163. bindstr:='Lazy';
  1164. AB_IMPORT :
  1165. bindstr:='Import';
  1166. AB_TEMP :
  1167. bindstr:='Temp';
  1168. AB_INDIRECT :
  1169. bindstr:='Indirect';
  1170. AB_EXTERNAL_INDIRECT :
  1171. bindstr:='Indirect external';
  1172. AB_WEAK:
  1173. bindstr:='Weak';
  1174. else
  1175. begin
  1176. bindstr:='<Error !!>';
  1177. SetHasErrors;
  1178. end;
  1179. end;
  1180. case tasmsymtype(ppufile.getbyte) of
  1181. AT_FUNCTION :
  1182. typestr:='Function';
  1183. AT_DATA :
  1184. typestr:='Data';
  1185. AT_SECTION :
  1186. typestr:='Section';
  1187. AT_LABEL :
  1188. typestr:='Label';
  1189. AT_ADDR :
  1190. typestr:='Label (with address taken)';
  1191. AT_METADATA :
  1192. typestr:='Metadata';
  1193. { this shouldn't appear in a PPU }
  1194. AT_DATA_FORCEINDIRECT :
  1195. typestr:='Data (ForceIndirect)';
  1196. { this shouldn't appear in a PPU }
  1197. AT_DATA_NOINDIRECT:
  1198. typestr:='Data (NoIndirect)';
  1199. AT_TLS :
  1200. typestr:='TLS';
  1201. AT_GNU_IFUNC :
  1202. typestr:='GNU IFUNC';
  1203. AT_WASM_GLOBAL:
  1204. typestr:='WebAssembly global variable';
  1205. AT_WASM_EXCEPTION_TAG:
  1206. typestr:='WebAssembly exception tag';
  1207. else
  1208. begin
  1209. typestr:='<Error !!>';
  1210. SetHasErrors;
  1211. end;
  1212. end;
  1213. Writeln([space,' ',i,' : ',s,' [',bindstr,',',typestr,']']);
  1214. inc(i);
  1215. end;
  1216. writeln([space]);
  1217. end;
  1218. function getexprint:Tconstexprint;
  1219. begin
  1220. getexprint.overflow:=false;
  1221. getexprint.signed:=ppufile.getboolean;
  1222. getexprint.svalue:=ppufile.getint64;
  1223. end;
  1224. Procedure ReadPosInfo(Def: TPpuDef = nil);
  1225. var
  1226. info : byte;
  1227. fileindex,line,column : longint;
  1228. begin
  1229. with ppufile do
  1230. begin
  1231. fileindex:=0;
  1232. line:=0;
  1233. column:=0;
  1234. {
  1235. info byte layout in bits:
  1236. 0-1 - amount of bytes for fileindex
  1237. 2-3 - amount of bytes for line
  1238. 4-5 - amount of bytes for column
  1239. }
  1240. info:=getbyte;
  1241. case (info and $03) of
  1242. 0 : fileindex:=getbyte;
  1243. 1 : fileindex:=getword;
  1244. 2 : fileindex:=(getbyte shl 16) or getword;
  1245. 3 : fileindex:=getlongint;
  1246. end;
  1247. case ((info shr 2) and $03) of
  1248. 0 : line:=getbyte;
  1249. 1 : line:=getword;
  1250. 2 : line:=(getbyte shl 16) or getword;
  1251. 3 : line:=getlongint;
  1252. end;
  1253. case ((info shr 4) and $03) of
  1254. 0 : column:=getbyte;
  1255. 1 : column:=getword;
  1256. 2 : column:=(getbyte shl 16) or getword;
  1257. 3 : column:=getlongint;
  1258. end;
  1259. Writeln([fileindex,' (',line,',',column,')']);
  1260. if Def <> nil then
  1261. begin
  1262. Def.FilePos.FileIndex:=fileindex;
  1263. Def.FilePos.Line:=line;
  1264. Def.FilePos.Col:=column;
  1265. end;
  1266. end;
  1267. end;
  1268. procedure readderef(const derefspace: string; Ref: TPpuRef = nil);
  1269. var
  1270. b : tdereftype;
  1271. first : boolean;
  1272. idx : longint;
  1273. i,n : byte;
  1274. pdata : pbyte;
  1275. begin
  1276. if not assigned(derefdata) then
  1277. exit;
  1278. first:=true;
  1279. idx:=ppufile.getlongint;
  1280. if idx = -1 then
  1281. begin
  1282. writeln('Nil');
  1283. exit;
  1284. end;
  1285. if (idx>derefdatalen) then
  1286. begin
  1287. WriteError('!! Error: Deref idx '+IntToStr(idx)+' > '+IntToStr(derefdatalen));
  1288. exit;
  1289. end;
  1290. write([derefspace,'(',idx,') ']);
  1291. pdata:=@derefdata[idx];
  1292. i:=0;
  1293. n:=pdata[i];
  1294. inc(i);
  1295. if n<1 then
  1296. begin
  1297. WriteError('!! Error: Deref len < 1');
  1298. exit;
  1299. end;
  1300. while (i<=n) do
  1301. begin
  1302. if not first then
  1303. write(', ')
  1304. else
  1305. first:=false;
  1306. b:=tdereftype(pdata[i]);
  1307. inc(i);
  1308. case b of
  1309. deref_nil :
  1310. write('Nil');
  1311. deref_symid :
  1312. begin
  1313. idx:=pdata[i] shl 24 or pdata[i+1] shl 16 or pdata[i+2] shl 8 or pdata[i+3];
  1314. inc(i,4);
  1315. write(['SymId ',idx]);
  1316. if Ref <> nil then
  1317. Ref.Id:=idx;
  1318. end;
  1319. deref_defid :
  1320. begin
  1321. idx:=pdata[i] shl 24 or pdata[i+1] shl 16 or pdata[i+2] shl 8 or pdata[i+3];
  1322. inc(i,4);
  1323. write(['DefId ',idx]);
  1324. if Ref <> nil then
  1325. Ref.Id:=idx;
  1326. end;
  1327. deref_unit :
  1328. begin
  1329. idx:=pdata[i] shl 8 or pdata[i+1];
  1330. inc(i,2);
  1331. write(['Unit ',idx]);
  1332. if Ref <> nil then
  1333. Ref.UnitIndex:=idx;
  1334. end;
  1335. else
  1336. begin
  1337. WriteError('!! unsupported dereftyp: '+IntToStr(ord(b)));
  1338. break;
  1339. end;
  1340. end;
  1341. end;
  1342. writeln;
  1343. end;
  1344. Procedure ReadUnitImportSyms;
  1345. var
  1346. c,i : longint;
  1347. begin
  1348. writeln([space,'Imported Symbols']);
  1349. writeln([space,'----------------']);
  1350. c:=ppufile.getlongint;
  1351. for i:=0 to c-1 do
  1352. readderef(space);
  1353. writeln([space]);
  1354. end;
  1355. procedure readpropaccesslist(const s:string; Ref: TPpuRef = nil);
  1356. { type tsltype is in symconst unit }
  1357. const
  1358. slstr : array[tsltype] of string[12] = (
  1359. '',
  1360. 'load',
  1361. 'call',
  1362. 'subscript',
  1363. 'vec',
  1364. 'typeconv',
  1365. 'absolutetype'
  1366. );
  1367. var
  1368. sl : tsltype;
  1369. begin
  1370. readderef('',Ref);
  1371. repeat
  1372. sl:=tsltype(ppufile.getbyte);
  1373. if sl=sl_none then
  1374. break;
  1375. write([s,'(',slstr[sl],') ']);
  1376. case sl of
  1377. sl_none : ;
  1378. sl_call,
  1379. sl_load,
  1380. sl_subscript :
  1381. if (Ref <> nil) and (Ref.IsNull) then
  1382. begin
  1383. readderef('',Ref);
  1384. Ref.IsSymId:=True;
  1385. end
  1386. else
  1387. readderef('');
  1388. sl_absolutetype,
  1389. sl_typeconv :
  1390. readderef('');
  1391. sl_vec :
  1392. begin
  1393. writeln([ppufile.getlongint]);
  1394. readderef('');
  1395. end;
  1396. end;
  1397. until false;
  1398. end;
  1399. (*
  1400. talignmentinfo = packed record
  1401. procalign,
  1402. loopalign,
  1403. jumpalign,
  1404. constalignmin,
  1405. constalignmax,
  1406. varalignmin,
  1407. varalignmax,
  1408. localalignmin,
  1409. localalignmax,
  1410. recordalignmin,
  1411. recordalignmax,
  1412. maxCrecordalign : longint;
  1413. end;
  1414. tsettings = packed record
  1415. alignment : talignmentinfo;
  1416. globalswitches : tglobalswitches;
  1417. moduleswitches : tmoduleswitches;
  1418. localswitches : tlocalswitches;
  1419. modeswitches : tmodeswitches;
  1420. optimizerswitches : toptimizerswitches;
  1421. { generate information necessary to perform these wpo's during a subsequent compilation }
  1422. genwpoptimizerswitches: twpoptimizerswitches;
  1423. { perform these wpo's using information generated during a previous compilation }
  1424. dowpoptimizerswitches: twpoptimizerswitches;
  1425. debugswitches : tdebugswitches;
  1426. { 0: old behaviour for sets <=256 elements
  1427. >0: round to this size }
  1428. setalloc,
  1429. packenum : shortint;
  1430. packrecords : shortint;
  1431. maxfpuregisters : shortint;
  1432. cputype,
  1433. optimizecputype : tcputype;
  1434. fputype : tfputype;
  1435. asmmode : tasmmode;
  1436. interfacetype : tinterfacetypes;
  1437. defproccall : tproccalloption;
  1438. sourcecodepage : tcodepagestring;
  1439. minfpconstprec : tfloattype;
  1440. disabledircache : boolean;
  1441. { CPU targets with microcontroller support can add a controller specific unit }
  1442. controllertype : tcontrollertype;
  1443. { WARNING: this pointer cannot be written as such in record token }
  1444. pmessage : pmessagestaterecord;
  1445. end;
  1446. *)
  1447. procedure readprocinfooptions(space : string);
  1448. (*
  1449. tprocinfoflag=(
  1450. { procedure has at least one assembler block }
  1451. pi_has_assembler_block,
  1452. { procedure does a call }
  1453. pi_do_call,
  1454. { procedure has a try statement = no register optimization }
  1455. pi_uses_exceptions,
  1456. { procedure is declared as @var(assembler), don't optimize}
  1457. pi_is_assembler,
  1458. { procedure contains data which needs to be finalized }
  1459. pi_needs_implicit_finally,
  1460. { procedure has the implicit try..finally generated }
  1461. pi_has_implicit_finally,
  1462. { procedure uses fpu}
  1463. pi_uses_fpu,
  1464. { procedure uses GOT for PIC code }
  1465. pi_needs_got,
  1466. { references var/proc/type/const in static symtable,
  1467. i.e. not allowed for inlining from other units }
  1468. pi_uses_static_symtable,
  1469. { set if the procedure has to push parameters onto the stack }
  1470. pi_has_stackparameter,
  1471. { set if the procedure has at least one label }
  1472. pi_has_label,
  1473. { calls itself recursive }
  1474. pi_is_recursive,
  1475. { stack frame optimization not possible (only on x86 probably) }
  1476. pi_needs_stackframe,
  1477. { set if the procedure has at least one register saved on the stack }
  1478. pi_has_saved_regs,
  1479. { dfa was generated for this proc }
  1480. pi_dfaavailable,
  1481. { subroutine contains interprocedural used labels }
  1482. pi_has_interproclabel,
  1483. { subroutine contains interprocedural gotos }
  1484. pi_has_global_goto
  1485. ); *)
  1486. type
  1487. tprocinfoopt=record
  1488. mask : tprocinfoflag;
  1489. str : string[81];
  1490. end;
  1491. const
  1492. procinfoopts=ord(high(tprocinfoflag)) - ord(low(tprocinfoflag));
  1493. procinfoopt : array[0..procinfoopts] of tprocinfoopt=(
  1494. (mask:pi_has_assembler_block;
  1495. str:' has at least one assembler block'),
  1496. (mask:pi_do_call;
  1497. str:' does a call'),
  1498. (mask:pi_uses_exceptions;
  1499. str:' has a try statement = no register optimization '),
  1500. (mask:pi_is_assembler;
  1501. str:' is declared as @var(assembler), don''t optimize'),
  1502. (mask:pi_needs_implicit_finally;
  1503. str:' contains data which needs to be finalized '),
  1504. (mask:pi_has_implicit_finally;
  1505. str:' has the implicit try..finally generated '),
  1506. (mask:pi_uses_fpu;
  1507. str:' uses fpu'),
  1508. (mask:pi_needs_got;
  1509. str:' uses GOT for PIC code '),
  1510. (mask:pi_uses_static_symtable;
  1511. str:' references var/proc/type/const in static symtable'),
  1512. (mask:pi_has_stackparameter;
  1513. str:' set if the procedure has to push parameters onto the stack '),
  1514. (mask:pi_has_label;
  1515. str:' set if the procedure has at least one label '),
  1516. (mask:pi_is_recursive;
  1517. str:' calls itself recursive '),
  1518. (mask:pi_needs_stackframe;
  1519. str:' stack frame optimization not possible (only on x86 probably) '),
  1520. (mask:pi_has_saved_regs;
  1521. str:' set if the procedure has at least one register saved on the stack '),
  1522. (mask:pi_dfaavailable;
  1523. str:' dfa was generated for this proc '),
  1524. (mask:pi_has_interproclabel;
  1525. str:' subroutine contains interprocedural used labels '),
  1526. (mask:pi_has_unwind_info;
  1527. str:' unwinding info was generated for this proc '),
  1528. (mask:pi_has_global_goto;
  1529. str:' subroutine contains interprocedural goto '),
  1530. (mask:pi_has_inherited;
  1531. str:' subroutine contains inherited call '),
  1532. (mask:pi_has_nested_exit;
  1533. str:' subroutine contains a nested subroutine which calls the exit of the current one '),
  1534. (mask:pi_has_stack_allocs;
  1535. str:' allocates memory on stack, so stack may be unbalanced on exit '),
  1536. (mask:pi_estimatestacksize;
  1537. str:' stack size is estimated before subroutine is compiled '),
  1538. (mask:pi_calls_c_varargs;
  1539. str:' calls function with C-style varargs '),
  1540. (mask:pi_has_open_array_parameter;
  1541. str:' has open array parameter '),
  1542. (mask:pi_uses_threadvar;
  1543. str:' uses threadvars '),
  1544. (mask:pi_has_except_table_data;
  1545. str:' has except table data '),
  1546. (mask:pi_needs_tls;
  1547. str:' uses TLS data pointer '),
  1548. (mask:pi_uses_get_frame;
  1549. str:' uses get_frame'),
  1550. (mask:pi_uses_ymm;
  1551. str:' uses ymm register (x86 only)'),
  1552. (mask:pi_no_framepointer_needed;
  1553. str:' set if no frame pointer is needed, the rules when this applies is target specific'
  1554. )
  1555. );
  1556. var
  1557. procinfooptions : tprocinfoflags;
  1558. i : longint;
  1559. first : boolean;
  1560. begin
  1561. ppufile.getset(tppuset4(procinfooptions));
  1562. if procinfooptions<>[] then
  1563. begin
  1564. first:=true;
  1565. for i:=0 to procinfoopts do
  1566. if (procinfoopt[i].mask in procinfooptions) then
  1567. begin
  1568. if first then
  1569. first:=false
  1570. else
  1571. write(', ');
  1572. write(procinfoopt[i].str);
  1573. end;
  1574. end;
  1575. writeln;
  1576. end;
  1577. procedure readsymoptions(space : string; Def: TPpuDef = nil);
  1578. type
  1579. tsymopt=record
  1580. mask : tsymoption;
  1581. str : string[30];
  1582. end;
  1583. const
  1584. symopts=ord(high(tsymoption)) - ord(low(tsymoption));
  1585. { sp_none = 0 corresponds to nothing }
  1586. symopt : array[1..symopts] of tsymopt=(
  1587. (mask:sp_static; str:'Static'),
  1588. (mask:sp_hint_deprecated; str:'Hint Deprecated'),
  1589. (mask:sp_hint_platform; str:'Hint Platform'),
  1590. (mask:sp_hint_library; str:'Hint Library'),
  1591. (mask:sp_hint_unimplemented; str:'Hint Unimplemented'),
  1592. (mask:sp_hint_experimental; str:'Hint Experimental'),
  1593. (mask:sp_has_overloaded; str:'Has overloaded'),
  1594. (mask:sp_internal; str:'Internal'),
  1595. (mask:sp_implicitrename; str:'Implicit Rename'),
  1596. (mask:sp_generic_para; str:'Generic Parameter'),
  1597. (mask:sp_has_deprecated_msg; str:'Has Deprecated Message'),
  1598. (mask:sp_generic_dummy; str:'Generic Dummy'),
  1599. (mask:sp_explicitrename; str:'Explicit Rename'),
  1600. (mask:sp_generic_const; str:'Generic Constant Parameter'),
  1601. (mask:sp_generic_unnamed_type;str:'Generic Unnamed Type')
  1602. );
  1603. var
  1604. symoptions : tsymoptions;
  1605. i : longint;
  1606. first : boolean;
  1607. begin
  1608. ppufile.getset(tppuset2(symoptions));
  1609. if symoptions<>[] then
  1610. begin
  1611. if Def <> nil then
  1612. begin
  1613. if sp_internal in symoptions then
  1614. Def.Visibility:=dvHidden;
  1615. if sp_generic_dummy in symoptions then
  1616. Def.GenericDummy:=true;
  1617. end;
  1618. first:=true;
  1619. for i:=1to symopts do
  1620. if (symopt[i].mask in symoptions) then
  1621. begin
  1622. if first then
  1623. first:=false
  1624. else
  1625. write(', ');
  1626. write(symopt[i].str);
  1627. end;
  1628. end;
  1629. writeln;
  1630. if sp_has_deprecated_msg in symoptions then
  1631. writeln([space,'Deprecated : ', ppufile.getstring]);
  1632. end;
  1633. procedure readvisibility(Def: TPpuDef = nil);
  1634. var
  1635. i: byte;
  1636. begin
  1637. i:=ppufile.getbyte;
  1638. if Def <> nil then
  1639. case tvisibility(i) of
  1640. vis_public: Def.Visibility:=dvPublic;
  1641. vis_published: Def.Visibility:=dvPublished;
  1642. vis_protected, vis_strictprotected: Def.Visibility:=dvProtected;
  1643. else Def.Visibility:=dvPrivate;
  1644. end;
  1645. writeln(Visibility2Str(i));
  1646. end;
  1647. procedure readattrs(def: TPpuDef);
  1648. var
  1649. i,cnt,paras: longint;
  1650. begin
  1651. cnt:=ppufile.getlongint;
  1652. if cnt>0 then
  1653. begin
  1654. writeln([space,' Attributes : ']);
  1655. space:=' '+space;
  1656. if assigned(def) then
  1657. SetLength(def.Attrs,cnt);
  1658. for i:=0 to cnt-1 do
  1659. begin
  1660. writeln([space,'** Custom Attribute ',i,' **']);
  1661. write ([space,' Type symbol : ']);
  1662. if assigned(def) then
  1663. begin
  1664. def.Attrs[i].TypeSym:=TPpuRef.Create;
  1665. readderef('',def.Attrs[i].TypeSym);
  1666. end
  1667. else
  1668. readderef('');
  1669. write ([space,' Type constructor : ']);
  1670. if assigned(def) then
  1671. begin
  1672. def.Attrs[i].TypeConstr:=TPpuRef.Create;
  1673. readderef('',def.Attrs[i].TypeConstr);
  1674. end
  1675. else
  1676. readderef('');
  1677. paras:=ppufile.getlongint;
  1678. writeln([space,' Parameters : ',paras]);
  1679. if assigned(def) then
  1680. def.Attrs[i].ParaCount:=paras;
  1681. end;
  1682. delete(space,1,4);
  1683. end;
  1684. end;
  1685. procedure readnodetree; forward;
  1686. procedure readattrparas(def: TPpuDef);
  1687. var
  1688. attr,para: LongInt;
  1689. begin
  1690. if Length(def.Attrs) > 0 then
  1691. writeln([space,' Attr Paras : ']);
  1692. space:=' '+space;
  1693. for attr:=0 to High(def.Attrs) do
  1694. begin
  1695. writeln([space,'** Custom Attribute ',attr,' Arguments **']);
  1696. space:=' '+space;
  1697. for para:=0 to def.Attrs[attr].ParaCount-1 do
  1698. begin
  1699. readnodetree;
  1700. end;
  1701. delete(space,1,4);
  1702. end;
  1703. delete(space,1,4);
  1704. end;
  1705. procedure readdefsubentries(def: TPpuDef);
  1706. begin
  1707. space:=' '+space;
  1708. readattrparas(def);
  1709. delete(space,1,4);
  1710. end;
  1711. procedure readsymsubentries(def: TPpuDef);
  1712. begin
  1713. readattrparas(def);
  1714. end;
  1715. procedure readcommonsym(const s:string; Def: TPpuDef = nil);
  1716. var
  1717. i: integer;
  1718. n: ansistring;
  1719. begin
  1720. n:=readsymstr(ppufile);
  1721. if Def <> nil then
  1722. Def.Name:=n;
  1723. i:=ppufile.getlongint;
  1724. if Def <> nil then
  1725. Def.SetSymId(i);
  1726. writeln([space,'** Symbol Id ',i,' **']);
  1727. writeln([space,s,n]);
  1728. write ([space,' File Pos : ']);
  1729. readposinfo(Def);
  1730. write ([space,' Visibility : ']);
  1731. readvisibility(Def);
  1732. write ([space,' SymOptions : ']);
  1733. readsymoptions(space+' ',Def);
  1734. readattrs(Def);
  1735. end;
  1736. procedure readcgpara(const space:string);
  1737. { this is originally in cgbase.pas }
  1738. type
  1739. TCGLoc=(LOC_INVALID, LOC_VOID, LOC_CONSTANT, LOC_JUMP, LOC_FLAGS,
  1740. LOC_REGISTER, LOC_CREGISTER, LOC_FPUREGISTER, LOC_CFPUREGISTER,
  1741. LOC_MMXREGISTER, LOC_CMMXREGISTER, LOC_MMREGISTER, LOC_CMMREGISTER,
  1742. LOC_SUBSETREG, LOC_CSUBSETREG, LOC_SUBSETREF, LOC_CSUBSETREF,
  1743. LOC_CREFERENCE, LOC_REFERENCE);
  1744. const
  1745. tcgloc2str : array[TCGLoc] of string[12] = (
  1746. 'LOC_INVALID', 'LOC_VOID', 'LOC_CONST', 'LOC_JUMP', 'LOC_FLAGS',
  1747. 'LOC_REG', 'LOC_CREG', 'LOC_FPUREG', 'LOC_CFPUREG',
  1748. 'LOC_MMXREG', 'LOC_CMMXREG', 'LOC_MMREG', 'LOC_CMMREG',
  1749. 'LOC_SSETREG', 'LOC_CSSETREG', 'LOC_SSETREF', 'LOC_CSSETREF',
  1750. 'LOC_CREF', 'LOC_REF');
  1751. var
  1752. i: byte;
  1753. ii: longint;
  1754. np: byte;
  1755. loc: tcgloc;
  1756. begin
  1757. i:=ppufile.getbyte;
  1758. writeln([space,' Alignment : ',i]);
  1759. i:=ppufile.getbyte;
  1760. writeln([space,' Size : ',i]);
  1761. ii:=ppufile.getaint;
  1762. writeln([space,' IntSize : ',ii]);
  1763. readderef(space+' ');
  1764. np:=ppufile.getbyte;
  1765. writeln([space,' NumParaloc : ',np]);
  1766. while np > 0 do
  1767. begin
  1768. i:=ppufile.getbyte;
  1769. writeln([space,' Paraloc Size : ',i]);
  1770. loc:=tcgloc(ppufile.getbyte);
  1771. if loc > high(tcgloc) then
  1772. begin
  1773. WriteError('!! Location is out of range! '+IntToStr(ord(loc)));
  1774. loc:=LOC_INVALID;
  1775. end;
  1776. writeln([space,' Paraloc Loc : (',ord(loc),') ',tcgloc2str[loc]]);
  1777. case loc of
  1778. LOC_REFERENCE:
  1779. begin
  1780. writeln([space,' RegIndex : $',hexstr(ppufile.getdword,8)]);
  1781. writeln([space,' Offset : ',ppufile.getaint]);
  1782. end;
  1783. LOC_FPUREGISTER,
  1784. LOC_CFPUREGISTER,
  1785. LOC_MMREGISTER,
  1786. LOC_CMMREGISTER,
  1787. LOC_REGISTER,
  1788. LOC_CREGISTER :
  1789. begin
  1790. writeln([space,' ShiftVal : ',ppufile.getbyte]);
  1791. writeln([space,' Register : $',hexstr(ppufile.getdword,8)]);
  1792. end;
  1793. LOC_VOID:
  1794. begin end
  1795. else
  1796. WriteError('!! Invalid location error')
  1797. end;
  1798. dec(np);
  1799. end;
  1800. end;
  1801. procedure displaytokenbuffer(tokenbuf : pbyte;tokenbufsize : longint);
  1802. type
  1803. ptoken=^ttoken;
  1804. pmsgstate =^tmsgstate;
  1805. var
  1806. tbi : longint;
  1807. state : tmsgstate;
  1808. prev_settings, new_settings : Tsettings;
  1809. nb, msgvalue, mesgnb : longint;
  1810. function readtoken: ttoken;
  1811. var
  1812. b,b2 : byte;
  1813. begin
  1814. b:=tokenbuf[tbi];
  1815. inc(tbi);
  1816. if (b and $80)<>0 then
  1817. begin
  1818. b2:=tokenbuf[tbi];
  1819. inc(tbi);
  1820. result:=ttoken(((b and $7f) shl 8) or b2);
  1821. end
  1822. else
  1823. result:=ttoken(b);
  1824. end;
  1825. function gettokenbufdword : dword;
  1826. var
  1827. var32 : dword;
  1828. begin
  1829. var32:=unaligned(pdword(@tokenbuf[tbi])^);
  1830. inc(tbi,sizeof(dword));
  1831. if ppufile.change_endian then
  1832. var32:=swapendian(var32);
  1833. result:=var32;
  1834. end;
  1835. function gettokenbufword : word;
  1836. var
  1837. var16 : word;
  1838. begin
  1839. var16:=unaligned(pword(@tokenbuf[tbi])^);
  1840. inc(tbi,sizeof(word));
  1841. if ppufile.change_endian then
  1842. var16:=swapendian(var16);
  1843. result:=var16;
  1844. end;
  1845. function gettokenbuflongint : longint;
  1846. var
  1847. var32 : longint;
  1848. begin
  1849. var32:=unaligned(plongint(@tokenbuf[tbi])^);
  1850. inc(tbi,sizeof(longint));
  1851. if ppufile.change_endian then
  1852. var32:=swapendian(var32);
  1853. result:=var32;
  1854. end;
  1855. function gettokenbufshortint : shortint;
  1856. var
  1857. var8 : shortint;
  1858. begin
  1859. var8:=pshortint(@tokenbuf[tbi])^;
  1860. inc(tbi,sizeof(shortint));
  1861. result:=var8;
  1862. end;
  1863. procedure tokenreadset(var b;size : longint);
  1864. var
  1865. i : longint;
  1866. begin
  1867. move(tokenbuf[tbi],b,size);
  1868. inc(tbi,size);
  1869. if ppufile.change_endian then
  1870. for i:=0 to size-1 do
  1871. Pbyte(@b)[i]:=reverse_byte(Pbyte(@b)[i]);
  1872. end;
  1873. function gettokenbufbyte : byte;
  1874. begin
  1875. result:=pbyte(@tokenbuf[tbi])^;
  1876. inc(tbi);
  1877. end;
  1878. function tokenreadenum(size : longint) : longword;
  1879. begin
  1880. if size=1 then
  1881. result:=gettokenbufbyte
  1882. else if size=2 then
  1883. result:=gettokenbufword
  1884. else if size=4 then
  1885. result:=gettokenbufdword;
  1886. end;
  1887. function gettokenbufsizeint : int64;
  1888. var
  1889. var64 : int64;
  1890. var32 : longint;
  1891. var16 : smallint;
  1892. begin
  1893. if CpuAddrBitSize[cpu]=64 then
  1894. begin
  1895. var64:=unaligned(pint64(@tokenbuf[tbi])^);
  1896. inc(tbi,sizeof(int64));
  1897. if ppufile.change_endian then
  1898. var64:=swapendian(var64);
  1899. result:=var64;
  1900. end
  1901. else if CpuAddrBitSize[cpu]=32 then
  1902. begin
  1903. var32:=unaligned(plongint(@tokenbuf[tbi])^);
  1904. inc(tbi,sizeof(longint));
  1905. if ppufile.change_endian then
  1906. var32:=swapendian(var32);
  1907. result:=var32;
  1908. end
  1909. else if CpuAddrBitSize[cpu]=16 then
  1910. begin
  1911. { ASizeInt is still a longint, see globtype.pas unit }
  1912. var32:=unaligned(plongint(@tokenbuf[tbi])^);
  1913. inc(tbi,sizeof(longint));
  1914. if ppufile.change_endian then
  1915. var32:=swapendian(var32);
  1916. result:=var32;
  1917. end
  1918. else
  1919. begin
  1920. WriteError('Wrong CpuAddrBitSize');
  1921. result:=0;
  1922. end;
  1923. end;
  1924. procedure tokenreadsettings(var asettings : tsettings; expected_size : asizeint);
  1925. { This procedure
  1926. needs to be changed whenever
  1927. globals.tsettings type is changed,
  1928. the problem is that no error will appear
  1929. before tests with generics are tested. PM }
  1930. var
  1931. startpos, endpos : longword;
  1932. begin
  1933. { WARNING all those fields need to be in the correct
  1934. order otherwise cross_endian PPU reading will fail }
  1935. startpos:=tbi;
  1936. with asettings do
  1937. begin
  1938. alignment.procalign:=gettokenbuflongint;
  1939. alignment.loopalign:=gettokenbuflongint;
  1940. alignment.jumpalign:=gettokenbuflongint;
  1941. alignment.jumpalignskipmax:=gettokenbuflongint;
  1942. alignment.coalescealign:=gettokenbuflongint;
  1943. alignment.coalescealignskipmax:=gettokenbuflongint;
  1944. alignment.constalignmin:=gettokenbuflongint;
  1945. alignment.constalignmax:=gettokenbuflongint;
  1946. alignment.varalignmin:=gettokenbuflongint;
  1947. alignment.varalignmax:=gettokenbuflongint;
  1948. alignment.localalignmin:=gettokenbuflongint;
  1949. alignment.localalignmax:=gettokenbuflongint;
  1950. alignment.recordalignmin:=gettokenbuflongint;
  1951. alignment.recordalignmax:=gettokenbuflongint;
  1952. alignment.maxCrecordalign:=gettokenbuflongint;
  1953. tokenreadset(globalswitches,sizeof(globalswitches));
  1954. tokenreadset(targetswitches,sizeof(targetswitches));
  1955. tokenreadset(moduleswitches,sizeof(moduleswitches));
  1956. tokenreadset(localswitches,sizeof(localswitches));
  1957. tokenreadset(modeswitches,sizeof(modeswitches));
  1958. tokenreadset(optimizerswitches,sizeof(optimizerswitches));
  1959. tokenreadset(genwpoptimizerswitches,sizeof(genwpoptimizerswitches));
  1960. tokenreadset(dowpoptimizerswitches,sizeof(dowpoptimizerswitches));
  1961. tokenreadset(debugswitches,sizeof(debugswitches));
  1962. { 0: old behaviour for sets <=256 elements
  1963. >0: round to this size }
  1964. setalloc:=gettokenbufshortint;
  1965. packenum:=gettokenbufshortint;
  1966. packrecords:=gettokenbufshortint;
  1967. maxfpuregisters:=gettokenbufshortint;
  1968. cputype:=tcputype(tokenreadenum(sizeof(tcputype)));
  1969. optimizecputype:=tcputype(tokenreadenum(sizeof(tcputype)));
  1970. fputype:=tfputype(tokenreadenum(sizeof(tfputype)));
  1971. asmmode:=tasmmode(tokenreadenum(sizeof(tasmmode)));
  1972. interfacetype:=tinterfacetypes(tokenreadenum(sizeof(tinterfacetypes)));
  1973. defproccall:=tproccalloption(tokenreadenum(sizeof(tproccalloption)));
  1974. { tstringencoding is word type,
  1975. thus this should be OK here }
  1976. sourcecodepage:=tstringEncoding(gettokenbufword);
  1977. minfpconstprec:=tfloattype(tokenreadenum(sizeof(tfloattype)));
  1978. disabledircache:=boolean(gettokenbufbyte);
  1979. tlsmodel:=ttlsmodel(tokenreadenum(sizeof(ttlsmodel)));
  1980. { TH: Since the field was conditional originally, it was not stored in PPUs. }
  1981. { While adding ControllerSupport constant, I decided not to store ct_none }
  1982. { on targets not supporting controllers, but this might be changed here and }
  1983. { in tokenwritesettings in the future to unify the PPU structure and handling }
  1984. { of this field in the compiler. }
  1985. {$PUSH}
  1986. {$WARN 6018 OFF} (* Unreachable code due to compile time evaluation *)
  1987. if CpuHasController[cpu] then
  1988. controllertype:=tcontrollertype(tokenreadenum(sizeof(tcontrollertype)))
  1989. else
  1990. ControllerType:=ct_none;
  1991. {$POP}
  1992. endpos:=tbi;
  1993. if endpos-startpos<>expected_size then
  1994. Writeln(['Wrong size of Settings read-in: ',expected_size,' expected, but got ',endpos-startpos]);
  1995. end;
  1996. end;
  1997. procedure dump_new_settings;
  1998. (* tsettings = record
  1999. alignment : talignmentinfo;
  2000. globalswitches : tglobalswitches;
  2001. targetswitches : ttargetswitches;
  2002. moduleswitches : tmoduleswitches;
  2003. localswitches : tlocalswitches;
  2004. modeswitches : tmodeswitches;
  2005. optimizerswitches : toptimizerswitches;
  2006. { generate information necessary to perform these wpo's during a subsequent compilation }
  2007. genwpoptimizerswitches: twpoptimizerswitches;
  2008. { perform these wpo's using information generated during a previous compilation }
  2009. dowpoptimizerswitches: twpoptimizerswitches;
  2010. debugswitches : tdebugswitches;
  2011. { 0: old behaviour for sets <=256 elements
  2012. >0: round to this size }
  2013. setalloc,
  2014. packenum : shortint;
  2015. packrecords : shortint;
  2016. maxfpuregisters : shortint;
  2017. cputype,
  2018. optimizecputype,
  2019. asmcputype : tcputype;
  2020. fputype : tfputype;
  2021. asmmode : tasmmode;
  2022. interfacetype : tinterfacetypes;
  2023. defproccall : tproccalloption;
  2024. sourcecodepage : tstringencoding;
  2025. minfpconstprec : tfloattype;
  2026. disabledircache : boolean;
  2027. tlsmodel : ttlsmodel;
  2028. {$if defined(i8086)}
  2029. x86memorymodel : tx86memorymodel;
  2030. {$endif defined(i8086)}
  2031. {$if defined(ARM)}
  2032. instructionset : tinstructionset;
  2033. {$endif defined(ARM)}
  2034. {$if defined(LLVM) and not defined(GENERIC_CPU)}
  2035. llvmversion: tllvmversion;
  2036. {$endif defined(LLVM) and not defined(GENERIC_CPU)}
  2037. { CPU targets with microcontroller support can add a controller specific unit }
  2038. controllertype : tcontrollertype;
  2039. { WARNING: this pointer cannot be written as such in record token }
  2040. pmessage : pmessagestaterecord;
  2041. end; *)
  2042. const
  2043. targetswitchname : array[ttargetswitch] of string[37] =
  2044. { global target-specific switches }
  2045. ('Target None', {ts_none}
  2046. { generate code that results in smaller TOCs than normal (AIX) }
  2047. 'Small TOC', {ts_small_toc}
  2048. { for the JVM target: generate integer array initializations via string
  2049. constants in order to reduce the generated code size (Java routines
  2050. are limited to 64kb of bytecode) }
  2051. 'JVM compact int array init', {ts_compact_int_array_init}
  2052. { for the JVM target: intialize enum fields in constructors with the
  2053. enum class instance corresponding to ordinal value 0 (not done by
  2054. default because this initialization can only be performed after the
  2055. inherited constructors have run, and if they call a virtual method
  2056. of the current class, then this virtual method may already have
  2057. initialized that field with another value and the constructor
  2058. initialization will result in data loss }
  2059. 'JVM enum field init', {ts_jvm_enum_field_init}
  2060. { when automatically generating getters/setters for properties, use
  2061. these strings as prefixes for the generated getters/setter names }
  2062. 'Auto getter prefix', {ts_auto_getter_prefix}
  2063. 'Auto setter prefix', {ts_auto_setter_predix}
  2064. 'Thumb interworking', {ts_thumb_interworking,}
  2065. { lowercase the first character of routine names, used to generate
  2066. names that are compliant with Java coding standards from code
  2067. written according to Delphi coding standards }
  2068. 'LowerCase proc start', {ts_lowercase_proc_start,}
  2069. { initialise local variables on the JVM target so you won't get
  2070. accidental uses of uninitialised values }
  2071. 'Init locals', {ts_init_locals}
  2072. { emit a CLD instruction before using the x86 string instructions }
  2073. 'Emit CLD instruction', {ts_cld}
  2074. { increment BP before pushing it in the function prologue and decrement
  2075. it after popping it in the function epilogue, iff the function is
  2076. going to terminate with a far ret. Thus, the BP value pushed on the
  2077. stack becomes odd if the function is far and even if the function is
  2078. near. This allows walking the BP chain on the stack and e.g.
  2079. obtaining a stack trace even if the program uses a mixture of near
  2080. and far calls. This is also required for Win16 real mode, because it
  2081. allows Windows to move code segments around (in order to defragment
  2082. memory) and then walk through the stacks of all running programs and
  2083. update the segment values of the segment that has moved. }
  2084. 'Use odd BP for far procs', {ts_x86_far_procs_push_odd_bp}
  2085. 'No exception support', {ts_wasm_no_exceptions}
  2086. 'Branchful exceptions support', {ts_wasm_bf_exceptions}
  2087. 'JavaScript-based exception support', {ts_wasm_js_exceptions}
  2088. 'Native WebAssembly exceptions support', {ts_wasm_native_exceptions}
  2089. 'WebAssembly threads support' {ts_wasm_threads}
  2090. );
  2091. moduleswitchname : array[tmoduleswitch] of string[40] =
  2092. ('Module None', {cs_modulenone,}
  2093. { parser }
  2094. 'Floating Point Emulation',{ cs_fp_emulation}
  2095. 'Extended syntax', {cs_extsyntax}
  2096. 'Open string', {cs_openstring}
  2097. { support }
  2098. 'Goto allowed', {cs_support_goto}
  2099. 'Macro support', {cs_support_macro}
  2100. 'C operator support', {cs_support_c_operators}
  2101. { generation }
  2102. 'Profile', {cs_profile}
  2103. 'Debug information', {cs_debuginfo}
  2104. 'Compilation of System unit', {cs_compilesystem}
  2105. 'Line information', {cs_lineinfo}
  2106. 'Implicit exceptions', {cs_implicit_exceptions}
  2107. 'Explicit CodePage', {cs_explicit_codepage}
  2108. 'System CodePage', {cs_system_codepage}
  2109. { linking }
  2110. 'Create smart units', {cs_create_smart}
  2111. 'Create dynamic', {cs_create_dynamic}
  2112. 'Create PIC code', {cs_create_pic}
  2113. { browser switches are back }
  2114. 'Browser', {cs_browser}
  2115. 'Local Browser', {cs_local_browser}
  2116. { target specific }
  2117. 'Executable Stack', {cs_executable_stack}
  2118. { i8086 specific }
  2119. 'Huge code', {cs_huge_code}
  2120. 'Win16 smart callbacks', {cs_win16_smartcallbacks}
  2121. { Record usage of checkpointer experimental feature }
  2122. 'CheckPointer used', {cs_checkpointer_called}
  2123. 'Supports LLVM Link-Time Optimization' {cs_lto}
  2124. );
  2125. globalswitchname : array[tglobalswitch] of string[50] =
  2126. ('Global None',{cs_globalnone}
  2127. { parameter switches }
  2128. 'Check unit name', {cs_check_unit_name}
  2129. 'Constructor name', {cs_constructor_name}
  2130. 'Support exceptions',{cs_support_exceptions}
  2131. 'Support Objective-C pas',{ cs_support_c_objectivepas}
  2132. 'Transparent file names', {cs_transparent_file_names}
  2133. { units }
  2134. 'Load Objpas Unit', {cs_load_objpas_unit}
  2135. 'Load GPC unit', {cs_load_gpc_unit}
  2136. 'Load FPCKylix unit', {cs_load_fpcylix_unit}
  2137. 'Support Vectors', {cs_support_vectors}
  2138. { debuginfo }
  2139. 'Use HeapTRc unit', {cs_use_heaptrc}
  2140. 'Use line information', {cs_use_lineinfo}
  2141. 'Use GDB Valgrind', {cs_gdb_valgrind}
  2142. 'No regalloc', {cs_no_regalloc}
  2143. 'Stabs preserve cases', {cs_stabs_preservecase}
  2144. { assembling }
  2145. 'Leave assembler file', {cs_asm_leave}
  2146. 'Use external assembler', {cs_asm_extern}
  2147. 'Use pipes to call assembler', {cs_asm_pipe}
  2148. 'Add source infos into assembler files', {cs_asm_source}
  2149. 'Add register allocation into assembler files', {cs_asm_regalloc}
  2150. 'Add temporary allocation into assmebler files', {cs_asm_tempalloc}
  2151. 'Add node information into assembler files', {cs_asm_nodes}
  2152. 'Adapt assembler call to GNU version <= 2.25', {cs_asm_pre_binutils_2_25}
  2153. { linking }
  2154. 'Skip linking stage', {cs_link_nolink}
  2155. 'Link static', {cs_link_static}
  2156. 'Link smart', {cs_link_smart}
  2157. 'Link shared', {cs_link_shared}
  2158. 'Link deffile', {cs_link_deffile}
  2159. 'Strip after linking', {cs_link_strip}
  2160. 'Use linker static flag',{cs_link_staticflag}
  2161. 'Link on target OS',{cs_link_on_target}
  2162. 'Use external linker', {cs_link_extern}
  2163. 'Link opt vtable', {cs_link_opt_vtable}
  2164. 'Link opt used sections', {cs_link_opt_used_sections}
  2165. 'Link debug to separate file',{cs_link_separate_dbg_file}
  2166. 'Create linker map', {cs_link_map}
  2167. 'Link to pthread', {cs_link_pthread}
  2168. 'Link no default lib order', {cs_link_no_default_lib_order}
  2169. 'Link using native linker', {cs_link_native}
  2170. 'Link for GNU linker version <=2.19', {cs_link_pre_binutils_2_19}
  2171. 'Link using vlink', {cs_link_vlink}
  2172. 'Link-Time Optimization disabled for system unit', {cs_lto_nosystem}
  2173. 'Assemble on target OS', {cs_asemble_on_target}
  2174. 'Use a memory model to support >2GB static data on 64 Bit target', {cs_large}
  2175. 'Generate UF2 binary' {cs_generate_uf2}
  2176. );
  2177. localswitchname : array[tlocalswitch] of string[50] =
  2178. { Switches which can be changed locally }
  2179. ('Local None', {cs_localnone}
  2180. { codegen }
  2181. 'Check overflow', {cs_check_overflow}
  2182. 'Check range', {cs_check_range}
  2183. 'Check object error', {cs_check_object}
  2184. 'Check I/O error', {cs_check_io}
  2185. 'Check stack', {cs_check_stack}
  2186. 'Check pointer', {cs_checkpointer}
  2187. 'Check ordinal size', {cs_check_ordinal_size}
  2188. 'Generate stackframes', {cs_generate_stackframes}
  2189. 'Do assertions', {cs_do_assertion}
  2190. 'Generate RTTI', {cs_generate_rtti}
  2191. 'Full boolean evaluaion', {cs_full_boolean_eval}
  2192. 'Typed constant are writable', {cs_typed_const_writable}
  2193. 'Allow calcuation on enum types', {cs_allow_enum_calc}
  2194. 'Do inline', {cs_do_inline}
  2195. 'Add FWAIT instruction for FPU 8087', {cs_fpu_fwait}
  2196. 'IEEE errors', {cs_ieee_errors}
  2197. 'Check low address loading', {cs_check_low_addr_load}
  2198. 'Imported data', {cs_imported_data}
  2199. 'Excess precision', {cs_excessprecision}
  2200. 'Check fpu exceptions', {cs_check_fpu_exceptions}
  2201. 'Check all case coverage', {cs_check_all_case_coverage}
  2202. { mmx }
  2203. 'Allow MMX instructions', {cs_mmx}
  2204. 'Use MMX saturation', {cs_mmx_saturation}
  2205. { parser }
  2206. 'Use typed addresses', {cs_typed_addresses}
  2207. 'Use strict var strings', {cs_strict_var_strings}
  2208. 'Use reference counted strings', {cs_refcountedstrings}
  2209. 'Use bit-packing', {cs_bitpacking}
  2210. 'Use var property setter', {cs_varpropsetter}
  2211. 'Use scoped enums',{cs_scopedenums}
  2212. 'Use pointer math', {cs_pointermath}
  2213. { macpas specific}
  2214. 'MACPAS exteranl variable', {cs_external_var}
  2215. 'MACPAS externally visible', {cs_externally_visible}
  2216. { jvm specific }
  2217. 'JVM check var copyout', {cs_check_var_copyout}
  2218. 'Zero based strings', {cs_zerobasedstrings}
  2219. { i8086 specific }
  2220. 'i8086 force FAR calls', {cs_force_far_calls}
  2221. 'i8086 huge pointer arithmetic', {cs_hugeptr_arithmetic_normalization}
  2222. 'i8086 huge pointer comparison', {cs_hugeptr_comparison_normalization}
  2223. 'enforce legacy ifend behaviour' {cs_legacyifend}
  2224. );
  2225. { Switches which can be changed by a mode (fpc,tp7,delphi) }
  2226. modeswitchname : array[tmodeswitch] of string[50] =
  2227. ('m_none',
  2228. { generic }
  2229. 'm_fpc','m_objfpc','m_delphi','m_tp7','m_mac','m_iso','m_extpas',
  2230. {$ifdef gpc_mode}'m_gpc',{$endif}
  2231. { more specific }
  2232. 'm_class', { delphi class model }
  2233. 'm_objpas', { load objpas unit }
  2234. 'm_result', { result in functions }
  2235. 'm_string_pchar', { pchar 2 string conversion }
  2236. 'm_cvar_support', { cvar variable directive }
  2237. 'm_nested_comment', { nested comments }
  2238. 'm_tp_procvar', { tp style procvars (no @ needed) }
  2239. 'm_mac_procvar', { macpas style procvars }
  2240. 'm_repeat_forward', { repeating forward declarations is needed }
  2241. 'm_pointer_2_procedure', { allows the assignement of pointers to
  2242. procedure variables }
  2243. 'm_autoderef', { does auto dereferencing of struct. vars }
  2244. 'm_initfinal', { initialization/finalization for units }
  2245. 'm_default_ansistring', { ansistring turned on by default }
  2246. 'm_out', { support the calling convention OUT }
  2247. 'm_default_para', { support default parameters }
  2248. 'm_hintdirective', { support hint directives }
  2249. 'm_duplicate_names', { allow locals/paras to have duplicate names of globals }
  2250. 'm_property', { allow properties }
  2251. 'm_default_inline', { allow inline proc directive }
  2252. 'm_except', { allow exception-related keywords }
  2253. 'm_objectivec1', { support interfacing with Objective-C (1.0) }
  2254. 'm_objectivec2', { support interfacing with Objective-C (2.0) }
  2255. 'm_nested_procvars', { support nested procedural variables }
  2256. 'm_non_local_goto', { support non local gotos (like iso pascal) }
  2257. 'm_advanced_records', { advanced record syntax with visibility sections, methods and properties }
  2258. 'm_isolike_unary_minus', { unary minus like in iso pascal: same precedence level as binary minus/plus }
  2259. 'm_systemcodepage', { use system codepage as compiler codepage by default, emit ansistrings with system codepage }
  2260. 'm_final_fields', { allows declaring fields as "final", which means they must be initialised
  2261. in the (class) constructor and are constant from then on (same as final
  2262. fields in Java) }
  2263. 'm_default_unicodestring', { makes the default string type in $h+ mode unicodestring rather than
  2264. ansistring; similarly, char becomes unicodechar rather than ansichar }
  2265. 'm_type_helpers', { allows the declaration of "type helper" for all supported types
  2266. (primitive types, records, classes, interfaces) }
  2267. 'm_blocks', { support for http://en.wikipedia.org/wiki/Blocks_(C_language_extension) }
  2268. 'm_isolike_io', { I/O as it required by an ISO compatible compiler }
  2269. 'm_isolike_program_para',{ program parameters as it required by an ISO compatible compiler }
  2270. 'm_isolike_mod', { mod operation as it is required by an iso compatible compiler }
  2271. 'm_array_operators', { use Delphi compatible array operators instead of custom ones ("+") }
  2272. 'm_multi_helpers', { helpers can appear in multiple scopes simultaneously }
  2273. 'm_array2dynarray', { regular arrays can be implicitly converted to dynamic arrays }
  2274. 'm_prefixed_attributes', { enable attributes that are defined before the type they belong to }
  2275. 'm_underscoreisseparator',{ _ can be used as separator to group digits in numbers }
  2276. 'm_implicit_function_specialization', { attempt to specialize generic function by inferring types from parameters }
  2277. 'm_function_references', { enable Delphi-style function references }
  2278. 'm_anonymous_functions' { enable Delphi-style anonymous functions }
  2279. );
  2280. { optimizer }
  2281. optimizerswitchname : array[toptimizerswitch] of string[50] =
  2282. ('cs_opt_none',
  2283. 'cs_opt_level1',
  2284. 'cs_opt_level2',
  2285. 'cs_opt_level3',
  2286. 'cs_opt_level4',
  2287. 'cs_opt_regvar',
  2288. 'cs_opt_uncertain',
  2289. 'cs_opt_size',
  2290. 'cs_opt_stackframe',
  2291. 'cs_opt_peephole',
  2292. 'cs_opt_loopunroll',
  2293. 'cs_opt_tailrecursion',
  2294. 'cs_opt_nodecse',
  2295. 'cs_opt_nodedfa',
  2296. 'cs_opt_loopstrength',
  2297. 'cs_opt_scheduler',
  2298. 'cs_opt_autoinline',
  2299. 'cs_useebp',
  2300. 'cs_userbp',
  2301. 'cs_opt_reorder_fields',
  2302. 'cs_opt_fastmath',
  2303. { Allow removing expressions whose result is not used, even when this
  2304. can change program behaviour (range check errors disappear',
  2305. access violations due to invalid pointer derefences disappear, ...).
  2306. Note: it does not (and must not) remove expressions that have
  2307. explicit side-effects, only implicit side-effects (like the ones
  2308. mentioned before) can disappear.
  2309. }
  2310. 'cs_opt_dead_values',
  2311. { compiler checks for empty procedures/methods and removes calls to them if possible }
  2312. 'cs_opt_remove_empty_proc',
  2313. 'cs_opt_constant_propagate',
  2314. 'cs_opt_dead_store_eliminate',
  2315. 'cs_opt_forcenostackframe',
  2316. 'cs_opt_use_load_modify_store',
  2317. 'cs_opt_unused_para',
  2318. 'cs_opt_consts',
  2319. 'cs_opt_forloop'
  2320. );
  2321. var
  2322. globalswitch : tglobalswitch;
  2323. targetswitch : ttargetswitch;
  2324. moduleswitch : tmoduleswitch;
  2325. localswitch : tlocalswitch;
  2326. modeswitch : tmodeswitch;
  2327. optimizerswitch : toptimizerswitch;
  2328. globalswitches : tglobalswitches;
  2329. targetswitches : ttargetswitches;
  2330. moduleswitches : tmoduleswitches;
  2331. localswitches : tlocalswitches;
  2332. modeswitches : tmodeswitches;
  2333. optimizerswitches : toptimizerswitches;
  2334. begin
  2335. {alignment : talignmentinfo;}
  2336. {talignmentinfo = packed record}
  2337. writeln('Procedure alignment: '+tostr(new_settings.alignment.procalign));
  2338. writeln('Loop alignment: '+tostr(new_settings.alignment.loopalign));
  2339. { alignment for labels after unconditional jumps, this must be a power of two }
  2340. writeln('Jump alignment: '+tostr(new_settings.alignment.jumpalign));
  2341. { max. alignment for labels after unconditional jumps:
  2342. the compiler tries to align jumpalign, however, to do so it inserts at maximum jumpalignskipmax bytes or uses
  2343. the next smaller power of two of jumpalign }
  2344. writeln('Jump skip max alignment: '+tostr(new_settings.alignment.jumpalignskipmax));
  2345. { alignment for labels where two flows of the program flow coalesce, this must be a power of two }
  2346. writeln('Coalescence alignment: '+tostr(new_settings.alignment.coalescealign));
  2347. { max. alignment for labels where two flows of the program flow coalesce
  2348. the compiler tries to align to coalescealign, however, to do so it inserts at maximum coalescealignskipmax bytes or uses
  2349. the next smaller power of two of coalescealign }
  2350. writeln('Coalescence skip max alignment: '+tostr(new_settings.alignment.coalescealignskipmax));
  2351. writeln('Const min alignment: '+tostr(new_settings.alignment.constalignmin));
  2352. writeln('Const max alignment: '+tostr(new_settings.alignment.constalignmax));
  2353. writeln('Var min alignment: '+tostr(new_settings.alignment.varalignmin));
  2354. writeln('Var max alignment: '+tostr(new_settings.alignment.varalignmax));
  2355. writeln('Local min alignment: '+tostr(new_settings.alignment.localalignmin));
  2356. writeln('Local max alignment: '+tostr(new_settings.alignment.localalignmax));
  2357. writeln('Min record alignment: '+tostr(new_settings.alignment.recordalignmin));
  2358. writeln('Max record alignment: '+tostr(new_settings.alignment.recordalignmax));
  2359. writeln('Max C record alignment: '+tostr(new_settings.alignment.maxCrecordalign));
  2360. globalswitches:=new_settings.globalswitches;
  2361. for globalswitch:=low(tglobalswitch) to high(tglobalswitch) do
  2362. if globalswitch in globalswitches then
  2363. begin
  2364. writeln('global switch: '+globalswitchname[globalswitch]);
  2365. exclude(globalswitches,globalswitch);
  2366. end;
  2367. if (globalswitches <> []) then
  2368. writeln('Unknown global switch');
  2369. targetswitches:=new_settings.targetswitches;
  2370. for targetswitch:=low(ttargetswitch) to high(ttargetswitch) do
  2371. if targetswitch in targetswitches then
  2372. begin
  2373. writeln('target switch: '+targetswitchname[targetswitch]);
  2374. exclude(targetswitches,targetswitch);
  2375. end;
  2376. if (targetswitches <> []) then
  2377. writeln('Unknown target switch');
  2378. moduleswitches:=new_settings.moduleswitches;
  2379. for moduleswitch:=low(tmoduleswitch) to high(tmoduleswitch) do
  2380. if moduleswitch in moduleswitches then
  2381. begin
  2382. writeln('module switch: '+moduleswitchname[moduleswitch]);
  2383. exclude(moduleswitches,moduleswitch);
  2384. end;
  2385. if (moduleswitches <> []) then
  2386. writeln('Unknown module switch');
  2387. localswitches:=new_settings.localswitches;
  2388. for localswitch:=low(tlocalswitch) to high(tlocalswitch) do
  2389. if localswitch in localswitches then
  2390. begin
  2391. writeln('local switch: '+localswitchname[localswitch]);
  2392. exclude(localswitches,localswitch);
  2393. end;
  2394. if (localswitches <> []) then
  2395. writeln('Unknown local switch');
  2396. modeswitches:=new_settings.modeswitches;
  2397. for modeswitch:=low(tmodeswitch) to high(tmodeswitch) do
  2398. if modeswitch in modeswitches then
  2399. begin
  2400. writeln(['mode switch: ',modeswitchname[modeswitch]]);
  2401. exclude(modeswitches,modeswitch);
  2402. end;
  2403. if (modeswitches <> []) then
  2404. writeln('Unknown mode switch');
  2405. optimizerswitches:=new_settings.optimizerswitches;
  2406. for optimizerswitch:=low(toptimizerswitch) to high(toptimizerswitch) do
  2407. if optimizerswitch in optimizerswitches then
  2408. begin
  2409. writeln(['optimizer switch: ',optimizerswitchname[optimizerswitch]]);
  2410. exclude(optimizerswitches,optimizerswitch);
  2411. end;
  2412. if (optimizerswitches <> []) then
  2413. writeln('Unknown optimizer switch');
  2414. writeln(['Set allocation size ',new_settings.setalloc]);
  2415. writeln(['Pack enums ',new_settings.packenum]);
  2416. writeln(['Pack records ',new_settings.packrecords]);
  2417. writeln(['Max FPU registers ',new_settings.maxfpuregisters]);
  2418. writeln(['CPU type ',new_settings.cputype]);
  2419. writeln(['CPU optimize type ',new_settings.optimizecputype]);
  2420. writeln(['FPU type ',new_settings.fputype]);
  2421. writeln(['ASM mode ',new_settings.asmmode]);
  2422. end;
  2423. var
  2424. linestr,genstr : string;
  2425. token : ttoken;
  2426. copy_size, stbi, last_col, new_col : longint;
  2427. last_line,new_line : dword;
  2428. len : sizeint;
  2429. wstring : widestring;
  2430. astring : ansistring;
  2431. begin
  2432. tbi:=0;
  2433. last_line:=0;
  2434. last_col:=0;
  2435. linestr:='';
  2436. genstr:='';
  2437. fillchar(new_settings,sizeof(new_settings),#0);
  2438. fillchar(prev_settings,sizeof(prev_settings),#0);
  2439. write([space,' Tokens: ']);
  2440. while tbi<tokenbufsize do
  2441. begin
  2442. token:=readtoken;
  2443. if token<>_GENERICSPECIALTOKEN then
  2444. begin
  2445. if token <= high(ttoken) then
  2446. begin
  2447. write(arraytokeninfo[token].str);
  2448. if not (token in [_CWCHAR, _CWSTRING, _CSTRING, _CCHAR,
  2449. _INTCONST,_REALNUMBER, _ID]) then
  2450. StrAppend(linestr,lowercase(arraytokeninfo[token].str));
  2451. end
  2452. else
  2453. begin
  2454. HasMoreInfos;
  2455. write('Error in Token List');
  2456. break;
  2457. end;
  2458. {idtoken:=}readtoken;
  2459. end;
  2460. case token of
  2461. _CWCHAR,
  2462. _CWSTRING :
  2463. begin
  2464. len:=gettokenbufsizeint;
  2465. setlength(wstring,len);
  2466. move(tokenbuf[tbi],wstring[1],len*2);
  2467. write([' ''',wstring,'''']);
  2468. StrAppend(linestr,' ''');
  2469. StrAppend(linestr,wstring);
  2470. StrAppend(linestr,'''');
  2471. inc(tbi,len*2);
  2472. end;
  2473. _CSTRING:
  2474. begin
  2475. len:=gettokenbufsizeint;
  2476. setlength(astring,len);
  2477. if len>0 then
  2478. move(tokenbuf[tbi],astring[1],len);
  2479. write([' ''',astring,'''']);
  2480. StrAppend(linestr,' ''');
  2481. StrAppend(linestr,astring);
  2482. StrAppend(linestr,'''');
  2483. inc(tbi,len);
  2484. end;
  2485. _CCHAR:
  2486. begin
  2487. write([' ''',unaligned(pshortstring(@tokenbuf[tbi])^),'''']);
  2488. StrAppend(linestr,' ''');
  2489. StrAppend(linestr,unaligned(pshortstring(@tokenbuf[tbi])^));
  2490. StrAppend(linestr,'''');
  2491. inc(tbi,tokenbuf[tbi]+1);
  2492. end;
  2493. _INTCONST,
  2494. _REALNUMBER :
  2495. begin
  2496. write([' ',unaligned(pshortstring(@tokenbuf[tbi])^)]);
  2497. StrAppend(linestr,unaligned(pshortstring(@tokenbuf[tbi])^));
  2498. inc(tbi,tokenbuf[tbi]+1);
  2499. end;
  2500. _ID :
  2501. begin
  2502. write([' ',unaligned(pshortstring(@tokenbuf[tbi])^)]);
  2503. StrAppend(linestr,unaligned(pshortstring(@tokenbuf[tbi])^));
  2504. inc(tbi,tokenbuf[tbi]+1);
  2505. end;
  2506. _GENERICSPECIALTOKEN:
  2507. begin
  2508. { Short version of column change,
  2509. byte or $80 used }
  2510. if (tokenbuf[tbi] and $80)<>0 then
  2511. begin
  2512. new_col:=tokenbuf[tbi] and $7f;
  2513. write(['Col: ',new_col]);
  2514. if length(linestr)<new_col-1 then
  2515. StrAppend(linestr,StringOfChar(' ',new_col - 1 - length(linestr)));
  2516. inc(tbi);
  2517. last_col:=new_col;
  2518. end
  2519. else
  2520. case tspecialgenerictoken(tokenbuf[tbi]) of
  2521. ST_LOADSETTINGS:
  2522. begin
  2523. inc(tbi);
  2524. write([space,'Settings: ']);
  2525. fillchar(new_settings,sizeof(new_settings),#0);
  2526. { This does not load pmessage pointer }
  2527. new_settings.pmessage:=nil;
  2528. { TSettings size depends in target...
  2529. We first read the size of the copied part }
  2530. { Still not cross endian ready :( }
  2531. copy_size:=gettokenbufsizeint;
  2532. stbi:=tbi;
  2533. tokenreadsettings(new_settings, copy_size);
  2534. tbi:=stbi+copy_size;
  2535. if CompareByte(new_settings,prev_settings,sizeof(new_settings))<>0 then
  2536. begin
  2537. dump_new_settings;
  2538. writeln;
  2539. end
  2540. else
  2541. begin
  2542. writeln('Unchanged');
  2543. end;
  2544. prev_settings:=new_settings;
  2545. end;
  2546. ST_LOADMESSAGES:
  2547. begin
  2548. inc(tbi);
  2549. mesgnb:=tokenbuf[tbi];
  2550. writeln([space,mesgnb,' messages: ']);
  2551. inc(tbi);
  2552. for nb:=1 to mesgnb do
  2553. begin
  2554. msgvalue:=gettokenbufsizeint;
  2555. //inc(tbi,sizeof(sizeint));
  2556. state:=tmsgstate(gettokenbufsizeint);
  2557. writeln(['#',msgvalue,' ',state]);
  2558. end;
  2559. end;
  2560. ST_LINE:
  2561. begin
  2562. inc(tbi);
  2563. new_line:=gettokenbufdword;
  2564. if (new_line<>last_line) then
  2565. begin
  2566. StrAppend(genstr,linestr+LineEnding);
  2567. linestr:='';
  2568. end;
  2569. writeln(['Line: ',new_line]);
  2570. last_line:=new_line;
  2571. end;
  2572. ST_COLUMN:
  2573. begin
  2574. inc(tbi);
  2575. new_col:=gettokenbufword;
  2576. write(['Col: ',new_col]);
  2577. if length(linestr)<new_col - 1 then
  2578. StrAppend(linestr,StringOfChar(' ',new_col - 1 - length(linestr)));
  2579. last_col:=new_col;
  2580. end;
  2581. ST_FILEINDEX:
  2582. begin
  2583. inc(tbi);
  2584. StrAppend(genstr,linestr+LineEnding);
  2585. linestr:='';
  2586. write(['File: ',gettokenbufword]);
  2587. end;
  2588. else
  2589. begin
  2590. HasMoreInfos;
  2591. write('Error in Token List');
  2592. break;
  2593. end;
  2594. end;
  2595. end;
  2596. else ; { empty else to avoid warning }
  2597. end;
  2598. if tbi<tokenbufsize then
  2599. write(',');
  2600. end;
  2601. writeln;
  2602. StrAppend(genstr,linestr);
  2603. writeln(['##',genstr,'##']);
  2604. end;
  2605. procedure readcommondef(const s:string; out defoptions: tdefoptions; Def: TPpuDef = nil);
  2606. type
  2607. tdefopt=record
  2608. mask : tdefoption;
  2609. str : string[30];
  2610. end;
  2611. tdefstateinfo=record
  2612. mask : tdefstate;
  2613. str : string[30];
  2614. end;
  2615. tgenconstrflag=record
  2616. mask : tgenericconstraintflag;
  2617. str : string[30];
  2618. end;
  2619. const
  2620. defopt : array[1..ord(high(tdefoption))] of tdefopt=(
  2621. (mask:df_unique; str:'Unique Type'),
  2622. (mask:df_generic; str:'Generic'),
  2623. (mask:df_specialization; str:'Specialization'),
  2624. (mask:df_copied_def; str:'Copied Typedef'),
  2625. (mask:df_genconstraint; str:'Generic Constraint'),
  2626. { this should never happen for defs stored to a ppu file }
  2627. (mask:df_not_registered_no_free; str:'Unregistered/No free (invalid)'),
  2628. (mask:df_llvm_no_struct_packing; str:'LLVM unpacked struct'),
  2629. (mask:df_internal; str:'Internal'),
  2630. (mask:df_has_global_ref; str:'Has Global Ref'),
  2631. (mask:df_has_generic_fields; str:'Has generic fields')
  2632. );
  2633. defstate : array[1..ord(high(tdefstate))] of tdefstateinfo=(
  2634. (mask:ds_vmt_written; str:'VMT Written'),
  2635. (mask:ds_rtti_table_used; str:'RTTITable Used'),
  2636. (mask:ds_init_table_used; str:'InitTable Used'),
  2637. (mask:ds_rtti_table_written; str:'RTTITable Written'),
  2638. (mask:ds_init_table_written; str:'InitTable Written'),
  2639. (mask:ds_dwarf_dbg_info_used; str:'Dwarf DbgInfo Used'),
  2640. (mask:ds_dwarf_dbg_info_written;str:'Dwarf DbgInfo Written')
  2641. );
  2642. genconstrflag : array[1..ord(high(tgenericconstraintflag))] of tgenconstrflag=(
  2643. (mask:gcf_constructor; str:'Constructor'),
  2644. (mask:gcf_class; str:'Class'),
  2645. (mask:gcf_record; str:'Record')
  2646. );
  2647. var
  2648. defstates : tdefstates;
  2649. i, nb, len : longint;
  2650. first : boolean;
  2651. min_size, tokenbufsize : longint;
  2652. tokenbuf : pbyte;
  2653. genconstr : tgenericconstraintflags;
  2654. begin
  2655. i:=ppufile.getlongint;
  2656. if Def <> nil then
  2657. Def.Id:=i;
  2658. writeln([space,'** Definition Id ',i,' **']);
  2659. writeln([space,s]);
  2660. write ([space,' Type symbol : ']);
  2661. if Def <> nil then
  2662. readderef('', Def.Ref)
  2663. else
  2664. readderef('');
  2665. write ([space,' DefOptions : ']);
  2666. ppufile.getset(tppuset2(defoptions));
  2667. if defoptions<>[] then
  2668. begin
  2669. first:=true;
  2670. for i:=1to high(defopt) do
  2671. if (defopt[i].mask in defoptions) then
  2672. begin
  2673. if first then
  2674. first:=false
  2675. else
  2676. write(', ');
  2677. write(defopt[i].str);
  2678. end;
  2679. end;
  2680. writeln;
  2681. write ([space,' DefStates : ']);
  2682. ppufile.getset(tppuset1(defstates));
  2683. if defstates<>[] then
  2684. begin
  2685. first:=true;
  2686. for i:=1 to high(defstate) do
  2687. if (defstate[i].mask in defstates) then
  2688. begin
  2689. if first then
  2690. first:=false
  2691. else
  2692. write(', ');
  2693. write(defstate[i].str);
  2694. end;
  2695. end;
  2696. writeln;
  2697. if df_genconstraint in defoptions then
  2698. begin
  2699. ppufile.getset(tppuset1(genconstr));
  2700. write ([space,' GenConstraints : ']);
  2701. if genconstr<>[] then
  2702. begin
  2703. first:=true;
  2704. for i:=1 to high(genconstrflag) do
  2705. if (genconstrflag[i].mask in genconstr) then
  2706. begin
  2707. if first then
  2708. first:=false
  2709. else
  2710. write(', ');
  2711. write(genconstrflag[i].str);
  2712. end;
  2713. end;
  2714. writeln;
  2715. len:=ppufile.getlongint;
  2716. if len>0 then
  2717. begin
  2718. space:=' '+space;
  2719. writeln([space,'------ constraint defs begin ------']);
  2720. for i:=0 to len-1 do
  2721. begin
  2722. writeln([space,'------ constraint def ',i,' ------']);
  2723. readderef(space);
  2724. end;
  2725. writeln([space,'------ constraint defs end ------']);
  2726. delete(space,1,4);
  2727. end;
  2728. end;
  2729. if [df_generic,df_specialization]*defoptions<>[] then
  2730. begin
  2731. nb:=ppufile.getlongint;
  2732. writeln([space,'has ',nb,' parameters']);
  2733. if nb>0 then
  2734. begin
  2735. for i:=0 to nb-1 do
  2736. begin
  2737. writeln([space,'parameter ',i,': ',ppufile.getstring]);
  2738. readderef(space);
  2739. end;
  2740. end;
  2741. end;
  2742. if df_generic in defoptions then
  2743. begin
  2744. tokenbufsize:=ppufile.getlongint;
  2745. writeln([space,' Tokenbuffer size : ',tokenbufsize]);
  2746. tokenbuf:=allocmem(tokenbufsize);
  2747. ppufile.getdata(tokenbuf^,tokenbufsize);
  2748. displaytokenbuffer(tokenbuf,tokenbufsize);
  2749. freemem(tokenbuf);
  2750. end;
  2751. if df_specialization in defoptions then
  2752. begin
  2753. write ([space,' Orig. GenericDef : ']);
  2754. readderef('');
  2755. end;
  2756. space:=space+' ';
  2757. readattrs(def);
  2758. delete(space,1,4);
  2759. current_defoptions:=defoptions;
  2760. end;
  2761. { Read abstract procdef and return if inline procdef }
  2762. { type tproccalloption is in globtype unit }
  2763. { type tproctypeoption is in globtype unit }
  2764. { type tprocoption is in globtype unit }
  2765. procedure read_abstract_proc_def(var proccalloption:tproccalloption;var procoptions:tprocoptions; ProcDef: TPpuProcDef);
  2766. type
  2767. tproccallopt=record
  2768. mask : tproccalloption;
  2769. str : string[30];
  2770. end;
  2771. tproctypeopt=record
  2772. mask : tproctypeoption;
  2773. str : string[30];
  2774. end;
  2775. tprocopt=record
  2776. mask : tprocoption;
  2777. str : string[34];
  2778. end;
  2779. const
  2780. {proccalloptionStr is also in globtype unit }
  2781. proctypeopt : array[1..ord(high(tproctypeoption))] of tproctypeopt=(
  2782. (mask:potype_proginit; str:'ProgInit'),
  2783. (mask:potype_unitinit; str:'UnitInit'),
  2784. (mask:potype_unitfinalize; str:'UnitFinalize'),
  2785. (mask:potype_constructor; str:'Constructor'),
  2786. (mask:potype_destructor; str:'Destructor'),
  2787. (mask:potype_operator; str:'Operator'),
  2788. (mask:potype_procedure; str:'Procedure'),
  2789. (mask:potype_function; str:'Function'),
  2790. (mask:potype_class_constructor; str:'Class Constructor'),
  2791. (mask:potype_class_destructor; str:'Class Destructor'),
  2792. { Dispinterface property accessors }
  2793. (mask:potype_propgetter; str:'Property Getter'),
  2794. (mask:potype_propsetter; str:'Property Setter'),
  2795. (mask:potype_exceptfilter; str:'SEH filter'),
  2796. (mask:potype_mainstub; str:'main stub'),
  2797. (mask:potype_pkgstub; str:'package stub'),
  2798. (mask:potype_libmainstub; str:'library main stub')
  2799. );
  2800. procopt : array[1..ord(high(tprocoption))] of tprocopt=(
  2801. (mask:po_classmethod; str:'ClassMethod'),
  2802. (mask:po_virtualmethod; str:'VirtualMethod'),
  2803. (mask:po_abstractmethod; str:'AbstractMethod'),
  2804. (mask:po_finalmethod; str:'FinalMethod'),
  2805. (mask:po_staticmethod; str:'StaticMethod'),
  2806. (mask:po_overridingmethod;str:'OverridingMethod'),
  2807. (mask:po_methodpointer; str:'MethodPointer'),
  2808. (mask:po_interrupt; str:'Interrupt'),
  2809. (mask:po_iocheck; str:'IOCheck'),
  2810. (mask:po_assembler; str:'Assembler'),
  2811. (mask:po_msgstr; str:'MsgStr'),
  2812. (mask:po_msgint; str:'MsgInt'),
  2813. (mask:po_exports; str:'Exports'),
  2814. (mask:po_external; str:'External'),
  2815. (mask:po_overload; str:'Overload'),
  2816. (mask:po_varargs; str:'VarArgs'),
  2817. (mask:po_internconst; str:'InternConst'),
  2818. (mask:po_addressonly; str:'AddressOnly'),
  2819. (mask:po_public; str:'Public'),
  2820. (mask:po_hascallingconvention;str:'HasCallingConvention'),
  2821. (mask:po_reintroduce; str:'ReIntroduce'),
  2822. (mask:po_explicitparaloc; str:'ExplicitParaloc'),
  2823. (mask:po_nostackframe; str:'NoStackFrame'),
  2824. (mask:po_has_mangledname; str:'HasMangledName'),
  2825. (mask:po_has_public_name; str:'HasPublicName'),
  2826. (mask:po_forward; str:'Forward'),
  2827. (mask:po_global; str:'Global'),
  2828. (mask:po_syscall; str:'Syscall'),
  2829. (mask:po_syscall_legacy; str:'SyscallLegacy'),
  2830. (mask:po_syscall_basenone;str:'SyscallBaseNone'),
  2831. (mask:po_syscall_basefirst;str:'SyscallBaseFirst'),
  2832. (mask:po_syscall_baselast;str:'SyscallBaseLast'),
  2833. (mask:po_syscall_basereg; str:'SyscallBaseReg'),
  2834. (mask:po_syscall_has_libsym; str:'Has LibSym'),
  2835. (mask:po_syscall_has_importnr; str:'Uses ImportNr'),
  2836. (mask:po_inline; str:'Inline'),
  2837. (mask:po_compilerproc; str:'CompilerProc'),
  2838. (mask:po_has_importdll; str:'HasImportDLL'),
  2839. (mask:po_has_importname; str:'HasImportName'),
  2840. (mask:po_kylixlocal; str:'KylixLocal'),
  2841. (mask:po_dispid; str:'DispId'),
  2842. (mask:po_weakexternal; str:'WeakExternal'),
  2843. (mask:po_objc; str:'ObjC'),
  2844. (mask:po_enumerator_movenext; str:'EnumeratorMoveNext'),
  2845. (mask:po_optional; str: 'Optional'),
  2846. (mask:po_delphi_nested_cc;str: 'Delphi-style nested frameptr'),
  2847. (mask:po_java_nonvirtual; str: 'Java non-virtual method'),
  2848. (mask:po_ignore_for_overload_resolution;str: 'Ignored for overload resolution'),
  2849. (mask:po_rtlproc; str: 'RTL procedure'),
  2850. (mask:po_auto_raised_visibility; str: 'Visibility raised by compiler'),
  2851. (mask:po_far; str: 'Far'),
  2852. (mask:po_hasnearfarcallmodel; str: 'Near/Far explicit'),
  2853. (mask:po_noreturn; str: 'No return'),
  2854. (mask:po_is_function_ref; str: 'Function reference'),
  2855. (mask:po_is_block; str: 'C "Block"'),
  2856. (mask:po_is_auto_getter; str: 'Automatically generated getter'),
  2857. (mask:po_is_auto_setter; str: 'Automatically generated setter'),
  2858. (mask:po_noinline; str: 'Never inline'),
  2859. (mask:po_variadic; str: 'C VarArgs with array-of-const para'),
  2860. (mask:po_objc_related_result_type; str: 'Objective-C related result type'),
  2861. (mask:po_anonymous; str: 'Anonymous')
  2862. );
  2863. var
  2864. proctypeoption : tproctypeoption;
  2865. i : longint;
  2866. first : boolean;
  2867. begin
  2868. write([space,' Return type : ']);
  2869. readderef('', ProcDef.ReturnType);
  2870. proctypeoption:=tproctypeoption(ppufile.getbyte);
  2871. case proctypeoption of
  2872. potype_function: Include(ProcDef.Options, poFunction);
  2873. potype_procedure: Include(ProcDef.Options, poProcedure);
  2874. potype_constructor: Include(ProcDef.Options, poConstructor);
  2875. potype_destructor: Include(ProcDef.Options, poDestructor);
  2876. potype_operator: Include(ProcDef.Options, poOperator);
  2877. end;
  2878. write([space,' TypeOption : ']);
  2879. first:=true;
  2880. for i:=1 to high(proctypeopt) do
  2881. if (proctypeopt[i].mask=proctypeoption) then
  2882. begin
  2883. if first then
  2884. first:=false
  2885. else
  2886. write(', ');
  2887. write(proctypeopt[i].str);
  2888. end;
  2889. writeln;
  2890. proccalloption:=tproccalloption(ppufile.getbyte);
  2891. writeln([space,' CallOption : ',proccalloptionStr[proccalloption]]);
  2892. ppufile.getset(tppuset8(procoptions));
  2893. if procoptions<>[] then
  2894. begin
  2895. if po_classmethod in procoptions then Include(ProcDef.Options, poClassMethod);
  2896. if po_virtualmethod in procoptions then Include(ProcDef.Options, poVirtual);
  2897. if po_abstractmethod in procoptions then Include(ProcDef.Options, poAbstract);
  2898. if po_overridingmethod in procoptions then Include(ProcDef.Options, poOverriding);
  2899. if po_overload in procoptions then Include(ProcDef.Options, poOverload);
  2900. if po_inline in procoptions then Include(ProcDef.Options, poInline);
  2901. if (po_methodpointer in procoptions) and (ProcDef.DefType = dtProcType) then
  2902. TPpuProcTypeDef(ProcDef).MethodPtr:=True;
  2903. write([space,' Options : ']);
  2904. first:=true;
  2905. for i:=1 to high(procopt) do
  2906. if (procopt[i].mask in procoptions) then
  2907. begin
  2908. if first then
  2909. first:=false
  2910. else
  2911. write(', ');
  2912. write(procopt[i].str);
  2913. end;
  2914. writeln;
  2915. end;
  2916. if (po_explicitparaloc in procoptions) then
  2917. begin
  2918. readcgpara(space);
  2919. end;
  2920. end;
  2921. { type tvaroption is in unit symconst }
  2922. { register variable }
  2923. { type tvarregable is in unit symconst }
  2924. procedure readabstractvarsym(const s:string;var varoptions:tvaroptions; VarDef: TPpuVarDef = nil);
  2925. type
  2926. tvaropt=record
  2927. mask : tvaroption;
  2928. str : string[30];
  2929. end;
  2930. const
  2931. varopt : array[1..ord(high(tvaroption))] of tvaropt=(
  2932. (mask:vo_is_external; str:'External'),
  2933. (mask:vo_is_dll_var; str:'DLLVar'),
  2934. (mask:vo_is_thread_var; str:'ThreadVar'),
  2935. (mask:vo_has_local_copy; str:'HasLocalCopy'),
  2936. (mask:vo_is_const; str:'Constant'),
  2937. (mask:vo_is_public; str:'Public'),
  2938. (mask:vo_is_high_para; str:'HighValue'),
  2939. (mask:vo_is_funcret; str:'Funcret'),
  2940. (mask:vo_is_self; str:'Self'),
  2941. (mask:vo_is_vmt; str:'VMT'),
  2942. (mask:vo_is_result; str:'Result'),
  2943. (mask:vo_is_parentfp; str:'ParentFP'),
  2944. (mask:vo_is_loop_counter; str:'LoopCounter'),
  2945. (mask:vo_is_hidden_para; str:'Hidden'),
  2946. (mask:vo_has_explicit_paraloc;str:'ExplicitParaloc'),
  2947. (mask:vo_is_syscall_lib; str:'SysCallLib'),
  2948. (mask:vo_has_mangledname; str:'HasMangledName'),
  2949. (mask:vo_is_typed_const; str:'TypedConst'),
  2950. (mask:vo_is_range_check; str:'RangeCheckSwitch'),
  2951. (mask:vo_is_overflow_check; str:'OverflowCheckSwitch'),
  2952. (mask:vo_is_typinfo_para; str:'TypeInfo'),
  2953. (mask:vo_is_msgsel;str:'MsgSel'),
  2954. (mask:vo_is_weak_external;str:'WeakExternal'),
  2955. (mask:vo_is_first_field;str:'IsFirstField'),
  2956. (mask:vo_volatile; str:'Volatile'),
  2957. (mask:vo_has_section; str:'HasSection'),
  2958. (mask:vo_force_finalize; str:'ForceFinalize'),
  2959. (mask:vo_is_default_var; str:'DefaultIntrinsicVar'),
  2960. (mask:vo_is_far; str:'IsFar'),
  2961. (mask:vo_has_global_ref; str:'HasGlobalRef')
  2962. );
  2963. type
  2964. tvaraccessdesc=record
  2965. mask: tvarsymaccessflag;
  2966. str: string[30];
  2967. end;
  2968. const
  2969. varaccessstr : array[ord(low(tvarsymaccessflag))..ord(high(tvarsymaccessflag))] of tvaraccessdesc=(
  2970. (mask: vsa_addr_taken; str:'Address taken'),
  2971. (mask: vsa_different_scope; str:'Accessed from different scope')
  2972. );
  2973. var
  2974. i : longint;
  2975. accessflag: tvarsymaccessflag;
  2976. varsymaccessflags: tvarsymaccessflags;
  2977. first : boolean;
  2978. begin
  2979. readcommonsym(s, VarDef);
  2980. i:=ppufile.getbyte;
  2981. if (VarDef <> nil) and (VarDef.DefType = dtParam) then
  2982. with TPpuParamDef(VarDef) do
  2983. case tvarspez(i) of
  2984. vs_value: Spez:=psValue;
  2985. vs_var: Spez:=psVar;
  2986. vs_out: Spez:=psOut;
  2987. vs_const: Spez:=psConst;
  2988. vs_constref: Spez:=psConstRef;
  2989. end;
  2990. writeln([space,' Spez : ',Varspez2Str(i)]);
  2991. writeln([space,' Regable : ',Varregable2Str(ppufile.getbyte)]);
  2992. ppufile.getset(tppuset1(varsymaccessflags));
  2993. write([space, ' Access Flags : ']);
  2994. first:=true;
  2995. for i:=low(varaccessstr) to high(varaccessstr) do
  2996. begin
  2997. if varaccessstr[i].mask in varsymaccessflags then
  2998. begin
  2999. if first then
  3000. first:=false
  3001. else
  3002. write([', ']);
  3003. write([varaccessstr[i].str]);
  3004. end
  3005. end;
  3006. writeln;
  3007. write ([space,' Var Type : ']);
  3008. if VarDef <> nil then
  3009. readderef('',VarDef.VarType)
  3010. else
  3011. readderef('');
  3012. ppufile.getset(tppuset4(varoptions));
  3013. if varoptions<>[] then
  3014. begin
  3015. if (VarDef <> nil) and (VarDef.DefType = dtParam) and (vo_is_hidden_para in varoptions) then
  3016. TPpuParamDef(VarDef).Spez:=psHidden;
  3017. write([space,' Options : ']);
  3018. first:=true;
  3019. for i:=1 to high(varopt) do
  3020. if (varopt[i].mask in varoptions) then
  3021. begin
  3022. if first then
  3023. first:=false
  3024. else
  3025. write(', ');
  3026. write(varopt[i].str);
  3027. end;
  3028. writeln;
  3029. end;
  3030. end;
  3031. procedure readobjectdefoptions(ObjDef: TPpuObjectDef = nil);
  3032. type
  3033. tsymopt=record
  3034. mask : tobjectoption;
  3035. str : string[30];
  3036. end;
  3037. const
  3038. symopt : array[1..ord(high(tobjectoption))] of tsymopt=(
  3039. (mask:oo_is_forward; str:'IsForward'),
  3040. (mask:oo_is_abstract; str:'IsAbstract'),
  3041. (mask:oo_is_sealed; str:'IsSealed'),
  3042. (mask:oo_has_virtual; str:'HasVirtual'),
  3043. (mask:oo_has_private; str:'HasPrivate'),
  3044. (mask:oo_has_protected; str:'HasProtected'),
  3045. (mask:oo_has_strictprivate; str:'HasStrictPrivate'),
  3046. (mask:oo_has_strictprotected;str:'HasStrictProtected'),
  3047. (mask:oo_has_constructor; str:'HasConstructor'),
  3048. (mask:oo_has_destructor; str:'HasDestructor'),
  3049. (mask:oo_has_vmt; str:'HasVMT'),
  3050. (mask:oo_has_msgstr; str:'HasMsgStr'),
  3051. (mask:oo_has_msgint; str:'HasMsgInt'),
  3052. (mask:oo_can_have_published; str:'CanHavePublished'),
  3053. (mask:oo_has_default_property;str:'HasDefaultProperty'),
  3054. (mask:oo_has_valid_guid; str:'HasValidGUID'),
  3055. (mask:oo_has_enumerator_movenext; str:'HasEnumeratorMoveNext'),
  3056. (mask:oo_has_enumerator_current; str:'HasEnumeratorCurrent'),
  3057. (mask:oo_is_external; str:'External'),
  3058. (mask:oo_is_formal; str:'Formal'),
  3059. (mask:oo_is_classhelper; str:'Class Helper/Category'),
  3060. (mask:oo_has_class_constructor; str:'HasClassConstructor'),
  3061. (mask:oo_has_class_destructor; str:'HasClassDestructor'),
  3062. (mask:oo_is_enum_class; str:'JvmEnumClass'),
  3063. (mask:oo_has_new_destructor; str:'HasNewDestructor'),
  3064. (mask:oo_is_funcref; str:'IsFuncRef'),
  3065. (mask:oo_is_invokable; str:'IsInvokable')
  3066. );
  3067. var
  3068. i : longint;
  3069. first : boolean;
  3070. begin
  3071. ppufile.getset(tppuset4(current_objectoptions));
  3072. if current_objectoptions<>[] then
  3073. begin
  3074. if ObjDef <> nil then
  3075. begin
  3076. if oo_is_abstract in current_objectoptions then
  3077. Include(ObjDef.Options, ooIsAbstract);
  3078. end;
  3079. first:=true;
  3080. for i:=1 to high(symopt) do
  3081. if (symopt[i].mask in current_objectoptions) then
  3082. begin
  3083. if first then
  3084. first:=false
  3085. else
  3086. write(', ');
  3087. write(symopt[i].str);
  3088. end;
  3089. end;
  3090. writeln;
  3091. end;
  3092. procedure readprocimploptions(const space: string; out implprocoptions: timplprocoptions);
  3093. type
  3094. tpiopt=record
  3095. mask : timplprocoption;
  3096. str : string[30];
  3097. end;
  3098. const
  3099. piopt : array[low(timplprocoption)..high(timplprocoption)] of tpiopt=(
  3100. (mask:pio_empty; str:'IsEmpty'),
  3101. (mask:pio_has_inlininginfo; str:'HasInliningInfo'),
  3102. (mask:pio_inline_not_possible; str:'InlineNotPossible'),
  3103. (mask:pio_nested_access; str:'NestedAccess'),
  3104. (mask:pio_thunk; str:'Thunk'),
  3105. (mask:pio_fastmath; str:'FastMath'),
  3106. (mask:pio_inline_forbidden; str:'InlineForbidden')
  3107. );
  3108. var
  3109. i: timplprocoption;
  3110. first: boolean;
  3111. begin
  3112. ppufile.getset(tppuset1(implprocoptions));
  3113. if implprocoptions<>[] then
  3114. begin
  3115. first:=true;
  3116. write([space,' Options : ']);
  3117. for i:=low(piopt) to high(piopt) do
  3118. begin
  3119. if i in implprocoptions then
  3120. begin
  3121. if first then
  3122. first:=false
  3123. else
  3124. write(', ');
  3125. write(piopt[i].str);
  3126. end;
  3127. end;
  3128. writeln;
  3129. end;
  3130. end;
  3131. procedure readarraydefoptions(ArrayDef: TPpuArrayDef);
  3132. { type tarraydefoption is in unit symconst }
  3133. const
  3134. symopt : array[tarraydefoption] of string = (
  3135. { ado_IsConvertedPointer } 'ConvertedPointer',
  3136. { ado_IsDynamicArray } 'IsDynamicArray',
  3137. { ado_IsVariant } 'IsVariant',
  3138. { ado_IsConstructor } 'IsConstructor',
  3139. { ado_IsArrayOfConst } 'ArrayOfConst',
  3140. { ado_IsConstString } 'ConstString',
  3141. { ado_IsBitPacked } 'BitPacked',
  3142. { ado_IsVector } 'Vector',
  3143. { ado_IsGeneric } 'Generic',
  3144. { ado_OpenArray } 'OpenArray'
  3145. );
  3146. var
  3147. symoptions: tarraydefoptions;
  3148. i: tarraydefoption;
  3149. first: boolean;
  3150. begin
  3151. ppufile.getset(tppuset2(symoptions));
  3152. if symoptions<>[] then
  3153. begin
  3154. if ado_IsDynamicArray in symoptions then Include(ArrayDef.Options, aoDynamic);
  3155. first:=true;
  3156. for i:=Low(symopt) to high(symopt) do
  3157. if (i in symoptions) then
  3158. begin
  3159. if first then
  3160. first:=false
  3161. else
  3162. write(', ');
  3163. write(symopt[i]);
  3164. end;
  3165. end;
  3166. writeln;
  3167. end;
  3168. (* options for properties
  3169. tpropertyoption=(ppo_none,
  3170. ppo_indexed,
  3171. ppo_defaultproperty,
  3172. ppo_stored,
  3173. ppo_hasparameters,
  3174. ppo_implements,
  3175. ppo_enumerator_current,
  3176. ppo_overrides,
  3177. ppo_dispid_write { no longer used }
  3178. );
  3179. tpropertyoptions=set of tpropertyoption;
  3180. *)
  3181. function readpropertyoptions:tpropertyoptions;
  3182. { type tarraydefoption is in unit symconst }
  3183. type
  3184. tpropopt=record
  3185. mask : tpropertyoption;
  3186. str : string[30];
  3187. end;
  3188. const
  3189. symopt : array[1..ord(high(tpropertyoption))] of tpropopt=(
  3190. (mask:ppo_indexed;str:'indexed'),
  3191. (mask:ppo_defaultproperty;str:'default'),
  3192. (mask:ppo_stored;str:'stored'),
  3193. (mask:ppo_hasparameters;str:'has parameters'),
  3194. (mask:ppo_implements;str:'implements'),
  3195. (mask:ppo_enumerator_current;str:'enumerator current'),
  3196. (mask:ppo_overrides;str:'overrides'),
  3197. (mask:ppo_dispid_write;str:'dispid write') { no longer used }
  3198. );
  3199. var
  3200. i : longint;
  3201. first : boolean;
  3202. begin
  3203. ppufile.getset(tppuset2(result));
  3204. if result<>[] then
  3205. begin
  3206. first:=true;
  3207. for i:=1 to high(symopt) do
  3208. if (symopt[i].mask in result) then
  3209. begin
  3210. if first then
  3211. first:=false
  3212. else
  3213. write(', ');
  3214. write(symopt[i].str);
  3215. end;
  3216. end;
  3217. writeln;
  3218. end;
  3219. function readmanagementoperatoroptions(const space : string;const name : string):tmanagementoperators;
  3220. { type is in unit symconst }
  3221. { Management operator options
  3222. tmanagementoperator=(
  3223. mop_none,
  3224. mop_initialize,
  3225. mop_finalize,
  3226. mop_addref,
  3227. mop_copy);
  3228. }
  3229. type
  3230. tmopopt=record
  3231. mask : tmanagementoperator;
  3232. str : string[10];
  3233. end;
  3234. const
  3235. managementoperatoropt : array[1..ord(high(tmanagementoperator))] of tmopopt=(
  3236. (mask:mop_initialize;str:'initialize'),
  3237. (mask:mop_finalize;str:'finalize'),
  3238. (mask:mop_addref;str:'addref'),
  3239. (mask:mop_copy;str:'copy')
  3240. );
  3241. var
  3242. i : longint;
  3243. first : boolean;
  3244. begin
  3245. ppufile.getset(tppuset1(result));
  3246. if result<>[] then
  3247. begin
  3248. first:=true;
  3249. for i:=1 to high(managementoperatoropt) do
  3250. if (managementoperatoropt[i].mask in result) then
  3251. begin
  3252. if first then
  3253. begin
  3254. write(space);
  3255. write(name);
  3256. write(': ');
  3257. first:=false;
  3258. end
  3259. else
  3260. write(', ');
  3261. write(managementoperatoropt[i].str);
  3262. end;
  3263. if not first then
  3264. writeln;
  3265. end;
  3266. end;
  3267. procedure readnodetree;
  3268. var
  3269. l : longint;
  3270. p : pointer;
  3271. begin
  3272. with ppufile do
  3273. begin
  3274. if space<>'' then
  3275. Writeln([space,'------ nodetree ------']);
  3276. if readentry=ibnodetree then
  3277. begin
  3278. l:=entrysize;
  3279. Writeln([space,'Tree size : ',l]);
  3280. { Read data to prevent error that entry is not completly read }
  3281. getmem(p,l);
  3282. getdata(p^,l);
  3283. freemem(p);
  3284. end
  3285. else
  3286. begin
  3287. WriteError('!! ibnodetree not found');
  3288. end;
  3289. end;
  3290. end;
  3291. procedure ReadCreatedObjTypes;
  3292. var
  3293. i,j,
  3294. len,
  3295. bssize: longint;
  3296. bs: pbyte;
  3297. begin
  3298. if ppufile.readentry<>ibcreatedobjtypes then
  3299. begin
  3300. WriteError('!! ibcreatedobjtypes entry not found');
  3301. ppufile.skipdata(ppufile.entrysize);
  3302. exit
  3303. end;
  3304. writeln;
  3305. writeln([space,'WPO info']);
  3306. writeln([space,'--------']);
  3307. len:=ppufile.getlongint;
  3308. writeln([space,'** Instantiated Object/Class types: ',len,' **']);
  3309. space:=space+' ';
  3310. for i:=0 to len-1 do
  3311. readderef(space);
  3312. setlength(space,length(space)-2);
  3313. len:=ppufile.getlongint;
  3314. writeln([space,'** Instantiated ClassRef types: ',len,' **']);
  3315. space:=space+' ';
  3316. for i:=0 to len-1 do
  3317. readderef(space);
  3318. setlength(space,length(space)-2);
  3319. len:=ppufile.getlongint;
  3320. writeln([space,'** Possibly instantiated ClassRef types : ',len,' **']);
  3321. space:=space+' ';
  3322. for i:=0 to len-1 do
  3323. readderef(space);
  3324. setlength(space,length(space)-2);
  3325. len:=ppufile.getlongint;
  3326. writeln([space,'** Class types with called virtual methods info : ',len,' **']);
  3327. space:=space+' ';
  3328. for i:=0 to len-1 do
  3329. begin
  3330. write([space,'Class def : ']);
  3331. readderef('');
  3332. write([space+' ','Called vmtentries : ']);
  3333. bssize:=ppufile.getlongint;
  3334. getmem(bs,bssize);
  3335. ppufile.readdata(bs^,bssize);
  3336. for j:=0 to bssize*8-1 do
  3337. if (((bs+j shr 3)^ shr (j and 7)) and 1) <> 0 then
  3338. write([j,', ']);
  3339. writeln;
  3340. freemem(bs);
  3341. end;
  3342. setlength(space,length(space)-2);
  3343. end;
  3344. {****************************************************************************
  3345. Read Symbols Part
  3346. ****************************************************************************}
  3347. procedure readsymbols(const s:string; ParentDef: TPpuContainerDef = nil);
  3348. function _finddef(symdef: TPpuDef): TPpuDef;
  3349. begin
  3350. Result:=nil;
  3351. if symdef.Ref.IsCurUnit then
  3352. begin;
  3353. Result:=CurUnit.FindById(symdef.Ref.Id);
  3354. if (Result <> nil) and (Result.Ref.Id = symdef.Id) then
  3355. begin
  3356. Result.Name:=symdef.Name;
  3357. Result.FilePos:=symdef.FilePos;
  3358. end
  3359. else
  3360. Result:=nil;
  3361. end;
  3362. end;
  3363. type
  3364. pguid = ^tguid;
  3365. tguid = packed record
  3366. D1: LongWord;
  3367. D2: Word;
  3368. D3: Word;
  3369. D4: array[0..7] of Byte;
  3370. end;
  3371. var
  3372. b : byte;
  3373. pc : pchar;
  3374. ch : dword;
  3375. startnewline : boolean;
  3376. i,j,len : longint;
  3377. prettyname, ss : ansistring;
  3378. ws: widestring;
  3379. guid : tguid;
  3380. realvalue : ppureal;
  3381. doublevalue : double;
  3382. singlevalue : single;
  3383. realstr : shortstring;
  3384. extended : TSplit80bitReal;
  3385. pw : pcompilerwidestring;
  3386. varoptions : tvaroptions;
  3387. propoptions : tpropertyoptions;
  3388. iexp: Tconstexprint;
  3389. def: TPpuDef;
  3390. constdef: TPpuConstDef absolute def;
  3391. begin
  3392. with ppufile do
  3393. begin
  3394. if space<>'' then
  3395. Writeln([space,'------ ',s,' ------']);
  3396. if readentry=ibstartsyms then
  3397. begin
  3398. Writeln([space,'Symtable count: ',getlongint]);
  3399. end
  3400. else
  3401. Writeln('!! ibstartsym not found');
  3402. repeat
  3403. def:=nil;
  3404. b:=readentry;
  3405. case b of
  3406. ibunitsym :
  3407. readcommonsym('Unit symbol ');
  3408. ibnamespacesym :
  3409. begin
  3410. readcommonsym('NameSpace symbol ');
  3411. write([space,' Hidden Unit : ']);
  3412. readderef('');
  3413. end;
  3414. iblabelsym :
  3415. readcommonsym('Label symbol ');
  3416. ibtypesym :
  3417. begin
  3418. def:=TPpuTypeRef.Create(nil);
  3419. readcommonsym('Type symbol ',def);
  3420. write([space,' Result Type : ']);
  3421. readderef('', def.Ref);
  3422. if _finddef(def) = nil then
  3423. def.Parent:=ParentDef;
  3424. prettyname:=getansistring;
  3425. if prettyname<>'' then
  3426. begin
  3427. write([space,' Pretty Name : ']);
  3428. Writeln(prettyname);
  3429. end;
  3430. end;
  3431. ibprocsym :
  3432. begin
  3433. def:=TPpuDef.Create(nil);
  3434. readcommonsym('Procedure symbol ', def);
  3435. len:=ppufile.getword;
  3436. for i:=1 to len do
  3437. begin
  3438. write([space,' Definition : ']);
  3439. readderef('', def.Ref);
  3440. _finddef(def);
  3441. end;
  3442. if def.GenericDummy then
  3443. begin
  3444. len:=ppufile.getword;
  3445. for i:=1 to len do
  3446. begin
  3447. write([space,' Gen Ovld : ']);
  3448. readderef('',def.Ref);
  3449. _finddef(def);
  3450. end;
  3451. end;
  3452. end;
  3453. ibconstsym :
  3454. begin
  3455. constdef:=TPpuConstDef.Create(ParentDef);
  3456. readcommonsym('Constant symbol ',constdef);
  3457. b:=getbyte;
  3458. case tconsttyp(b) of
  3459. constord :
  3460. begin
  3461. write ([space,' OrdinalType : ']);
  3462. readderef('',constdef.TypeRef);
  3463. iexp:=getexprint;
  3464. constdef.ConstType:=ctInt;
  3465. constdef.VInt:=iexp.svalue;
  3466. writeln([space,' Value : ',constexp.tostr(iexp)]);
  3467. end;
  3468. constpointer :
  3469. begin
  3470. write ([space,' PointerType : ']);
  3471. readderef('',constdef.TypeRef);
  3472. constdef.ConstType:=ctInt;
  3473. constdef.VInt:=int64(getptruint);
  3474. writeln([space,' Value : ',constdef.VInt])
  3475. end;
  3476. conststring,
  3477. constresourcestring :
  3478. begin
  3479. write ([space,' StringType : ']);
  3480. readderef('',constdef.TypeRef);
  3481. len:=getlongint;
  3482. getmem(pc,len+1);
  3483. getdata(pc^,len);
  3484. (pc+len)^:= #0;
  3485. writeln([space,' Length : ',len]);
  3486. writeln([space,' Value : "',pc,'"']);
  3487. constdef.ConstType:=ctStr;
  3488. SetString(constdef.VStr, pc, len);
  3489. constdef.VStr:=UTF8Encode(constdef.VStr);
  3490. freemem(pc,len+1);
  3491. end;
  3492. constreal :
  3493. begin
  3494. constdef.ConstType:=ctFloat;
  3495. write ([space,' RealType : ']);
  3496. readderef('',constdef.TypeRef);
  3497. write([space,' Value : ']);
  3498. if entryleft=sizeof(ppureal) then
  3499. begin
  3500. realvalue:=getrealsize(sizeof(ppureal));
  3501. constdef.VFloat:=realvalue;
  3502. system.str(realvalue,realstr);
  3503. writeln([realstr]);
  3504. end
  3505. else if entryleft=sizeof(double) then
  3506. begin
  3507. doublevalue:=getrealsize(sizeof(double));
  3508. constdef.VFloat:=doublevalue;
  3509. system.str(doublevalue,realstr);
  3510. writeln([realstr]);
  3511. end
  3512. else if entryleft=sizeof(single) then
  3513. begin
  3514. singlevalue:=getrealsize(sizeof(single));
  3515. constdef.VFloat:=singlevalue;
  3516. system.str(singlevalue,realstr);
  3517. writeln([realstr]);
  3518. end
  3519. else if entryleft=10 then
  3520. begin
  3521. getdata(extended,entryleft);
  3522. ss:=Real80bitToStr(extended,constdef.VFloat);
  3523. writeln(ss);
  3524. end
  3525. else
  3526. begin
  3527. realvalue:=0.0;
  3528. WriteError('Error reading real value');
  3529. end;
  3530. end;
  3531. constset :
  3532. begin
  3533. constdef.ConstType:=ctSet;
  3534. write ([space,' Set Type : ']);
  3535. readderef('',constdef.TypeRef);
  3536. for i:=1to 4 do
  3537. begin
  3538. write ([space,' Value : ']);
  3539. for j:=1to 8 do
  3540. begin
  3541. if j>1 then
  3542. write(',');
  3543. b:=getbyte;
  3544. write(hexstr(b,2));
  3545. constdef.VSet[i*j-1]:=b;
  3546. end;
  3547. writeln;
  3548. end;
  3549. end;
  3550. constnil:
  3551. begin
  3552. write([space,' NIL pointer :']);
  3553. readderef('',constdef.TypeRef);
  3554. constdef.ConstType:=ctPtr;
  3555. constdef.VInt:=0;
  3556. end;
  3557. constwstring :
  3558. begin
  3559. initwidestring(pw);
  3560. setlengthwidestring(pw,getlongint);
  3561. if widecharsize=2 then
  3562. { don't use getdata, because the compilerwidechars may have to
  3563. be byteswapped
  3564. }
  3565. begin
  3566. for i:=0 to pw^.len-1 do
  3567. pw^.data[i]:=ppufile.getword;
  3568. SetString(ws, PWideChar(pw^.data), pw^.len);
  3569. constdef.VStr:=UTF8Encode(ws);
  3570. constdef.ConstType:=ctStr;
  3571. end
  3572. else if widecharsize=4 then
  3573. begin
  3574. for i:=0 to pw^.len-1 do
  3575. pw^.data[i]:=cardinal(ppufile.getlongint);
  3576. end
  3577. else
  3578. begin
  3579. WriteError('Unsupported tcompilerwidechar size');
  3580. end;
  3581. Write([space,'Wide string type']);
  3582. startnewline:=true;
  3583. for i:=0 to pw^.len-1 do
  3584. begin
  3585. if startnewline then
  3586. begin
  3587. writeln;
  3588. write(space);
  3589. startnewline:=false;
  3590. end;
  3591. ch:=pw^.data[i];
  3592. if widecharsize=2 then
  3593. write(hexstr(ch,4))
  3594. else
  3595. write(hexstr(ch,8));
  3596. if ((i + 1) mod 8)= 0 then
  3597. startnewline:=true
  3598. else
  3599. if i <> pw^.len-1 then
  3600. write(', ');
  3601. end;
  3602. donewidestring(pw);
  3603. Writeln;
  3604. end;
  3605. constguid:
  3606. begin
  3607. write ([space,' IntfType : ']);
  3608. readderef('',constdef.TypeRef);
  3609. getdata(guid,sizeof(guid));
  3610. write ([space,' IID String: {',hexstr(guid.d1,8),'-',hexstr(guid.d2,4),'-',hexstr(guid.d3,4),'-']);
  3611. for i:=0 to 7 do
  3612. begin
  3613. write(hexstr(guid.d4[i],2));
  3614. if i=1 then write('-');
  3615. end;
  3616. writeln('}');
  3617. end
  3618. else
  3619. Writeln (['!! Invalid unit format : Invalid const type encountered: ',b]);
  3620. end;
  3621. end;
  3622. ibabsolutevarsym :
  3623. begin
  3624. def:=TPpuVarDef.Create(ParentDef);
  3625. readabstractvarsym('Absolute variable symbol ',varoptions,TPpuVarDef(def));
  3626. Write ([space,' Relocated to ']);
  3627. b:=getbyte;
  3628. case absolutetyp(b) of
  3629. tovar :
  3630. readpropaccesslist(space+' Sym : ');
  3631. toasm :
  3632. Writeln(['Assembler name : ',getstring]);
  3633. toaddr :
  3634. begin
  3635. Write(['Address : ',getpuint]);
  3636. if tsystemcpu(ppufile.header.common.cpu)=cpu_i386 then
  3637. Write([' (Far: ',getbyte<>0,')']);
  3638. if tsystemcpu(ppufile.header.common.cpu)=cpu_i8086 then
  3639. if getbyte<>0 then
  3640. Write([' (Far: TRUE, Segment=',getaword,')'])
  3641. else
  3642. Write([' (Far: FALSE)']);
  3643. Writeln;
  3644. end;
  3645. else
  3646. Writeln (['!! Invalid unit format : Invalid absolute type encountered: ',b]);
  3647. end;
  3648. end;
  3649. ibfieldvarsym :
  3650. begin
  3651. def:=TPpuFieldDef.Create(ParentDef);
  3652. readabstractvarsym('Field Variable symbol ',varoptions,TPpuVarDef(def));
  3653. writeln([space,' Address : ',getasizeint]);
  3654. if vo_has_mangledname in varoptions then
  3655. writeln([space,' Mangled name : ',getstring]);
  3656. end;
  3657. ibstaticvarsym :
  3658. begin
  3659. def:=TPpuVarDef.Create(ParentDef);
  3660. readabstractvarsym('Global Variable symbol ',varoptions,TPpuVarDef(def));
  3661. write ([space,' DefaultConst : ']);
  3662. readderef('');
  3663. if (vo_has_mangledname in varoptions) then
  3664. writeln([space,'Mangledname : ',readsymstr(ppufile)]);
  3665. if vo_has_section in varoptions then
  3666. writeln(['Section name:',ppufile.getansistring]);
  3667. write ([space,' FieldVarSymDeref: ']);
  3668. readderef('');
  3669. end;
  3670. iblocalvarsym :
  3671. begin
  3672. readabstractvarsym('Local Variable symbol ',varoptions);
  3673. write ([space,' DefaultConst : ']);
  3674. readderef('');
  3675. end;
  3676. ibparavarsym :
  3677. begin
  3678. def:=TPpuParamDef.Create(ParentDef);
  3679. readabstractvarsym('Parameter Variable symbol ',varoptions,TPpuVarDef(def));
  3680. write ([space,' DefaultConst : ']);
  3681. readderef('',TPpuParamDef(def).DefaultValue);
  3682. writeln([space,' ParaNr : ',getword]);
  3683. writeln([space,' Univ : ',getboolean]);
  3684. writeln([space,' VarState : ',getbyte]);
  3685. writeln([space,' Refs : ',getbyte]);
  3686. if (vo_has_explicit_paraloc in varoptions) then
  3687. begin
  3688. readcgpara(space+' ');
  3689. end;
  3690. end;
  3691. ibenumsym :
  3692. begin
  3693. def:=TPpuConstDef.Create(nil);
  3694. readcommonsym('Enumeration symbol ',def);
  3695. write ([space,' Definition : ']);
  3696. readderef('');
  3697. TPpuConstDef(def).ConstType:=ctInt;
  3698. TPpuConstDef(def).VInt:=getlongint;
  3699. writeln([space,' Value : ',TPpuConstDef(def).VInt]);
  3700. if (ParentDef <> nil) and (ParentDef.DefType = dtEnum) then
  3701. def.Parent:=ParentDef;
  3702. end;
  3703. ibsyssym :
  3704. begin
  3705. readcommonsym('Internal system symbol ');
  3706. writeln([space,' Internal Nr : ',getlongint]);
  3707. end;
  3708. ibmacrosym :
  3709. begin
  3710. readcommonsym('Macro symbol ');
  3711. writeln([space,' Defined: ',getboolean]);
  3712. writeln([space,' Compiler var: ',getboolean]);
  3713. len:=getlongint;
  3714. writeln([space,' Value length: ',len]);
  3715. if len > 0 then
  3716. begin
  3717. getmem(pc,len+1);
  3718. getdata(pc^,len);
  3719. (pc+len)^:= #0;
  3720. writeln([space,' Value: "',pc,'"']);
  3721. freemem(pc,len+1);
  3722. end;
  3723. end;
  3724. ibpropertysym :
  3725. begin
  3726. def:=TPpuPropDef.Create(ParentDef);
  3727. readcommonsym('Property ',def);
  3728. write ([space,' Prop Options : ']);
  3729. propoptions:=readpropertyoptions;
  3730. if ppo_overrides in propoptions then
  3731. begin
  3732. write ([space,' OverrideProp : ']);
  3733. readderef('');
  3734. end;
  3735. if ppo_defaultproperty in propoptions then
  3736. Include(TPpuPropDef(def).Options, poDefault);
  3737. write ([space,' Prop Type : ']);
  3738. readderef('',TPpuPropDef(def).PropType);
  3739. writeln([space,' Index : ',getlongint]);
  3740. writeln([space,' Default : ',getlongint]);
  3741. write ([space,' Index Type : ']);
  3742. readderef('');
  3743. { palt_none }
  3744. write ([space,' Noneaccess : ']);
  3745. readpropaccesslist('');
  3746. write ([space,' Readaccess : ']);
  3747. readpropaccesslist(space+' Sym: ',TPpuPropDef(def).Getter);
  3748. write ([space,' Writeaccess : ']);
  3749. readpropaccesslist(space+' Sym: ',TPpuPropDef(def).Setter);
  3750. write ([space,' Storedaccess : ']);
  3751. readpropaccesslist(space+' Sym: ');
  3752. if [ppo_hasparameters,ppo_overrides]*propoptions=[ppo_hasparameters] then
  3753. begin
  3754. space:=' '+space;
  3755. readsymtable('parast',TPpuPropDef(def));
  3756. delete(space,1,4);
  3757. end;
  3758. end;
  3759. iberror :
  3760. begin
  3761. WriteError('!! Error in PPU');
  3762. exit;
  3763. end;
  3764. ibendsyms :
  3765. break;
  3766. else
  3767. begin
  3768. WriteError('!! Skipping unsupported PPU Entry in Symbols: '+IntToStr(b));
  3769. end;
  3770. end;
  3771. if assigned(def) then
  3772. readsymsubentries(def);
  3773. if (def <> nil) and (def.Parent = nil) then
  3774. def.Free;
  3775. if not EndOfEntry then
  3776. HasMoreInfos;
  3777. until false;
  3778. end;
  3779. end;
  3780. {****************************************************************************
  3781. Read defintions Part
  3782. ****************************************************************************}
  3783. procedure readdefinitions(const s:string; ParentDef: TPpuContainerDef);
  3784. { type tordtype is in symconst unit }
  3785. {
  3786. uvoid,
  3787. u8bit,u16bit,u32bit,u64bit,u128bit,
  3788. s8bit,s16bit,s32bit,s64bit,s128bit,
  3789. bool8bit,bool16bit,bool32bit,bool64bit,
  3790. uchar,uwidechar,scurrency,customint
  3791. ); }
  3792. { type tobjecttyp is in symconst unit }
  3793. { type tvarianttype is in symconst unit }
  3794. { type thelpertype is in symconst unit }
  3795. var
  3796. b : byte;
  3797. otb : byte; { Object Type byte, needed later again }
  3798. l,j,tokenbufsize : longint;
  3799. tokenbuf : pbyte;
  3800. calloption : tproccalloption;
  3801. procoptions : tprocoptions;
  3802. implprocoptions: timplprocoptions;
  3803. defoptions: tdefoptions;
  3804. iexpr: Tconstexprint;
  3805. def: TPpuDef;
  3806. objdef: TPpuObjectDef absolute def;
  3807. arrdef: TPpuArrayDef absolute def;
  3808. enumdef: TPpuEnumDef absolute def;
  3809. setdef: TPpuSetDef absolute def;
  3810. orddef: TPpuOrdDef absolute def;
  3811. floatdef: TPpuFloatDef absolute def;
  3812. strdef: TPpuStringDef absolute def;
  3813. filedef: TPpuFileDef absolute def;
  3814. begin
  3815. with ppufile do
  3816. begin
  3817. if space<>'' then
  3818. Writeln([space,'------ ',s,' ------']);
  3819. if readentry<>ibstartdefs then
  3820. Writeln('!! ibstartdefs not found');
  3821. repeat
  3822. def:=nil;
  3823. b:=readentry;
  3824. case b of
  3825. ibpointerdef :
  3826. begin
  3827. def:=TPpuPointerDef.Create(ParentDef);
  3828. readcommondef('Pointer definition',defoptions,def);
  3829. write ([space,' Pointed Type : ']);
  3830. readderef('',TPpuPointerDef(def).Ptr);
  3831. writeln([space,' Has Pointer Math : ',(getbyte<>0)]);
  3832. if tsystemcpu(ppufile.header.common.cpu) in [cpu_i8086,cpu_i386,cpu_x86_64] then
  3833. begin
  3834. write([space,' X86 Pointer Type : ']);
  3835. b:=getbyte;
  3836. case tx86pointertyp(b) of
  3837. x86pt_near: writeln('Near');
  3838. x86pt_near_cs: writeln('Near ''CS''');
  3839. x86pt_near_ds: writeln('Near ''DS''');
  3840. x86pt_near_ss: writeln('Near ''SS''');
  3841. x86pt_near_es: writeln('Near ''ES''');
  3842. x86pt_near_fs: writeln('Near ''FS''');
  3843. x86pt_near_gs: writeln('Near ''GS''');
  3844. x86pt_far: writeln('Far');
  3845. x86pt_huge: writeln('Huge');
  3846. else
  3847. WriteWarning('Invalid x86 pointer type: ' + IntToStr(b));
  3848. end;
  3849. end;
  3850. end;
  3851. iborddef :
  3852. begin
  3853. orddef:=TPpuOrdDef.Create(ParentDef);
  3854. readcommondef('Ordinal definition',defoptions,orddef);
  3855. write ([space,' Base type : ']);
  3856. b:=getbyte;
  3857. case tordtype(b) of
  3858. uvoid:
  3859. begin
  3860. writeln('uvoid');
  3861. orddef.OrdType:=otVoid;
  3862. end;
  3863. u8bit:
  3864. begin
  3865. writeln('u8bit');
  3866. orddef.OrdType:=otUInt;
  3867. orddef.Size:=1;
  3868. end;
  3869. u16bit:
  3870. begin
  3871. writeln('u16bit');
  3872. orddef.OrdType:=otUInt;
  3873. orddef.Size:=2;
  3874. end;
  3875. u32bit:
  3876. begin
  3877. writeln('u32bit');
  3878. orddef.OrdType:=otUInt;
  3879. orddef.Size:=4;
  3880. end;
  3881. u64bit:
  3882. begin
  3883. writeln('u64bit');
  3884. orddef.OrdType:=otUInt;
  3885. orddef.Size:=8;
  3886. end;
  3887. u128bit:
  3888. begin
  3889. writeln('u128bit');
  3890. orddef.OrdType:=otUInt;
  3891. orddef.Size:=16;
  3892. end;
  3893. s8bit:
  3894. begin
  3895. writeln('s8bit');
  3896. orddef.OrdType:=otSInt;
  3897. orddef.Size:=1;
  3898. end;
  3899. s16bit:
  3900. begin
  3901. writeln('s16bit');
  3902. orddef.OrdType:=otSInt;
  3903. orddef.Size:=2;
  3904. end;
  3905. s32bit:
  3906. begin
  3907. writeln('s32bit');
  3908. orddef.OrdType:=otSInt;
  3909. orddef.Size:=4;
  3910. end;
  3911. s64bit:
  3912. begin
  3913. writeln('s64bit');
  3914. orddef.OrdType:=otSInt;
  3915. orddef.Size:=8;
  3916. end;
  3917. s128bit:
  3918. begin
  3919. writeln('s128bit');
  3920. orddef.OrdType:=otSInt;
  3921. orddef.Size:=16;
  3922. end;
  3923. pasbool1:
  3924. begin
  3925. writeln('pasbool1');
  3926. orddef.OrdType:=otPasBool;
  3927. orddef.Size:=1;
  3928. end;
  3929. pasbool8:
  3930. begin
  3931. writeln('pasbool8');
  3932. orddef.OrdType:=otPasBool;
  3933. orddef.Size:=1;
  3934. end;
  3935. pasbool16:
  3936. begin
  3937. writeln('pasbool16');
  3938. orddef.OrdType:=otPasBool;
  3939. orddef.Size:=2;
  3940. end;
  3941. pasbool32:
  3942. begin
  3943. writeln('pasbool32');
  3944. orddef.OrdType:=otPasBool;
  3945. orddef.Size:=4;
  3946. end;
  3947. pasbool64:
  3948. begin
  3949. writeln('pasbool64');
  3950. orddef.OrdType:=otPasBool;
  3951. orddef.Size:=8;
  3952. end;
  3953. bool8bit:
  3954. begin
  3955. writeln('bool8bit');
  3956. orddef.OrdType:=otBool;
  3957. orddef.Size:=1;
  3958. end;
  3959. bool16bit:
  3960. begin
  3961. writeln('bool16bit');
  3962. orddef.OrdType:=otBool;
  3963. orddef.Size:=2;
  3964. end;
  3965. bool32bit:
  3966. begin
  3967. writeln('bool32bit');
  3968. orddef.OrdType:=otBool;
  3969. orddef.Size:=4;
  3970. end;
  3971. bool64bit:
  3972. begin
  3973. writeln('bool64bit');
  3974. orddef.OrdType:=otBool;
  3975. orddef.Size:=8;
  3976. end;
  3977. uchar:
  3978. begin
  3979. writeln('uchar');
  3980. orddef.OrdType:=otChar;
  3981. orddef.Size:=1;
  3982. end;
  3983. uwidechar:
  3984. begin
  3985. writeln('uwidechar');
  3986. orddef.OrdType:=otChar;
  3987. orddef.Size:=2;
  3988. end;
  3989. scurrency:
  3990. begin
  3991. writeln('scurrency');
  3992. orddef.OrdType:=otCurrency;
  3993. orddef.Size:=8;
  3994. end;
  3995. customint:
  3996. begin
  3997. writeln('customint');
  3998. orddef.OrdType:=otSint;
  3999. orddef.Size:=sizeof(ASizeInt);
  4000. end
  4001. else
  4002. WriteWarning('Invalid base type: ' + IntToStr(b));
  4003. end;
  4004. iexpr:=getexprint;
  4005. orddef.RangeLow:=iexpr.svalue;
  4006. write([space,' Range : ',constexp.tostr(iexpr)]);
  4007. iexpr:=getexprint;
  4008. orddef.RangeHigh:=iexpr.svalue;
  4009. writeln([' to ',constexp.tostr(iexpr)]);
  4010. end;
  4011. ibfloatdef :
  4012. begin
  4013. floatdef:=TPpuFloatDef.Create(ParentDef);
  4014. readcommondef('Float definition',defoptions,floatdef);
  4015. write ([space,' Float type : ']);
  4016. b:=getbyte;
  4017. case b of
  4018. ftSingle:
  4019. begin
  4020. writeln('Single');
  4021. floatdef.FloatType:=pftSingle;
  4022. end;
  4023. ftDouble:
  4024. begin
  4025. writeln('Double');
  4026. floatdef.FloatType:=pftDouble;
  4027. end;
  4028. ftExtended:
  4029. begin
  4030. writeln('Extended');
  4031. floatdef.FloatType:=pftExtended;
  4032. end;
  4033. ftComp:
  4034. begin
  4035. writeln('Comp');
  4036. floatdef.FloatType:=pftComp;
  4037. end;
  4038. ftCurr:
  4039. begin
  4040. writeln('Currency');
  4041. floatdef.FloatType:=pftCurrency;
  4042. end;
  4043. ftFloat128:
  4044. begin
  4045. writeln('Float128');
  4046. floatdef.FloatType:=pftFloat128;
  4047. end;
  4048. else
  4049. WriteWarning('Invalid float type: ' + IntToStr(b));
  4050. end;
  4051. end;
  4052. ibarraydef :
  4053. begin
  4054. arrdef:=TPpuArrayDef.Create(ParentDef);
  4055. readcommondef('Array definition',defoptions,arrdef);
  4056. write ([space,' Element type : ']);
  4057. readderef('',arrdef.ElType);
  4058. write ([space,' Range Type : ']);
  4059. readderef('',arrdef.RangeType);
  4060. arrdef.RangeLow:=getasizeint;
  4061. arrdef.RangeHigh:=getasizeint;
  4062. writeln([space,' Range : ',arrdef.RangeLow,' to ',arrdef.RangeHigh]);
  4063. write ([space,' Options : ']);
  4064. readarraydefoptions(arrdef);
  4065. if tsystemcpu(ppufile.header.common.cpu)=cpu_i8086 then
  4066. writeln([space,' Huge : ',(getbyte<>0)]);
  4067. readsymtable('symbols', arrdef);
  4068. end;
  4069. ibprocdef :
  4070. begin
  4071. def:=TPpuProcDef.Create(ParentDef);
  4072. readcommondef('Procedure definition',defoptions,def);
  4073. read_abstract_proc_def(calloption,procoptions,TPpuProcDef(def));
  4074. if (po_has_mangledname in procoptions) then
  4075. writeln([space,' Mangled name : ',readsymstr(ppufile)]);
  4076. writeln([space,' Number : ',getword]);
  4077. writeln([space,' Level : ',getbyte]);
  4078. write ([space,' Class : ']);
  4079. readderef('');
  4080. write ([space,' Procsym : ']);
  4081. readderef('', def.Ref);
  4082. write ([space,' File Pos : ']);
  4083. readposinfo(def);
  4084. write ([space,' Visibility : ']);
  4085. readvisibility(def);
  4086. write ([space,' SymOptions : ']);
  4087. readsymoptions(space+' ');
  4088. if (po_has_importdll in procoptions) then
  4089. writeln([space,' Import DLL : ',getstring]);
  4090. if (po_has_importname in procoptions) then
  4091. writeln([space,' Import Name : ',getstring]);
  4092. writeln([space,' Import Nr : ',getword]);
  4093. if (po_msgint in procoptions) then
  4094. writeln([space,' MsgInt : ',getlongint]);
  4095. if (po_msgstr in procoptions) then
  4096. writeln([space,' MsgStr : ',getstring]);
  4097. if (po_dispid in procoptions) then
  4098. writeln([space,' DispID: ',ppufile.getlongint]);
  4099. readprocimploptions(space,implprocoptions);
  4100. if (pio_has_inlininginfo in implprocoptions) then
  4101. begin
  4102. write ([space,' FuncretSym : ']);
  4103. readderef('');
  4104. readprocinfooptions(space);
  4105. end;
  4106. b:=ppufile.getbyte;
  4107. if b<>0 then
  4108. begin
  4109. write ([space,' Alias names : ']);
  4110. for j:=1 to b do
  4111. begin
  4112. write(ppufile.getstring);
  4113. if j<b then
  4114. write(', ');
  4115. end;
  4116. writeln;
  4117. end;
  4118. tokenbufsize:=ppufile.getlongint;
  4119. if tokenbufsize<>0 then
  4120. begin
  4121. space:=space + ' ';
  4122. write ([space,'Declaration token buffer : size = ',tokenbufsize]);
  4123. tokenbuf:=allocmem(tokenbufsize);
  4124. ppufile.getdata(tokenbuf^,tokenbufsize);
  4125. displaytokenbuffer(tokenbuf,tokenbufsize);
  4126. freemem(tokenbuf);
  4127. delete(space,1,4);
  4128. end;
  4129. if po_syscall_has_libsym in procoptions then
  4130. begin
  4131. { library symbol for AmigaOS/MorphOS/AROS }
  4132. write ([space,' Library symbol : ']);
  4133. readderef('');
  4134. end;
  4135. if not EndOfEntry then
  4136. HasMoreInfos;
  4137. space:=' '+space;
  4138. { parast }
  4139. readsymtable('parast', TPpuProcDef(def));
  4140. { localst }
  4141. if (pio_has_inlininginfo in implprocoptions) then
  4142. readsymtable('inline localst')
  4143. else if (df_generic in defoptions) then
  4144. readsymtable('generic localst');
  4145. if (pio_has_inlininginfo in implprocoptions) then
  4146. readnodetree;
  4147. delete(space,1,4);
  4148. end;
  4149. ibprocvardef :
  4150. begin
  4151. def:=TPpuProcTypeDef.Create(ParentDef);
  4152. readcommondef('Procedural type (ProcVar) definition',defoptions,def);
  4153. read_abstract_proc_def(calloption,procoptions, TPpuProcDef(def));
  4154. writeln([space,' Symtable level :',ppufile.getbyte]);
  4155. if tsystemcpu(ppufile.header.common.cpu)=cpu_jvm then
  4156. readderef('');
  4157. if not EndOfEntry then
  4158. HasMoreInfos;
  4159. space:=' '+space;
  4160. { parast }
  4161. readsymtable('parast',TPpuProcDef(def));
  4162. delete(space,1,4);
  4163. end;
  4164. ibshortstringdef :
  4165. begin
  4166. strdef:=TPpuStringDef.Create(ParentDef);
  4167. strdef.StrType:=stShort;
  4168. readcommondef('ShortString definition',defoptions,strdef);
  4169. strdef.Len:=getbyte;
  4170. writeln([space,' Length : ',strdef.Len]);
  4171. end;
  4172. ibwidestringdef :
  4173. begin
  4174. strdef:=TPpuStringDef.Create(ParentDef);
  4175. strdef.StrType:=stWide;
  4176. readcommondef('WideString definition',defoptions,strdef);
  4177. strdef.Len:=getasizeint;
  4178. writeln([space,' Length : ',strdef.Len]);
  4179. end;
  4180. ibunicodestringdef :
  4181. begin
  4182. strdef:=TPpuStringDef.Create(ParentDef);
  4183. strdef.StrType:=stUnicode;
  4184. readcommondef('UnicodeString definition',defoptions,strdef);
  4185. strdef.Len:=getasizeint;
  4186. writeln([space,' Length : ',strdef.Len]);
  4187. writeln([space,' Encoding : ',getword]);
  4188. end;
  4189. ibansistringdef :
  4190. begin
  4191. strdef:=TPpuStringDef.Create(ParentDef);
  4192. strdef.StrType:=stAnsi;
  4193. readcommondef('AnsiString definition',defoptions,strdef);
  4194. strdef.Len:=getasizeint;
  4195. writeln([space,' Length : ',strdef.Len]);
  4196. writeln([space,' Encoding : ',getword]);
  4197. end;
  4198. iblongstringdef :
  4199. begin
  4200. strdef:=TPpuStringDef.Create(ParentDef);
  4201. strdef.StrType:=stLong;
  4202. readcommondef('Longstring definition',defoptions,strdef);
  4203. strdef.Len:=getasizeint;
  4204. writeln([space,' Length : ',strdef.Len]);
  4205. end;
  4206. ibrecorddef :
  4207. begin
  4208. objdef:=TPpuRecordDef.Create(ParentDef);
  4209. readcommondef('Record definition',defoptions, objdef);
  4210. def.Name:=getstring;
  4211. writeln([space,' Name of Record : ',objdef.Name]);
  4212. writeln([space,' Import lib/pkg : ',getstring]);
  4213. write ([space,' Options : ']);
  4214. readobjectdefoptions(objdef);
  4215. if (df_copied_def in defoptions) then
  4216. begin
  4217. Include(TPpuRecordDef(def).Options, ooCopied);
  4218. write([space,' Copied from : ']);
  4219. readderef('',objdef.Ancestor);
  4220. end
  4221. else
  4222. begin
  4223. writeln([space,' FieldAlign : ',shortint(getbyte)]);
  4224. writeln([space,' RecordAlign : ',shortint(getbyte)]);
  4225. writeln([space,' PadAlign : ',shortint(getbyte)]);
  4226. writeln([space,'UseFieldAlignment : ',shortint(getbyte)]);
  4227. writeln([space,' RecordAlignMin : ',shortint(getbyte)]);
  4228. objdef.Size:=getasizeint;
  4229. writeln([space,' DataSize : ',objdef.Size]);
  4230. writeln([space,' PaddingSize : ',getword]);
  4231. readmanagementoperatoroptions(space,'Management operators');
  4232. end;
  4233. {read the record definitions and symbols}
  4234. if not(df_copied_def in current_defoptions) then
  4235. begin
  4236. space:=' '+space;
  4237. readrecordsymtable('fields',TPpuRecordDef(def));
  4238. Delete(space,1,4);
  4239. end;
  4240. if not EndOfEntry then
  4241. HasMoreInfos;
  4242. end;
  4243. ibobjectdef :
  4244. begin
  4245. objdef:=TPpuObjectDef.Create(ParentDef);
  4246. readcommondef('Object/Class definition',defoptions,objdef);
  4247. objdef.Name:=getstring;
  4248. writeln([space,' Name of Class : ',objdef.Name]);
  4249. writeln([space,' Import lib/pkg : ',getstring]);
  4250. write ([space,' Options : ']);
  4251. readobjectdefoptions(objdef);
  4252. otb:=getbyte;
  4253. write ([space,' Type : ']);
  4254. case tobjecttyp(otb) of
  4255. odt_class : writeln('class');
  4256. odt_object : writeln('object');
  4257. odt_interfacecom : writeln('interfacecom');
  4258. odt_interfacecorba : writeln('interfacecorba');
  4259. odt_cppclass : writeln('cppclass');
  4260. odt_dispinterface : writeln('dispinterface');
  4261. odt_objcclass : writeln('objcclass');
  4262. odt_objcprotocol : writeln('objcprotocol');
  4263. odt_helper : writeln('helper');
  4264. odt_objccategory : writeln('objccategory');
  4265. odt_javaclass : writeln('Java class');
  4266. odt_interfacejava : writeln('Java interface');
  4267. else WriteWarning('Invalid object type: ' + IntToStr(b));
  4268. end;
  4269. case tobjecttyp(otb) of
  4270. odt_class, odt_cppclass, odt_objcclass, odt_javaclass:
  4271. objdef.ObjType:=otClass;
  4272. odt_object:
  4273. objdef.ObjType:=otObject;
  4274. odt_interfacecom, odt_interfacecorba, odt_interfacejava, odt_dispinterface:
  4275. objdef.ObjType:=otInterface;
  4276. odt_helper:
  4277. objdef.ObjType:=otHelper;
  4278. end;
  4279. b:=getbyte;
  4280. write ([space,' Helper Type : ']);
  4281. case thelpertype(b) of
  4282. ht_none : writeln('none');
  4283. ht_class : writeln('class helper');
  4284. ht_record : writeln('record helper');
  4285. ht_type : writeln('type helper');
  4286. else WriteWarning('Invalid helper type: ' + IntToStr(b));
  4287. end;
  4288. writeln([space,' External name : ',getstring]);
  4289. objdef.Size:=getasizeint;
  4290. writeln([space,' DataSize : ',objdef.Size]);
  4291. writeln([space,' PaddingSize : ',getword]);
  4292. writeln([space,' FieldAlign : ',shortint(getbyte)]);
  4293. writeln([space,' RecordAlign : ',shortint(getbyte)]);
  4294. writeln([space,' RecordAlignMin : ',shortint(getbyte)]);
  4295. write ([space, ' VmtField : ']);
  4296. readderef('',nil);
  4297. write ([space, ' Ancestor Class : ']);
  4298. readderef('',objdef.Ancestor);
  4299. if tobjecttyp(otb) in [odt_interfacecom,odt_interfacecorba,odt_dispinterface] then
  4300. begin
  4301. { IIDGUID }
  4302. for j:=1to 16 do
  4303. getbyte;
  4304. objdef.IID:=getstring;
  4305. writeln([space,' IID String : ',objdef.IID]);
  4306. end;
  4307. l:=getlongint;
  4308. if l > 0 then
  4309. objdef.Options:=objdef.Options + [ooAbstractMethods];
  4310. writeln([space,' Abstract methods : ',l]);
  4311. if tobjecttyp(otb)=odt_helper then
  4312. begin
  4313. write([space,' Helper parent : ']);
  4314. readderef('',objdef.HelperParent);
  4315. end;
  4316. l:=getlongint;
  4317. writeln([space,' VMT entries: ',l]);
  4318. for j:=1 to l do
  4319. begin
  4320. write([space,' ']);
  4321. readderef('');
  4322. write([space,' Visibility: ']);
  4323. readvisibility;
  4324. end;
  4325. if tobjecttyp(otb) in [odt_class,odt_objcclass,odt_objcprotocol,odt_javaclass,odt_interfacejava] then
  4326. begin
  4327. l:=getlongint;
  4328. writeln([space,' Impl Intf Count : ',l]);
  4329. for j:=1 to l do
  4330. begin
  4331. write ([space,' - Definition : ']);
  4332. readderef('');
  4333. write ([space,' - Getter Def : ']);
  4334. readderef('');
  4335. writeln([space,' IOffset : ',getlongint]);
  4336. writeln([space,' Entry type : ',IntfEntryType2Str(getbyte)]);
  4337. end;
  4338. end;
  4339. if df_copied_def in current_defoptions then
  4340. begin
  4341. Include(objdef.Options, ooCopied);
  4342. writeln(' Copy of def: ');
  4343. readderef('',objdef.Ancestor);
  4344. end
  4345. else
  4346. begin
  4347. {read the record definitions and symbols}
  4348. space:=' '+space;
  4349. readrecordsymtable('fields',objdef);
  4350. Delete(space,1,4);
  4351. end;
  4352. if not EndOfEntry then
  4353. HasMoreInfos;
  4354. end;
  4355. ibfiledef :
  4356. begin
  4357. filedef:=TPpuFileDef.Create(ParentDef);
  4358. ReadCommonDef('File definition',defoptions,filedef);
  4359. write ([space,' Type : ']);
  4360. case getbyte of
  4361. 0 : begin
  4362. writeln('Text');
  4363. filedef.FileType:=ftText;
  4364. end;
  4365. 1 : begin
  4366. writeln('Typed');
  4367. filedef.FileType:=ftTyped;
  4368. write ([space,' File of Type : ']);
  4369. readderef('',filedef.TypeRef);
  4370. end;
  4371. 2 : begin
  4372. writeln('Untyped');
  4373. filedef.FileType:=ftUntyped;
  4374. end;
  4375. end;
  4376. end;
  4377. ibformaldef :
  4378. begin
  4379. def:=TPpuFormalDef.Create(ParentDef);
  4380. readcommondef('Generic definition (void-typ)',defoptions,def);
  4381. TPpuFormalDef(def).IsTyped:=(getbyte<>0);
  4382. writeln([space,' Is Typed : ',TPpuFormalDef(def).IsTyped]);
  4383. end;
  4384. ibundefineddef :
  4385. begin
  4386. def:=TPpuUndefinedDef.Create(ParentDef);
  4387. readcommondef('Undefined definition (generic parameter)',defoptions,def);
  4388. end;
  4389. ibenumdef :
  4390. begin
  4391. enumdef:=TPpuEnumDef.Create(ParentDef);
  4392. readcommondef('Enumeration type definition',defoptions,enumdef);
  4393. enumdef.ElLow:=getaint;
  4394. writeln([space,' Smallest element : ',enumdef.ElLow]);
  4395. enumdef.ElHigh:=getaint;
  4396. writeln([space,' Largest element : ',enumdef.ElHigh]);
  4397. enumdef.Size:=byte(getaint);
  4398. writeln([space,' Size : ',enumdef.Size]);
  4399. if df_copied_def in defoptions then
  4400. begin
  4401. write([space,'Base enumeration type : ']);
  4402. readderef('',enumdef.CopyFrom);
  4403. end
  4404. else
  4405. begin
  4406. space:=' '+space;
  4407. readsymtable('elements',enumdef);
  4408. delete(space,1,4);
  4409. end;
  4410. if tsystemcpu(ppufile.header.common.cpu)=cpu_jvm then
  4411. begin
  4412. write([space,' Class def : ']);
  4413. readderef('');
  4414. end;
  4415. end;
  4416. ibclassrefdef :
  4417. begin
  4418. def:=TPpuClassRefDef.Create(ParentDef);
  4419. readcommondef('Class reference definition',defoptions,def);
  4420. write ([space,' Pointed Type : ']);
  4421. readderef('',TPpuClassRefDef(def).ClassRef);
  4422. end;
  4423. ibsetdef :
  4424. begin
  4425. setdef:=TPpuSetDef.Create(ParentDef);
  4426. readcommondef('Set definition',defoptions,setdef);
  4427. write ([space,' Element type : ']);
  4428. readderef('',setdef.ElType);
  4429. setdef.Size:=getasizeint;
  4430. writeln([space,' Size : ',setdef.Size]);
  4431. setdef.SetBase:=getasizeint;
  4432. writeln([space,' Set Base : ',setdef.SetBase]);
  4433. setdef.SetMax:=getasizeint;
  4434. writeln([space,' Set Max : ',setdef.SetMax]);
  4435. end;
  4436. ibvariantdef :
  4437. begin
  4438. def:=TPpuVariantDef.Create(ParentDef);
  4439. readcommondef('Variant definition',defoptions,def);
  4440. write ([space,' Varianttype : ']);
  4441. b:=getbyte;
  4442. case tvarianttype(b) of
  4443. vt_normalvariant :
  4444. writeln('Normal');
  4445. vt_olevariant :
  4446. begin
  4447. TPpuVariantDef(def).IsOLE:=True;
  4448. writeln('OLE');
  4449. end
  4450. else
  4451. WriteWarning('Invalid varianttype: ' + IntToStr(b));
  4452. end;
  4453. end;
  4454. iberror :
  4455. begin
  4456. WriteError('!! Error in PPU');
  4457. exit;
  4458. end;
  4459. ibenddefs :
  4460. break;
  4461. else
  4462. begin
  4463. WriteError('!! Skipping unsupported PPU Entry in definitions: '+IntToStr(b));
  4464. end;
  4465. end;
  4466. if assigned(def) then
  4467. readdefsubentries(def);
  4468. if (def <> nil) and (def.Parent = nil) then
  4469. def.Free;
  4470. if not EndOfEntry then
  4471. HasMoreInfos;
  4472. until false;
  4473. end;
  4474. end;
  4475. procedure readmoduleoptions(space : string);
  4476. type
  4477. { tmoduleoption type is in unit fmodule }
  4478. tmoduleoption = (mo_none,
  4479. mo_hint_deprecated,
  4480. mo_hint_platform,
  4481. mo_hint_library,
  4482. mo_hint_unimplemented,
  4483. mo_hint_experimental,
  4484. mo_has_deprecated_msg
  4485. );
  4486. tmoduleoptions = set of tmoduleoption;
  4487. tmoduleopt=record
  4488. mask : tmoduleoption;
  4489. str : string[30];
  4490. end;
  4491. const
  4492. moduleopts=ord(high(tmoduleoption));
  4493. moduleopt : array[1..moduleopts] of tmoduleopt=(
  4494. (mask:mo_hint_deprecated; str:'Hint Deprecated'),
  4495. (mask:mo_hint_platform; str:'Hint Platform'),
  4496. (mask:mo_hint_library; str:'Hint Library'),
  4497. (mask:mo_hint_unimplemented; str:'Hint Unimplemented'),
  4498. (mask:mo_hint_experimental; str:'Hint Experimental'),
  4499. (mask:mo_has_deprecated_msg; str:'Has Deprecated Message')
  4500. );
  4501. var
  4502. moduleoptions : tmoduleoptions;
  4503. i : longint;
  4504. first : boolean;
  4505. begin
  4506. ppufile.getset(tppuset1(moduleoptions));
  4507. if moduleoptions<>[] then
  4508. begin
  4509. first:=true;
  4510. for i:=1to moduleopts do
  4511. if (moduleopt[i].mask in moduleoptions) then
  4512. begin
  4513. if first then
  4514. first:=false
  4515. else
  4516. write(', ');
  4517. write(moduleopt[i].str);
  4518. end;
  4519. end;
  4520. writeln;
  4521. if mo_has_deprecated_msg in moduleoptions then
  4522. writeln([space,'Deprecated : ', ppufile.getstring]);
  4523. end;
  4524. {****************************************************************************
  4525. Read General Part
  4526. ****************************************************************************}
  4527. procedure readinterface(silent : boolean);
  4528. var
  4529. b : byte;
  4530. sourcenumber, i : longint;
  4531. feature : tfeature;
  4532. features : tfeatures;
  4533. s : string;
  4534. begin
  4535. with ppufile do
  4536. begin
  4537. repeat
  4538. b:=readentry;
  4539. case b of
  4540. ibmodulename :
  4541. begin
  4542. CurUnit.Name:=getstring;
  4543. if not silent then
  4544. Writeln(['Module Name: ',CurUnit.Name]);
  4545. end;
  4546. ibfeatures :
  4547. begin
  4548. getset(tppuset4(features));
  4549. Writeln('Features: ');
  4550. for feature:=low(tfeatures) to high(tfeature) do
  4551. if feature in features then
  4552. begin
  4553. str(feature,s);
  4554. s:=copy(s,3,255);
  4555. writeln([s]);
  4556. end;
  4557. end;
  4558. ibmoduleoptions:
  4559. if not silent then
  4560. readmoduleoptions(' ');
  4561. ibsourcefiles :
  4562. begin
  4563. sourcenumber:=1;
  4564. if not silent then
  4565. while not EndOfEntry do
  4566. begin
  4567. with TPpuSrcFile.Create(CurUnit.SourceFiles) do begin
  4568. Name:=getstring;
  4569. i:=getlongint;
  4570. try
  4571. if i >= 0 then
  4572. FileTime:=FileDateToDateTime(i);
  4573. Writeln(['Source file ',sourcenumber,' : ',Name,' ',filetimestring(i)]);
  4574. except
  4575. end;
  4576. end;
  4577. inc(sourcenumber);
  4578. end;
  4579. end;
  4580. {$IFDEF MACRO_DIFF_HINT}
  4581. ibusedmacros :
  4582. begin
  4583. if not silent then
  4584. while not EndOfEntry do
  4585. begin
  4586. Write('Conditional ',getstring);
  4587. if getboolean then
  4588. write(' defined at startup')
  4589. else
  4590. write(' not defined at startup');
  4591. if getboolean then
  4592. writeln(' was used')
  4593. else
  4594. writeln;
  4595. end;
  4596. end;
  4597. {$ENDIF}
  4598. ibloadunit :
  4599. if not silent then
  4600. ReadLoadUnit;
  4601. iblinkunitofiles :
  4602. if not silent then
  4603. ReadLinkContainer('Link unit object file: ');
  4604. iblinkunitstaticlibs :
  4605. if not silent then
  4606. ReadLinkContainer('Link unit static lib: ');
  4607. iblinkunitsharedlibs :
  4608. if not silent then
  4609. ReadLinkContainer('Link unit shared lib: ');
  4610. iblinkotherofiles :
  4611. if not silent then
  4612. ReadLinkContainer('Link other object file: ');
  4613. iblinkotherstaticlibs :
  4614. if not silent then
  4615. ReadLinkContainer('Link other static lib: ');
  4616. iblinkothersharedlibs :
  4617. if not silent then
  4618. ReadLinkContainer('Link other shared lib: ');
  4619. iblinkotherframeworks:
  4620. if not silent then
  4621. ReadLinkContainer('Link framework: ');
  4622. ibjvmnamespace:
  4623. Writeln('JVM name space: '+getString);
  4624. ibmainname:
  4625. if not silent then
  4626. Writeln(['Specified main program symbol name: ',getstring]);
  4627. ibImportSymbols :
  4628. if not silent then
  4629. ReadImportSymbols;
  4630. ibderefdata :
  4631. ReadDerefData;
  4632. ibderefmap :
  4633. ReadDerefMap;
  4634. ibwpofile :
  4635. if not silent then
  4636. ReadWpoFileInfo;
  4637. ibresources :
  4638. if not silent then
  4639. ReadContainer('Resource file: ');
  4640. iborderedsymbols:
  4641. if not silent then
  4642. ReadContainer('Ordered symbol: ');
  4643. iberror :
  4644. begin
  4645. WriteError('Error in PPU');
  4646. exit;
  4647. end;
  4648. ibendinterface :
  4649. break;
  4650. else
  4651. begin
  4652. WriteError('!! Skipping unsupported PPU Entry in General Part: '+IntToStr(b));
  4653. end;
  4654. end;
  4655. until false;
  4656. end;
  4657. end;
  4658. {****************************************************************************
  4659. Read Implementation Part
  4660. ****************************************************************************}
  4661. procedure readimplementation;
  4662. var
  4663. b : byte;
  4664. begin
  4665. with ppufile do
  4666. begin
  4667. repeat
  4668. b:=readentry;
  4669. case b of
  4670. ibasmsymbols :
  4671. ReadAsmSymbols;
  4672. ibloadunit :
  4673. ReadLoadUnit;
  4674. ibunitimportsyms :
  4675. ReadUnitImportSyms;
  4676. iberror :
  4677. begin
  4678. WriteError('Error in PPU');
  4679. exit;
  4680. end;
  4681. ibendimplementation :
  4682. break;
  4683. else
  4684. begin
  4685. WriteError('!! Skipping unsupported PPU Entry in Implementation: '+IntToStr(b));
  4686. end;
  4687. end;
  4688. until false;
  4689. end;
  4690. end;
  4691. function parseextraheader(module: TPpuModuleDef; ppufile: tppufile): boolean;
  4692. var
  4693. b: byte;
  4694. begin
  4695. result:=false;
  4696. b:=ppufile.readentry;
  4697. if b<>ibextraheader then
  4698. exit;
  4699. CurUnit.LongVersion:=cardinal(ppufile.getlongint);
  4700. Writeln(['LongVersion: ',CurUnit.LongVersion]);
  4701. ppufile.getset(tppuset4(CurUnit.ModuleFlags));
  4702. result:=ppufile.EndOfEntry and (CurUnit.LongVersion=CurrentPPULongVersion);
  4703. if mf_symansistr in CurUnit.ModuleFlags then
  4704. SymAnsiStr:=true;
  4705. end;
  4706. procedure dofile (filename : string);
  4707. begin
  4708. { reset }
  4709. space:='';
  4710. { fix filename }
  4711. if pos('.',filename)=0 then
  4712. filename:=filename+'.ppu';
  4713. ppufile:=tppudumpfile.create(filename);
  4714. if not ppufile.openfile then
  4715. begin
  4716. WriteError('IO-Error when opening : '+filename+', Skipping');
  4717. exit;
  4718. end;
  4719. { PPU File is open, check for PPU Id }
  4720. if not ppufile.CheckPPUID then
  4721. begin
  4722. WriteError(Filename+' : Not a valid PPU file, Skipping');
  4723. exit;
  4724. end;
  4725. { Check PPU Version }
  4726. ppuversion:=ppufile.getversion;
  4727. Writeln(['Analyzing ',filename,' (v',PPUVersion,')']);
  4728. if not SkipVersionCheck and (PPUVersion <> CurrentPPUVersion) then
  4729. begin
  4730. WriteError(Format('Unsupported PPU version %d. Expecting PPU version %d.', [PPUVersion, CurrentPPUVersion]));
  4731. exit;
  4732. end;
  4733. CurUnit:=TPpuModuleDef.Create(UnitList);
  4734. CurUnit.Version:=ppuversion;
  4735. if not parseextraheader(CurUnit, ppufile) then
  4736. begin
  4737. WriteError(Format('Unsupported PPU sub-version %d. Expecting PPU sub-version %d.', [CurUnit.LongVersion, CurrentPPULongVersion]));
  4738. end;
  4739. { Write PPU Header Information }
  4740. if (verbose and v_header)<>0 then
  4741. begin
  4742. Writeln;
  4743. Writeln('Header');
  4744. Writeln('-------');
  4745. with ppufile.header do
  4746. begin
  4747. Writeln(['Compiler version : ',ppufile.header.common.compiler shr 14,'.',
  4748. (ppufile.header.common.compiler shr 7) and $7f,'.',
  4749. ppufile.header.common.compiler and $7f]);
  4750. WriteLn(['Target processor : ',Cpu2Str(common.cpu)]);
  4751. WriteLn(['Target operating system : ',Target2Str(common.target)]);
  4752. Writeln(['Unit flags : ',PPUFlags2Str(common.flags)]);
  4753. Writeln(['FileSize (w/o header) : ',common.size]);
  4754. Writeln(['Checksum : ',hexstr(checksum,8)]);
  4755. Writeln(['Interface Checksum : ',hexstr(interface_checksum,8)]);
  4756. Writeln(['Indirect Checksum : ',hexstr(indirect_checksum,8)]);
  4757. Writeln(['Definitions stored : ',tostr(deflistsize)]);
  4758. Writeln(['Symbols stored : ',tostr(symlistsize)]);
  4759. end;
  4760. end;
  4761. with ppufile.header do
  4762. begin
  4763. CurUnit.Crc:=checksum;
  4764. CurUnit.IntfCrc:=interface_checksum;
  4765. CurUnit.TargetCPU:=Cpu2Str(common.cpu);
  4766. CurUnit.TargetOS:=Target2Str(common.target);
  4767. end;
  4768. {read the general stuff}
  4769. if (verbose and v_interface)<>0 then
  4770. begin
  4771. Writeln;
  4772. Writeln('Interface section');
  4773. Writeln('------------------');
  4774. readinterface(false);
  4775. end
  4776. { We need derefdata from Interface }
  4777. else if verbose and (v_defs or v_syms or v_implementation)<>0 then
  4778. readinterface(true)
  4779. else
  4780. ppufile.skipuntilentry(ibendinterface);
  4781. Writeln;
  4782. Writeln('Interface symtable');
  4783. Writeln('----------------------');
  4784. readsymtableoptions('interface');
  4785. {read the definitions}
  4786. if (verbose and v_defs)<>0 then
  4787. begin
  4788. Writeln;
  4789. Writeln('Interface definitions');
  4790. Writeln('----------------------');
  4791. readdefinitions('interface', CurUnit);
  4792. end
  4793. else
  4794. ppufile.skipuntilentry(ibenddefs);
  4795. {read the symbols}
  4796. if (verbose and v_syms)<>0 then
  4797. begin
  4798. Writeln;
  4799. Writeln('Interface Symbols');
  4800. Writeln('------------------');
  4801. readsymbols('interface',CurUnit);
  4802. end
  4803. else
  4804. ppufile.skipuntilentry(ibendsyms);
  4805. {read the macro symbols}
  4806. if (verbose and v_syms)<>0 then
  4807. begin
  4808. Writeln;
  4809. Writeln('Interface Macro Symbols');
  4810. Writeln('-----------------------');
  4811. end;
  4812. if ppufile.readentry<>ibexportedmacros then
  4813. begin
  4814. WriteError('!! Error in PPU');
  4815. exit;
  4816. end;
  4817. if ppufile.getboolean then
  4818. begin
  4819. readsymtableoptions('interface macro');
  4820. {skip the definition section for macros (since they are never used) }
  4821. ppufile.skipuntilentry(ibenddefs);
  4822. {read the macro symbols}
  4823. if (verbose and v_syms)<>0 then
  4824. readsymbols('interface macro')
  4825. else
  4826. ppufile.skipuntilentry(ibendsyms);
  4827. end
  4828. else
  4829. Writeln('(no exported macros)');
  4830. {read the implementation stuff}
  4831. if (verbose and v_implementation)<>0 then
  4832. begin
  4833. Writeln;
  4834. Writeln('Implementation section');
  4835. Writeln('-----------------------');
  4836. readimplementation;
  4837. end
  4838. else
  4839. ppufile.skipuntilentry(ibendimplementation);
  4840. {read the static symtable}
  4841. Writeln;
  4842. Writeln('Implementation symtable');
  4843. Writeln('----------------------');
  4844. readsymtableoptions('implementation');
  4845. if (mf_local_symtable in CurUnit.ModuleFlags) then
  4846. begin
  4847. if (verbose and v_defs)<>0 then
  4848. begin
  4849. Writeln;
  4850. Writeln('Static definitions');
  4851. Writeln('----------------------');
  4852. readdefinitions('implementation', nil);
  4853. end
  4854. else
  4855. ppufile.skipuntilentry(ibenddefs);
  4856. {read the symbols}
  4857. if (verbose and v_syms)<>0 then
  4858. begin
  4859. Writeln;
  4860. Writeln('Static Symbols');
  4861. Writeln('------------------');
  4862. readsymbols('implementation');
  4863. end
  4864. else
  4865. ppufile.skipuntilentry(ibendsyms);
  4866. end;
  4867. ReadCreatedObjTypes;
  4868. FreeDerefdata;
  4869. {shutdown ppufile}
  4870. ppufile.closefile;
  4871. ppufile.free;
  4872. Writeln;
  4873. end;
  4874. procedure WriteLogo;
  4875. begin
  4876. writeln(Title+' Version '+version_string);
  4877. writeln(Copyright);
  4878. writeln;
  4879. end;
  4880. procedure help;
  4881. begin
  4882. WriteLogo;
  4883. writeln('usage: ppudump [options] <filename1> <filename2>...');
  4884. writeln;
  4885. writeln('[options] can be:');
  4886. writeln(' -F<format> Set output format to <format>');
  4887. writeln(' t - text format (default)');
  4888. writeln(' j - JSON format');
  4889. writeln(' x - XML format');
  4890. writeln(' -M Exit with ExitCode=2 if more information is available');
  4891. writeln(' -S Skip PPU version check. May lead to reading errors');
  4892. writeln(' -V<verbose> Set verbosity to <verbose>');
  4893. writeln(' H - Show header info');
  4894. writeln(' I - Show interface');
  4895. writeln(' M - Show implementation');
  4896. writeln(' S - Show interface symbols');
  4897. writeln(' D - Show interface definitions');
  4898. writeln(' A - Show all');
  4899. writeln(' -h, -? This helpscreen');
  4900. halt;
  4901. end;
  4902. var
  4903. startpara,
  4904. nrfile,i : longint;
  4905. para : string;
  4906. const
  4907. error_on_more : boolean = false;
  4908. begin
  4909. if paramcount<1 then
  4910. help;
  4911. { turn verbose on by default }
  4912. verbose:=v_all;
  4913. { read options }
  4914. startpara:=1;
  4915. while copy(paramstr(startpara),1,1)='-' do
  4916. begin
  4917. para:=paramstr(startpara);
  4918. case upcase(para[2]) of
  4919. 'F' : begin
  4920. FreeAndNil(pout);
  4921. if Length(para) > 2 then
  4922. case upcase(para[3]) of
  4923. 'T':
  4924. nostdout:=False;
  4925. 'J':
  4926. begin
  4927. nostdout:=True;
  4928. pout:=TPpuJsonOutput.Create(StdOutputHandle);
  4929. end;
  4930. 'X':
  4931. begin
  4932. nostdout:=True;
  4933. pout:=TPpuXmlOutput.Create(StdOutputHandle);
  4934. end;
  4935. else
  4936. begin
  4937. WriteError('Invalid output format: ' + para[3]);
  4938. Halt(1);
  4939. end;
  4940. end;
  4941. end;
  4942. 'M' : error_on_more:=true;
  4943. 'S' : SkipVersionCheck:=True;
  4944. 'V' : begin
  4945. verbose:=0;
  4946. for i:=3 to length(para) do
  4947. case upcase(para[i]) of
  4948. 'H' : verbose:=verbose or v_header;
  4949. 'I' : verbose:=verbose or v_interface;
  4950. 'M' : verbose:=verbose or v_implementation;
  4951. 'D' : verbose:=verbose or v_defs;
  4952. 'S' : verbose:=verbose or v_syms;
  4953. 'A' : verbose:=verbose or v_all;
  4954. end;
  4955. end;
  4956. 'H' : help;
  4957. '?' : help;
  4958. else
  4959. begin
  4960. WriteError('Invalid option: ' + para);
  4961. Halt(1);
  4962. end;
  4963. end;
  4964. inc(startpara);
  4965. end;
  4966. if not nostdout then
  4967. WriteLogo;
  4968. UnitList:=TPpuContainerDef.Create(nil);
  4969. try
  4970. UnitList.ItemsName:='';
  4971. { process files }
  4972. for nrfile:=startpara to paramcount do
  4973. dofile (paramstr(nrfile));
  4974. if not has_errors and (pout <> nil) then
  4975. begin
  4976. pout.Init;
  4977. UnitList.Write(pout);
  4978. pout.Done;
  4979. end;
  4980. finally
  4981. UnitList.Free;
  4982. pout.Free;
  4983. end;
  4984. if has_errors then
  4985. Halt(1);
  4986. if error_on_more and
  4987. (has_more_infos or has_warnings) then
  4988. Halt(2);
  4989. end.