ppudump.pp 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478
  1. {
  2. Copyright (c) 1998-2002 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. {$mode objfpc}
  18. {$H+}
  19. uses
  20. { do NOT add symconst or globtype to make merging easier }
  21. SysUtils,
  22. constexp,
  23. ppu,
  24. globals,
  25. tokens;
  26. const
  27. Version = 'Version 2.3.1';
  28. Title = 'PPU-Analyser';
  29. Copyright = 'Copyright (c) 1998-2007 by the Free Pascal Development Team';
  30. { verbosity }
  31. v_none = $0;
  32. v_header = $1;
  33. v_defs = $2;
  34. v_syms = $4;
  35. v_interface = $8;
  36. v_implementation = $10;
  37. // v_browser = $20;
  38. v_all = $ff;
  39. type
  40. tprocinfoflag=(
  41. { procedure has at least one assembler block }
  42. pi_has_assembler_block,
  43. { procedure does a call }
  44. pi_do_call,
  45. { procedure has a try statement = no register optimization }
  46. pi_uses_exceptions,
  47. { procedure is declared as @var(assembler), don't optimize}
  48. pi_is_assembler,
  49. { procedure contains data which needs to be finalized }
  50. pi_needs_implicit_finally,
  51. { procedure has the implicit try..finally generated }
  52. pi_has_implicit_finally,
  53. { procedure uses fpu}
  54. pi_uses_fpu,
  55. { procedure uses GOT for PIC code }
  56. pi_needs_got,
  57. { references var/proc/type/const in static symtable,
  58. i.e. not allowed for inlining from other units }
  59. pi_uses_static_symtable,
  60. { set if the procedure has to push parameters onto the stack }
  61. pi_has_stackparameter,
  62. { set if the procedure has at least one got }
  63. pi_has_goto,
  64. { calls itself recursive }
  65. pi_is_recursive,
  66. { stack frame optimization not possible (only on x86 probably) }
  67. pi_needs_stackframe,
  68. { set if the procedure has at least one register saved on the stack }
  69. pi_has_saved_regs,
  70. { dfa was generated for this proc }
  71. pi_dfaavailable
  72. );
  73. tprocinfoflags=set of tprocinfoflag;
  74. tspecialgenerictoken = (ST_LOADSETTINGS,ST_LINE,ST_COLUMN,ST_FILEINDEX);
  75. { Copied from systems.pas }
  76. tsystemcpu=
  77. (
  78. cpu_no, { 0 }
  79. cpu_i386, { 1 }
  80. cpu_m68k, { 2 }
  81. cpu_alpha, { 3 }
  82. cpu_powerpc, { 4 }
  83. cpu_sparc, { 5 }
  84. cpu_vm, { 6 }
  85. cpu_iA64, { 7 }
  86. cpu_x86_64, { 8 }
  87. cpu_mips, { 9 }
  88. cpu_arm { 10 }
  89. );
  90. var
  91. ppufile : tppufile;
  92. space : string;
  93. verbose : longint;
  94. derefdata : pbyte;
  95. derefdatalen : longint;
  96. {****************************************************************************
  97. Helper Routines
  98. ****************************************************************************}
  99. const has_errors : boolean = false;
  100. Procedure Error(const S : string);
  101. Begin
  102. Writeln(S);
  103. has_errors:=true;
  104. End;
  105. function ToStr(w:longint):String;
  106. begin
  107. Str(w,ToStr);
  108. end;
  109. Function Target2Str(w:longint):string;
  110. type
  111. { taken from systems.pas }
  112. ttarget =
  113. (
  114. target_none, { 0 }
  115. obsolete_target_i386_GO32V1,{ 1 }
  116. target_i386_GO32V2, { 2 }
  117. target_i386_linux, { 3 }
  118. target_i386_OS2, { 4 }
  119. target_i386_Win32, { 5 }
  120. target_i386_freebsd, { 6 }
  121. target_m68k_Amiga, { 7 }
  122. target_m68k_Atari, { 8 }
  123. target_m68k_Mac, { 9 }
  124. target_m68k_linux, { 10 }
  125. target_m68k_PalmOS, { 11 }
  126. target_alpha_linux, { 12 }
  127. target_powerpc_linux, { 13 }
  128. target_powerpc_macos, { 14 }
  129. target_i386_solaris, { 15 }
  130. target_i386_beos, { 16 }
  131. target_i386_netbsd, { 17 }
  132. target_m68k_netbsd, { 18 }
  133. target_i386_Netware, { 19 }
  134. target_i386_qnx, { 20 }
  135. target_i386_wdosx, { 21 }
  136. target_sparc_solaris, { 22 }
  137. target_sparc_linux, { 23 }
  138. target_i386_openbsd, { 24 }
  139. target_m68k_openbsd, { 25 }
  140. target_x86_64_linux, { 26 }
  141. target_powerpc_darwin, { 27 }
  142. target_i386_emx, { 28 }
  143. target_powerpc_netbsd, { 29 }
  144. target_powerpc_openbsd, { 30 }
  145. target_arm_linux, { 31 }
  146. target_i386_watcom, { 32 }
  147. target_powerpc_MorphOS, { 33 }
  148. target_x86_64_freebsd, { 34 }
  149. target_i386_netwlibc, { 35 }
  150. target_powerpc_Amiga, { 36 }
  151. target_x86_64_win64, { 37 }
  152. target_arm_wince, { 38 }
  153. target_ia64_win64, { 39 }
  154. target_i386_wince, { 40 }
  155. target_x86_6432_linux, { 41 }
  156. target_arm_gba, { 42 }
  157. target_powerpc64_linux, { 43 }
  158. target_i386_darwin, { 44 }
  159. target_arm_palmos, { 45 }
  160. target_powerpc64_darwin, { 46 }
  161. target_arm_nds, { 47 }
  162. target_i386_embedded, { 48 }
  163. target_m68k_embedded, { 49 }
  164. target_alpha_embedded, { 50 }
  165. target_powerpc_embedded, { 51 }
  166. target_sparc_embedded, { 52 }
  167. target_vm_embedded, { 53 }
  168. target_iA64_embedded, { 54 }
  169. target_x86_64_embedded, { 55 }
  170. target_mips_embedded, { 56 }
  171. target_arm_embedded, { 57 }
  172. target_powerpc64_embedded, { 58 }
  173. target_i386_symbian, { 59 }
  174. target_arm_symbian, { 60 }
  175. target_x86_64_darwin, { 61 }
  176. target_avr_embedded, { 62 }
  177. target_i386_haiku, { 63 }
  178. target_arm_darwin { 64 }
  179. );
  180. const
  181. Targets : array[ttarget] of string[18]=(
  182. { 0 } 'none',
  183. { 1 } 'GO32V1 (obsolete)',
  184. { 2 } 'GO32V2',
  185. { 3 } 'Linux-i386',
  186. { 4 } 'OS/2',
  187. { 5 } 'Win32',
  188. { 6 } 'FreeBSD-i386',
  189. { 7 } 'Amiga',
  190. { 8 } 'Atari',
  191. { 9 } 'MacOS-m68k',
  192. { 10 } 'Linux-m68k',
  193. { 11 } 'PalmOS-m68k',
  194. { 12 } 'Linux-alpha',
  195. { 13 } 'Linux-ppc',
  196. { 14 } 'MacOS-ppc',
  197. { 15 } 'Solaris-i386',
  198. { 16 } 'BeOS-i386',
  199. { 17 } 'NetBSD-i386',
  200. { 18 } 'NetBSD-m68k',
  201. { 19 } 'Netware-i386-clib',
  202. { 20 } 'Qnx-i386',
  203. { 21 } 'WDOSX-i386',
  204. { 22 } 'Solaris-sparc',
  205. { 23 } 'Linux-sparc',
  206. { 24 } 'OpenBSD-i386',
  207. { 25 } 'OpenBSD-m68k',
  208. { 26 } 'Linux-x86-64',
  209. { 27 } 'MacOSX-ppc',
  210. { 28 } 'OS/2 via EMX',
  211. { 29 } 'NetBSD-powerpc',
  212. { 30 } 'OpenBSD-powerpc',
  213. { 31 } 'Linux-arm',
  214. { 32 } 'Watcom-i386',
  215. { 33 } 'MorphOS-powerpc',
  216. { 34 } 'FreeBSD-x86-64',
  217. { 35 } 'Netware-i386-libc',
  218. { 36 } 'Amiga-PowerPC',
  219. { 37 } 'Win64-x64',
  220. { 38 } 'WinCE-ARM',
  221. { 39 } 'Win64-iA64',
  222. { 40 } 'WinCE-i386',
  223. { 41 } 'Linux-x64',
  224. { 42 } 'GBA-arm',
  225. { 43 } 'Linux-powerpc64',
  226. { 44 } 'Darwin-i386',
  227. { 45 } 'PalmOS-arm',
  228. { 46 } 'MacOSX-powerpc64',
  229. { 47 } 'NDS-arm',
  230. { 48 } 'Embedded-i386',
  231. { 49 } 'Embedded-m68k',
  232. { 50 } 'Embedded-alpha',
  233. { 51 } 'Embedded-powerpc',
  234. { 52 } 'Embedded-sparc',
  235. { 53 } 'Embedded-vm',
  236. { 54 } 'Embedded-iA64',
  237. { 55 } 'Embedded-x64',
  238. { 56 } 'Embedded-mips',
  239. { 57 } 'Embedded-arm',
  240. { 58 } 'Embedded-powerpc64',
  241. { 59 } 'Symbian-i386',
  242. { 60 } 'Symbian-arm',
  243. { 61 } 'MacOSX-x64',
  244. { 62 } 'Embedded-avr',
  245. { 63 } 'Haiku-i386',
  246. { 64 } 'Darwin-ARM'
  247. );
  248. begin
  249. if w<=ord(high(ttarget)) then
  250. Target2Str:=Targets[ttarget(w)]
  251. else
  252. Target2Str:='<!! Unknown target value '+tostr(w)+'>';
  253. end;
  254. Function Cpu2Str(w:longint):string;
  255. const
  256. CpuTxt : array[tsystemcpu] of string[8]=
  257. ('none','i386','m68k','alpha','powerpc','sparc','vis','ia64','x86_64','mips','arm');
  258. begin
  259. if w<=ord(high(tsystemcpu)) then
  260. Cpu2Str:=CpuTxt[tsystemcpu(w)]
  261. else
  262. Cpu2Str:='<!! Unknown cpu value '+tostr(w)+'>';
  263. end;
  264. Function Varspez2Str(w:longint):string;
  265. const
  266. varspezstr : array[0..4] of string[6]=('Value','Const','Var','Out','Hidden');
  267. begin
  268. if w<=ord(high(varspezstr)) then
  269. Varspez2Str:=varspezstr[w]
  270. else
  271. Varspez2Str:='<!! Unknown varspez value '+tostr(w)+'>';
  272. end;
  273. Function VarRegable2Str(w:longint):string;
  274. const
  275. varregableStr : array[0..4] of string[6]=('None','IntReg','FPUReg','MMReg','Addr');
  276. begin
  277. if w<=ord(high(varregablestr)) then
  278. Varregable2Str:=varregablestr[w]
  279. else
  280. Varregable2Str:='<!! Unknown regable value '+tostr(w)+'>';
  281. end;
  282. Function Visibility2Str(w:longint):string;
  283. const
  284. visibilityName : array[0..6] of string[16] = (
  285. 'hidden','strict private','private','strict protected','protected',
  286. 'public','published'
  287. );
  288. begin
  289. if w<=ord(high(visibilityName)) then
  290. result:=visibilityName[w]
  291. else
  292. result:='<!! Unknown visibility value '+tostr(w)+'>';
  293. end;
  294. function PPUFlags2Str(flags:longint):string;
  295. type
  296. tflagopt=record
  297. mask : longint;
  298. str : string[30];
  299. end;
  300. const
  301. flagopts=17;
  302. flagopt : array[1..flagopts] of tflagopt=(
  303. (mask: $1 ;str:'init'),
  304. (mask: $2 ;str:'final'),
  305. (mask: $4 ;str:'big_endian'),
  306. (mask: $8 ;str:'dbx'),
  307. // (mask: $10 ;str:'browser'),
  308. (mask: $20 ;str:'in_library'),
  309. (mask: $40 ;str:'smart_linked'),
  310. (mask: $80 ;str:'static_linked'),
  311. (mask: $100 ;str:'shared_linked'),
  312. // (mask: $200 ;str:'local_browser'),
  313. (mask: $400 ;str:'no_link'),
  314. (mask: $800 ;str:'has_resources'),
  315. (mask: $1000 ;str:'little_endian'),
  316. (mask: $2000 ;str:'release'),
  317. (mask: $4000 ;str:'local_threadvars'),
  318. (mask: $8000 ;str:'fpu_emulation_on'),
  319. (mask: $10000 ;str:'has_debug_info'),
  320. (mask: $20000 ;str:'local_symtable'),
  321. (mask: $40000 ;str:'uses_variants')
  322. );
  323. var
  324. i : longint;
  325. first : boolean;
  326. s : string;
  327. begin
  328. s:='';
  329. if flags<>0 then
  330. begin
  331. first:=true;
  332. for i:=1to flagopts do
  333. if (flags and flagopt[i].mask)<>0 then
  334. begin
  335. if first then
  336. first:=false
  337. else
  338. s:=s+', ';
  339. s:=s+flagopt[i].str;
  340. end;
  341. end
  342. else
  343. s:='none';
  344. PPUFlags2Str:=s;
  345. end;
  346. Function L0(l:longint):string;
  347. {
  348. return the string of value l, if l<10 then insert a zero, so
  349. the string is always at least 2 chars '01','02',etc
  350. }
  351. var
  352. s : string;
  353. begin
  354. Str(l,s);
  355. if l<10 then
  356. s:='0'+s;
  357. L0:=s;
  358. end;
  359. function filetimestring( t : longint) : string;
  360. {
  361. convert dos datetime t to a string YY/MM/DD HH:MM:SS
  362. }
  363. var
  364. DT : TDateTime;
  365. hsec : word;
  366. Year,Month,Day: Word;
  367. hour,min,sec : word;
  368. begin
  369. if t=-1 then
  370. begin
  371. Result := 'Not Found';
  372. exit;
  373. end;
  374. DT := FileDateToDateTime(t);
  375. DecodeTime(DT,hour,min,sec,hsec);
  376. DecodeDate(DT,year,month,day);
  377. Result := L0(Year)+'/'+L0(Month)+'/'+L0(Day)+' '+L0(Hour)+':'+L0(min)+':'+L0(sec);
  378. end;
  379. {****************************************************************************
  380. Read Routines
  381. ****************************************************************************}
  382. Procedure ReadLinkContainer(const prefix:string);
  383. {
  384. Read a serie of strings and write to the screen starting every line
  385. with prefix
  386. }
  387. function maskstr(m:longint):string;
  388. const
  389. { link options }
  390. link_none = $0;
  391. link_always = $1;
  392. link_static = $2;
  393. link_smart = $4;
  394. link_shared = $8;
  395. var
  396. s : string;
  397. begin
  398. s:='';
  399. if (m and link_always)<>0 then
  400. s:=s+'always ';
  401. if (m and link_static)<>0 then
  402. s:=s+'static ';
  403. if (m and link_smart)<>0 then
  404. s:=s+'smart ';
  405. if (m and link_shared)<>0 then
  406. s:=s+'shared ';
  407. maskstr:=s;
  408. end;
  409. var
  410. s : string;
  411. m : longint;
  412. begin
  413. while not ppufile.endofentry do
  414. begin
  415. s:=ppufile.getstring;
  416. m:=ppufile.getlongint;
  417. WriteLn(prefix,s,' (',maskstr(m),')');
  418. end;
  419. end;
  420. Procedure ReadContainer(const prefix:string);
  421. {
  422. Read a serie of strings and write to the screen starting every line
  423. with prefix
  424. }
  425. begin
  426. while not ppufile.endofentry do
  427. WriteLn(prefix,ppufile.getstring);
  428. end;
  429. procedure ReadLoadUnit;
  430. var
  431. ucrc,uintfcrc : cardinal;
  432. begin
  433. while not ppufile.EndOfEntry do
  434. begin
  435. write('Uses unit: ',ppufile.getstring);
  436. ucrc:=cardinal(ppufile.getlongint);
  437. uintfcrc:=cardinal(ppufile.getlongint);
  438. writeln(' (Crc: ',hexstr(ucrc,8),', IntfcCrc: ',hexstr(uintfcrc,8),')');
  439. end;
  440. end;
  441. Procedure ReadDerefmap;
  442. var
  443. i,mapsize : longint;
  444. begin
  445. mapsize:=ppufile.getlongint;
  446. writeln('DerefMapsize: ',mapsize);
  447. for i:=0 to mapsize-1 do
  448. writeln('DerefMap[',i,'] = ',ppufile.getstring);
  449. end;
  450. Procedure ReadImportSymbols;
  451. var
  452. extlibname : string;
  453. j,
  454. extsymcnt : longint;
  455. extsymname : string;
  456. extsymordnr : longint;
  457. extsymisvar : boolean;
  458. begin
  459. while not ppufile.endofentry do
  460. begin
  461. extlibname:=ppufile.getstring;
  462. extsymcnt:=ppufile.getlongint;
  463. writeln('External Library: ',extlibname,' (',extsymcnt,' imports)');
  464. for j:=0 to extsymcnt-1 do
  465. begin
  466. extsymname:=ppufile.getstring;
  467. extsymordnr:=ppufile.getlongint;
  468. extsymisvar:=ppufile.getbyte<>0;
  469. writeln(' ',extsymname,' (OrdNr: ',extsymordnr,' IsVar: ',extsymisvar,')');
  470. end;
  471. end;
  472. end;
  473. Procedure ReadDerefdata;
  474. begin
  475. derefdatalen:=ppufile.entrysize;
  476. if derefdatalen=0 then
  477. begin
  478. writeln('!! Error: derefdatalen=0');
  479. exit;
  480. end;
  481. Writeln('Derefdata length: ',derefdatalen);
  482. derefdata:=allocmem(derefdatalen);
  483. ppufile.getdata(derefdata^,derefdatalen);
  484. end;
  485. Procedure ReadWpoFileInfo;
  486. begin
  487. Writeln('Compiled with input whole-program optimisation from ',ppufile.getstring,' ',filetimestring(ppufile.getlongint));
  488. end;
  489. Procedure ReadAsmSymbols;
  490. type
  491. { Copied from aasmbase.pas }
  492. TAsmsymbind=(AB_NONE,AB_EXTERNAL,AB_COMMON,AB_LOCAL,AB_GLOBAL);
  493. TAsmsymtype=(AT_NONE,AT_FUNCTION,AT_DATA,AT_SECTION,AT_LABEL);
  494. var
  495. s,
  496. bindstr,
  497. typestr : string;
  498. i : longint;
  499. begin
  500. writeln(space,'Number of AsmSymbols: ',ppufile.getlongint);
  501. i:=0;
  502. while (not ppufile.endofentry) and (not ppufile.error) do
  503. begin
  504. s:=ppufile.getstring;
  505. case tasmsymbind(ppufile.getbyte) of
  506. AB_EXTERNAL :
  507. bindstr:='External';
  508. AB_COMMON :
  509. bindstr:='Common';
  510. AB_LOCAL :
  511. bindstr:='Local';
  512. AB_GLOBAL :
  513. bindstr:='Global';
  514. else
  515. bindstr:='<Error !!>'
  516. end;
  517. case tasmsymtype(ppufile.getbyte) of
  518. AT_FUNCTION :
  519. typestr:='Function';
  520. AT_DATA :
  521. typestr:='Data';
  522. AT_SECTION :
  523. typestr:='Section';
  524. AT_LABEL :
  525. typestr:='Label';
  526. else
  527. typestr:='<Error !!>'
  528. end;
  529. Writeln(space,' ',i,' : ',s,' [',bindstr,',',typestr,']');
  530. inc(i);
  531. end;
  532. end;
  533. function getexprint:Tconstexprint;
  534. begin
  535. getexprint.overflow:=false;
  536. getexprint.signed:=boolean(ppufile.getbyte);
  537. getexprint.svalue:=ppufile.getint64;
  538. end;
  539. Procedure ReadPosInfo;
  540. var
  541. info : byte;
  542. fileindex,line,column : longint;
  543. begin
  544. with ppufile do
  545. begin
  546. {
  547. info byte layout in bits:
  548. 0-1 - amount of bytes for fileindex
  549. 2-3 - amount of bytes for line
  550. 4-5 - amount of bytes for column
  551. }
  552. info:=getbyte;
  553. case (info and $03) of
  554. 0 : fileindex:=getbyte;
  555. 1 : fileindex:=getword;
  556. 2 : fileindex:=(getbyte shl 16) or getword;
  557. 3 : fileindex:=getlongint;
  558. end;
  559. case ((info shr 2) and $03) of
  560. 0 : line:=getbyte;
  561. 1 : line:=getword;
  562. 2 : line:=(getbyte shl 16) or getword;
  563. 3 : line:=getlongint;
  564. end;
  565. case ((info shr 4) and $03) of
  566. 0 : column:=getbyte;
  567. 1 : column:=getword;
  568. 2 : column:=(getbyte shl 16) or getword;
  569. 3 : column:=getlongint;
  570. end;
  571. Writeln(fileindex,' (',line,',',column,')');
  572. end;
  573. end;
  574. procedure readderef;
  575. type
  576. tdereftype = (deref_nil,
  577. deref_unit,
  578. deref_symid,
  579. deref_defid
  580. );
  581. var
  582. b : tdereftype;
  583. first : boolean;
  584. idx : longint;
  585. i,n : byte;
  586. pdata : pbyte;
  587. begin
  588. if not assigned(derefdata) then
  589. exit;
  590. first:=true;
  591. idx:=ppufile.getlongint;
  592. if (idx>derefdatalen) then
  593. begin
  594. writeln('!! Error: Deref idx ',idx,' > ',derefdatalen);
  595. exit;
  596. end;
  597. write('(',idx,') ');
  598. pdata:=@derefdata[idx];
  599. i:=0;
  600. n:=pdata[i];
  601. inc(i);
  602. if n<1 then
  603. begin
  604. writeln('!! Error: Deref len < 1');
  605. exit;
  606. end;
  607. while (i<=n) do
  608. begin
  609. if not first then
  610. write(', ')
  611. else
  612. first:=false;
  613. b:=tdereftype(pdata[i]);
  614. inc(i);
  615. case b of
  616. deref_nil :
  617. write('Nil');
  618. deref_symid :
  619. begin
  620. idx:=pdata[i] shl 24 or pdata[i+1] shl 16 or pdata[i+2] shl 8 or pdata[i+3];
  621. inc(i,4);
  622. write('SymId ',idx);
  623. end;
  624. deref_defid :
  625. begin
  626. idx:=pdata[i] shl 24 or pdata[i+1] shl 16 or pdata[i+2] shl 8 or pdata[i+3];
  627. inc(i,4);
  628. write('DefId ',idx);
  629. end;
  630. deref_unit :
  631. begin
  632. idx:=pdata[i] shl 8 or pdata[i+1];
  633. inc(i,2);
  634. write('Unit ',idx);
  635. end;
  636. else
  637. begin
  638. writeln('!! unsupported dereftyp: ',ord(b));
  639. break;
  640. end;
  641. end;
  642. end;
  643. writeln;
  644. end;
  645. procedure readpropaccesslist(const s:string);
  646. type
  647. tsltype = (sl_none,
  648. sl_load,
  649. sl_call,
  650. sl_subscript,
  651. sl_vec,
  652. sl_typeconv,
  653. sl_absolutetype
  654. );
  655. const
  656. slstr : array[tsltype] of string[12] = ('',
  657. 'load',
  658. 'call',
  659. 'subscript',
  660. 'vec',
  661. 'typeconv',
  662. 'absolutetype'
  663. );
  664. var
  665. sl : tsltype;
  666. begin
  667. readderef;
  668. repeat
  669. sl:=tsltype(ppufile.getbyte);
  670. if sl=sl_none then
  671. break;
  672. write(s,'(',slstr[sl],') ');
  673. case sl of
  674. sl_call,
  675. sl_load,
  676. sl_subscript :
  677. readderef;
  678. sl_absolutetype,
  679. sl_typeconv :
  680. readderef;
  681. sl_vec :
  682. begin
  683. writeln(ppufile.getlongint);
  684. readderef;
  685. end;
  686. end;
  687. until false;
  688. end;
  689. procedure readsymoptions;
  690. type
  691. { symbol options }
  692. tsymoption=(sp_none,
  693. sp_static,
  694. sp_hint_deprecated,
  695. sp_hint_platform,
  696. sp_hint_library,
  697. sp_hint_unimplemented,
  698. sp_hint_experimental,
  699. sp_has_overloaded,
  700. sp_internal, { internal symbol, not reported as unused }
  701. sp_implicitrename,
  702. sp_generic_para
  703. );
  704. tsymoptions=set of tsymoption;
  705. tsymopt=record
  706. mask : tsymoption;
  707. str : string[30];
  708. end;
  709. const
  710. symopts=10;
  711. symopt : array[1..symopts] of tsymopt=(
  712. (mask:sp_static; str:'Static'),
  713. (mask:sp_hint_deprecated;str:'Hint Deprecated'),
  714. (mask:sp_hint_platform; str:'Hint Platform'),
  715. (mask:sp_hint_library; str:'Hint Library'),
  716. (mask:sp_hint_unimplemented;str:'Hint Unimplemented'),
  717. (mask:sp_hint_experimental;str:'Hint Experimental'),
  718. (mask:sp_has_overloaded; str:'Has overloaded'),
  719. (mask:sp_internal; str:'Internal'),
  720. (mask:sp_implicitrename; str:'Implicit Rename'),
  721. (mask:sp_generic_para; str:'Generic Parameter')
  722. );
  723. var
  724. symoptions : tsymoptions;
  725. i : longint;
  726. first : boolean;
  727. begin
  728. ppufile.getsmallset(symoptions);
  729. if symoptions<>[] then
  730. begin
  731. first:=true;
  732. for i:=1to symopts do
  733. if (symopt[i].mask in symoptions) then
  734. begin
  735. if first then
  736. first:=false
  737. else
  738. write(', ');
  739. write(symopt[i].str);
  740. end;
  741. end;
  742. writeln;
  743. end;
  744. procedure readcommonsym(const s:string);
  745. begin
  746. writeln(space,'** Symbol Id ',ppufile.getlongint,' **');
  747. writeln(space,s,ppufile.getstring);
  748. write (space,' File Pos : ');
  749. readposinfo;
  750. writeln(space,' Visibility : ',Visibility2Str(ppufile.getbyte));
  751. write (space,' SymOptions : ');
  752. readsymoptions;
  753. end;
  754. type
  755. { flags for a definition }
  756. tdefoption=(df_none,
  757. { type is unique, i.e. declared with type = type <tdef>; }
  758. df_unique,
  759. { type is a generic }
  760. df_generic,
  761. { type is a specialization of a generic type }
  762. df_specialization,
  763. { def has been copied from another def so symtable is not owned }
  764. df_copied_def
  765. );
  766. tdefoptions=set of tdefoption;
  767. var
  768. { needed during tobjectdef parsing... }
  769. current_defoptions : tdefoptions;
  770. procedure readcommondef(const s:string);
  771. type
  772. tdefstate=(ds_none,
  773. ds_vmt_written,
  774. ds_rtti_table_used,
  775. ds_init_table_used,
  776. ds_rtti_table_written,
  777. ds_init_table_written,
  778. ds_dwarf_dbg_info_used,
  779. ds_dwarf_dbg_info_written
  780. );
  781. tdefstates=set of tdefstate;
  782. tdefopt=record
  783. mask : tdefoption;
  784. str : string[30];
  785. end;
  786. tdefstateinfo=record
  787. mask : tdefstate;
  788. str : string[30];
  789. end;
  790. const
  791. defopt : array[1..ord(high(tdefoption))] of tdefopt=(
  792. (mask:df_unique; str:'Unique Type'),
  793. (mask:df_generic; str:'Generic'),
  794. (mask:df_specialization; str:'Specialization'),
  795. (mask:df_copied_def; str:'Copied Typedef')
  796. );
  797. defstate : array[1..ord(high(tdefstate))] of tdefstateinfo=(
  798. (mask:ds_vmt_written; str:'VMT Written'),
  799. (mask:ds_rtti_table_used; str:'RTTITable Used'),
  800. (mask:ds_init_table_used; str:'InitTable Used'),
  801. (mask:ds_rtti_table_written; str:'RTTITable Written'),
  802. (mask:ds_init_table_written; str:'InitTable Written'),
  803. (mask:ds_dwarf_dbg_info_used; str:'Dwarf DbgInfo Used'),
  804. (mask:ds_dwarf_dbg_info_written;str:'Dwarf DbgInfo Written')
  805. );
  806. var
  807. defoptions : tdefoptions;
  808. defstates : tdefstates;
  809. i : longint;
  810. first : boolean;
  811. tokenbufsize : longint;
  812. tokenbuf : pbyte;
  813. begin
  814. writeln(space,'** Definition Id ',ppufile.getlongint,' **');
  815. writeln(space,s);
  816. write (space,' Type symbol : ');
  817. readderef;
  818. write (space,' DefOptions : ');
  819. ppufile.getsmallset(defoptions);
  820. if defoptions<>[] then
  821. begin
  822. first:=true;
  823. for i:=1to high(defopt) do
  824. if (defopt[i].mask in defoptions) then
  825. begin
  826. if first then
  827. first:=false
  828. else
  829. write(', ');
  830. write(defopt[i].str);
  831. end;
  832. end;
  833. writeln;
  834. write (space,' DefStates : ');
  835. ppufile.getsmallset(defstates);
  836. if defstates<>[] then
  837. begin
  838. first:=true;
  839. for i:=1to high(defstate) do
  840. if (defstate[i].mask in defstates) then
  841. begin
  842. if first then
  843. first:=false
  844. else
  845. write(', ');
  846. write(defstate[i].str);
  847. end;
  848. end;
  849. writeln;
  850. if df_generic in defoptions then
  851. begin
  852. tokenbufsize:=ppufile.getlongint;
  853. writeln(space,' Tokenbuffer size : ',tokenbufsize);
  854. tokenbuf:=allocmem(tokenbufsize);
  855. ppufile.getdata(tokenbuf^,tokenbufsize);
  856. i:=0;
  857. write(space,' Tokens: ');
  858. while i<tokenbufsize do
  859. begin
  860. if ttoken(tokenbuf[i])<>_GENERICSPECIALTOKEN then
  861. write(arraytokeninfo[ttoken(tokenbuf[i])].str);
  862. case ttoken(tokenbuf[i]) of
  863. _CWCHAR,
  864. _CWSTRING :
  865. begin
  866. inc(i);
  867. {
  868. replaytokenbuf.read(wlen,sizeof(SizeInt));
  869. setlengthwidestring(patternw,wlen);
  870. replaytokenbuf.read(patternw^.data^,patternw^.len*sizeof(tcompilerwidechar));
  871. pattern:='';
  872. }
  873. end;
  874. _CCHAR,
  875. _CSTRING,
  876. _INTCONST,
  877. _REALNUMBER :
  878. begin
  879. inc(i);
  880. {
  881. replaytokenbuf.read(pattern[0],1);
  882. replaytokenbuf.read(pattern[1],length(pattern));
  883. orgpattern:='';
  884. }
  885. end;
  886. _ID :
  887. begin
  888. inc(i);
  889. inc(i);
  890. write(' ',pshortstring(@tokenbuf[i])^);
  891. inc(i,tokenbuf[i]+1);
  892. {
  893. replaytokenbuf.read(orgpattern[0],1);
  894. replaytokenbuf.read(orgpattern[1],length(orgpattern));
  895. pattern:=upper(orgpattern);
  896. }
  897. end;
  898. _GENERICSPECIALTOKEN:
  899. begin
  900. inc(i);
  901. case tspecialgenerictoken(tokenbuf[i]) of
  902. ST_LOADSETTINGS:
  903. begin
  904. inc(i);
  905. write('Settings');
  906. inc(i,sizeof(tsettings));
  907. end;
  908. ST_LINE:
  909. begin
  910. inc(i);
  911. write('Line: ',pdword(@tokenbuf[i])^);
  912. inc(i,4);
  913. end;
  914. ST_COLUMN:
  915. begin
  916. inc(i);
  917. write('Col: ',pword(@tokenbuf[i])^);
  918. inc(i,2);
  919. end;
  920. ST_FILEINDEX:
  921. begin
  922. inc(i);
  923. write('File: ',pword(@tokenbuf[i])^);
  924. inc(i,2);
  925. end;
  926. end;
  927. {
  928. replaytokenbuf.read(specialtoken,1);
  929. case specialtoken of
  930. ST_LOADSETTINGS:
  931. begin
  932. replaytokenbuf.read(current_settings,sizeof(current_settings));
  933. end
  934. else
  935. internalerror(2006103010);
  936. end;
  937. continue;
  938. }
  939. end;
  940. else
  941. inc(i);
  942. end;
  943. if i<tokenbufsize then
  944. write(',');
  945. end;
  946. writeln;
  947. freemem(tokenbuf);
  948. end;
  949. if df_specialization in defoptions then
  950. begin
  951. write (space,' Orig. GenericDef : ');
  952. readderef;
  953. end;
  954. current_defoptions:=defoptions;
  955. end;
  956. { Read abstract procdef and return if inline procdef }
  957. type
  958. tproccalloption=(pocall_none,
  959. { procedure uses C styled calling }
  960. pocall_cdecl,
  961. { C++ calling conventions }
  962. pocall_cppdecl,
  963. { Far16 for OS/2 }
  964. pocall_far16,
  965. { Old style FPC default calling }
  966. pocall_oldfpccall,
  967. { Procedure has compiler magic}
  968. pocall_internproc,
  969. { procedure is a system call, applies e.g. to MorphOS and PalmOS }
  970. pocall_syscall,
  971. { pascal standard left to right }
  972. pocall_pascal,
  973. { procedure uses register (fastcall) calling }
  974. pocall_register,
  975. { safe call calling conventions }
  976. pocall_safecall,
  977. { procedure uses stdcall call }
  978. pocall_stdcall,
  979. { Special calling convention for cpus without a floating point
  980. unit. Floating point numbers are passed in integer registers
  981. instead of floating point registers. Depending on the other
  982. available calling conventions available for the cpu
  983. this replaces either pocall_fastcall or pocall_stdcall.
  984. }
  985. pocall_softfloat,
  986. { Metrowerks Pascal. Special case on Mac OS (X): passes all }
  987. { constant records by reference. }
  988. pocall_mwpascal
  989. );
  990. tproccalloptions = set of tproccalloption;
  991. tproctypeoption=(potype_none,
  992. potype_proginit, { Program initialization }
  993. potype_unitinit, { unit initialization }
  994. potype_unitfinalize, { unit finalization }
  995. potype_constructor, { Procedure is a constructor }
  996. potype_destructor, { Procedure is a destructor }
  997. potype_operator, { Procedure defines an operator }
  998. potype_procedure,
  999. potype_function
  1000. );
  1001. tproctypeoptions=set of tproctypeoption;
  1002. tprocoption=(po_none,
  1003. po_classmethod, { class method }
  1004. po_virtualmethod, { Procedure is a virtual method }
  1005. po_abstractmethod, { Procedure is an abstract method }
  1006. po_finalmethod, { Procedure is a final method }
  1007. po_staticmethod, { static method }
  1008. po_overridingmethod, { method with override directive }
  1009. po_methodpointer, { method pointer, only in procvardef, also used for 'with object do' }
  1010. po_interrupt, { Procedure is an interrupt handler }
  1011. po_iocheck, { IO checking should be done after a call to the procedure }
  1012. po_assembler, { Procedure is written in assembler }
  1013. po_msgstr, { method for string message handling }
  1014. po_msgint, { method for int message handling }
  1015. po_exports, { Procedure has export directive (needed for OS/2) }
  1016. po_external, { Procedure is external (in other object or lib)}
  1017. po_overload, { procedure is declared with overload directive }
  1018. po_varargs, { printf like arguments }
  1019. po_internconst, { procedure has constant evaluator intern }
  1020. { flag that only the address of a method is returned and not a full methodpointer }
  1021. po_addressonly,
  1022. { procedure is exported }
  1023. po_public,
  1024. { calling convention is specified explicitly }
  1025. po_hascallingconvention,
  1026. { reintroduce flag }
  1027. po_reintroduce,
  1028. { location of parameters is given explicitly as it is necessary for some syscall
  1029. conventions like that one of MorphOS }
  1030. po_explicitparaloc,
  1031. { no stackframe will be generated, used by lowlevel assembler like get_frame }
  1032. po_nostackframe,
  1033. po_has_mangledname,
  1034. po_has_public_name,
  1035. po_forward,
  1036. po_global,
  1037. po_has_inlininginfo,
  1038. { The different kind of syscalls on MorphOS }
  1039. po_syscall_legacy,
  1040. po_syscall_sysv,
  1041. po_syscall_basesysv,
  1042. po_syscall_sysvbase,
  1043. po_syscall_r12base,
  1044. po_local,
  1045. { Procedure can be inlined }
  1046. po_inline,
  1047. { Procedure is used for internal compiler calls }
  1048. po_compilerproc,
  1049. { importing }
  1050. po_has_importdll,
  1051. po_has_importname,
  1052. po_kylixlocal,
  1053. po_dispid,
  1054. { weakly linked (i.e., may or may not exist at run time) }
  1055. po_weakexternal
  1056. );
  1057. tprocoptions=set of tprocoption;
  1058. procedure read_abstract_proc_def(var proccalloption:tproccalloption;var procoptions:tprocoptions);
  1059. type
  1060. tproccallopt=record
  1061. mask : tproccalloption;
  1062. str : string[30];
  1063. end;
  1064. tproctypeopt=record
  1065. mask : tproctypeoption;
  1066. str : string[30];
  1067. end;
  1068. tprocopt=record
  1069. mask : tprocoption;
  1070. str : string[30];
  1071. end;
  1072. const
  1073. proccalloptionStr : array[tproccalloption] of string[14]=('',
  1074. 'CDecl',
  1075. 'CPPDecl',
  1076. 'Far16',
  1077. 'OldFPCCall',
  1078. 'InternProc',
  1079. 'SysCall',
  1080. 'Pascal',
  1081. 'Register',
  1082. 'SafeCall',
  1083. 'StdCall',
  1084. 'SoftFloat',
  1085. 'MWPascal'
  1086. );
  1087. proctypeopt : array[1..ord(high(tproctypeoption))] of tproctypeopt=(
  1088. (mask:potype_proginit; str:'ProgInit'),
  1089. (mask:potype_unitinit; str:'UnitInit'),
  1090. (mask:potype_unitfinalize;str:'UnitFinalize'),
  1091. (mask:potype_constructor; str:'Constructor'),
  1092. (mask:potype_destructor; str:'Destructor'),
  1093. (mask:potype_operator; str:'Operator'),
  1094. (mask:potype_procedure; str:'Procedure'),
  1095. (mask:potype_function; str:'Function')
  1096. );
  1097. procopt : array[1..ord(high(tprocoption))] of tprocopt=(
  1098. (mask:po_classmethod; str:'ClassMethod'),
  1099. (mask:po_virtualmethod; str:'VirtualMethod'),
  1100. (mask:po_abstractmethod; str:'AbstractMethod'),
  1101. (mask:po_finalmethod; str:'FinalMethod'),
  1102. (mask:po_staticmethod; str:'StaticMethod'),
  1103. (mask:po_overridingmethod;str:'OverridingMethod'),
  1104. (mask:po_methodpointer; str:'MethodPointer'),
  1105. (mask:po_interrupt; str:'Interrupt'),
  1106. (mask:po_iocheck; str:'IOCheck'),
  1107. (mask:po_assembler; str:'Assembler'),
  1108. (mask:po_msgstr; str:'MsgStr'),
  1109. (mask:po_msgint; str:'MsgInt'),
  1110. (mask:po_exports; str:'Exports'),
  1111. (mask:po_external; str:'External'),
  1112. (mask:po_overload; str:'Overload'),
  1113. (mask:po_varargs; str:'VarArgs'),
  1114. (mask:po_internconst; str:'InternConst'),
  1115. (mask:po_addressonly; str:'AddressOnly'),
  1116. (mask:po_public; str:'Public'),
  1117. (mask:po_hascallingconvention;str:'HasCallingConvention'),
  1118. (mask:po_reintroduce; str:'ReIntroduce'),
  1119. (mask:po_explicitparaloc; str:'ExplicitParaloc'),
  1120. (mask:po_nostackframe; str:'NoStackFrame'),
  1121. (mask:po_has_mangledname; str:'HasMangledName'),
  1122. (mask:po_has_public_name; str:'HasPublicName'),
  1123. (mask:po_forward; str:'Forward'),
  1124. (mask:po_global; str:'Global'),
  1125. (mask:po_has_inlininginfo;str:'HasInliningInfo'),
  1126. (mask:po_syscall_legacy; str:'SyscallLegacy'),
  1127. (mask:po_syscall_sysv; str:'SyscallSysV'),
  1128. (mask:po_syscall_basesysv;str:'SyscallBaseSysV'),
  1129. (mask:po_syscall_sysvbase;str:'SyscallSysVBase'),
  1130. (mask:po_syscall_r12base; str:'SyscallR12Base'),
  1131. (mask:po_local; str:'Local'),
  1132. (mask:po_inline; str:'Inline'),
  1133. (mask:po_compilerproc; str:'CompilerProc'),
  1134. (mask:po_has_importdll; str:'HasImportDLL'),
  1135. (mask:po_has_importname; str:'HasImportName'),
  1136. (mask:po_kylixlocal; str:'KylixLocal'),
  1137. (mask:po_dispid; str:'DispId'),
  1138. (mask:po_weakexternal; str:'WeakExternal')
  1139. );
  1140. var
  1141. proctypeoption : tproctypeoption;
  1142. i : longint;
  1143. first : boolean;
  1144. tempbuf : array[0..255] of byte;
  1145. begin
  1146. write(space,' Return type : ');
  1147. readderef;
  1148. writeln(space,' Fpu used : ',ppufile.getbyte);
  1149. proctypeoption:=tproctypeoption(ppufile.getbyte);
  1150. write(space,' TypeOption : ');
  1151. first:=true;
  1152. for i:=1 to high(proctypeopt) do
  1153. if (proctypeopt[i].mask=proctypeoption) then
  1154. begin
  1155. if first then
  1156. first:=false
  1157. else
  1158. write(', ');
  1159. write(proctypeopt[i].str);
  1160. end;
  1161. writeln;
  1162. proccalloption:=tproccalloption(ppufile.getbyte);
  1163. writeln(space,' CallOption : ',proccalloptionStr[proccalloption]);
  1164. ppufile.getnormalset(procoptions);
  1165. if procoptions<>[] then
  1166. begin
  1167. write(space,' Options : ');
  1168. first:=true;
  1169. for i:=1 to high(procopt) do
  1170. if (procopt[i].mask in procoptions) then
  1171. begin
  1172. if first then
  1173. first:=false
  1174. else
  1175. write(', ');
  1176. write(procopt[i].str);
  1177. end;
  1178. writeln;
  1179. end;
  1180. if (po_explicitparaloc in procoptions) then
  1181. begin
  1182. i:=ppufile.getbyte;
  1183. ppufile.getdata(tempbuf,i);
  1184. end;
  1185. end;
  1186. type
  1187. tvaroption=(vo_none,
  1188. vo_is_external,
  1189. vo_is_dll_var,
  1190. vo_is_thread_var,
  1191. vo_has_local_copy,
  1192. vo_is_const, { variable is declared as const (parameter) and can't be written to }
  1193. vo_is_public,
  1194. vo_is_high_para,
  1195. vo_is_funcret,
  1196. vo_is_self,
  1197. vo_is_vmt,
  1198. vo_is_result, { special result variable }
  1199. vo_is_parentfp,
  1200. vo_is_loop_counter, { used to detect assignments to loop counter }
  1201. vo_is_hidden_para,
  1202. vo_has_explicit_paraloc,
  1203. vo_is_syscall_lib,
  1204. vo_has_mangledname,
  1205. vo_is_typed_const,
  1206. vo_is_range_check,
  1207. vo_is_overflow_check,
  1208. vo_is_typinfo_para,
  1209. vo_is_weak_external
  1210. );
  1211. tvaroptions=set of tvaroption;
  1212. { register variable }
  1213. tvarregable=(vr_none,
  1214. vr_intreg,
  1215. vr_fpureg,
  1216. vr_mmreg,
  1217. { does not mean "needs address register", but "if it's a parameter which is }
  1218. { passed by reference, then its address can be put in a register }
  1219. vr_addr
  1220. );
  1221. procedure readabstractvarsym(const s:string;var varoptions:tvaroptions);
  1222. type
  1223. tvaropt=record
  1224. mask : tvaroption;
  1225. str : string[30];
  1226. end;
  1227. const
  1228. varopt : array[1..ord(high(tvaroption))] of tvaropt=(
  1229. (mask:vo_is_external; str:'External'),
  1230. (mask:vo_is_dll_var; str:'DLLVar'),
  1231. (mask:vo_is_thread_var; str:'ThreadVar'),
  1232. (mask:vo_has_local_copy; str:'HasLocalCopy'),
  1233. (mask:vo_is_const; str:'Constant'),
  1234. (mask:vo_is_public; str:'Public'),
  1235. (mask:vo_is_high_para; str:'HighValue'),
  1236. (mask:vo_is_funcret; str:'Funcret'),
  1237. (mask:vo_is_self; str:'Self'),
  1238. (mask:vo_is_vmt; str:'VMT'),
  1239. (mask:vo_is_result; str:'Result'),
  1240. (mask:vo_is_parentfp; str:'ParentFP'),
  1241. (mask:vo_is_loop_counter; str:'LoopCounter'),
  1242. (mask:vo_is_hidden_para; str:'Hidden'),
  1243. (mask:vo_has_explicit_paraloc;str:'ExplicitParaloc'),
  1244. (mask:vo_is_syscall_lib; str:'SysCallLib'),
  1245. (mask:vo_has_mangledname; str:'HasMangledName'),
  1246. (mask:vo_is_typed_const; str:'TypedConst'),
  1247. (mask:vo_is_range_check; str:'RangeCheckSwitch'),
  1248. (mask:vo_is_overflow_check; str:'OverflowCheckSwitch'),
  1249. (mask:vo_is_typinfo_para; str:'TypeInfo'),
  1250. (mask:vo_is_weak_external;str:'WeakExternal')
  1251. );
  1252. var
  1253. i : longint;
  1254. first : boolean;
  1255. begin
  1256. readcommonsym(s);
  1257. writeln(space,' Spez : ',Varspez2Str(ppufile.getbyte));
  1258. writeln(space,' Regable : ',Varregable2Str(ppufile.getbyte));
  1259. writeln(space,' Addr Taken : ',(ppufile.getbyte<>0));
  1260. write (space,' Var Type : ');
  1261. readderef;
  1262. ppufile.getsmallset(varoptions);
  1263. if varoptions<>[] then
  1264. begin
  1265. write(space,' Options : ');
  1266. first:=true;
  1267. for i:=1 to high(varopt) do
  1268. if (varopt[i].mask in varoptions) then
  1269. begin
  1270. if first then
  1271. first:=false
  1272. else
  1273. write(', ');
  1274. write(varopt[i].str);
  1275. end;
  1276. writeln;
  1277. end;
  1278. end;
  1279. procedure readobjectdefoptions;
  1280. type
  1281. tobjectoption=(oo_none,
  1282. oo_is_forward, { the class is only a forward declared yet }
  1283. oo_is_abstract, { the class is abstract - only descendants can be used }
  1284. oo_is_sealed, { the class is sealed - can't have descendants }
  1285. oo_has_virtual, { the object/class has virtual methods }
  1286. oo_has_private,
  1287. oo_has_protected,
  1288. oo_has_strictprivate,
  1289. oo_has_strictprotected,
  1290. oo_has_constructor, { the object/class has a constructor }
  1291. oo_has_destructor, { the object/class has a destructor }
  1292. oo_has_vmt, { the object/class has a vmt }
  1293. oo_has_msgstr,
  1294. oo_has_msgint,
  1295. oo_can_have_published,{ the class has rtti, i.e. you can publish properties }
  1296. oo_has_default_property,
  1297. oo_has_valid_guid
  1298. );
  1299. tobjectoptions=set of tobjectoption;
  1300. tsymopt=record
  1301. mask : tobjectoption;
  1302. str : string[30];
  1303. end;
  1304. const
  1305. symopt : array[1..ord(high(tobjectoption))] of tsymopt=(
  1306. (mask:oo_is_forward; str:'IsForward'),
  1307. (mask:oo_is_abstract; str:'IsAbstract'),
  1308. (mask:oo_is_sealed; str:'IsSealed'),
  1309. (mask:oo_has_virtual; str:'HasVirtual'),
  1310. (mask:oo_has_private; str:'HasPrivate'),
  1311. (mask:oo_has_protected; str:'HasProtected'),
  1312. (mask:oo_has_strictprivate; str:'HasStrictPrivate'),
  1313. (mask:oo_has_strictprotected;str:'HasStrictProtected'),
  1314. (mask:oo_has_constructor; str:'HasConstructor'),
  1315. (mask:oo_has_destructor; str:'HasDestructor'),
  1316. (mask:oo_has_vmt; str:'HasVMT'),
  1317. (mask:oo_has_msgstr; str:'HasMsgStr'),
  1318. (mask:oo_has_msgint; str:'HasMsgInt'),
  1319. (mask:oo_can_have_published; str:'CanHavePublished'),
  1320. (mask:oo_has_default_property;str:'HasDefaultProperty'),
  1321. (mask:oo_has_valid_guid; str:'HasValidGUID')
  1322. );
  1323. var
  1324. symoptions : tobjectoptions;
  1325. i : longint;
  1326. first : boolean;
  1327. begin
  1328. ppufile.getsmallset(symoptions);
  1329. if symoptions<>[] then
  1330. begin
  1331. first:=true;
  1332. for i:=1 to high(symopt) do
  1333. if (symopt[i].mask in symoptions) then
  1334. begin
  1335. if first then
  1336. first:=false
  1337. else
  1338. write(', ');
  1339. write(symopt[i].str);
  1340. end;
  1341. end;
  1342. writeln;
  1343. end;
  1344. procedure readarraydefoptions;
  1345. type
  1346. tarraydefoption=(ado_none,
  1347. ado_IsConvertedPointer,
  1348. ado_IsDynamicArray,
  1349. ado_IsVariant,
  1350. ado_IsConstructor,
  1351. ado_IsArrayOfConst,
  1352. ado_IsConstString,
  1353. ado_IsBitPacked
  1354. );
  1355. tarraydefoptions=set of tarraydefoption;
  1356. tsymopt=record
  1357. mask : tarraydefoption;
  1358. str : string[30];
  1359. end;
  1360. const
  1361. symopt : array[1..ord(high(tarraydefoption))] of tsymopt=(
  1362. (mask:ado_IsConvertedPointer;str:'ConvertedPointer'),
  1363. (mask:ado_IsDynamicArray; str:'IsDynamicArray'),
  1364. (mask:ado_IsVariant; str:'IsVariant'),
  1365. (mask:ado_IsConstructor; str:'IsConstructor'),
  1366. (mask:ado_IsArrayOfConst; str:'ArrayOfConst'),
  1367. (mask:ado_IsConstString; str:'ConstString'),
  1368. (mask:ado_IsBitPacked; str:'BitPacked')
  1369. );
  1370. var
  1371. symoptions : tarraydefoptions;
  1372. i : longint;
  1373. first : boolean;
  1374. begin
  1375. ppufile.getsmallset(symoptions);
  1376. if symoptions<>[] then
  1377. begin
  1378. first:=true;
  1379. for i:=1 to high(symopt) do
  1380. if (symopt[i].mask in symoptions) then
  1381. begin
  1382. if first then
  1383. first:=false
  1384. else
  1385. write(', ');
  1386. write(symopt[i].str);
  1387. end;
  1388. end;
  1389. writeln;
  1390. end;
  1391. procedure readnodetree;
  1392. var
  1393. l : longint;
  1394. p : pointer;
  1395. begin
  1396. with ppufile do
  1397. begin
  1398. if space<>'' then
  1399. Writeln(space,'------ nodetree ------');
  1400. if readentry=ibnodetree then
  1401. begin
  1402. l:=entrysize;
  1403. Writeln(space,'Tree size : ',l);
  1404. { Read data to prevent error that entry is not completly read }
  1405. getmem(p,l);
  1406. getdata(p^,l);
  1407. freemem(p);
  1408. end
  1409. else
  1410. begin
  1411. Writeln('!! ibnodetree not found');
  1412. end;
  1413. end;
  1414. end;
  1415. {****************************************************************************
  1416. Read Symbols Part
  1417. ****************************************************************************}
  1418. procedure readsymbols(const s:string);
  1419. type
  1420. pguid = ^tguid;
  1421. tguid = packed record
  1422. D1: LongWord;
  1423. D2: Word;
  1424. D3: Word;
  1425. D4: array[0..7] of Byte;
  1426. end;
  1427. absolutetyp = (tovar,toasm,toaddr);
  1428. tconsttyp = (constnone,
  1429. constord,conststring,constreal,
  1430. constset,constpointer,constnil,
  1431. constresourcestring,constwstring,constguid
  1432. );
  1433. var
  1434. b : byte;
  1435. pc : pchar;
  1436. i,j,len : longint;
  1437. guid : tguid;
  1438. tempbuf : array[0..127] of char;
  1439. varoptions : tvaroptions;
  1440. begin
  1441. with ppufile do
  1442. begin
  1443. if space<>'' then
  1444. Writeln(space,'------ ',s,' ------');
  1445. if readentry=ibstartsyms then
  1446. begin
  1447. Writeln(space,'Symtable datasize : ',getlongint);
  1448. Writeln(space,'Symtable alignment: ',getlongint);
  1449. end
  1450. else
  1451. Writeln('!! ibstartsym not found');
  1452. repeat
  1453. b:=readentry;
  1454. case b of
  1455. ibunitsym :
  1456. readcommonsym('Unit symbol ');
  1457. iblabelsym :
  1458. readcommonsym('Label symbol ');
  1459. ibtypesym :
  1460. begin
  1461. readcommonsym('Type symbol ');
  1462. write(space,' Result Type : ');
  1463. readderef;
  1464. end;
  1465. ibprocsym :
  1466. begin
  1467. readcommonsym('Procedure symbol ');
  1468. len:=ppufile.getword;
  1469. for i:=1 to len do
  1470. begin
  1471. write(space,' Definition : ');
  1472. readderef;
  1473. end;
  1474. end;
  1475. ibconstsym :
  1476. begin
  1477. readcommonsym('Constant symbol ');
  1478. b:=getbyte;
  1479. case tconsttyp(b) of
  1480. constord :
  1481. begin
  1482. write (space,' OrdinalType : ');
  1483. readderef;
  1484. writeln(space,' Value : ',constexp.tostr(getexprint));
  1485. end;
  1486. constpointer :
  1487. begin
  1488. write (space,' PointerType : ');
  1489. readderef;
  1490. writeln(space,' Value : ',getlongint)
  1491. end;
  1492. conststring,
  1493. constresourcestring :
  1494. begin
  1495. len:=getlongint;
  1496. getmem(pc,len+1);
  1497. getdata(pc^,len);
  1498. (pc+len)^:= #0;
  1499. writeln(space,' Length : ',len);
  1500. writeln(space,' Value : "',pc,'"');
  1501. freemem(pc,len+1);
  1502. end;
  1503. constreal :
  1504. writeln(space,' Value : ',getreal);
  1505. constset :
  1506. begin
  1507. write (space,' Set Type : ');
  1508. readderef;
  1509. for i:=1to 4 do
  1510. begin
  1511. write (space,' Value : ');
  1512. for j:=1to 8 do
  1513. begin
  1514. if j>1 then
  1515. write(',');
  1516. write(hexstr(getbyte,2));
  1517. end;
  1518. writeln;
  1519. end;
  1520. end;
  1521. constwstring:
  1522. begin
  1523. end;
  1524. constguid:
  1525. begin
  1526. getdata(guid,sizeof(guid));
  1527. write (space,' IID String: {',hexstr(guid.d1,8),'-',hexstr(guid.d2,4),'-',hexstr(guid.d3,4),'-');
  1528. for i:=0 to 7 do
  1529. begin
  1530. write(hexstr(guid.d4[i],2));
  1531. if i=1 then write('-');
  1532. end;
  1533. writeln('}');
  1534. end
  1535. else
  1536. Writeln ('!! Invalid unit format : Invalid const type encountered: ',b);
  1537. end;
  1538. end;
  1539. ibabsolutevarsym :
  1540. begin
  1541. readabstractvarsym('Absolute variable symbol ',varoptions);
  1542. Write (space,' Relocated to ');
  1543. b:=getbyte;
  1544. case absolutetyp(b) of
  1545. tovar :
  1546. readpropaccesslist(space+' Sym : ');
  1547. toasm :
  1548. Writeln('Assembler name : ',getstring);
  1549. toaddr :
  1550. begin
  1551. Write('Address : ',getlongint);
  1552. if tsystemcpu(ppufile.header.cpu)=cpu_i386 then
  1553. WriteLn(' (Far: ',getbyte<>0,')');
  1554. end;
  1555. else
  1556. Writeln ('!! Invalid unit format : Invalid absolute type encountered: ',b);
  1557. end;
  1558. end;
  1559. ibfieldvarsym :
  1560. begin
  1561. readabstractvarsym('Field Variable symbol ',varoptions);
  1562. writeln(space,' Address : ',getaint);
  1563. end;
  1564. ibstaticvarsym :
  1565. begin
  1566. readabstractvarsym('Global Variable symbol ',varoptions);
  1567. write (space,' DefaultConst : ');
  1568. readderef;
  1569. if (vo_has_mangledname in varoptions) then
  1570. writeln(space,' Mangledname : ',getstring);
  1571. end;
  1572. iblocalvarsym :
  1573. begin
  1574. readabstractvarsym('Local Variable symbol ',varoptions);
  1575. write (space,' DefaultConst : ');
  1576. readderef;
  1577. end;
  1578. ibparavarsym :
  1579. begin
  1580. readabstractvarsym('Parameter Variable symbol ',varoptions);
  1581. write (space,' DefaultConst : ');
  1582. readderef;
  1583. writeln(space,' ParaNr : ',getword);
  1584. writeln(space,' VarState : ',getbyte);
  1585. if (vo_has_explicit_paraloc in varoptions) then
  1586. begin
  1587. i:=getbyte;
  1588. getdata(tempbuf,i);
  1589. end;
  1590. end;
  1591. ibenumsym :
  1592. begin
  1593. readcommonsym('Enumeration symbol ');
  1594. write (space,' Definition : ');
  1595. readderef;
  1596. writeln(space,' Value : ',getlongint);
  1597. end;
  1598. ibsyssym :
  1599. begin
  1600. readcommonsym('Internal system symbol ');
  1601. writeln(space,' Internal Nr : ',getlongint);
  1602. end;
  1603. ibmacrosym :
  1604. begin
  1605. readcommonsym('Macro symbol ');
  1606. writeln(space,' Name: ',getstring);
  1607. writeln(space,' Defined: ',getbyte);
  1608. writeln(space,' Compiler var: ',getbyte);
  1609. len:=getlongint;
  1610. writeln(space,' Value length: ',len);
  1611. if len > 0 then
  1612. begin
  1613. getmem(pc,len+1);
  1614. getdata(pc^,len);
  1615. (pc+len)^:= #0;
  1616. writeln(space,' Value: "',pc,'"');
  1617. freemem(pc,len+1);
  1618. end;
  1619. end;
  1620. ibpropertysym :
  1621. begin
  1622. readcommonsym('Property ');
  1623. i:=getlongint;
  1624. writeln(space,' PropOptions : ',i);
  1625. write (space,' OverrideProp : ');
  1626. readderef;
  1627. write (space,' Prop Type : ');
  1628. readderef;
  1629. writeln(space,' Index : ',getlongint);
  1630. writeln(space,' Default : ',getlongint);
  1631. write (space,' Index Type : ');
  1632. readderef;
  1633. write (space,' Readaccess : ');
  1634. readpropaccesslist(space+' Sym: ');
  1635. write (space,' Writeaccess : ');
  1636. readpropaccesslist(space+' Sym: ');
  1637. write (space,' Storedaccess : ');
  1638. readpropaccesslist(space+' Sym: ');
  1639. end;
  1640. iberror :
  1641. begin
  1642. Writeln('!! Error in PPU');
  1643. exit;
  1644. end;
  1645. ibendsyms :
  1646. break;
  1647. else
  1648. WriteLn('!! Skipping unsupported PPU Entry in Symbols: ',b);
  1649. end;
  1650. if not EndOfEntry then
  1651. Writeln('!! Entry has more information stored');
  1652. until false;
  1653. end;
  1654. end;
  1655. {****************************************************************************
  1656. Read defintions Part
  1657. ****************************************************************************}
  1658. procedure readdefinitions(const s:string);
  1659. type
  1660. tordtype = (
  1661. uvoid,
  1662. u8bit,u16bit,u32bit,u64bit,
  1663. s8bit,s16bit,s32bit,s64bit,
  1664. bool8bit,bool16bit,bool32bit,bool64bit,
  1665. uchar,uwidechar,scurrency
  1666. );
  1667. tobjecttyp = (odt_none,
  1668. odt_class,
  1669. odt_object,
  1670. odt_interfacecom,
  1671. odt_interfacecorba,
  1672. odt_cppclass,
  1673. odt_dispinterface
  1674. );
  1675. tvarianttype = (
  1676. vt_normalvariant,vt_olevariant
  1677. );
  1678. var
  1679. b : byte;
  1680. l,j : longint;
  1681. calloption : tproccalloption;
  1682. procoptions : tprocoptions;
  1683. procinfooptions : tprocinfoflag;
  1684. begin
  1685. with ppufile do
  1686. begin
  1687. if space<>'' then
  1688. Writeln(space,'------ ',s,' ------');
  1689. if readentry<>ibstartdefs then
  1690. Writeln('!! ibstartdefs not found');
  1691. repeat
  1692. b:=readentry;
  1693. case b of
  1694. ibpointerdef :
  1695. begin
  1696. readcommondef('Pointer definition');
  1697. write (space,' Pointed Type : ');
  1698. readderef;
  1699. writeln(space,' Is Far : ',(getbyte<>0));
  1700. end;
  1701. iborddef :
  1702. begin
  1703. readcommondef('Ordinal definition');
  1704. write (space,' Base type : ');
  1705. b:=getbyte;
  1706. case tordtype(b) of
  1707. uvoid : writeln('uvoid');
  1708. u8bit : writeln('u8bit');
  1709. u16bit : writeln('u16bit');
  1710. u32bit : writeln('s32bit');
  1711. u64bit : writeln('u64bit');
  1712. s8bit : writeln('s8bit');
  1713. s16bit : writeln('s16bit');
  1714. s32bit : writeln('s32bit');
  1715. s64bit : writeln('s64bit');
  1716. bool8bit : writeln('bool8bit');
  1717. bool16bit : writeln('bool16bit');
  1718. bool32bit : writeln('bool32bit');
  1719. bool64bit : writeln('bool64bit');
  1720. uchar : writeln('uchar');
  1721. uwidechar : writeln('uwidechar');
  1722. scurrency : writeln('ucurrency');
  1723. else writeln('!! Warning: Invalid base type ',b);
  1724. end;
  1725. writeln(space,' Range : ',constexp.tostr(getexprint),' to ',constexp.tostr(getexprint));
  1726. end;
  1727. ibfloatdef :
  1728. begin
  1729. readcommondef('Float definition');
  1730. writeln(space,' Float type : ',getbyte);
  1731. end;
  1732. ibarraydef :
  1733. begin
  1734. readcommondef('Array definition');
  1735. write (space,' Element type : ');
  1736. readderef;
  1737. write (space,' Range Type : ');
  1738. readderef;
  1739. writeln(space,' Range : ',getaint,' to ',getaint);
  1740. write (space,' Options : ');
  1741. readarraydefoptions;
  1742. end;
  1743. ibprocdef :
  1744. begin
  1745. readcommondef('Procedure definition');
  1746. read_abstract_proc_def(calloption,procoptions);
  1747. if (po_has_mangledname in procoptions) then
  1748. writeln(space,' Mangled name : ',getstring);
  1749. writeln(space,' Number : ',getword);
  1750. writeln(space,' Level : ',getbyte);
  1751. write (space,' Class : ');
  1752. readderef;
  1753. write (space,' Procsym : ');
  1754. readderef;
  1755. write (space,' File Pos : ');
  1756. readposinfo;
  1757. writeln(space,' Visibility : ',Visibility2Str(ppufile.getbyte));
  1758. write (space,' SymOptions : ');
  1759. readsymoptions;
  1760. if tsystemcpu(ppufile.header.cpu)=cpu_powerpc then
  1761. begin
  1762. { library symbol for AmigaOS/MorphOS }
  1763. write (space,' Library symbol : ');
  1764. readderef;
  1765. end;
  1766. if (po_has_importdll in procoptions) then
  1767. writeln(space,' Import DLL : ',getstring);
  1768. if (po_has_importname in procoptions) then
  1769. writeln(space,' Import Name : ',getstring);
  1770. writeln(space,' Import Nr : ',getword);
  1771. if (po_msgint in procoptions) then
  1772. writeln(space,' MsgInt : ',getlongint);
  1773. if (po_msgstr in procoptions) then
  1774. writeln(space,' MsgStr : ',getstring);
  1775. if (po_dispid in procoptions) then
  1776. writeln(space,' DispID: ',ppufile.getlongint);
  1777. if (po_has_inlininginfo in procoptions) then
  1778. begin
  1779. write (space,' FuncretSym : ');
  1780. readderef;
  1781. ppufile.getsmallset(procinfooptions);
  1782. writeln(space,' ProcInfoOptions : ',dword(procinfooptions));
  1783. end;
  1784. b:=ppufile.getbyte;
  1785. if b<>0 then
  1786. begin
  1787. write (space,' Alias names : ');
  1788. for j:=1 to b do
  1789. begin
  1790. write(ppufile.getstring);
  1791. if j<b then
  1792. write(', ');
  1793. end;
  1794. writeln;
  1795. end;
  1796. if not EndOfEntry then
  1797. Writeln('!! Entry has more information stored');
  1798. space:=' '+space;
  1799. { parast }
  1800. readdefinitions('parast');
  1801. readsymbols('parast');
  1802. { localst }
  1803. if (po_has_inlininginfo in procoptions) then
  1804. begin
  1805. readdefinitions('localst');
  1806. readsymbols('localst');
  1807. end;
  1808. if (po_has_inlininginfo in procoptions) then
  1809. readnodetree;
  1810. delete(space,1,4);
  1811. end;
  1812. ibprocvardef :
  1813. begin
  1814. readcommondef('Procedural type (ProcVar) definition');
  1815. read_abstract_proc_def(calloption,procoptions);
  1816. if not EndOfEntry then
  1817. Writeln('!! Entry has more information stored');
  1818. space:=' '+space;
  1819. { parast }
  1820. readdefinitions('parast');
  1821. readsymbols('parast');
  1822. delete(space,1,4);
  1823. end;
  1824. ibshortstringdef :
  1825. begin
  1826. readcommondef('ShortString definition');
  1827. writeln(space,' Length : ',getbyte);
  1828. end;
  1829. ibwidestringdef :
  1830. begin
  1831. readcommondef('WideString definition');
  1832. writeln(space,' Length : ',getlongint);
  1833. end;
  1834. ibansistringdef :
  1835. begin
  1836. readcommondef('AnsiString definition');
  1837. writeln(space,' Length : ',getlongint);
  1838. end;
  1839. iblongstringdef :
  1840. begin
  1841. readcommondef('Longstring definition');
  1842. writeln(space,' Length : ',getlongint);
  1843. end;
  1844. ibrecorddef :
  1845. begin
  1846. readcommondef('Record definition');
  1847. writeln(space,' FieldAlign : ',getbyte);
  1848. writeln(space,' RecordAlign : ',getbyte);
  1849. writeln(space,' PadAlign : ',getbyte);
  1850. writeln(space,'UseFieldAlignment : ',getbyte);
  1851. writeln(space,' DataSize : ',getaint);
  1852. if not EndOfEntry then
  1853. Writeln('!! Entry has more information stored');
  1854. {read the record definitions and symbols}
  1855. space:=' '+space;
  1856. readdefinitions('fields');
  1857. readsymbols('fields');
  1858. Delete(space,1,4);
  1859. end;
  1860. ibobjectdef :
  1861. begin
  1862. readcommondef('Object/Class definition');
  1863. b:=getbyte;
  1864. write (space,' Type : ');
  1865. case tobjecttyp(b) of
  1866. odt_class : writeln('class');
  1867. odt_object : writeln('object');
  1868. odt_interfacecom : writeln('interfacecom');
  1869. odt_interfacecorba : writeln('interfacecorba');
  1870. odt_cppclass : writeln('cppclass');
  1871. else writeln('!! Warning: Invalid object type ',b);
  1872. end;
  1873. writeln(space,' Name of Class : ',getstring);
  1874. writeln(space,' DataSize : ',getaint);
  1875. writeln(space,' FieldAlign : ',getbyte);
  1876. writeln(space,' RecordAlign : ',getbyte);
  1877. writeln(space,' Vmt offset : ',getlongint);
  1878. write (space, ' Ancestor Class : ');
  1879. readderef;
  1880. write (space,' Options : ');
  1881. readobjectdefoptions;
  1882. if tobjecttyp(b) in [odt_interfacecom,odt_interfacecorba,odt_dispinterface] then
  1883. begin
  1884. { IIDGUID }
  1885. for j:=1to 16 do
  1886. getbyte;
  1887. writeln(space,' IID String : ',getstring);
  1888. writeln(space,' Last VTable idx : ',getlongint);
  1889. end;
  1890. l:=getlongint;
  1891. writeln(space,' VMT entries: ',l);
  1892. for j:=1 to l do
  1893. begin
  1894. write(space,' ');
  1895. readderef;
  1896. writeln(space,' Visibility: ',Visibility2Str(getbyte));
  1897. end;
  1898. if tobjecttyp(b) in [odt_class,odt_interfacecorba] then
  1899. begin
  1900. l:=getlongint;
  1901. writeln(space,' Impl Intf Count : ',l);
  1902. for j:=1 to l do
  1903. begin
  1904. write (space,' - Definition : ');
  1905. readderef;
  1906. writeln(space,' IOffset : ',getlongint);
  1907. end;
  1908. end;
  1909. if df_copied_def in current_defoptions then
  1910. begin
  1911. writeln(' Copy of def: ');
  1912. readderef;
  1913. end;
  1914. if not EndOfEntry then
  1915. Writeln('!! Entry has more information stored');
  1916. if not(df_copied_def in current_defoptions) then
  1917. begin
  1918. {read the record definitions and symbols}
  1919. space:=' '+space;
  1920. readdefinitions('fields');
  1921. readsymbols('fields');
  1922. Delete(space,1,4);
  1923. end;
  1924. end;
  1925. ibfiledef :
  1926. begin
  1927. ReadCommonDef('File definition');
  1928. write (space,' Type : ');
  1929. case getbyte of
  1930. 0 : writeln('Text');
  1931. 1 : begin
  1932. writeln('Typed');
  1933. write (space,' File of Type : ');
  1934. readderef;
  1935. end;
  1936. 2 : writeln('Untyped');
  1937. end;
  1938. end;
  1939. ibformaldef :
  1940. begin
  1941. readcommondef('Generic definition (void-typ)');
  1942. writeln(space,' Is Typed : ',(getbyte<>0));
  1943. end;
  1944. ibundefineddef :
  1945. readcommondef('Undefined definition (generic parameter)');
  1946. ibenumdef :
  1947. begin
  1948. readcommondef('Enumeration type definition');
  1949. write(space,'Base enumeration type : ');
  1950. readderef;
  1951. writeln(space,' Smallest element : ',getaint);
  1952. writeln(space,' Largest element : ',getaint);
  1953. writeln(space,' Size : ',getaint);
  1954. end;
  1955. ibclassrefdef :
  1956. begin
  1957. readcommondef('Class reference definition');
  1958. write (space,' Pointed Type : ');
  1959. readderef;
  1960. end;
  1961. ibsetdef :
  1962. begin
  1963. readcommondef('Set definition');
  1964. write (space,' Element type : ');
  1965. readderef;
  1966. writeln(space,' Size : ',getaint);
  1967. writeln(space,' Set Base : ',getaint);
  1968. writeln(space,' Set Max : ',getaint);
  1969. end;
  1970. ibvariantdef :
  1971. begin
  1972. readcommondef('Variant definition');
  1973. write (space,' Varianttype : ');
  1974. b:=getbyte;
  1975. case tvarianttype(b) of
  1976. vt_normalvariant :
  1977. writeln('Normal');
  1978. vt_olevariant :
  1979. writeln('OLE');
  1980. else
  1981. writeln('!! Warning: Invalid varianttype ',b);
  1982. end;
  1983. end;
  1984. iberror :
  1985. begin
  1986. Writeln('!! Error in PPU');
  1987. exit;
  1988. end;
  1989. ibenddefs :
  1990. break;
  1991. else
  1992. WriteLn('!! Skipping unsupported PPU Entry in definitions: ',b);
  1993. end;
  1994. if not EndOfEntry then
  1995. Writeln('!! Entry has more information stored');
  1996. until false;
  1997. end;
  1998. end;
  1999. {****************************************************************************
  2000. Read General Part
  2001. ****************************************************************************}
  2002. procedure readinterface;
  2003. var
  2004. b : byte;
  2005. sourcenumber : longint;
  2006. begin
  2007. with ppufile do
  2008. begin
  2009. repeat
  2010. b:=readentry;
  2011. case b of
  2012. ibmodulename :
  2013. Writeln('Module Name: ',getstring);
  2014. ibsourcefiles :
  2015. begin
  2016. sourcenumber:=1;
  2017. while not EndOfEntry do
  2018. begin
  2019. Writeln('Source file ',sourcenumber,' : ',getstring,' ',filetimestring(getlongint));
  2020. inc(sourcenumber);
  2021. end;
  2022. end;
  2023. {$IFDEF MACRO_DIFF_HINT}
  2024. ibusedmacros :
  2025. begin
  2026. while not EndOfEntry do
  2027. begin
  2028. Write('Conditional ',getstring);
  2029. b:=getbyte;
  2030. if boolean(b)=true then
  2031. write(' defined at startup')
  2032. else
  2033. write(' not defined at startup');
  2034. b:=getbyte;
  2035. if boolean(b)=true then
  2036. writeln(' was used')
  2037. else
  2038. writeln;
  2039. end;
  2040. end;
  2041. {$ENDIF}
  2042. ibloadunit :
  2043. ReadLoadUnit;
  2044. iblinkunitofiles :
  2045. ReadLinkContainer('Link unit object file: ');
  2046. iblinkunitstaticlibs :
  2047. ReadLinkContainer('Link unit static lib: ');
  2048. iblinkunitsharedlibs :
  2049. ReadLinkContainer('Link unit shared lib: ');
  2050. iblinkotherofiles :
  2051. ReadLinkContainer('Link other object file: ');
  2052. iblinkotherstaticlibs :
  2053. ReadLinkContainer('Link other static lib: ');
  2054. iblinkothersharedlibs :
  2055. ReadLinkContainer('Link other shared lib: ');
  2056. iblinkotherframeworks:
  2057. ReadLinkContainer('Link framework: ');
  2058. ibmainname:
  2059. Writeln('Specified main program symbol name: ',getstring);
  2060. ibImportSymbols :
  2061. ReadImportSymbols;
  2062. ibderefdata :
  2063. ReadDerefData;
  2064. ibderefmap :
  2065. ReadDerefMap;
  2066. ibwpofile :
  2067. ReadWpoFileInfo;
  2068. ibresources :
  2069. ReadLinkContainer('Resource file: ');
  2070. iberror :
  2071. begin
  2072. Writeln('Error in PPU');
  2073. exit;
  2074. end;
  2075. ibendinterface :
  2076. break;
  2077. else
  2078. WriteLn('!! Skipping unsupported PPU Entry in General Part: ',b);
  2079. end;
  2080. until false;
  2081. end;
  2082. end;
  2083. {****************************************************************************
  2084. Read Implementation Part
  2085. ****************************************************************************}
  2086. procedure readimplementation;
  2087. var
  2088. b : byte;
  2089. begin
  2090. with ppufile do
  2091. begin
  2092. repeat
  2093. b:=readentry;
  2094. case b of
  2095. ibasmsymbols :
  2096. ReadAsmSymbols;
  2097. ibloadunit :
  2098. ReadLoadUnit;
  2099. iberror :
  2100. begin
  2101. Writeln('Error in PPU');
  2102. exit;
  2103. end;
  2104. ibendimplementation :
  2105. break;
  2106. else
  2107. WriteLn('!! Skipping unsupported PPU Entry in Implementation: ',b);
  2108. end;
  2109. until false;
  2110. end;
  2111. end;
  2112. procedure dofile (filename : string);
  2113. begin
  2114. { reset }
  2115. space:='';
  2116. { fix filename }
  2117. if pos('.',filename)=0 then
  2118. filename:=filename+'.ppu';
  2119. ppufile:=tppufile.create(filename);
  2120. if not ppufile.openfile then
  2121. begin
  2122. writeln ('IO-Error when opening : ',filename,', Skipping');
  2123. exit;
  2124. end;
  2125. { PPU File is open, check for PPU Id }
  2126. if not ppufile.CheckPPUID then
  2127. begin
  2128. writeln(Filename,' : Not a valid PPU file, Skipping');
  2129. exit;
  2130. end;
  2131. { Check PPU Version }
  2132. Writeln('Analyzing ',filename,' (v',ppufile.GetPPUVersion,')');
  2133. if ppufile.GetPPUVersion<16 then
  2134. begin
  2135. writeln(Filename,' : Old PPU Formats (<v16) are not supported, Skipping');
  2136. exit;
  2137. end;
  2138. { Write PPU Header Information }
  2139. if (verbose and v_header)<>0 then
  2140. begin
  2141. Writeln;
  2142. Writeln('Header');
  2143. Writeln('-------');
  2144. with ppufile.header do
  2145. begin
  2146. Writeln('Compiler version : ',ppufile.header.compiler shr 14,'.',
  2147. (ppufile.header.compiler shr 7) and $7f,'.',
  2148. ppufile.header.compiler and $7f);
  2149. WriteLn('Target processor : ',Cpu2Str(cpu));
  2150. WriteLn('Target operating system : ',Target2Str(target));
  2151. Writeln('Unit flags : ',PPUFlags2Str(flags));
  2152. Writeln('FileSize (w/o header) : ',size);
  2153. Writeln('Checksum : ',hexstr(checksum,8));
  2154. Writeln('Interface Checksum : ',hexstr(interface_checksum,8));
  2155. Writeln('Definitions stored : ',tostr(deflistsize));
  2156. Writeln('Symbols stored : ',tostr(symlistsize));
  2157. end;
  2158. end;
  2159. {read the general stuff}
  2160. if (verbose and v_interface)<>0 then
  2161. begin
  2162. Writeln;
  2163. Writeln('Interface section');
  2164. Writeln('------------------');
  2165. readinterface;
  2166. end
  2167. else
  2168. ppufile.skipuntilentry(ibendinterface);
  2169. {read the definitions}
  2170. if (verbose and v_defs)<>0 then
  2171. begin
  2172. Writeln;
  2173. Writeln('Interface definitions');
  2174. Writeln('----------------------');
  2175. readdefinitions('interface');
  2176. end
  2177. else
  2178. ppufile.skipuntilentry(ibenddefs);
  2179. {read the symbols}
  2180. if (verbose and v_syms)<>0 then
  2181. begin
  2182. Writeln;
  2183. Writeln('Interface Symbols');
  2184. Writeln('------------------');
  2185. readsymbols('interface');
  2186. end
  2187. else
  2188. ppufile.skipuntilentry(ibendsyms);
  2189. {read the macro symbols}
  2190. if (verbose and v_syms)<>0 then
  2191. begin
  2192. Writeln;
  2193. Writeln('Interface Macro Symbols');
  2194. Writeln('-----------------------');
  2195. end;
  2196. if ppufile.readentry<>ibexportedmacros then
  2197. begin
  2198. Writeln('!! Error in PPU');
  2199. exit;
  2200. end;
  2201. if boolean(ppufile.getbyte) then
  2202. begin
  2203. {skip the definition section for macros (since they are never used) }
  2204. ppufile.skipuntilentry(ibenddefs);
  2205. {read the macro symbols}
  2206. if (verbose and v_syms)<>0 then
  2207. readsymbols('interface macro')
  2208. else
  2209. ppufile.skipuntilentry(ibendsyms);
  2210. end
  2211. else
  2212. Writeln('(no exported macros)');
  2213. {read the implementation stuff}
  2214. if (verbose and v_implementation)<>0 then
  2215. begin
  2216. Writeln;
  2217. Writeln('Implementation section');
  2218. Writeln('-----------------------');
  2219. readimplementation;
  2220. end
  2221. else
  2222. ppufile.skipuntilentry(ibendimplementation);
  2223. {read the static symtable}
  2224. if (ppufile.header.flags and uf_local_symtable)<>0 then
  2225. begin
  2226. if (verbose and v_defs)<>0 then
  2227. begin
  2228. Writeln;
  2229. Writeln('Static definitions');
  2230. Writeln('----------------------');
  2231. readdefinitions('implementation');
  2232. end
  2233. else
  2234. ppufile.skipuntilentry(ibenddefs);
  2235. {read the symbols}
  2236. if (verbose and v_syms)<>0 then
  2237. begin
  2238. Writeln;
  2239. Writeln('Static Symbols');
  2240. Writeln('------------------');
  2241. readsymbols('implementation');
  2242. end
  2243. else
  2244. ppufile.skipuntilentry(ibendsyms);
  2245. end;
  2246. {shutdown ppufile}
  2247. ppufile.closefile;
  2248. ppufile.free;
  2249. Writeln;
  2250. end;
  2251. procedure help;
  2252. begin
  2253. writeln('usage: ppudump [options] <filename1> <filename2>...');
  2254. writeln;
  2255. writeln('[options] can be:');
  2256. writeln(' -V<verbose> Set verbosity to <verbose>');
  2257. writeln(' H - Show header info');
  2258. writeln(' I - Show interface');
  2259. writeln(' M - Show implementation');
  2260. writeln(' S - Show interface symbols');
  2261. writeln(' D - Show interface definitions');
  2262. // writeln(' B - Show browser info');
  2263. writeln(' A - Show all');
  2264. writeln(' -h, -? This helpscreen');
  2265. halt;
  2266. end;
  2267. var
  2268. startpara,
  2269. nrfile,i : longint;
  2270. para : string;
  2271. begin
  2272. writeln(Title+' '+Version);
  2273. writeln(Copyright);
  2274. writeln;
  2275. if paramcount<1 then
  2276. begin
  2277. writeln('usage: dumpppu [options] <filename1> <filename2>...');
  2278. halt(1);
  2279. end;
  2280. { turn verbose on by default }
  2281. verbose:=v_all;
  2282. { read options }
  2283. startpara:=1;
  2284. while copy(paramstr(startpara),1,1)='-' do
  2285. begin
  2286. para:=paramstr(startpara);
  2287. case upcase(para[2]) of
  2288. 'V' : begin
  2289. verbose:=0;
  2290. for i:=3 to length(para) do
  2291. case upcase(para[i]) of
  2292. 'H' : verbose:=verbose or v_header;
  2293. 'I' : verbose:=verbose or v_interface;
  2294. 'M' : verbose:=verbose or v_implementation;
  2295. 'D' : verbose:=verbose or v_defs;
  2296. 'S' : verbose:=verbose or v_syms;
  2297. 'A' : verbose:=verbose or v_all;
  2298. end;
  2299. end;
  2300. 'H' : help;
  2301. '?' : help;
  2302. end;
  2303. inc(startpara);
  2304. end;
  2305. { process files }
  2306. for nrfile:=startpara to paramcount do
  2307. dofile (paramstr(nrfile));
  2308. if has_errors then
  2309. Halt(1);
  2310. end.