3 * CVDump - Parses through a Visual Studio .DBG file in CodeView 4 format
4 * and dumps the info to STDOUT in a human-readable format
6 * Copyright 2000 John R. Sheets
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
33 #ifdef HAVE_SYS_TYPES_H
34 # include <sys/types.h>
36 #ifdef HAVE_SYS_STAT_H
37 # include <sys/stat.h>
39 #ifdef HAVE_SYS_MMAN_H
47 #include "wine/mscvpdb.h"
52 * IMAGE_SEPARATE_DEBUG_HEADER
53 * IMAGE_SECTION_HEADER[]
54 * IMAGE_DEBUG_DIRECTORY[]
56 * debug data (typical example)
57 * - IMAGE_DEBUG_TYPE_MISC
58 * - IMAGE_DEBUG_TYPE_FPO
59 * - IMAGE_DEBUG_TYPE_CODEVIEW
67 * (hdr) IMAGE_SEPARATE_DEBUG_HEADER - .DBG-specific file header; holds info that
68 * applies to the file as a whole, including # of COFF sections, file offsets, etc.
69 * (hdr) IMAGE_SECTION_HEADER - list of COFF sections copied verbatim from .EXE;
70 * although this directory contains file offsets, these offsets are meaningless
71 * in the context of the .DBG file, because only the section headers are copied
72 * to the .DBG file... not the binary data it points to.
73 * (hdr) IMAGE_DEBUG_DIRECTORY - list of different formats of debug info contained in file
74 * (see IMAGE_DEBUG_TYPE_* descriptions below); tells where each section starts
75 * (hdr) OMFSignature (CV) - Contains "NBxx" signature, plus file offset telling how far
76 * into the IMAGE_DEBUG_TYPE_CODEVIEW section the OMFDirHeader and OMFDirEntry's sit
77 * (data) IMAGE_DEBUG_TYPE_MISC - usually holds name of original .EXE file
78 * (data) IMAGE_DEBUG_TYPE_FPO - Frame Pointer Optimization data; used for dealing with
79 * optimized stack frames (optional)
80 * (data) IMAGE_DEBUG_TYPE_CODEVIEW - *** THE GOOD STUFF ***
81 * This block of data contains all the symbol tables, line number info, etc.,
82 * that the Visual C++ debugger needs.
83 * (hdr) OMFDirHeader (CV) -
84 * (hdr) OMFDirEntry (CV) - list of subsections within CodeView debug data section
88 * The .DBG file typically has three arrays of directory entries, which tell
89 * the OS or debugger where in the file to look for the actual data
91 * IMAGE_SECTION_HEADER - number of entries determined by:
92 * (IMAGE_SEPARATE_DEBUG_HEADER.NumberOfSections)
94 * IMAGE_DEBUG_DIRECTORY - number of entries determined by:
95 * (IMAGE_SEPARATE_DEBUG_HEADER.DebugDirectorySize / sizeof (IMAGE_DEBUG_DIRECTORY))
97 * OMFDirEntry - number of entries determined by:
101 extern const IMAGE_NT_HEADERS
* PE_nt_headers
;
102 static const void* cv_base
/* = 0 */;
104 static int dump_cv_sst_module(const OMFDirEntry
* omfde
)
106 const OMFModule
* module
;
107 const OMFSegDesc
* segDesc
;
110 module
= PRD(Offset(cv_base
) + omfde
->lfo
, sizeof(OMFModule
));
111 if (!module
) {printf("Can't get the OMF-Module, aborting\n"); return FALSE
;}
113 printf(" olvNumber: %u\n", module
->ovlNumber
);
114 printf(" iLib: %u\n", module
->iLib
);
115 printf(" cSeg: %u\n", module
->cSeg
);
116 printf(" Style: %c%c\n", module
->Style
[0], module
->Style
[1]);
117 printf(" Name: %.*s\n",
118 *(const BYTE
*)((const char*)(module
+ 1) + sizeof(OMFSegDesc
) * module
->cSeg
),
119 (const char*)(module
+ 1) + sizeof(OMFSegDesc
) * module
->cSeg
+ 1);
121 segDesc
= PRD(Offset(module
+ 1), sizeof(OMFSegDesc
) * module
->cSeg
);
122 if (!segDesc
) {printf("Can't get the OMF-SegDesc, aborting\n"); return FALSE
;}
124 for (i
= 0; i
< module
->cSeg
; i
++)
126 printf (" segment #%2d: offset = [0x%8x], size = [0x%8x]\n",
127 segDesc
->Seg
, segDesc
->Off
, segDesc
->cbSeg
);
133 static int dump_cv_sst_global_pub(const OMFDirEntry
* omfde
)
136 const OMFSymHash
* header
;
139 fileoffset
= Offset(cv_base
) + omfde
->lfo
;
140 printf (" GlobalPub section starts at file offset 0x%lx\n", fileoffset
);
141 printf (" Symbol table starts at 0x%lx\n", fileoffset
+ sizeof (OMFSymHash
));
143 printf ("\n ----- Begin Symbol Table -----\n");
145 header
= PRD(fileoffset
, sizeof(OMFSymHash
));
146 if (!header
) {printf("Can't get OMF-SymHash, aborting\n");return FALSE
;}
148 symbols
= PRD(fileoffset
+ sizeof(OMFSymHash
), header
->cbSymbol
);
149 if (!symbols
) {printf("Can't OMF-SymHash details, aborting\n"); return FALSE
;}
151 codeview_dump_symbols(symbols
, header
->cbSymbol
);
156 static int dump_cv_sst_global_sym(const OMFDirEntry
* omfde
)
158 /*** NOT YET IMPLEMENTED ***/
162 static int dump_cv_sst_static_sym(const OMFDirEntry
* omfde
)
164 /*** NOT YET IMPLEMENTED ***/
168 static int dump_cv_sst_libraries(const OMFDirEntry
* omfde
)
170 /*** NOT YET IMPLEMENTED ***/
174 static int dump_cv_sst_global_types(const OMFDirEntry
* omfde
)
177 const OMFGlobalTypes
*types
;
181 fileoffset
= Offset(cv_base
) + omfde
->lfo
;
182 printf (" GlobalTypes section starts at file offset 0x%lx\n", fileoffset
);
184 printf ("\n ----- Begin Global Types Table -----\n");
186 types
= PRD(fileoffset
, sizeof(OMFGlobalTypes
));
187 if (!types
) {printf("Can't get OMF-GlobalTypes, aborting\n");return FALSE
;}
189 sz
= omfde
->cb
- sizeof(OMFGlobalTypes
) - sizeof(DWORD
) * types
->cTypes
;
190 data
= PRD(fileoffset
+ sizeof(OMFGlobalTypes
) + sizeof(DWORD
) * types
->cTypes
, sz
);
191 if (!data
) {printf("Can't OMF-SymHash details, aborting\n"); return FALSE
;}
194 * - for NB07 & NB08 (that we don't support yet), offsets are from types
195 * - for NB09, offsets are from data
196 * For now, we only support the latter
198 codeview_dump_types_from_offsets(data
, (const DWORD
*)(types
+ 1), types
->cTypes
);
203 static int dump_cv_sst_seg_map(const OMFDirEntry
* omfde
)
205 const OMFSegMap
* segMap
;
206 const OMFSegMapDesc
* segMapDesc
;
209 segMap
= PRD(Offset(cv_base
) + omfde
->lfo
, sizeof(OMFSegMap
));
210 if (!segMap
) {printf("Can't get SegMap, aborting\n");return FALSE
;}
212 printf(" cSeg: %u\n", segMap
->cSeg
);
213 printf(" cSegLog: %u\n", segMap
->cSegLog
);
215 segMapDesc
= PRD(Offset(segMap
+ 1), segMap
->cSeg
* sizeof(OMFSegDesc
));
216 if (!segMapDesc
) {printf("Can't get SegDescr array, aborting\n");return FALSE
;}
218 for (i
= 0; i
< segMap
->cSeg
; i
++)
220 printf(" SegDescr #%2d\n", i
+ 1);
221 printf(" flags: %04X\n", segMapDesc
[i
].flags
);
222 printf(" ovl: %u\n", segMapDesc
[i
].ovl
);
223 printf(" group: %u\n", segMapDesc
[i
].group
);
224 printf(" frame: %u\n", segMapDesc
[i
].frame
);
225 printf(" iSegName: %u\n", segMapDesc
[i
].iSegName
);
226 printf(" iClassName: %u\n", segMapDesc
[i
].iClassName
);
227 printf(" offset: %lu\n", segMapDesc
[i
].offset
);
228 printf(" cbSeg: %lu\n", segMapDesc
[i
].cbSeg
);
234 static int dump_cv_sst_file_index(const OMFDirEntry
* omfde
)
236 /*** NOT YET IMPLEMENTED ***/
240 static int dump_cv_sst_src_module(const OMFDirEntry
* omfde
)
244 const unsigned long* seg_info_dw
;
245 const unsigned short* seg_info_w
;
247 const OMFSourceModule
* sourceModule
;
248 const OMFSourceFile
* sourceFile
;
249 const OMFSourceLine
* sourceLine
;
251 rawdata
= PRD(Offset(cv_base
) + omfde
->lfo
, omfde
->cb
);
252 if (!rawdata
) {printf("Can't get srcModule subsection details, aborting\n");return FALSE
;}
254 /* FIXME: check ptr validity */
255 sourceModule
= (const void*)rawdata
;
256 printf (" Module table: Found %d file(s) and %d segment(s)\n",
257 sourceModule
->cFile
, sourceModule
->cSeg
);
258 for (i
= 0; i
< sourceModule
->cFile
; i
++)
260 printf (" File #%2d begins at an offset of 0x%lx in this section\n",
261 i
+ 1, sourceModule
->baseSrcFile
[i
]);
264 /* FIXME: check ptr validity */
265 seg_info_dw
= (const void*)((const char*)(sourceModule
+ 1) +
266 sizeof(unsigned long) * (sourceModule
->cFile
- 1));
267 seg_info_w
= (const unsigned short*)(&seg_info_dw
[sourceModule
->cSeg
* 2]);
268 for (i
= 0; i
< sourceModule
->cSeg
; i
++)
270 printf (" Segment #%2d start = 0x%lx, end = 0x%lx, seg index = %u\n",
271 i
+ 1, seg_info_dw
[i
* 2], seg_info_dw
[(i
* 2) + 1],
274 ofs
= sizeof(OMFSourceModule
) + sizeof(unsigned long) * (sourceModule
->cFile
- 1) +
275 sourceModule
->cSeg
* (2 * sizeof(unsigned long) + sizeof(unsigned short));
276 ofs
= (ofs
+ 3) & ~3;
278 /* the OMFSourceFile is quite unpleasant to use:
280 * unsigned short number of segments
281 * unsigned short reserved
282 * unsigned long baseSrcLn[# segments]
283 * unsigned long offset[2 * #segments]
284 * odd indices are start offsets
285 * even indices are end offsets
286 * unsigned char string length for file name
287 * char file name (length is previous field)
289 /* FIXME: check ptr validity */
290 sourceFile
= (const void*)(rawdata
+ ofs
);
291 seg_info_dw
= (const void*)((const char*)sourceFile
+ 2 * sizeof(unsigned short) +
292 sourceFile
->cSeg
* sizeof(unsigned long));
294 ofs
+= 2 * sizeof(unsigned short) + 3 * sourceFile
->cSeg
* sizeof(unsigned long);
296 printf(" File table: %.*s\n",
297 *(const BYTE
*)((const char*)sourceModule
+ ofs
), (const char*)sourceModule
+ ofs
+ 1);
299 for (i
= 0; i
< sourceFile
->cSeg
; i
++)
301 printf (" Segment #%2d start = 0x%lx, end = 0x%lx, offset = 0x%lx\n",
302 i
+ 1, seg_info_dw
[i
* 2], seg_info_dw
[(i
* 2) + 1], sourceFile
->baseSrcLn
[i
]);
304 /* add file name length */
305 ofs
+= *(const BYTE
*)((const char*)sourceModule
+ ofs
) + 1;
306 ofs
= (ofs
+ 3) & ~3;
308 for (i
= 0; i
< sourceModule
->cSeg
; i
++)
310 sourceLine
= (const void*)(rawdata
+ ofs
);
311 seg_info_dw
= (const void*)((const char*)sourceLine
+ 2 * sizeof(unsigned short));
312 seg_info_w
= (const void*)(&seg_info_dw
[sourceLine
->cLnOff
]);
314 printf (" Line table #%2d: Found %d line numbers for segment index %d\n",
315 i
, sourceLine
->cLnOff
, sourceLine
->Seg
);
317 for (j
= 0; j
< sourceLine
->cLnOff
; j
++)
319 printf (" Pair #%2d: offset = [0x%8lx], linenumber = %d\n",
320 j
+ 1, seg_info_dw
[j
], seg_info_w
[j
]);
322 ofs
+= 2 * sizeof(unsigned short) +
323 sourceLine
->cLnOff
* (sizeof(unsigned long) + sizeof(unsigned short));
324 ofs
= (ofs
+ 3) & ~3;
330 static int dump_cv_sst_align_sym(const OMFDirEntry
* omfde
)
332 const char* rawdata
= PRD(Offset(cv_base
) + omfde
->lfo
, omfde
->cb
);
334 if (!rawdata
) {printf("Can't get srcAlignSym subsection details, aborting\n");return FALSE
;}
335 if (omfde
->cb
< sizeof(DWORD
)) return TRUE
;
336 codeview_dump_symbols(rawdata
+ sizeof(DWORD
), omfde
->cb
- sizeof(DWORD
));
341 static void dump_codeview_all_modules(const OMFDirHeader
*omfdh
)
344 const OMFDirEntry
* dirEntry
;
347 if (!omfdh
|| !omfdh
->cDir
) return;
349 dirEntry
= PRD(Offset(omfdh
+ 1), omfdh
->cDir
* sizeof(OMFDirEntry
));
350 if (!dirEntry
) {printf("Can't read DirEntry array, aborting\n"); return;}
352 for (i
= 0; i
< omfdh
->cDir
; i
++)
354 switch (dirEntry
[i
].SubSection
)
356 case sstModule
: str
= "sstModule"; break;
357 case sstAlignSym
: str
= "sstAlignSym"; break;
358 case sstSrcModule
: str
= "sstSrcModule"; break;
359 case sstLibraries
: str
= "sstLibraries"; break;
360 case sstGlobalSym
: str
= "sstGlobalSym"; break;
361 case sstGlobalPub
: str
= "sstGlobalPub"; break;
362 case sstGlobalTypes
: str
= "sstGlobalTypes"; break;
363 case sstSegMap
: str
= "sstSegMap"; break;
364 case sstFileIndex
: str
= "sstFileIndex"; break;
365 case sstStaticSym
: str
= "sstStaticSym"; break;
366 default: str
= "<undefined>"; break;
368 printf("Module #%2d (%p)\n", i
+ 1, &dirEntry
[i
]);
369 printf(" SubSection: %04X (%s)\n", dirEntry
[i
].SubSection
, str
);
370 printf(" iMod: %d\n", dirEntry
[i
].iMod
);
371 printf(" lfo: %d\n", dirEntry
[i
].lfo
);
372 printf(" cb: %u\n", dirEntry
[i
].cb
);
374 switch (dirEntry
[i
].SubSection
)
376 case sstModule
: dump_cv_sst_module(&dirEntry
[i
]); break;
377 case sstAlignSym
: dump_cv_sst_align_sym(&dirEntry
[i
]); break;
378 case sstSrcModule
: dump_cv_sst_src_module(&dirEntry
[i
]); break;
379 case sstLibraries
: dump_cv_sst_libraries(&dirEntry
[i
]); break;
380 case sstGlobalSym
: dump_cv_sst_global_sym(&dirEntry
[i
]); break;
381 case sstGlobalPub
: dump_cv_sst_global_pub(&dirEntry
[i
]); break;
382 case sstGlobalTypes
: dump_cv_sst_global_types(&dirEntry
[i
]); break;
383 case sstSegMap
: dump_cv_sst_seg_map(&dirEntry
[i
]); break;
384 case sstFileIndex
: dump_cv_sst_file_index(&dirEntry
[i
]); break;
385 case sstStaticSym
: dump_cv_sst_static_sym(&dirEntry
[i
]); break;
386 default: printf("unsupported type %x\n", dirEntry
[i
].SubSection
); break;
394 static void dump_codeview_headers(unsigned long base
, unsigned long len
)
396 const OMFDirHeader
* dirHeader
;
397 const char* signature
;
398 const OMFDirEntry
* dirEntry
;
399 const OMFSignature
* sig
;
401 int modulecount
= 0, alignsymcount
= 0, srcmodulecount
= 0, librariescount
= 0;
402 int globalsymcount
= 0, globalpubcount
= 0, globaltypescount
= 0;
403 int segmapcount
= 0, fileindexcount
= 0, staticsymcount
= 0;
405 cv_base
= PRD(base
, len
);
406 if (!cv_base
) {printf("Can't get full debug content, aborting\n");return;}
410 printf(" CodeView Data\n");
411 printf(" Signature: %.4s\n", signature
);
413 if (memcmp(signature
, "NB10", 4) == 0)
415 const CODEVIEW_PDB_DATA
* pdb_data
;
416 pdb_data
= (const void *)cv_base
;
418 printf(" Filepos: 0x%08lX\n", pdb_data
->filepos
);
419 printf(" TimeStamp: %08X (%s)\n",
420 pdb_data
->timestamp
, get_time_str(pdb_data
->timestamp
));
421 printf(" Age: %08X\n", pdb_data
->age
);
422 printf(" Filename: %s\n", pdb_data
->name
);
425 if (memcmp(signature
, "RSDS", 4) == 0)
427 const OMFSignatureRSDS
* rsds_data
;
429 rsds_data
= (const void *)cv_base
;
430 printf(" Guid: %s\n", get_guid_str(&rsds_data
->guid
));
431 printf(" Age: %08X\n", rsds_data
->age
);
432 printf(" Filename: %s\n", rsds_data
->name
);
436 if (memcmp(signature
, "NB09", 4) != 0 && memcmp(signature
, "NB11", 4) != 0)
438 printf("Unsupported signature (%.4s), aborting\n", signature
);
444 printf(" Filepos: 0x%08lX\n", sig
->filepos
);
446 dirHeader
= PRD(Offset(cv_base
) + sig
->filepos
, sizeof(OMFDirHeader
));
447 if (!dirHeader
) {printf("Can't get debug header, aborting\n"); return;}
449 printf(" Size of header: 0x%4X\n", dirHeader
->cbDirHeader
);
450 printf(" Size per entry: 0x%4X\n", dirHeader
->cbDirEntry
);
451 printf(" # of entries: 0x%8X (%d)\n", dirHeader
->cDir
, dirHeader
->cDir
);
452 printf(" Offset to NextDir: 0x%8X\n", dirHeader
->lfoNextDir
);
453 printf(" Flags: 0x%8X\n", dirHeader
->flags
);
455 if (!dirHeader
->cDir
) return;
457 dirEntry
= PRD(Offset(dirHeader
+ 1), sizeof(OMFDirEntry
) * dirHeader
->cDir
);
458 if (!dirEntry
) {printf("Can't get DirEntry array, aborting\n");return;}
460 for (i
= 0; i
< dirHeader
->cDir
; i
++)
462 switch (dirEntry
[i
].SubSection
)
464 case sstModule
: modulecount
++; break;
465 case sstAlignSym
: alignsymcount
++; break;
466 case sstSrcModule
: srcmodulecount
++; break;
467 case sstLibraries
: librariescount
++; break;
468 case sstGlobalSym
: globalsymcount
++; break;
469 case sstGlobalPub
: globalpubcount
++; break;
470 case sstGlobalTypes
: globaltypescount
++; break;
471 case sstSegMap
: segmapcount
++; break;
472 case sstFileIndex
: fileindexcount
++; break;
473 case sstStaticSym
: staticsymcount
++; break;
477 /* This one has to be > 0
479 printf ("\nFound: %d sstModule subsections\n", modulecount
);
481 if (alignsymcount
> 0) printf (" %d sstAlignSym subsections\n", alignsymcount
);
482 if (srcmodulecount
> 0) printf (" %d sstSrcModule subsections\n", srcmodulecount
);
483 if (librariescount
> 0) printf (" %d sstLibraries subsections\n", librariescount
);
484 if (globalsymcount
> 0) printf (" %d sstGlobalSym subsections\n", globalsymcount
);
485 if (globalpubcount
> 0) printf (" %d sstGlobalPub subsections\n", globalpubcount
);
486 if (globaltypescount
> 0) printf (" %d sstGlobalTypes subsections\n", globaltypescount
);
487 if (segmapcount
> 0) printf (" %d sstSegMap subsections\n", segmapcount
);
488 if (fileindexcount
> 0) printf (" %d sstFileIndex subsections\n", fileindexcount
);
489 if (staticsymcount
> 0) printf (" %d sstStaticSym subsections\n", staticsymcount
);
491 dump_codeview_all_modules(dirHeader
);
494 static const char *get_coff_name( const IMAGE_SYMBOL
*coff_sym
, const char *coff_strtab
)
496 static char namebuff
[9];
499 if( coff_sym
->N
.Name
.Short
)
501 memcpy(namebuff
, coff_sym
->N
.ShortName
, 8);
503 nampnt
= &namebuff
[0];
507 nampnt
= coff_strtab
+ coff_sym
->N
.Name
.Long
;
510 if( nampnt
[0] == '_' )
515 static const char* storage_class(BYTE sc
)
520 case IMAGE_SYM_CLASS_STATIC
: return "static";
521 case IMAGE_SYM_CLASS_EXTERNAL
: return "extrnl";
522 case IMAGE_SYM_CLASS_LABEL
: return "label ";
524 sprintf(tmp
, "#%d", sc
);
528 void dump_coff_symbol_table(const IMAGE_SYMBOL
*coff_symbols
, unsigned num_sym
,
529 const IMAGE_SECTION_HEADER
*sectHead
)
531 const IMAGE_SYMBOL
*coff_sym
;
532 const char *coff_strtab
= (const char *) (coff_symbols
+ num_sym
);
537 printf("\nDebug table: COFF format.\n");
538 printf(" ID | seg:offs [ abs ] | Kind | symbol/function name\n");
539 for (i
=0; i
< num_sym
; i
++)
541 coff_sym
= coff_symbols
+ i
;
542 naux
= coff_sym
->NumberOfAuxSymbols
;
544 switch (coff_sym
->StorageClass
)
546 case IMAGE_SYM_CLASS_FILE
:
547 printf("file %s\n", (const char *) (coff_sym
+ 1));
549 case IMAGE_SYM_CLASS_STATIC
:
550 case IMAGE_SYM_CLASS_EXTERNAL
:
551 case IMAGE_SYM_CLASS_LABEL
:
552 if (coff_sym
->SectionNumber
> 0)
554 DWORD base
= sectHead
[coff_sym
->SectionNumber
- 1].VirtualAddress
;
555 nampnt
= get_coff_name( coff_sym
, coff_strtab
);
557 printf("%05d | %02d:%08x [%08x] | %s | %s\n",
558 i
, coff_sym
->SectionNumber
- 1, coff_sym
->Value
,
559 base
+ coff_sym
->Value
,
560 storage_class(coff_sym
->StorageClass
), nampnt
);
564 printf("%05d | %s\n", i
, storage_class(coff_sym
->StorageClass
));
567 * For now, skip past the aux entries.
573 void dump_coff(unsigned long coffbase
, unsigned long len
, const void* pmt
)
575 const IMAGE_COFF_SYMBOLS_HEADER
*coff
= PRD(coffbase
, len
);
576 const IMAGE_SYMBOL
*coff_symbols
=
577 (const IMAGE_SYMBOL
*) ((const char *)coff
+ coff
->LvaToFirstSymbol
);
578 const IMAGE_SECTION_HEADER
*sectHead
= pmt
;
580 dump_coff_symbol_table(coff_symbols
, coff
->NumberOfSymbols
, sectHead
);
583 void dump_codeview(unsigned long base
, unsigned long len
)
585 dump_codeview_headers(base
, len
);
588 void dump_frame_pointer_omission(unsigned long base
, unsigned long len
)
591 const FPO_DATA
* last
;
593 /* FPO is used to describe nonstandard stack frames */
594 printf("Range #loc #pmt Prlg #reg Info\n"
595 "-----------------+----+----+----+----+------------\n");
597 fpo
= PRD(base
, len
);
598 if (!fpo
) {printf("Couldn't get FPO blob\n"); return;}
599 last
= (const FPO_DATA
*)((const char*)fpo
+ len
);
601 while (fpo
< last
&& fpo
->ulOffStart
)
603 switch (fpo
->cbFrame
)
605 case FRAME_FPO
: x
= "FRAME_FPO"; break;
606 case FRAME_NONFPO
: x
= "FRAME_NONFPO"; break;
607 case FRAME_TRAP
: x
= "FRAME_TRAP"; break;
608 case FRAME_TSS
: x
= "case FRAME_TSS"; break;
609 default: x
= NULL
; break;
611 printf("%08x-%08x %4u %4u %4u %4u %s%s%s\n",
612 fpo
->ulOffStart
, fpo
->ulOffStart
+ fpo
->cbProcSize
,
613 fpo
->cdwLocals
, fpo
->cdwParams
, fpo
->cbProlog
, fpo
->cbRegs
,
614 x
, fpo
->fHasSEH
? " SEH" : "", fpo
->fUseBP
? " UseBP" : "");
624 struct stab_nlist
* n_next
;
627 unsigned char n_type
;
630 unsigned long n_value
;
633 static const char * const stabs_defs
[] = {
634 NULL
,NULL
,NULL
,NULL
, /* 00 */
635 NULL
,NULL
,NULL
,NULL
, /* 08 */
636 NULL
,NULL
,NULL
,NULL
, /* 10 */
637 NULL
,NULL
,NULL
,NULL
, /* 18 */
638 "GSYM","FNAME","FUN","STSYM", /* 20 */
639 "LCSYM","MAIN","ROSYM","PC", /* 28 */
640 NULL
,"NSYMS","NOMAP",NULL
, /* 30 */
641 "OBJ",NULL
,"OPT",NULL
, /* 38 */
642 "RSYM","M2C","SLINE","DSLINE", /* 40 */
643 "BSLINE","DEFD","FLINE",NULL
, /* 48 */
644 "EHDECL",NULL
,"CATCH",NULL
, /* 50 */
645 NULL
,NULL
,NULL
,NULL
, /* 58 */
646 "SSYM","ENDM","SO",NULL
, /* 60 */
647 NULL
,NULL
,NULL
,NULL
, /* 68 */
648 NULL
,NULL
,NULL
,NULL
, /* 70 */
649 NULL
,NULL
,NULL
,NULL
, /* 78 */
650 "LSYM","BINCL","SOL",NULL
, /* 80 */
651 NULL
,NULL
,NULL
,NULL
, /* 88 */
652 NULL
,NULL
,NULL
,NULL
, /* 90 */
653 NULL
,NULL
,NULL
,NULL
, /* 98 */
654 "PSYM","EINCL","ENTRY",NULL
, /* a0 */
655 NULL
,NULL
,NULL
,NULL
, /* a8 */
656 NULL
,NULL
,NULL
,NULL
, /* b0 */
657 NULL
,NULL
,NULL
,NULL
, /* b8 */
658 "LBRAC","EXCL","SCOPE",NULL
, /* c0 */
659 NULL
,NULL
,NULL
,NULL
, /* c8 */
660 NULL
,NULL
,NULL
,NULL
, /* d0 */
661 NULL
,NULL
,NULL
,NULL
, /* d8 */
662 "RBRAC","BCOMM","ECOMM",NULL
, /* e0 */
663 "ECOML","WITH",NULL
,NULL
, /* e8 */
664 "NBTEXT","NBDATA","NBBSS","NBSTS", /* f0 */
665 "NBLCS",NULL
,NULL
,NULL
/* f8 */
668 void dump_stabs(const void* pv_stabs
, unsigned szstabs
, const char* stabstr
, unsigned szstr
)
674 unsigned int stabbufflen
;
675 const struct stab_nlist
* stab_ptr
= pv_stabs
;
676 const char* strs_end
;
679 nstab
= szstabs
/ sizeof(struct stab_nlist
);
680 strs_end
= stabstr
+ szstr
;
683 * Allocate a buffer into which we can build stab strings for cases
684 * where the stab is continued over multiple lines.
687 stabbuff
= malloc(stabbufflen
);
691 printf("#Sym n_type n_othr n_desc n_value n_strx String\n");
693 for (i
= 0; i
< nstab
; i
++, stab_ptr
++)
695 ptr
= stabstr
+ stab_ptr
->n_un
.n_strx
;
696 if ((ptr
> strs_end
) || (ptr
+ strlen(ptr
) > strs_end
))
698 ptr
= "[[*** bad string ***]]";
700 else if (ptr
[strlen(ptr
) - 1] == '\\')
703 * Indicates continuation. Append this to the buffer, and go onto the
704 * next record. Repeat the process until we find a stab without the
705 * '/' character, as this indicates we have the whole thing.
707 unsigned len
= strlen(ptr
);
708 if (strlen(stabbuff
) + len
> stabbufflen
)
710 stabbufflen
+= 65536;
711 stabbuff
= realloc(stabbuff
, stabbufflen
);
713 strncat(stabbuff
, ptr
, len
- 1);
716 else if (stabbuff
[0] != '\0')
718 strcat(stabbuff
, ptr
);
721 if ((stab_ptr
->n_type
& 1) || !stabs_defs
[stab_ptr
->n_type
/ 2])
722 sprintf(n_buffer
, "<0x%02x>", stab_ptr
->n_type
);
724 sprintf(n_buffer
, "%-6s", stabs_defs
[stab_ptr
->n_type
/ 2]);
725 printf("%4d %s %-8x % 6d %-8lx %-6lx %s\n",
726 i
, n_buffer
, stab_ptr
->n_other
, stab_ptr
->n_desc
, stab_ptr
->n_value
,
727 stab_ptr
->n_un
.n_strx
, ptr
);