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-2009, 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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.
35 #include "dbghelp_private.h"
37 #include <wine/exception.h>
39 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_msc
);
41 #define MAX_PATHNAME_LEN 1024
43 struct pdb_stream_name
55 struct pdb_stream_name
* stream_dict
;
56 unsigned fpoext_stream
;
62 struct PDB_JG_TOC
* toc
;
67 struct PDB_DS_TOC
* toc
;
72 /* FIXME: don't make it static */
73 #define CV_MAX_MODULES 32
74 struct pdb_module_info
76 unsigned used_subfiles
;
77 struct pdb_file_info pdb_files
[CV_MAX_MODULES
];
80 /*========================================================================
81 * Debug file access helper routines
84 static void dump(const void* ptr
, unsigned len
)
88 const char* hexof
= "0123456789abcdef";
91 for (i
= 0; i
< len
; i
+= 16)
93 sprintf(msg
, "%08x: ", i
);
94 memset(msg
+ 10, ' ', 3 * 16 + 1 + 16);
95 for (j
= 0; j
< min(16, len
- i
); j
++)
97 msg
[10 + 3 * j
+ 0] = hexof
[x
[i
+ j
] >> 4];
98 msg
[10 + 3 * j
+ 1] = hexof
[x
[i
+ j
] & 15];
99 msg
[10 + 3 * j
+ 2] = ' ';
100 msg
[10 + 3 * 16 + 1 + j
] = (x
[i
+ j
] >= 0x20 && x
[i
+ j
] < 0x7f) ?
103 msg
[10 + 3 * 16] = ' ';
104 msg
[10 + 3 * 16 + 1 + 16] = '\0';
109 /*========================================================================
110 * Process CodeView type information.
113 #define MAX_BUILTIN_TYPES 0x06FF
114 #define FIRST_DEFINABLE_TYPE 0x1000
116 static struct symt
* cv_basic_types
[MAX_BUILTIN_TYPES
];
118 struct cv_defined_module
121 unsigned int num_defined_types
;
122 struct symt
** defined_types
;
124 /* FIXME: don't make it static */
125 #define CV_MAX_MODULES 32
126 static struct cv_defined_module cv_zmodules
[CV_MAX_MODULES
];
127 static struct cv_defined_module
*cv_current_module
;
129 static void codeview_init_basic_types(struct module
* module
)
132 * These are the common builtin types that are used by VC++.
134 cv_basic_types
[T_NOTYPE
] = NULL
;
135 cv_basic_types
[T_ABS
] = NULL
;
136 cv_basic_types
[T_VOID
] = &symt_new_basic(module
, btVoid
, "void", 0)->symt
;
137 cv_basic_types
[T_CHAR
] = &symt_new_basic(module
, btChar
, "char", 1)->symt
;
138 cv_basic_types
[T_SHORT
] = &symt_new_basic(module
, btInt
, "short int", 2)->symt
;
139 cv_basic_types
[T_LONG
] = &symt_new_basic(module
, btInt
, "long int", 4)->symt
;
140 cv_basic_types
[T_QUAD
] = &symt_new_basic(module
, btInt
, "long long int", 8)->symt
;
141 cv_basic_types
[T_UCHAR
] = &symt_new_basic(module
, btUInt
, "unsigned char", 1)->symt
;
142 cv_basic_types
[T_USHORT
] = &symt_new_basic(module
, btUInt
, "unsigned short", 2)->symt
;
143 cv_basic_types
[T_ULONG
] = &symt_new_basic(module
, btUInt
, "unsigned long", 4)->symt
;
144 cv_basic_types
[T_UQUAD
] = &symt_new_basic(module
, btUInt
, "unsigned long long", 8)->symt
;
145 cv_basic_types
[T_BOOL08
] = &symt_new_basic(module
, btBool
, "BOOL08", 1)->symt
;
146 cv_basic_types
[T_BOOL16
] = &symt_new_basic(module
, btBool
, "BOOL16", 2)->symt
;
147 cv_basic_types
[T_BOOL32
] = &symt_new_basic(module
, btBool
, "BOOL32", 4)->symt
;
148 cv_basic_types
[T_BOOL64
] = &symt_new_basic(module
, btBool
, "BOOL64", 8)->symt
;
149 cv_basic_types
[T_REAL32
] = &symt_new_basic(module
, btFloat
, "float", 4)->symt
;
150 cv_basic_types
[T_REAL64
] = &symt_new_basic(module
, btFloat
, "double", 8)->symt
;
151 cv_basic_types
[T_REAL80
] = &symt_new_basic(module
, btFloat
, "long double", 10)->symt
;
152 cv_basic_types
[T_RCHAR
] = &symt_new_basic(module
, btInt
, "signed char", 1)->symt
;
153 cv_basic_types
[T_WCHAR
] = &symt_new_basic(module
, btWChar
, "wchar_t", 2)->symt
;
154 cv_basic_types
[T_INT2
] = &symt_new_basic(module
, btInt
, "INT2", 2)->symt
;
155 cv_basic_types
[T_UINT2
] = &symt_new_basic(module
, btUInt
, "UINT2", 2)->symt
;
156 cv_basic_types
[T_INT4
] = &symt_new_basic(module
, btInt
, "INT4", 4)->symt
;
157 cv_basic_types
[T_UINT4
] = &symt_new_basic(module
, btUInt
, "UINT4", 4)->symt
;
158 cv_basic_types
[T_INT8
] = &symt_new_basic(module
, btInt
, "INT8", 8)->symt
;
159 cv_basic_types
[T_UINT8
] = &symt_new_basic(module
, btUInt
, "UINT8", 8)->symt
;
160 cv_basic_types
[T_HRESULT
]= &symt_new_basic(module
, btUInt
, "HRESULT", 4)->symt
;
162 cv_basic_types
[T_32PVOID
] = &symt_new_pointer(module
, cv_basic_types
[T_VOID
], 4)->symt
;
163 cv_basic_types
[T_32PCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_CHAR
], 4)->symt
;
164 cv_basic_types
[T_32PSHORT
] = &symt_new_pointer(module
, cv_basic_types
[T_SHORT
], 4)->symt
;
165 cv_basic_types
[T_32PLONG
] = &symt_new_pointer(module
, cv_basic_types
[T_LONG
], 4)->symt
;
166 cv_basic_types
[T_32PQUAD
] = &symt_new_pointer(module
, cv_basic_types
[T_QUAD
], 4)->symt
;
167 cv_basic_types
[T_32PUCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_UCHAR
], 4)->symt
;
168 cv_basic_types
[T_32PUSHORT
] = &symt_new_pointer(module
, cv_basic_types
[T_USHORT
], 4)->symt
;
169 cv_basic_types
[T_32PULONG
] = &symt_new_pointer(module
, cv_basic_types
[T_ULONG
], 4)->symt
;
170 cv_basic_types
[T_32PUQUAD
] = &symt_new_pointer(module
, cv_basic_types
[T_UQUAD
], 4)->symt
;
171 cv_basic_types
[T_32PBOOL08
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL08
], 4)->symt
;
172 cv_basic_types
[T_32PBOOL16
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL16
], 4)->symt
;
173 cv_basic_types
[T_32PBOOL32
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL32
], 4)->symt
;
174 cv_basic_types
[T_32PBOOL64
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL64
], 4)->symt
;
175 cv_basic_types
[T_32PREAL32
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL32
], 4)->symt
;
176 cv_basic_types
[T_32PREAL64
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL64
], 4)->symt
;
177 cv_basic_types
[T_32PREAL80
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL80
], 4)->symt
;
178 cv_basic_types
[T_32PRCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_RCHAR
], 4)->symt
;
179 cv_basic_types
[T_32PWCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_WCHAR
], 4)->symt
;
180 cv_basic_types
[T_32PINT2
] = &symt_new_pointer(module
, cv_basic_types
[T_INT2
], 4)->symt
;
181 cv_basic_types
[T_32PUINT2
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT2
], 4)->symt
;
182 cv_basic_types
[T_32PINT4
] = &symt_new_pointer(module
, cv_basic_types
[T_INT4
], 4)->symt
;
183 cv_basic_types
[T_32PUINT4
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT4
], 4)->symt
;
184 cv_basic_types
[T_32PINT8
] = &symt_new_pointer(module
, cv_basic_types
[T_INT8
], 4)->symt
;
185 cv_basic_types
[T_32PUINT8
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT8
], 4)->symt
;
186 cv_basic_types
[T_32PHRESULT
]= &symt_new_pointer(module
, cv_basic_types
[T_HRESULT
], 4)->symt
;
188 cv_basic_types
[T_64PVOID
] = &symt_new_pointer(module
, cv_basic_types
[T_VOID
], 8)->symt
;
189 cv_basic_types
[T_64PCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_CHAR
], 8)->symt
;
190 cv_basic_types
[T_64PSHORT
] = &symt_new_pointer(module
, cv_basic_types
[T_SHORT
], 8)->symt
;
191 cv_basic_types
[T_64PLONG
] = &symt_new_pointer(module
, cv_basic_types
[T_LONG
], 8)->symt
;
192 cv_basic_types
[T_64PQUAD
] = &symt_new_pointer(module
, cv_basic_types
[T_QUAD
], 8)->symt
;
193 cv_basic_types
[T_64PUCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_UCHAR
], 8)->symt
;
194 cv_basic_types
[T_64PUSHORT
] = &symt_new_pointer(module
, cv_basic_types
[T_USHORT
], 8)->symt
;
195 cv_basic_types
[T_64PULONG
] = &symt_new_pointer(module
, cv_basic_types
[T_ULONG
], 8)->symt
;
196 cv_basic_types
[T_64PUQUAD
] = &symt_new_pointer(module
, cv_basic_types
[T_UQUAD
], 8)->symt
;
197 cv_basic_types
[T_64PBOOL08
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL08
], 8)->symt
;
198 cv_basic_types
[T_64PBOOL16
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL16
], 8)->symt
;
199 cv_basic_types
[T_64PBOOL32
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL32
], 8)->symt
;
200 cv_basic_types
[T_64PBOOL64
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL64
], 8)->symt
;
201 cv_basic_types
[T_64PREAL32
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL32
], 8)->symt
;
202 cv_basic_types
[T_64PREAL64
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL64
], 8)->symt
;
203 cv_basic_types
[T_64PREAL80
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL80
], 8)->symt
;
204 cv_basic_types
[T_64PRCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_RCHAR
], 8)->symt
;
205 cv_basic_types
[T_64PWCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_WCHAR
], 8)->symt
;
206 cv_basic_types
[T_64PINT2
] = &symt_new_pointer(module
, cv_basic_types
[T_INT2
], 8)->symt
;
207 cv_basic_types
[T_64PUINT2
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT2
], 8)->symt
;
208 cv_basic_types
[T_64PINT4
] = &symt_new_pointer(module
, cv_basic_types
[T_INT4
], 8)->symt
;
209 cv_basic_types
[T_64PUINT4
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT4
], 8)->symt
;
210 cv_basic_types
[T_64PINT8
] = &symt_new_pointer(module
, cv_basic_types
[T_INT8
], 8)->symt
;
211 cv_basic_types
[T_64PUINT8
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT8
], 8)->symt
;
212 cv_basic_types
[T_64PHRESULT
]= &symt_new_pointer(module
, cv_basic_types
[T_HRESULT
], 8)->symt
;
215 static int leaf_as_variant(VARIANT
* v
, const unsigned short int* leaf
)
217 unsigned short int type
= *leaf
++;
220 if (type
< LF_NUMERIC
)
222 v
->n1
.n2
.vt
= VT_UINT
;
223 v
->n1
.n2
.n3
.uintVal
= type
;
232 v
->n1
.n2
.n3
.cVal
= *(const char*)leaf
;
238 v
->n1
.n2
.n3
.iVal
= *(const short*)leaf
;
243 v
->n1
.n2
.vt
= VT_UI2
;
244 v
->n1
.n2
.n3
.uiVal
= *leaf
;
250 v
->n1
.n2
.n3
.lVal
= *(const int*)leaf
;
255 v
->n1
.n2
.vt
= VT_UI4
;
256 v
->n1
.n2
.n3
.uiVal
= *(const unsigned int*)leaf
;
262 v
->n1
.n2
.n3
.llVal
= *(const long long int*)leaf
;
267 v
->n1
.n2
.vt
= VT_UI8
;
268 v
->n1
.n2
.n3
.ullVal
= *(const long long unsigned int*)leaf
;
274 v
->n1
.n2
.n3
.fltVal
= *(const float*)leaf
;
278 FIXME("Unsupported numeric leaf type %04x\n", type
);
280 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
286 v
->n1
.n2
.n3
.fltVal
= *(const double*)leaf
;
290 FIXME("Unsupported numeric leaf type %04x\n", type
);
292 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
296 FIXME("Unsupported numeric leaf type %04x\n", type
);
298 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
302 FIXME("Unsupported numeric leaf type %04x\n", type
);
304 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
308 FIXME("Unsupported numeric leaf type %04x\n", type
);
310 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
314 FIXME("Unsupported numeric leaf type %04x\n", type
);
316 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
320 FIXME("Unsupported numeric leaf type %04x\n", type
);
322 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
326 FIXME("Unsupported numeric leaf type %04x\n", type
);
328 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
332 FIXME("Unknown numeric leaf type %04x\n", type
);
333 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
341 static int numeric_leaf(int* value
, const unsigned short int* leaf
)
343 unsigned short int type
= *leaf
++;
346 if (type
< LF_NUMERIC
)
356 *value
= *(const char*)leaf
;
361 *value
= *(const short*)leaf
;
371 *value
= *(const int*)leaf
;
376 *value
= *(const unsigned int*)leaf
;
381 FIXME("Unsupported numeric leaf type %04x\n", type
);
383 *value
= 0; /* FIXME */
387 FIXME("Unsupported numeric leaf type %04x\n", type
);
389 *value
= 0; /* FIXME */
393 FIXME("Unsupported numeric leaf type %04x\n", type
);
395 *value
= 0; /* FIXME */
399 FIXME("Unsupported numeric leaf type %04x\n", type
);
401 *value
= 0; /* FIXME */
405 FIXME("Unsupported numeric leaf type %04x\n", type
);
407 *value
= 0; /* FIXME */
411 FIXME("Unsupported numeric leaf type %04x\n", type
);
413 *value
= 0; /* FIXME */
417 FIXME("Unsupported numeric leaf type %04x\n", type
);
419 *value
= 0; /* FIXME */
423 FIXME("Unsupported numeric leaf type %04x\n", type
);
425 *value
= 0; /* FIXME */
429 FIXME("Unsupported numeric leaf type %04x\n", type
);
431 *value
= 0; /* FIXME */
435 FIXME("Unsupported numeric leaf type %04x\n", type
);
437 *value
= 0; /* FIXME */
441 FIXME("Unsupported numeric leaf type %04x\n", type
);
443 *value
= 0; /* FIXME */
447 FIXME("Unknown numeric leaf type %04x\n", type
);
456 /* convert a pascal string (as stored in debug information) into
457 * a C string (null terminated).
459 static const char* terminate_string(const struct p_string
* p_name
)
461 static char symname
[256];
463 memcpy(symname
, p_name
->name
, p_name
->namelen
);
464 symname
[p_name
->namelen
] = '\0';
466 return (!*symname
|| strcmp(symname
, "__unnamed") == 0) ? NULL
: symname
;
469 static struct symt
* codeview_get_type(unsigned int typeno
, BOOL quiet
)
471 struct symt
* symt
= NULL
;
474 * Convert Codeview type numbers into something we can grok internally.
475 * Numbers < FIRST_DEFINABLE_TYPE are all fixed builtin types.
476 * Numbers from FIRST_DEFINABLE_TYPE and up are all user defined (structs, etc).
478 if (typeno
< FIRST_DEFINABLE_TYPE
)
480 if (typeno
< MAX_BUILTIN_TYPES
)
481 symt
= cv_basic_types
[typeno
];
485 unsigned mod_index
= typeno
>> 24;
486 unsigned mod_typeno
= typeno
& 0x00FFFFFF;
487 struct cv_defined_module
* mod
;
489 mod
= (mod_index
== 0) ? cv_current_module
: &cv_zmodules
[mod_index
];
491 if (mod_index
>= CV_MAX_MODULES
|| !mod
->allowed
)
492 FIXME("Module of index %d isn't loaded yet (%x)\n", mod_index
, typeno
);
495 if (mod_typeno
- FIRST_DEFINABLE_TYPE
< mod
->num_defined_types
)
496 symt
= mod
->defined_types
[mod_typeno
- FIRST_DEFINABLE_TYPE
];
499 if (!quiet
&& !symt
&& typeno
) FIXME("Returning NULL symt for type-id %x\n", typeno
);
503 struct codeview_type_parse
505 struct module
* module
;
511 static inline const void* codeview_jump_to_type(const struct codeview_type_parse
* ctp
, DWORD idx
)
513 if (idx
< FIRST_DEFINABLE_TYPE
) return NULL
;
514 idx
-= FIRST_DEFINABLE_TYPE
;
515 return (idx
>= ctp
->num
) ? NULL
: (ctp
->table
+ ctp
->offset
[idx
]);
518 static int codeview_add_type(unsigned int typeno
, struct symt
* dt
)
520 if (typeno
< FIRST_DEFINABLE_TYPE
)
521 FIXME("What the heck\n");
522 if (!cv_current_module
)
524 FIXME("Adding %x to non allowed module\n", typeno
);
527 if ((typeno
>> 24) != 0)
528 FIXME("No module index while inserting type-id assumption is wrong %x\n",
530 if (typeno
- FIRST_DEFINABLE_TYPE
>= cv_current_module
->num_defined_types
)
532 if (cv_current_module
->defined_types
)
534 cv_current_module
->num_defined_types
= max( cv_current_module
->num_defined_types
* 2,
535 typeno
- FIRST_DEFINABLE_TYPE
+ 1 );
536 cv_current_module
->defined_types
= HeapReAlloc(GetProcessHeap(),
537 HEAP_ZERO_MEMORY
, cv_current_module
->defined_types
,
538 cv_current_module
->num_defined_types
* sizeof(struct symt
*));
542 cv_current_module
->num_defined_types
= max( 256, typeno
- FIRST_DEFINABLE_TYPE
+ 1 );
543 cv_current_module
->defined_types
= HeapAlloc(GetProcessHeap(),
545 cv_current_module
->num_defined_types
* sizeof(struct symt
*));
547 if (cv_current_module
->defined_types
== NULL
) return FALSE
;
549 if (cv_current_module
->defined_types
[typeno
- FIRST_DEFINABLE_TYPE
])
551 if (cv_current_module
->defined_types
[typeno
- FIRST_DEFINABLE_TYPE
] != dt
)
552 FIXME("Overwriting at %x\n", typeno
);
554 cv_current_module
->defined_types
[typeno
- FIRST_DEFINABLE_TYPE
] = dt
;
558 static void codeview_clear_type_table(void)
562 for (i
= 0; i
< CV_MAX_MODULES
; i
++)
564 if (cv_zmodules
[i
].allowed
)
565 HeapFree(GetProcessHeap(), 0, cv_zmodules
[i
].defined_types
);
566 cv_zmodules
[i
].allowed
= FALSE
;
567 cv_zmodules
[i
].defined_types
= NULL
;
568 cv_zmodules
[i
].num_defined_types
= 0;
570 cv_current_module
= NULL
;
573 static struct symt
* codeview_parse_one_type(struct codeview_type_parse
* ctp
,
575 const union codeview_type
* type
, BOOL details
);
577 static void* codeview_cast_symt(struct symt
* symt
, enum SymTagEnum tag
)
579 if (symt
->tag
!= tag
)
581 FIXME("Bad tag. Expected %d, but got %d\n", tag
, symt
->tag
);
587 static struct symt
* codeview_fetch_type(struct codeview_type_parse
* ctp
,
588 unsigned typeno
, BOOL details
)
591 const union codeview_type
* p
;
593 if (!typeno
) return NULL
;
594 if ((symt
= codeview_get_type(typeno
, TRUE
))) return symt
;
596 /* forward declaration */
597 if (!(p
= codeview_jump_to_type(ctp
, typeno
)))
599 FIXME("Cannot locate type %x\n", typeno
);
602 symt
= codeview_parse_one_type(ctp
, typeno
, p
, details
);
603 if (!symt
) FIXME("Couldn't load forward type %x\n", typeno
);
607 static struct symt
* codeview_add_type_pointer(struct codeview_type_parse
* ctp
,
608 struct symt
* existing
,
609 unsigned int pointee_type
)
611 struct symt
* pointee
;
615 existing
= codeview_cast_symt(existing
, SymTagPointerType
);
618 pointee
= codeview_fetch_type(ctp
, pointee_type
, FALSE
);
619 return &symt_new_pointer(ctp
->module
, pointee
, sizeof(void *))->symt
;
622 static struct symt
* codeview_add_type_array(struct codeview_type_parse
* ctp
,
624 unsigned int elemtype
,
625 unsigned int indextype
,
626 unsigned int arr_len
)
628 struct symt
* elem
= codeview_fetch_type(ctp
, elemtype
, FALSE
);
629 struct symt
* index
= codeview_fetch_type(ctp
, indextype
, FALSE
);
631 return &symt_new_array(ctp
->module
, 0, -arr_len
, elem
, index
)->symt
;
634 static BOOL
codeview_add_type_enum_field_list(struct module
* module
,
635 struct symt_enum
* symt
,
636 const union codeview_reftype
* ref_type
)
638 const unsigned char* ptr
= ref_type
->fieldlist
.list
;
639 const unsigned char* last
= (const BYTE
*)ref_type
+ ref_type
->generic
.len
+ 2;
640 const union codeview_fieldtype
* type
;
644 if (*ptr
>= 0xf0) /* LF_PAD... */
650 type
= (const union codeview_fieldtype
*)ptr
;
652 switch (type
->generic
.id
)
654 case LF_ENUMERATE_V1
:
656 int value
, vlen
= numeric_leaf(&value
, &type
->enumerate_v1
.value
);
657 const struct p_string
* p_name
= (const struct p_string
*)((const unsigned char*)&type
->enumerate_v1
.value
+ vlen
);
659 symt_add_enum_element(module
, symt
, terminate_string(p_name
), value
);
660 ptr
+= 2 + 2 + vlen
+ (1 + p_name
->namelen
);
663 case LF_ENUMERATE_V3
:
665 int value
, vlen
= numeric_leaf(&value
, &type
->enumerate_v3
.value
);
666 const char* name
= (const char*)&type
->enumerate_v3
.value
+ vlen
;
668 symt_add_enum_element(module
, symt
, name
, value
);
669 ptr
+= 2 + 2 + vlen
+ (1 + strlen(name
));
674 FIXME("Unsupported type %04x in ENUM field list\n", type
->generic
.id
);
681 static void codeview_add_udt_element(struct codeview_type_parse
* ctp
,
682 struct symt_udt
* symt
, const char* name
,
683 int value
, unsigned type
)
685 struct symt
* subtype
;
686 const union codeview_reftype
*cv_type
;
688 if ((cv_type
= codeview_jump_to_type(ctp
, type
)))
690 switch (cv_type
->generic
.id
)
693 symt_add_udt_element(ctp
->module
, symt
, name
,
694 codeview_fetch_type(ctp
, cv_type
->bitfield_v1
.type
, FALSE
),
695 (value
<< 3) + cv_type
->bitfield_v1
.bitoff
,
696 cv_type
->bitfield_v1
.nbits
);
699 symt_add_udt_element(ctp
->module
, symt
, name
,
700 codeview_fetch_type(ctp
, cv_type
->bitfield_v2
.type
, FALSE
),
701 (value
<< 3) + cv_type
->bitfield_v2
.bitoff
,
702 cv_type
->bitfield_v2
.nbits
);
706 subtype
= codeview_fetch_type(ctp
, type
, FALSE
);
710 DWORD64 elem_size
= 0;
711 symt_get_info(ctp
->module
, subtype
, TI_GET_LENGTH
, &elem_size
);
712 symt_add_udt_element(ctp
->module
, symt
, name
, subtype
,
713 value
<< 3, (DWORD
)elem_size
<< 3);
717 static int codeview_add_type_struct_field_list(struct codeview_type_parse
* ctp
,
718 struct symt_udt
* symt
,
719 unsigned fieldlistno
)
721 const unsigned char* ptr
;
722 const unsigned char* last
;
724 const struct p_string
* p_name
;
726 const union codeview_reftype
*type_ref
;
727 const union codeview_fieldtype
* type
;
729 if (!fieldlistno
) return TRUE
;
730 type_ref
= codeview_jump_to_type(ctp
, fieldlistno
);
731 ptr
= type_ref
->fieldlist
.list
;
732 last
= (const BYTE
*)type_ref
+ type_ref
->generic
.len
+ 2;
736 if (*ptr
>= 0xf0) /* LF_PAD... */
742 type
= (const union codeview_fieldtype
*)ptr
;
744 switch (type
->generic
.id
)
747 leaf_len
= numeric_leaf(&value
, &type
->bclass_v1
.offset
);
749 /* FIXME: ignored for now */
751 ptr
+= 2 + 2 + 2 + leaf_len
;
755 leaf_len
= numeric_leaf(&value
, &type
->bclass_v2
.offset
);
757 /* FIXME: ignored for now */
759 ptr
+= 2 + 2 + 4 + leaf_len
;
765 const unsigned short int* p_vboff
;
767 leaf_len
= numeric_leaf(&value
, &type
->vbclass_v1
.vbpoff
);
768 p_vboff
= (const unsigned short int*)((const char*)&type
->vbclass_v1
.vbpoff
+ leaf_len
);
769 vplen
= numeric_leaf(&vpoff
, p_vboff
);
771 /* FIXME: ignored for now */
773 ptr
+= 2 + 2 + 2 + 2 + leaf_len
+ vplen
;
780 const unsigned short int* p_vboff
;
782 leaf_len
= numeric_leaf(&value
, &type
->vbclass_v2
.vbpoff
);
783 p_vboff
= (const unsigned short int*)((const char*)&type
->vbclass_v2
.vbpoff
+ leaf_len
);
784 vplen
= numeric_leaf(&vpoff
, p_vboff
);
786 /* FIXME: ignored for now */
788 ptr
+= 2 + 2 + 4 + 4 + leaf_len
+ vplen
;
793 leaf_len
= numeric_leaf(&value
, &type
->member_v1
.offset
);
794 p_name
= (const struct p_string
*)((const char*)&type
->member_v1
.offset
+ leaf_len
);
796 codeview_add_udt_element(ctp
, symt
, terminate_string(p_name
), value
,
797 type
->member_v1
.type
);
799 ptr
+= 2 + 2 + 2 + leaf_len
+ (1 + p_name
->namelen
);
803 leaf_len
= numeric_leaf(&value
, &type
->member_v2
.offset
);
804 p_name
= (const struct p_string
*)((const unsigned char*)&type
->member_v2
.offset
+ leaf_len
);
806 codeview_add_udt_element(ctp
, symt
, terminate_string(p_name
), value
,
807 type
->member_v2
.type
);
809 ptr
+= 2 + 2 + 4 + leaf_len
+ (1 + p_name
->namelen
);
813 leaf_len
= numeric_leaf(&value
, &type
->member_v3
.offset
);
814 c_name
= (const char*)&type
->member_v3
.offset
+ leaf_len
;
816 codeview_add_udt_element(ctp
, symt
, c_name
, value
, type
->member_v3
.type
);
818 ptr
+= 2 + 2 + 4 + leaf_len
+ (strlen(c_name
) + 1);
822 /* FIXME: ignored for now */
823 ptr
+= 2 + 2 + 2 + (1 + type
->stmember_v1
.p_name
.namelen
);
827 /* FIXME: ignored for now */
828 ptr
+= 2 + 4 + 2 + (1 + type
->stmember_v2
.p_name
.namelen
);
832 /* FIXME: ignored for now */
833 ptr
+= 2 + 4 + 2 + (strlen(type
->stmember_v3
.name
) + 1);
837 /* FIXME: ignored for now */
838 ptr
+= 2 + 2 + 2 + (1 + type
->method_v1
.p_name
.namelen
);
842 /* FIXME: ignored for now */
843 ptr
+= 2 + 2 + 4 + (1 + type
->method_v2
.p_name
.namelen
);
847 /* FIXME: ignored for now */
848 ptr
+= 2 + 2 + 4 + (strlen(type
->method_v3
.name
) + 1);
852 /* FIXME: ignored for now */
853 ptr
+= 2 + 2 + (1 + type
->nesttype_v1
.p_name
.namelen
);
857 /* FIXME: ignored for now */
858 ptr
+= 2 + 2 + 4 + (1 + type
->nesttype_v2
.p_name
.namelen
);
862 /* FIXME: ignored for now */
863 ptr
+= 2 + 2 + 4 + (strlen(type
->nesttype_v3
.name
) + 1);
867 /* FIXME: ignored for now */
872 /* FIXME: ignored for now */
876 case LF_ONEMETHOD_V1
:
877 /* FIXME: ignored for now */
878 switch ((type
->onemethod_v1
.attribute
>> 2) & 7)
880 case 4: case 6: /* (pure) introducing virtual method */
881 ptr
+= 2 + 2 + 2 + 4 + (1 + type
->onemethod_virt_v1
.p_name
.namelen
);
885 ptr
+= 2 + 2 + 2 + (1 + type
->onemethod_v1
.p_name
.namelen
);
890 case LF_ONEMETHOD_V2
:
891 /* FIXME: ignored for now */
892 switch ((type
->onemethod_v2
.attribute
>> 2) & 7)
894 case 4: case 6: /* (pure) introducing virtual method */
895 ptr
+= 2 + 2 + 4 + 4 + (1 + type
->onemethod_virt_v2
.p_name
.namelen
);
899 ptr
+= 2 + 2 + 4 + (1 + type
->onemethod_v2
.p_name
.namelen
);
904 case LF_ONEMETHOD_V3
:
905 /* FIXME: ignored for now */
906 switch ((type
->onemethod_v3
.attribute
>> 2) & 7)
908 case 4: case 6: /* (pure) introducing virtual method */
909 ptr
+= 2 + 2 + 4 + 4 + (strlen(type
->onemethod_virt_v3
.name
) + 1);
913 ptr
+= 2 + 2 + 4 + (strlen(type
->onemethod_v3
.name
) + 1);
919 if (!codeview_add_type_struct_field_list(ctp
, symt
, type
->index_v1
.ref
))
925 if (!codeview_add_type_struct_field_list(ctp
, symt
, type
->index_v2
.ref
))
931 FIXME("Unsupported type %04x in STRUCT field list\n", type
->generic
.id
);
939 static struct symt
* codeview_add_type_enum(struct codeview_type_parse
* ctp
,
940 struct symt
* existing
,
942 unsigned fieldlistno
,
945 struct symt_enum
* symt
;
949 if (!(symt
= codeview_cast_symt(existing
, SymTagEnum
))) return NULL
;
950 /* should also check that all fields are the same */
954 symt
= symt_new_enum(ctp
->module
, name
,
955 codeview_fetch_type(ctp
, basetype
, FALSE
));
958 const union codeview_reftype
* fieldlist
;
959 fieldlist
= codeview_jump_to_type(ctp
, fieldlistno
);
960 codeview_add_type_enum_field_list(ctp
->module
, symt
, fieldlist
);
966 static struct symt
* codeview_add_type_struct(struct codeview_type_parse
* ctp
,
967 struct symt
* existing
,
968 const char* name
, int structlen
,
969 enum UdtKind kind
, unsigned property
)
971 struct symt_udt
* symt
;
973 /* if we don't have an existing type, try to find one with same name
974 * FIXME: what to do when several types in different CUs have same name ?
979 struct symt_ht
* type
;
980 struct hash_table_iter hti
;
982 hash_table_iter_init(&ctp
->module
->ht_types
, &hti
, name
);
983 while ((ptr
= hash_table_iter_up(&hti
)))
985 type
= GET_ENTRY(ptr
, struct symt_ht
, hash_elt
);
987 if (type
->symt
.tag
== SymTagUDT
&&
988 type
->hash_elt
.name
&& !strcmp(type
->hash_elt
.name
, name
))
990 existing
= &type
->symt
;
997 if (!(symt
= codeview_cast_symt(existing
, SymTagUDT
))) return NULL
;
998 /* should also check that all fields are the same */
999 if (!(property
& 0x80)) /* 0x80 = forward declaration */
1001 if (!symt
->size
) /* likely prior forward declaration, set UDT size */
1002 symt_set_udt_size(ctp
->module
, symt
, structlen
);
1003 else /* different UDT with same name, create a new type */
1007 if (!existing
) symt
= symt_new_udt(ctp
->module
, name
, structlen
, kind
);
1012 static struct symt
* codeview_new_func_signature(struct codeview_type_parse
* ctp
,
1013 struct symt
* existing
,
1014 enum CV_call_e call_conv
)
1016 struct symt_function_signature
* sym
;
1020 sym
= codeview_cast_symt(existing
, SymTagFunctionType
);
1021 if (!sym
) return NULL
;
1025 sym
= symt_new_function_signature(ctp
->module
, NULL
, call_conv
);
1030 static void codeview_add_func_signature_args(struct codeview_type_parse
* ctp
,
1031 struct symt_function_signature
* sym
,
1035 const union codeview_reftype
* reftype
;
1037 sym
->rettype
= codeview_fetch_type(ctp
, ret_type
, FALSE
);
1038 if (args_list
&& (reftype
= codeview_jump_to_type(ctp
, args_list
)))
1041 switch (reftype
->generic
.id
)
1044 for (i
= 0; i
< reftype
->arglist_v1
.num
; i
++)
1045 symt_add_function_signature_parameter(ctp
->module
, sym
,
1046 codeview_fetch_type(ctp
, reftype
->arglist_v1
.args
[i
], FALSE
));
1049 for (i
= 0; i
< reftype
->arglist_v2
.num
; i
++)
1050 symt_add_function_signature_parameter(ctp
->module
, sym
,
1051 codeview_fetch_type(ctp
, reftype
->arglist_v2
.args
[i
], FALSE
));
1054 FIXME("Unexpected leaf %x for signature's pmt\n", reftype
->generic
.id
);
1059 static struct symt
* codeview_parse_one_type(struct codeview_type_parse
* ctp
,
1061 const union codeview_type
* type
, BOOL details
)
1064 int value
, leaf_len
;
1065 const struct p_string
* p_name
;
1067 struct symt
* existing
;
1069 existing
= codeview_get_type(curr_type
, TRUE
);
1071 switch (type
->generic
.id
)
1073 case LF_MODIFIER_V1
:
1074 /* FIXME: we don't handle modifiers,
1075 * but read previous type on the curr_type
1077 WARN("Modifier on %x: %s%s%s%s\n",
1078 type
->modifier_v1
.type
,
1079 type
->modifier_v1
.attribute
& 0x01 ? "const " : "",
1080 type
->modifier_v1
.attribute
& 0x02 ? "volatile " : "",
1081 type
->modifier_v1
.attribute
& 0x04 ? "unaligned " : "",
1082 type
->modifier_v1
.attribute
& ~0x07 ? "unknown " : "");
1083 symt
= codeview_fetch_type(ctp
, type
->modifier_v1
.type
, details
);
1085 case LF_MODIFIER_V2
:
1086 /* FIXME: we don't handle modifiers, but readd previous type on the curr_type */
1087 WARN("Modifier on %x: %s%s%s%s\n",
1088 type
->modifier_v2
.type
,
1089 type
->modifier_v2
.attribute
& 0x01 ? "const " : "",
1090 type
->modifier_v2
.attribute
& 0x02 ? "volatile " : "",
1091 type
->modifier_v2
.attribute
& 0x04 ? "unaligned " : "",
1092 type
->modifier_v2
.attribute
& ~0x07 ? "unknown " : "");
1093 symt
= codeview_fetch_type(ctp
, type
->modifier_v2
.type
, details
);
1097 symt
= codeview_add_type_pointer(ctp
, existing
, type
->pointer_v1
.datatype
);
1100 symt
= codeview_add_type_pointer(ctp
, existing
, type
->pointer_v2
.datatype
);
1104 if (existing
) symt
= codeview_cast_symt(existing
, SymTagArrayType
);
1107 leaf_len
= numeric_leaf(&value
, &type
->array_v1
.arrlen
);
1108 p_name
= (const struct p_string
*)((const unsigned char*)&type
->array_v1
.arrlen
+ leaf_len
);
1109 symt
= codeview_add_type_array(ctp
, terminate_string(p_name
),
1110 type
->array_v1
.elemtype
,
1111 type
->array_v1
.idxtype
, value
);
1115 if (existing
) symt
= codeview_cast_symt(existing
, SymTagArrayType
);
1118 leaf_len
= numeric_leaf(&value
, &type
->array_v2
.arrlen
);
1119 p_name
= (const struct p_string
*)((const unsigned char*)&type
->array_v2
.arrlen
+ leaf_len
);
1121 symt
= codeview_add_type_array(ctp
, terminate_string(p_name
),
1122 type
->array_v2
.elemtype
,
1123 type
->array_v2
.idxtype
, value
);
1127 if (existing
) symt
= codeview_cast_symt(existing
, SymTagArrayType
);
1130 leaf_len
= numeric_leaf(&value
, &type
->array_v3
.arrlen
);
1131 c_name
= (const char*)&type
->array_v3
.arrlen
+ leaf_len
;
1133 symt
= codeview_add_type_array(ctp
, c_name
,
1134 type
->array_v3
.elemtype
,
1135 type
->array_v3
.idxtype
, value
);
1139 case LF_STRUCTURE_V1
:
1141 leaf_len
= numeric_leaf(&value
, &type
->struct_v1
.structlen
);
1142 p_name
= (const struct p_string
*)((const unsigned char*)&type
->struct_v1
.structlen
+ leaf_len
);
1143 symt
= codeview_add_type_struct(ctp
, existing
, terminate_string(p_name
), value
,
1144 type
->generic
.id
== LF_CLASS_V1
? UdtClass
: UdtStruct
,
1145 type
->struct_v1
.property
);
1148 codeview_add_type(curr_type
, symt
);
1149 if (!(type
->struct_v1
.property
& 0x80)) /* 0x80 = forward declaration */
1150 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1151 type
->struct_v1
.fieldlist
);
1155 case LF_STRUCTURE_V2
:
1157 leaf_len
= numeric_leaf(&value
, &type
->struct_v2
.structlen
);
1158 p_name
= (const struct p_string
*)((const unsigned char*)&type
->struct_v2
.structlen
+ leaf_len
);
1159 symt
= codeview_add_type_struct(ctp
, existing
, terminate_string(p_name
), value
,
1160 type
->generic
.id
== LF_CLASS_V2
? UdtClass
: UdtStruct
,
1161 type
->struct_v2
.property
);
1164 codeview_add_type(curr_type
, symt
);
1165 if (!(type
->struct_v2
.property
& 0x80)) /* 0x80 = forward declaration */
1166 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1167 type
->struct_v2
.fieldlist
);
1171 case LF_STRUCTURE_V3
:
1173 leaf_len
= numeric_leaf(&value
, &type
->struct_v3
.structlen
);
1174 c_name
= (const char*)&type
->struct_v3
.structlen
+ leaf_len
;
1175 symt
= codeview_add_type_struct(ctp
, existing
, c_name
, value
,
1176 type
->generic
.id
== LF_CLASS_V3
? UdtClass
: UdtStruct
,
1177 type
->struct_v3
.property
);
1180 codeview_add_type(curr_type
, symt
);
1181 if (!(type
->struct_v3
.property
& 0x80)) /* 0x80 = forward declaration */
1182 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1183 type
->struct_v3
.fieldlist
);
1188 leaf_len
= numeric_leaf(&value
, &type
->union_v1
.un_len
);
1189 p_name
= (const struct p_string
*)((const unsigned char*)&type
->union_v1
.un_len
+ leaf_len
);
1190 symt
= codeview_add_type_struct(ctp
, existing
, terminate_string(p_name
),
1191 value
, UdtUnion
, type
->union_v1
.property
);
1194 codeview_add_type(curr_type
, symt
);
1195 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1196 type
->union_v1
.fieldlist
);
1201 leaf_len
= numeric_leaf(&value
, &type
->union_v2
.un_len
);
1202 p_name
= (const struct p_string
*)((const unsigned char*)&type
->union_v2
.un_len
+ leaf_len
);
1203 symt
= codeview_add_type_struct(ctp
, existing
, terminate_string(p_name
),
1204 value
, UdtUnion
, type
->union_v2
.property
);
1207 codeview_add_type(curr_type
, symt
);
1208 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1209 type
->union_v2
.fieldlist
);
1214 leaf_len
= numeric_leaf(&value
, &type
->union_v3
.un_len
);
1215 c_name
= (const char*)&type
->union_v3
.un_len
+ leaf_len
;
1216 symt
= codeview_add_type_struct(ctp
, existing
, c_name
,
1217 value
, UdtUnion
, type
->union_v3
.property
);
1220 codeview_add_type(curr_type
, symt
);
1221 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1222 type
->union_v3
.fieldlist
);
1227 symt
= codeview_add_type_enum(ctp
, existing
,
1228 terminate_string(&type
->enumeration_v1
.p_name
),
1229 type
->enumeration_v1
.fieldlist
,
1230 type
->enumeration_v1
.type
);
1234 symt
= codeview_add_type_enum(ctp
, existing
,
1235 terminate_string(&type
->enumeration_v2
.p_name
),
1236 type
->enumeration_v2
.fieldlist
,
1237 type
->enumeration_v2
.type
);
1241 symt
= codeview_add_type_enum(ctp
, existing
, type
->enumeration_v3
.name
,
1242 type
->enumeration_v3
.fieldlist
,
1243 type
->enumeration_v3
.type
);
1246 case LF_PROCEDURE_V1
:
1247 symt
= codeview_new_func_signature(ctp
, existing
, type
->procedure_v1
.call
);
1250 codeview_add_type(curr_type
, symt
);
1251 codeview_add_func_signature_args(ctp
,
1252 (struct symt_function_signature
*)symt
,
1253 type
->procedure_v1
.rvtype
,
1254 type
->procedure_v1
.arglist
);
1257 case LF_PROCEDURE_V2
:
1258 symt
= codeview_new_func_signature(ctp
, existing
,type
->procedure_v2
.call
);
1261 codeview_add_type(curr_type
, symt
);
1262 codeview_add_func_signature_args(ctp
,
1263 (struct symt_function_signature
*)symt
,
1264 type
->procedure_v2
.rvtype
,
1265 type
->procedure_v2
.arglist
);
1269 case LF_MFUNCTION_V1
:
1270 /* FIXME: for C++, this is plain wrong, but as we don't use arg types
1271 * nor class information, this would just do for now
1273 symt
= codeview_new_func_signature(ctp
, existing
, type
->mfunction_v1
.call
);
1276 codeview_add_type(curr_type
, symt
);
1277 codeview_add_func_signature_args(ctp
,
1278 (struct symt_function_signature
*)symt
,
1279 type
->mfunction_v1
.rvtype
,
1280 type
->mfunction_v1
.arglist
);
1283 case LF_MFUNCTION_V2
:
1284 /* FIXME: for C++, this is plain wrong, but as we don't use arg types
1285 * nor class information, this would just do for now
1287 symt
= codeview_new_func_signature(ctp
, existing
, type
->mfunction_v2
.call
);
1290 codeview_add_type(curr_type
, symt
);
1291 codeview_add_func_signature_args(ctp
,
1292 (struct symt_function_signature
*)symt
,
1293 type
->mfunction_v2
.rvtype
,
1294 type
->mfunction_v2
.arglist
);
1299 /* this is an ugly hack... FIXME when we have C++ support */
1300 if (!(symt
= existing
))
1303 snprintf(buf
, sizeof(buf
), "__internal_vt_shape_%x\n", curr_type
);
1304 symt
= &symt_new_udt(ctp
->module
, buf
, 0, UdtStruct
)->symt
;
1308 FIXME("Unsupported type-id leaf %x\n", type
->generic
.id
);
1309 dump(type
, 2 + type
->generic
.len
);
1312 return codeview_add_type(curr_type
, symt
) ? symt
: NULL
;
1315 static BOOL
codeview_parse_type_table(struct codeview_type_parse
* ctp
)
1317 unsigned int curr_type
= FIRST_DEFINABLE_TYPE
;
1318 const union codeview_type
* type
;
1320 for (curr_type
= FIRST_DEFINABLE_TYPE
; curr_type
< FIRST_DEFINABLE_TYPE
+ ctp
->num
; curr_type
++)
1322 type
= codeview_jump_to_type(ctp
, curr_type
);
1324 /* type records we're interested in are the ones referenced by symbols
1325 * The known ranges are (X mark the ones we want):
1326 * X 0000-0016 for V1 types
1327 * 0200-020c for V1 types referenced by other types
1328 * 0400-040f for V1 types (complex lists & sets)
1329 * X 1000-100f for V2 types
1330 * 1200-120c for V2 types referenced by other types
1331 * 1400-140f for V1 types (complex lists & sets)
1332 * X 1500-150d for V3 types
1333 * 8000-8010 for numeric leafes
1335 if (!(type
->generic
.id
& 0x8600) || (type
->generic
.id
& 0x0100))
1336 codeview_parse_one_type(ctp
, curr_type
, type
, TRUE
);
1342 /*========================================================================
1343 * Process CodeView line number information.
1345 static unsigned long codeview_get_address(const struct msc_debug_info
* msc_dbg
,
1346 unsigned seg
, unsigned offset
);
1348 static void codeview_snarf_linetab(const struct msc_debug_info
* msc_dbg
, const BYTE
* linetab
,
1349 int size
, BOOL pascal_str
)
1351 const BYTE
* ptr
= linetab
;
1355 const unsigned int* filetab
;
1356 const unsigned int* lt_ptr
;
1357 const unsigned short* linenos
;
1358 const struct startend
* start
;
1360 unsigned long addr
, func_addr0
;
1361 struct symt_function
* func
;
1362 const struct codeview_linetab_block
* ltb
;
1364 nfile
= *(const short*)linetab
;
1365 filetab
= (const unsigned int*)(linetab
+ 2 * sizeof(short));
1367 for (i
= 0; i
< nfile
; i
++)
1369 ptr
= linetab
+ filetab
[i
];
1370 nseg
= *(const short*)ptr
;
1371 lt_ptr
= (const unsigned int*)(ptr
+ 2 * sizeof(short));
1372 start
= (const struct startend
*)(lt_ptr
+ nseg
);
1375 * Now snarf the filename for all of the segments for this file.
1378 source
= source_new(msc_dbg
->module
, NULL
, terminate_string((const struct p_string
*)(start
+ nseg
)));
1380 source
= source_new(msc_dbg
->module
, NULL
, (const char*)(start
+ nseg
));
1382 for (j
= 0; j
< nseg
; j
++)
1384 ltb
= (const struct codeview_linetab_block
*)(linetab
+ *lt_ptr
++);
1385 linenos
= (const unsigned short*)<b
->offsets
[ltb
->num_lines
];
1386 func_addr0
= codeview_get_address(msc_dbg
, ltb
->seg
, start
[j
].start
);
1387 if (!func_addr0
) continue;
1388 for (func
= NULL
, k
= 0; k
< ltb
->num_lines
; k
++)
1390 /* now locate function (if any) */
1391 addr
= func_addr0
+ ltb
->offsets
[k
] - start
[j
].start
;
1392 /* unfortunately, we can have several functions in the same block, if there's no
1393 * gap between them... find the new function if needed
1395 if (!func
|| addr
>= func
->address
+ func
->size
)
1397 func
= (struct symt_function
*)symt_find_nearest(msc_dbg
->module
, addr
);
1398 /* FIXME: at least labels support line numbers */
1399 if (!func
|| func
->symt
.tag
!= SymTagFunction
)
1401 WARN("--not a func at %04x:%08x %lx tag=%d\n",
1402 ltb
->seg
, ltb
->offsets
[k
], addr
, func
? func
->symt
.tag
: -1);
1407 symt_add_func_line(msc_dbg
->module
, func
, source
,
1408 linenos
[k
], addr
- func
->address
);
1414 static void codeview_snarf_linetab2(const struct msc_debug_info
* msc_dbg
, const BYTE
* linetab
, DWORD size
,
1415 const char* strimage
, DWORD strsize
)
1419 const struct codeview_linetab2
* lt2
;
1420 const struct codeview_linetab2
* lt2_files
= NULL
;
1421 const struct codeview_lt2blk_lines
* lines_blk
;
1422 const struct codeview_linetab2_file
*fd
;
1424 struct symt_function
* func
;
1426 /* locate LT2_FILES_BLOCK (if any) */
1427 lt2
= (const struct codeview_linetab2
*)linetab
;
1428 while ((const BYTE
*)(lt2
+ 1) < linetab
+ size
)
1430 if (lt2
->header
== LT2_FILES_BLOCK
)
1435 lt2
= codeview_linetab2_next_block(lt2
);
1439 TRACE("No LT2_FILES_BLOCK found\n");
1443 lt2
= (const struct codeview_linetab2
*)linetab
;
1444 while ((const BYTE
*)(lt2
+ 1) < linetab
+ size
)
1446 /* FIXME: should also check that whole lines_blk fits in linetab + size */
1447 switch (lt2
->header
)
1449 case LT2_LINES_BLOCK
:
1450 /* Skip blocks that are too small - Intel C Compiler generates these. */
1451 if (lt2
->size_of_block
< sizeof (struct codeview_lt2blk_lines
)) break;
1452 lines_blk
= (const struct codeview_lt2blk_lines
*)lt2
;
1453 /* FIXME: should check that file_offset is within the LT2_FILES_BLOCK we've seen */
1454 addr
= codeview_get_address(msc_dbg
, lines_blk
->seg
, lines_blk
->start
);
1455 TRACE("block from %04x:%08x #%x (%x lines)\n",
1456 lines_blk
->seg
, lines_blk
->start
, lines_blk
->size
, lines_blk
->nlines
);
1457 fd
= (const struct codeview_linetab2_file
*)((const char*)lt2_files
+ 8 + lines_blk
->file_offset
);
1458 /* FIXME: should check that string is within strimage + strsize */
1459 source
= source_new(msc_dbg
->module
, NULL
, strimage
+ fd
->offset
);
1460 func
= (struct symt_function
*)symt_find_nearest(msc_dbg
->module
, addr
);
1461 /* FIXME: at least labels support line numbers */
1462 if (!func
|| func
->symt
.tag
!= SymTagFunction
)
1464 WARN("--not a func at %04x:%08x %lx tag=%d\n",
1465 lines_blk
->seg
, lines_blk
->start
, addr
, func
? func
->symt
.tag
: -1);
1468 for (i
= 0; i
< lines_blk
->nlines
; i
++)
1470 symt_add_func_line(msc_dbg
->module
, func
, source
,
1471 lines_blk
->l
[i
].lineno
^ 0x80000000,
1472 lines_blk
->l
[i
].offset
);
1475 case LT2_FILES_BLOCK
: /* skip */
1478 TRACE("Block end %x\n", lt2
->header
);
1479 lt2
= (const struct codeview_linetab2
*)((const char*)linetab
+ size
);
1482 lt2
= codeview_linetab2_next_block(lt2
);
1486 /*========================================================================
1487 * Process CodeView symbol information.
1490 static unsigned int codeview_map_offset(const struct msc_debug_info
* msc_dbg
,
1491 unsigned int offset
)
1493 int nomap
= msc_dbg
->nomap
;
1494 const OMAP_DATA
* omapp
= msc_dbg
->omapp
;
1497 if (!nomap
|| !omapp
) return offset
;
1499 /* FIXME: use binary search */
1500 for (i
= 0; i
< nomap
- 1; i
++)
1501 if (omapp
[i
].from
<= offset
&& omapp
[i
+1].from
> offset
)
1502 return !omapp
[i
].to
? 0 : omapp
[i
].to
+ (offset
- omapp
[i
].from
);
1507 static unsigned long codeview_get_address(const struct msc_debug_info
* msc_dbg
,
1508 unsigned seg
, unsigned offset
)
1510 int nsect
= msc_dbg
->nsect
;
1511 const IMAGE_SECTION_HEADER
* sectp
= msc_dbg
->sectp
;
1513 if (!seg
|| seg
> nsect
) return 0;
1514 return msc_dbg
->module
->module
.BaseOfImage
+
1515 codeview_map_offset(msc_dbg
, sectp
[seg
-1].VirtualAddress
+ offset
);
1518 static inline void codeview_add_variable(const struct msc_debug_info
* msc_dbg
,
1519 struct symt_compiland
* compiland
,
1521 unsigned segment
, unsigned offset
,
1522 unsigned symtype
, BOOL is_local
, BOOL in_tls
, BOOL force
)
1526 struct location loc
;
1528 loc
.kind
= in_tls
? loc_tlsrel
: loc_absolute
;
1530 loc
.offset
= in_tls
? offset
: codeview_get_address(msc_dbg
, segment
, offset
);
1531 if (force
|| in_tls
|| !symt_find_nearest(msc_dbg
->module
, loc
.offset
))
1533 symt_new_global_variable(msc_dbg
->module
, compiland
,
1534 name
, is_local
, loc
, 0,
1535 codeview_get_type(symtype
, FALSE
));
1540 static BOOL
codeview_snarf(const struct msc_debug_info
* msc_dbg
, const BYTE
* root
,
1541 int offset
, int size
, BOOL do_globals
)
1543 struct symt_function
* curr_func
= NULL
;
1545 struct symt_block
* block
= NULL
;
1547 struct symt_compiland
* compiland
= NULL
;
1548 struct location loc
;
1551 * Loop over the different types of records and whenever we
1552 * find something we are interested in, record it and move on.
1554 for (i
= offset
; i
< size
; i
+= length
)
1556 const union codeview_symbol
* sym
= (const union codeview_symbol
*)(root
+ i
);
1557 length
= sym
->generic
.len
+ 2;
1558 if (i
+ length
> size
) break;
1559 if (!sym
->generic
.id
|| length
< 4) break;
1560 if (length
& 3) FIXME("unpadded len %u\n", length
);
1562 switch (sym
->generic
.id
)
1565 * Global and local data symbols. We don't associate these
1566 * with any given source file.
1571 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->data_v1
.p_name
),
1572 sym
->data_v1
.segment
, sym
->data_v1
.offset
, sym
->data_v1
.symtype
,
1573 sym
->generic
.id
== S_LDATA_V1
, FALSE
, TRUE
);
1578 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->data_v2
.p_name
),
1579 sym
->data_v2
.segment
, sym
->data_v2
.offset
, sym
->data_v2
.symtype
,
1580 sym
->generic
.id
== S_LDATA_V2
, FALSE
, TRUE
);
1585 codeview_add_variable(msc_dbg
, compiland
, sym
->data_v3
.name
,
1586 sym
->data_v3
.segment
, sym
->data_v3
.offset
, sym
->data_v3
.symtype
,
1587 sym
->generic
.id
== S_LDATA_V3
, FALSE
, TRUE
);
1590 /* variables with thread storage */
1594 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->thread_v1
.p_name
),
1595 sym
->thread_v1
.segment
, sym
->thread_v1
.offset
, sym
->thread_v1
.symtype
,
1596 sym
->generic
.id
== S_LTHREAD_V1
, TRUE
, TRUE
);
1601 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->thread_v2
.p_name
),
1602 sym
->thread_v2
.segment
, sym
->thread_v2
.offset
, sym
->thread_v2
.symtype
,
1603 sym
->generic
.id
== S_LTHREAD_V2
, TRUE
, TRUE
);
1608 codeview_add_variable(msc_dbg
, compiland
, sym
->thread_v3
.name
,
1609 sym
->thread_v3
.segment
, sym
->thread_v3
.offset
, sym
->thread_v3
.symtype
,
1610 sym
->generic
.id
== S_LTHREAD_V3
, TRUE
, TRUE
);
1613 /* Public symbols */
1617 case S_PUB_FUNC1_V3
:
1618 case S_PUB_FUNC2_V3
:
1619 /* will be handled later on in codeview_snarf_public */
1623 * Sort of like a global function, but it just points
1624 * to a thunk, which is a stupid name for what amounts to
1625 * a PLT slot in the normal jargon that everyone else uses.
1628 symt_new_thunk(msc_dbg
->module
, compiland
,
1629 terminate_string(&sym
->thunk_v1
.p_name
), sym
->thunk_v1
.thtype
,
1630 codeview_get_address(msc_dbg
, sym
->thunk_v1
.segment
, sym
->thunk_v1
.offset
),
1631 sym
->thunk_v1
.thunk_len
);
1634 symt_new_thunk(msc_dbg
->module
, compiland
,
1635 sym
->thunk_v3
.name
, sym
->thunk_v3
.thtype
,
1636 codeview_get_address(msc_dbg
, sym
->thunk_v3
.segment
, sym
->thunk_v3
.offset
),
1637 sym
->thunk_v3
.thunk_len
);
1641 * Global and static functions.
1645 if (curr_func
) FIXME("nested function\n");
1646 curr_func
= symt_new_function(msc_dbg
->module
, compiland
,
1647 terminate_string(&sym
->proc_v1
.p_name
),
1648 codeview_get_address(msc_dbg
, sym
->proc_v1
.segment
, sym
->proc_v1
.offset
),
1649 sym
->proc_v1
.proc_len
,
1650 codeview_get_type(sym
->proc_v1
.proctype
, FALSE
));
1651 loc
.kind
= loc_absolute
;
1652 loc
.offset
= sym
->proc_v1
.debug_start
;
1653 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugStart
, &loc
, NULL
);
1654 loc
.offset
= sym
->proc_v1
.debug_end
;
1655 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugEnd
, &loc
, NULL
);
1659 if (curr_func
) FIXME("nested function\n");
1660 curr_func
= symt_new_function(msc_dbg
->module
, compiland
,
1661 terminate_string(&sym
->proc_v2
.p_name
),
1662 codeview_get_address(msc_dbg
, sym
->proc_v2
.segment
, sym
->proc_v2
.offset
),
1663 sym
->proc_v2
.proc_len
,
1664 codeview_get_type(sym
->proc_v2
.proctype
, FALSE
));
1665 loc
.kind
= loc_absolute
;
1666 loc
.offset
= sym
->proc_v2
.debug_start
;
1667 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugStart
, &loc
, NULL
);
1668 loc
.offset
= sym
->proc_v2
.debug_end
;
1669 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugEnd
, &loc
, NULL
);
1673 if (curr_func
) FIXME("nested function\n");
1674 curr_func
= symt_new_function(msc_dbg
->module
, compiland
,
1676 codeview_get_address(msc_dbg
, sym
->proc_v3
.segment
, sym
->proc_v3
.offset
),
1677 sym
->proc_v3
.proc_len
,
1678 codeview_get_type(sym
->proc_v3
.proctype
, FALSE
));
1679 loc
.kind
= loc_absolute
;
1680 loc
.offset
= sym
->proc_v3
.debug_start
;
1681 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugStart
, &loc
, NULL
);
1682 loc
.offset
= sym
->proc_v3
.debug_end
;
1683 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugEnd
, &loc
, NULL
);
1686 * Function parameters and stack variables.
1689 loc
.kind
= loc_regrel
;
1690 /* Yes, it's i386 dependent, but that's the symbol purpose. S_REGREL is used on other CPUs */
1691 loc
.reg
= CV_REG_EBP
;
1692 loc
.offset
= sym
->stack_v1
.offset
;
1693 symt_add_func_local(msc_dbg
->module
, curr_func
,
1694 sym
->stack_v1
.offset
> 0 ? DataIsParam
: DataIsLocal
,
1696 codeview_get_type(sym
->stack_v1
.symtype
, FALSE
),
1697 terminate_string(&sym
->stack_v1
.p_name
));
1700 loc
.kind
= loc_regrel
;
1701 /* Yes, it's i386 dependent, but that's the symbol purpose. S_REGREL is used on other CPUs */
1702 loc
.reg
= CV_REG_EBP
;
1703 loc
.offset
= sym
->stack_v2
.offset
;
1704 symt_add_func_local(msc_dbg
->module
, curr_func
,
1705 sym
->stack_v2
.offset
> 0 ? DataIsParam
: DataIsLocal
,
1707 codeview_get_type(sym
->stack_v2
.symtype
, FALSE
),
1708 terminate_string(&sym
->stack_v2
.p_name
));
1711 loc
.kind
= loc_regrel
;
1712 /* Yes, it's i386 dependent, but that's the symbol purpose. S_REGREL is used on other CPUs */
1713 loc
.reg
= CV_REG_EBP
;
1714 loc
.offset
= sym
->stack_v3
.offset
;
1715 symt_add_func_local(msc_dbg
->module
, curr_func
,
1716 sym
->stack_v3
.offset
> 0 ? DataIsParam
: DataIsLocal
,
1718 codeview_get_type(sym
->stack_v3
.symtype
, FALSE
),
1719 sym
->stack_v3
.name
);
1722 loc
.kind
= loc_regrel
;
1723 loc
.reg
= sym
->regrel_v3
.reg
;
1724 loc
.offset
= sym
->regrel_v3
.offset
;
1725 symt_add_func_local(msc_dbg
->module
, curr_func
,
1726 /* FIXME this is wrong !!! */
1727 sym
->regrel_v3
.offset
> 0 ? DataIsParam
: DataIsLocal
,
1729 codeview_get_type(sym
->regrel_v3
.symtype
, FALSE
),
1730 sym
->regrel_v3
.name
);
1734 loc
.kind
= loc_register
;
1735 loc
.reg
= sym
->register_v1
.reg
;
1737 symt_add_func_local(msc_dbg
->module
, curr_func
,
1739 block
, codeview_get_type(sym
->register_v1
.type
, FALSE
),
1740 terminate_string(&sym
->register_v1
.p_name
));
1743 loc
.kind
= loc_register
;
1744 loc
.reg
= sym
->register_v2
.reg
;
1746 symt_add_func_local(msc_dbg
->module
, curr_func
,
1748 block
, codeview_get_type(sym
->register_v2
.type
, FALSE
),
1749 terminate_string(&sym
->register_v2
.p_name
));
1752 loc
.kind
= loc_register
;
1753 loc
.reg
= sym
->register_v3
.reg
;
1755 symt_add_func_local(msc_dbg
->module
, curr_func
,
1757 block
, codeview_get_type(sym
->register_v3
.type
, FALSE
),
1758 sym
->register_v3
.name
);
1762 block
= symt_open_func_block(msc_dbg
->module
, curr_func
, block
,
1763 codeview_get_address(msc_dbg
, sym
->block_v1
.segment
, sym
->block_v1
.offset
),
1764 sym
->block_v1
.length
);
1767 block
= symt_open_func_block(msc_dbg
->module
, curr_func
, block
,
1768 codeview_get_address(msc_dbg
, sym
->block_v3
.segment
, sym
->block_v3
.offset
),
1769 sym
->block_v3
.length
);
1775 block
= symt_close_func_block(msc_dbg
->module
, curr_func
, block
, 0);
1779 symt_normalize_function(msc_dbg
->module
, curr_func
);
1784 case S_COMPILAND_V1
:
1785 TRACE("S-Compiland-V1 %x %s\n",
1786 sym
->compiland_v1
.unknown
, terminate_string(&sym
->compiland_v1
.p_name
));
1789 case S_COMPILAND_V2
:
1790 TRACE("S-Compiland-V2 %s\n", terminate_string(&sym
->compiland_v2
.p_name
));
1791 if (TRACE_ON(dbghelp_msc
))
1793 const char* ptr1
= sym
->compiland_v2
.p_name
.name
+ sym
->compiland_v2
.p_name
.namelen
;
1797 ptr2
= ptr1
+ strlen(ptr1
) + 1;
1798 TRACE("\t%s => %s\n", ptr1
, debugstr_a(ptr2
));
1799 ptr1
= ptr2
+ strlen(ptr2
) + 1;
1803 case S_COMPILAND_V3
:
1804 TRACE("S-Compiland-V3 %s\n", sym
->compiland_v3
.name
);
1805 if (TRACE_ON(dbghelp_msc
))
1807 const char* ptr1
= sym
->compiland_v3
.name
+ strlen(sym
->compiland_v3
.name
);
1811 ptr2
= ptr1
+ strlen(ptr1
) + 1;
1812 TRACE("\t%s => %s\n", ptr1
, debugstr_a(ptr2
));
1813 ptr1
= ptr2
+ strlen(ptr2
) + 1;
1819 TRACE("S-ObjName %s\n", terminate_string(&sym
->objname_v1
.p_name
));
1820 compiland
= symt_new_compiland(msc_dbg
->module
, 0 /* FIXME */,
1821 source_new(msc_dbg
->module
, NULL
,
1822 terminate_string(&sym
->objname_v1
.p_name
)));
1828 loc
.kind
= loc_absolute
;
1829 loc
.offset
= codeview_get_address(msc_dbg
, sym
->label_v1
.segment
, sym
->label_v1
.offset
) - curr_func
->address
;
1830 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagLabel
, &loc
,
1831 terminate_string(&sym
->label_v1
.p_name
));
1833 else symt_new_label(msc_dbg
->module
, compiland
,
1834 terminate_string(&sym
->label_v1
.p_name
),
1835 codeview_get_address(msc_dbg
, sym
->label_v1
.segment
, sym
->label_v1
.offset
));
1840 loc
.kind
= loc_absolute
;
1841 loc
.offset
= codeview_get_address(msc_dbg
, sym
->label_v3
.segment
, sym
->label_v3
.offset
) - curr_func
->address
;
1842 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagLabel
,
1843 &loc
, sym
->label_v3
.name
);
1845 else symt_new_label(msc_dbg
->module
, compiland
, sym
->label_v3
.name
,
1846 codeview_get_address(msc_dbg
, sym
->label_v3
.segment
, sym
->label_v3
.offset
));
1852 const struct p_string
* name
;
1856 vlen
= leaf_as_variant(&v
, &sym
->constant_v1
.cvalue
);
1857 name
= (const struct p_string
*)((const char*)&sym
->constant_v1
.cvalue
+ vlen
);
1858 se
= codeview_get_type(sym
->constant_v1
.type
, FALSE
);
1860 TRACE("S-Constant-V1 %u %s %x\n",
1861 v
.n1
.n2
.n3
.intVal
, terminate_string(name
), sym
->constant_v1
.type
);
1862 symt_new_constant(msc_dbg
->module
, compiland
, terminate_string(name
),
1869 const struct p_string
* name
;
1873 vlen
= leaf_as_variant(&v
, &sym
->constant_v2
.cvalue
);
1874 name
= (const struct p_string
*)((const char*)&sym
->constant_v2
.cvalue
+ vlen
);
1875 se
= codeview_get_type(sym
->constant_v2
.type
, FALSE
);
1877 TRACE("S-Constant-V2 %u %s %x\n",
1878 v
.n1
.n2
.n3
.intVal
, terminate_string(name
), sym
->constant_v2
.type
);
1879 symt_new_constant(msc_dbg
->module
, compiland
, terminate_string(name
),
1890 vlen
= leaf_as_variant(&v
, &sym
->constant_v3
.cvalue
);
1891 name
= (const char*)&sym
->constant_v3
.cvalue
+ vlen
;
1892 se
= codeview_get_type(sym
->constant_v3
.type
, FALSE
);
1894 TRACE("S-Constant-V3 %u %s %x\n",
1895 v
.n1
.n2
.n3
.intVal
, name
, sym
->constant_v3
.type
);
1896 /* FIXME: we should add this as a constant value */
1897 symt_new_constant(msc_dbg
->module
, compiland
, name
, se
, &v
);
1902 if (sym
->udt_v1
.type
)
1904 if ((symt
= codeview_get_type(sym
->udt_v1
.type
, FALSE
)))
1905 symt_new_typedef(msc_dbg
->module
, symt
,
1906 terminate_string(&sym
->udt_v1
.p_name
));
1908 FIXME("S-Udt %s: couldn't find type 0x%x\n",
1909 terminate_string(&sym
->udt_v1
.p_name
), sym
->udt_v1
.type
);
1913 if (sym
->udt_v2
.type
)
1915 if ((symt
= codeview_get_type(sym
->udt_v2
.type
, FALSE
)))
1916 symt_new_typedef(msc_dbg
->module
, symt
,
1917 terminate_string(&sym
->udt_v2
.p_name
));
1919 FIXME("S-Udt %s: couldn't find type 0x%x\n",
1920 terminate_string(&sym
->udt_v2
.p_name
), sym
->udt_v2
.type
);
1924 if (sym
->udt_v3
.type
)
1926 if ((symt
= codeview_get_type(sym
->udt_v3
.type
, FALSE
)))
1927 symt_new_typedef(msc_dbg
->module
, symt
, sym
->udt_v3
.name
);
1929 FIXME("S-Udt %s: couldn't find type 0x%x\n",
1930 sym
->udt_v3
.name
, sym
->udt_v3
.type
);
1935 * These are special, in that they are always followed by an
1936 * additional length-prefixed string which is *not* included
1937 * into the symbol length count. We need to skip it.
1945 name
= (const char*)sym
+ length
;
1946 length
+= (*name
+ 1 + 3) & ~3;
1950 case S_MSTOOL_V3
: /* just to silence a few warnings */
1951 case S_MSTOOLINFO_V3
:
1952 case S_MSTOOLENV_V3
:
1956 TRACE("Start search: seg=0x%x at offset 0x%08x\n",
1957 sym
->ssearch_v1
.segment
, sym
->ssearch_v1
.offset
);
1961 TRACE("S-Align V1\n");
1964 /* the symbols we can safely ignore for now */
1966 case S_FRAMEINFO_V2
:
1967 case S_SECUCOOKIE_V3
:
1969 case S_SUBSECTINFO_V3
:
1970 case S_ENTRYPOINT_V3
:
1972 TRACE("Unsupported symbol id %x\n", sym
->generic
.id
);
1976 FIXME("Unsupported symbol id %x\n", sym
->generic
.id
);
1977 dump(sym
, 2 + sym
->generic
.len
);
1982 if (curr_func
) symt_normalize_function(msc_dbg
->module
, curr_func
);
1987 static BOOL
codeview_snarf_public(const struct msc_debug_info
* msc_dbg
, const BYTE
* root
,
1988 int offset
, int size
)
1992 struct symt_compiland
* compiland
= NULL
;
1995 * Loop over the different types of records and whenever we
1996 * find something we are interested in, record it and move on.
1998 for (i
= offset
; i
< size
; i
+= length
)
2000 const union codeview_symbol
* sym
= (const union codeview_symbol
*)(root
+ i
);
2001 length
= sym
->generic
.len
+ 2;
2002 if (i
+ length
> size
) break;
2003 if (!sym
->generic
.id
|| length
< 4) break;
2004 if (length
& 3) FIXME("unpadded len %u\n", length
);
2006 switch (sym
->generic
.id
)
2008 case S_PUB_V1
: /* FIXME is this really a 'data_v1' structure ?? */
2009 if (!(dbghelp_options
& SYMOPT_NO_PUBLICS
))
2011 symt_new_public(msc_dbg
->module
, compiland
,
2012 terminate_string(&sym
->data_v1
.p_name
),
2013 codeview_get_address(msc_dbg
, sym
->data_v1
.segment
, sym
->data_v1
.offset
), 1);
2016 case S_PUB_V2
: /* FIXME is this really a 'data_v2' structure ?? */
2017 if (!(dbghelp_options
& SYMOPT_NO_PUBLICS
))
2019 symt_new_public(msc_dbg
->module
, compiland
,
2020 terminate_string(&sym
->data_v2
.p_name
),
2021 codeview_get_address(msc_dbg
, sym
->data_v2
.segment
, sym
->data_v2
.offset
), 1);
2026 if (!(dbghelp_options
& SYMOPT_NO_PUBLICS
))
2028 symt_new_public(msc_dbg
->module
, compiland
,
2030 codeview_get_address(msc_dbg
, sym
->data_v3
.segment
, sym
->data_v3
.offset
), 1);
2033 case S_PUB_FUNC1_V3
:
2034 case S_PUB_FUNC2_V3
: /* using a data_v3 isn't what we'd expect */
2036 /* FIXME: this is plain wrong (from a simple test) */
2037 if (!(dbghelp_options
& SYMOPT_NO_PUBLICS
))
2039 symt_new_public(msc_dbg
->module
, compiland
,
2041 codeview_get_address(msc_dbg
, sym
->data_v3
.segment
, sym
->data_v3
.offset
), 1);
2046 * Global and local data symbols. We don't associate these
2047 * with any given source file.
2051 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->data_v1
.p_name
),
2052 sym
->data_v1
.segment
, sym
->data_v1
.offset
, sym
->data_v1
.symtype
,
2053 sym
->generic
.id
== S_LDATA_V1
, FALSE
, FALSE
);
2057 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->data_v2
.p_name
),
2058 sym
->data_v2
.segment
, sym
->data_v2
.offset
, sym
->data_v2
.symtype
,
2059 sym
->generic
.id
== S_LDATA_V2
, FALSE
, FALSE
);
2063 codeview_add_variable(msc_dbg
, compiland
, sym
->data_v3
.name
,
2064 sym
->data_v3
.segment
, sym
->data_v3
.offset
, sym
->data_v3
.symtype
,
2065 sym
->generic
.id
== S_LDATA_V3
, FALSE
, FALSE
);
2068 /* variables with thread storage */
2071 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->thread_v1
.p_name
),
2072 sym
->thread_v1
.segment
, sym
->thread_v1
.offset
, sym
->thread_v1
.symtype
,
2073 sym
->generic
.id
== S_LTHREAD_V1
, TRUE
, FALSE
);
2077 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->thread_v2
.p_name
),
2078 sym
->thread_v2
.segment
, sym
->thread_v2
.offset
, sym
->thread_v2
.symtype
,
2079 sym
->generic
.id
== S_LTHREAD_V2
, TRUE
, FALSE
);
2083 codeview_add_variable(msc_dbg
, compiland
, sym
->thread_v3
.name
,
2084 sym
->thread_v3
.segment
, sym
->thread_v3
.offset
, sym
->thread_v3
.symtype
,
2085 sym
->generic
.id
== S_LTHREAD_V3
, TRUE
, FALSE
);
2089 * These are special, in that they are always followed by an
2090 * additional length-prefixed string which is *not* included
2091 * into the symbol length count. We need to skip it.
2096 length
+= (((const char*)sym
)[length
] + 1 + 3) & ~3;
2099 msc_dbg
->module
->sortlist_valid
= TRUE
;
2101 msc_dbg
->module
->sortlist_valid
= FALSE
;
2105 /*========================================================================
2109 static void* pdb_jg_read(const struct PDB_JG_HEADER
* pdb
, const WORD
* block_list
,
2115 if (!size
) return NULL
;
2117 num_blocks
= (size
+ pdb
->block_size
- 1) / pdb
->block_size
;
2118 buffer
= HeapAlloc(GetProcessHeap(), 0, num_blocks
* pdb
->block_size
);
2120 for (i
= 0; i
< num_blocks
; i
++)
2121 memcpy(buffer
+ i
* pdb
->block_size
,
2122 (const char*)pdb
+ block_list
[i
] * pdb
->block_size
, pdb
->block_size
);
2127 static void* pdb_ds_read(const struct PDB_DS_HEADER
* pdb
, const DWORD
* block_list
,
2133 if (!size
) return NULL
;
2135 num_blocks
= (size
+ pdb
->block_size
- 1) / pdb
->block_size
;
2136 buffer
= HeapAlloc(GetProcessHeap(), 0, num_blocks
* pdb
->block_size
);
2138 for (i
= 0; i
< num_blocks
; i
++)
2139 memcpy(buffer
+ i
* pdb
->block_size
,
2140 (const char*)pdb
+ block_list
[i
] * pdb
->block_size
, pdb
->block_size
);
2145 static void* pdb_read_jg_file(const struct PDB_JG_HEADER
* pdb
,
2146 const struct PDB_JG_TOC
* toc
, DWORD file_nr
)
2148 const WORD
* block_list
;
2151 if (!toc
|| file_nr
>= toc
->num_files
) return NULL
;
2153 block_list
= (const WORD
*) &toc
->file
[toc
->num_files
];
2154 for (i
= 0; i
< file_nr
; i
++)
2155 block_list
+= (toc
->file
[i
].size
+ pdb
->block_size
- 1) / pdb
->block_size
;
2157 return pdb_jg_read(pdb
, block_list
, toc
->file
[file_nr
].size
);
2160 static void* pdb_read_ds_file(const struct PDB_DS_HEADER
* pdb
,
2161 const struct PDB_DS_TOC
* toc
, DWORD file_nr
)
2163 const DWORD
* block_list
;
2166 if (!toc
|| file_nr
>= toc
->num_files
) return NULL
;
2167 if (toc
->file_size
[file_nr
] == 0 || toc
->file_size
[file_nr
] == 0xFFFFFFFF) return NULL
;
2169 block_list
= &toc
->file_size
[toc
->num_files
];
2170 for (i
= 0; i
< file_nr
; i
++)
2171 block_list
+= (toc
->file_size
[i
] + pdb
->block_size
- 1) / pdb
->block_size
;
2173 return pdb_ds_read(pdb
, block_list
, toc
->file_size
[file_nr
]);
2176 static void* pdb_read_file(const struct pdb_file_info
* pdb_file
,
2179 switch (pdb_file
->kind
)
2182 return pdb_read_jg_file((const struct PDB_JG_HEADER
*)pdb_file
->image
,
2183 pdb_file
->u
.jg
.toc
, file_nr
);
2185 return pdb_read_ds_file((const struct PDB_DS_HEADER
*)pdb_file
->image
,
2186 pdb_file
->u
.ds
.toc
, file_nr
);
2191 static unsigned pdb_get_file_size(const struct pdb_file_info
* pdb_file
, DWORD file_nr
)
2193 switch (pdb_file
->kind
)
2195 case PDB_JG
: return pdb_file
->u
.jg
.toc
->file
[file_nr
].size
;
2196 case PDB_DS
: return pdb_file
->u
.ds
.toc
->file_size
[file_nr
];
2201 static void pdb_free(void* buffer
)
2203 HeapFree(GetProcessHeap(), 0, buffer
);
2206 static void pdb_free_file(struct pdb_file_info
* pdb_file
)
2208 switch (pdb_file
->kind
)
2211 pdb_free(pdb_file
->u
.jg
.toc
);
2212 pdb_file
->u
.jg
.toc
= NULL
;
2215 pdb_free(pdb_file
->u
.ds
.toc
);
2216 pdb_file
->u
.ds
.toc
= NULL
;
2219 HeapFree(GetProcessHeap(), 0, pdb_file
->stream_dict
);
2222 static BOOL
pdb_load_stream_name_table(struct pdb_file_info
* pdb_file
, const char* str
, unsigned cb
)
2230 pdw
= (DWORD
*)(str
+ cb
);
2234 pdb_file
->stream_dict
= HeapAlloc(GetProcessHeap(), 0, (numok
+ 1) * sizeof(struct pdb_stream_name
) + cb
);
2235 if (!pdb_file
->stream_dict
) return FALSE
;
2236 cpstr
= (char*)(pdb_file
->stream_dict
+ numok
+ 1);
2237 memcpy(cpstr
, str
, cb
);
2239 /* bitfield: first dword is len (in dword), then data */
2241 pdw
+= *ok_bits
++ + 1;
2244 FIXME("unexpected value\n");
2248 for (i
= j
= 0; i
< count
; i
++)
2250 if (ok_bits
[i
/ 32] & (1 << (i
% 32)))
2252 if (j
>= numok
) break;
2253 pdb_file
->stream_dict
[j
].name
= &cpstr
[*pdw
++];
2254 pdb_file
->stream_dict
[j
].index
= *pdw
++;
2259 pdb_file
->stream_dict
[numok
].name
= NULL
;
2260 pdb_file
->fpoext_stream
= -1;
2261 return j
== numok
&& i
== count
;
2264 static unsigned pdb_get_stream_by_name(const struct pdb_file_info
* pdb_file
, const char* name
)
2266 struct pdb_stream_name
* psn
;
2268 for (psn
= pdb_file
->stream_dict
; psn
&& psn
->name
; psn
++)
2270 if (!strcmp(psn
->name
, name
)) return psn
->index
;
2275 static void* pdb_read_strings(const struct pdb_file_info
* pdb_file
)
2280 idx
= pdb_get_stream_by_name(pdb_file
, "/names");
2283 ret
= pdb_read_file( pdb_file
, idx
);
2284 if (ret
&& *(const DWORD
*)ret
== 0xeffeeffe) return ret
;
2287 WARN("string table not found\n");
2291 static void pdb_module_remove(struct process
* pcsn
, struct module_format
* modfmt
)
2295 for (i
= 0; i
< modfmt
->u
.pdb_info
->used_subfiles
; i
++)
2297 pdb_free_file(&modfmt
->u
.pdb_info
->pdb_files
[i
]);
2298 if (modfmt
->u
.pdb_info
->pdb_files
[i
].image
)
2299 UnmapViewOfFile(modfmt
->u
.pdb_info
->pdb_files
[i
].image
);
2300 if (modfmt
->u
.pdb_info
->pdb_files
[i
].hMap
)
2301 CloseHandle(modfmt
->u
.pdb_info
->pdb_files
[i
].hMap
);
2303 HeapFree(GetProcessHeap(), 0, modfmt
);
2306 static void pdb_convert_types_header(PDB_TYPES
* types
, const BYTE
* image
)
2308 memset(types
, 0, sizeof(PDB_TYPES
));
2311 if (*(const DWORD
*)image
< 19960000) /* FIXME: correct version? */
2313 /* Old version of the types record header */
2314 const PDB_TYPES_OLD
* old
= (const PDB_TYPES_OLD
*)image
;
2315 types
->version
= old
->version
;
2316 types
->type_offset
= sizeof(PDB_TYPES_OLD
);
2317 types
->type_size
= old
->type_size
;
2318 types
->first_index
= old
->first_index
;
2319 types
->last_index
= old
->last_index
;
2320 types
->file
= old
->file
;
2324 /* New version of the types record header */
2325 *types
= *(const PDB_TYPES
*)image
;
2329 static void pdb_convert_symbols_header(PDB_SYMBOLS
* symbols
,
2330 int* header_size
, const BYTE
* image
)
2332 memset(symbols
, 0, sizeof(PDB_SYMBOLS
));
2335 if (*(const DWORD
*)image
!= 0xffffffff)
2337 /* Old version of the symbols record header */
2338 const PDB_SYMBOLS_OLD
* old
= (const PDB_SYMBOLS_OLD
*)image
;
2339 symbols
->version
= 0;
2340 symbols
->module_size
= old
->module_size
;
2341 symbols
->offset_size
= old
->offset_size
;
2342 symbols
->hash_size
= old
->hash_size
;
2343 symbols
->srcmodule_size
= old
->srcmodule_size
;
2344 symbols
->pdbimport_size
= 0;
2345 symbols
->hash1_file
= old
->hash1_file
;
2346 symbols
->hash2_file
= old
->hash2_file
;
2347 symbols
->gsym_file
= old
->gsym_file
;
2349 *header_size
= sizeof(PDB_SYMBOLS_OLD
);
2353 /* New version of the symbols record header */
2354 *symbols
= *(const PDB_SYMBOLS
*)image
;
2355 *header_size
= sizeof(PDB_SYMBOLS
);
2359 static void pdb_convert_symbol_file(const PDB_SYMBOLS
* symbols
,
2360 PDB_SYMBOL_FILE_EX
* sfile
,
2361 unsigned* size
, const void* image
)
2364 if (symbols
->version
< 19970000)
2366 const PDB_SYMBOL_FILE
*sym_file
= image
;
2367 memset(sfile
, 0, sizeof(*sfile
));
2368 sfile
->file
= sym_file
->file
;
2369 sfile
->range
.index
= sym_file
->range
.index
;
2370 sfile
->symbol_size
= sym_file
->symbol_size
;
2371 sfile
->lineno_size
= sym_file
->lineno_size
;
2372 *size
= sizeof(PDB_SYMBOL_FILE
) - 1;
2376 memcpy(sfile
, image
, sizeof(PDB_SYMBOL_FILE_EX
));
2377 *size
= sizeof(PDB_SYMBOL_FILE_EX
) - 1;
2381 static HANDLE
map_pdb_file(const struct process
* pcs
,
2382 const struct pdb_lookup
* lookup
,
2383 struct module
* module
)
2385 HANDLE hFile
, hMap
= NULL
;
2386 char dbg_file_path
[MAX_PATH
];
2389 switch (lookup
->kind
)
2392 ret
= path_find_symbol_file(pcs
, lookup
->filename
, NULL
, lookup
->timestamp
,
2393 lookup
->age
, dbg_file_path
, &module
->module
.PdbUnmatched
);
2396 ret
= path_find_symbol_file(pcs
, lookup
->filename
, &lookup
->guid
, 0,
2397 lookup
->age
, dbg_file_path
, &module
->module
.PdbUnmatched
);
2402 WARN("\tCouldn't find %s\n", lookup
->filename
);
2405 if ((hFile
= CreateFileA(dbg_file_path
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
2406 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
)) != INVALID_HANDLE_VALUE
)
2408 hMap
= CreateFileMappingW(hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
2414 static void pdb_process_types(const struct msc_debug_info
* msc_dbg
,
2415 const struct pdb_file_info
* pdb_file
)
2417 BYTE
* types_image
= NULL
;
2419 types_image
= pdb_read_file(pdb_file
, 2);
2423 struct codeview_type_parse ctp
;
2428 pdb_convert_types_header(&types
, types_image
);
2430 /* Check for unknown versions */
2431 switch (types
.version
)
2433 case 19950410: /* VC 4.0 */
2435 case 19961031: /* VC 5.0 / 6.0 */
2436 case 19990903: /* VC 7.0 */
2437 case 20040203: /* VC 8.0 */
2440 ERR("-Unknown type info version %d\n", types
.version
);
2443 ctp
.module
= msc_dbg
->module
;
2444 /* reconstruct the types offset...
2445 * FIXME: maybe it's present in the newest PDB_TYPES structures
2447 total
= types
.last_index
- types
.first_index
+ 1;
2448 offset
= HeapAlloc(GetProcessHeap(), 0, sizeof(DWORD
) * total
);
2449 ctp
.table
= ptr
= types_image
+ types
.type_offset
;
2451 while (ptr
< ctp
.table
+ types
.type_size
&& ctp
.num
< total
)
2453 offset
[ctp
.num
++] = ptr
- ctp
.table
;
2454 ptr
+= ((const union codeview_type
*)ptr
)->generic
.len
+ 2;
2456 ctp
.offset
= offset
;
2458 /* Read type table */
2459 codeview_parse_type_table(&ctp
);
2460 HeapFree(GetProcessHeap(), 0, offset
);
2461 pdb_free(types_image
);
2465 static const char PDB_JG_IDENT
[] = "Microsoft C/C++ program database 2.00\r\n\032JG\0";
2466 static const char PDB_DS_IDENT
[] = "Microsoft C/C++ MSF 7.00\r\n\032DS\0";
2468 /******************************************************************
2471 * Tries to load a pdb file
2472 * 'matched' is filled with the number of correct matches for this file:
2473 * - age counts for one
2474 * - timestamp or guid depending on kind counts for one
2475 * a wrong kind of file returns FALSE (FIXME ?)
2477 static BOOL
pdb_init(const struct pdb_lookup
* pdb_lookup
, struct pdb_file_info
* pdb_file
,
2478 const char* image
, unsigned* matched
)
2482 /* check the file header, and if ok, load the TOC */
2483 TRACE("PDB(%s): %.40s\n", pdb_lookup
->filename
, debugstr_an(image
, 40));
2486 if (!memcmp(image
, PDB_JG_IDENT
, sizeof(PDB_JG_IDENT
)))
2488 const struct PDB_JG_HEADER
* pdb
= (const struct PDB_JG_HEADER
*)image
;
2489 struct PDB_JG_ROOT
* root
;
2491 pdb_file
->u
.jg
.toc
= pdb_jg_read(pdb
, pdb
->toc_block
, pdb
->toc
.size
);
2492 root
= pdb_read_jg_file(pdb
, pdb_file
->u
.jg
.toc
, 1);
2495 ERR("-Unable to get root from .PDB in %s\n", pdb_lookup
->filename
);
2498 switch (root
->Version
)
2500 case 19950623: /* VC 4.0 */
2502 case 19960307: /* VC 5.0 */
2503 case 19970604: /* VC 6.0 */
2506 ERR("-Unknown root block version %d\n", root
->Version
);
2508 if (pdb_lookup
->kind
!= PDB_JG
)
2510 WARN("Found %s, but wrong PDB kind\n", pdb_lookup
->filename
);
2514 pdb_file
->kind
= PDB_JG
;
2515 pdb_file
->u
.jg
.timestamp
= root
->TimeDateStamp
;
2516 pdb_file
->age
= root
->Age
;
2517 if (root
->TimeDateStamp
== pdb_lookup
->timestamp
) (*matched
)++;
2518 else WARN("Found %s, but wrong signature: %08x %08x\n",
2519 pdb_lookup
->filename
, root
->TimeDateStamp
, pdb_lookup
->timestamp
);
2520 if (root
->Age
== pdb_lookup
->age
) (*matched
)++;
2521 else WARN("Found %s, but wrong age: %08x %08x\n",
2522 pdb_lookup
->filename
, root
->Age
, pdb_lookup
->age
);
2523 TRACE("found JG for %s: age=%x timestamp=%x\n",
2524 pdb_lookup
->filename
, root
->Age
, root
->TimeDateStamp
);
2525 pdb_load_stream_name_table(pdb_file
, &root
->names
[0], root
->cbNames
);
2529 else if (!memcmp(image
, PDB_DS_IDENT
, sizeof(PDB_DS_IDENT
)))
2531 const struct PDB_DS_HEADER
* pdb
= (const struct PDB_DS_HEADER
*)image
;
2532 struct PDB_DS_ROOT
* root
;
2534 pdb_file
->u
.ds
.toc
=
2536 (const DWORD
*)((const char*)pdb
+ pdb
->toc_page
* pdb
->block_size
),
2538 root
= pdb_read_ds_file(pdb
, pdb_file
->u
.ds
.toc
, 1);
2541 ERR("-Unable to get root from .PDB in %s\n", pdb_lookup
->filename
);
2544 switch (root
->Version
)
2549 ERR("-Unknown root block version %d\n", root
->Version
);
2551 pdb_file
->kind
= PDB_DS
;
2552 pdb_file
->u
.ds
.guid
= root
->guid
;
2553 pdb_file
->age
= root
->Age
;
2554 if (!memcmp(&root
->guid
, &pdb_lookup
->guid
, sizeof(GUID
))) (*matched
)++;
2555 else WARN("Found %s, but wrong GUID: %s %s\n",
2556 pdb_lookup
->filename
, debugstr_guid(&root
->guid
),
2557 debugstr_guid(&pdb_lookup
->guid
));
2558 if (root
->Age
== pdb_lookup
->age
) (*matched
)++;
2559 else WARN("Found %s, but wrong age: %08x %08x\n",
2560 pdb_lookup
->filename
, root
->Age
, pdb_lookup
->age
);
2561 TRACE("found DS for %s: age=%x guid=%s\n",
2562 pdb_lookup
->filename
, root
->Age
, debugstr_guid(&root
->guid
));
2563 pdb_load_stream_name_table(pdb_file
, &root
->names
[0], root
->cbNames
);
2568 if (0) /* some tool to dump the internal files from a PDB file */
2572 switch (pdb_file
->kind
)
2574 case PDB_JG
: num_files
= pdb_file
->u
.jg
.toc
->num_files
; break;
2575 case PDB_DS
: num_files
= pdb_file
->u
.ds
.toc
->num_files
; break;
2578 for (i
= 1; i
< num_files
; i
++)
2580 unsigned char* x
= pdb_read_file(pdb_file
, i
);
2581 FIXME("********************** [%u]: size=%08x\n",
2582 i
, pdb_get_file_size(pdb_file
, i
));
2583 dump(x
, pdb_get_file_size(pdb_file
, i
));
2590 static BOOL
pdb_process_internal(const struct process
* pcs
,
2591 const struct msc_debug_info
* msc_dbg
,
2592 const struct pdb_lookup
* pdb_lookup
,
2593 struct pdb_module_info
* pdb_module_info
,
2594 unsigned module_index
);
2596 static void pdb_process_symbol_imports(const struct process
* pcs
,
2597 const struct msc_debug_info
* msc_dbg
,
2598 const PDB_SYMBOLS
* symbols
,
2599 const void* symbols_image
,
2601 const struct pdb_lookup
* pdb_lookup
,
2602 struct pdb_module_info
* pdb_module_info
,
2603 unsigned module_index
)
2605 if (module_index
== -1 && symbols
&& symbols
->pdbimport_size
)
2607 const PDB_SYMBOL_IMPORT
*imp
;
2612 struct pdb_file_info sf0
= pdb_module_info
->pdb_files
[0];
2614 imp
= (const PDB_SYMBOL_IMPORT
*)((const char*)symbols_image
+ sizeof(PDB_SYMBOLS
) +
2615 symbols
->module_size
+ symbols
->offset_size
+
2616 symbols
->hash_size
+ symbols
->srcmodule_size
);
2618 last
= (const char*)imp
+ symbols
->pdbimport_size
;
2619 while (imp
< (const PDB_SYMBOL_IMPORT
*)last
)
2621 ptr
= (const char*)imp
+ sizeof(*imp
) + strlen(imp
->filename
);
2622 if (i
>= CV_MAX_MODULES
) FIXME("Out of bounds!!!\n");
2623 if (!strcasecmp(pdb_lookup
->filename
, imp
->filename
))
2625 if (module_index
!= -1) FIXME("Twice the entry\n");
2626 else module_index
= i
;
2627 pdb_module_info
->pdb_files
[i
] = sf0
;
2631 struct pdb_lookup imp_pdb_lookup
;
2633 /* FIXME: this is an import of a JG PDB file
2634 * how's a DS PDB handled ?
2636 imp_pdb_lookup
.filename
= imp
->filename
;
2637 imp_pdb_lookup
.kind
= PDB_JG
;
2638 imp_pdb_lookup
.timestamp
= imp
->TimeDateStamp
;
2639 imp_pdb_lookup
.age
= imp
->Age
;
2640 TRACE("got for %s: age=%u ts=%x\n",
2641 imp
->filename
, imp
->Age
, imp
->TimeDateStamp
);
2642 pdb_process_internal(pcs
, msc_dbg
, &imp_pdb_lookup
, pdb_module_info
, i
);
2645 imp
= (const PDB_SYMBOL_IMPORT
*)((const char*)first
+ ((ptr
- (const char*)first
+ strlen(ptr
) + 1 + 3) & ~3));
2647 pdb_module_info
->used_subfiles
= i
;
2649 if (module_index
== -1)
2652 pdb_module_info
->used_subfiles
= 1;
2654 cv_current_module
= &cv_zmodules
[module_index
];
2655 if (cv_current_module
->allowed
) FIXME("Already allowed??\n");
2656 cv_current_module
->allowed
= TRUE
;
2659 static BOOL
pdb_process_internal(const struct process
* pcs
,
2660 const struct msc_debug_info
* msc_dbg
,
2661 const struct pdb_lookup
* pdb_lookup
,
2662 struct pdb_module_info
* pdb_module_info
,
2663 unsigned module_index
)
2667 BYTE
* symbols_image
= NULL
;
2668 char* files_image
= NULL
;
2669 DWORD files_size
= 0;
2671 struct pdb_file_info
* pdb_file
;
2673 TRACE("Processing PDB file %s\n", pdb_lookup
->filename
);
2675 pdb_file
= &pdb_module_info
->pdb_files
[module_index
== -1 ? 0 : module_index
];
2676 /* Open and map() .PDB file */
2677 if ((hMap
= map_pdb_file(pcs
, pdb_lookup
, msc_dbg
->module
)) == NULL
||
2678 ((image
= MapViewOfFile(hMap
, FILE_MAP_READ
, 0, 0, 0)) == NULL
))
2680 WARN("Unable to open .PDB file: %s\n", pdb_lookup
->filename
);
2684 if (!pdb_init(pdb_lookup
, pdb_file
, image
, &matched
) || matched
!= 2)
2687 UnmapViewOfFile(image
);
2691 pdb_file
->hMap
= hMap
;
2692 pdb_file
->image
= image
;
2693 symbols_image
= pdb_read_file(pdb_file
, 3);
2696 PDB_SYMBOLS symbols
;
2700 int header_size
= 0;
2701 PDB_STREAM_INDEXES
* psi
;
2703 pdb_convert_symbols_header(&symbols
, &header_size
, symbols_image
);
2704 switch (symbols
.version
)
2706 case 0: /* VC 4.0 */
2707 case 19960307: /* VC 5.0 */
2708 case 19970606: /* VC 6.0 */
2712 ERR("-Unknown symbol info version %d %08x\n",
2713 symbols
.version
, symbols
.version
);
2716 switch (symbols
.stream_index_size
)
2719 case sizeof(PDB_STREAM_INDEXES_OLD
):
2720 /* no fpo ext stream in this case */
2722 case sizeof(PDB_STREAM_INDEXES
):
2723 psi
= (PDB_STREAM_INDEXES
*)((const char*)symbols_image
+ sizeof(PDB_SYMBOLS
) +
2724 symbols
.module_size
+ symbols
.offset_size
+
2725 symbols
.hash_size
+ symbols
.srcmodule_size
+
2726 symbols
.pdbimport_size
+ symbols
.unknown2_size
);
2727 pdb_file
->fpoext_stream
= psi
->FPO_EXT
;
2730 FIXME("Unknown PDB_STREAM_INDEXES size (%d)\n", symbols
.stream_index_size
);
2733 files_image
= pdb_read_strings(pdb_file
);
2734 if (files_image
) files_size
= *(const DWORD
*)(files_image
+ 8);
2736 pdb_process_symbol_imports(pcs
, msc_dbg
, &symbols
, symbols_image
, image
,
2737 pdb_lookup
, pdb_module_info
, module_index
);
2738 pdb_process_types(msc_dbg
, pdb_file
);
2740 /* Read global symbol table */
2741 globalimage
= pdb_read_file(pdb_file
, symbols
.gsym_file
);
2744 codeview_snarf(msc_dbg
, globalimage
, 0,
2745 pdb_get_file_size(pdb_file
, symbols
.gsym_file
), FALSE
);
2748 /* Read per-module symbols' tables */
2749 file
= symbols_image
+ header_size
;
2750 while (file
- symbols_image
< header_size
+ symbols
.module_size
)
2752 PDB_SYMBOL_FILE_EX sfile
;
2753 const char* file_name
;
2756 HeapValidate(GetProcessHeap(), 0, NULL
);
2757 pdb_convert_symbol_file(&symbols
, &sfile
, &size
, file
);
2759 modimage
= pdb_read_file(pdb_file
, sfile
.file
);
2762 if (sfile
.symbol_size
)
2763 codeview_snarf(msc_dbg
, modimage
, sizeof(DWORD
),
2764 sfile
.symbol_size
, TRUE
);
2766 if (sfile
.lineno_size
)
2767 codeview_snarf_linetab(msc_dbg
,
2768 modimage
+ sfile
.symbol_size
,
2770 pdb_file
->kind
== PDB_JG
);
2772 codeview_snarf_linetab2(msc_dbg
, modimage
+ sfile
.symbol_size
+ sfile
.lineno_size
,
2773 pdb_get_file_size(pdb_file
, sfile
.file
) - sfile
.symbol_size
- sfile
.lineno_size
,
2774 files_image
+ 12, files_size
);
2778 file_name
= (const char*)file
+ size
;
2779 file_name
+= strlen(file_name
) + 1;
2780 file
= (BYTE
*)((DWORD_PTR
)(file_name
+ strlen(file_name
) + 1 + 3) & ~3);
2782 /* finish the remaining public and global information */
2785 codeview_snarf_public(msc_dbg
, globalimage
, 0,
2786 pdb_get_file_size(pdb_file
, symbols
.gsym_file
));
2787 pdb_free(globalimage
);
2791 pdb_process_symbol_imports(pcs
, msc_dbg
, NULL
, NULL
, image
,
2792 pdb_lookup
, pdb_module_info
, module_index
);
2794 pdb_free(symbols_image
);
2795 pdb_free(files_image
);
2800 static BOOL
pdb_process_file(const struct process
* pcs
,
2801 const struct msc_debug_info
* msc_dbg
,
2802 struct pdb_lookup
* pdb_lookup
)
2805 struct module_format
* modfmt
;
2806 struct pdb_module_info
* pdb_module_info
;
2808 modfmt
= HeapAlloc(GetProcessHeap(), 0,
2809 sizeof(struct module_format
) + sizeof(struct pdb_module_info
));
2810 if (!modfmt
) return FALSE
;
2812 pdb_module_info
= (void*)(modfmt
+ 1);
2813 msc_dbg
->module
->format_info
[DFI_PDB
] = modfmt
;
2814 modfmt
->module
= msc_dbg
->module
;
2815 modfmt
->remove
= pdb_module_remove
;
2816 modfmt
->loc_compute
= NULL
;
2817 modfmt
->u
.pdb_info
= pdb_module_info
;
2819 memset(cv_zmodules
, 0, sizeof(cv_zmodules
));
2820 codeview_init_basic_types(msc_dbg
->module
);
2821 ret
= pdb_process_internal(pcs
, msc_dbg
, pdb_lookup
,
2822 msc_dbg
->module
->format_info
[DFI_PDB
]->u
.pdb_info
, -1);
2823 codeview_clear_type_table();
2826 struct pdb_module_info
* pdb_info
= msc_dbg
->module
->format_info
[DFI_PDB
]->u
.pdb_info
;
2827 msc_dbg
->module
->module
.SymType
= SymCv
;
2828 if (pdb_info
->pdb_files
[0].kind
== PDB_JG
)
2829 msc_dbg
->module
->module
.PdbSig
= pdb_info
->pdb_files
[0].u
.jg
.timestamp
;
2831 msc_dbg
->module
->module
.PdbSig70
= pdb_info
->pdb_files
[0].u
.ds
.guid
;
2832 msc_dbg
->module
->module
.PdbAge
= pdb_info
->pdb_files
[0].age
;
2833 MultiByteToWideChar(CP_ACP
, 0, pdb_lookup
->filename
, -1,
2834 msc_dbg
->module
->module
.LoadedPdbName
,
2835 sizeof(msc_dbg
->module
->module
.LoadedPdbName
) / sizeof(WCHAR
));
2836 /* FIXME: we could have a finer grain here */
2837 msc_dbg
->module
->module
.LineNumbers
= TRUE
;
2838 msc_dbg
->module
->module
.GlobalSymbols
= TRUE
;
2839 msc_dbg
->module
->module
.TypeInfo
= TRUE
;
2840 msc_dbg
->module
->module
.SourceIndexed
= TRUE
;
2841 msc_dbg
->module
->module
.Publics
= TRUE
;
2845 msc_dbg
->module
->format_info
[DFI_PDB
] = NULL
;
2846 HeapFree(GetProcessHeap(), 0, modfmt
);
2851 BOOL
pdb_fetch_file_info(const struct pdb_lookup
* pdb_lookup
, unsigned* matched
)
2853 HANDLE hFile
, hMap
= NULL
;
2856 struct pdb_file_info pdb_file
;
2858 if ((hFile
= CreateFileA(pdb_lookup
->filename
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
2859 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
)) == INVALID_HANDLE_VALUE
||
2860 ((hMap
= CreateFileMappingW(hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
)) == NULL
) ||
2861 ((image
= MapViewOfFile(hMap
, FILE_MAP_READ
, 0, 0, 0)) == NULL
))
2863 WARN("Unable to open .PDB file: %s\n", pdb_lookup
->filename
);
2868 ret
= pdb_init(pdb_lookup
, &pdb_file
, image
, matched
);
2869 pdb_free_file(&pdb_file
);
2872 if (image
) UnmapViewOfFile(image
);
2873 if (hMap
) CloseHandle(hMap
);
2874 if (hFile
!= INVALID_HANDLE_VALUE
) CloseHandle(hFile
);
2879 /*========================================================================
2880 * FPO unwinding code
2883 /* Stack unwinding is based on postfixed operations.
2884 * Let's define our Postfix EValuator
2886 #define PEV_MAX_LEN 32
2889 struct cpu_stack_walk
* csw
;
2891 struct vector stack
;
2893 struct hash_table values
;
2900 struct hash_table_elt elt
;
2903 #define PEV_ERROR(pev, msg) snprintf((pev)->error, sizeof((pev)->error), "%s", (msg)),FALSE
2904 #define PEV_ERROR1(pev, msg, pmt) snprintf((pev)->error, sizeof((pev)->error), (msg), (pmt)),FALSE
2907 static void pev_dump_stack(struct pevaluator
* pev
)
2910 FIXME("stack #%d\n", pev
->stk_index
);
2911 for (i
= 0; i
< pev
->stk_index
; i
++)
2913 FIXME("\t%d) %s\n", i
, *(char**)vector_at(&pev
->stack
,