2 * File dbghelp_private.h - dbghelp internal definitions
4 * Copyright (C) 1995, Alexandre Julliard
5 * Copyright (C) 1996, Eric Youngdale.
6 * Copyright (C) 1999-2000, Ulrich Weigand.
7 * Copyright (C) 2004, Eric Pouech.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 /* #define USE_STATS */
36 struct pool
/* poor's man */
38 struct pool_arena
* first
;
42 void pool_init(struct pool
* a
, unsigned arena_size
);
43 void pool_destroy(struct pool
* a
);
44 void* pool_alloc(struct pool
* a
, unsigned len
);
45 /* void* pool_realloc(struct pool* a, void* p,
46 unsigned old_size, unsigned new_size); */
47 char* pool_strdup(struct pool
* a
, const char* str
);
58 void vector_init(struct vector
* v
, unsigned elt_sz
, unsigned bucket_sz
);
59 unsigned vector_length(const struct vector
* v
);
60 void* vector_at(const struct vector
* v
, unsigned pos
);
61 void* vector_add(struct vector
* v
, struct pool
* pool
);
62 /*void vector_pool_normalize(struct vector* v, struct pool* pool); */
63 void* vector_iter_up(const struct vector
* v
, void* elt
);
64 void* vector_iter_down(const struct vector
* v
, void* elt
);
69 struct hash_table_elt
* next
;
75 struct hash_table_elt
** buckets
;
78 void hash_table_init(struct pool
* pool
, struct hash_table
* ht
,
79 unsigned num_buckets
);
80 void hash_table_destroy(struct hash_table
* ht
);
81 void hash_table_add(struct hash_table
* ht
, struct hash_table_elt
* elt
);
82 void* hash_table_find(const struct hash_table
* ht
, const char* name
);
83 unsigned hash_table_hash(const char* name
, unsigned num_buckets
);
85 struct hash_table_iter
87 const struct hash_table
* ht
;
88 struct hash_table_elt
* element
;
93 void hash_table_iter_init(const struct hash_table
* ht
,
94 struct hash_table_iter
* hti
, const char* name
);
95 void* hash_table_iter_up(struct hash_table_iter
* hti
);
97 #define GET_ENTRY(__i, __t, __f) \
98 ((__t*)((char*)(__i) - (unsigned int)(&((__t*)0)->__f)))
101 extern unsigned dbghelp_options
;
102 /* some more Wine extensions */
103 #define SYMOPT_WINE_WITH_ELF_MODULES 0x40000000
113 struct hash_table_elt hash_elt
; /* if global symbol or type */
120 unsigned long address
;
122 struct symt
* container
; /* block, or func */
123 struct vector vchildren
; /* sub-blocks & local variables */
126 struct symt_compiland
130 struct vector vchildren
; /* global variables & functions */
136 struct hash_table_elt hash_elt
; /* if global symbol */
138 struct symt
* container
;
140 union /* depends on kind */
142 unsigned long address
; /* DataIs{Global, FileStatic} */
145 long offset
; /* DataIs{Member,Local,Param} in bits*/
146 unsigned long length
; /* DataIs{Member} in bits */
147 unsigned long reg_id
; /* DataIs{Local} (0 if frame relative) */
149 VARIANT value
; /* DataIsConstant */
156 struct hash_table_elt hash_elt
; /* if global symbol */
157 unsigned long address
;
158 struct symt
* container
; /* compiland */
159 struct symt
* type
; /* points to function_signature */
161 struct vector vlines
;
162 struct vector vchildren
; /* locals, params, blocks, start/end, labels */
165 struct symt_function_point
167 struct symt symt
; /* either SymTagFunctionDebugStart, SymTagFunctionDebugEnd, SymTagLabel */
168 struct symt_function
* parent
;
169 unsigned long offset
;
170 const char* name
; /* for labels */
176 struct hash_table_elt hash_elt
;
177 struct symt
* container
; /* compiland */
178 unsigned long address
;
180 unsigned in_code
: 1,
187 struct hash_table_elt hash_elt
;
188 struct symt
* container
; /* compiland */
189 unsigned long address
;
191 THUNK_ORDINAL ordinal
; /* FIXME: doesn't seem to be accessible */
200 struct symt
* basetype
;
206 struct hash_table_elt hash_elt
;
215 struct vector vchildren
;
218 struct symt_function_signature
221 struct symt
* rettype
;
222 struct vector vchildren
;
228 struct symt
* pointsto
;
234 struct hash_table_elt hash_elt
;
241 struct hash_table_elt hash_elt
;
244 struct vector vchildren
;
249 DMT_UNKNOWN
, /* for lookup, not actually used for a module */
250 DMT_ELF
, /* a real ELF shared module */
251 DMT_PE
, /* a native or builtin PE module */
256 IMAGEHLP_MODULE module
;
258 enum module_type type
;
259 struct elf_module_info
* elf_info
;
261 /* memory allocation pool */
266 struct symt_ht
** addr_sorttab
;
267 struct hash_table ht_symbols
;
270 struct hash_table ht_types
;
271 struct vector vtypes
;
274 unsigned sources_used
;
275 unsigned sources_alloc
;
281 struct process
* next
;
285 struct module
* lmodules
;
286 unsigned long dbg_hdr_addr
;
288 IMAGEHLP_STACK_FRAME ctx_frame
;
292 extern struct process
* process_find_by_handle(HANDLE hProcess
);
293 extern HANDLE hMsvcrt
;
296 extern BOOL
elf_load_debug_info(struct module
* module
);
297 extern struct module
*
298 elf_load_module(struct process
* pcs
, const char* name
);
299 extern BOOL
elf_read_wine_loader_dbg_info(struct process
* pcs
);
300 extern BOOL
elf_synchronize_module_list(struct process
* pcs
);
302 extern DWORD WINAPI
addr_to_linear(HANDLE hProcess
, HANDLE hThread
, ADDRESS
* addr
);
305 extern struct module
*
306 module_find_by_addr(const struct process
* pcs
, unsigned long addr
,
307 enum module_type type
);
308 extern struct module
*
309 module_find_by_name(const struct process
* pcs
,
310 const char* name
, enum module_type type
);
311 extern struct module
*
312 module_get_debug(const struct process
* pcs
, struct module
*);
313 extern struct module
*
314 module_new(struct process
* pcs
, const char* name
,
315 enum module_type type
, unsigned long addr
,
316 unsigned long size
, unsigned long stamp
,
317 unsigned long checksum
);
318 extern struct module
*
319 module_get_container(const struct process
* pcs
,
320 const struct module
* inner
);
321 extern struct module
*
322 module_get_containee(const struct process
* pcs
,
323 const struct module
* inner
);
324 extern void module_reset_debug_info(struct module
* module
);
325 extern BOOL
module_remove(struct process
* pcs
,
326 struct module
* module
);
328 extern BOOL
pe_load_debug_directory(const struct process
* pcs
,
329 struct module
* module
,
331 const IMAGE_SECTION_HEADER
* sectp
, DWORD nsect
,
332 const IMAGE_DEBUG_DIRECTORY
* dbg
, int nDbg
);
334 extern struct module
*
335 pe_load_module(struct process
* pcs
, char* name
,
336 HANDLE hFile
, DWORD base
, DWORD size
);
337 extern struct module
*
338 pe_load_module_from_pcs(struct process
* pcs
, const char* name
,
339 const char* mod_name
, DWORD base
, DWORD size
);
340 extern BOOL
pe_load_debug_info(const struct process
* pcs
,
341 struct module
* module
);
343 extern unsigned source_new(struct module
* module
, const char* source
);
344 extern const char* source_get(const struct module
* module
, unsigned idx
);
347 extern BOOL
stabs_parse(struct module
* module
, unsigned long load_offset
,
348 const void* stabs
, int stablen
,
349 const char* strs
, int strtablen
);
352 extern const char* symt_get_name(const struct symt
* sym
);
353 extern int symt_cmp_addr(const void* p1
, const void* p2
);
354 extern int symt_find_nearest(struct module
* module
, DWORD addr
);
355 extern struct symt_compiland
*
356 symt_new_compiland(struct module
* module
,
357 const char* filename
);
358 extern struct symt_public
*
359 symt_new_public(struct module
* module
,
360 struct symt_compiland
* parent
,
361 const char* typename
,
362 unsigned long address
, unsigned size
,
363 BOOL in_code
, BOOL is_func
);
364 extern struct symt_data
*
365 symt_new_global_variable(struct module
* module
,
366 struct symt_compiland
* parent
,
367 const char* name
, unsigned is_static
,
368 unsigned long addr
, unsigned long size
,
370 extern struct symt_function
*
371 symt_new_function(struct module
* module
,
372 struct symt_compiland
* parent
,
374 unsigned long addr
, unsigned long size
,
376 extern BOOL
symt_normalize_function(struct module
* module
,
377 struct symt_function
* func
);
378 extern void symt_add_func_line(struct module
* module
,
379 struct symt_function
* func
,
380 unsigned source_idx
, int line_num
,
381 unsigned long offset
);
382 extern struct symt_data
*
383 symt_add_func_local(struct module
* module
,
384 struct symt_function
* func
,
385 int regno
, int offset
,
386 struct symt_block
* block
,
387 struct symt
* type
, const char* name
);
388 extern struct symt_block
*
389 symt_open_func_block(struct module
* module
,
390 struct symt_function
* func
,
391 struct symt_block
* block
,
392 unsigned pc
, unsigned len
);
393 extern struct symt_block
*
394 symt_close_func_block(struct module
* module
,
395 struct symt_function
* func
,
396 struct symt_block
* block
, unsigned pc
);
397 extern struct symt_function_point
*
398 symt_add_function_point(struct module
* module
,
399 struct symt_function
* func
,
400 enum SymTagEnum point
,
401 unsigned offset
, const char* name
);
402 extern BOOL
symt_fill_func_line_info(struct module
* module
,
403 struct symt_function
* func
,
404 DWORD addr
, IMAGEHLP_LINE
* line
);
405 extern BOOL
symt_get_func_line_next(struct module
* module
, PIMAGEHLP_LINE line
);
406 extern struct symt_thunk
*
407 symt_new_thunk(struct module
* module
,
408 struct symt_compiland
* parent
,
409 const char* name
, THUNK_ORDINAL ord
,
410 unsigned long addr
, unsigned long size
);
413 extern void symt_init_basic(struct module
* module
);
414 extern BOOL
symt_get_info(const struct symt
* type
,
415 IMAGEHLP_SYMBOL_TYPE_INFO req
, void* pInfo
);
416 extern struct symt_basic
*
417 symt_new_basic(struct module
* module
, enum BasicType
,
418 const char* typename
, unsigned size
);
419 extern struct symt_udt
*
420 symt_new_udt(struct module
* module
, const char* typename
,
421 unsigned size
, enum UdtKind kind
);
422 extern BOOL
symt_set_udt_size(struct module
* module
,
423 struct symt_udt
* type
, unsigned size
);
424 extern BOOL
symt_add_udt_element(struct module
* module
,
425 struct symt_udt
* udt_type
,
427 struct symt
* elt_type
, unsigned offset
,
429 extern struct symt_enum
*
430 symt_new_enum(struct module
* module
, const char* typename
);
431 extern BOOL
symt_add_enum_element(struct module
* module
,
432 struct symt_enum
* enum_type
,
433 const char* name
, int value
);
434 extern struct symt_array
*
435 symt_new_array(struct module
* module
, int min
, int max
,
437 extern struct symt_function_signature
*
438 symt_new_function_signature(struct module
* module
,
439 struct symt
* ret_type
);
440 extern BOOL
symt_add_function_signature_parameter(struct module
* module
,
441 struct symt_function_signature
* sig
,
443 extern struct symt_pointer
*
444 symt_new_pointer(struct module
* module
,
445 struct symt
* ref_type
);
446 extern struct symt_typedef
*
447 symt_new_typedef(struct module
* module
, struct symt
* ref
,