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 #define NONAMELESSUNION
38 #include "wine/port.h"
54 #include "wine/exception.h"
55 #include "wine/debug.h"
56 #include "dbghelp_private.h"
57 #include "wine/mscvpdb.h"
59 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_msc
);
61 struct pdb_stream_name
73 struct pdb_stream_name
* stream_dict
;
74 unsigned fpoext_stream
;
80 struct PDB_JG_TOC
* toc
;
85 struct PDB_DS_TOC
* toc
;
90 /* FIXME: don't make it static */
91 #define CV_MAX_MODULES 32
92 struct pdb_module_info
94 unsigned used_subfiles
;
95 struct pdb_file_info pdb_files
[CV_MAX_MODULES
];
98 /*========================================================================
99 * Debug file access helper routines
102 static void dump(const void* ptr
, unsigned len
)
106 const char* hexof
= "0123456789abcdef";
109 for (i
= 0; i
< len
; i
+= 16)
111 sprintf(msg
, "%08x: ", i
);
112 memset(msg
+ 10, ' ', 3 * 16 + 1 + 16);
113 for (j
= 0; j
< min(16, len
- i
); j
++)
115 msg
[10 + 3 * j
+ 0] = hexof
[x
[i
+ j
] >> 4];
116 msg
[10 + 3 * j
+ 1] = hexof
[x
[i
+ j
] & 15];
117 msg
[10 + 3 * j
+ 2] = ' ';
118 msg
[10 + 3 * 16 + 1 + j
] = (x
[i
+ j
] >= 0x20 && x
[i
+ j
] < 0x7f) ?
121 msg
[10 + 3 * 16] = ' ';
122 msg
[10 + 3 * 16 + 1 + 16] = '\0';
127 /*========================================================================
128 * Process CodeView type information.
131 #define MAX_BUILTIN_TYPES 0x06FF
132 #define FIRST_DEFINABLE_TYPE 0x1000
134 static struct symt
* cv_basic_types
[MAX_BUILTIN_TYPES
];
136 struct cv_defined_module
139 unsigned int num_defined_types
;
140 struct symt
** defined_types
;
142 /* FIXME: don't make it static */
143 #define CV_MAX_MODULES 32
144 static struct cv_defined_module cv_zmodules
[CV_MAX_MODULES
];
145 static struct cv_defined_module
*cv_current_module
;
147 static void codeview_init_basic_types(struct module
* module
)
150 * These are the common builtin types that are used by VC++.
152 cv_basic_types
[T_NOTYPE
] = NULL
;
153 cv_basic_types
[T_ABS
] = NULL
;
154 cv_basic_types
[T_VOID
] = &symt_new_basic(module
, btVoid
, "void", 0)->symt
;
155 cv_basic_types
[T_CHAR
] = &symt_new_basic(module
, btChar
, "char", 1)->symt
;
156 cv_basic_types
[T_SHORT
] = &symt_new_basic(module
, btInt
, "short int", 2)->symt
;
157 cv_basic_types
[T_LONG
] = &symt_new_basic(module
, btInt
, "long int", 4)->symt
;
158 cv_basic_types
[T_QUAD
] = &symt_new_basic(module
, btInt
, "long long int", 8)->symt
;
159 cv_basic_types
[T_UCHAR
] = &symt_new_basic(module
, btUInt
, "unsigned char", 1)->symt
;
160 cv_basic_types
[T_USHORT
] = &symt_new_basic(module
, btUInt
, "unsigned short", 2)->symt
;
161 cv_basic_types
[T_ULONG
] = &symt_new_basic(module
, btUInt
, "unsigned long", 4)->symt
;
162 cv_basic_types
[T_UQUAD
] = &symt_new_basic(module
, btUInt
, "unsigned long long", 8)->symt
;
163 cv_basic_types
[T_BOOL08
] = &symt_new_basic(module
, btBool
, "BOOL08", 1)->symt
;
164 cv_basic_types
[T_BOOL16
] = &symt_new_basic(module
, btBool
, "BOOL16", 2)->symt
;
165 cv_basic_types
[T_BOOL32
] = &symt_new_basic(module
, btBool
, "BOOL32", 4)->symt
;
166 cv_basic_types
[T_BOOL64
] = &symt_new_basic(module
, btBool
, "BOOL64", 8)->symt
;
167 cv_basic_types
[T_REAL32
] = &symt_new_basic(module
, btFloat
, "float", 4)->symt
;
168 cv_basic_types
[T_REAL64
] = &symt_new_basic(module
, btFloat
, "double", 8)->symt
;
169 cv_basic_types
[T_REAL80
] = &symt_new_basic(module
, btFloat
, "long double", 10)->symt
;
170 cv_basic_types
[T_RCHAR
] = &symt_new_basic(module
, btInt
, "signed char", 1)->symt
;
171 cv_basic_types
[T_WCHAR
] = &symt_new_basic(module
, btWChar
, "wchar_t", 2)->symt
;
172 cv_basic_types
[T_INT2
] = &symt_new_basic(module
, btInt
, "INT2", 2)->symt
;
173 cv_basic_types
[T_UINT2
] = &symt_new_basic(module
, btUInt
, "UINT2", 2)->symt
;
174 cv_basic_types
[T_INT4
] = &symt_new_basic(module
, btInt
, "INT4", 4)->symt
;
175 cv_basic_types
[T_UINT4
] = &symt_new_basic(module
, btUInt
, "UINT4", 4)->symt
;
176 cv_basic_types
[T_INT8
] = &symt_new_basic(module
, btInt
, "INT8", 8)->symt
;
177 cv_basic_types
[T_UINT8
] = &symt_new_basic(module
, btUInt
, "UINT8", 8)->symt
;
178 cv_basic_types
[T_HRESULT
]= &symt_new_basic(module
, btUInt
, "HRESULT", 4)->symt
;
180 cv_basic_types
[T_32PVOID
] = &symt_new_pointer(module
, cv_basic_types
[T_VOID
], 4)->symt
;
181 cv_basic_types
[T_32PCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_CHAR
], 4)->symt
;
182 cv_basic_types
[T_32PSHORT
] = &symt_new_pointer(module
, cv_basic_types
[T_SHORT
], 4)->symt
;
183 cv_basic_types
[T_32PLONG
] = &symt_new_pointer(module
, cv_basic_types
[T_LONG
], 4)->symt
;
184 cv_basic_types
[T_32PQUAD
] = &symt_new_pointer(module
, cv_basic_types
[T_QUAD
], 4)->symt
;
185 cv_basic_types
[T_32PUCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_UCHAR
], 4)->symt
;
186 cv_basic_types
[T_32PUSHORT
] = &symt_new_pointer(module
, cv_basic_types
[T_USHORT
], 4)->symt
;
187 cv_basic_types
[T_32PULONG
] = &symt_new_pointer(module
, cv_basic_types
[T_ULONG
], 4)->symt
;
188 cv_basic_types
[T_32PUQUAD
] = &symt_new_pointer(module
, cv_basic_types
[T_UQUAD
], 4)->symt
;
189 cv_basic_types
[T_32PBOOL08
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL08
], 4)->symt
;
190 cv_basic_types
[T_32PBOOL16
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL16
], 4)->symt
;
191 cv_basic_types
[T_32PBOOL32
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL32
], 4)->symt
;
192 cv_basic_types
[T_32PBOOL64
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL64
], 4)->symt
;
193 cv_basic_types
[T_32PREAL32
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL32
], 4)->symt
;
194 cv_basic_types
[T_32PREAL64
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL64
], 4)->symt
;
195 cv_basic_types
[T_32PREAL80
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL80
], 4)->symt
;
196 cv_basic_types
[T_32PRCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_RCHAR
], 4)->symt
;
197 cv_basic_types
[T_32PWCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_WCHAR
], 4)->symt
;
198 cv_basic_types
[T_32PINT2
] = &symt_new_pointer(module
, cv_basic_types
[T_INT2
], 4)->symt
;
199 cv_basic_types
[T_32PUINT2
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT2
], 4)->symt
;
200 cv_basic_types
[T_32PINT4
] = &symt_new_pointer(module
, cv_basic_types
[T_INT4
], 4)->symt
;
201 cv_basic_types
[T_32PUINT4
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT4
], 4)->symt
;
202 cv_basic_types
[T_32PINT8
] = &symt_new_pointer(module
, cv_basic_types
[T_INT8
], 4)->symt
;
203 cv_basic_types
[T_32PUINT8
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT8
], 4)->symt
;
204 cv_basic_types
[T_32PHRESULT
]= &symt_new_pointer(module
, cv_basic_types
[T_HRESULT
], 4)->symt
;
206 cv_basic_types
[T_64PVOID
] = &symt_new_pointer(module
, cv_basic_types
[T_VOID
], 8)->symt
;
207 cv_basic_types
[T_64PCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_CHAR
], 8)->symt
;
208 cv_basic_types
[T_64PSHORT
] = &symt_new_pointer(module
, cv_basic_types
[T_SHORT
], 8)->symt
;
209 cv_basic_types
[T_64PLONG
] = &symt_new_pointer(module
, cv_basic_types
[T_LONG
], 8)->symt
;
210 cv_basic_types
[T_64PQUAD
] = &symt_new_pointer(module
, cv_basic_types
[T_QUAD
], 8)->symt
;
211 cv_basic_types
[T_64PUCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_UCHAR
], 8)->symt
;
212 cv_basic_types
[T_64PUSHORT
] = &symt_new_pointer(module
, cv_basic_types
[T_USHORT
], 8)->symt
;
213 cv_basic_types
[T_64PULONG
] = &symt_new_pointer(module
, cv_basic_types
[T_ULONG
], 8)->symt
;
214 cv_basic_types
[T_64PUQUAD
] = &symt_new_pointer(module
, cv_basic_types
[T_UQUAD
], 8)->symt
;
215 cv_basic_types
[T_64PBOOL08
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL08
], 8)->symt
;
216 cv_basic_types
[T_64PBOOL16
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL16
], 8)->symt
;
217 cv_basic_types
[T_64PBOOL32
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL32
], 8)->symt
;
218 cv_basic_types
[T_64PBOOL64
] = &symt_new_pointer(module
, cv_basic_types
[T_BOOL64
], 8)->symt
;
219 cv_basic_types
[T_64PREAL32
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL32
], 8)->symt
;
220 cv_basic_types
[T_64PREAL64
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL64
], 8)->symt
;
221 cv_basic_types
[T_64PREAL80
] = &symt_new_pointer(module
, cv_basic_types
[T_REAL80
], 8)->symt
;
222 cv_basic_types
[T_64PRCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_RCHAR
], 8)->symt
;
223 cv_basic_types
[T_64PWCHAR
] = &symt_new_pointer(module
, cv_basic_types
[T_WCHAR
], 8)->symt
;
224 cv_basic_types
[T_64PINT2
] = &symt_new_pointer(module
, cv_basic_types
[T_INT2
], 8)->symt
;
225 cv_basic_types
[T_64PUINT2
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT2
], 8)->symt
;
226 cv_basic_types
[T_64PINT4
] = &symt_new_pointer(module
, cv_basic_types
[T_INT4
], 8)->symt
;
227 cv_basic_types
[T_64PUINT4
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT4
], 8)->symt
;
228 cv_basic_types
[T_64PINT8
] = &symt_new_pointer(module
, cv_basic_types
[T_INT8
], 8)->symt
;
229 cv_basic_types
[T_64PUINT8
] = &symt_new_pointer(module
, cv_basic_types
[T_UINT8
], 8)->symt
;
230 cv_basic_types
[T_64PHRESULT
]= &symt_new_pointer(module
, cv_basic_types
[T_HRESULT
], 8)->symt
;
233 static int leaf_as_variant(VARIANT
* v
, const unsigned short int* leaf
)
235 unsigned short int type
= *leaf
++;
238 if (type
< LF_NUMERIC
)
240 v
->n1
.n2
.vt
= VT_UINT
;
241 v
->n1
.n2
.n3
.uintVal
= type
;
250 v
->n1
.n2
.n3
.cVal
= *(const char*)leaf
;
256 v
->n1
.n2
.n3
.iVal
= *(const short*)leaf
;
261 v
->n1
.n2
.vt
= VT_UI2
;
262 v
->n1
.n2
.n3
.uiVal
= *leaf
;
268 v
->n1
.n2
.n3
.lVal
= *(const int*)leaf
;
273 v
->n1
.n2
.vt
= VT_UI4
;
274 v
->n1
.n2
.n3
.uiVal
= *(const unsigned int*)leaf
;
280 v
->n1
.n2
.n3
.llVal
= *(const long long int*)leaf
;
285 v
->n1
.n2
.vt
= VT_UI8
;
286 v
->n1
.n2
.n3
.ullVal
= *(const long long unsigned int*)leaf
;
292 v
->n1
.n2
.n3
.fltVal
= *(const float*)leaf
;
296 FIXME("Unsupported numeric leaf type %04x\n", type
);
298 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
304 v
->n1
.n2
.n3
.fltVal
= *(const double*)leaf
;
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("Unsupported numeric leaf type %04x\n", type
);
334 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
338 FIXME("Unsupported numeric leaf type %04x\n", type
);
340 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
344 FIXME("Unsupported numeric leaf type %04x\n", type
);
346 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
350 FIXME("Unknown numeric leaf type %04x\n", type
);
351 v
->n1
.n2
.vt
= VT_EMPTY
; /* FIXME */
359 static int numeric_leaf(int* value
, const unsigned short int* leaf
)
361 unsigned short int type
= *leaf
++;
364 if (type
< LF_NUMERIC
)
374 *value
= *(const char*)leaf
;
379 *value
= *(const short*)leaf
;
389 *value
= *(const int*)leaf
;
394 *value
= *(const unsigned int*)leaf
;
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("Unsupported numeric leaf type %04x\n", type
);
449 *value
= 0; /* FIXME */
453 FIXME("Unsupported numeric leaf type %04x\n", type
);
455 *value
= 0; /* FIXME */
459 FIXME("Unsupported numeric leaf type %04x\n", type
);
461 *value
= 0; /* FIXME */
465 FIXME("Unknown numeric leaf type %04x\n", type
);
474 /* convert a pascal string (as stored in debug information) into
475 * a C string (null terminated).
477 static const char* terminate_string(const struct p_string
* p_name
)
479 static char symname
[256];
481 memcpy(symname
, p_name
->name
, p_name
->namelen
);
482 symname
[p_name
->namelen
] = '\0';
484 return (!*symname
|| strcmp(symname
, "__unnamed") == 0) ? NULL
: symname
;
487 static struct symt
* codeview_get_type(unsigned int typeno
, BOOL quiet
)
489 struct symt
* symt
= NULL
;
492 * Convert Codeview type numbers into something we can grok internally.
493 * Numbers < FIRST_DEFINABLE_TYPE are all fixed builtin types.
494 * Numbers from FIRST_DEFINABLE_TYPE and up are all user defined (structs, etc).
496 if (typeno
< FIRST_DEFINABLE_TYPE
)
498 if (typeno
< MAX_BUILTIN_TYPES
)
499 symt
= cv_basic_types
[typeno
];
503 unsigned mod_index
= typeno
>> 24;
504 unsigned mod_typeno
= typeno
& 0x00FFFFFF;
505 struct cv_defined_module
* mod
;
507 mod
= (mod_index
== 0) ? cv_current_module
: &cv_zmodules
[mod_index
];
509 if (mod_index
>= CV_MAX_MODULES
|| !mod
->allowed
)
510 FIXME("Module of index %d isn't loaded yet (%x)\n", mod_index
, typeno
);
513 if (mod_typeno
- FIRST_DEFINABLE_TYPE
< mod
->num_defined_types
)
514 symt
= mod
->defined_types
[mod_typeno
- FIRST_DEFINABLE_TYPE
];
517 if (!quiet
&& !symt
&& typeno
) FIXME("Returning NULL symt for type-id %x\n", typeno
);
521 struct codeview_type_parse
523 struct module
* module
;
529 static inline const void* codeview_jump_to_type(const struct codeview_type_parse
* ctp
, DWORD idx
)
531 if (idx
< FIRST_DEFINABLE_TYPE
) return NULL
;
532 idx
-= FIRST_DEFINABLE_TYPE
;
533 return (idx
>= ctp
->num
) ? NULL
: (ctp
->table
+ ctp
->offset
[idx
]);
536 static int codeview_add_type(unsigned int typeno
, struct symt
* dt
)
538 if (typeno
< FIRST_DEFINABLE_TYPE
)
539 FIXME("What the heck\n");
540 if (!cv_current_module
)
542 FIXME("Adding %x to non allowed module\n", typeno
);
545 if ((typeno
>> 24) != 0)
546 FIXME("No module index while inserting type-id assumption is wrong %x\n",
548 if (typeno
- FIRST_DEFINABLE_TYPE
>= cv_current_module
->num_defined_types
)
550 if (cv_current_module
->defined_types
)
552 cv_current_module
->num_defined_types
= max( cv_current_module
->num_defined_types
* 2,
553 typeno
- FIRST_DEFINABLE_TYPE
+ 1 );
554 cv_current_module
->defined_types
= HeapReAlloc(GetProcessHeap(),
555 HEAP_ZERO_MEMORY
, cv_current_module
->defined_types
,
556 cv_current_module
->num_defined_types
* sizeof(struct symt
*));
560 cv_current_module
->num_defined_types
= max( 256, typeno
- FIRST_DEFINABLE_TYPE
+ 1 );
561 cv_current_module
->defined_types
= HeapAlloc(GetProcessHeap(),
563 cv_current_module
->num_defined_types
* sizeof(struct symt
*));
565 if (cv_current_module
->defined_types
== NULL
) return FALSE
;
567 if (cv_current_module
->defined_types
[typeno
- FIRST_DEFINABLE_TYPE
])
569 if (cv_current_module
->defined_types
[typeno
- FIRST_DEFINABLE_TYPE
] != dt
)
570 FIXME("Overwriting at %x\n", typeno
);
572 cv_current_module
->defined_types
[typeno
- FIRST_DEFINABLE_TYPE
] = dt
;
576 static void codeview_clear_type_table(void)
580 for (i
= 0; i
< CV_MAX_MODULES
; i
++)
582 if (cv_zmodules
[i
].allowed
)
583 HeapFree(GetProcessHeap(), 0, cv_zmodules
[i
].defined_types
);
584 cv_zmodules
[i
].allowed
= FALSE
;
585 cv_zmodules
[i
].defined_types
= NULL
;
586 cv_zmodules
[i
].num_defined_types
= 0;
588 cv_current_module
= NULL
;
591 static struct symt
* codeview_parse_one_type(struct codeview_type_parse
* ctp
,
593 const union codeview_type
* type
, BOOL details
);
595 static void* codeview_cast_symt(struct symt
* symt
, enum SymTagEnum tag
)
597 if (symt
->tag
!= tag
)
599 FIXME("Bad tag. Expected %d, but got %d\n", tag
, symt
->tag
);
605 static struct symt
* codeview_fetch_type(struct codeview_type_parse
* ctp
,
606 unsigned typeno
, BOOL details
)
609 const union codeview_type
* p
;
611 if (!typeno
) return NULL
;
612 if ((symt
= codeview_get_type(typeno
, TRUE
))) return symt
;
614 /* forward declaration */
615 if (!(p
= codeview_jump_to_type(ctp
, typeno
)))
617 FIXME("Cannot locate type %x\n", typeno
);
620 symt
= codeview_parse_one_type(ctp
, typeno
, p
, details
);
621 if (!symt
) FIXME("Couldn't load forward type %x\n", typeno
);
625 static struct symt
* codeview_add_type_pointer(struct codeview_type_parse
* ctp
,
626 struct symt
* existing
,
627 unsigned int pointee_type
)
629 struct symt
* pointee
;
633 existing
= codeview_cast_symt(existing
, SymTagPointerType
);
636 pointee
= codeview_fetch_type(ctp
, pointee_type
, FALSE
);
637 return &symt_new_pointer(ctp
->module
, pointee
, sizeof(void *))->symt
;
640 static struct symt
* codeview_add_type_array(struct codeview_type_parse
* ctp
,
642 unsigned int elemtype
,
643 unsigned int indextype
,
644 unsigned int arr_len
)
646 struct symt
* elem
= codeview_fetch_type(ctp
, elemtype
, FALSE
);
647 struct symt
* index
= codeview_fetch_type(ctp
, indextype
, FALSE
);
649 return &symt_new_array(ctp
->module
, 0, -arr_len
, elem
, index
)->symt
;
652 static BOOL
codeview_add_type_enum_field_list(struct module
* module
,
653 struct symt_enum
* symt
,
654 const union codeview_reftype
* ref_type
)
656 const unsigned char* ptr
= ref_type
->fieldlist
.list
;
657 const unsigned char* last
= (const BYTE
*)ref_type
+ ref_type
->generic
.len
+ 2;
658 const union codeview_fieldtype
* type
;
662 if (*ptr
>= 0xf0) /* LF_PAD... */
668 type
= (const union codeview_fieldtype
*)ptr
;
670 switch (type
->generic
.id
)
672 case LF_ENUMERATE_V1
:
674 int value
, vlen
= numeric_leaf(&value
, &type
->enumerate_v1
.value
);
675 const struct p_string
* p_name
= (const struct p_string
*)((const unsigned char*)&type
->enumerate_v1
.value
+ vlen
);
677 symt_add_enum_element(module
, symt
, terminate_string(p_name
), value
);
678 ptr
+= 2 + 2 + vlen
+ (1 + p_name
->namelen
);
681 case LF_ENUMERATE_V3
:
683 int value
, vlen
= numeric_leaf(&value
, &type
->enumerate_v3
.value
);
684 const char* name
= (const char*)&type
->enumerate_v3
.value
+ vlen
;
686 symt_add_enum_element(module
, symt
, name
, value
);
687 ptr
+= 2 + 2 + vlen
+ (1 + strlen(name
));
692 FIXME("Unsupported type %04x in ENUM field list\n", type
->generic
.id
);
699 static void codeview_add_udt_element(struct codeview_type_parse
* ctp
,
700 struct symt_udt
* symt
, const char* name
,
701 int value
, unsigned type
)
703 struct symt
* subtype
;
704 const union codeview_reftype
*cv_type
;
706 if ((cv_type
= codeview_jump_to_type(ctp
, type
)))
708 switch (cv_type
->generic
.id
)
711 symt_add_udt_element(ctp
->module
, symt
, name
,
712 codeview_fetch_type(ctp
, cv_type
->bitfield_v1
.type
, FALSE
),
713 (value
<< 3) + cv_type
->bitfield_v1
.bitoff
,
714 cv_type
->bitfield_v1
.nbits
);
717 symt_add_udt_element(ctp
->module
, symt
, name
,
718 codeview_fetch_type(ctp
, cv_type
->bitfield_v2
.type
, FALSE
),
719 (value
<< 3) + cv_type
->bitfield_v2
.bitoff
,
720 cv_type
->bitfield_v2
.nbits
);
724 subtype
= codeview_fetch_type(ctp
, type
, FALSE
);
728 DWORD64 elem_size
= 0;
729 symt_get_info(ctp
->module
, subtype
, TI_GET_LENGTH
, &elem_size
);
730 symt_add_udt_element(ctp
->module
, symt
, name
, subtype
,
731 value
<< 3, (DWORD
)elem_size
<< 3);
735 static int codeview_add_type_struct_field_list(struct codeview_type_parse
* ctp
,
736 struct symt_udt
* symt
,
737 unsigned fieldlistno
)
739 const unsigned char* ptr
;
740 const unsigned char* last
;
742 const struct p_string
* p_name
;
744 const union codeview_reftype
*type_ref
;
745 const union codeview_fieldtype
* type
;
747 if (!fieldlistno
) return TRUE
;
748 type_ref
= codeview_jump_to_type(ctp
, fieldlistno
);
749 ptr
= type_ref
->fieldlist
.list
;
750 last
= (const BYTE
*)type_ref
+ type_ref
->generic
.len
+ 2;
754 if (*ptr
>= 0xf0) /* LF_PAD... */
760 type
= (const union codeview_fieldtype
*)ptr
;
762 switch (type
->generic
.id
)
765 leaf_len
= numeric_leaf(&value
, &type
->bclass_v1
.offset
);
767 /* FIXME: ignored for now */
769 ptr
+= 2 + 2 + 2 + leaf_len
;
773 leaf_len
= numeric_leaf(&value
, &type
->bclass_v2
.offset
);
775 /* FIXME: ignored for now */
777 ptr
+= 2 + 2 + 4 + leaf_len
;
783 const unsigned short int* p_vboff
;
785 leaf_len
= numeric_leaf(&value
, &type
->vbclass_v1
.vbpoff
);
786 p_vboff
= (const unsigned short int*)((const char*)&type
->vbclass_v1
.vbpoff
+ leaf_len
);
787 vplen
= numeric_leaf(&vpoff
, p_vboff
);
789 /* FIXME: ignored for now */
791 ptr
+= 2 + 2 + 2 + 2 + leaf_len
+ vplen
;
798 const unsigned short int* p_vboff
;
800 leaf_len
= numeric_leaf(&value
, &type
->vbclass_v2
.vbpoff
);
801 p_vboff
= (const unsigned short int*)((const char*)&type
->vbclass_v2
.vbpoff
+ leaf_len
);
802 vplen
= numeric_leaf(&vpoff
, p_vboff
);
804 /* FIXME: ignored for now */
806 ptr
+= 2 + 2 + 4 + 4 + leaf_len
+ vplen
;
811 leaf_len
= numeric_leaf(&value
, &type
->member_v1
.offset
);
812 p_name
= (const struct p_string
*)((const char*)&type
->member_v1
.offset
+ leaf_len
);
814 codeview_add_udt_element(ctp
, symt
, terminate_string(p_name
), value
,
815 type
->member_v1
.type
);
817 ptr
+= 2 + 2 + 2 + leaf_len
+ (1 + p_name
->namelen
);
821 leaf_len
= numeric_leaf(&value
, &type
->member_v2
.offset
);
822 p_name
= (const struct p_string
*)((const unsigned char*)&type
->member_v2
.offset
+ leaf_len
);
824 codeview_add_udt_element(ctp
, symt
, terminate_string(p_name
), value
,
825 type
->member_v2
.type
);
827 ptr
+= 2 + 2 + 4 + leaf_len
+ (1 + p_name
->namelen
);
831 leaf_len
= numeric_leaf(&value
, &type
->member_v3
.offset
);
832 c_name
= (const char*)&type
->member_v3
.offset
+ leaf_len
;
834 codeview_add_udt_element(ctp
, symt
, c_name
, value
, type
->member_v3
.type
);
836 ptr
+= 2 + 2 + 4 + leaf_len
+ (strlen(c_name
) + 1);
840 /* FIXME: ignored for now */
841 ptr
+= 2 + 2 + 2 + (1 + type
->stmember_v1
.p_name
.namelen
);
845 /* FIXME: ignored for now */
846 ptr
+= 2 + 4 + 2 + (1 + type
->stmember_v2
.p_name
.namelen
);
850 /* FIXME: ignored for now */
851 ptr
+= 2 + 4 + 2 + (strlen(type
->stmember_v3
.name
) + 1);
855 /* FIXME: ignored for now */
856 ptr
+= 2 + 2 + 2 + (1 + type
->method_v1
.p_name
.namelen
);
860 /* FIXME: ignored for now */
861 ptr
+= 2 + 2 + 4 + (1 + type
->method_v2
.p_name
.namelen
);
865 /* FIXME: ignored for now */
866 ptr
+= 2 + 2 + 4 + (strlen(type
->method_v3
.name
) + 1);
870 /* FIXME: ignored for now */
871 ptr
+= 2 + 2 + (1 + type
->nesttype_v1
.p_name
.namelen
);
875 /* FIXME: ignored for now */
876 ptr
+= 2 + 2 + 4 + (1 + type
->nesttype_v2
.p_name
.namelen
);
880 /* FIXME: ignored for now */
881 ptr
+= 2 + 2 + 4 + (strlen(type
->nesttype_v3
.name
) + 1);
885 /* FIXME: ignored for now */
890 /* FIXME: ignored for now */
894 case LF_ONEMETHOD_V1
:
895 /* FIXME: ignored for now */
896 switch ((type
->onemethod_v1
.attribute
>> 2) & 7)
898 case 4: case 6: /* (pure) introducing virtual method */
899 ptr
+= 2 + 2 + 2 + 4 + (1 + type
->onemethod_virt_v1
.p_name
.namelen
);
903 ptr
+= 2 + 2 + 2 + (1 + type
->onemethod_v1
.p_name
.namelen
);
908 case LF_ONEMETHOD_V2
:
909 /* FIXME: ignored for now */
910 switch ((type
->onemethod_v2
.attribute
>> 2) & 7)
912 case 4: case 6: /* (pure) introducing virtual method */
913 ptr
+= 2 + 2 + 4 + 4 + (1 + type
->onemethod_virt_v2
.p_name
.namelen
);
917 ptr
+= 2 + 2 + 4 + (1 + type
->onemethod_v2
.p_name
.namelen
);
922 case LF_ONEMETHOD_V3
:
923 /* FIXME: ignored for now */
924 switch ((type
->onemethod_v3
.attribute
>> 2) & 7)
926 case 4: case 6: /* (pure) introducing virtual method */
927 ptr
+= 2 + 2 + 4 + 4 + (strlen(type
->onemethod_virt_v3
.name
) + 1);
931 ptr
+= 2 + 2 + 4 + (strlen(type
->onemethod_v3
.name
) + 1);
937 if (!codeview_add_type_struct_field_list(ctp
, symt
, type
->index_v1
.ref
))
943 if (!codeview_add_type_struct_field_list(ctp
, symt
, type
->index_v2
.ref
))
949 FIXME("Unsupported type %04x in STRUCT field list\n", type
->generic
.id
);
957 static struct symt
* codeview_add_type_enum(struct codeview_type_parse
* ctp
,
958 struct symt
* existing
,
960 unsigned fieldlistno
,
963 struct symt_enum
* symt
;
967 if (!(symt
= codeview_cast_symt(existing
, SymTagEnum
))) return NULL
;
968 /* should also check that all fields are the same */
972 symt
= symt_new_enum(ctp
->module
, name
,
973 codeview_fetch_type(ctp
, basetype
, FALSE
));
976 const union codeview_reftype
* fieldlist
;
977 fieldlist
= codeview_jump_to_type(ctp
, fieldlistno
);
978 codeview_add_type_enum_field_list(ctp
->module
, symt
, fieldlist
);
984 static struct symt
* codeview_add_type_struct(struct codeview_type_parse
* ctp
,
985 struct symt
* existing
,
986 const char* name
, int structlen
,
987 enum UdtKind kind
, unsigned property
)
989 struct symt_udt
* symt
;
991 /* if we don't have an existing type, try to find one with same name
992 * FIXME: what to do when several types in different CUs have same name ?
997 struct symt_ht
* type
;
998 struct hash_table_iter hti
;
1000 hash_table_iter_init(&ctp
->module
->ht_types
, &hti
, name
);
1001 while ((ptr
= hash_table_iter_up(&hti
)))
1003 type
= GET_ENTRY(ptr
, struct symt_ht
, hash_elt
);
1005 if (type
->symt
.tag
== SymTagUDT
&&
1006 type
->hash_elt
.name
&& !strcmp(type
->hash_elt
.name
, name
))
1008 existing
= &type
->symt
;
1015 if (!(symt
= codeview_cast_symt(existing
, SymTagUDT
))) return NULL
;
1016 /* should also check that all fields are the same */
1017 if (!(property
& 0x80)) /* 0x80 = forward declaration */
1019 if (!symt
->size
) /* likely prior forward declaration, set UDT size */
1020 symt_set_udt_size(ctp
->module
, symt
, structlen
);
1021 else /* different UDT with same name, create a new type */
1025 if (!existing
) symt
= symt_new_udt(ctp
->module
, name
, structlen
, kind
);
1030 static struct symt
* codeview_new_func_signature(struct codeview_type_parse
* ctp
,
1031 struct symt
* existing
,
1032 enum CV_call_e call_conv
)
1034 struct symt_function_signature
* sym
;
1038 sym
= codeview_cast_symt(existing
, SymTagFunctionType
);
1039 if (!sym
) return NULL
;
1043 sym
= symt_new_function_signature(ctp
->module
, NULL
, call_conv
);
1048 static void codeview_add_func_signature_args(struct codeview_type_parse
* ctp
,
1049 struct symt_function_signature
* sym
,
1053 const union codeview_reftype
* reftype
;
1055 sym
->rettype
= codeview_fetch_type(ctp
, ret_type
, FALSE
);
1056 if (args_list
&& (reftype
= codeview_jump_to_type(ctp
, args_list
)))
1059 switch (reftype
->generic
.id
)
1062 for (i
= 0; i
< reftype
->arglist_v1
.num
; i
++)
1063 symt_add_function_signature_parameter(ctp
->module
, sym
,
1064 codeview_fetch_type(ctp
, reftype
->arglist_v1
.args
[i
], FALSE
));
1067 for (i
= 0; i
< reftype
->arglist_v2
.num
; i
++)
1068 symt_add_function_signature_parameter(ctp
->module
, sym
,
1069 codeview_fetch_type(ctp
, reftype
->arglist_v2
.args
[i
], FALSE
));
1072 FIXME("Unexpected leaf %x for signature's pmt\n", reftype
->generic
.id
);
1077 static struct symt
* codeview_parse_one_type(struct codeview_type_parse
* ctp
,
1079 const union codeview_type
* type
, BOOL details
)
1082 int value
, leaf_len
;
1083 const struct p_string
* p_name
;
1085 struct symt
* existing
;
1087 existing
= codeview_get_type(curr_type
, TRUE
);
1089 switch (type
->generic
.id
)
1091 case LF_MODIFIER_V1
:
1092 /* FIXME: we don't handle modifiers,
1093 * but read previous type on the curr_type
1095 WARN("Modifier on %x: %s%s%s%s\n",
1096 type
->modifier_v1
.type
,
1097 type
->modifier_v1
.attribute
& 0x01 ? "const " : "",
1098 type
->modifier_v1
.attribute
& 0x02 ? "volatile " : "",
1099 type
->modifier_v1
.attribute
& 0x04 ? "unaligned " : "",
1100 type
->modifier_v1
.attribute
& ~0x07 ? "unknown " : "");
1101 symt
= codeview_fetch_type(ctp
, type
->modifier_v1
.type
, details
);
1103 case LF_MODIFIER_V2
:
1104 /* FIXME: we don't handle modifiers, but readd previous type on the curr_type */
1105 WARN("Modifier on %x: %s%s%s%s\n",
1106 type
->modifier_v2
.type
,
1107 type
->modifier_v2
.attribute
& 0x01 ? "const " : "",
1108 type
->modifier_v2
.attribute
& 0x02 ? "volatile " : "",
1109 type
->modifier_v2
.attribute
& 0x04 ? "unaligned " : "",
1110 type
->modifier_v2
.attribute
& ~0x07 ? "unknown " : "");
1111 symt
= codeview_fetch_type(ctp
, type
->modifier_v2
.type
, details
);
1115 symt
= codeview_add_type_pointer(ctp
, existing
, type
->pointer_v1
.datatype
);
1118 symt
= codeview_add_type_pointer(ctp
, existing
, type
->pointer_v2
.datatype
);
1122 if (existing
) symt
= codeview_cast_symt(existing
, SymTagArrayType
);
1125 leaf_len
= numeric_leaf(&value
, &type
->array_v1
.arrlen
);
1126 p_name
= (const struct p_string
*)((const unsigned char*)&type
->array_v1
.arrlen
+ leaf_len
);
1127 symt
= codeview_add_type_array(ctp
, terminate_string(p_name
),
1128 type
->array_v1
.elemtype
,
1129 type
->array_v1
.idxtype
, value
);
1133 if (existing
) symt
= codeview_cast_symt(existing
, SymTagArrayType
);
1136 leaf_len
= numeric_leaf(&value
, &type
->array_v2
.arrlen
);
1137 p_name
= (const struct p_string
*)((const unsigned char*)&type
->array_v2
.arrlen
+ leaf_len
);
1139 symt
= codeview_add_type_array(ctp
, terminate_string(p_name
),
1140 type
->array_v2
.elemtype
,
1141 type
->array_v2
.idxtype
, value
);
1145 if (existing
) symt
= codeview_cast_symt(existing
, SymTagArrayType
);
1148 leaf_len
= numeric_leaf(&value
, &type
->array_v3
.arrlen
);
1149 c_name
= (const char*)&type
->array_v3
.arrlen
+ leaf_len
;
1151 symt
= codeview_add_type_array(ctp
, c_name
,
1152 type
->array_v3
.elemtype
,
1153 type
->array_v3
.idxtype
, value
);
1157 case LF_STRUCTURE_V1
:
1159 leaf_len
= numeric_leaf(&value
, &type
->struct_v1
.structlen
);
1160 p_name
= (const struct p_string
*)((const unsigned char*)&type
->struct_v1
.structlen
+ leaf_len
);
1161 symt
= codeview_add_type_struct(ctp
, existing
, terminate_string(p_name
), value
,
1162 type
->generic
.id
== LF_CLASS_V1
? UdtClass
: UdtStruct
,
1163 type
->struct_v1
.property
);
1166 codeview_add_type(curr_type
, symt
);
1167 if (!(type
->struct_v1
.property
& 0x80)) /* 0x80 = forward declaration */
1168 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1169 type
->struct_v1
.fieldlist
);
1173 case LF_STRUCTURE_V2
:
1175 leaf_len
= numeric_leaf(&value
, &type
->struct_v2
.structlen
);
1176 p_name
= (const struct p_string
*)((const unsigned char*)&type
->struct_v2
.structlen
+ leaf_len
);
1177 symt
= codeview_add_type_struct(ctp
, existing
, terminate_string(p_name
), value
,
1178 type
->generic
.id
== LF_CLASS_V2
? UdtClass
: UdtStruct
,
1179 type
->struct_v2
.property
);
1182 codeview_add_type(curr_type
, symt
);
1183 if (!(type
->struct_v2
.property
& 0x80)) /* 0x80 = forward declaration */
1184 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1185 type
->struct_v2
.fieldlist
);
1189 case LF_STRUCTURE_V3
:
1191 leaf_len
= numeric_leaf(&value
, &type
->struct_v3
.structlen
);
1192 c_name
= (const char*)&type
->struct_v3
.structlen
+ leaf_len
;
1193 symt
= codeview_add_type_struct(ctp
, existing
, c_name
, value
,
1194 type
->generic
.id
== LF_CLASS_V3
? UdtClass
: UdtStruct
,
1195 type
->struct_v3
.property
);
1198 codeview_add_type(curr_type
, symt
);
1199 if (!(type
->struct_v3
.property
& 0x80)) /* 0x80 = forward declaration */
1200 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1201 type
->struct_v3
.fieldlist
);
1206 leaf_len
= numeric_leaf(&value
, &type
->union_v1
.un_len
);
1207 p_name
= (const struct p_string
*)((const unsigned char*)&type
->union_v1
.un_len
+ leaf_len
);
1208 symt
= codeview_add_type_struct(ctp
, existing
, terminate_string(p_name
),
1209 value
, UdtUnion
, type
->union_v1
.property
);
1212 codeview_add_type(curr_type
, symt
);
1213 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1214 type
->union_v1
.fieldlist
);
1219 leaf_len
= numeric_leaf(&value
, &type
->union_v2
.un_len
);
1220 p_name
= (const struct p_string
*)((const unsigned char*)&type
->union_v2
.un_len
+ leaf_len
);
1221 symt
= codeview_add_type_struct(ctp
, existing
, terminate_string(p_name
),
1222 value
, UdtUnion
, type
->union_v2
.property
);
1225 codeview_add_type(curr_type
, symt
);
1226 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1227 type
->union_v2
.fieldlist
);
1232 leaf_len
= numeric_leaf(&value
, &type
->union_v3
.un_len
);
1233 c_name
= (const char*)&type
->union_v3
.un_len
+ leaf_len
;
1234 symt
= codeview_add_type_struct(ctp
, existing
, c_name
,
1235 value
, UdtUnion
, type
->union_v3
.property
);
1238 codeview_add_type(curr_type
, symt
);
1239 codeview_add_type_struct_field_list(ctp
, (struct symt_udt
*)symt
,
1240 type
->union_v3
.fieldlist
);
1245 symt
= codeview_add_type_enum(ctp
, existing
,
1246 terminate_string(&type
->enumeration_v1
.p_name
),
1247 type
->enumeration_v1
.fieldlist
,
1248 type
->enumeration_v1
.type
);
1252 symt
= codeview_add_type_enum(ctp
, existing
,
1253 terminate_string(&type
->enumeration_v2
.p_name
),
1254 type
->enumeration_v2
.fieldlist
,
1255 type
->enumeration_v2
.type
);
1259 symt
= codeview_add_type_enum(ctp
, existing
, type
->enumeration_v3
.name
,
1260 type
->enumeration_v3
.fieldlist
,
1261 type
->enumeration_v3
.type
);
1264 case LF_PROCEDURE_V1
:
1265 symt
= codeview_new_func_signature(ctp
, existing
, type
->procedure_v1
.call
);
1268 codeview_add_type(curr_type
, symt
);
1269 codeview_add_func_signature_args(ctp
,
1270 (struct symt_function_signature
*)symt
,
1271 type
->procedure_v1
.rvtype
,
1272 type
->procedure_v1
.arglist
);
1275 case LF_PROCEDURE_V2
:
1276 symt
= codeview_new_func_signature(ctp
, existing
,type
->procedure_v2
.call
);
1279 codeview_add_type(curr_type
, symt
);
1280 codeview_add_func_signature_args(ctp
,
1281 (struct symt_function_signature
*)symt
,
1282 type
->procedure_v2
.rvtype
,
1283 type
->procedure_v2
.arglist
);
1287 case LF_MFUNCTION_V1
:
1288 /* FIXME: for C++, this is plain wrong, but as we don't use arg types
1289 * nor class information, this would just do for now
1291 symt
= codeview_new_func_signature(ctp
, existing
, type
->mfunction_v1
.call
);
1294 codeview_add_type(curr_type
, symt
);
1295 codeview_add_func_signature_args(ctp
,
1296 (struct symt_function_signature
*)symt
,
1297 type
->mfunction_v1
.rvtype
,
1298 type
->mfunction_v1
.arglist
);
1301 case LF_MFUNCTION_V2
:
1302 /* FIXME: for C++, this is plain wrong, but as we don't use arg types
1303 * nor class information, this would just do for now
1305 symt
= codeview_new_func_signature(ctp
, existing
, type
->mfunction_v2
.call
);
1308 codeview_add_type(curr_type
, symt
);
1309 codeview_add_func_signature_args(ctp
,
1310 (struct symt_function_signature
*)symt
,
1311 type
->mfunction_v2
.rvtype
,
1312 type
->mfunction_v2
.arglist
);
1317 /* this is an ugly hack... FIXME when we have C++ support */
1318 if (!(symt
= existing
))
1321 snprintf(buf
, sizeof(buf
), "__internal_vt_shape_%x\n", curr_type
);
1322 symt
= &symt_new_udt(ctp
->module
, buf
, 0, UdtStruct
)->symt
;
1326 FIXME("Unsupported type-id leaf %x\n", type
->generic
.id
);
1327 dump(type
, 2 + type
->generic
.len
);
1330 return codeview_add_type(curr_type
, symt
) ? symt
: NULL
;
1333 static BOOL
codeview_parse_type_table(struct codeview_type_parse
* ctp
)
1335 unsigned int curr_type
= FIRST_DEFINABLE_TYPE
;
1336 const union codeview_type
* type
;
1338 for (curr_type
= FIRST_DEFINABLE_TYPE
; curr_type
< FIRST_DEFINABLE_TYPE
+ ctp
->num
; curr_type
++)
1340 type
= codeview_jump_to_type(ctp
, curr_type
);
1342 /* type records we're interested in are the ones referenced by symbols
1343 * The known ranges are (X mark the ones we want):
1344 * X 0000-0016 for V1 types
1345 * 0200-020c for V1 types referenced by other types
1346 * 0400-040f for V1 types (complex lists & sets)
1347 * X 1000-100f for V2 types
1348 * 1200-120c for V2 types referenced by other types
1349 * 1400-140f for V1 types (complex lists & sets)
1350 * X 1500-150d for V3 types
1351 * 8000-8010 for numeric leafes
1353 if (!(type
->generic
.id
& 0x8600) || (type
->generic
.id
& 0x0100))
1354 codeview_parse_one_type(ctp
, curr_type
, type
, TRUE
);
1360 /*========================================================================
1361 * Process CodeView line number information.
1363 static unsigned long codeview_get_address(const struct msc_debug_info
* msc_dbg
,
1364 unsigned seg
, unsigned offset
);
1366 static void codeview_snarf_linetab(const struct msc_debug_info
* msc_dbg
, const BYTE
* linetab
,
1367 int size
, BOOL pascal_str
)
1369 const BYTE
* ptr
= linetab
;
1373 const unsigned int* filetab
;
1374 const unsigned int* lt_ptr
;
1375 const unsigned short* linenos
;
1376 const struct startend
* start
;
1378 unsigned long addr
, func_addr0
;
1379 struct symt_function
* func
;
1380 const struct codeview_linetab_block
* ltb
;
1382 nfile
= *(const short*)linetab
;
1383 filetab
= (const unsigned int*)(linetab
+ 2 * sizeof(short));
1385 for (i
= 0; i
< nfile
; i
++)
1387 ptr
= linetab
+ filetab
[i
];
1388 nseg
= *(const short*)ptr
;
1389 lt_ptr
= (const unsigned int*)(ptr
+ 2 * sizeof(short));
1390 start
= (const struct startend
*)(lt_ptr
+ nseg
);
1393 * Now snarf the filename for all of the segments for this file.
1396 source
= source_new(msc_dbg
->module
, NULL
, terminate_string((const struct p_string
*)(start
+ nseg
)));
1398 source
= source_new(msc_dbg
->module
, NULL
, (const char*)(start
+ nseg
));
1400 for (j
= 0; j
< nseg
; j
++)
1402 ltb
= (const struct codeview_linetab_block
*)(linetab
+ *lt_ptr
++);
1403 linenos
= (const unsigned short*)<b
->offsets
[ltb
->num_lines
];
1404 func_addr0
= codeview_get_address(msc_dbg
, ltb
->seg
, start
[j
].start
);
1405 if (!func_addr0
) continue;
1406 for (func
= NULL
, k
= 0; k
< ltb
->num_lines
; k
++)
1408 /* now locate function (if any) */
1409 addr
= func_addr0
+ ltb
->offsets
[k
] - start
[j
].start
;
1410 /* unfortunately, we can have several functions in the same block, if there's no
1411 * gap between them... find the new function if needed
1413 if (!func
|| addr
>= func
->address
+ func
->size
)
1415 func
= (struct symt_function
*)symt_find_nearest(msc_dbg
->module
, addr
);
1416 /* FIXME: at least labels support line numbers */
1417 if (!func
|| func
->symt
.tag
!= SymTagFunction
)
1419 WARN("--not a func at %04x:%08x %lx tag=%d\n",
1420 ltb
->seg
, ltb
->offsets
[k
], addr
, func
? func
->symt
.tag
: -1);
1425 symt_add_func_line(msc_dbg
->module
, func
, source
,
1426 linenos
[k
], addr
- func
->address
);
1432 static void codeview_snarf_linetab2(const struct msc_debug_info
* msc_dbg
, const BYTE
* linetab
, DWORD size
,
1433 const char* strimage
, DWORD strsize
)
1437 const struct codeview_linetab2
* lt2
;
1438 const struct codeview_linetab2
* lt2_files
= NULL
;
1439 const struct codeview_lt2blk_lines
* lines_blk
;
1440 const struct codeview_linetab2_file
*fd
;
1442 struct symt_function
* func
;
1444 /* locate LT2_FILES_BLOCK (if any) */
1445 lt2
= (const struct codeview_linetab2
*)linetab
;
1446 while ((const BYTE
*)(lt2
+ 1) < linetab
+ size
)
1448 if (lt2
->header
== LT2_FILES_BLOCK
)
1453 lt2
= codeview_linetab2_next_block(lt2
);
1457 TRACE("No LT2_FILES_BLOCK found\n");
1461 lt2
= (const struct codeview_linetab2
*)linetab
;
1462 while ((const BYTE
*)(lt2
+ 1) < linetab
+ size
)
1464 /* FIXME: should also check that whole lines_blk fits in linetab + size */
1465 switch (lt2
->header
)
1467 case LT2_LINES_BLOCK
:
1468 /* Skip blocks that are too small - Intel C Compiler generates these. */
1469 if (lt2
->size_of_block
< sizeof (struct codeview_lt2blk_lines
)) break;
1470 lines_blk
= (const struct codeview_lt2blk_lines
*)lt2
;
1471 /* FIXME: should check that file_offset is within the LT2_FILES_BLOCK we've seen */
1472 addr
= codeview_get_address(msc_dbg
, lines_blk
->seg
, lines_blk
->start
);
1473 TRACE("block from %04x:%08x #%x (%x lines)\n",
1474 lines_blk
->seg
, lines_blk
->start
, lines_blk
->size
, lines_blk
->nlines
);
1475 fd
= (const struct codeview_linetab2_file
*)((const char*)lt2_files
+ 8 + lines_blk
->file_offset
);
1476 /* FIXME: should check that string is within strimage + strsize */
1477 source
= source_new(msc_dbg
->module
, NULL
, strimage
+ fd
->offset
);
1478 func
= (struct symt_function
*)symt_find_nearest(msc_dbg
->module
, addr
);
1479 /* FIXME: at least labels support line numbers */
1480 if (!func
|| func
->symt
.tag
!= SymTagFunction
)
1482 WARN("--not a func at %04x:%08x %lx tag=%d\n",
1483 lines_blk
->seg
, lines_blk
->start
, addr
, func
? func
->symt
.tag
: -1);
1486 for (i
= 0; i
< lines_blk
->nlines
; i
++)
1488 symt_add_func_line(msc_dbg
->module
, func
, source
,
1489 lines_blk
->l
[i
].lineno
^ 0x80000000,
1490 lines_blk
->l
[i
].offset
);
1493 case LT2_FILES_BLOCK
: /* skip */
1496 TRACE("Block end %x\n", lt2
->header
);
1497 lt2
= (const struct codeview_linetab2
*)((const char*)linetab
+ size
);
1500 lt2
= codeview_linetab2_next_block(lt2
);
1504 /*========================================================================
1505 * Process CodeView symbol information.
1508 static unsigned int codeview_map_offset(const struct msc_debug_info
* msc_dbg
,
1509 unsigned int offset
)
1511 int nomap
= msc_dbg
->nomap
;
1512 const OMAP_DATA
* omapp
= msc_dbg
->omapp
;
1515 if (!nomap
|| !omapp
) return offset
;
1517 /* FIXME: use binary search */
1518 for (i
= 0; i
< nomap
- 1; i
++)
1519 if (omapp
[i
].from
<= offset
&& omapp
[i
+1].from
> offset
)
1520 return !omapp
[i
].to
? 0 : omapp
[i
].to
+ (offset
- omapp
[i
].from
);
1525 static unsigned long codeview_get_address(const struct msc_debug_info
* msc_dbg
,
1526 unsigned seg
, unsigned offset
)
1528 int nsect
= msc_dbg
->nsect
;
1529 const IMAGE_SECTION_HEADER
* sectp
= msc_dbg
->sectp
;
1531 if (!seg
|| seg
> nsect
) return 0;
1532 return msc_dbg
->module
->module
.BaseOfImage
+
1533 codeview_map_offset(msc_dbg
, sectp
[seg
-1].VirtualAddress
+ offset
);
1536 static inline void codeview_add_variable(const struct msc_debug_info
* msc_dbg
,
1537 struct symt_compiland
* compiland
,
1539 unsigned segment
, unsigned offset
,
1540 unsigned symtype
, BOOL is_local
, BOOL in_tls
, BOOL force
)
1544 struct location loc
;
1546 loc
.kind
= in_tls
? loc_tlsrel
: loc_absolute
;
1548 loc
.offset
= in_tls
? offset
: codeview_get_address(msc_dbg
, segment
, offset
);
1549 if (force
|| in_tls
|| !symt_find_nearest(msc_dbg
->module
, loc
.offset
))
1551 symt_new_global_variable(msc_dbg
->module
, compiland
,
1552 name
, is_local
, loc
, 0,
1553 codeview_get_type(symtype
, FALSE
));
1558 static BOOL
codeview_snarf(const struct msc_debug_info
* msc_dbg
, const BYTE
* root
,
1559 int offset
, int size
, BOOL do_globals
)
1561 struct symt_function
* curr_func
= NULL
;
1563 struct symt_block
* block
= NULL
;
1565 struct symt_compiland
* compiland
= NULL
;
1566 struct location loc
;
1569 * Loop over the different types of records and whenever we
1570 * find something we are interested in, record it and move on.
1572 for (i
= offset
; i
< size
; i
+= length
)
1574 const union codeview_symbol
* sym
= (const union codeview_symbol
*)(root
+ i
);
1575 length
= sym
->generic
.len
+ 2;
1576 if (i
+ length
> size
) break;
1577 if (!sym
->generic
.id
|| length
< 4) break;
1578 if (length
& 3) FIXME("unpadded len %u\n", length
);
1580 switch (sym
->generic
.id
)
1583 * Global and local data symbols. We don't associate these
1584 * with any given source file.
1589 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->data_v1
.p_name
),
1590 sym
->data_v1
.segment
, sym
->data_v1
.offset
, sym
->data_v1
.symtype
,
1591 sym
->generic
.id
== S_LDATA_V1
, FALSE
, TRUE
);
1596 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->data_v2
.p_name
),
1597 sym
->data_v2
.segment
, sym
->data_v2
.offset
, sym
->data_v2
.symtype
,
1598 sym
->generic
.id
== S_LDATA_V2
, FALSE
, TRUE
);
1603 codeview_add_variable(msc_dbg
, compiland
, sym
->data_v3
.name
,
1604 sym
->data_v3
.segment
, sym
->data_v3
.offset
, sym
->data_v3
.symtype
,
1605 sym
->generic
.id
== S_LDATA_V3
, FALSE
, TRUE
);
1608 /* variables with thread storage */
1612 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->thread_v1
.p_name
),
1613 sym
->thread_v1
.segment
, sym
->thread_v1
.offset
, sym
->thread_v1
.symtype
,
1614 sym
->generic
.id
== S_LTHREAD_V1
, TRUE
, TRUE
);
1619 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->thread_v2
.p_name
),
1620 sym
->thread_v2
.segment
, sym
->thread_v2
.offset
, sym
->thread_v2
.symtype
,
1621 sym
->generic
.id
== S_LTHREAD_V2
, TRUE
, TRUE
);
1626 codeview_add_variable(msc_dbg
, compiland
, sym
->thread_v3
.name
,
1627 sym
->thread_v3
.segment
, sym
->thread_v3
.offset
, sym
->thread_v3
.symtype
,
1628 sym
->generic
.id
== S_LTHREAD_V3
, TRUE
, TRUE
);
1631 /* Public symbols */
1635 case S_PUB_FUNC1_V3
:
1636 case S_PUB_FUNC2_V3
:
1637 /* will be handled later on in codeview_snarf_public */
1641 * Sort of like a global function, but it just points
1642 * to a thunk, which is a stupid name for what amounts to
1643 * a PLT slot in the normal jargon that everyone else uses.
1646 symt_new_thunk(msc_dbg
->module
, compiland
,
1647 terminate_string(&sym
->thunk_v1
.p_name
), sym
->thunk_v1
.thtype
,
1648 codeview_get_address(msc_dbg
, sym
->thunk_v1
.segment
, sym
->thunk_v1
.offset
),
1649 sym
->thunk_v1
.thunk_len
);
1652 symt_new_thunk(msc_dbg
->module
, compiland
,
1653 sym
->thunk_v3
.name
, sym
->thunk_v3
.thtype
,
1654 codeview_get_address(msc_dbg
, sym
->thunk_v3
.segment
, sym
->thunk_v3
.offset
),
1655 sym
->thunk_v3
.thunk_len
);
1659 * Global and static functions.
1663 if (curr_func
) FIXME("nested function\n");
1664 curr_func
= symt_new_function(msc_dbg
->module
, compiland
,
1665 terminate_string(&sym
->proc_v1
.p_name
),
1666 codeview_get_address(msc_dbg
, sym
->proc_v1
.segment
, sym
->proc_v1
.offset
),
1667 sym
->proc_v1
.proc_len
,
1668 codeview_get_type(sym
->proc_v1
.proctype
, FALSE
));
1669 loc
.kind
= loc_absolute
;
1670 loc
.offset
= sym
->proc_v1
.debug_start
;
1671 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugStart
, &loc
, NULL
);
1672 loc
.offset
= sym
->proc_v1
.debug_end
;
1673 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugEnd
, &loc
, NULL
);
1677 if (curr_func
) FIXME("nested function\n");
1678 curr_func
= symt_new_function(msc_dbg
->module
, compiland
,
1679 terminate_string(&sym
->proc_v2
.p_name
),
1680 codeview_get_address(msc_dbg
, sym
->proc_v2
.segment
, sym
->proc_v2
.offset
),
1681 sym
->proc_v2
.proc_len
,
1682 codeview_get_type(sym
->proc_v2
.proctype
, FALSE
));
1683 loc
.kind
= loc_absolute
;
1684 loc
.offset
= sym
->proc_v2
.debug_start
;
1685 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugStart
, &loc
, NULL
);
1686 loc
.offset
= sym
->proc_v2
.debug_end
;
1687 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugEnd
, &loc
, NULL
);
1691 if (curr_func
) FIXME("nested function\n");
1692 curr_func
= symt_new_function(msc_dbg
->module
, compiland
,
1694 codeview_get_address(msc_dbg
, sym
->proc_v3
.segment
, sym
->proc_v3
.offset
),
1695 sym
->proc_v3
.proc_len
,
1696 codeview_get_type(sym
->proc_v3
.proctype
, FALSE
));
1697 loc
.kind
= loc_absolute
;
1698 loc
.offset
= sym
->proc_v3
.debug_start
;
1699 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugStart
, &loc
, NULL
);
1700 loc
.offset
= sym
->proc_v3
.debug_end
;
1701 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagFuncDebugEnd
, &loc
, NULL
);
1704 * Function parameters and stack variables.
1707 loc
.kind
= loc_regrel
;
1708 /* Yes, it's i386 dependent, but that's the symbol purpose. S_REGREL is used on other CPUs */
1709 loc
.reg
= CV_REG_EBP
;
1710 loc
.offset
= sym
->stack_v1
.offset
;
1711 symt_add_func_local(msc_dbg
->module
, curr_func
,
1712 sym
->stack_v1
.offset
> 0 ? DataIsParam
: DataIsLocal
,
1714 codeview_get_type(sym
->stack_v1
.symtype
, FALSE
),
1715 terminate_string(&sym
->stack_v1
.p_name
));
1718 loc
.kind
= loc_regrel
;
1719 /* Yes, it's i386 dependent, but that's the symbol purpose. S_REGREL is used on other CPUs */
1720 loc
.reg
= CV_REG_EBP
;
1721 loc
.offset
= sym
->stack_v2
.offset
;
1722 symt_add_func_local(msc_dbg
->module
, curr_func
,
1723 sym
->stack_v2
.offset
> 0 ? DataIsParam
: DataIsLocal
,
1725 codeview_get_type(sym
->stack_v2
.symtype
, FALSE
),
1726 terminate_string(&sym
->stack_v2
.p_name
));
1729 loc
.kind
= loc_regrel
;
1730 /* Yes, it's i386 dependent, but that's the symbol purpose. S_REGREL is used on other CPUs */
1731 loc
.reg
= CV_REG_EBP
;
1732 loc
.offset
= sym
->stack_v3
.offset
;
1733 symt_add_func_local(msc_dbg
->module
, curr_func
,
1734 sym
->stack_v3
.offset
> 0 ? DataIsParam
: DataIsLocal
,
1736 codeview_get_type(sym
->stack_v3
.symtype
, FALSE
),
1737 sym
->stack_v3
.name
);
1740 loc
.kind
= loc_regrel
;
1741 loc
.reg
= sym
->regrel_v3
.reg
;
1742 loc
.offset
= sym
->regrel_v3
.offset
;
1743 symt_add_func_local(msc_dbg
->module
, curr_func
,
1744 /* FIXME this is wrong !!! */
1745 sym
->regrel_v3
.offset
> 0 ? DataIsParam
: DataIsLocal
,
1747 codeview_get_type(sym
->regrel_v3
.symtype
, FALSE
),
1748 sym
->regrel_v3
.name
);
1752 loc
.kind
= loc_register
;
1753 loc
.reg
= sym
->register_v1
.reg
;
1755 symt_add_func_local(msc_dbg
->module
, curr_func
,
1757 block
, codeview_get_type(sym
->register_v1
.type
, FALSE
),
1758 terminate_string(&sym
->register_v1
.p_name
));
1761 loc
.kind
= loc_register
;
1762 loc
.reg
= sym
->register_v2
.reg
;
1764 symt_add_func_local(msc_dbg
->module
, curr_func
,
1766 block
, codeview_get_type(sym
->register_v2
.type
, FALSE
),
1767 terminate_string(&sym
->register_v2
.p_name
));
1770 loc
.kind
= loc_register
;
1771 loc
.reg
= sym
->register_v3
.reg
;
1773 symt_add_func_local(msc_dbg
->module
, curr_func
,
1775 block
, codeview_get_type(sym
->register_v3
.type
, FALSE
),
1776 sym
->register_v3
.name
);
1780 block
= symt_open_func_block(msc_dbg
->module
, curr_func
, block
,
1781 codeview_get_address(msc_dbg
, sym
->block_v1
.segment
, sym
->block_v1
.offset
),
1782 sym
->block_v1
.length
);
1785 block
= symt_open_func_block(msc_dbg
->module
, curr_func
, block
,
1786 codeview_get_address(msc_dbg
, sym
->block_v3
.segment
, sym
->block_v3
.offset
),
1787 sym
->block_v3
.length
);
1793 block
= symt_close_func_block(msc_dbg
->module
, curr_func
, block
, 0);
1797 symt_normalize_function(msc_dbg
->module
, curr_func
);
1802 case S_COMPILAND_V1
:
1803 TRACE("S-Compiland-V1 %x %s\n",
1804 sym
->compiland_v1
.unknown
, terminate_string(&sym
->compiland_v1
.p_name
));
1807 case S_COMPILAND_V2
:
1808 TRACE("S-Compiland-V2 %s\n", terminate_string(&sym
->compiland_v2
.p_name
));
1809 if (TRACE_ON(dbghelp_msc
))
1811 const char* ptr1
= sym
->compiland_v2
.p_name
.name
+ sym
->compiland_v2
.p_name
.namelen
;
1815 ptr2
= ptr1
+ strlen(ptr1
) + 1;
1816 TRACE("\t%s => %s\n", ptr1
, debugstr_a(ptr2
));
1817 ptr1
= ptr2
+ strlen(ptr2
) + 1;
1821 case S_COMPILAND_V3
:
1822 TRACE("S-Compiland-V3 %s\n", sym
->compiland_v3
.name
);
1823 if (TRACE_ON(dbghelp_msc
))
1825 const char* ptr1
= sym
->compiland_v3
.name
+ strlen(sym
->compiland_v3
.name
);
1829 ptr2
= ptr1
+ strlen(ptr1
) + 1;
1830 TRACE("\t%s => %s\n", ptr1
, debugstr_a(ptr2
));
1831 ptr1
= ptr2
+ strlen(ptr2
) + 1;
1837 TRACE("S-ObjName %s\n", terminate_string(&sym
->objname_v1
.p_name
));
1838 compiland
= symt_new_compiland(msc_dbg
->module
, 0 /* FIXME */,
1839 source_new(msc_dbg
->module
, NULL
,
1840 terminate_string(&sym
->objname_v1
.p_name
)));
1846 loc
.kind
= loc_absolute
;
1847 loc
.offset
= codeview_get_address(msc_dbg
, sym
->label_v1
.segment
, sym
->label_v1
.offset
) - curr_func
->address
;
1848 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagLabel
, &loc
,
1849 terminate_string(&sym
->label_v1
.p_name
));
1851 else symt_new_label(msc_dbg
->module
, compiland
,
1852 terminate_string(&sym
->label_v1
.p_name
),
1853 codeview_get_address(msc_dbg
, sym
->label_v1
.segment
, sym
->label_v1
.offset
));
1858 loc
.kind
= loc_absolute
;
1859 loc
.offset
= codeview_get_address(msc_dbg
, sym
->label_v3
.segment
, sym
->label_v3
.offset
) - curr_func
->address
;
1860 symt_add_function_point(msc_dbg
->module
, curr_func
, SymTagLabel
,
1861 &loc
, sym
->label_v3
.name
);
1863 else symt_new_label(msc_dbg
->module
, compiland
, sym
->label_v3
.name
,
1864 codeview_get_address(msc_dbg
, sym
->label_v3
.segment
, sym
->label_v3
.offset
));
1870 const struct p_string
* name
;
1874 vlen
= leaf_as_variant(&v
, &sym
->constant_v1
.cvalue
);
1875 name
= (const struct p_string
*)((const char*)&sym
->constant_v1
.cvalue
+ vlen
);
1876 se
= codeview_get_type(sym
->constant_v1
.type
, FALSE
);
1878 TRACE("S-Constant-V1 %u %s %x\n",
1879 v
.n1
.n2
.n3
.intVal
, terminate_string(name
), sym
->constant_v1
.type
);
1880 symt_new_constant(msc_dbg
->module
, compiland
, terminate_string(name
),
1887 const struct p_string
* name
;
1891 vlen
= leaf_as_variant(&v
, &sym
->constant_v2
.cvalue
);
1892 name
= (const struct p_string
*)((const char*)&sym
->constant_v2
.cvalue
+ vlen
);
1893 se
= codeview_get_type(sym
->constant_v2
.type
, FALSE
);
1895 TRACE("S-Constant-V2 %u %s %x\n",
1896 v
.n1
.n2
.n3
.intVal
, terminate_string(name
), sym
->constant_v2
.type
);
1897 symt_new_constant(msc_dbg
->module
, compiland
, terminate_string(name
),
1908 vlen
= leaf_as_variant(&v
, &sym
->constant_v3
.cvalue
);
1909 name
= (const char*)&sym
->constant_v3
.cvalue
+ vlen
;
1910 se
= codeview_get_type(sym
->constant_v3
.type
, FALSE
);
1912 TRACE("S-Constant-V3 %u %s %x\n",
1913 v
.n1
.n2
.n3
.intVal
, name
, sym
->constant_v3
.type
);
1914 /* FIXME: we should add this as a constant value */
1915 symt_new_constant(msc_dbg
->module
, compiland
, name
, se
, &v
);
1920 if (sym
->udt_v1
.type
)
1922 if ((symt
= codeview_get_type(sym
->udt_v1
.type
, FALSE
)))
1923 symt_new_typedef(msc_dbg
->module
, symt
,
1924 terminate_string(&sym
->udt_v1
.p_name
));
1926 FIXME("S-Udt %s: couldn't find type 0x%x\n",
1927 terminate_string(&sym
->udt_v1
.p_name
), sym
->udt_v1
.type
);
1931 if (sym
->udt_v2
.type
)
1933 if ((symt
= codeview_get_type(sym
->udt_v2
.type
, FALSE
)))
1934 symt_new_typedef(msc_dbg
->module
, symt
,
1935 terminate_string(&sym
->udt_v2
.p_name
));
1937 FIXME("S-Udt %s: couldn't find type 0x%x\n",
1938 terminate_string(&sym
->udt_v2
.p_name
), sym
->udt_v2
.type
);
1942 if (sym
->udt_v3
.type
)
1944 if ((symt
= codeview_get_type(sym
->udt_v3
.type
, FALSE
)))
1945 symt_new_typedef(msc_dbg
->module
, symt
, sym
->udt_v3
.name
);
1947 FIXME("S-Udt %s: couldn't find type 0x%x\n",
1948 sym
->udt_v3
.name
, sym
->udt_v3
.type
);
1953 * These are special, in that they are always followed by an
1954 * additional length-prefixed string which is *not* included
1955 * into the symbol length count. We need to skip it.
1963 name
= (const char*)sym
+ length
;
1964 length
+= (*name
+ 1 + 3) & ~3;
1968 case S_MSTOOL_V3
: /* just to silence a few warnings */
1969 case S_MSTOOLINFO_V3
:
1970 case S_MSTOOLENV_V3
:
1974 TRACE("Start search: seg=0x%x at offset 0x%08x\n",
1975 sym
->ssearch_v1
.segment
, sym
->ssearch_v1
.offset
);
1979 TRACE("S-Align V1\n");
1982 /* the symbols we can safely ignore for now */
1984 case S_FRAMEINFO_V2
:
1985 case S_SECUCOOKIE_V3
:
1987 case S_SUBSECTINFO_V3
:
1988 case S_ENTRYPOINT_V3
:
1995 TRACE("Unsupported symbol id %x\n", sym
->generic
.id
);
1999 FIXME("Unsupported symbol id %x\n", sym
->generic
.id
);
2000 dump(sym
, 2 + sym
->generic
.len
);
2005 if (curr_func
) symt_normalize_function(msc_dbg
->module
, curr_func
);
2010 static BOOL
codeview_snarf_public(const struct msc_debug_info
* msc_dbg
, const BYTE
* root
,
2011 int offset
, int size
)
2015 struct symt_compiland
* compiland
= NULL
;
2018 * Loop over the different types of records and whenever we
2019 * find something we are interested in, record it and move on.
2021 for (i
= offset
; i
< size
; i
+= length
)
2023 const union codeview_symbol
* sym
= (const union codeview_symbol
*)(root
+ i
);
2024 length
= sym
->generic
.len
+ 2;
2025 if (i
+ length
> size
) break;
2026 if (!sym
->generic
.id
|| length
< 4) break;
2027 if (length
& 3) FIXME("unpadded len %u\n", length
);
2029 switch (sym
->generic
.id
)
2031 case S_PUB_V1
: /* FIXME is this really a 'data_v1' structure ?? */
2032 if (!(dbghelp_options
& SYMOPT_NO_PUBLICS
))
2034 symt_new_public(msc_dbg
->module
, compiland
,
2035 terminate_string(&sym
->data_v1
.p_name
),
2036 codeview_get_address(msc_dbg
, sym
->data_v1
.segment
, sym
->data_v1
.offset
), 1);
2039 case S_PUB_V2
: /* FIXME is this really a 'data_v2' structure ?? */
2040 if (!(dbghelp_options
& SYMOPT_NO_PUBLICS
))
2042 symt_new_public(msc_dbg
->module
, compiland
,
2043 terminate_string(&sym
->data_v2
.p_name
),
2044 codeview_get_address(msc_dbg
, sym
->data_v2
.segment
, sym
->data_v2
.offset
), 1);
2049 if (!(dbghelp_options
& SYMOPT_NO_PUBLICS
))
2051 symt_new_public(msc_dbg
->module
, compiland
,
2053 codeview_get_address(msc_dbg
, sym
->data_v3
.segment
, sym
->data_v3
.offset
), 1);
2056 case S_PUB_FUNC1_V3
:
2057 case S_PUB_FUNC2_V3
: /* using a data_v3 isn't what we'd expect */
2059 /* FIXME: this is plain wrong (from a simple test) */
2060 if (!(dbghelp_options
& SYMOPT_NO_PUBLICS
))
2062 symt_new_public(msc_dbg
->module
, compiland
,
2064 codeview_get_address(msc_dbg
, sym
->data_v3
.segment
, sym
->data_v3
.offset
), 1);
2069 * Global and local data symbols. We don't associate these
2070 * with any given source file.
2074 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->data_v1
.p_name
),
2075 sym
->data_v1
.segment
, sym
->data_v1
.offset
, sym
->data_v1
.symtype
,
2076 sym
->generic
.id
== S_LDATA_V1
, FALSE
, FALSE
);
2080 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->data_v2
.p_name
),
2081 sym
->data_v2
.segment
, sym
->data_v2
.offset
, sym
->data_v2
.symtype
,
2082 sym
->generic
.id
== S_LDATA_V2
, FALSE
, FALSE
);
2086 codeview_add_variable(msc_dbg
, compiland
, sym
->data_v3
.name
,
2087 sym
->data_v3
.segment
, sym
->data_v3
.offset
, sym
->data_v3
.symtype
,
2088 sym
->generic
.id
== S_LDATA_V3
, FALSE
, FALSE
);
2091 /* variables with thread storage */
2094 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->thread_v1
.p_name
),
2095 sym
->thread_v1
.segment
, sym
->thread_v1
.offset
, sym
->thread_v1
.symtype
,
2096 sym
->generic
.id
== S_LTHREAD_V1
, TRUE
, FALSE
);
2100 codeview_add_variable(msc_dbg
, compiland
, terminate_string(&sym
->thread_v2
.p_name
),
2101 sym
->thread_v2
.segment
, sym
->thread_v2
.offset
, sym
->thread_v2
.symtype
,
2102 sym
->generic
.id
== S_LTHREAD_V2
, TRUE
, FALSE
);
2106 codeview_add_variable(msc_dbg
, compiland
, sym
->thread_v3
.name
,
2107 sym
->thread_v3
.segment
, sym
->thread_v3
.offset
, sym
->thread_v3
.symtype
,
2108 sym
->generic
.id
== S_LTHREAD_V3
, TRUE
, FALSE
);
2112 * These are special, in that they are always followed by an
2113 * additional length-prefixed string which is *not* included
2114 * into the symbol length count. We need to skip it.
2119 length
+= (((const char*)sym
)[length
] + 1 + 3) & ~3;
2122 msc_dbg
->module
->sortlist_valid
= TRUE
;
2124 msc_dbg
->module
->sortlist_valid
= FALSE
;
2128 /*========================================================================
2132 static void* pdb_jg_read(const struct PDB_JG_HEADER
* pdb
, const WORD
* block_list
,
2138 if (!size
) return NULL
;
2140 num_blocks
= (size
+ pdb
->block_size
- 1) / pdb
->block_size
;
2141 buffer
= HeapAlloc(GetProcessHeap(), 0, num_blocks
* pdb
->block_size
);
2143 for (i
= 0; i
< num_blocks
; i
++)
2144 memcpy(buffer
+ i
* pdb
->block_size
,
2145 (const char*)pdb
+ block_list
[i
] * pdb
->block_size
, pdb
->block_size
);
2150 static void* pdb_ds_read(const struct PDB_DS_HEADER
* pdb
, const DWORD
* block_list
,
2156 if (!size
) return NULL
;
2158 num_blocks
= (size
+ pdb
->block_size
- 1) / pdb
->block_size
;
2159 buffer
= HeapAlloc(GetProcessHeap(), 0, num_blocks
* pdb
->block_size
);
2161 for (i
= 0; i
< num_blocks
; i
++)
2162 memcpy(buffer
+ i
* pdb
->block_size
,
2163 (const char*)pdb
+ block_list
[i
] * pdb
->block_size
, pdb
->block_size
);
2168 static void* pdb_read_jg_file(const struct PDB_JG_HEADER
* pdb
,
2169 const struct PDB_JG_TOC
* toc
, DWORD file_nr
)
2171 const WORD
* block_list
;
2174 if (!toc
|| file_nr
>= toc
->num_files
) return NULL
;
2176 block_list
= (const WORD
*) &toc
->file
[toc
->num_files
];
2177 for (i
= 0; i
< file_nr
; i
++)
2178 block_list
+= (toc
->file
[i
].size
+ pdb
->block_size
- 1) / pdb
->block_size
;
2180 return pdb_jg_read(pdb
, block_list
, toc
->file
[file_nr
].size
);
2183 static void* pdb_read_ds_file(const struct PDB_DS_HEADER
* pdb
,
2184 const struct PDB_DS_TOC
* toc
, DWORD file_nr
)
2186 const DWORD
* block_list
;
2189 if (!toc
|| file_nr
>= toc
->num_files
) return NULL
;
2190 if (toc
->file_size
[file_nr
] == 0 || toc
->file_size
[file_nr
] == 0xFFFFFFFF) return NULL
;
2192 block_list
= &toc
->file_size
[toc
->num_files
];
2193 for (i
= 0; i
< file_nr
; i
++)
2194 block_list
+= (toc
->file_size
[i
] + pdb
->block_size
- 1) / pdb
->block_size
;
2196 return pdb_ds_read(pdb
, block_list
, toc
->file_size
[file_nr
]);
2199 static void* pdb_read_file(const struct pdb_file_info
* pdb_file
,
2202 switch (pdb_file
->kind
)
2205 return pdb_read_jg_file((const struct PDB_JG_HEADER
*)pdb_file
->image
,
2206 pdb_file
->u
.jg
.toc
, file_nr
);
2208 return pdb_read_ds_file((const struct PDB_DS_HEADER
*)pdb_file
->image
,
2209 pdb_file
->u
.ds
.toc
, file_nr
);
2214 static unsigned pdb_get_file_size(const struct pdb_file_info
* pdb_file
, DWORD file_nr
)
2216 switch (pdb_file
->kind
)
2218 case PDB_JG
: return pdb_file
->u
.jg
.toc
->file
[file_nr
].size
;
2219 case PDB_DS
: return pdb_file
->u
.ds
.toc
->file_size
[file_nr
];
2224 static void pdb_free(void* buffer
)
2226 HeapFree(GetProcessHeap(), 0, buffer
);
2229 static void pdb_free_file(struct pdb_file_info
* pdb_file
)
2231 switch (pdb_file
->kind
)
2234 pdb_free(pdb_file
->u
.jg
.toc
);
2235 pdb_file
->u
.jg
.toc
= NULL
;
2238 pdb_free(pdb_file
->u
.ds
.toc
);
2239 pdb_file
->u
.ds
.toc
= NULL
;
2242 HeapFree(GetProcessHeap(), 0, pdb_file
->stream_dict
);
2245 static void pdb_load_stream_name_table(struct pdb_file_info
* pdb_file
, const char* str
, unsigned cb
)
2253 pdw
= (DWORD
*)(str
+ cb
);
2257 pdb_file
->stream_dict
= HeapAlloc(GetProcessHeap(), 0, (numok
+ 1) * sizeof(struct pdb_stream_name
) + cb
);
2258 if (!pdb_file
->stream_dict
) return;
2259 cpstr
= (char*)(pdb_file
->stream_dict
+ numok
+ 1);
2260 memcpy(cpstr
, str
, cb
);
2262 /* bitfield: first dword is len (in dword), then data */
2264 pdw
+= *ok_bits
++ + 1;
2267 FIXME("unexpected value\n");
2271 for (i
= j
= 0; i
< count
; i
++)
2273 if (ok_bits
[i
/ 32] & (1 << (i
% 32)))
2275 if (j
>= numok
) break;
2276 pdb_file
->stream_dict
[j
].name
= &cpstr
[*pdw
++];
2277 pdb_file
->stream_dict
[j
].index
= *pdw
++;
2282 pdb_file
->stream_dict
[numok
].name
= NULL
;
2283 pdb_file
->fpoext_stream
= -1;
2286 static unsigned pdb_get_stream_by_name(const struct pdb_file_info
* pdb_file
, const char* name
)
2288 struct pdb_stream_name
* psn
;
2290 for (psn
= pdb_file
->stream_dict
; psn
&& psn
->name
; psn
++)
2292 if (!strcmp(psn
->name
, name
)) return psn
->index
;
2297 static void* pdb_read_strings(const struct pdb_file_info
* pdb_file
)
2302 idx
= pdb_get_stream_by_name(pdb_file
, "/names");
2305 ret
= pdb_read_file( pdb_file
, idx
);
2306 if (ret
&& *(const DWORD
*)ret
== 0xeffeeffe) return ret
;
2309 WARN("string table not found\n");
2313 static void pdb_module_remove(struct process
* pcsn
, struct module_format
* modfmt
)
2317 for (i
= 0; i
< modfmt
->u
.pdb_info
->used_subfiles
; i
++)
2319 pdb_free_file(&modfmt
->u
.pdb_info
->pdb_files
[i
]);
2320 if (modfmt
->u
.pdb_info
->pdb_files
[i
].image
)
2321 UnmapViewOfFile(modfmt
->u
.pdb_info
->pdb_files
[i
].image
);
2322 if (modfmt
->u
.pdb_info
->pdb_files
[i
].hMap
)
2323 CloseHandle(modfmt
->u
.pdb_info
->pdb_files
[i
].hMap
);
2325 HeapFree(GetProcessHeap(), 0, modfmt
);
2328 static void pdb_convert_types_header(PDB_TYPES
* types
, const BYTE
* image
)
2330 memset(types
, 0, sizeof(PDB_TYPES
));
2333 if (*(const DWORD
*)image
< 19960000) /* FIXME: correct version? */
2335 /* Old version of the types record header */
2336 const PDB_TYPES_OLD
* old
= (const PDB_TYPES_OLD
*)image
;
2337 types
->version
= old
->version
;
2338 types
->type_offset
= sizeof(PDB_TYPES_OLD
);
2339 types
->type_size
= old
->type_size
;
2340 types
->first_index
= old
->first_index
;
2341 types
->last_index
= old
->last_index
;
2342 types
->file
= old
->file
;
2346 /* New version of the types record header */
2347 *types
= *(const PDB_TYPES
*)image
;
2351 static void pdb_convert_symbols_header(PDB_SYMBOLS
* symbols
,
2352 int* header_size
, const BYTE
* image
)
2354 memset(symbols
, 0, sizeof(PDB_SYMBOLS
));
2357 if (*(const DWORD
*)image
!= 0xffffffff)
2359 /* Old version of the symbols record header */
2360 const PDB_SYMBOLS_OLD
* old
= (const PDB_SYMBOLS_OLD
*)image
;
2361 symbols
->version
= 0;
2362 symbols
->module_size
= old
->module_size
;
2363 symbols
->offset_size
= old
->offset_size
;
2364 symbols
->hash_size
= old
->hash_size
;
2365 symbols
->srcmodule_size
= old
->srcmodule_size
;
2366 symbols
->pdbimport_size
= 0;
2367 symbols
->hash1_file
= old
->hash1_file
;
2368 symbols
->hash2_file
= old
->hash2_file
;
2369 symbols
->gsym_file
= old
->gsym_file
;
2371 *header_size
= sizeof(PDB_SYMBOLS_OLD
);
2375 /* New version of the symbols record header */
2376 *symbols
= *(const PDB_SYMBOLS
*)image
;
2377 *header_size
= sizeof(PDB_SYMBOLS
);
2381 static void pdb_convert_symbol_file(const PDB_SYMBOLS
* symbols
,
2382 PDB_SYMBOL_FILE_EX
* sfile
,
2383 unsigned* size
, const void* image
)
2386 if (symbols
->version
< 19970000)
2388 const PDB_SYMBOL_FILE
*sym_file
= image
;
2389 memset(sfile
, 0, sizeof(*sfile
));
2390 sfile
->file
= sym_file
->file
;
2391 sfile
->range
.index
= sym_file
->range
.index
;
2392 sfile
->symbol_size
= sym_file
->symbol_size
;
2393 sfile
->lineno_size
= sym_file
->lineno_size
;
2394 *size
= sizeof(PDB_SYMBOL_FILE
) - 1;
2398 memcpy(sfile
, image
, sizeof(PDB_SYMBOL_FILE_EX
));
2399 *size
= sizeof(PDB_SYMBOL_FILE_EX
) - 1;
2403 static HANDLE
map_pdb_file(const struct process
* pcs
,
2404 const struct pdb_lookup
* lookup
,
2405 struct module
* module
)
2407 HANDLE hFile
, hMap
= NULL
;
2408 char dbg_file_path
[MAX_PATH
];
2411 switch (lookup
->kind
)
2414 ret
= path_find_symbol_file(pcs
, lookup
->filename
, NULL
, lookup
->timestamp
,
2415 lookup
->age
, dbg_file_path
, &module
->module
.PdbUnmatched
);
2418 ret
= path_find_symbol_file(pcs
, lookup
->filename
, &lookup
->guid
, 0,
2419 lookup
->age
, dbg_file_path
, &module
->module
.PdbUnmatched
);
2424 WARN("\tCouldn't find %s\n", lookup
->filename
);
2427 if ((hFile
= CreateFileA(dbg_file_path
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
2428 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
)) != INVALID_HANDLE_VALUE
)
2430 hMap
= CreateFileMappingW(hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
2436 static void pdb_process_types(const struct msc_debug_info
* msc_dbg
,
2437 const struct pdb_file_info
* pdb_file
)
2439 BYTE
* types_image
= NULL
;
2441 types_image
= pdb_read_file(pdb_file
, 2);
2445 struct codeview_type_parse ctp
;
2450 pdb_convert_types_header(&types
, types_image
);
2452 /* Check for unknown versions */
2453 switch (types
.version
)
2455 case 19950410: /* VC 4.0 */
2457 case 19961031: /* VC 5.0 / 6.0 */
2458 case 19990903: /* VC 7.0 */
2459 case 20040203: /* VC 8.0 */
2462 ERR("-Unknown type info version %d\n", types
.version
);
2465 ctp
.module
= msc_dbg
->module
;
2466 /* reconstruct the types offset...
2467 * FIXME: maybe it's present in the newest PDB_TYPES structures
2469 total
= types
.last_index
- types
.first_index
+ 1;
2470 offset
= HeapAlloc(GetProcessHeap(), 0, sizeof(DWORD
) * total
);
2471 ctp
.table
= ptr
= types_image
+ types
.type_offset
;
2473 while (ptr
< ctp
.table
+ types
.type_size
&& ctp
.num
< total
)
2475 offset
[ctp
.num
++] = ptr
- ctp
.table
;
2476 ptr
+= ((const union codeview_type
*)ptr
)->generic
.len
+ 2;
2478 ctp
.offset
= offset
;
2480 /* Read type table */
2481 codeview_parse_type_table(&ctp
);
2482 HeapFree(GetProcessHeap(), 0, offset
);
2483 pdb_free(types_image
);
2487 static const char PDB_JG_IDENT
[] = "Microsoft C/C++ program database 2.00\r\n\032JG\0";
2488 static const char PDB_DS_IDENT
[] = "Microsoft C/C++ MSF 7.00\r\n\032DS\0";
2490 /******************************************************************
2493 * Tries to load a pdb file
2494 * 'matched' is filled with the number of correct matches for this file:
2495 * - age counts for one
2496 * - timestamp or guid depending on kind counts for one
2497 * a wrong kind of file returns FALSE (FIXME ?)
2499 static BOOL
pdb_init(const struct pdb_lookup
* pdb_lookup
, struct pdb_file_info
* pdb_file
,
2500 const char* image
, unsigned* matched
)
2504 /* check the file header, and if ok, load the TOC */
2505 TRACE("PDB(%s): %.40s\n", pdb_lookup
->filename
, debugstr_an(image
, 40));
2508 if (!memcmp(image
, PDB_JG_IDENT
, sizeof(PDB_JG_IDENT
)))
2510 const struct PDB_JG_HEADER
* pdb
= (const struct PDB_JG_HEADER
*)image
;
2511 struct PDB_JG_ROOT
* root
;
2513 pdb_file
->u
.jg
.toc
= pdb_jg_read(pdb
, pdb
->toc_block
, pdb
->toc
.size
);
2514 root
= pdb_read_jg_file(pdb
, pdb_file
->u
.jg
.toc
, 1);
2517 ERR("-Unable to get root from .PDB in %s\n", pdb_lookup
->filename
);
2520 switch (root
->Version
)
2522 case 19950623: /* VC 4.0 */
2524 case 19960307: /* VC 5.0 */
2525 case 19970604: /* VC 6.0 */
2528 ERR("-Unknown root block version %d\n", root
->Version
);
2530 if (pdb_lookup
->kind
!= PDB_JG
)
2532 WARN("Found %s, but wrong PDB kind\n", pdb_lookup
->filename
);
2536 pdb_file
->kind
= PDB_JG
;
2537 pdb_file
->u
.jg
.timestamp
= root
->TimeDateStamp
;
2538 pdb_file
->age
= root
->Age
;
2539 if (root
->TimeDateStamp
== pdb_lookup
->timestamp
) (*matched
)++;
2540 else WARN("Found %s, but wrong signature: %08x %08x\n",
2541 pdb_lookup
->filename
, root
->TimeDateStamp
, pdb_lookup
->timestamp
);
2542 if (root
->Age
== pdb_lookup
->age
) (*matched
)++;
2543 else WARN("Found %s, but wrong age: %08x %08x\n",
2544 pdb_lookup
->filename
, root
->Age
, pdb_lookup
->age
);
2545 TRACE("found JG for %s: age=%x timestamp=%x\n",
2546 pdb_lookup
->filename
, root
->Age
, root
->TimeDateStamp
);
2547 pdb_load_stream_name_table(pdb_file
, &root
->names
[0], root
->cbNames
);
2551 else if (!memcmp(image
, PDB_DS_IDENT
, sizeof(PDB_DS_IDENT
)))
2553 const struct PDB_DS_HEADER
* pdb
= (const struct PDB_DS_HEADER
*)image
;
2554 struct PDB_DS_ROOT
* root
;
2556 pdb_file
->u
.ds
.toc
=
2558 (const DWORD
*)((const char*)pdb
+ pdb
->toc_page
* pdb
->block_size
),
2560 root
= pdb_read_ds_file(pdb
, pdb_file
->u
.ds
.toc
, 1);
2563 ERR("-Unable to get root from .PDB in %s\n", pdb_lookup
->filename
);
2566 switch (root
->Version
)
2571 ERR("-Unknown root block version %d\n", root
->Version
);
2573 pdb_file
->kind
= PDB_DS
;
2574 pdb_file
->u
.ds
.guid
= root
->guid
;
2575 pdb_file
->age
= root
->Age
;
2576 if (!memcmp(&root
->guid
, &pdb_lookup
->guid
, sizeof(GUID
))) (*matched
)++;
2577 else WARN("Found %s, but wrong GUID: %s %s\n",
2578 pdb_lookup
->filename
, debugstr_guid(&root
->guid
),
2579 debugstr_guid(&pdb_lookup
->guid
));
2580 if (root
->Age
== pdb_lookup
->age
) (*matched
)++;
2581 else WARN("Found %s, but wrong age: %08x %08x\n",
2582 pdb_lookup
->filename
, root
->Age
, pdb_lookup
->age
);
2583 TRACE("found DS for %s: age=%x guid=%s\n",
2584 pdb_lookup
->filename
, root
->Age
, debugstr_guid(&root
->guid
));
2585 pdb_load_stream_name_table(pdb_file
, &root
->names
[0], root
->cbNames
);
2590 if (0) /* some tool to dump the internal files from a PDB file */
2594 switch (pdb_file
->kind
)
2596 case PDB_JG
: num_files
= pdb_file
->u
.jg
.toc
->num_files
; break;
2597 case PDB_DS
: num_files
= pdb_file
->u
.ds
.toc
->num_files
; break;
2600 for (i
= 1; i
< num_files
; i
++)
2602 unsigned char* x
= pdb_read_file(pdb_file
, i
);
2603 FIXME("********************** [%u]: size=%08x\n",
2604 i
, pdb_get_file_size(pdb_file
, i
));
2605 dump(x
, pdb_get_file_size(pdb_file
, i
));
2612 static BOOL
pdb_process_internal(const struct process
* pcs
,
2613 const struct msc_debug_info
* msc_dbg
,
2614 const struct pdb_lookup
* pdb_lookup
,
2615 struct pdb_module_info
* pdb_module_info
,
2616 unsigned module_index
);
2618 static void pdb_process_symbol_imports(const struct process
* pcs
,
2619 const struct msc_debug_info
* msc_dbg
,
2620 const PDB_SYMBOLS
* symbols
,
2621 const void* symbols_image
,
2623 const struct pdb_lookup
* pdb_lookup
,
2624 struct pdb_module_info
* pdb_module_info
,
2625 unsigned module_index
)
2627 if (module_index
== -1 && symbols
&& symbols
->pdbimport_size
)
2629 const PDB_SYMBOL_IMPORT
*imp
;
2634 struct pdb_file_info sf0
= pdb_module_info
->pdb_files
[0];
2636 imp
= (const PDB_SYMBOL_IMPORT
*)((const char*)symbols_image
+ sizeof(PDB_SYMBOLS
) +
2637 symbols
->module_size
+ symbols
->offset_size
+
2638 symbols
->hash_size
+ symbols
->srcmodule_size
);
2640 last
= (const char*)imp
+ symbols
->pdbimport_size
;
2641 while (imp
< (const PDB_SYMBOL_IMPORT
*)last
)
2643 ptr
= (const char*)imp
+ sizeof(*imp
) + strlen(imp
->filename
);
2644 if (i
>= CV_MAX_MODULES
) FIXME("Out of bounds!!!\n");
2645 if (!strcasecmp(pdb_lookup
->filename
, imp
->filename
))
2647 if (module_index
!= -1) FIXME("Twice the entry\n");
2648 else module_index
= i
;
2649 pdb_module_info
->pdb_files
[i
] = sf0
;
2653 struct pdb_lookup imp_pdb_lookup
;
2655 /* FIXME: this is an import of a JG PDB file
2656 * how's a DS PDB handled ?
2658 imp_pdb_lookup
.filename
= imp
->filename
;
2659 imp_pdb_lookup
.kind
= PDB_JG
;
2660 imp_pdb_lookup
.timestamp
= imp
->TimeDateStamp
;
2661 imp_pdb_lookup
.age
= imp
->Age
;
2662 TRACE("got for %s: age=%u ts=%x\n",
2663 imp
->filename
, imp
->Age
, imp
->TimeDateStamp
);
2664 pdb_process_internal(pcs
, msc_dbg
, &imp_pdb_lookup
, pdb_module_info
, i
);
2667 imp
= (const PDB_SYMBOL_IMPORT
*)((const char*)first
+ ((ptr
- (const char*)first
+ strlen(ptr
) + 1 + 3) & ~3));
2669 pdb_module_info
->used_subfiles
= i
;
2671 if (module_index
== -1)
2674 pdb_module_info
->used_subfiles
= 1;
2676 cv_current_module
= &cv_zmodules
[module_index
];
2677 if (cv_current_module
->allowed
) FIXME("Already allowed??\n");
2678 cv_current_module
->allowed
= TRUE
;
2681 static BOOL
pdb_process_internal(const struct process
* pcs
,
2682 const struct msc_debug_info
* msc_dbg
,
2683 const struct pdb_lookup
* pdb_lookup
,
2684 struct pdb_module_info
* pdb_module_info
,
2685 unsigned module_index
)
2689 BYTE
* symbols_image
= NULL
;
2690 char* files_image
= NULL
;
2691 DWORD files_size
= 0;
2693 struct pdb_file_info
* pdb_file
;
2695 TRACE("Processing PDB file %s\n", pdb_lookup
->filename
);
2697 pdb_file
= &pdb_module_info
->pdb_files
[module_index
== -1 ? 0 : module_index
];
2698 /* Open and map() .PDB file */
2699 if ((hMap
= map_pdb_file(pcs
, pdb_lookup
, msc_dbg
->module
)) == NULL
||
2700 ((image
= MapViewOfFile(hMap
, FILE_MAP_READ
, 0, 0, 0)) == NULL
))
2702 WARN("Unable to open .PDB file: %s\n", pdb_lookup
->filename
);
2706 if (!pdb_init(pdb_lookup
, pdb_file
, image
, &matched
) || matched
!= 2)
2709 UnmapViewOfFile(image
);
2713 pdb_file
->hMap
= hMap
;
2714 pdb_file
->image
= image
;
2715 symbols_image
= pdb_read_file(pdb_file
, 3);
2718 PDB_SYMBOLS symbols
;
2722 int header_size
= 0;
2723 PDB_STREAM_INDEXES
* psi
;
2725 pdb_convert_symbols_header(&symbols
, &header_size
, symbols_image
);
2726 switch (symbols
.version
)
2728 case 0: /* VC 4.0 */
2729 case 19960307: /* VC 5.0 */
2730 case 19970606: /* VC 6.0 */
2734 ERR("-Unknown symbol info version %d %08x\n",
2735 symbols
.version
, symbols
.version
);
2738 switch (symbols
.stream_index_size
)
2741 case sizeof(PDB_STREAM_INDEXES_OLD
):
2742 /* no fpo ext stream in this case */
2744 case sizeof(PDB_STREAM_INDEXES
):
2745 psi
= (PDB_STREAM_INDEXES
*)((const char*)symbols_image
+ sizeof(PDB_SYMBOLS
) +
2746 symbols
.module_size
+ symbols
.offset_size
+
2747 symbols
.hash_size
+ symbols
.srcmodule_size
+
2748 symbols
.pdbimport_size
+ symbols
.unknown2_size
);
2749 pdb_file
->fpoext_stream
= psi
->FPO_EXT
;
2752 FIXME("Unknown PDB_STREAM_INDEXES size (%d)\n", symbols
.stream_index_size
);
2755 files_image
= pdb_read_strings(pdb_file
);
2756 if (files_image
) files_size
= *(const DWORD
*)(files_image
+ 8);
2758 pdb_process_symbol_imports(pcs
, msc_dbg
, &symbols
, symbols_image
, image
,
2759 pdb_lookup
, pdb_module_info
, module_index
);
2760 pdb_process_types(msc_dbg
, pdb_file
);
2762 /* Read global symbol table */
2763 globalimage
= pdb_read_file(pdb_file
, symbols
.gsym_file
);
2766 codeview_snarf(msc_dbg
, globalimage
, 0,
2767 pdb_get_file_size(pdb_file
, symbols
.gsym_file
), FALSE
);
2770 /* Read per-module symbols' tables */
2771 file
= symbols_image
+ header_size
;
2772 while (file
- symbols_image
< header_size
+ symbols
.module_size
)
2774 PDB_SYMBOL_FILE_EX sfile
;
2775 const char* file_name
;
2778 HeapValidate(GetProcessHeap(), 0, NULL
);
2779 pdb_convert_symbol_file(&symbols
, &sfile
, &size
, file
);
2781 modimage
= pdb_read_file(pdb_file
, sfile
.file
);
2784 if (sfile
.symbol_size
)
2785 codeview_snarf(msc_dbg
, modimage
, sizeof(DWORD
),
2786 sfile
.symbol_size
, TRUE
);
2788 if (sfile
.lineno_size
)
2789 codeview_snarf_linetab(msc_dbg
,
2790 modimage
+ sfile
.symbol_size
,
2792 pdb_file
->kind
== PDB_JG
);
2794 codeview_snarf_linetab2(msc_dbg
, modimage
+ sfile
.symbol_size
+ sfile
.lineno_size
,
2795 pdb_get_file_size(pdb_file
, sfile
.file
) - sfile
.symbol_size
- sfile
.lineno_size
,
2796 files_image
+ 12, files_size
);
2800 file_name
= (const char*)file
+ size
;
2801 file_name
+= strlen(file_name
) + 1;
2802 file
= (BYTE
*)((DWORD_PTR
)(file_name
+ strlen(file_name
) + 1 + 3) & ~3);
2804 /* finish the remaining public and global information */
2807 codeview_snarf_public(msc_dbg
, globalimage
, 0,
2808 pdb_get_file_size(pdb_file
, symbols
.gsym_file
));
2809 pdb_free(globalimage
);
2813 pdb_process_symbol_imports(pcs
, msc_dbg
, NULL
, NULL
, image
,
2814 pdb_lookup
, pdb_module_info
, module_index
);
2816 pdb_free(symbols_image
);
2817 pdb_free(files_image
);
2822 static BOOL
pdb_process_file(const struct process
* pcs
,
2823 const struct msc_debug_info
* msc_dbg
,
2824 struct pdb_lookup
* pdb_lookup
)
2827 struct module_format
* modfmt
;
2828 struct pdb_module_info
* pdb_module_info
;
2830 modfmt
= HeapAlloc(GetProcessHeap(), 0,
2831 sizeof(struct module_format
) + sizeof(struct pdb_module_info
));
2832 if (!modfmt
) return FALSE
;
2834 pdb_module_info
= (void*)(modfmt
+ 1);
2835 msc_dbg
->module
->format_info
[DFI_PDB
] = modfmt
;
2836 modfmt
->module
= msc_dbg
->module
;
2837 modfmt
->remove
= pdb_module_remove
;
2838 modfmt
->loc_compute
= NULL
;
2839 modfmt
->u
.pdb_info
= pdb_module_info
;
2841 memset(cv_zmodules
, 0, sizeof(cv_zmodules
));
2842 codeview_init_basic_types(msc_dbg
->module
);
2843 ret
= pdb_process_internal(pcs
, msc_dbg
, pdb_lookup
,
2844 msc_dbg
->module
->format_info
[DFI_PDB
]->u
.pdb_info
, -1);
2845 codeview_clear_type_table();
2848 struct pdb_module_info
* pdb_info
= msc_dbg
->module
->format_info
[DFI_PDB
]->u
.pdb_info
;
2849 msc_dbg
->module
->module
.SymType
= SymCv
;
2850 if (pdb_info
->pdb_files
[0].kind
== PDB_JG
)
2851 msc_dbg
->module
->module
.PdbSig
= pdb_info
->pdb_files
[0].u
.jg
.timestamp
;
2853 msc_dbg
->module
->module
.PdbSig70
= pdb_info
->pdb_files
[0].u
.ds
.guid
;
2854 msc_dbg
->module
->module
.PdbAge
= pdb_info
->pdb_files
[0].age
;
2855 MultiByteToWideChar(CP_ACP
, 0, pdb_lookup
->filename
, -1,
2856 msc_dbg
->module
->module
.LoadedPdbName
,
2857 sizeof(msc_dbg
->module
->module
.LoadedPdbName
) / sizeof(WCHAR
));
2858 /* FIXME: we could have a finer grain here */
2859 msc_dbg
->module
->module
.LineNumbers
= TRUE
;
2860 msc_dbg
->module
->module
.GlobalSymbols
= TRUE
;
2861 msc_dbg
->module
->module
.TypeInfo
= TRUE
;
2862 msc_dbg
->module
->module
.SourceIndexed
= TRUE
;
2863 msc_dbg
->module
->module
.Publics
= TRUE
;
2867 msc_dbg
->module
->format_info
[DFI_PDB
] = NULL
;
2868 HeapFree(GetProcessHeap(), 0, modfmt
);
2873 BOOL
pdb_fetch_file_info(const struct pdb_lookup
* pdb_lookup
, unsigned* matched
)
2875 HANDLE hFile
, hMap
= NULL
;
2878 struct pdb_file_info pdb_file
;
2880 if ((hFile
= CreateFileA(pdb_lookup
->filename
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
2881 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
)) == INVALID_HANDLE_VALUE
||
2882 ((hMap
= CreateFileMappingW(hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
)) == NULL
) ||
2883 ((image
= MapViewOfFile(hMap
, FILE_MAP_READ
, 0, 0, 0)) == NULL
))
2885 WARN("Unable to open .PDB file: %s\n", pdb_lookup
->filename
);
2890 ret
= pdb_init(pdb_lookup
, &pdb_file
, image
, matched
);
2891 pdb_free_file(&pdb_file
);
2894 if (image
) UnmapViewOfFile(image
);
2895 if (hMap
) CloseHandle(hMap
);
2896 if (hFile
!= INVALID_HANDLE_VALUE
) CloseHandle(hFile
);
2901 /*========================================================================
2902 * FPO unwinding code
2905 /* Stack unwinding is based on postfixed operations.
2906 * Let's define our Postfix EValuator
2908 #define PEV_MAX_LEN 32
2911 struct cpu_stack_walk
* csw
;
2913 struct vector stack
;
2915 struct hash_table values
;
2922 struct hash_table_elt elt
;
2925 #define PEV_ERROR(pev, msg) snprintf((pev)->error, sizeof((pev)->error), "%s", (msg))
2926 #define PEV_ERROR1(pev, msg, pmt) snprintf((pev)->error, sizeof((pev)->error), (msg), (pmt))
2929 static void pev_dump_stack(struct pevaluator
* pev
)
2932 FIXME("stack #%d\n", pev
->stk_index
);
2933 for (i
= 0; i
< pev
->stk_index
; i
++)
2935 FIXME("\t%d) %s\n", i
, *(char**)vector_at(&pev
->stack
, i
));
2940 /* get the value out of an operand (variable or literal) */
2941 static BOOL
pev_get_val(struct pevaluator
* pev
, const char* str
, DWORD_PTR
* val
)
2944 struct hash_table_iter hti
;
2951 hash_table_iter_init(&pev
->values
, &hti
, str
);
2952 while ((ptr
= hash_table_iter_up(&hti
)))
2954 if (!strcmp(GET_ENTRY(ptr
, struct zvalue
, elt
)->elt
.name
, str
))
2956 *val
= GET_ENTRY(ptr
, struct zvalue
, elt
)->value
;
2960 return PEV_ERROR1(pev
, "get_zvalue: no value found (%s)", str
);
2962 *val
= strtol(str
, &n
, 10);
2963 if (n
== str
|| *n
!= '\0')
2964 return PEV_ERROR1(pev
, "get_val: not a literal (%s)", str
);
2969 /* push an operand onto the stack */
2970 static BOOL
pev_push(struct pevaluator
* pev
, const char* elt
)
2973 if (pev
->stk_index
< vector_length(&pev
->stack
))
2974 at
= vector_at(&pev
->stack
, pev
->stk_index
);
2976 at
= vector_add(&pev
->stack
, &pev
->pool
);
2977 if (!at
) return PEV_ERROR(pev
, "push: out of memory");
2978 *at
= pool_strdup(&pev
->pool
, elt
);
2983 /* pop an operand from the stack */
2984 static BOOL
pev_pop(struct pevaluator
* pev
, char* elt
)
2986 char** at
= vector_at(&pev
->stack
, --pev
->stk_index
);
2987 if (!at
) return PEV_ERROR(pev
, "pop: stack empty");
2992 /* pop an operand from the stack, and gets its value */
2993 static BOOL
pev_pop_val(struct pevaluator
* pev
, DWORD_PTR
* val
)
2995 char p
[PEV_MAX_LEN
];
2997 return pev_pop(pev
, p
) && pev_get_val(pev
, p
, val
);
3000 /* set var 'name' a new value (creates the var if it doesn't exist) */
3001 static BOOL
pev_set_value(struct pevaluator
* pev
, const char* name
, DWORD_PTR val
)
3003 struct hash_table_iter hti
;
3006 hash_table_iter_init(&pev
->values
, &hti
, name
);
3007 while ((ptr
= hash_table_iter_up(&hti
)))
3009 if (!strcmp(GET_ENTRY(ptr
, struct zvalue
, elt
)->elt
.name
, name
))
3011 GET_ENTRY(ptr
, struct zvalue
, elt
)->value
= val
;
3017 struct zvalue
* zv
= pool_alloc(&pev
->pool
, sizeof(*zv
));
3018 if (!zv
) return PEV_ERROR(pev
, "set_value: out of memory");
3021 zv
->elt
.name
= pool_strdup(&pev
->pool
, name
);
3022 hash_table_add(&pev
->values
, &zv
->elt
);
3027 /* execute a binary operand from the two top most values on the stack.
3028 * puts result on top of the stack */
3029 static BOOL
pev_binop(struct pevaluator
* pev
, char op
)
3031 char res
[PEV_MAX_LEN
];
3032 DWORD_PTR v1
, v2
, c
;
3034 if (!pev_pop_val(pev
, &v1
) || !pev_pop_val(pev
, &v2
)) return FALSE
;
3037 case '+': c
= v1
+ v2
; break;
3038 case '-': c
= v1
- v2
; break;
3039 case '*': c
= v1
* v2
; break;
3040 case '/': c
= v1
/ v2
; break;
3041 case '%': c
= v1
% v2
; break;
3042 default: return PEV_ERROR1(pev
, "binop: unknown op (%c)", op
);
3044 snprintf(res
, sizeof(res
), "%ld", c
);
3049 /* pops top most operand, dereference it, on pushes the result on top of the stack */
3050 static BOOL
pev_deref(struct pevaluator
* pev
)
3052 char res
[PEV_MAX_LEN
];
3055 if (!pev_pop_val(pev
, &v1
)) return FALSE
;
3056 if (!sw_read_mem(pev
->csw
, v1
, &v2
, sizeof(v2
)))
3057 return PEV_ERROR1(pev
, "deref: cannot read mem at %lx\n", v1
);
3058 snprintf(res
, sizeof(res
), "%ld", v2
);
3063 /* assign value to variable (from two top most operands) */
3064 static BOOL
pev_assign(struct pevaluator
* pev
)
3066 char p2
[PEV_MAX_LEN
];
3069 if (!pev_pop_val(pev
, &v1
) || !pev_pop(pev
, p2
)) return FALSE
;
3070 if (p2
[0] != '$') return PEV_ERROR1(pev
, "assign: %s isn't a variable", p2
);
3071 pev_set_value(pev
, p2
, v1
);
3076 /* initializes the postfix evaluator */
3077 static void pev_init(struct pevaluator
* pev
, struct cpu_stack_walk
* csw
,
3078 PDB_FPO_DATA
* fpoext
, struct pdb_cmd_pair
* cpair
)
3081 pool_init(&pev
->pool
, 512);
3082 vector_init(&pev
->stack
, sizeof(char*), 8);
3084 hash_table_init(&pev
->pool
, &pev
->values
, 8);
3085 pev
->error
[0] = '\0';
3086 for (; cpair
->name
; cpair
++)
3087 pev_set_value(pev
, cpair
->name
, *cpair
->pvalue
);
3088 pev_set_value(pev
, ".raSearchStart", fpoext
->start
);
3089 pev_set_value(pev
, ".cbLocals", fpoext
->locals_size
);
3090 pev_set_value(pev
, ".cbParams", fpoext
->params_size
);
3091 pev_set_value(pev
, ".cbSavedRegs", fpoext
->savedregs_size
);
3094 static BOOL
pev_free(struct pevaluator
* pev
, struct pdb_cmd_pair
* cpair
)
3098 if (cpair
) for (; cpair
->name
; cpair
++)
3100 if (pev_get_val(pev
, cpair
->name
, &val
))
3101 *cpair
->pvalue
= val
;
3103 pool_destroy(&pev
->pool
);
3107 static BOOL
pdb_parse_cmd_string(struct cpu_stack_walk
* csw
, PDB_FPO_DATA
* fpoext
,
3108 const char* cmd
, struct pdb_cmd_pair
* cpair
)
3110 char token
[PEV_MAX_LEN
];
3114 struct pevaluator pev
;
3116 pev_init(&pev
, csw
, fpoext
, cpair
);
3117 for (ptr
= cmd
; !over
; ptr
++)
3119 if (*ptr
== ' ' || (over
= *ptr
== '\0'))
3123 if (!strcmp(token
, "+") || !strcmp(token
, "-") || !strcmp(token
, "*") ||
3124 !strcmp(token
, "/") || !strcmp(token
, "%"))
3126 if (!pev_binop(&pev
, token
[0])) goto done
;
3128 else if (!strcmp(token
, "^"))
3130 if (!pev_deref(&pev
)) goto done
;
3132 else if (!strcmp(token
, "="))
3134 if (!pev_assign(&pev
)) goto done
;
3138 if (!pev_push(&pev
, token
)) goto done
;
3144 if (ptok
- token
>= PEV_MAX_LEN
- 1)
3146 PEV_ERROR1(&pev
, "parse: token too long (%s)", ptr
- (ptok
- token
));
3152 pev_free(&pev
, cpair
);
3155 FIXME("Couldn't evaluate %s => %s\n", wine_dbgstr_a(cmd
), pev
.error
);
3156 pev_free(&pev
, NULL
);
3160 BOOL
pdb_virtual_unwind(struct cpu_stack_walk
* csw
, DWORD_PTR ip
,
3161 CONTEXT
* context
, struct pdb_cmd_pair
* cpair
)
3163 struct module_pair pair
;
3164 struct pdb_module_info
* pdb_info
;
3165 PDB_FPO_DATA
* fpoext
;
3166 unsigned i
, size
, strsize
;
3170 if (!(pair
.pcs
= process_find_by_handle(csw
->hProcess
)) ||
3171 !(pair
.requested
= module_find_by_addr(pair
.pcs
, ip
, DMT_UNKNOWN
)) ||
3172 !module_get_debug(&pair
))
3174 if (!pair
.effective
->format_info
[DFI_PDB
]) return FALSE
;
3175 pdb_info
= pair
.effective
->format_info
[DFI_PDB
]->u
.pdb_info
;
3176 TRACE("searching %lx => %lx\n", ip
, ip
- (DWORD_PTR
)pair
.effective
->module
.BaseOfImage
);
3177 ip
-= (DWORD_PTR
)pair
.effective
->module
.BaseOfImage
;
3179 strbase
= pdb_read_strings(&pdb_info
->pdb_files
[0]);
3180 if (!strbase
) return FALSE
;
3181 strsize
= *(const DWORD
*)(strbase
+ 8);
3182 fpoext
= pdb_read_file(&pdb_info
->pdb_files
[0], pdb_info
->pdb_files
[0].fpoext_stream
);
3183 size
= pdb_get_file_size(&pdb_info
->pdb_files
[0], pdb_info
->pdb_files
[0].fpoext_stream
);
3184 if (fpoext
&& (size
% sizeof(*fpoext
)) == 0)
3186 size
/= sizeof(*fpoext
);
3187 for (i
= 0; i
< size
; i
++)
3189 if (fpoext
[i
].start
<= ip
&& ip
< fpoext
[i
].start
+ fpoext
[i
].func_size
)
3191 TRACE("\t%08x %08x %8x %8x %4x %4x %4x %08x %s\n",
3192 fpoext
[i
].start
, fpoext
[i
].func_size
, fpoext
[i
].locals_size
,
3193 fpoext
[i
].params_size
, fpoext
[i
].maxstack_size
, fpoext
[i
].prolog_size
,
3194 fpoext
[i
].savedregs_size
, fpoext
[i
].flags
,
3195 fpoext
[i
].str_offset
< strsize
?
3196 wine_dbgstr_a(strbase
+ 12 + fpoext
[i
].str_offset
) : "<out of bounds>");
3197 if (fpoext
[i
].str_offset
< strsize
)
3198 ret
= pdb_parse_cmd_string(csw
, &fpoext
[i
], strbase
+ 12 + fpoext
[i
].str_offset
, cpair
);
3212 /*========================================================================
3213 * Process CodeView debug information.
3216 #define MAKESIG(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
3217 #define CODEVIEW_NB09_SIG MAKESIG('N','B','0','9')
3218 #define CODEVIEW_NB10_SIG MAKESIG('N','B','1','0')
3219 #define CODEVIEW_NB11_SIG MAKESIG('N','B','1','1')
3220 #define CODEVIEW_RSDS_SIG MAKESIG('R','S','D','S')
3222 static BOOL
codeview_process_info(const struct process
* pcs
,
3223 const struct msc_debug_info
* msc_dbg
)
3225 const DWORD
* signature
= (const DWORD
*)msc_dbg
->root
;
3227 struct pdb_lookup pdb_lookup
;
3229 TRACE("Processing signature %.4s\n", (const char*)signature
);
3233 case CODEVIEW_NB09_SIG
:
3234 case CODEVIEW_NB11_SIG
:
3236 const OMFSignature
* cv
= (const OMFSignature
*)msc_dbg
->root
;
3237 const OMFDirHeader
* hdr
= (const OMFDirHeader
*)(msc_dbg
->root
+ cv
->filepos
);
3238 const OMFDirEntry
* ent
;
3239 const OMFDirEntry
* prev
;
3240 const OMFDirEntry
* next
;
3243 codeview_init_basic_types(msc_dbg
->module
);
3245 for (i
= 0; i
< hdr
->cDir
; i
++)
3247 ent
= (const OMFDirEntry
*)((const BYTE
*)hdr
+ hdr
->cbDirHeader
+ i
* hdr
->cbDirEntry
);
3248 if (ent
->SubSection
== sstGlobalTypes
)
3250 const OMFGlobalTypes
* types
;
3251 struct codeview_type_parse ctp
;
3253 types
= (const OMFGlobalTypes
*)(msc_dbg
->root
+ ent
->lfo
);
3254 ctp
.module
= msc_dbg
->module
;
3255 ctp
.offset
= (const DWORD
*)(types
+ 1);
3256 ctp
.num
= types
->cTypes
;
3257 ctp
.table
= (const BYTE
*)(ctp
.offset
+ types
->cTypes
);
3259 cv_current_module
= &cv_zmodules
[0];
3260 if (cv_current_module
->allowed
) FIXME("Already allowed??\n");
3261 cv_current_module
->allowed
= TRUE
;
3263 codeview_parse_type_table(&ctp
);
3268 ent
= (const OMFDirEntry
*)((const BYTE
*)hdr
+ hdr
->cbDirHeader
);
3269 for (i
= 0; i
< hdr
->cDir
; i
++, ent
= next
)
3271 next
= (i
== hdr
->cDir
-1) ? NULL
:
3272 (const OMFDirEntry
*)((const BYTE
*)ent
+ hdr
->cbDirEntry
);
3273 prev
= (i
== 0) ? NULL
:
3274 (const OMFDirEntry
*)((const BYTE
*)ent
- hdr
->cbDirEntry
);
3276 if (ent
->SubSection
== sstAlignSym
)
3278 codeview_snarf(msc_dbg
, msc_dbg
->root
+ ent
->lfo
, sizeof(DWORD
),
3282 * Check the next and previous entry. If either is a
3283 * sstSrcModule, it contains the line number info for
3286 * FIXME: This is not a general solution!
3288 if (next
&& next
->iMod
== ent
->iMod
&& next
->SubSection
== sstSrcModule
)
3289 codeview_snarf_linetab(msc_dbg
, msc_dbg
->root
+ next
->lfo
,
3292 if (prev
&& prev
->iMod
== ent
->iMod
&& prev
->SubSection
== sstSrcModule
)
3293 codeview_snarf_linetab(msc_dbg
, msc_dbg
->root
+ prev
->lfo
,
3299 msc_dbg
->module
->module
.SymType
= SymCv
;
3300 /* FIXME: we could have a finer grain here */
3301 msc_dbg
->module
->module
.LineNumbers
= TRUE
;
3302 msc_dbg
->module
->module
.GlobalSymbols
= TRUE
;
3303 msc_dbg
->module
->module
.TypeInfo
= TRUE
;
3304 msc_dbg
->module
->module
.SourceIndexed
= TRUE
;
3305 msc_dbg
->module
->module
.Publics
= TRUE
;
3306 codeview_clear_type_table();
3311 case CODEVIEW_NB10_SIG
:
3313 const CODEVIEW_PDB_DATA
* pdb
= (const CODEVIEW_PDB_DATA
*)msc_dbg
->root
;
3314 pdb_lookup
.filename
= pdb
->name
;
3315 pdb_lookup
.kind
= PDB_JG
;
3316 pdb_lookup
.timestamp
= pdb
->timestamp
;
3317 pdb_lookup
.age
= pdb
->age
;
3318 ret
= pdb_process_file(pcs
, msc_dbg
, &pdb_lookup
);
3321 case CODEVIEW_RSDS_SIG
:
3323 const OMFSignatureRSDS
* rsds
= (const OMFSignatureRSDS
*)msc_dbg
->root
;
3325 TRACE("Got RSDS type of PDB file: guid=%s age=%08x name=%s\n",
3326 wine_dbgstr_guid(&rsds
->guid
), rsds
->age
, rsds
->name
);
3327 pdb_lookup
.filename
= rsds
->name
;
3328 pdb_lookup
.kind
= PDB_DS
;
3329 pdb_lookup
.guid
= rsds
->guid
;
3330 pdb_lookup
.age
= rsds
->age
;
3331 ret
= pdb_process_file(pcs
, msc_dbg
, &pdb_lookup
);
3335 ERR("Unknown CODEVIEW signature %08x in module %s\n",
3336 *signature
, debugstr_w(msc_dbg
->module
->module
.ModuleName
));
3341 msc_dbg
->module
->module
.CVSig
= *signature
;
3342 memcpy(msc_dbg
->module
->module
.CVData
, msc_dbg
->root
,
3343 sizeof(msc_dbg
->module
->module
.CVData
));
3348 /*========================================================================
3349 * Process debug directory.
3351 BOOL
pe_load_debug_directory(const struct process
* pcs
, struct module
* module
,
3352 const BYTE
* mapping
,
3353 const IMAGE_SECTION_HEADER
* sectp
, DWORD nsect
,
3354 const IMAGE_DEBUG_DIRECTORY
* dbg
, int nDbg
)
3358 struct msc_debug_info msc_dbg
;
3360 msc_dbg
.module
= module
;
3361 msc_dbg
.nsect
= nsect
;
3362 msc_dbg
.sectp
= sectp
;
3364 msc_dbg
.omapp
= NULL
;
3370 /* First, watch out for OMAP data */
3371 for (i
= 0; i
< nDbg
; i
++)
3373 if (dbg
[i
].Type
== IMAGE_DEBUG_TYPE_OMAP_FROM_SRC
)
3375 msc_dbg
.nomap
= dbg
[i
].SizeOfData
/ sizeof(OMAP_DATA
);
3376 msc_dbg
.omapp
= (const OMAP_DATA
*)(mapping
+ dbg
[i
].PointerToRawData
);
3381 /* Now, try to parse CodeView debug info */
3382 for (i
= 0; i
< nDbg
; i
++)
3384 if (dbg
[i
].Type
== IMAGE_DEBUG_TYPE_CODEVIEW
)
3386 msc_dbg
.root
= mapping
+ dbg
[i
].PointerToRawData
;
3387 if ((ret
= codeview_process_info(pcs
, &msc_dbg
))) goto done
;
3391 /* If not found, try to parse COFF debug info */
3392 for (i
= 0; i
< nDbg
; i
++)
3394 if (dbg
[i
].Type
== IMAGE_DEBUG_TYPE_COFF
)
3396 msc_dbg
.root
= mapping
+ dbg
[i
].PointerToRawData
;
3397 if ((ret
= coff_process_info(&msc_dbg
))) goto done
;
3401 /* FIXME: this should be supported... this is the debug information for
3402 * functions compiled without a frame pointer (FPO = frame pointer omission)
3403 * the associated data helps finding out the relevant information
3405 for (i
= 0; i
< nDbg
; i
++)
3406 if (dbg
[i
].Type
== IMAGE_DEBUG_TYPE_FPO
)
3407 FIXME("This guy has FPO information\n");
3411 #define FRAME_TRAP 1
3414 typedef struct _FPO_DATA
3416 DWORD ulOffStart
; /* offset 1st byte of function code */
3417 DWORD cbProcSize
; /* # bytes in function */
3418 DWORD cdwLocals
; /* # bytes in locals/4 */
3419 WORD cdwParams
; /* # bytes in params/4 */
3421 WORD cbProlog
: 8; /* # bytes in prolog */
3422 WORD cbRegs
: 3; /* # regs saved */
3423 WORD fHasSEH
: 1; /* TRUE if SEH in func */
3424 WORD fUseBP
: 1; /* TRUE if EBP has been allocated */
3425 WORD reserved
: 1; /* reserved for future use */
3426 WORD cbFrame
: 2; /* frame type */
3433 ERR("Got a page fault while loading symbols\n");