cf6c783ce72a8e1603fef2800d595a7601c83a1c
[reactos.git] / reactos / dll / win32 / dbghelp / dbghelp_private.h
1 /*
2 * File dbghelp_private.h - dbghelp internal definitions
3 *
4 * Copyright (C) 1995, Alexandre Julliard
5 * Copyright (C) 1996, Eric Youngdale.
6 * Copyright (C) 1999-2000, Ulrich Weigand.
7 * Copyright (C) 2004-2007, Eric Pouech.
8 *
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.
13 *
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.
18 *
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
22 */
23
24 #ifndef _DBGHELP_PRIVATE_H_
25 #define _DBGHELP_PRIVATE_H_
26
27 #include <config.h>
28
29 #include <assert.h>
30 #include <stdio.h>
31
32 #ifdef HAVE_SYS_MMAN_H
33 # include <sys/mman.h>
34 #endif
35 #ifdef HAVE_SYS_STAT_H
36 # include <sys/stat.h>
37 #endif
38 #ifdef HAVE_UNISTD_H
39 # include <unistd.h>
40 #endif
41
42 #define _INC_WINDOWS
43 #define COM_NO_WINDOWS_H
44
45 #define NONAMELESSUNION
46 #define NONAMELESSSTRUCT
47
48 #ifndef DBGHELP_STATIC_LIB
49
50 #include <wine/port.h>
51
52 #include <ntstatus.h>
53 #define WIN32_NO_STATUS
54 #include <windef.h>
55 #include <winbase.h>
56 #include <winver.h>
57 #include <winternl.h>
58 #include <dbghelp.h>
59 #include <objbase.h>
60 #include <cvconst.h>
61 #include <psapi.h>
62
63 #include <wine/debug.h>
64 #include <wine/mscvpdb.h>
65 #include <wine/unicode.h>
66
67 #else /* DBGHELP_STATIC_LIB */
68
69 #include <string.h>
70 #include "compat.h"
71
72 #endif /* DBGHELP_STATIC_LIB */
73
74 #include <wine/list.h>
75 #include <wine/rbtree.h>
76
77 /* #define USE_STATS */
78
79 struct pool /* poor's man */
80 {
81 struct list arena_list;
82 struct list arena_full;
83 size_t arena_size;
84 };
85
86 void pool_init(struct pool* a, size_t arena_size) DECLSPEC_HIDDEN;
87 void pool_destroy(struct pool* a) DECLSPEC_HIDDEN;
88 void* pool_alloc(struct pool* a, size_t len) DECLSPEC_HIDDEN;
89 char* pool_strdup(struct pool* a, const char* str) DECLSPEC_HIDDEN;
90
91 struct vector
92 {
93 void** buckets;
94 unsigned elt_size;
95 unsigned shift;
96 unsigned num_elts;
97 unsigned num_buckets;
98 unsigned buckets_allocated;
99 };
100
101 void vector_init(struct vector* v, unsigned elt_sz, unsigned bucket_sz) DECLSPEC_HIDDEN;
102 unsigned vector_length(const struct vector* v) DECLSPEC_HIDDEN;
103 void* vector_at(const struct vector* v, unsigned pos) DECLSPEC_HIDDEN;
104 void* vector_add(struct vector* v, struct pool* pool) DECLSPEC_HIDDEN;
105
106 struct sparse_array
107 {
108 struct vector key2index;
109 struct vector elements;
110 };
111
112 void sparse_array_init(struct sparse_array* sa, unsigned elt_sz, unsigned bucket_sz) DECLSPEC_HIDDEN;
113 void* sparse_array_find(const struct sparse_array* sa, unsigned long idx) DECLSPEC_HIDDEN;
114 void* sparse_array_add(struct sparse_array* sa, unsigned long key, struct pool* pool) DECLSPEC_HIDDEN;
115 unsigned sparse_array_length(const struct sparse_array* sa) DECLSPEC_HIDDEN;
116
117 struct hash_table_elt
118 {
119 const char* name;
120 struct hash_table_elt* next;
121 };
122
123 struct hash_table_bucket
124 {
125 struct hash_table_elt* first;
126 struct hash_table_elt* last;
127 };
128
129 struct hash_table
130 {
131 unsigned num_elts;
132 unsigned num_buckets;
133 struct hash_table_bucket* buckets;
134 struct pool* pool;
135 };
136
137 void hash_table_init(struct pool* pool, struct hash_table* ht,
138 unsigned num_buckets) DECLSPEC_HIDDEN;
139 void hash_table_destroy(struct hash_table* ht) DECLSPEC_HIDDEN;
140 void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt) DECLSPEC_HIDDEN;
141
142 struct hash_table_iter
143 {
144 const struct hash_table* ht;
145 struct hash_table_elt* element;
146 int index;
147 int last;
148 };
149
150 void hash_table_iter_init(const struct hash_table* ht,
151 struct hash_table_iter* hti, const char* name) DECLSPEC_HIDDEN;
152 void* hash_table_iter_up(struct hash_table_iter* hti) DECLSPEC_HIDDEN;
153
154 #define GET_ENTRY(__i, __t, __f) \
155 ((__t*)((char*)(__i) - FIELD_OFFSET(__t,__f)))
156
157
158 extern unsigned dbghelp_options DECLSPEC_HIDDEN;
159 /* some more Wine extensions */
160 #define SYMOPT_WINE_WITH_NATIVE_MODULES 0x40000000
161
162 enum location_kind {loc_error, /* reg is the error code */
163 loc_unavailable, /* location is not available */
164 loc_absolute, /* offset is the location */
165 loc_register, /* reg is the location */
166 loc_regrel, /* [reg+offset] is the location */
167 loc_tlsrel, /* offset is the address of the TLS index */
168 loc_user, /* value is debug information dependent,
169 reg & offset can be used ad libidem */
170 };
171
172 enum location_error {loc_err_internal = -1, /* internal while computing */
173 loc_err_too_complex = -2, /* couldn't compute location (even at runtime) */
174 loc_err_out_of_scope = -3, /* variable isn't available at current address */
175 loc_err_cant_read = -4, /* couldn't read memory at given address */
176 loc_err_no_location = -5, /* likely optimized away (by compiler) */
177 };
178
179 struct location
180 {
181 unsigned kind : 8,
182 reg;
183 unsigned long offset;
184 };
185
186 struct symt
187 {
188 enum SymTagEnum tag;
189 };
190
191 struct symt_ht
192 {
193 struct symt symt;
194 struct hash_table_elt hash_elt; /* if global symbol or type */
195 };
196
197 /* lexical tree */
198 struct symt_block
199 {
200 struct symt symt;
201 unsigned long address;
202 unsigned long size;
203 struct symt* container; /* block, or func */
204 struct vector vchildren; /* sub-blocks & local variables */
205 };
206
207 struct symt_compiland
208 {
209 struct symt symt;
210 unsigned long address;
211 unsigned source;
212 struct vector vchildren; /* global variables & functions */
213 };
214
215 struct symt_data
216 {
217 struct symt symt;
218 struct hash_table_elt hash_elt; /* if global symbol */
219 enum DataKind kind;
220 struct symt* container;
221 struct symt* type;
222 union /* depends on kind */
223 {
224 /* DataIs{Global, FileStatic}:
225 * with loc.kind
226 * loc_absolute loc.offset is address
227 * loc_tlsrel loc.offset is TLS index address
228 * DataIs{Local,Param}:
229 * with loc.kind
230 * loc_absolute not supported
231 * loc_register location is in register loc.reg
232 * loc_regrel location is at address loc.reg + loc.offset
233 * >= loc_user ask debug info provider for resolution
234 */
235 struct location var;
236 /* DataIs{Member} (all values are in bits, not bytes) */
237 struct
238 {
239 long offset;
240 unsigned long length;
241 } member;
242 /* DataIsConstant */
243 VARIANT value;
244 } u;
245 };
246
247 struct symt_function
248 {
249 struct symt symt;
250 struct hash_table_elt hash_elt; /* if global symbol */
251 unsigned long address;
252 struct symt* container; /* compiland */
253 struct symt* type; /* points to function_signature */
254 unsigned long size;
255 struct vector vlines;
256 struct vector vchildren; /* locals, params, blocks, start/end, labels */
257 };
258
259 struct symt_hierarchy_point
260 {
261 struct symt symt; /* either SymTagFunctionDebugStart, SymTagFunctionDebugEnd, SymTagLabel */
262 struct hash_table_elt hash_elt; /* if label (and in compiland's hash table if global) */
263 struct symt* parent; /* symt_function or symt_compiland */
264 struct location loc;
265 };
266
267 struct symt_public
268 {
269 struct symt symt;
270 struct hash_table_elt hash_elt;
271 struct symt* container; /* compiland */
272 unsigned long address;
273 unsigned long size;
274 };
275
276 struct symt_thunk
277 {
278 struct symt symt;
279 struct hash_table_elt hash_elt;
280 struct symt* container; /* compiland */
281 unsigned long address;
282 unsigned long size;
283 THUNK_ORDINAL ordinal; /* FIXME: doesn't seem to be accessible */
284 };
285
286 /* class tree */
287 struct symt_array
288 {
289 struct symt symt;
290 int start;
291 int end; /* end index if > 0, or -array_len (in bytes) if < 0 */
292 struct symt* base_type;
293 struct symt* index_type;
294 };
295
296 struct symt_basic
297 {
298 struct symt symt;
299 struct hash_table_elt hash_elt;
300 enum BasicType bt;
301 unsigned long size;
302 };
303
304 struct symt_enum
305 {
306 struct symt symt;
307 struct symt* base_type;
308 const char* name;
309 struct vector vchildren;
310 };
311
312 struct symt_function_signature
313 {
314 struct symt symt;
315 struct symt* rettype;
316 struct vector vchildren;
317 enum CV_call_e call_conv;
318 };
319
320 struct symt_function_arg_type
321 {
322 struct symt symt;
323 struct symt* arg_type;
324 struct symt* container;
325 };
326
327 struct symt_pointer
328 {
329 struct symt symt;
330 struct symt* pointsto;
331 unsigned long size;
332 };
333
334 struct symt_typedef
335 {
336 struct symt symt;
337 struct hash_table_elt hash_elt;
338 struct symt* type;
339 };
340
341 struct symt_udt
342 {
343 struct symt symt;
344 struct hash_table_elt hash_elt;
345 enum UdtKind kind;
346 int size;
347 struct vector vchildren;
348 };
349
350 enum module_type
351 {
352 DMT_UNKNOWN, /* for lookup, not actually used for a module */
353 DMT_ELF, /* a real ELF shared module */
354 DMT_PE, /* a native or builtin PE module */
355 DMT_MACHO, /* a real Mach-O shared module */
356 DMT_PDB, /* .PDB file */
357 DMT_DBG, /* .DBG file */
358 };
359
360 struct process;
361 struct module;
362
363 /* a module can be made of several debug information formats, so we have to
364 * support them all
365 */
366 enum format_info
367 {
368 DFI_ELF,
369 DFI_PE,
370 DFI_MACHO,
371 DFI_DWARF,
372 DFI_PDB,
373 DFI_LAST
374 };
375
376 struct module_format
377 {
378 struct module* module;
379 void (*remove)(struct process* pcs, struct module_format* modfmt);
380 void (*loc_compute)(struct process* pcs,
381 const struct module_format* modfmt,
382 const struct symt_function* func,
383 struct location* loc);
384 union
385 {
386 struct elf_module_info* elf_info;
387 struct dwarf2_module_info_s* dwarf2_info;
388 struct pe_module_info* pe_info;
389 struct macho_module_info* macho_info;
390 struct pdb_module_info* pdb_info;
391 } u;
392 };
393
394 #ifdef __REACTOS__
395 struct symt_idx_to_ptr
396 {
397 struct hash_table_elt hash_elt;
398 DWORD idx;
399 const struct symt *sym;
400 };
401 #endif
402
403 extern const struct wine_rb_functions source_rb_functions DECLSPEC_HIDDEN;
404 struct module
405 {
406 struct process* process;
407 IMAGEHLP_MODULEW64 module;
408 struct module* next;
409 enum module_type type : 16;
410 unsigned short is_virtual : 1;
411 DWORD64 reloc_delta;
412
413 /* specific information for debug types */
414 struct module_format* format_info[DFI_LAST];
415
416 /* memory allocation pool */
417 struct pool pool;
418
419 /* symbols & symbol tables */
420 struct vector vsymt;
421 int sortlist_valid;
422 unsigned num_sorttab; /* number of symbols with addresses */
423 unsigned num_symbols;
424 unsigned sorttab_size;
425 struct symt_ht** addr_sorttab;
426 struct hash_table ht_symbols;
427 #ifdef __x86_64__
428 struct hash_table ht_symaddr;
429 #endif
430
431 /* types */
432 struct hash_table ht_types;
433 struct vector vtypes;
434
435 /* source files */
436 unsigned sources_used;
437 unsigned sources_alloc;
438 char* sources;
439 struct wine_rb_tree sources_offsets_tree;
440 };
441
442 struct process
443 {
444 struct process* next;
445 HANDLE handle;
446 WCHAR* search_path;
447
448 PSYMBOL_REGISTERED_CALLBACK64 reg_cb;
449 PSYMBOL_REGISTERED_CALLBACK reg_cb32;
450 BOOL reg_is_unicode;
451 DWORD64 reg_user;
452
453 struct module* lmodules;
454 unsigned long dbg_hdr_addr;
455
456 IMAGEHLP_STACK_FRAME ctx_frame;
457
458 unsigned buffer_size;
459 void* buffer;
460 };
461
462 struct line_info
463 {
464 unsigned long is_first : 1,
465 is_last : 1,
466 is_source_file : 1,
467 line_number;
468 union
469 {
470 unsigned long pc_offset; /* if is_source_file isn't set */
471 unsigned source_file; /* if is_source_file is set */
472 } u;
473 };
474
475 struct module_pair
476 {
477 struct process* pcs;
478 struct module* requested; /* in: to module_get_debug() */
479 struct module* effective; /* out: module with debug info */
480 };
481
482 enum pdb_kind {PDB_JG, PDB_DS};
483
484 struct pdb_lookup
485 {
486 const char* filename;
487 enum pdb_kind kind;
488 DWORD age;
489 DWORD timestamp;
490 GUID guid;
491 };
492
493 struct cpu_stack_walk
494 {
495 HANDLE hProcess;
496 HANDLE hThread;
497 BOOL is32;
498 union
499 {
500 struct
501 {
502 PREAD_PROCESS_MEMORY_ROUTINE f_read_mem;
503 PTRANSLATE_ADDRESS_ROUTINE f_xlat_adr;
504 PFUNCTION_TABLE_ACCESS_ROUTINE f_tabl_acs;
505 PGET_MODULE_BASE_ROUTINE f_modl_bas;
506 } s32;
507 struct
508 {
509 PREAD_PROCESS_MEMORY_ROUTINE64 f_read_mem;
510 PTRANSLATE_ADDRESS_ROUTINE64 f_xlat_adr;
511 PFUNCTION_TABLE_ACCESS_ROUTINE64 f_tabl_acs;
512 PGET_MODULE_BASE_ROUTINE64 f_modl_bas;
513 } s64;
514 } u;
515 };
516
517 struct dump_memory
518 {
519 ULONG64 base;
520 ULONG size;
521 ULONG rva;
522 };
523
524 struct dump_module
525 {
526 unsigned is_elf;
527 ULONG64 base;
528 ULONG size;
529 DWORD timestamp;
530 DWORD checksum;
531 WCHAR name[MAX_PATH];
532 };
533
534 struct dump_thread
535 {
536 ULONG tid;
537 ULONG prio_class;
538 ULONG curr_prio;
539 };
540
541 struct dump_context
542 {
543 /* process & thread information */
544 HANDLE hProcess;
545 DWORD pid;
546 unsigned flags_out;
547 /* thread information */
548 struct dump_thread* threads;
549 unsigned num_threads;
550 /* module information */
551 struct dump_module* modules;
552 unsigned num_modules;
553 unsigned alloc_modules;
554 /* exception information */
555 /* output information */
556 MINIDUMP_TYPE type;
557 HANDLE hFile;
558 RVA rva;
559 struct dump_memory* mem;
560 unsigned num_mem;
561 unsigned alloc_mem;
562 /* callback information */
563 MINIDUMP_CALLBACK_INFORMATION* cb;
564 };
565
566 enum cpu_addr {cpu_addr_pc, cpu_addr_stack, cpu_addr_frame};
567 struct cpu
568 {
569 DWORD machine;
570 DWORD word_size;
571 DWORD frame_regno;
572
573 /* address manipulation */
574 BOOL (*get_addr)(HANDLE hThread, const CONTEXT* ctx,
575 enum cpu_addr, ADDRESS64* addr);
576
577 /* stack manipulation */
578 BOOL (*stack_walk)(struct cpu_stack_walk* csw, LPSTACKFRAME64 frame, CONTEXT* context);
579
580 /* module manipulation */
581 void* (*find_runtime_function)(struct module*, DWORD64 addr);
582
583 /* dwarf dedicated information */
584 unsigned (*map_dwarf_register)(unsigned regno, BOOL eh_frame);
585
586 /* context related manipulation */
587 void* (*fetch_context_reg)(CONTEXT* context, unsigned regno, unsigned* size);
588 const char* (*fetch_regname)(unsigned regno);
589
590 /* minidump per CPU extension */
591 BOOL (*fetch_minidump_thread)(struct dump_context* dc, unsigned index, unsigned flags, const CONTEXT* ctx);
592 BOOL (*fetch_minidump_module)(struct dump_context* dc, unsigned index, unsigned flags);
593 };
594
595 extern struct cpu* dbghelp_current_cpu DECLSPEC_HIDDEN;
596
597 /* dbghelp.c */
598 extern struct process* process_find_by_handle(HANDLE hProcess) DECLSPEC_HIDDEN;
599 extern BOOL validate_addr64(DWORD64 addr) DECLSPEC_HIDDEN;
600 extern BOOL pcs_callback(const struct process* pcs, ULONG action, void* data) DECLSPEC_HIDDEN;
601 extern void* fetch_buffer(struct process* pcs, unsigned size) DECLSPEC_HIDDEN;
602 extern const char* wine_dbgstr_addr(const ADDRESS64* addr) DECLSPEC_HIDDEN;
603 extern struct cpu* cpu_find(DWORD) DECLSPEC_HIDDEN;
604
605 /* crc32.c */
606 extern DWORD calc_crc32(int fd) DECLSPEC_HIDDEN;
607
608 typedef BOOL (*enum_modules_cb)(const WCHAR*, unsigned long addr, void* user);
609
610 /* elf_module.c */
611 extern BOOL elf_enum_modules(HANDLE hProc, enum_modules_cb, void*) DECLSPEC_HIDDEN;
612 extern BOOL elf_fetch_file_info(const WCHAR* name, DWORD_PTR* base, DWORD* size, DWORD* checksum) DECLSPEC_HIDDEN;
613 struct image_file_map;
614 extern BOOL elf_load_debug_info(struct module* module) DECLSPEC_HIDDEN;
615 extern struct module*
616 elf_load_module(struct process* pcs, const WCHAR* name, unsigned long) DECLSPEC_HIDDEN;
617 extern BOOL elf_read_wine_loader_dbg_info(struct process* pcs) DECLSPEC_HIDDEN;
618 extern BOOL elf_synchronize_module_list(struct process* pcs) DECLSPEC_HIDDEN;
619 struct elf_thunk_area;
620 extern int elf_is_in_thunk_area(unsigned long addr, const struct elf_thunk_area* thunks) DECLSPEC_HIDDEN;
621
622 /* macho_module.c */
623 extern BOOL macho_enum_modules(HANDLE hProc, enum_modules_cb, void*) DECLSPEC_HIDDEN;
624 extern BOOL macho_fetch_file_info(const WCHAR* name, DWORD_PTR* base, DWORD* size, DWORD* checksum) DECLSPEC_HIDDEN;
625 extern BOOL macho_load_debug_info(struct module* module) DECLSPEC_HIDDEN;
626 extern struct module*
627 macho_load_module(struct process* pcs, const WCHAR* name, unsigned long) DECLSPEC_HIDDEN;
628 extern BOOL macho_read_wine_loader_dbg_info(struct process* pcs) DECLSPEC_HIDDEN;
629 extern BOOL macho_synchronize_module_list(struct process* pcs) DECLSPEC_HIDDEN;
630
631 /* minidump.c */
632 void minidump_add_memory_block(struct dump_context* dc, ULONG64 base, ULONG size, ULONG rva) DECLSPEC_HIDDEN;
633
634 /* module.c */
635 extern const WCHAR S_ElfW[] DECLSPEC_HIDDEN;
636 extern const WCHAR S_WineLoaderW[] DECLSPEC_HIDDEN;
637 extern const WCHAR S_SlashW[] DECLSPEC_HIDDEN;
638
639 extern struct module*
640 module_find_by_addr(const struct process* pcs, DWORD64 addr,
641 enum module_type type) DECLSPEC_HIDDEN;
642 extern struct module*
643 module_find_by_nameW(const struct process* pcs,
644 const WCHAR* name) DECLSPEC_HIDDEN;
645 extern struct module*
646 module_find_by_nameA(const struct process* pcs,
647 const char* name) DECLSPEC_HIDDEN;
648 extern struct module*
649 module_is_already_loaded(const struct process* pcs,
650 const WCHAR* imgname) DECLSPEC_HIDDEN;
651 extern BOOL module_get_debug(struct module_pair*) DECLSPEC_HIDDEN;
652 extern struct module*
653 module_new(struct process* pcs, const WCHAR* name,
654 enum module_type type, BOOL virtual,
655 DWORD64 addr, DWORD64 size,
656 unsigned long stamp, unsigned long checksum) DECLSPEC_HIDDEN;
657 extern struct module*
658 module_get_containee(const struct process* pcs,
659 const struct module* inner) DECLSPEC_HIDDEN;
660 extern enum module_type
661 module_get_type_by_name(const WCHAR* name) DECLSPEC_HIDDEN;
662 extern void module_reset_debug_info(struct module* module) DECLSPEC_HIDDEN;
663 extern BOOL module_remove(struct process* pcs,
664 struct module* module) DECLSPEC_HIDDEN;
665 extern void module_set_module(struct module* module, const WCHAR* name) DECLSPEC_HIDDEN;
666 extern const WCHAR *get_wine_loader_name(void) DECLSPEC_HIDDEN;
667
668 /* msc.c */
669 extern BOOL pe_load_debug_directory(const struct process* pcs,
670 struct module* module,
671 const BYTE* mapping,
672 const IMAGE_SECTION_HEADER* sectp, DWORD nsect,
673 const IMAGE_DEBUG_DIRECTORY* dbg, int nDbg) DECLSPEC_HIDDEN;
674 extern BOOL pdb_fetch_file_info(const struct pdb_lookup* pdb_lookup, unsigned* matched) DECLSPEC_HIDDEN;
675 struct pdb_cmd_pair {
676 const char* name;
677 DWORD* pvalue;
678 };
679 extern BOOL pdb_virtual_unwind(struct cpu_stack_walk* csw, DWORD_PTR ip,
680 CONTEXT* context, struct pdb_cmd_pair* cpair) DECLSPEC_HIDDEN;
681
682 /* path.c */
683 extern BOOL path_find_symbol_file(const struct process* pcs, PCSTR full_path,
684 const GUID* guid, DWORD dw1, DWORD dw2, PSTR buffer,
685 BOOL* is_unmatched) DECLSPEC_HIDDEN;
686
687 /* pe_module.c */
688 extern BOOL pe_load_nt_header(HANDLE hProc, DWORD64 base, IMAGE_NT_HEADERS* nth) DECLSPEC_HIDDEN;
689 extern struct module*
690 pe_load_native_module(struct process* pcs, const WCHAR* name,
691 HANDLE hFile, DWORD64 base, DWORD size) DECLSPEC_HIDDEN;
692 extern struct module*
693 pe_load_builtin_module(struct process* pcs, const WCHAR* name,
694 DWORD64 base, DWORD64 size) DECLSPEC_HIDDEN;
695 extern BOOL pe_load_debug_info(const struct process* pcs,
696 struct module* module) DECLSPEC_HIDDEN;
697 extern const char* pe_map_directory(struct module* module, int dirno, DWORD* size) DECLSPEC_HIDDEN;
698
699 /* source.c */
700 extern unsigned source_new(struct module* module, const char* basedir, const char* source) DECLSPEC_HIDDEN;
701 extern const char* source_get(const struct module* module, unsigned idx) DECLSPEC_HIDDEN;
702
703 /* stabs.c */
704 typedef void (*stabs_def_cb)(struct module* module, unsigned long load_offset,
705 const char* name, unsigned long offset,
706 BOOL is_public, BOOL is_global, unsigned char other,
707 struct symt_compiland* compiland, void* user);
708 extern BOOL stabs_parse(struct module* module, unsigned long load_offset,
709 const void* stabs, int stablen,
710 const char* strs, int strtablen,
711 stabs_def_cb callback, void* user) DECLSPEC_HIDDEN;
712
713 /* dwarf.c */
714 extern BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
715 const struct elf_thunk_area* thunks,
716 struct image_file_map* fmap) DECLSPEC_HIDDEN;
717 extern BOOL dwarf2_virtual_unwind(struct cpu_stack_walk* csw, DWORD_PTR ip,
718 CONTEXT* context, ULONG_PTR* cfa) DECLSPEC_HIDDEN;
719
720 /* stack.c */
721 #ifndef DBGHELP_STATIC_LIB
722 extern BOOL sw_read_mem(struct cpu_stack_walk* csw, DWORD64 addr, void* ptr, DWORD sz) DECLSPEC_HIDDEN;
723 #endif
724 extern DWORD64 sw_xlat_addr(struct cpu_stack_walk* csw, ADDRESS64* addr) DECLSPEC_HIDDEN;
725 extern void* sw_table_access(struct cpu_stack_walk* csw, DWORD64 addr) DECLSPEC_HIDDEN;
726 extern DWORD64 sw_module_base(struct cpu_stack_walk* csw, DWORD64 addr) DECLSPEC_HIDDEN;
727
728 /* symbol.c */
729 extern const char* symt_get_name(const struct symt* sym) DECLSPEC_HIDDEN;
730 extern WCHAR* symt_get_nameW(const struct symt* sym) DECLSPEC_HIDDEN;
731 extern BOOL symt_get_address(const struct symt* type, ULONG64* addr) DECLSPEC_HIDDEN;
732 extern int symt_cmp_addr(const void* p1, const void* p2) DECLSPEC_HIDDEN;
733 extern void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si) DECLSPEC_HIDDEN;
734 extern struct symt_ht*
735 symt_find_nearest(struct module* module, DWORD_PTR addr) DECLSPEC_HIDDEN;
736 extern struct symt_compiland*
737 symt_new_compiland(struct module* module, unsigned long address,
738 unsigned src_idx) DECLSPEC_HIDDEN;
739 extern struct symt_public*
740 symt_new_public(struct module* module,
741 struct symt_compiland* parent,
742 const char* typename,
743 unsigned long address, unsigned size) DECLSPEC_HIDDEN;
744 extern struct symt_data*
745 symt_new_global_variable(struct module* module,
746 struct symt_compiland* parent,
747 const char* name, unsigned is_static,
748 struct location loc, unsigned long size,
749 struct symt* type) DECLSPEC_HIDDEN;
750 extern struct symt_function*
751 symt_new_function(struct module* module,
752 struct symt_compiland* parent,
753 const char* name,
754 unsigned long addr, unsigned long size,
755 struct symt* type) DECLSPEC_HIDDEN;
756 extern BOOL symt_normalize_function(struct module* module,
757 const struct symt_function* func) DECLSPEC_HIDDEN;
758 extern void symt_add_func_line(struct module* module,
759 struct symt_function* func,
760 unsigned source_idx, int line_num,
761 unsigned long offset) DECLSPEC_HIDDEN;
762 extern struct symt_data*
763 symt_add_func_local(struct module* module,
764 struct symt_function* func,
765 enum DataKind dt, const struct location* loc,
766 struct symt_block* block,
767 struct symt* type, const char* name) DECLSPEC_HIDDEN;
768 extern struct symt_block*
769 symt_open_func_block(struct module* module,
770 struct symt_function* func,
771 struct symt_block* block,
772 unsigned pc, unsigned len) DECLSPEC_HIDDEN;
773 extern struct symt_block*
774 symt_close_func_block(struct module* module,
775 const struct symt_function* func,
776 struct symt_block* block, unsigned pc) DECLSPEC_HIDDEN;
777 extern struct symt_hierarchy_point*
778 symt_add_function_point(struct module* module,
779 struct symt_function* func,
780 enum SymTagEnum point,
781 const struct location* loc,
782 const char* name) DECLSPEC_HIDDEN;
783 extern BOOL symt_fill_func_line_info(const struct module* module,
784 const struct symt_function* func,
785 DWORD64 addr, IMAGEHLP_LINE64* line) DECLSPEC_HIDDEN;
786 extern BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE64 line) DECLSPEC_HIDDEN;
787 extern struct symt_thunk*
788 symt_new_thunk(struct module* module,
789 struct symt_compiland* parent,
790 const char* name, THUNK_ORDINAL ord,
791 unsigned long addr, unsigned long size) DECLSPEC_HIDDEN;
792 extern struct symt_data*
793 symt_new_constant(struct module* module,
794 struct symt_compiland* parent,
795 const char* name, struct symt* type,
796 const VARIANT* v) DECLSPEC_HIDDEN;
797 extern struct symt_hierarchy_point*
798 symt_new_label(struct module* module,
799 struct symt_compiland* compiland,
800 const char* name, unsigned long address) DECLSPEC_HIDDEN;
801 extern struct symt* symt_index2ptr(struct module* module, DWORD id) DECLSPEC_HIDDEN;
802 extern DWORD symt_ptr2index(struct module* module, const struct symt* sym) DECLSPEC_HIDDEN;
803
804 /* type.c */
805 extern void symt_init_basic(struct module* module) DECLSPEC_HIDDEN;
806 extern BOOL symt_get_info(struct module* module, const struct symt* type,
807 IMAGEHLP_SYMBOL_TYPE_INFO req, void* pInfo) DECLSPEC_HIDDEN;
808 extern struct symt_basic*
809 symt_new_basic(struct module* module, enum BasicType,
810 const char* typename, unsigned size) DECLSPEC_HIDDEN;
811 extern struct symt_udt*
812 symt_new_udt(struct module* module, const char* typename,
813 unsigned size, enum UdtKind kind) DECLSPEC_HIDDEN;
814 extern BOOL symt_set_udt_size(struct module* module,
815 struct symt_udt* type, unsigned size) DECLSPEC_HIDDEN;
816 extern BOOL symt_add_udt_element(struct module* module,
817 struct symt_udt* udt_type,
818 const char* name,
819 struct symt* elt_type, unsigned offset,
820 unsigned size) DECLSPEC_HIDDEN;
821 extern struct symt_enum*
822 symt_new_enum(struct module* module, const char* typename,
823 struct symt* basetype) DECLSPEC_HIDDEN;
824 extern BOOL symt_add_enum_element(struct module* module,
825 struct symt_enum* enum_type,
826 const char* name, int value) DECLSPEC_HIDDEN;
827 extern struct symt_array*
828 symt_new_array(struct module* module, int min, int max,
829 struct symt* base, struct symt* index) DECLSPEC_HIDDEN;
830 extern struct symt_function_signature*
831 symt_new_function_signature(struct module* module,
832 struct symt* ret_type,
833 enum CV_call_e call_conv) DECLSPEC_HIDDEN;
834 extern BOOL symt_add_function_signature_parameter(struct module* module,
835 struct symt_function_signature* sig,
836 struct symt* param) DECLSPEC_HIDDEN;
837 extern struct symt_pointer*
838 symt_new_pointer(struct module* module,
839 struct symt* ref_type,
840 unsigned long size) DECLSPEC_HIDDEN;
841 extern struct symt_typedef*
842 symt_new_typedef(struct module* module, struct symt* ref,
843 const char* name) DECLSPEC_HIDDEN;
844
845 #include "image_private.h"
846
847 #endif /* _DBGHELP_PRIVATE_H_ */