ppudump.pp 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  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_staticmethod, { static method }
  1007. po_overridingmethod, { method with override directive }
  1008. po_methodpointer, { method pointer, only in procvardef, also used for 'with object do' }
  1009. po_interrupt, { Procedure is an interrupt handler }
  1010. po_iocheck, { IO checking should be done after a call to the procedure }
  1011. po_assembler, { Procedure is written in assembler }
  1012. po_msgstr, { method for string message handling }
  1013. po_msgint, { method for int message handling }
  1014. po_exports, { Procedure has export directive (needed for OS/2) }
  1015. po_external, { Procedure is external (in other object or lib)}
  1016. po_overload, { procedure is declared with overload directive }
  1017. po_varargs, { printf like arguments }
  1018. po_internconst, { procedure has constant evaluator intern }
  1019. { flag that only the address of a method is returned and not a full methodpointer }
  1020. po_addressonly,
  1021. { procedure is exported }
  1022. po_public,
  1023. { calling convention is specified explicitly }
  1024. po_hascallingconvention,
  1025. { reintroduce flag }
  1026. po_reintroduce,
  1027. { location of parameters is given explicitly as it is necessary for some syscall
  1028. conventions like that one of MorphOS }
  1029. po_explicitparaloc,
  1030. { no stackframe will be generated, used by lowlevel assembler like get_frame }
  1031. po_nostackframe,
  1032. po_has_mangledname,
  1033. po_has_public_name,
  1034. po_forward,
  1035. po_global,
  1036. po_has_inlininginfo,
  1037. { The different kind of syscalls on MorphOS }
  1038. po_syscall_legacy,
  1039. po_syscall_sysv,
  1040. po_syscall_basesysv,
  1041. po_syscall_sysvbase,
  1042. po_syscall_r12base,
  1043. po_local,
  1044. { Procedure can be inlined }
  1045. po_inline,
  1046. { Procedure is used for internal compiler calls }
  1047. po_compilerproc,
  1048. { importing }
  1049. po_has_importdll,
  1050. po_has_importname,
  1051. po_kylixlocal,
  1052. po_dispid,
  1053. { weakly linked (i.e., may or may not exist at run time) }
  1054. po_weakexternal
  1055. );
  1056. tprocoptions=set of tprocoption;
  1057. procedure read_abstract_proc_def(var proccalloption:tproccalloption;var procoptions:tprocoptions);
  1058. type
  1059. tproccallopt=record
  1060. mask : tproccalloption;
  1061. str : string[30];
  1062. end;
  1063. tproctypeopt=record
  1064. mask : tproctypeoption;
  1065. str : string[30];
  1066. end;
  1067. tprocopt=record
  1068. mask : tprocoption;
  1069. str : string[30];
  1070. end;
  1071. const
  1072. proccalloptionStr : array[tproccalloption] of string[14]=('',
  1073. 'CDecl',
  1074. 'CPPDecl',
  1075. 'Far16',
  1076. 'OldFPCCall',
  1077. 'InternProc',
  1078. 'SysCall',
  1079. 'Pascal',
  1080. 'Register',
  1081. 'SafeCall',
  1082. 'StdCall',
  1083. 'SoftFloat',
  1084. 'MWPascal'
  1085. );
  1086. proctypeopt : array[1..ord(high(tproctypeoption))] of tproctypeopt=(
  1087. (mask:potype_proginit; str:'ProgInit'),
  1088. (mask:potype_unitinit; str:'UnitInit'),
  1089. (mask:potype_unitfinalize;str:'UnitFinalize'),
  1090. (mask:potype_constructor; str:'Constructor'),
  1091. (mask:potype_destructor; str:'Destructor'),
  1092. (mask:potype_operator; str:'Operator'),
  1093. (mask:potype_procedure; str:'Procedure'),
  1094. (mask:potype_function; str:'Function')
  1095. );
  1096. procopt : array[1..ord(high(tprocoption))] of tprocopt=(
  1097. (mask:po_classmethod; str:'ClassMethod'),
  1098. (mask:po_virtualmethod; str:'VirtualMethod'),
  1099. (mask:po_abstractmethod; str:'AbstractMethod'),
  1100. (mask:po_staticmethod; str:'StaticMethod'),
  1101. (mask:po_overridingmethod;str:'OverridingMethod'),
  1102. (mask:po_methodpointer; str:'MethodPointer'),
  1103. (mask:po_interrupt; str:'Interrupt'),
  1104. (mask:po_iocheck; str:'IOCheck'),
  1105. (mask:po_assembler; str:'Assembler'),
  1106. (mask:po_msgstr; str:'MsgStr'),
  1107. (mask:po_msgint; str:'MsgInt'),
  1108. (mask:po_exports; str:'Exports'),
  1109. (mask:po_external; str:'External'),
  1110. (mask:po_overload; str:'Overload'),
  1111. (mask:po_varargs; str:'VarArgs'),
  1112. (mask:po_internconst; str:'InternConst'),
  1113. (mask:po_addressonly; str:'AddressOnly'),
  1114. (mask:po_public; str:'Public'),
  1115. (mask:po_hascallingconvention;str:'HasCallingConvention'),
  1116. (mask:po_reintroduce; str:'ReIntroduce'),
  1117. (mask:po_explicitparaloc; str:'ExplicitParaloc'),
  1118. (mask:po_nostackframe; str:'NoStackFrame'),
  1119. (mask:po_has_mangledname; str:'HasMangledName'),
  1120. (mask:po_has_public_name; str:'HasPublicName'),
  1121. (mask:po_forward; str:'Forward'),
  1122. (mask:po_global; str:'Global'),
  1123. (mask:po_has_inlininginfo;str:'HasInliningInfo'),
  1124. (mask:po_syscall_legacy; str:'SyscallLegacy'),
  1125. (mask:po_syscall_sysv; str:'SyscallSysV'),
  1126. (mask:po_syscall_basesysv;str:'SyscallBaseSysV'),
  1127. (mask:po_syscall_sysvbase;str:'SyscallSysVBase'),
  1128. (mask:po_syscall_r12base; str:'SyscallR12Base'),
  1129. (mask:po_local; str:'Local'),
  1130. (mask:po_inline; str:'Inline'),
  1131. (mask:po_compilerproc; str:'CompilerProc'),
  1132. (mask:po_has_importdll; str:'HasImportDLL'),
  1133. (mask:po_has_importname; str:'HasImportName'),
  1134. (mask:po_kylixlocal; str:'KylixLocal'),
  1135. (mask:po_dispid; str:'DispId'),
  1136. (mask:po_weakexternal; str:'WeakExternal')
  1137. );
  1138. var
  1139. proctypeoption : tproctypeoption;
  1140. i : longint;
  1141. first : boolean;
  1142. tempbuf : array[0..255] of byte;
  1143. begin
  1144. write(space,' Return type : ');
  1145. readderef;
  1146. writeln(space,' Fpu used : ',ppufile.getbyte);
  1147. proctypeoption:=tproctypeoption(ppufile.getbyte);
  1148. write(space,' TypeOption : ');
  1149. first:=true;
  1150. for i:=1 to high(proctypeopt) do
  1151. if (proctypeopt[i].mask=proctypeoption) then
  1152. begin
  1153. if first then
  1154. first:=false
  1155. else
  1156. write(', ');
  1157. write(proctypeopt[i].str);
  1158. end;
  1159. writeln;
  1160. proccalloption:=tproccalloption(ppufile.getbyte);
  1161. writeln(space,' CallOption : ',proccalloptionStr[proccalloption]);
  1162. ppufile.getnormalset(procoptions);
  1163. if procoptions<>[] then
  1164. begin
  1165. write(space,' Options : ');
  1166. first:=true;
  1167. for i:=1 to high(procopt) do
  1168. if (procopt[i].mask in procoptions) then
  1169. begin
  1170. if first then
  1171. first:=false
  1172. else
  1173. write(', ');
  1174. write(procopt[i].str);
  1175. end;
  1176. writeln;
  1177. end;
  1178. if (po_explicitparaloc in procoptions) then
  1179. begin
  1180. i:=ppufile.getbyte;
  1181. ppufile.getdata(tempbuf,i);
  1182. end;
  1183. end;
  1184. type
  1185. tvaroption=(vo_none,
  1186. vo_is_external,
  1187. vo_is_dll_var,
  1188. vo_is_thread_var,
  1189. vo_has_local_copy,
  1190. vo_is_const, { variable is declared as const (parameter) and can't be written to }
  1191. vo_is_public,
  1192. vo_is_high_para,
  1193. vo_is_funcret,
  1194. vo_is_self,
  1195. vo_is_vmt,
  1196. vo_is_result, { special result variable }
  1197. vo_is_parentfp,
  1198. vo_is_loop_counter, { used to detect assignments to loop counter }
  1199. vo_is_hidden_para,
  1200. vo_has_explicit_paraloc,
  1201. vo_is_syscall_lib,
  1202. vo_has_mangledname,
  1203. vo_is_typed_const,
  1204. vo_is_range_check,
  1205. vo_is_overflow_check,
  1206. vo_is_typinfo_para,
  1207. vo_is_weak_external
  1208. );
  1209. tvaroptions=set of tvaroption;
  1210. { register variable }
  1211. tvarregable=(vr_none,
  1212. vr_intreg,
  1213. vr_fpureg,
  1214. vr_mmreg,
  1215. { does not mean "needs address register", but "if it's a parameter which is }
  1216. { passed by reference, then its address can be put in a register }
  1217. vr_addr
  1218. );
  1219. procedure readabstractvarsym(const s:string;var varoptions:tvaroptions);
  1220. type
  1221. tvaropt=record
  1222. mask : tvaroption;
  1223. str : string[30];
  1224. end;
  1225. const
  1226. varopt : array[1..ord(high(tvaroption))] of tvaropt=(
  1227. (mask:vo_is_external; str:'External'),
  1228. (mask:vo_is_dll_var; str:'DLLVar'),
  1229. (mask:vo_is_thread_var; str:'ThreadVar'),
  1230. (mask:vo_has_local_copy; str:'HasLocalCopy'),
  1231. (mask:vo_is_const; str:'Constant'),
  1232. (mask:vo_is_public; str:'Public'),
  1233. (mask:vo_is_high_para; str:'HighValue'),
  1234. (mask:vo_is_funcret; str:'Funcret'),
  1235. (mask:vo_is_self; str:'Self'),
  1236. (mask:vo_is_vmt; str:'VMT'),
  1237. (mask:vo_is_result; str:'Result'),
  1238. (mask:vo_is_parentfp; str:'ParentFP'),
  1239. (mask:vo_is_loop_counter; str:'LoopCounter'),
  1240. (mask:vo_is_hidden_para; str:'Hidden'),
  1241. (mask:vo_has_explicit_paraloc;str:'ExplicitParaloc'),
  1242. (mask:vo_is_syscall_lib; str:'SysCallLib'),
  1243. (mask:vo_has_mangledname; str:'HasMangledName'),
  1244. (mask:vo_is_typed_const; str:'TypedConst'),
  1245. (mask:vo_is_range_check; str:'RangeCheckSwitch'),
  1246. (mask:vo_is_overflow_check; str:'OverflowCheckSwitch'),
  1247. (mask:vo_is_typinfo_para; str:'TypeInfo'),
  1248. (mask:vo_is_weak_external;str:'WeakExternal')
  1249. );
  1250. var
  1251. i : longint;
  1252. first : boolean;
  1253. begin
  1254. readcommonsym(s);
  1255. writeln(space,' Spez : ',Varspez2Str(ppufile.getbyte));
  1256. writeln(space,' Regable : ',Varregable2Str(ppufile.getbyte));
  1257. writeln(space,' Addr Taken : ',(ppufile.getbyte<>0));
  1258. write (space,' Var Type : ');
  1259. readderef;
  1260. ppufile.getsmallset(varoptions);
  1261. if varoptions<>[] then
  1262. begin
  1263. write(space,' Options : ');
  1264. first:=true;
  1265. for i:=1 to high(varopt) do
  1266. if (varopt[i].mask in varoptions) then
  1267. begin
  1268. if first then
  1269. first:=false
  1270. else
  1271. write(', ');
  1272. write(varopt[i].str);
  1273. end;
  1274. writeln;
  1275. end;
  1276. end;
  1277. procedure readobjectdefoptions;
  1278. type
  1279. tobjectoption=(oo_none,
  1280. oo_is_forward, { the class is only a forward declared yet }
  1281. oo_has_virtual, { the object/class has virtual methods }
  1282. oo_has_private,
  1283. oo_has_protected,
  1284. oo_has_strictprivate,
  1285. oo_has_strictprotected,
  1286. oo_has_constructor, { the object/class has a constructor }
  1287. oo_has_destructor, { the object/class has a destructor }
  1288. oo_has_vmt, { the object/class has a vmt }
  1289. oo_has_msgstr,
  1290. oo_has_msgint,
  1291. oo_can_have_published,{ the class has rtti, i.e. you can publish properties }
  1292. oo_has_default_property,
  1293. oo_has_valid_guid
  1294. );
  1295. tobjectoptions=set of tobjectoption;
  1296. tsymopt=record
  1297. mask : tobjectoption;
  1298. str : string[30];
  1299. end;
  1300. const
  1301. symopt : array[1..ord(high(tobjectoption))] of tsymopt=(
  1302. (mask:oo_is_forward; str:'IsForward'),
  1303. (mask:oo_has_virtual; str:'HasVirtual'),
  1304. (mask:oo_has_private; str:'HasPrivate'),
  1305. (mask:oo_has_protected; str:'HasProtected'),
  1306. (mask:oo_has_strictprivate; str:'HasStrictPrivate'),
  1307. (mask:oo_has_strictprotected;str:'HasStrictProtected'),
  1308. (mask:oo_has_constructor; str:'HasConstructor'),
  1309. (mask:oo_has_destructor; str:'HasDestructor'),
  1310. (mask:oo_has_vmt; str:'HasVMT'),
  1311. (mask:oo_has_msgstr; str:'HasMsgStr'),
  1312. (mask:oo_has_msgint; str:'HasMsgInt'),
  1313. (mask:oo_can_have_published; str:'CanHavePublished'),
  1314. (mask:oo_has_default_property;str:'HasDefaultProperty'),
  1315. (mask:oo_has_valid_guid; str:'HasValidGUID')
  1316. );
  1317. var
  1318. symoptions : tobjectoptions;
  1319. i : longint;
  1320. first : boolean;
  1321. begin
  1322. ppufile.getsmallset(symoptions);
  1323. if symoptions<>[] then
  1324. begin
  1325. first:=true;
  1326. for i:=1 to high(symopt) do
  1327. if (symopt[i].mask in symoptions) then
  1328. begin
  1329. if first then
  1330. first:=false
  1331. else
  1332. write(', ');
  1333. write(symopt[i].str);
  1334. end;
  1335. end;
  1336. writeln;
  1337. end;
  1338. procedure readarraydefoptions;
  1339. type
  1340. tarraydefoption=(ado_none,
  1341. ado_IsConvertedPointer,
  1342. ado_IsDynamicArray,
  1343. ado_IsVariant,
  1344. ado_IsConstructor,
  1345. ado_IsArrayOfConst,
  1346. ado_IsConstString,
  1347. ado_IsBitPacked
  1348. );
  1349. tarraydefoptions=set of tarraydefoption;
  1350. tsymopt=record
  1351. mask : tarraydefoption;
  1352. str : string[30];
  1353. end;
  1354. const
  1355. symopt : array[1..ord(high(tarraydefoption))] of tsymopt=(
  1356. (mask:ado_IsConvertedPointer;str:'ConvertedPointer'),
  1357. (mask:ado_IsDynamicArray; str:'IsDynamicArray'),
  1358. (mask:ado_IsVariant; str:'IsVariant'),
  1359. (mask:ado_IsConstructor; str:'IsConstructor'),
  1360. (mask:ado_IsArrayOfConst; str:'ArrayOfConst'),
  1361. (mask:ado_IsConstString; str:'ConstString'),
  1362. (mask:ado_IsBitPacked; str:'BitPacked')
  1363. );
  1364. var
  1365. symoptions : tarraydefoptions;
  1366. i : longint;
  1367. first : boolean;
  1368. begin
  1369. ppufile.getsmallset(symoptions);
  1370. if symoptions<>[] then
  1371. begin
  1372. first:=true;
  1373. for i:=1 to high(symopt) do
  1374. if (symopt[i].mask in symoptions) then
  1375. begin
  1376. if first then
  1377. first:=false
  1378. else
  1379. write(', ');
  1380. write(symopt[i].str);
  1381. end;
  1382. end;
  1383. writeln;
  1384. end;
  1385. procedure readnodetree;
  1386. var
  1387. l : longint;
  1388. p : pointer;
  1389. begin
  1390. with ppufile do
  1391. begin
  1392. if space<>'' then
  1393. Writeln(space,'------ nodetree ------');
  1394. if readentry=ibnodetree then
  1395. begin
  1396. l:=entrysize;
  1397. Writeln(space,'Tree size : ',l);
  1398. { Read data to prevent error that entry is not completly read }
  1399. getmem(p,l);
  1400. getdata(p^,l);
  1401. freemem(p);
  1402. end
  1403. else
  1404. begin
  1405. Writeln('!! ibnodetree not found');
  1406. end;
  1407. end;
  1408. end;
  1409. {****************************************************************************
  1410. Read Symbols Part
  1411. ****************************************************************************}
  1412. procedure readsymbols(const s:string);
  1413. type
  1414. pguid = ^tguid;
  1415. tguid = packed record
  1416. D1: LongWord;
  1417. D2: Word;
  1418. D3: Word;
  1419. D4: array[0..7] of Byte;
  1420. end;
  1421. absolutetyp = (tovar,toasm,toaddr);
  1422. tconsttyp = (constnone,
  1423. constord,conststring,constreal,
  1424. constset,constpointer,constnil,
  1425. constresourcestring,constwstring,constguid
  1426. );
  1427. var
  1428. b : byte;
  1429. pc : pchar;
  1430. i,j,len : longint;
  1431. guid : tguid;
  1432. tempbuf : array[0..127] of char;
  1433. varoptions : tvaroptions;
  1434. begin
  1435. with ppufile do
  1436. begin
  1437. if space<>'' then
  1438. Writeln(space,'------ ',s,' ------');
  1439. if readentry=ibstartsyms then
  1440. begin
  1441. Writeln(space,'Symtable datasize : ',getlongint);
  1442. Writeln(space,'Symtable alignment: ',getlongint);
  1443. end
  1444. else
  1445. Writeln('!! ibstartsym not found');
  1446. repeat
  1447. b:=readentry;
  1448. case b of
  1449. ibunitsym :
  1450. readcommonsym('Unit symbol ');
  1451. iblabelsym :
  1452. readcommonsym('Label symbol ');
  1453. ibtypesym :
  1454. begin
  1455. readcommonsym('Type symbol ');
  1456. write(space,' Result Type : ');
  1457. readderef;
  1458. end;
  1459. ibprocsym :
  1460. begin
  1461. readcommonsym('Procedure symbol ');
  1462. len:=ppufile.getword;
  1463. for i:=1 to len do
  1464. begin
  1465. write(space,' Definition : ');
  1466. readderef;
  1467. end;
  1468. end;
  1469. ibconstsym :
  1470. begin
  1471. readcommonsym('Constant symbol ');
  1472. b:=getbyte;
  1473. case tconsttyp(b) of
  1474. constord :
  1475. begin
  1476. write (space,' OrdinalType : ');
  1477. readderef;
  1478. writeln(space,' Value : ',constexp.tostr(getexprint));
  1479. end;
  1480. constpointer :
  1481. begin
  1482. write (space,' PointerType : ');
  1483. readderef;
  1484. writeln(space,' Value : ',getlongint)
  1485. end;
  1486. conststring,
  1487. constresourcestring :
  1488. begin
  1489. len:=getlongint;
  1490. getmem(pc,len+1);
  1491. getdata(pc^,len);
  1492. (pc+len)^:= #0;
  1493. writeln(space,' Length : ',len);
  1494. writeln(space,' Value : "',pc,'"');
  1495. freemem(pc,len+1);
  1496. end;
  1497. constreal :
  1498. writeln(space,' Value : ',getreal);
  1499. constset :
  1500. begin
  1501. write (space,' Set Type : ');
  1502. readderef;
  1503. for i:=1to 4 do
  1504. begin
  1505. write (space,' Value : ');
  1506. for j:=1to 8 do
  1507. begin
  1508. if j>1 then
  1509. write(',');
  1510. write(hexstr(getbyte,2));
  1511. end;
  1512. writeln;
  1513. end;
  1514. end;
  1515. constwstring:
  1516. begin
  1517. end;
  1518. constguid:
  1519. begin
  1520. getdata(guid,sizeof(guid));
  1521. write (space,' IID String: {',hexstr(guid.d1,8),'-',hexstr(guid.d2,4),'-',hexstr(guid.d3,4),'-');
  1522. for i:=0 to 7 do
  1523. begin
  1524. write(hexstr(guid.d4[i],2));
  1525. if i=1 then write('-');
  1526. end;
  1527. writeln('}');
  1528. end
  1529. else
  1530. Writeln ('!! Invalid unit format : Invalid const type encountered: ',b);
  1531. end;
  1532. end;
  1533. ibabsolutevarsym :
  1534. begin
  1535. readabstractvarsym('Absolute variable symbol ',varoptions);
  1536. Write (space,' Relocated to ');
  1537. b:=getbyte;
  1538. case absolutetyp(b) of
  1539. tovar :
  1540. readpropaccesslist(space+' Sym : ');
  1541. toasm :
  1542. Writeln('Assembler name : ',getstring);
  1543. toaddr :
  1544. begin
  1545. Write('Address : ',getlongint);
  1546. if tsystemcpu(ppufile.header.cpu)=cpu_i386 then
  1547. WriteLn(' (Far: ',getbyte<>0,')');
  1548. end;
  1549. else
  1550. Writeln ('!! Invalid unit format : Invalid absolute type encountered: ',b);
  1551. end;
  1552. end;
  1553. ibfieldvarsym :
  1554. begin
  1555. readabstractvarsym('Field Variable symbol ',varoptions);
  1556. writeln(space,' Address : ',getaint);
  1557. end;
  1558. ibstaticvarsym :
  1559. begin
  1560. readabstractvarsym('Global Variable symbol ',varoptions);
  1561. write (space,' DefaultConst : ');
  1562. readderef;
  1563. if (vo_has_mangledname in varoptions) then
  1564. writeln(space,' Mangledname : ',getstring);
  1565. end;
  1566. iblocalvarsym :
  1567. begin
  1568. readabstractvarsym('Local Variable symbol ',varoptions);
  1569. write (space,' DefaultConst : ');
  1570. readderef;
  1571. end;
  1572. ibparavarsym :
  1573. begin
  1574. readabstractvarsym('Parameter Variable symbol ',varoptions);
  1575. write (space,' DefaultConst : ');
  1576. readderef;
  1577. writeln(space,' ParaNr : ',getword);
  1578. writeln(space,' VarState : ',getbyte);
  1579. if (vo_has_explicit_paraloc in varoptions) then
  1580. begin
  1581. i:=getbyte;
  1582. getdata(tempbuf,i);
  1583. end;
  1584. end;
  1585. ibenumsym :
  1586. begin
  1587. readcommonsym('Enumeration symbol ');
  1588. write (space,' Definition : ');
  1589. readderef;
  1590. writeln(space,' Value : ',getlongint);
  1591. end;
  1592. ibsyssym :
  1593. begin
  1594. readcommonsym('Internal system symbol ');
  1595. writeln(space,' Internal Nr : ',getlongint);
  1596. end;
  1597. ibmacrosym :
  1598. begin
  1599. readcommonsym('Macro symbol ');
  1600. writeln(space,' Name: ',getstring);
  1601. writeln(space,' Defined: ',getbyte);
  1602. writeln(space,' Compiler var: ',getbyte);
  1603. len:=getlongint;
  1604. writeln(space,' Value length: ',len);
  1605. if len > 0 then
  1606. begin
  1607. getmem(pc,len+1);
  1608. getdata(pc^,len);
  1609. (pc+len)^:= #0;
  1610. writeln(space,' Value: "',pc,'"');
  1611. freemem(pc,len+1);
  1612. end;
  1613. end;
  1614. ibpropertysym :
  1615. begin
  1616. readcommonsym('Property ');
  1617. i:=getlongint;
  1618. writeln(space,' PropOptions : ',i);
  1619. write (space,' OverrideProp : ');
  1620. readderef;
  1621. write (space,' Prop Type : ');
  1622. readderef;
  1623. writeln(space,' Index : ',getlongint);
  1624. writeln(space,' Default : ',getlongint);
  1625. write (space,' Index Type : ');
  1626. readderef;
  1627. write (space,' Readaccess : ');
  1628. readpropaccesslist(space+' Sym: ');
  1629. write (space,' Writeaccess : ');
  1630. readpropaccesslist(space+' Sym: ');
  1631. write (space,' Storedaccess : ');
  1632. readpropaccesslist(space+' Sym: ');
  1633. end;
  1634. iberror :
  1635. begin
  1636. Writeln('!! Error in PPU');
  1637. exit;
  1638. end;
  1639. ibendsyms :
  1640. break;
  1641. else
  1642. WriteLn('!! Skipping unsupported PPU Entry in Symbols: ',b);
  1643. end;
  1644. if not EndOfEntry then
  1645. Writeln('!! Entry has more information stored');
  1646. until false;
  1647. end;
  1648. end;
  1649. {****************************************************************************
  1650. Read defintions Part
  1651. ****************************************************************************}
  1652. procedure readdefinitions(const s:string);
  1653. type
  1654. tordtype = (
  1655. uvoid,
  1656. u8bit,u16bit,u32bit,u64bit,
  1657. s8bit,s16bit,s32bit,s64bit,
  1658. bool8bit,bool16bit,bool32bit,bool64bit,
  1659. uchar,uwidechar,scurrency
  1660. );
  1661. tobjecttyp = (odt_none,
  1662. odt_class,
  1663. odt_object,
  1664. odt_interfacecom,
  1665. odt_interfacecorba,
  1666. odt_cppclass,
  1667. odt_dispinterface
  1668. );
  1669. tvarianttype = (
  1670. vt_normalvariant,vt_olevariant
  1671. );
  1672. var
  1673. b : byte;
  1674. l,j : longint;
  1675. calloption : tproccalloption;
  1676. procoptions : tprocoptions;
  1677. procinfooptions : tprocinfoflag;
  1678. begin
  1679. with ppufile do
  1680. begin
  1681. if space<>'' then
  1682. Writeln(space,'------ ',s,' ------');
  1683. if readentry<>ibstartdefs then
  1684. Writeln('!! ibstartdefs not found');
  1685. repeat
  1686. b:=readentry;
  1687. case b of
  1688. ibpointerdef :
  1689. begin
  1690. readcommondef('Pointer definition');
  1691. write (space,' Pointed Type : ');
  1692. readderef;
  1693. writeln(space,' Is Far : ',(getbyte<>0));
  1694. end;
  1695. iborddef :
  1696. begin
  1697. readcommondef('Ordinal definition');
  1698. write (space,' Base type : ');
  1699. b:=getbyte;
  1700. case tordtype(b) of
  1701. uvoid : writeln('uvoid');
  1702. u8bit : writeln('u8bit');
  1703. u16bit : writeln('u16bit');
  1704. u32bit : writeln('s32bit');
  1705. u64bit : writeln('u64bit');
  1706. s8bit : writeln('s8bit');
  1707. s16bit : writeln('s16bit');
  1708. s32bit : writeln('s32bit');
  1709. s64bit : writeln('s64bit');
  1710. bool8bit : writeln('bool8bit');
  1711. bool16bit : writeln('bool16bit');
  1712. bool32bit : writeln('bool32bit');
  1713. bool64bit : writeln('bool64bit');
  1714. uchar : writeln('uchar');
  1715. uwidechar : writeln('uwidechar');
  1716. scurrency : writeln('ucurrency');
  1717. else writeln('!! Warning: Invalid base type ',b);
  1718. end;
  1719. writeln(space,' Range : ',constexp.tostr(getexprint),' to ',constexp.tostr(getexprint));
  1720. end;
  1721. ibfloatdef :
  1722. begin
  1723. readcommondef('Float definition');
  1724. writeln(space,' Float type : ',getbyte);
  1725. end;
  1726. ibarraydef :
  1727. begin
  1728. readcommondef('Array definition');
  1729. write (space,' Element type : ');
  1730. readderef;
  1731. write (space,' Range Type : ');
  1732. readderef;
  1733. writeln(space,' Range : ',getaint,' to ',getaint);
  1734. write (space,' Options : ');
  1735. readarraydefoptions;
  1736. end;
  1737. ibprocdef :
  1738. begin
  1739. readcommondef('Procedure definition');
  1740. read_abstract_proc_def(calloption,procoptions);
  1741. if (po_has_mangledname in procoptions) then
  1742. writeln(space,' Mangled name : ',getstring);
  1743. writeln(space,' Number : ',getword);
  1744. writeln(space,' Level : ',getbyte);
  1745. write (space,' Class : ');
  1746. readderef;
  1747. write (space,' Procsym : ');
  1748. readderef;
  1749. write (space,' File Pos : ');
  1750. readposinfo;
  1751. writeln(space,' Visibility : ',Visibility2Str(ppufile.getbyte));
  1752. write (space,' SymOptions : ');
  1753. readsymoptions;
  1754. if tsystemcpu(ppufile.header.cpu)=cpu_powerpc then
  1755. begin
  1756. { library symbol for AmigaOS/MorphOS }
  1757. write (space,' Library symbol : ');
  1758. readderef;
  1759. end;
  1760. if (po_has_importdll in procoptions) then
  1761. writeln(space,' Import DLL : ',getstring);
  1762. if (po_has_importname in procoptions) then
  1763. writeln(space,' Import Name : ',getstring);
  1764. writeln(space,' Import Nr : ',getword);
  1765. if (po_msgint in procoptions) then
  1766. writeln(space,' MsgInt : ',getlongint);
  1767. if (po_msgstr in procoptions) then
  1768. writeln(space,' MsgStr : ',getstring);
  1769. if (po_dispid in procoptions) then
  1770. writeln(space,' DispID: ',ppufile.getlongint);
  1771. if (po_has_inlininginfo in procoptions) then
  1772. begin
  1773. write (space,' FuncretSym : ');
  1774. readderef;
  1775. ppufile.getsmallset(procinfooptions);
  1776. writeln(space,' ProcInfoOptions : ',dword(procinfooptions));
  1777. end;
  1778. b:=ppufile.getbyte;
  1779. if b<>0 then
  1780. begin
  1781. write (space,' Alias names : ');
  1782. for j:=1 to b do
  1783. begin
  1784. write(ppufile.getstring);
  1785. if j<b then
  1786. write(', ');
  1787. end;
  1788. writeln;
  1789. end;
  1790. if not EndOfEntry then
  1791. Writeln('!! Entry has more information stored');
  1792. space:=' '+space;
  1793. { parast }
  1794. readdefinitions('parast');
  1795. readsymbols('parast');
  1796. { localst }
  1797. if (po_has_inlininginfo in procoptions) then
  1798. begin
  1799. readdefinitions('localst');
  1800. readsymbols('localst');
  1801. end;
  1802. if (po_has_inlininginfo in procoptions) then
  1803. readnodetree;
  1804. delete(space,1,4);
  1805. end;
  1806. ibprocvardef :
  1807. begin
  1808. readcommondef('Procedural type (ProcVar) definition');
  1809. read_abstract_proc_def(calloption,procoptions);
  1810. if not EndOfEntry then
  1811. Writeln('!! Entry has more information stored');
  1812. space:=' '+space;
  1813. { parast }
  1814. readdefinitions('parast');
  1815. readsymbols('parast');
  1816. delete(space,1,4);
  1817. end;
  1818. ibshortstringdef :
  1819. begin
  1820. readcommondef('ShortString definition');
  1821. writeln(space,' Length : ',getbyte);
  1822. end;
  1823. ibwidestringdef :
  1824. begin
  1825. readcommondef('WideString definition');
  1826. writeln(space,' Length : ',getlongint);
  1827. end;
  1828. ibansistringdef :
  1829. begin
  1830. readcommondef('AnsiString definition');
  1831. writeln(space,' Length : ',getlongint);
  1832. end;
  1833. iblongstringdef :
  1834. begin
  1835. readcommondef('Longstring definition');
  1836. writeln(space,' Length : ',getlongint);
  1837. end;
  1838. ibrecorddef :
  1839. begin
  1840. readcommondef('Record definition');
  1841. writeln(space,' FieldAlign : ',getbyte);
  1842. writeln(space,' RecordAlign : ',getbyte);
  1843. writeln(space,' PadAlign : ',getbyte);
  1844. writeln(space,'UseFieldAlignment : ',getbyte);
  1845. writeln(space,' DataSize : ',getaint);
  1846. if not EndOfEntry then
  1847. Writeln('!! Entry has more information stored');
  1848. {read the record definitions and symbols}
  1849. space:=' '+space;
  1850. readdefinitions('fields');
  1851. readsymbols('fields');
  1852. Delete(space,1,4);
  1853. end;
  1854. ibobjectdef :
  1855. begin
  1856. readcommondef('Object/Class definition');
  1857. b:=getbyte;
  1858. write (space,' Type : ');
  1859. case tobjecttyp(b) of
  1860. odt_class : writeln('class');
  1861. odt_object : writeln('object');
  1862. odt_interfacecom : writeln('interfacecom');
  1863. odt_interfacecorba : writeln('interfacecorba');
  1864. odt_cppclass : writeln('cppclass');
  1865. else writeln('!! Warning: Invalid object type ',b);
  1866. end;
  1867. writeln(space,' Name of Class : ',getstring);
  1868. writeln(space,' DataSize : ',getaint);
  1869. writeln(space,' FieldAlign : ',getbyte);
  1870. writeln(space,' RecordAlign : ',getbyte);
  1871. writeln(space,' Vmt offset : ',getlongint);
  1872. write (space, ' Ancestor Class : ');
  1873. readderef;
  1874. write (space,' Options : ');
  1875. readobjectdefoptions;
  1876. if tobjecttyp(b) in [odt_interfacecom,odt_interfacecorba,odt_dispinterface] then
  1877. begin
  1878. { IIDGUID }
  1879. for j:=1to 16 do
  1880. getbyte;
  1881. writeln(space,' IID String : ',getstring);
  1882. writeln(space,' Last VTable idx : ',getlongint);
  1883. end;
  1884. l:=getlongint;
  1885. writeln(space,' VMT entries: ',l);
  1886. for j:=1 to l do
  1887. begin
  1888. write(space,' ');
  1889. readderef;
  1890. writeln(space,' Visibility: ',Visibility2Str(getbyte));
  1891. end;
  1892. if tobjecttyp(b) in [odt_class,odt_interfacecorba] then
  1893. begin
  1894. l:=getlongint;
  1895. writeln(space,' Impl Intf Count : ',l);
  1896. for j:=1 to l do
  1897. begin
  1898. write (space,' - Definition : ');
  1899. readderef;
  1900. writeln(space,' IOffset : ',getlongint);
  1901. end;
  1902. end;
  1903. if df_copied_def in current_defoptions then
  1904. begin
  1905. writeln(' Copy of def: ');
  1906. readderef;
  1907. end;
  1908. if not EndOfEntry then
  1909. Writeln('!! Entry has more information stored');
  1910. if not(df_copied_def in current_defoptions) then
  1911. begin
  1912. {read the record definitions and symbols}
  1913. space:=' '+space;
  1914. readdefinitions('fields');
  1915. readsymbols('fields');
  1916. Delete(space,1,4);
  1917. end;
  1918. end;
  1919. ibfiledef :
  1920. begin
  1921. ReadCommonDef('File definition');
  1922. write (space,' Type : ');
  1923. case getbyte of
  1924. 0 : writeln('Text');
  1925. 1 : begin
  1926. writeln('Typed');
  1927. write (space,' File of Type : ');
  1928. readderef;
  1929. end;
  1930. 2 : writeln('Untyped');
  1931. end;
  1932. end;
  1933. ibformaldef :
  1934. begin
  1935. readcommondef('Generic definition (void-typ)');
  1936. writeln(space,' Is Typed : ',(getbyte<>0));
  1937. end;
  1938. ibundefineddef :
  1939. readcommondef('Undefined definition (generic parameter)');
  1940. ibenumdef :
  1941. begin
  1942. readcommondef('Enumeration type definition');
  1943. write(space,'Base enumeration type : ');
  1944. readderef;
  1945. writeln(space,' Smallest element : ',getaint);
  1946. writeln(space,' Largest element : ',getaint);
  1947. writeln(space,' Size : ',getaint);
  1948. end;
  1949. ibclassrefdef :
  1950. begin
  1951. readcommondef('Class reference definition');
  1952. write (space,' Pointed Type : ');
  1953. readderef;
  1954. end;
  1955. ibsetdef :
  1956. begin
  1957. readcommondef('Set definition');
  1958. write (space,' Element type : ');
  1959. readderef;
  1960. writeln(space,' Size : ',getaint);
  1961. writeln(space,' Set Base : ',getaint);
  1962. writeln(space,' Set Max : ',getaint);
  1963. end;
  1964. ibvariantdef :
  1965. begin
  1966. readcommondef('Variant definition');
  1967. write (space,' Varianttype : ');
  1968. b:=getbyte;
  1969. case tvarianttype(b) of
  1970. vt_normalvariant :
  1971. writeln('Normal');
  1972. vt_olevariant :
  1973. writeln('OLE');
  1974. else
  1975. writeln('!! Warning: Invalid varianttype ',b);
  1976. end;
  1977. end;
  1978. iberror :
  1979. begin
  1980. Writeln('!! Error in PPU');
  1981. exit;
  1982. end;
  1983. ibenddefs :
  1984. break;
  1985. else
  1986. WriteLn('!! Skipping unsupported PPU Entry in definitions: ',b);
  1987. end;
  1988. if not EndOfEntry then
  1989. Writeln('!! Entry has more information stored');
  1990. until false;
  1991. end;
  1992. end;
  1993. {****************************************************************************
  1994. Read General Part
  1995. ****************************************************************************}
  1996. procedure readinterface;
  1997. var
  1998. b : byte;
  1999. sourcenumber : longint;
  2000. begin
  2001. with ppufile do
  2002. begin
  2003. repeat
  2004. b:=readentry;
  2005. case b of
  2006. ibmodulename :
  2007. Writeln('Module Name: ',getstring);
  2008. ibsourcefiles :
  2009. begin
  2010. sourcenumber:=1;
  2011. while not EndOfEntry do
  2012. begin
  2013. Writeln('Source file ',sourcenumber,' : ',getstring,' ',filetimestring(getlongint));
  2014. inc(sourcenumber);
  2015. end;
  2016. end;
  2017. {$IFDEF MACRO_DIFF_HINT}
  2018. ibusedmacros :
  2019. begin
  2020. while not EndOfEntry do
  2021. begin
  2022. Write('Conditional ',getstring);
  2023. b:=getbyte;
  2024. if boolean(b)=true then
  2025. write(' defined at startup')
  2026. else
  2027. write(' not defined at startup');
  2028. b:=getbyte;
  2029. if boolean(b)=true then
  2030. writeln(' was used')
  2031. else
  2032. writeln;
  2033. end;
  2034. end;
  2035. {$ENDIF}
  2036. ibloadunit :
  2037. ReadLoadUnit;
  2038. iblinkunitofiles :
  2039. ReadLinkContainer('Link unit object file: ');
  2040. iblinkunitstaticlibs :
  2041. ReadLinkContainer('Link unit static lib: ');
  2042. iblinkunitsharedlibs :
  2043. ReadLinkContainer('Link unit shared lib: ');
  2044. iblinkotherofiles :
  2045. ReadLinkContainer('Link other object file: ');
  2046. iblinkotherstaticlibs :
  2047. ReadLinkContainer('Link other static lib: ');
  2048. iblinkothersharedlibs :
  2049. ReadLinkContainer('Link other shared lib: ');
  2050. iblinkotherframeworks:
  2051. ReadLinkContainer('Link framework: ');
  2052. ibmainname:
  2053. Writeln('Specified main program symbol name: ',getstring);
  2054. ibImportSymbols :
  2055. ReadImportSymbols;
  2056. ibderefdata :
  2057. ReadDerefData;
  2058. ibderefmap :
  2059. ReadDerefMap;
  2060. ibwpofile :
  2061. ReadWpoFileInfo;
  2062. ibresources :
  2063. ReadLinkContainer('Resource file: ');
  2064. iberror :
  2065. begin
  2066. Writeln('Error in PPU');
  2067. exit;
  2068. end;
  2069. ibendinterface :
  2070. break;
  2071. else
  2072. WriteLn('!! Skipping unsupported PPU Entry in General Part: ',b);
  2073. end;
  2074. until false;
  2075. end;
  2076. end;
  2077. {****************************************************************************
  2078. Read Implementation Part
  2079. ****************************************************************************}
  2080. procedure readimplementation;
  2081. var
  2082. b : byte;
  2083. begin
  2084. with ppufile do
  2085. begin
  2086. repeat
  2087. b:=readentry;
  2088. case b of
  2089. ibasmsymbols :
  2090. ReadAsmSymbols;
  2091. ibloadunit :
  2092. ReadLoadUnit;
  2093. iberror :
  2094. begin
  2095. Writeln('Error in PPU');
  2096. exit;
  2097. end;
  2098. ibendimplementation :
  2099. break;
  2100. else
  2101. WriteLn('!! Skipping unsupported PPU Entry in Implementation: ',b);
  2102. end;
  2103. until false;
  2104. end;
  2105. end;
  2106. procedure dofile (filename : string);
  2107. begin
  2108. { reset }
  2109. space:='';
  2110. { fix filename }
  2111. if pos('.',filename)=0 then
  2112. filename:=filename+'.ppu';
  2113. ppufile:=tppufile.create(filename);
  2114. if not ppufile.openfile then
  2115. begin
  2116. writeln ('IO-Error when opening : ',filename,', Skipping');
  2117. exit;
  2118. end;
  2119. { PPU File is open, check for PPU Id }
  2120. if not ppufile.CheckPPUID then
  2121. begin
  2122. writeln(Filename,' : Not a valid PPU file, Skipping');
  2123. exit;
  2124. end;
  2125. { Check PPU Version }
  2126. Writeln('Analyzing ',filename,' (v',ppufile.GetPPUVersion,')');
  2127. if ppufile.GetPPUVersion<16 then
  2128. begin
  2129. writeln(Filename,' : Old PPU Formats (<v16) are not supported, Skipping');
  2130. exit;
  2131. end;
  2132. { Write PPU Header Information }
  2133. if (verbose and v_header)<>0 then
  2134. begin
  2135. Writeln;
  2136. Writeln('Header');
  2137. Writeln('-------');
  2138. with ppufile.header do
  2139. begin
  2140. Writeln('Compiler version : ',ppufile.header.compiler shr 14,'.',
  2141. (ppufile.header.compiler shr 7) and $7f,'.',
  2142. ppufile.header.compiler and $7f);
  2143. WriteLn('Target processor : ',Cpu2Str(cpu));
  2144. WriteLn('Target operating system : ',Target2Str(target));
  2145. Writeln('Unit flags : ',PPUFlags2Str(flags));
  2146. Writeln('FileSize (w/o header) : ',size);
  2147. Writeln('Checksum : ',hexstr(checksum,8));
  2148. Writeln('Interface Checksum : ',hexstr(interface_checksum,8));
  2149. Writeln('Definitions stored : ',tostr(deflistsize));
  2150. Writeln('Symbols stored : ',tostr(symlistsize));
  2151. end;
  2152. end;
  2153. {read the general stuff}
  2154. if (verbose and v_interface)<>0 then
  2155. begin
  2156. Writeln;
  2157. Writeln('Interface section');
  2158. Writeln('------------------');
  2159. readinterface;
  2160. end
  2161. else
  2162. ppufile.skipuntilentry(ibendinterface);
  2163. {read the definitions}
  2164. if (verbose and v_defs)<>0 then
  2165. begin
  2166. Writeln;
  2167. Writeln('Interface definitions');
  2168. Writeln('----------------------');
  2169. readdefinitions('interface');
  2170. end
  2171. else
  2172. ppufile.skipuntilentry(ibenddefs);
  2173. {read the symbols}
  2174. if (verbose and v_syms)<>0 then
  2175. begin
  2176. Writeln;
  2177. Writeln('Interface Symbols');
  2178. Writeln('------------------');
  2179. readsymbols('interface');
  2180. end
  2181. else
  2182. ppufile.skipuntilentry(ibendsyms);
  2183. {read the macro symbols}
  2184. if (verbose and v_syms)<>0 then
  2185. begin
  2186. Writeln;
  2187. Writeln('Interface Macro Symbols');
  2188. Writeln('-----------------------');
  2189. end;
  2190. if ppufile.readentry<>ibexportedmacros then
  2191. begin
  2192. Writeln('!! Error in PPU');
  2193. exit;
  2194. end;
  2195. if boolean(ppufile.getbyte) then
  2196. begin
  2197. {skip the definition section for macros (since they are never used) }
  2198. ppufile.skipuntilentry(ibenddefs);
  2199. {read the macro symbols}
  2200. if (verbose and v_syms)<>0 then
  2201. readsymbols('interface macro')
  2202. else
  2203. ppufile.skipuntilentry(ibendsyms);
  2204. end
  2205. else
  2206. Writeln('(no exported macros)');
  2207. {read the implementation stuff}
  2208. if (verbose and v_implementation)<>0 then
  2209. begin
  2210. Writeln;
  2211. Writeln('Implementation section');
  2212. Writeln('-----------------------');
  2213. readimplementation;
  2214. end
  2215. else
  2216. ppufile.skipuntilentry(ibendimplementation);
  2217. {read the static symtable}
  2218. if (ppufile.header.flags and uf_local_symtable)<>0 then
  2219. begin
  2220. if (verbose and v_defs)<>0 then
  2221. begin
  2222. Writeln;
  2223. Writeln('Static definitions');
  2224. Writeln('----------------------');
  2225. readdefinitions('implementation');
  2226. end
  2227. else
  2228. ppufile.skipuntilentry(ibenddefs);
  2229. {read the symbols}
  2230. if (verbose and v_syms)<>0 then
  2231. begin
  2232. Writeln;
  2233. Writeln('Static Symbols');
  2234. Writeln('------------------');
  2235. readsymbols('implementation');
  2236. end
  2237. else
  2238. ppufile.skipuntilentry(ibendsyms);
  2239. end;
  2240. {shutdown ppufile}
  2241. ppufile.closefile;
  2242. ppufile.free;
  2243. Writeln;
  2244. end;
  2245. procedure help;
  2246. begin
  2247. writeln('usage: ppudump [options] <filename1> <filename2>...');
  2248. writeln;
  2249. writeln('[options] can be:');
  2250. writeln(' -V<verbose> Set verbosity to <verbose>');
  2251. writeln(' H - Show header info');
  2252. writeln(' I - Show interface');
  2253. writeln(' M - Show implementation');
  2254. writeln(' S - Show interface symbols');
  2255. writeln(' D - Show interface definitions');
  2256. // writeln(' B - Show browser info');
  2257. writeln(' A - Show all');
  2258. writeln(' -h, -? This helpscreen');
  2259. halt;
  2260. end;
  2261. var
  2262. startpara,
  2263. nrfile,i : longint;
  2264. para : string;
  2265. begin
  2266. writeln(Title+' '+Version);
  2267. writeln(Copyright);
  2268. writeln;
  2269. if paramcount<1 then
  2270. begin
  2271. writeln('usage: dumpppu [options] <filename1> <filename2>...');
  2272. halt(1);
  2273. end;
  2274. { turn verbose on by default }
  2275. verbose:=v_all;
  2276. { read options }
  2277. startpara:=1;
  2278. while copy(paramstr(startpara),1,1)='-' do
  2279. begin
  2280. para:=paramstr(startpara);
  2281. case upcase(para[2]) of
  2282. 'V' : begin
  2283. verbose:=0;
  2284. for i:=3 to length(para) do
  2285. case upcase(para[i]) of
  2286. 'H' : verbose:=verbose or v_header;
  2287. 'I' : verbose:=verbose or v_interface;
  2288. 'M' : verbose:=verbose or v_implementation;
  2289. 'D' : verbose:=verbose or v_defs;
  2290. 'S' : verbose:=verbose or v_syms;
  2291. 'A' : verbose:=verbose or v_all;
  2292. end;
  2293. end;
  2294. 'H' : help;
  2295. '?' : help;
  2296. end;
  2297. inc(startpara);
  2298. end;
  2299. { process files }
  2300. for nrfile:=startpara to paramcount do
  2301. dofile (paramstr(nrfile));
  2302. if has_errors then
  2303. Halt(1);
  2304. end.