2 * File msc.c - read VC++ debug information from COFF and eventually
5 * Copyright (C) 1996, Eric Youngdale.
6 * Copyright (C) 1999-2000, Ulrich Weigand.
7 * Copyright (C) 2004, Eric Pouech.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 * Note - this handles reading debug information for 32 bit applications
26 * that run under Windows-NT for example. I doubt that this would work well
27 * for 16 bit applications, but I don't think it really matters since the
28 * file format is different, and we should never get in here in such cases.
31 * Get 16 bit CV stuff working.
32 * Add symbol size to internal symbol table.
36 #include "wine/port.h"
46 #define PATH_MAX MAX_PATH
54 #include "wine/exception.h"
55 #include "wine/debug.h"
57 #include "dbghelp_private.h"
59 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_msc);
61 #define MAX_PATHNAME_LEN 1024
71 struct module* module;
73 const IMAGE_SECTION_HEADER* sectp;
75 const OMAP_DATA* omapp;
79 /*========================================================================
80 * Debug file access helper routines
83 static WINE_EXCEPTION_FILTER(page_fault)
85 if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION)
86 return EXCEPTION_EXECUTE_HANDLER;
87 return EXCEPTION_CONTINUE_SEARCH;
90 /*========================================================================
91 * Process COFF debug information.
96 unsigned int startaddr;
98 struct symt_compiland* compiland;
101 struct symt** entries;
108 struct CoffFile* files;
113 static const char* coff_get_name(const IMAGE_SYMBOL* coff_sym,
114 const char* coff_strtab)
116 static char namebuff[9];
119 if (coff_sym->N.Name.Short)
121 memcpy(namebuff, coff_sym->N.ShortName, 8);
123 nampnt = &namebuff[0];
127 nampnt = coff_strtab + coff_sym->N.Name.Long;
130 if (nampnt[0] == '_') nampnt++;
134 static int coff_add_file(struct CoffFileSet* coff_files, struct module* module,
135 const char* filename)
137 struct CoffFile* file;
139 if (coff_files->nfiles + 1 >= coff_files->nfiles_alloc)
141 coff_files->nfiles_alloc += 10;
142 coff_files->files = (coff_files->files) ?
143 HeapReAlloc(GetProcessHeap(), 0, coff_files->files,
144 coff_files->nfiles_alloc * sizeof(struct CoffFile)) :
145 HeapAlloc(GetProcessHeap(), 0,
146 coff_files->nfiles_alloc * sizeof(struct CoffFile));
148 file = coff_files->files + coff_files->nfiles;
149 file->startaddr = 0xffffffff;
151 file->compiland = symt_new_compiland(module, filename);
152 file->linetab_offset = -1;
154 file->entries = NULL;
155 file->neps = file->neps_alloc = 0;
157 return coff_files->nfiles++;
160 static void coff_add_symbol(struct CoffFile* coff_file, struct symt* sym)
162 if (coff_file->neps + 1 >= coff_file->neps_alloc)
164 coff_file->neps_alloc += 10;
165 coff_file->entries = (coff_file->entries) ?
166 HeapReAlloc(GetProcessHeap(), 0, coff_file->entries,
167 coff_file->neps_alloc * sizeof(struct symt*)) :
168 HeapAlloc(GetProcessHeap(), 0,
169 coff_file->neps_alloc * sizeof(struct symt*));
171 coff_file->entries[coff_file->neps++] = sym;
174 static BOOL coff_process_info(const struct msc_debug_info* msc_dbg)
176 const IMAGE_AUX_SYMBOL* aux;
177 const IMAGE_COFF_SYMBOLS_HEADER* coff;
178 const IMAGE_LINENUMBER* coff_linetab;
179 const IMAGE_LINENUMBER* linepnt;
180 const char* coff_strtab;
181 const IMAGE_SYMBOL* coff_sym;
182 const IMAGE_SYMBOL* coff_symbols;
183 struct CoffFileSet coff_files;
184 int curr_file_idx = -1;
195 TRACE("Processing COFF symbols...\n");
197 assert(sizeof(IMAGE_SYMBOL) == IMAGE_SIZEOF_SYMBOL);
198 assert(sizeof(IMAGE_LINENUMBER) == IMAGE_SIZEOF_LINENUMBER);
200 coff_files.files = NULL;
201 coff_files.nfiles = coff_files.nfiles_alloc = 0;
203 coff = (const IMAGE_COFF_SYMBOLS_HEADER*)msc_dbg->root;
205 coff_symbols = (const IMAGE_SYMBOL*)((unsigned int)coff +
206 coff->LvaToFirstSymbol);
207 coff_linetab = (const IMAGE_LINENUMBER*)((unsigned int)coff +
208 coff->LvaToFirstLinenumber);
209 coff_strtab = (const char*)(coff_symbols + coff->NumberOfSymbols);
213 for (i = 0; i < coff->NumberOfSymbols; i++)
215 coff_sym = coff_symbols + i;
216 naux = coff_sym->NumberOfAuxSymbols;
218 if (coff_sym->StorageClass == IMAGE_SYM_CLASS_FILE)
220 curr_file_idx = coff_add_file(&coff_files, msc_dbg->module,
221 (const char*)(coff_sym + 1));
222 TRACE("New file %s\n", (const char*)(coff_sym + 1));
227 if (curr_file_idx < 0)
229 assert(coff_files.nfiles == 0 && coff_files.nfiles_alloc == 0);
230 curr_file_idx = coff_add_file(&coff_files, msc_dbg->module, "<none>");
231 TRACE("New file <none>\n");
235 * This guy marks the size and location of the text section
236 * for the current file. We need to keep track of this so
237 * we can figure out what file the different global functions
240 if (coff_sym->StorageClass == IMAGE_SYM_CLASS_STATIC &&
241 naux != 0 && coff_sym->Type == 0 && coff_sym->SectionNumber == 1)
243 aux = (const IMAGE_AUX_SYMBOL*) (coff_sym + 1);
245 if (coff_files.files[curr_file_idx].linetab_offset != -1)
248 * Save this so we can still get the old name.
252 fn = source_get(msc_dbg->module,
253 coff_files.files[curr_file_idx].compiland->source);
255 TRACE("Duplicating sect from %s: %lx %x %x %d %d\n",
256 fn, aux->Section.Length,
257 aux->Section.NumberOfRelocations,
258 aux->Section.NumberOfLinenumbers,
259 aux->Section.Number, aux->Section.Selection);
260 TRACE("More sect %d %s %08lx %d %d %d\n",
261 coff_sym->SectionNumber,
262 coff_get_name(coff_sym, coff_strtab),
263 coff_sym->Value, coff_sym->Type,
264 coff_sym->StorageClass, coff_sym->NumberOfAuxSymbols);
267 * Duplicate the file entry. We have no way to describe
268 * multiple text sections in our current way of handling things.
270 coff_add_file(&coff_files, msc_dbg->module, fn);
274 TRACE("New text sect from %s: %lx %x %x %d %d\n",
275 source_get(msc_dbg->module, coff_files.files[curr_file_idx].compiland->source),
277 aux->Section.NumberOfRelocations,
278 aux->Section.NumberOfLinenumbers,
279 aux->Section.Number, aux->Section.Selection);
282 if (coff_files.files[curr_file_idx].startaddr > coff_sym->Value)
284 coff_files.files[curr_file_idx].startaddr = coff_sym->Value;
287 if (coff_files.files[curr_file_idx].endaddr < coff_sym->Value + aux->Section.Length)
289 coff_files.files[curr_file_idx].endaddr = coff_sym->Value + aux->Section.Length;
292 coff_files.files[curr_file_idx].linetab_offset = linetab_indx;
293 coff_files.files[curr_file_idx].linecnt = aux->Section.NumberOfLinenumbers;
294 linetab_indx += aux->Section.NumberOfLinenumbers;
299 if (coff_sym->StorageClass == IMAGE_SYM_CLASS_STATIC && naux == 0 &&
300 coff_sym->SectionNumber == 1)
302 DWORD base = msc_dbg->sectp[coff_sym->SectionNumber - 1].VirtualAddress;
304 * This is a normal static function when naux == 0.
305 * Just register it. The current file is the correct
306 * one in this instance.
308 nampnt = coff_get_name(coff_sym, coff_strtab);
310 TRACE("\tAdding static symbol %s\n", nampnt);
312 /* FIXME: was adding symbol to this_file ??? */
313 coff_add_symbol(&coff_files.files[curr_file_idx],
314 &symt_new_function(msc_dbg->module,
315 coff_files.files[curr_file_idx].compiland,
317 msc_dbg->module->module.BaseOfImage + base + coff_sym->Value,
319 NULL /* FIXME */)->symt);
324 if (coff_sym->StorageClass == IMAGE_SYM_CLASS_EXTERNAL &&
325 ISFCN(coff_sym->Type) && coff_sym->SectionNumber > 0)
327 struct symt_compiland* compiland = NULL;
328 DWORD base = msc_dbg->sectp[coff_sym->SectionNumber - 1].VirtualAddress;
329 nampnt = coff_get_name(coff_sym, coff_strtab);
331 TRACE("%d: %lx %s\n",
332 i, msc_dbg->module->module.BaseOfImage + base + coff_sym->Value,
334 TRACE("\tAdding global symbol %s (sect=%s)\n",
335 nampnt, msc_dbg->sectp[coff_sym->SectionNumber - 1].Name);
338 * Now we need to figure out which file this guy belongs to.
340 for (j = 0; j < coff_files.nfiles; j++)
342 if (coff_files.files[j].startaddr <= base + coff_sym->Value
343 && coff_files.files[j].endaddr > base + coff_sym->Value)
345 compiland = coff_files.files[j].compiland;
349 if (j < coff_files.nfiles)
351 coff_add_symbol(&coff_files.files[j],
352 &symt_new_function(msc_dbg->module, compiland, nampnt,
353 msc_dbg->module->module.BaseOfImage + base + coff_sym->Value,
354 0 /* FIXME */, NULL /* FIXME */)->symt);
358 symt_new_function(msc_dbg->module, NULL, nampnt,
359 msc_dbg->module->module.BaseOfImage + base + coff_sym->Value,
360 0 /* FIXME */, NULL /* FIXME */);
366 if (coff_sym->StorageClass == IMAGE_SYM_CLASS_EXTERNAL &&
367 coff_sym->SectionNumber > 0)
369 DWORD base = msc_dbg->sectp[coff_sym->SectionNumber - 1].VirtualAddress;
371 * Similar to above, but for the case of data symbols.
372 * These aren't treated as entrypoints.
374 nampnt = coff_get_name(coff_sym, coff_strtab);
376 TRACE("%d: %lx %s\n",
377 i, msc_dbg->module->module.BaseOfImage + base + coff_sym->Value,
379 TRACE("\tAdding global data symbol %s\n", nampnt);
382 * Now we need to figure out which file this guy belongs to.
384 symt_new_global_variable(msc_dbg->module, NULL, nampnt, TRUE /* FIXME */,
385 msc_dbg->module->module.BaseOfImage + base + coff_sym->Value,
386 0 /* FIXME */, NULL /* FIXME */);
391 if (coff_sym->StorageClass == IMAGE_SYM_CLASS_STATIC && naux == 0)
394 * Ignore these. They don't have anything to do with
401 TRACE("Skipping unknown entry '%s' %d %d %d\n",
402 coff_get_name(coff_sym, coff_strtab),
403 coff_sym->StorageClass, coff_sym->SectionNumber, naux);
406 * For now, skip past the aux entries.
411 if (coff_files.files != NULL)
414 * OK, we now should have a list of files, and we should have a list
415 * of entrypoints. We need to sort the entrypoints so that we are
416 * able to tie the line numbers with the given functions within the
419 for (j = 0; j < coff_files.nfiles; j++)
421 if (coff_files.files[j].entries != NULL)
423 qsort(coff_files.files[j].entries, coff_files.files[j].neps,
424 sizeof(struct symt*), symt_cmp_addr);
429 * Now pick apart the line number tables, and attach the entries
430 * to the given functions.
432 for (j = 0; j < coff_files.nfiles; j++)
435 if (coff_files.files[j].neps != 0)
437 for (k = 0; k < coff_files.files[j].linecnt; k++)
439 linepnt = coff_linetab + coff_files.files[j].linetab_offset + k;
441 * If we have spilled onto the next entrypoint, then
446 if (l+1 >= coff_files.files[j].neps) break;
447 symt_get_info(coff_files.files[j].entries[l+1], TI_GET_ADDRESS, &addr);
448 if (((msc_dbg->module->module.BaseOfImage + linepnt->Type.VirtualAddress) < addr))
453 if (coff_files.files[j].entries[l+1]->tag == SymTagFunction)
456 * Add the line number. This is always relative to the
457 * start of the function, so we need to subtract that offset
460 symt_get_info(coff_files.files[j].entries[l+1], TI_GET_ADDRESS, &addr);
461 symt_add_func_line(msc_dbg->module, (struct symt_function*)coff_files.files[j].entries[l+1],
462 coff_files.files[j].compiland->source, linepnt->Linenumber,
463 msc_dbg->module->module.BaseOfImage + linepnt->Type.VirtualAddress - addr);
469 for (j = 0; j < coff_files.nfiles; j++)
471 if (coff_files.files[j].entries != NULL)
473 HeapFree(GetProcessHeap(), 0, coff_files.files[j].entries);
476 HeapFree(GetProcessHeap(), 0, coff_files.files);
477 msc_dbg->module->module.SymType = SymCoff;
485 /*========================================================================
486 * Process CodeView type information.
493 unsigned short int len;
499 unsigned short int len;
503 unsigned char variant[1];
508 unsigned short int len;
510 unsigned int datatype;
511 unsigned int attribute;
512 unsigned char variant[1];
517 unsigned short int len;
520 unsigned char bitoff;
526 unsigned short int len;
530 unsigned char bitoff;
535 unsigned short int len;
539 unsigned short int arrlen; /* numeric leaf */
541 unsigned char name[1];
547 unsigned short int len;
549 unsigned int elemtype;
550 unsigned int idxtype;
551 unsigned short int arrlen; /* numeric leaf */
553 unsigned char name[1];
559 unsigned short int len;
566 unsigned short int structlen; /* numeric leaf */
568 unsigned char name[1];
574 unsigned short int len;
578 unsigned int fieldlist;
579 unsigned int derived;
581 unsigned short int structlen; /* numeric leaf */
583 unsigned char name[1];
589 unsigned short int len;
594 unsigned short int un_len; /* numeric leaf */
596 unsigned char name[1];
602 unsigned short int len;
606 unsigned int fieldlist;
607 unsigned short int un_len; /* numeric leaf */
609 unsigned char name[1];
615 unsigned short int len;
621 unsigned char name[1];
626 unsigned short int len;
632 unsigned char name[1];
637 unsigned short int len;
639 unsigned char list[1];
644 unsigned short int len;
646 unsigned short int rvtype;
648 unsigned char reserved;
649 unsigned short int params;
650 unsigned short int arglist;
655 unsigned short int len;
659 unsigned char reserved;
660 unsigned short int params;
661 unsigned int arglist;
665 union codeview_fieldtype
677 unsigned short int offset; /* numeric leaf */
685 unsigned short int offset; /* numeric leaf */
694 unsigned short int vbpoff; /* numeric leaf */
696 unsigned short int vboff; /* numeric leaf */
706 unsigned short int vbpoff; /* numeric leaf */
708 unsigned short int vboff; /* numeric leaf */
716 unsigned short int value; /* numeric leaf */
718 unsigned char name[1];
726 unsigned char name[1];
734 unsigned char name[1];
742 unsigned short int offset; /* numeric leaf */
744 unsigned char name[1];
753 unsigned short int offset; /* numeric leaf */
755 unsigned char name[1];
764 unsigned char name[1];
772 unsigned char name[1];
780 unsigned char name[1];
788 unsigned char name[1];
795 unsigned char name[1];
803 unsigned char name[1];
837 unsigned char name[1];
845 unsigned int vtab_offset;
846 unsigned char name[1];
854 unsigned char name[1];
862 unsigned int vtab_offset;
863 unsigned char name[1];
886 unsigned char name[1];
894 unsigned char name[1];
902 unsigned char name[1];
908 * This covers the basic datatypes that VC++ seems to be using these days.
909 * 32 bit mode only. There are additional numbers for the pointers in 16
910 * bit mode. There are many other types listed in the documents, but these
911 * are apparently not used by the compiler, or represent pointer types
914 #define T_NOTYPE 0x0000 /* Notype */
915 #define T_ABS 0x0001 /* Abs */
916 #define T_VOID 0x0003 /* Void */
917 #define T_CHAR 0x0010 /* signed char */
918 #define T_SHORT 0x0011 /* short */
919 #define T_LONG 0x0012 /* long */
920 #define T_QUAD 0x0013 /* long long */
921 #define T_UCHAR 0x0020 /* unsigned char */
922 #define T_USHORT 0x0021 /* unsigned short */
923 #define T_ULONG 0x0022 /* unsigned long */
924 #define T_UQUAD 0x0023 /* unsigned long long */
925 #define T_REAL32 0x0040 /* float */
926 #define T_REAL64 0x0041 /* double */
927 #define T_RCHAR 0x0070 /* real char */
928 #define T_WCHAR 0x0071 /* wide char */
929 #define T_INT4 0x0074 /* int */
930 #define T_UINT4 0x0075 /* unsigned int */
932 #define T_32PVOID 0x0403 /* 32 bit near pointer to void */
933 #define T_32PCHAR 0x0410 /* 16:32 near pointer to signed char */
934 #define T_32PSHORT 0x0411 /* 16:32 near pointer to short */
935 #define T_32PLONG 0x0412 /* 16:32 near pointer to int */
936 #define T_32PQUAD 0x0413 /* 16:32 near pointer to long long */
937 #define T_32PUCHAR 0x0420 /* 16:32 near pointer to unsigned char */
938 #define T_32PUSHORT 0x0421 /* 16:32 near pointer to unsigned short */
939 #define T_32PULONG 0x0422 /* 16:32 near pointer to unsigned int */
940 #define T_32PUQUAD 0x0423 /* 16:32 near pointer to long long */
941 #define T_32PREAL32 0x0440 /* 16:32 near pointer to float */
942 #define T_32PREAL64 0x0441 /* 16:32 near pointer to float */
943 #define T_32PRCHAR 0x0470 /* 16:32 near pointer to real char */
944 #define T_32PWCHAR 0x0471 /* 16:32 near pointer to real char */
945 #define T_32PINT4 0x0474 /* 16:32 near pointer to int */
946 #define T_32PUINT4 0x0475 /* 16:32 near pointer to unsigned int */
949 #define LF_MODIFIER 0x0001
950 #define LF_POINTER 0x0002
951 #define LF_ARRAY 0x0003
952 #define LF_CLASS 0x0004
953 #define LF_STRUCTURE 0x0005
954 #define LF_UNION 0x0006
955 #define LF_ENUM 0x0007
956 #define LF_PROCEDURE 0x0008
957 #define LF_MFUNCTION 0x0009
958 #define LF_VTSHAPE 0x000a
959 #define LF_COBOL0 0x000b
960 #define LF_COBOL1 0x000c
961 #define LF_BARRAY 0x000d
962 #define LF_LABEL 0x000e
963 #define LF_NULL 0x000f
964 #define LF_NOTTRAN 0x0010
965 #define LF_DIMARRAY 0x0011
966 #define LF_VFTPATH 0x0012
967 #define LF_PRECOMP 0x0013
968 #define LF_ENDPRECOMP 0x0014
969 #define LF_OEM 0x0015
970 #define LF_TYPESERVER 0x0016
972 #define LF_MODIFIER_32 0x1001 /* variants with new 32-bit type indices */
973 #define LF_POINTER_32 0x1002
974 #define LF_ARRAY_32 0x1003
975 #define LF_CLASS_32 0x1004
976 #define LF_STRUCTURE_32 0x1005
977 #define LF_UNION_32 0x1006
978 #define LF_ENUM_32 0x1007
979 #define LF_PROCEDURE_32 0x1008
980 #define LF_MFUNCTION_32 0x1009
981 #define LF_COBOL0_32 0x100a
982 #define LF_BARRAY_32 0x100b
983 #define LF_DIMARRAY_32 0x100c
984 #define LF_VFTPATH_32 0x100d
985 #define LF_PRECOMP_32 0x100e
986 #define LF_OEM_32 0x100f
988 #define LF_SKIP 0x0200
989 #define LF_ARGLIST 0x0201
990 #define LF_DEFARG 0x0202
991 #define LF_LIST 0x0203
992 #define LF_FIELDLIST 0x0204
993 #define LF_DERIVED 0x0205
994 #define LF_BITFIELD 0x0206
995 #define LF_METHODLIST 0x0207
996 #define LF_DIMCONU 0x0208
997 #define LF_DIMCONLU 0x0209
998 #define LF_DIMVARU 0x020a
999 #define LF_DIMVARLU 0x020b
1000 #define LF_REFSYM 0x020c
1002 #define LF_SKIP_32 0x1200 /* variants with new 32-bit type indices */
1003 #define LF_ARGLIST_32 0x1201
1004 #define LF_DEFARG_32 0x1202
1005 #define LF_FIELDLIST_32 0x1203
1006 #define LF_DERIVED_32 0x1204
1007 #define LF_BITFIELD_32 0x1205
1008 #define LF_METHODLIST_32 0x1206
1009 #define LF_DIMCONU_32 0x1207
1010 #define LF_DIMCONLU_32 0x1208
1011 #define LF_DIMVARU_32 0x1209
1012 #define LF_DIMVARLU_32 0x120a
1014 #define LF_BCLASS 0x0400
1015 #define LF_VBCLASS 0x0401
1016 #define LF_IVBCLASS 0x0402
1017 #define LF_ENUMERATE 0x0403
1018 #define LF_FRIENDFCN 0x0404
1019 #define LF_INDEX 0x0405
1020 #define LF_MEMBER 0x0406
1021 #define LF_STMEMBER 0x0407
1022 #define LF_METHOD 0x0408
1023 #define LF_NESTTYPE 0x0409
1024 #define LF_VFUNCTAB 0x040a
1025 #define LF_FRIENDCLS 0x040b
1026 #define LF_ONEMETHOD 0x040c
1027 #define LF_VFUNCOFF 0x040d
1028 #define LF_NESTTYPEEX 0x040e
1029 #define LF_MEMBERMODIFY 0x040f
1031 #define LF_BCLASS_32 0x1400 /* variants with new 32-bit type indices */
1032 #define LF_VBCLASS_32 0x1401
1033 #define LF_IVBCLASS_32 0x1402
1034 #define LF_FRIENDFCN_32 0x1403
1035 #define LF_INDEX_32 0x1404
1036 #define LF_MEMBER_32 0x1405
1037 #define LF_STMEMBER_32 0x1406
1038 #define LF_METHOD_32 0x1407
1039 #define LF_NESTTYPE_32 0x1408
1040 #define LF_VFUNCTAB_32 0x1409
1041 #define LF_FRIENDCLS_32 0x140a
1042 #define LF_ONEMETHOD_32 0x140b
1043 #define LF_VFUNCOFF_32 0x140c
1044 #define LF_NESTTYPEEX_32 0x140d
1046 #define LF_NUMERIC 0x8000 /* numeric leaf types */
1047 #define LF_CHAR 0x8000
1048 #define LF_SHORT 0x8001
1049 #define LF_USHORT 0x8002
1050 #define LF_LONG 0x8003
1051 #define LF_ULONG 0x8004
1052 #define LF_REAL32 0x8005
1053 #define LF_REAL64 0x8006
1054 #define LF_REAL80 0x8007
1055 #define LF_REAL128 0x8008
1056 #define LF_QUADWORD 0x8009
1057 #define LF_UQUADWORD 0x800a
1058 #define LF_REAL48 0x800b
1059 #define LF_COMPLEX32 0x800c
1060 #define LF_COMPLEX64 0x800d
1061 #define LF_COMPLEX80 0x800e
1062 #define LF_COMPLEX128 0x800f
1063 #define LF_VARSTRING 0x8010
1065 #define MAX_BUILTIN_TYPES 0x480
1066 static struct symt* cv_basic_types[MAX_BUILTIN_TYPES];
1067 static unsigned int num_cv_defined_types = 0;
1068 static struct symt** cv_defined_types = NULL;
1069 #define SymTagCVBitField (SymTagMax + 0x100)
1070 struct codeview_bitfield
1074 unsigned bitposition;
1077 static struct codeview_bitfield* cv_bitfields;
1078 static unsigned num_cv_bitfields;
1079 static unsigned used_cv_bitfields;
1081 static void codeview_init_basic_types(struct module* module)
1084 * These are the common builtin types that are used by VC++.
1086 cv_basic_types[T_NOTYPE] = NULL;
1087 cv_basic_types[T_ABS] = NULL;
1088 cv_basic_types[T_VOID] = &symt_new_basic(module, btVoid, "void", 0)->symt;
1089 cv_basic_types[T_CHAR] = &symt_new_basic(module, btChar, "char", 1)->symt;
1090 cv_basic_types[T_SHORT] = &symt_new_basic(module, btInt, "short int", 2)->symt;
1091 cv_basic_types[T_LONG] = &symt_new_basic(module, btInt, "long int", 4)->symt;
1092 cv_basic_types[T_QUAD] = &symt_new_basic(module, btInt, "long long int", 8)->symt;
1093 cv_basic_types[T_UCHAR] = &symt_new_basic(module, btUInt, "unsigned char", 1)->symt;
1094 cv_basic_types[T_USHORT] = &symt_new_basic(module, btUInt, "unsigned short", 2)->symt;
1095 cv_basic_types[T_ULONG] = &symt_new_basic(module, btUInt, "unsigned long", 4)->symt;
1096 cv_basic_types[T_UQUAD] = &symt_new_basic(module, btUInt, "unsigned long long", 8)->symt;
1097 cv_basic_types[T_REAL32] = &symt_new_basic(module, btFloat, "float", 4)->symt;
1098 cv_basic_types[T_REAL64] = &symt_new_basic(module, btFloat, "double", 8)->symt;
1099 cv_basic_types[T_RCHAR] = &symt_new_basic(module, btInt, "signed char", 1)->symt;
1100 cv_basic_types[T_WCHAR] = &symt_new_basic(module, btWChar, "wchar_t", 2)->symt;
1101 cv_basic_types[T_INT4] = &symt_new_basic(module, btInt, "INT4", 4)->symt;
1102 cv_basic_types[T_UINT4] = &symt_new_basic(module, btUInt, "UINT4", 4)->symt;
1104 cv_basic_types[T_32PVOID] = &symt_new_pointer(module, cv_basic_types[T_VOID])->symt;
1105 cv_basic_types[T_32PCHAR] = &symt_new_pointer(module, cv_basic_types[T_CHAR])->symt;
1106 cv_basic_types[T_32PSHORT] = &symt_new_pointer(module, cv_basic_types[T_SHORT])->symt;
1107 cv_basic_types[T_32PLONG] = &symt_new_pointer(module, cv_basic_types[T_LONG])->symt;
1108 cv_basic_types[T_32PQUAD] = &symt_new_pointer(module, cv_basic_types[T_QUAD])->symt;
1109 cv_basic_types[T_32PUCHAR] = &symt_new_pointer(module, cv_basic_types[T_UCHAR])->symt;
1110 cv_basic_types[T_32PUSHORT] = &symt_new_pointer(module, cv_basic_types[T_USHORT])->symt;
1111 cv_basic_types[T_32PULONG] = &symt_new_pointer(module, cv_basic_types[T_ULONG])->symt;
1112 cv_basic_types[T_32PUQUAD] = &symt_new_pointer(module, cv_basic_types[T_UQUAD])->symt;
1113 cv_basic_types[T_32PREAL32] = &symt_new_pointer(module, cv_basic_types[T_REAL32])->symt;
1114 cv_basic_types[T_32PREAL64] = &symt_new_pointer(module, cv_basic_types[T_REAL64])->symt;
1115 cv_basic_types[T_32PRCHAR] = &symt_new_pointer(module, cv_basic_types[T_RCHAR])->symt;
1116 cv_basic_types[T_32PWCHAR] = &symt_new_pointer(module, cv_basic_types[T_WCHAR])->symt;
1117 cv_basic_types[T_32PINT4] = &symt_new_pointer(module, cv_basic_types[T_INT4])->symt;
1118 cv_basic_types[T_32PUINT4] = &symt_new_pointer(module, cv_basic_types[T_UINT4])->symt;
1121 static int numeric_leaf(int* value, const unsigned short int* leaf)
1123 unsigned short int type = *leaf++;
1126 if (type < LF_NUMERIC)
1136 *value = *(const char*)leaf;
1141 *value = *(const short*)leaf;
1146 *value = *(const unsigned short*)leaf;
1151 *value = *(const int*)leaf;
1156 *value = *(const unsigned int*)leaf;
1162 *value = 0; /* FIXME */
1167 *value = 0; /* FIXME */
1172 *value = 0; /* FIXME */
1177 *value = 0; /* FIXME */
1182 *value = 0; /* FIXME */
1187 *value = 0; /* FIXME */
1192 *value = 0; /* FIXME */
1197 *value = 0; /* FIXME */
1202 *value = 0; /* FIXME */
1207 *value = 0; /* FIXME */
1211 length += 2 + *leaf;
1212 *value = 0; /* FIXME */
1216 FIXME("Unknown numeric leaf type %04x\n", type);
1225 static const char* terminate_string(const unsigned char* name)
1227 static char symname[256];
1229 int namelen = name[0];
1230 assert(namelen >= 0 && namelen < 256);
1232 memcpy(symname, name + 1, namelen);
1233 symname[namelen] = '\0';
1235 return (!*symname || strcmp(symname, "__unnamed") == 0) ? NULL : symname;
1238 static struct symt* codeview_get_type(unsigned int typeno, BOOL allow_special)
1240 struct symt* symt = NULL;
1243 * Convert Codeview type numbers into something we can grok internally.
1244 * Numbers < 0x1000 are all fixed builtin types. Numbers from 0x1000 and
1245 * up are all user defined (structs, etc).
1247 if (typeno < 0x1000)
1249 if (typeno < MAX_BUILTIN_TYPES)
1250 symt = cv_basic_types[typeno];
1254 if (typeno - 0x1000 < num_cv_defined_types)
1255 symt = cv_defined_types[typeno - 0x1000];
1257 if (!allow_special && symt && symt->tag == SymTagCVBitField)
1258 FIXME("bitfields are only handled for UDTs\n");
1262 static int codeview_add_type(unsigned int typeno, struct symt* dt)
1264 while (typeno - 0x1000 >= num_cv_defined_types)
1266 num_cv_defined_types += 0x100;
1267 if (cv_defined_types)
1268 cv_defined_types = (struct symt**)
1269 HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, cv_defined_types,
1270 num_cv_defined_types * sizeof(struct symt*));
1272 cv_defined_types = (struct symt**)
1273 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
1274 num_cv_defined_types * sizeof(struct symt*));
1276 if (cv_defined_types == NULL) return FALSE;
1279 cv_defined_types[typeno - 0x1000] = dt;
1283 static void codeview_clear_type_table(void)
1285 if (cv_defined_types) HeapFree(GetProcessHeap(), 0, cv_defined_types);
1286 cv_defined_types = NULL;
1287 num_cv_defined_types = 0;
1289 if (cv_bitfields) HeapFree(GetProcessHeap(), 0, cv_bitfields);
1290 cv_bitfields = NULL;
1291 num_cv_bitfields = used_cv_bitfields = 0;
1294 static int codeview_add_type_pointer(struct module* module, unsigned int typeno,
1295 unsigned int datatype)
1297 struct symt* symt = &symt_new_pointer(module, codeview_get_type(datatype, FALSE))->symt;
1298 return codeview_add_type(typeno, symt);
1301 static int codeview_add_type_array(struct module* module,
1302 unsigned int typeno, const char* name,
1303 unsigned int elemtype, unsigned int arr_len)
1306 struct symt* elem = codeview_get_type(elemtype, FALSE);
1312 symt_get_info(elem, TI_GET_LENGTH, &elem_size);
1313 if (elem_size) arr_max = arr_len / elem_size;
1315 symt = &symt_new_array(module, 0, arr_max, elem)->symt;
1316 return codeview_add_type(typeno, symt);
1319 static int codeview_add_type_bitfield(unsigned int typeno, unsigned int bitoff,
1320 unsigned int nbits, unsigned int basetype)
1322 if (used_cv_bitfields >= num_cv_bitfields)
1324 num_cv_bitfields *= 2;
1326 cv_bitfields = HeapReAlloc(GetProcessHeap(), 0, cv_bitfields,
1327 num_cv_bitfields * sizeof(struct codeview_bitfield));
1329 cv_bitfields = HeapAlloc(GetProcessHeap(), 0,
1330 num_cv_bitfields * sizeof(struct codeview_bitfield));
1331 if (!cv_bitfields) return 0;
1334 cv_bitfields[used_cv_bitfields].symt.tag = SymTagCVBitField;
1335 cv_bitfields[used_cv_bitfields].subtype = basetype;
1336 cv_bitfields[used_cv_bitfields].bitposition = bitoff;
1337 cv_bitfields[used_cv_bitfields].bitlength = nbits;
1339 return codeview_add_type(typeno, &cv_bitfields[used_cv_bitfields++].symt);
1342 static int codeview_add_type_enum_field_list(struct module* module,
1343 unsigned int typeno,
1344 const unsigned char* list, int len)
1346 struct symt_enum* symt;
1347 const unsigned char* ptr = list;
1349 symt = symt_new_enum(module, NULL);
1350 while (ptr - list < len)
1352 const union codeview_fieldtype* type = (const union codeview_fieldtype*)ptr;
1354 if (*ptr >= 0xf0) /* LF_PAD... */
1360 switch (type->generic.id)
1364 int value, vlen = numeric_leaf(&value, &type->enumerate.value);
1365 const unsigned char* name = (const unsigned char*)&type->enumerate.value + vlen;
1367 symt_add_enum_element(module, symt, terminate_string(name), value);
1368 ptr += 2 + 2 + vlen + (1 + name[0]);
1373 FIXME("Unhandled type %04x in ENUM field list\n", type->generic.id);
1378 return codeview_add_type(typeno, &symt->symt);
1381 static int codeview_add_type_struct_field_list(struct module* module,
1382 unsigned int typeno,
1383 const unsigned char* list, int len)
1385 struct symt_udt* symt;
1386 const unsigned char* ptr = list;
1388 symt = symt_new_udt(module, NULL, 0, UdtStruct /* don't care */);
1389 while (ptr - list < len)
1391 const union codeview_fieldtype* type = (const union codeview_fieldtype*)ptr;
1393 if (*ptr >= 0xf0) /* LF_PAD... */
1399 switch (type->generic.id)
1403 int offset, olen = numeric_leaf(&offset, &type->bclass.offset);
1405 /* FIXME: ignored for now */
1407 ptr += 2 + 2 + 2 + olen;
1413 int offset, olen = numeric_leaf(&offset, &type->bclass32.offset);
1415 /* FIXME: ignored for now */
1417 ptr += 2 + 2 + 4 + olen;
1424 int vbpoff, vbplen = numeric_leaf(&vbpoff, &type->vbclass.vbpoff);
1425 const unsigned short int* p_vboff = (const unsigned short int*)((const char*)&type->vbclass.vbpoff + vbpoff);
1426 int vpoff, vplen = numeric_leaf(&vpoff, p_vboff);
1428 /* FIXME: ignored for now */
1430 ptr += 2 + 2 + 2 + 2 + vbplen + vplen;
1435 case LF_IVBCLASS_32:
1437 int vbpoff, vbplen = numeric_leaf(&vbpoff, &type->vbclass32.vbpoff);
1438 const unsigned short int* p_vboff = (const unsigned short int*)((const char*)&type->vbclass32.vbpoff + vbpoff);
1439 int vpoff, vplen = numeric_leaf(&vpoff, p_vboff);
1441 /* FIXME: ignored for now */
1443 ptr += 2 + 2 + 4 + 4 + vbplen + vplen;
1449 int offset, olen = numeric_leaf(&offset, &type->member.offset);
1450 const unsigned char* name = (const unsigned char*)&type->member.offset + olen;
1451 struct symt* subtype = codeview_get_type(type->member.type, TRUE);
1453 if (!subtype || subtype->tag != SymTagCVBitField)
1455 DWORD elem_size = 0;
1456 if (subtype) symt_get_info(subtype, TI_GET_LENGTH, &elem_size);
1457 symt_add_udt_element(module, symt, terminate_string(name),
1458 subtype, offset << 3, elem_size << 3);
1462 struct codeview_bitfield* cvbf = (struct codeview_bitfield*)subtype;
1463 symt_add_udt_element(module, symt, terminate_string(name),
1464 codeview_get_type(cvbf->subtype, FALSE),
1465 cvbf->bitposition, cvbf->bitlength);
1468 ptr += 2 + 2 + 2 + olen + (1 + name[0]);
1474 int offset, olen = numeric_leaf(&offset, &type->member32.offset);
1475 const unsigned char* name = (const unsigned char*)&type->member32.offset + olen;
1476 struct symt* subtype = codeview_get_type(type->member32.type, TRUE);
1478 if (!subtype || subtype->tag != SymTagCVBitField)
1480 DWORD elem_size = 0;
1481 if (subtype) symt_get_info(subtype, TI_GET_LENGTH, &elem_size);
1482 symt_add_udt_element(module, symt, terminate_string(name),
1483 subtype, offset << 3, elem_size << 3);
1487 struct codeview_bitfield* cvbf = (struct codeview_bitfield*)subtype;
1488 symt_add_udt_element(module, symt, terminate_string(name),
1489 codeview_get_type(cvbf->subtype, FALSE),
1490 cvbf->bitposition, cvbf->bitlength);
1493 ptr += 2 + 2 + 4 + olen + (1 + name[0]);
1498 /* FIXME: ignored for now */
1499 ptr += 2 + 2 + 2 + (1 + type->stmember.name[0]);
1502 case LF_STMEMBER_32:
1503 /* FIXME: ignored for now */
1504 ptr += 2 + 4 + 2 + (1 + type->stmember32.name[0]);
1508 /* FIXME: ignored for now */
1509 ptr += 2 + 2 + 2 + (1 + type->method.name[0]);
1513 /* FIXME: ignored for now */
1514 ptr += 2 + 2 + 4 + (1 + type->method32.name[0]);
1518 /* FIXME: ignored for now */
1519 ptr += 2 + 2 + (1 + type->nesttype.name[0]);
1522 case LF_NESTTYPE_32:
1523 /* FIXME: ignored for now */
1524 ptr += 2 + 2 + 4 + (1 + type->nesttype32.name[0]);
1528 /* FIXME: ignored for now */
1532 case LF_VFUNCTAB_32:
1533 /* FIXME: ignored for now */
1538 /* FIXME: ignored for now */
1539 switch ((type->onemethod.attribute >> 2) & 7)
1541 case 4: case 6: /* (pure) introducing virtual method */
1542 ptr += 2 + 2 + 2 + 4 + (1 + type->onemethod_virt.name[0]);
1546 ptr += 2 + 2 + 2 + (1 + type->onemethod.name[0]);
1551 case LF_ONEMETHOD_32:
1552 /* FIXME: ignored for now */
1553 switch ((type->onemethod32.attribute >> 2) & 7)
1555 case 4: case 6: /* (pure) introducing virtual method */
1556 ptr += 2 + 2 + 4 + 4 + (1 + type->onemethod32_virt.name[0]);
1560 ptr += 2 + 2 + 4 + (1 + type->onemethod32.name[0]);
1566 FIXME("Unhandled type %04x in STRUCT field list\n", type->generic.id);
1571 return codeview_add_type(typeno, &symt->symt);
1574 static int codeview_add_type_enum(struct module* module, unsigned int typeno,
1575 const char* name, unsigned int fieldlist)
1577 struct symt_enum* symt = symt_new_enum(module, name);
1578 struct symt* list = codeview_get_type(fieldlist, FALSE);
1580 /* FIXME: this is rather ugly !!! */
1581 if (list) symt->vchildren = ((struct symt_enum*)list)->vchildren;
1583 return codeview_add_type(typeno, &symt->symt);
1586 static int codeview_add_type_struct(struct module* module, unsigned int typeno,
1587 const char* name, int structlen,
1588 unsigned int fieldlist, enum UdtKind kind)
1590 struct symt_udt* symt = symt_new_udt(module, name, structlen, kind);
1591 struct symt* list = codeview_get_type(fieldlist, FALSE);
1593 /* FIXME: this is rather ugly !!! */
1594 if (list) symt->vchildren = ((struct symt_udt*)list)->vchildren;
1596 return codeview_add_type(typeno, &symt->symt);
1599 static int codeview_parse_type_table(struct module* module, const char* table, int len)
1601 unsigned int curr_type = 0x1000;
1602 const char* ptr = table;
1604 while (ptr - table < len)
1606 const union codeview_type* type = (const union codeview_type*)ptr;
1609 switch (type->generic.id)
1612 retv = codeview_add_type_pointer(module, curr_type,
1613 type->pointer.datatype);
1616 retv = codeview_add_type_pointer(module, curr_type,
1617 type->pointer32.datatype);
1622 int arrlen, alen = numeric_leaf(&arrlen, &type->array.arrlen);
1623 const unsigned char* name = (const unsigned char*)&type->array.arrlen + alen;
1625 retv = codeview_add_type_array(module, curr_type, terminate_string(name),
1626 type->array.elemtype, arrlen);
1631 int arrlen, alen = numeric_leaf(&arrlen, &type->array32.arrlen);
1632 const unsigned char* name = (const unsigned char*)&type->array32.arrlen + alen;
1634 retv = codeview_add_type_array(module, curr_type, terminate_string(name),
1635 type->array32.elemtype,
1636 type->array32.arrlen);
1640 /* a bitfields is a CodeView specific data type which represent a bitfield
1641 * in a structure or a class. For now, we store it in a SymTag-like type
1642 * (so that the rest of the process is seamless), but check at udt inclusion
1643 * type for its presence
1646 retv = codeview_add_type_bitfield(curr_type, type->bitfield.bitoff,
1647 type->bitfield.nbits,
1648 type->bitfield.type);
1650 case LF_BITFIELD_32:
1651 retv = codeview_add_type_bitfield(curr_type, type->bitfield32.bitoff,
1652 type->bitfield32.nbits,
1653 type->bitfield32.type);
1657 case LF_FIELDLIST_32:
1660 * A 'field list' is a CodeView-specific data type which doesn't
1661 * directly correspond to any high-level data type. It is used
1662 * to hold the collection of members of a struct, class, union
1663 * or enum type. The actual definition of that type will follow
1664 * later, and refer to the field list definition record.
1666 * As we don't have a field list type ourselves, we look ahead
1667 * in the field list to try to find out whether this field list
1668 * will be used for an enum or struct type, and create a dummy
1669 * type of the corresponding sort. Later on, the definition of
1670 * the 'real' type will copy the member / enumeration data.
1673 const char* list = type->fieldlist.list;
1674 int len = (ptr + type->generic.len + 2) - list;
1676 if (((union codeview_fieldtype*)list)->generic.id == LF_ENUMERATE)
1677 retv = codeview_add_type_enum_field_list(module, curr_type, list, len);
1679 retv = codeview_add_type_struct_field_list(module, curr_type, list, len);
1686 int structlen, slen = numeric_leaf(&structlen, &type->structure.structlen);
1687 const unsigned char* name = (const unsigned char*)&type->structure.structlen + slen;
1689 retv = codeview_add_type_struct(module, curr_type, terminate_string(name),
1690 structlen, type->structure.fieldlist,
1691 type->generic.id == LF_CLASS ? UdtClass : UdtStruct);
1694 case LF_STRUCTURE_32:
1697 int structlen, slen = numeric_leaf(&structlen, &type->structure32.structlen);
1698 const unsigned char* name = (const unsigned char*)&type->structure32.structlen + slen;
1700 retv = codeview_add_type_struct(module, curr_type, terminate_string(name),
1701 structlen, type->structure32.fieldlist,
1702 type->generic.id == LF_CLASS ? UdtClass : UdtStruct);
1708 int un_len, ulen = numeric_leaf(&un_len, &type->t_union.un_len);
1709 const unsigned char* name = (const unsigned char*)&type->t_union.un_len + ulen;
1711 retv = codeview_add_type_struct(module, curr_type, terminate_string(name),
1712 un_len, type->t_union.fieldlist, UdtUnion);
1717 int un_len, ulen = numeric_leaf(&un_len, &type->t_union32.un_len);
1718 const unsigned char* name = (const unsigned char*)&type->t_union32.un_len + ulen;
1720 retv = codeview_add_type_struct(module, curr_type, terminate_string(name),
1721 un_len, type->t_union32.fieldlist, UdtUnion);
1726 retv = codeview_add_type_enum(module, curr_type, terminate_string(type->enumeration.name),
1727 type->enumeration.field);
1730 retv = codeview_add_type_enum(module, curr_type, terminate_string(type->enumeration32.name),
1731 type->enumeration32.field);
1735 FIXME("LF_PROCEDURE unhandled\n");
1738 case LF_PROCEDURE_32:
1739 FIXME("LF_PROCEDURE_32 unhandled\n");
1743 FIXME("Unhandled leaf %x\n", type->generic.id);
1751 ptr += type->generic.len + 2;
1757 /*========================================================================
1758 * Process CodeView line number information.
1766 const unsigned int* ui;
1775 struct codeview_linetab
1781 struct symt_compiland* compiland;
1782 const unsigned short* linetab;
1783 const unsigned int* offtab;
1786 static struct codeview_linetab* codeview_snarf_linetab(struct module* module,
1787 const char* linetab, int size)
1790 char filename[PATH_MAX];
1791 const unsigned int* filetab;
1795 struct codeview_linetab* lt_hdr;
1796 const unsigned int* lt_ptr;
1800 union any_size pnt2;
1801 const struct startend* start;
1803 struct symt_compiland* compiland;
1806 * Now get the important bits.
1812 filetab = (const unsigned int*) pnt.c;
1815 * Now count up the number of segments in the file.
1818 for (i = 0; i < nfile; i++)
1820 pnt2.c = linetab + filetab[i];
1825 * Next allocate the header we will be returning.
1826 * There is one header for each segment, so that we can reach in
1827 * and pull bits as required.
1829 lt_hdr = (struct codeview_linetab*)
1830 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (nseg + 1) * sizeof(*lt_hdr));
1837 * Now fill the header we will be returning, one for each segment.
1838 * Note that this will basically just contain pointers into the existing
1839 * line table, and we do not actually copy any additional information
1840 * or allocate any additional memory.
1844 for (i = 0; i < nfile; i++)
1847 * Get the pointer into the segment information.
1849 pnt2.c = linetab + filetab[i];
1850 file_segcount = *pnt2.s;
1853 lt_ptr = (const unsigned int*) pnt2.c;
1854 start = (const struct startend*)(lt_ptr + file_segcount);
1857 * Now snarf the filename for all of the segments for this file.
1859 fn = (const unsigned char*)(start + file_segcount);
1860 memset(filename, 0, sizeof(filename));
1861 memcpy(filename, fn + 1, *fn);
1862 compiland = symt_new_compiland(module, filename);
1864 for (k = 0; k < file_segcount; k++, this_seg++)
1866 pnt2.c = linetab + lt_ptr[k];
1867 lt_hdr[this_seg].start = start[k].start;
1868 lt_hdr[this_seg].end = start[k].end;
1869 lt_hdr[this_seg].compiland = compiland;
1870 lt_hdr[this_seg].segno = *pnt2.s++;
1871 lt_hdr[this_seg].nline = *pnt2.s++;
1872 lt_hdr[this_seg].offtab = pnt2.ui;
1873 lt_hdr[this_seg].linetab = (const unsigned short*)(pnt2.ui + lt_hdr[this_seg].nline);
1883 /*========================================================================
1884 * Process CodeView symbol information.
1887 union codeview_symbol
1899 unsigned int offset;
1901 unsigned short symtype;
1902 unsigned char namelen;
1903 unsigned char name[1];
1910 unsigned int symtype;
1911 unsigned int offset;
1913 unsigned char namelen;
1914 unsigned char name[1];
1921 unsigned int pparent;
1924 unsigned int offset;
1925 unsigned short segment;
1926 unsigned short thunk_len;
1927 unsigned char thtype;
1928 unsigned char namelen;
1929 unsigned char name[1];
1936 unsigned int pparent;
1939 unsigned int proc_len;
1940 unsigned int debug_start;
1941 unsigned int debug_end;
1942 unsigned int offset;
1943 unsigned short segment;
1944 unsigned short proctype;
1945 unsigned char flags;
1946 unsigned char namelen;
1947 unsigned char name[1];
1954 unsigned int pparent;
1957 unsigned int proc_len;
1958 unsigned int debug_start;
1959 unsigned int debug_end;
1960 unsigned int proctype;
1961 unsigned int offset;
1962 unsigned short segment;
1963 unsigned char flags;
1964 unsigned char namelen;
1965 unsigned char name[1];
1970 short int len; /* Total length of this entry */
1971 short int id; /* Always S_BPREL */
1972 unsigned int offset; /* Stack offset relative to BP */
1973 unsigned short symtype;
1974 unsigned char namelen;
1975 unsigned char name[1];
1980 short int len; /* Total length of this entry */
1981 short int id; /* Always S_BPREL_32 */
1982 unsigned int offset; /* Stack offset relative to EBP */
1983 unsigned int symtype;
1984 unsigned char namelen;
1985 unsigned char name[1];
1990 short int len; /* Total length of this entry */
1991 short int id; /* Always S_REGISTER */
1992 unsigned short type;
1994 unsigned char namelen;
1995 unsigned char name[1];
1996 /* don't handle register tracking */
2001 short int len; /* Total length of this entry */
2002 short int id; /* Always S_REGISTER_32 */
2003 unsigned int type; /* check whether type & reg are correct */
2005 unsigned char namelen;
2006 unsigned char name[1];
2007 /* don't handle register tracking */
2014 unsigned int parent;
2016 unsigned int length;
2017 unsigned int offset;
2018 unsigned short segment;
2019 unsigned char namelen;
2020 unsigned char name[1];
2027 unsigned int offset;
2028 unsigned short segment;
2029 unsigned char flags;
2030 unsigned char namelen;
2031 unsigned char name[1];
2038 unsigned short type;
2039 unsigned short arrlen; /* numeric leaf */
2041 unsigned char namelen;
2042 unsigned char name[1];
2051 unsigned short arrlen; /* numeric leaf */
2053 unsigned char namelen;
2054 unsigned char name[1];
2062 unsigned short type;
2063 unsigned char namelen;
2064 unsigned char name[1];
2072 unsigned char namelen;
2073 unsigned char name[1];
2077 #define S_COMPILE 0x0001
2078 #define S_REGISTER 0x0002
2079 #define S_CONSTANT 0x0003
2080 #define S_UDT 0x0004
2081 #define S_SSEARCH 0x0005
2082 #define S_END 0x0006
2083 #define S_SKIP 0x0007
2084 #define S_CVRESERVE 0x0008
2085 #define S_OBJNAME 0x0009
2086 #define S_ENDARG 0x000a
2087 #define S_COBOLUDT 0x000b
2088 #define S_MANYREG 0x000c
2089 #define S_RETURN 0x000d
2090 #define S_ENTRYTHIS 0x000e
2092 #define S_BPREL 0x0200
2093 #define S_LDATA 0x0201
2094 #define S_GDATA 0x0202
2095 #define S_PUB 0x0203
2096 #define S_LPROC 0x0204
2097 #define S_GPROC 0x0205
2098 #define S_THUNK 0x0206
2099 #define S_BLOCK 0x0207
2100 #define S_WITH 0x0208
2101 #define S_LABEL 0x0209
2102 #define S_CEXMODEL 0x020a
2103 #define S_VFTPATH 0x020b
2104 #define S_REGREL 0x020c
2105 #define S_LTHREAD 0x020d
2106 #define S_GTHREAD 0x020e
2108 #define S_PROCREF 0x0400
2109 #define S_DATAREF 0x0401
2110 #define S_ALIGN 0x0402
2111 #define S_LPROCREF 0x0403
2113 #define S_REGISTER_32 0x1001 /* Variants with new 32-bit type indices */
2114 #define S_CONSTANT_32 0x1002
2115 #define S_UDT_32 0x1003
2116 #define S_COBOLUDT_32 0x1004
2117 #define S_MANYREG_32 0x1005
2118 #define S_BPREL_32 0x1006
2119 #define S_LDATA_32 0x1007
2120 #define S_GDATA_32 0x1008
2121 #define S_PUB_32 0x1009
2122 #define S_LPROC_32 0x100a
2123 #define S_GPROC_32 0x100b
2124 #define S_VFTTABLE_32 0x100c
2125 #define S_REGREL_32 0x100d
2126 #define S_LTHREAD_32 0x100e
2127 #define S_GTHREAD_32 0x100f
2129 static unsigned int codeview_map_offset(const struct msc_debug_info* msc_dbg,
2130 unsigned int offset)
2132 int nomap = msc_dbg->nomap;
2133 const OMAP_DATA* omapp = msc_dbg->omapp;
2136 if (!nomap || !omapp) return offset;
2138 /* FIXME: use binary search */
2139 for (i = 0; i < nomap - 1; i++)
2140 if (omapp[i].from <= offset && omapp[i+1].from > offset)
2141 return !omapp[i].to ? 0 : omapp[i].to + (offset - omapp[i].from);
2146 static const struct codeview_linetab*
2147 codeview_get_linetab(const struct codeview_linetab* linetab,
2148 unsigned seg, unsigned offset)
2151 * Check whether we have line number information
2155 for (; linetab->linetab; linetab++)
2156 if (linetab->segno == seg &&
2157 linetab->start <= offset && linetab->end > offset)
2159 if (!linetab->linetab) linetab = NULL;
2164 static unsigned codeview_get_address(const struct msc_debug_info* msc_dbg,
2165 unsigned seg, unsigned offset)
2167 int nsect = msc_dbg->nsect;
2168 const IMAGE_SECTION_HEADER* sectp = msc_dbg->sectp;
2170 if (!seg || seg > nsect) return 0;
2171 return msc_dbg->module->module.BaseOfImage +
2172 codeview_map_offset(msc_dbg, sectp[seg-1].VirtualAddress + offset);
2175 static void codeview_add_func_linenum(struct module* module,
2176 struct symt_function* func,
2177 const struct codeview_linetab* linetab,
2178 unsigned offset, unsigned size)
2182 if (!linetab) return;
2183 for (i = 0; i < linetab->nline; i++)
2185 if (linetab->offtab[i] >= offset && linetab->offtab[i] < offset + size)
2187 symt_add_func_line(module, func, linetab->compiland->source,
2188 linetab->linetab[i], linetab->offtab[i] - offset);
2193 static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root,
2194 int offset, int size,
2195 struct codeview_linetab* linetab)
2197 struct symt_function* curr_func = NULL;
2199 char symname[PATH_MAX];
2200 const struct codeview_linetab* flt;
2201 struct symt_block* block = NULL;
2205 * Loop over the different types of records and whenever we
2206 * find something we are interested in, record it and move on.
2208 for (i = offset; i < size; i += length)
2210 const union codeview_symbol* sym = (const union codeview_symbol*)(root + i);
2211 length = sym->generic.len + 2;
2213 switch (sym->generic.id)
2216 * Global and local data symbols. We don't associate these
2217 * with any given source file.
2221 memcpy(symname, sym->data.name, sym->data.namelen);
2222 symname[sym->data.namelen] = '\0';
2223 flt = codeview_get_linetab(linetab, sym->data.seg, sym->data.offset);
2224 symt_new_global_variable(msc_dbg->module,
2225 flt ? flt->compiland : NULL,
2226 symname, sym->generic.id == S_LDATA,
2227 codeview_get_address(msc_dbg, sym->data.seg, sym->data.offset),
2229 codeview_get_type(sym->data.symtype, FALSE));
2234 memcpy(symname, sym->data32.name, sym->data32.namelen);
2235 symname[sym->data32.namelen] = '\0';
2236 flt = codeview_get_linetab(linetab, sym->data32.seg, sym->data32.offset);
2237 symt_new_global_variable(msc_dbg->module, flt ? flt->compiland : NULL,
2238 symname, sym->generic.id == S_LDATA_32,
2239 codeview_get_address(msc_dbg, sym->data32.seg, sym->data32.offset),
2241 codeview_get_type(sym->data32.symtype, FALSE));
2244 case S_PUB: /* FIXME is this really a 'data' structure ?? */
2245 memcpy(symname, sym->data.name, sym->data.namelen);
2246 symname[sym->data.namelen] = '\0';
2247 flt = codeview_get_linetab(linetab, sym->data.seg, sym->data.offset);
2248 symt_new_public(msc_dbg->module, flt ? flt->compiland : NULL,
2250 codeview_get_address(msc_dbg, sym->data.seg, sym->data.offset),
2251 0, TRUE /* FIXME */, TRUE /* FIXME */);
2254 case S_PUB_32: /* FIXME is this really a 'data32' structure ?? */
2255 memcpy(symname, sym->data32.name, sym->data32.namelen);
2256 symname[sym->data32.namelen] = '\0';
2257 flt = codeview_get_linetab(linetab, sym->data32.seg, sym->data32.offset);
2258 symt_new_public(msc_dbg->module, flt ? flt->compiland : NULL,
2260 codeview_get_address(msc_dbg, sym->data32.seg, sym->data32.offset),
2261 0, TRUE /* FIXME */, TRUE /* FIXME */);
2265 * Sort of like a global function, but it just points
2266 * to a thunk, which is a stupid name for what amounts to
2267 * a PLT slot in the normal jargon that everyone else uses.
2270 memcpy(symname, sym->thunk.name, sym->thunk.namelen);
2271 symname[sym->thunk.namelen] = '\0';
2272 flt = codeview_get_linetab(linetab, sym->thunk.segment, sym->thunk.offset);
2273 symt_new_thunk(msc_dbg->module, flt ? flt->compiland : NULL,
2274 symname, sym->thunk.thtype,
2275 codeview_get_address(msc_dbg, sym->thunk.segment, sym->thunk.offset),
2276 sym->thunk.thunk_len);
2280 * Global and static functions.
2284 memcpy(symname, sym->proc.name, sym->proc.namelen);
2285 symname[sym->proc.namelen] = '\0';
2286 flt = codeview_get_linetab(linetab, sym->proc.segment, sym->proc.offset);
2287 curr_func = symt_new_function(msc_dbg->module,
2288 flt ? flt->compiland : NULL, symname,
2289 codeview_get_address(msc_dbg, sym->proc.segment, sym->proc.offset),
2291 codeview_get_type(sym->proc.proctype, FALSE));
2292 codeview_add_func_linenum(msc_dbg->module, curr_func, flt,
2293 sym->proc.offset, sym->proc.proc_len);
2294 symt_add_function_point(msc_dbg->module, curr_func, SymTagFuncDebugStart, sym->proc.debug_start, NULL);
2295 symt_add_function_point(msc_dbg->module, curr_func, SymTagFuncDebugEnd, sym->proc.debug_end, NULL);
2299 memcpy(symname, sym->proc32.name, sym->proc32.namelen);
2300 symname[sym->proc32.namelen] = '\0';
2301 flt = codeview_get_linetab(linetab, sym->proc32.segment, sym->proc32.offset);
2302 curr_func = symt_new_function(msc_dbg->module,
2303 flt ? flt->compiland : NULL, symname,
2304 codeview_get_address(msc_dbg, sym->proc32.segment, sym->proc32.offset),
2305 sym->proc32.proc_len,
2306 codeview_get_type(sym->proc32.proctype, FALSE));
2307 codeview_add_func_linenum(msc_dbg->module, curr_func, flt,
2308 sym->proc32.offset, sym->proc32.proc_len);
2309 symt_add_function_point(msc_dbg->module, curr_func, SymTagFuncDebugStart, sym->proc32.debug_start, NULL);
2310 symt_add_function_point(msc_dbg->module, curr_func, SymTagFuncDebugEnd, sym->proc32.debug_end, NULL);
2314 * Function parameters and stack variables.
2317 memcpy(symname, sym->stack.name, sym->stack.namelen);
2318 symname[sym->stack.namelen] = '\0';
2319 symt_add_func_local(msc_dbg->module, curr_func, 0, sym->stack.offset,
2320 block, codeview_get_type(sym->stack.symtype, FALSE),
2324 memcpy(symname, sym->stack32.name, sym->stack32.namelen);
2325 symname[sym->stack32.namelen] = '\0';
2326 symt_add_func_local(msc_dbg->module, curr_func, 0, sym->stack32.offset,
2327 block, codeview_get_type(sym->stack32.symtype, FALSE),
2332 memcpy(symname, sym->s_register.name, sym->s_register.namelen);
2333 symname[sym->s_register.namelen] = '\0';
2334 symt_add_func_local(msc_dbg->module, curr_func, 0, sym->s_register.reg,
2335 block, codeview_get_type(sym->s_register.type, FALSE),
2340 memcpy(symname, sym->s_register32.name, sym->s_register32.namelen);
2341 symname[sym->s_register32.namelen] = '\0';
2342 symt_add_func_local(msc_dbg->module, curr_func, 0, sym->s_register32.reg,
2343 block, codeview_get_type(sym->s_register32.type, FALSE),
2348 block = symt_open_func_block(msc_dbg->module, curr_func, block,
2349 codeview_get_address(msc_dbg, sym->block.segment, sym->block.offset),
2356 block = symt_close_func_block(msc_dbg->module, curr_func, block, 0);
2360 symt_normalize_function(msc_dbg->module, curr_func);
2366 TRACE("S-Compile %x %.*s\n", ((const BYTE*)sym)[4], ((const BYTE*)sym)[8], (const BYTE*)sym + 9);
2370 TRACE("S-ObjName %.*s\n", ((const BYTE*)sym)[8], (const BYTE*)sym + 9);
2374 memcpy(symname, sym->label.name, sym->label.namelen);
2375 symname[sym->label.namelen] = '\0';
2378 symt_add_function_point(msc_dbg->module, curr_func, SymTagLabel,
2379 codeview_get_address(msc_dbg, sym->label.segment, sym->label.offset) - curr_func->address,
2382 else FIXME("No current function for label %s\n", symname);
2393 vlen = numeric_leaf(&val, &sym->constant32.arrlen);
2394 ptr = (char*)&sym->constant32.arrlen + vlen;
2395 se = codeview_get_type(sym->constant32.type, FALSE);
2397 else if (se->tag == SymTagEnum) x = ((struct symt_enum*)se)->name;
2400 FIXME("S-Constant %u %.*s %x (%s)\n",
2401 val, ptr[0], ptr + 1, sym->constant32.type, x);
2407 symt = codeview_get_type(sym->udt.type, FALSE);
2410 memcpy(symname, sym->udt.name, sym->udt.namelen);
2411 symname[sym->udt.namelen] = '\0';
2412 symt_new_typedef(msc_dbg->module, symt, symname);
2414 else FIXME("S-Udt %.*s: couldn't find type 0x%x\n",
2415 sym->udt.namelen, sym->udt.name, sym->udt.type);
2419 symt = codeview_get_type(sym->udt32.type, FALSE);
2422 memcpy(symname, sym->udt32.name, sym->udt32.namelen);
2423 symname[sym->udt32.namelen] = '\0';
2424 symt_new_typedef(msc_dbg->module, symt, symname);
2426 else FIXME("S-Udt %.*s: couldn't find type 0x%x\n",
2427 sym->udt32.namelen, sym->udt32.name, sym->udt32.type);
2431 * These are special, in that they are always followed by an
2432 * additional length-prefixed string which is *not* included
2433 * into the symbol length count. We need to skip it.
2439 const BYTE* name = (const BYTE*)sym + length;
2440 length += (*name + 1 + 3) & ~3;
2444 FIXME("Unsupported id %x\n", sym->generic.id);
2448 if (curr_func) symt_normalize_function(msc_dbg->module, curr_func);
2450 if (linetab) HeapFree(GetProcessHeap(), 0, linetab);
2454 /*========================================================================
2459 typedef struct _PDB_FILE
2463 } PDB_FILE,* PPDB_FILE;
2465 typedef struct _PDB_HEADER
2474 } PDB_HEADER, *PPDB_HEADER;
2476 typedef struct _PDB_TOC
2480 } PDB_TOC, *PPDB_TOC;
2482 typedef struct _PDB_ROOT
2485 DWORD TimeDateStamp;
2489 } PDB_ROOT, *PPDB_ROOT;
2491 typedef struct _PDB_TYPES_OLD
2499 } PDB_TYPES_OLD, *PPDB_TYPES_OLD;
2501 typedef struct _PDB_TYPES
2514 DWORD search_offset;
2516 DWORD unknown_offset;
2518 } PDB_TYPES, *PPDB_TYPES;
2520 typedef struct _PDB_SYMBOL_RANGE
2526 DWORD characteristics;
2529 } PDB_SYMBOL_RANGE, *PPDB_SYMBOL_RANGE;
2531 typedef struct _PDB_SYMBOL_RANGE_EX
2537 DWORD characteristics;
2542 } PDB_SYMBOL_RANGE_EX, *PPDB_SYMBOL_RANGE_EX;
2544 typedef struct _PDB_SYMBOL_FILE
2547 PDB_SYMBOL_RANGE range;
2556 } PDB_SYMBOL_FILE, *PPDB_SYMBOL_FILE;
2558 typedef struct _PDB_SYMBOL_FILE_EX
2561 PDB_SYMBOL_RANGE_EX range;
2571 } PDB_SYMBOL_FILE_EX, *PPDB_SYMBOL_FILE_EX;
2573 typedef struct _PDB_SYMBOL_SOURCE
2578 } PDB_SYMBOL_SOURCE, *PPDB_SYMBOL_SOURCE;
2580 typedef struct _PDB_SYMBOL_IMPORT
2584 DWORD TimeDateStamp;
2587 } PDB_SYMBOL_IMPORT, *PPDB_SYMBOL_IMPORT;
2589 typedef struct _PDB_SYMBOLS_OLD
2598 DWORD srcmodule_size;
2599 } PDB_SYMBOLS_OLD, *PPDB_SYMBOLS_OLD;
2601 typedef struct _PDB_SYMBOLS
2612 DWORD srcmodule_size;
2613 DWORD pdbimport_size;
2615 } PDB_SYMBOLS, *PPDB_SYMBOLS;
2618 static void* pdb_read(const BYTE* image, const WORD* block_list, int size)
2620 const PDB_HEADER* pdb = (const PDB_HEADER*)image;
2624 if (!size) return NULL;
2626 nBlocks = (size + pdb->blocksize - 1) / pdb->blocksize;
2627 buffer = HeapAlloc(GetProcessHeap(), 0, nBlocks * pdb->blocksize);
2629 for (i = 0; i < nBlocks; i++)
2630 memcpy(buffer + i * pdb->blocksize,
2631 image + block_list[i] * pdb->blocksize, pdb->blocksize);
2636 static void* pdb_read_file(const BYTE* image, const PDB_TOC* toc, DWORD fileNr)
2638 const PDB_HEADER* pdb = (const PDB_HEADER*)image;
2639 const WORD* block_list;
2642 if (!toc || fileNr >= toc->nFiles) return NULL;
2644 block_list = (const WORD*) &toc->file[toc->nFiles];
2645 for (i = 0; i < fileNr; i++)
2646 block_list += (toc->file[i].size + pdb->blocksize - 1) / pdb->blocksize;
2648 return pdb_read(image, block_list, toc->file[fileNr].size);
2651 static void pdb_free(void* buffer)
2653 HeapFree(GetProcessHeap(), 0, buffer);
2656 static void pdb_convert_types_header(PDB_TYPES* types, const BYTE* image)
2658 memset(types, 0, sizeof(PDB_TYPES));
2661 if (*(const DWORD*)image < 19960000) /* FIXME: correct version? */
2663 /* Old version of the types record header */
2664 const PDB_TYPES_OLD* old = (const PDB_TYPES_OLD*)image;
2665 types->version = old->version;
2666 types->type_offset = sizeof(PDB_TYPES_OLD);
2667 types->type_size = old->type_size;
2668 types->first_index = old->first_index;
2669 types->last_index = old->last_index;
2670 types->file = old->file;
2674 /* New version of the types record header */
2675 *types = *(const PDB_TYPES*)image;
2679 static void pdb_convert_symbols_header(PDB_SYMBOLS* symbols,
2680 int* header_size, const BYTE* image)
2682 memset(symbols, 0, sizeof(PDB_SYMBOLS));
2685 if (*(const DWORD*)image != 0xffffffff)
2687 /* Old version of the symbols record header */
2688 const PDB_SYMBOLS_OLD* old = (const PDB_SYMBOLS_OLD*)image;
2689 symbols->version = 0;
2690 symbols->module_size = old->module_size;
2691 symbols->offset_size = old->offset_size;
2692 symbols->hash_size = old->hash_size;
2693 symbols->srcmodule_size = old->srcmodule_size;
2694 symbols->pdbimport_size = 0;
2695 symbols->hash1_file = old->hash1_file;
2696 symbols->hash2_file = old->hash2_file;
2697 symbols->gsym_file = old->gsym_file;
2699 *header_size = sizeof(PDB_SYMBOLS_OLD);
2703 /* New version of the symbols record header */
2704 *symbols = *(const PDB_SYMBOLS*)image;
2705 *header_size = sizeof(PDB_SYMBOLS);
2709 static BOOL CALLBACK pdb_match(char* file, void* user)
2711 /* accept first file */
2715 static HANDLE open_pdb_file(const struct process* pcs, struct module* module,
2716 const char* filename)
2719 char dbg_file_path[MAX_PATH];
2721 h = CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
2722 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
2723 /* FIXME: should give more bits on the file to look at */
2724 if (h == INVALID_HANDLE_VALUE &&
2725 SymFindFileInPath(pcs->handle, NULL, (char*)filename, NULL, 0, 0, 0,
2726 dbg_file_path, pdb_match, NULL))
2728 h = CreateFileA(dbg_file_path, GENERIC_READ, FILE_SHARE_READ, NULL,
2729 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
2731 return (h == INVALID_HANDLE_VALUE) ? NULL : h;
2734 static BOOL pdb_process_file(const struct process* pcs,
2735 const struct msc_debug_info* msc_dbg,
2736 const char* filename, DWORD timestamp)
2739 HANDLE hFile, hMap = NULL;
2741 PDB_HEADER* pdb = NULL;
2742 PDB_TOC* toc = NULL;
2743 PDB_ROOT* root = NULL;
2744 char* types_image = NULL;
2745 char* symbols_image = NULL;
2747 PDB_SYMBOLS symbols;
2748 int header_size = 0;
2752 TRACE("Processing PDB file %s\n", filename);
2755 * Open and map() .PDB file
2757 if ((hFile = open_pdb_file(pcs, msc_dbg->module, filename)) == NULL ||
2758 ((hMap = CreateFileMappingA(hFile, NULL, PAGE_READONLY, 0, 0, NULL)) == NULL) ||
2759 ((image = MapViewOfFile(hMap, FILE_MAP_READ, 0, 0, 0)) == NULL))
2761 ERR("-Unable to peruse .PDB file %s\n", filename);
2766 * Read in TOC and well-known files
2768 pdb = (PPDB_HEADER)image;
2769 toc = pdb_read(image, pdb->toc_block, pdb->toc.size);
2770 root = pdb_read_file(image, toc, 1);
2771 types_image = pdb_read_file(image, toc, 2);
2772 symbols_image = pdb_read_file(image, toc, 3);
2774 pdb_convert_types_header(&types, types_image);
2775 pdb_convert_symbols_header(&symbols, &header_size, symbols_image);
2779 ERR("-Unable to get root from .PDB file %s\n", filename);
2784 * Check for unknown versions
2787 switch (root->version)
2789 case 19950623: /* VC 4.0 */
2791 case 19960307: /* VC 5.0 */
2792 case 19970604: /* VC 6.0 */
2795 ERR("-Unknown root block version %ld\n", root->version);
2798 switch (types.version)
2800 case 19950410: /* VC 4.0 */
2802 case 19961031: /* VC 5.0 / 6.0 */
2805 ERR("-Unknown type info version %ld\n", types.version);
2808 switch (symbols.version)
2810 case 0: /* VC 4.0 */
2811 case 19960307: /* VC 5.0 */
2812 case 19970606: /* VC 6.0 */
2815 ERR("-Unknown symbol info version %ld\n", symbols.version);
2819 /* Check .PDB time stamp */
2820 if (root->TimeDateStamp != timestamp)
2822 ERR("-Wrong time stamp of .PDB file %s (0x%08lx, 0x%08lx)\n",
2823 filename, root->TimeDateStamp, timestamp);
2826 /* Read type table */
2827 codeview_parse_type_table(msc_dbg->module, types_image + types.type_offset, types.type_size);
2829 /* Read type-server .PDB imports */
2830 if (symbols.pdbimport_size)
2833 ERR("-Type server .PDB imports ignored!\n");
2836 /* Read global symbol table */
2837 modimage = pdb_read_file(image, toc, symbols.gsym_file);
2840 codeview_snarf(msc_dbg, modimage, 0, toc->file[symbols.gsym_file].size, NULL);
2844 /* Read per-module symbol / linenumber tables */
2845 file = symbols_image + header_size;
2846 while (file - symbols_image < header_size + symbols.module_size)
2848 int file_nr, file_index, symbol_size, lineno_size;
2851 if (symbols.version < 19970000)
2853 PDB_SYMBOL_FILE *sym_file = (PDB_SYMBOL_FILE*) file;
2854 file_nr = sym_file->file;
2855 file_name = sym_file->filename;
2856 file_index = sym_file->range.index;
2857 symbol_size = sym_file->symbol_size;
2858 lineno_size = sym_file->lineno_size;
2862 PDB_SYMBOL_FILE_EX *sym_file = (PDB_SYMBOL_FILE_EX*) file;
2863 file_nr = sym_file->file;
2864 file_name = sym_file->filename;
2865 file_index = sym_file->range.index;
2866 symbol_size = sym_file->symbol_size;
2867 lineno_size = sym_file->lineno_size;
2870 modimage = pdb_read_file(image, toc, file_nr);
2873 struct codeview_linetab* linetab = NULL;
2876 linetab = codeview_snarf_linetab(msc_dbg->module, modimage + symbol_size, lineno_size);
2879 codeview_snarf(msc_dbg, modimage, sizeof(DWORD), symbol_size, linetab);
2884 file_name += strlen(file_name) + 1;
2885 file = (char*)((DWORD)(file_name + strlen(file_name) + 1 + 3) & ~3);
2888 msc_dbg->module->module.SymType = SymCv;
2894 codeview_clear_type_table();
2896 if (symbols_image) pdb_free(symbols_image);
2897 if (types_image) pdb_free(types_image);
2898 if (root) pdb_free(root);
2899 if (toc) pdb_free(toc);
2901 if (image) UnmapViewOfFile(image);
2902 if (hMap) CloseHandle(hMap);
2903 if (hFile) CloseHandle(hFile);
2908 /*========================================================================
2909 * Process CodeView debug information.
2912 #define CODEVIEW_NB09_SIG ('N' | ('B' << 8) | ('0' << 16) | ('9' << 24))
2913 #define CODEVIEW_NB10_SIG ('N' | ('B' << 8) | ('1' << 16) | ('0' << 24))
2914 #define CODEVIEW_NB11_SIG ('N' | ('B' << 8) | ('1' << 16) | ('1' << 24))
2916 typedef struct _CODEVIEW_HEADER
2920 } CODEVIEW_HEADER,* PCODEVIEW_HEADER;
2922 typedef struct _CODEVIEW_PDB_DATA
2927 } CODEVIEW_PDB_DATA, *PCODEVIEW_PDB_DATA;
2929 typedef struct _CV_DIRECTORY_HEADER
2936 } CV_DIRECTORY_HEADER, *PCV_DIRECTORY_HEADER;
2938 typedef struct _CV_DIRECTORY_ENTRY
2944 } CV_DIRECTORY_ENTRY, *PCV_DIRECTORY_ENTRY;
2946 #define sstAlignSym 0x125
2947 #define sstSrcModule 0x127
2949 static BOOL codeview_process_info(const struct process* pcs,
2950 const struct msc_debug_info* msc_dbg)
2952 const CODEVIEW_HEADER* cv = (const CODEVIEW_HEADER*)msc_dbg->root;
2956 switch (cv->dwSignature)
2958 case CODEVIEW_NB09_SIG:
2959 case CODEVIEW_NB11_SIG:
2961 const CV_DIRECTORY_HEADER* hdr = (const CV_DIRECTORY_HEADER*)(msc_dbg->root + cv->lfoDirectory);
2962 const CV_DIRECTORY_ENTRY* ent;
2963 const CV_DIRECTORY_ENTRY* prev;
2964 const CV_DIRECTORY_ENTRY* next;
2967 codeview_init_basic_types(msc_dbg->module);
2968 ent = (const CV_DIRECTORY_ENTRY*)((const BYTE*)hdr + hdr->cbDirHeader);
2969 for (i = 0; i < hdr->cDir; i++, ent = next)
2971 next = (i == hdr->cDir-1)? NULL :
2972 (const CV_DIRECTORY_ENTRY*)((const BYTE*)ent + hdr->cbDirEntry);
2973 prev = (i == 0)? NULL :
2974 (const CV_DIRECTORY_ENTRY*)((const BYTE*)ent - hdr->cbDirEntry);
2976 if (ent->subsection == sstAlignSym)
2979 * Check the next and previous entry. If either is a
2980 * sstSrcModule, it contains the line number info for
2983 * FIXME: This is not a general solution!
2985 struct codeview_linetab* linetab = NULL;
2987 if (next && next->iMod == ent->iMod && next->subsection == sstSrcModule)
2988 linetab = codeview_snarf_linetab(msc_dbg->module, msc_dbg->root + next->lfo, next->cb);
2990 if (prev && prev->iMod == ent->iMod && prev->subsection == sstSrcModule)
2991 linetab = codeview_snarf_linetab(msc_dbg->module, msc_dbg->root + prev->lfo, prev->cb);
2993 codeview_snarf(msc_dbg, msc_dbg->root + ent->lfo, sizeof(DWORD),
2998 msc_dbg->module->module.SymType = SymCv;
3003 case CODEVIEW_NB10_SIG:
3005 const CODEVIEW_PDB_DATA* pdb = (const CODEVIEW_PDB_DATA*)(cv + 1);
3007 codeview_init_basic_types(msc_dbg->module);
3008 ret = pdb_process_file(pcs, msc_dbg, pdb->name, pdb->timestamp);
3012 ERR("Unknown CODEVIEW signature %08lX in module %s\n",
3013 cv->dwSignature, msc_dbg->module->module.ModuleName);
3020 /*========================================================================
3021 * Process debug directory.
3023 BOOL pe_load_debug_directory(const struct process* pcs, struct module* module,
3024 const BYTE* mapping,
3025 const IMAGE_SECTION_HEADER* sectp, DWORD nsect,
3026 const IMAGE_DEBUG_DIRECTORY* dbg, int nDbg)
3030 struct msc_debug_info msc_dbg;
3032 msc_dbg.module = module;
3033 msc_dbg.nsect = nsect;
3034 msc_dbg.sectp = sectp;
3036 msc_dbg.omapp = NULL;
3042 /* First, watch out for OMAP data */
3043 for (i = 0; i < nDbg; i++)
3045 if (dbg[i].Type == IMAGE_DEBUG_TYPE_OMAP_FROM_SRC)
3047 msc_dbg.nomap = dbg[i].SizeOfData / sizeof(OMAP_DATA);
3048 msc_dbg.omapp = (const OMAP_DATA*)(mapping + dbg[i].PointerToRawData);
3053 /* Now, try to parse CodeView debug info */
3054 for (i = 0; i < nDbg; i++)
3056 if (dbg[i].Type == IMAGE_DEBUG_TYPE_CODEVIEW)
3058 msc_dbg.root = mapping + dbg[i].PointerToRawData;
3059 if ((ret = codeview_process_info(pcs, &msc_dbg))) goto done;
3063 /* If not found, try to parse COFF debug info */
3064 for (i = 0; i < nDbg; i++)
3066 if (dbg[i].Type == IMAGE_DEBUG_TYPE_COFF)
3068 msc_dbg.root = mapping + dbg[i].PointerToRawData;
3069 if ((ret = coff_process_info(&msc_dbg))) goto done;
3074 /* FIXME: this should be supported... this is the debug information for
3075 * functions compiled without a frame pointer (FPO = frame pointer omission)
3076 * the associated data helps finding out the relevant information
3078 for (i = 0; i < nDbg; i++)
3079 if (dbg[i].Type == IMAGE_DEBUG_TYPE_FPO)
3080 DEBUG_Printf("This guy has FPO information\n");
3083 #define FRAME_TRAP 1
3086 typedef struct _FPO_DATA
3088 DWORD ulOffStart; /* offset 1st byte of function code */
3089 DWORD cbProcSize; /* # bytes in function */
3090 DWORD cdwLocals; /* # bytes in locals/4 */
3091 WORD cdwParams; /* # bytes in params/4 */
3093 WORD cbProlog : 8; /* # bytes in prolog */
3094 WORD cbRegs : 3; /* # regs saved */
3095 WORD fHasSEH : 1; /* TRUE if SEH in func */
3096 WORD fUseBP : 1; /* TRUE if EBP has been allocated */
3097 WORD reserved : 1; /* reserved for future use */
3098 WORD cbFrame : 2; /* frame type */
3104 __EXCEPT(page_fault)
3106 ERR("Got a page fault while loading symbols\n");