makefiles: Don't use standard libs for programs that specify -nodefaultlibs.
[wine/zf.git] / dlls / dbghelp / dbghelp_private.h
blob67cb04c0d9fae14ee59ae2b2598929b11b26865b
1 /*
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-2007, 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
24 #include <stdarg.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winver.h"
28 #include "dbghelp.h"
29 #include "objbase.h"
30 #include "oaidl.h"
31 #include "winnls.h"
32 #include "wine/list.h"
33 #include "wine/rbtree.h"
35 #include "cvconst.h"
37 /* #define USE_STATS */
39 struct pool /* poor's man */
41 struct list arena_list;
42 struct list arena_full;
43 size_t arena_size;
46 void pool_init(struct pool* a, size_t arena_size) DECLSPEC_HIDDEN;
47 void pool_destroy(struct pool* a) DECLSPEC_HIDDEN;
48 void* pool_alloc(struct pool* a, size_t len) DECLSPEC_HIDDEN;
49 char* pool_strdup(struct pool* a, const char* str) DECLSPEC_HIDDEN;
51 struct vector
53 void** buckets;
54 unsigned elt_size;
55 unsigned shift;
56 unsigned num_elts;
57 unsigned num_buckets;
58 unsigned buckets_allocated;
61 void vector_init(struct vector* v, unsigned elt_sz, unsigned bucket_sz) DECLSPEC_HIDDEN;
62 unsigned vector_length(const struct vector* v) DECLSPEC_HIDDEN;
63 void* vector_at(const struct vector* v, unsigned pos) DECLSPEC_HIDDEN;
64 void* vector_add(struct vector* v, struct pool* pool) DECLSPEC_HIDDEN;
66 struct sparse_array
68 struct vector key2index;
69 struct vector elements;
72 void sparse_array_init(struct sparse_array* sa, unsigned elt_sz, unsigned bucket_sz) DECLSPEC_HIDDEN;
73 void* sparse_array_find(const struct sparse_array* sa, ULONG_PTR idx) DECLSPEC_HIDDEN;
74 void* sparse_array_add(struct sparse_array* sa, ULONG_PTR key, struct pool* pool) DECLSPEC_HIDDEN;
75 unsigned sparse_array_length(const struct sparse_array* sa) DECLSPEC_HIDDEN;
77 struct hash_table_elt
79 const char* name;
80 struct hash_table_elt* next;
83 struct hash_table_bucket
85 struct hash_table_elt* first;
86 struct hash_table_elt* last;
89 struct hash_table
91 unsigned num_elts;
92 unsigned num_buckets;
93 struct hash_table_bucket* buckets;
94 struct pool* pool;
97 void hash_table_init(struct pool* pool, struct hash_table* ht,
98 unsigned num_buckets) DECLSPEC_HIDDEN;
99 void hash_table_destroy(struct hash_table* ht) DECLSPEC_HIDDEN;
100 void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt) DECLSPEC_HIDDEN;
102 struct hash_table_iter
104 const struct hash_table* ht;
105 struct hash_table_elt* element;
106 int index;
107 int last;
110 void hash_table_iter_init(const struct hash_table* ht,
111 struct hash_table_iter* hti, const char* name) DECLSPEC_HIDDEN;
112 void* hash_table_iter_up(struct hash_table_iter* hti) DECLSPEC_HIDDEN;
115 extern unsigned dbghelp_options DECLSPEC_HIDDEN;
116 extern BOOL dbghelp_opt_native DECLSPEC_HIDDEN;
117 extern SYSTEM_INFO sysinfo DECLSPEC_HIDDEN;
119 enum location_kind {loc_error, /* reg is the error code */
120 loc_unavailable, /* location is not available */
121 loc_absolute, /* offset is the location */
122 loc_register, /* reg is the location */
123 loc_regrel, /* [reg+offset] is the location */
124 loc_tlsrel, /* offset is the address of the TLS index */
125 loc_user, /* value is debug information dependent,
126 reg & offset can be used ad libidem */
129 enum location_error {loc_err_internal = -1, /* internal while computing */
130 loc_err_too_complex = -2, /* couldn't compute location (even at runtime) */
131 loc_err_out_of_scope = -3, /* variable isn't available at current address */
132 loc_err_cant_read = -4, /* couldn't read memory at given address */
133 loc_err_no_location = -5, /* likely optimized away (by compiler) */
136 struct location
138 unsigned kind : 8,
139 reg;
140 ULONG_PTR offset;
143 struct symt
145 enum SymTagEnum tag;
148 struct symt_ht
150 struct symt symt;
151 struct hash_table_elt hash_elt; /* if global symbol or type */
154 /* lexical tree */
155 struct symt_block
157 struct symt symt;
158 ULONG_PTR address;
159 ULONG_PTR size;
160 struct symt* container; /* block, or func */
161 struct vector vchildren; /* sub-blocks & local variables */
164 struct symt_compiland
166 struct symt symt;
167 ULONG_PTR address;
168 unsigned source;
169 struct vector vchildren; /* global variables & functions */
172 struct symt_data
174 struct symt symt;
175 struct hash_table_elt hash_elt; /* if global symbol */
176 enum DataKind kind;
177 struct symt* container;
178 struct symt* type;
179 union /* depends on kind */
181 /* DataIs{Global, FileStatic}:
182 * with loc.kind
183 * loc_absolute loc.offset is address
184 * loc_tlsrel loc.offset is TLS index address
185 * DataIs{Local,Param}:
186 * with loc.kind
187 * loc_absolute not supported
188 * loc_register location is in register loc.reg
189 * loc_regrel location is at address loc.reg + loc.offset
190 * >= loc_user ask debug info provider for resolution
192 struct location var;
193 /* DataIs{Member} (all values are in bits, not bytes) */
194 struct
196 LONG_PTR offset;
197 ULONG_PTR length;
198 } member;
199 /* DataIsConstant */
200 VARIANT value;
201 } u;
204 struct symt_function
206 struct symt symt;
207 struct hash_table_elt hash_elt; /* if global symbol */
208 ULONG_PTR address;
209 struct symt* container; /* compiland */
210 struct symt* type; /* points to function_signature */
211 ULONG_PTR size;
212 struct vector vlines;
213 struct vector vchildren; /* locals, params, blocks, start/end, labels */
216 struct symt_hierarchy_point
218 struct symt symt; /* either SymTagFunctionDebugStart, SymTagFunctionDebugEnd, SymTagLabel */
219 struct hash_table_elt hash_elt; /* if label (and in compiland's hash table if global) */
220 struct symt* parent; /* symt_function or symt_compiland */
221 struct location loc;
224 struct symt_public
226 struct symt symt;
227 struct hash_table_elt hash_elt;
228 struct symt* container; /* compiland */
229 BOOL is_function;
230 ULONG_PTR address;
231 ULONG_PTR size;
234 struct symt_thunk
236 struct symt symt;
237 struct hash_table_elt hash_elt;
238 struct symt* container; /* compiland */
239 ULONG_PTR address;
240 ULONG_PTR size;
241 THUNK_ORDINAL ordinal; /* FIXME: doesn't seem to be accessible */
244 /* class tree */
245 struct symt_array
247 struct symt symt;
248 int start;
249 int end; /* end index if > 0, or -array_len (in bytes) if < 0 */
250 struct symt* base_type;
251 struct symt* index_type;
254 struct symt_basic
256 struct symt symt;
257 struct hash_table_elt hash_elt;
258 enum BasicType bt;
259 ULONG_PTR size;
262 struct symt_enum
264 struct symt symt;
265 struct symt* base_type;
266 const char* name;
267 struct vector vchildren;
270 struct symt_function_signature
272 struct symt symt;
273 struct symt* rettype;
274 struct vector vchildren;
275 enum CV_call_e call_conv;
278 struct symt_function_arg_type
280 struct symt symt;
281 struct symt* arg_type;
282 struct symt* container;
285 struct symt_pointer
287 struct symt symt;
288 struct symt* pointsto;
289 ULONG_PTR size;
292 struct symt_typedef
294 struct symt symt;
295 struct hash_table_elt hash_elt;
296 struct symt* type;
299 struct symt_udt
301 struct symt symt;
302 struct hash_table_elt hash_elt;
303 enum UdtKind kind;
304 int size;
305 struct vector vchildren;
308 enum module_type
310 DMT_UNKNOWN, /* for lookup, not actually used for a module */
311 DMT_ELF, /* a real ELF shared module */
312 DMT_PE, /* a native or builtin PE module */
313 DMT_MACHO, /* a real Mach-O shared module */
314 DMT_PDB, /* .PDB file */
315 DMT_DBG, /* .DBG file */
318 struct process;
319 struct module;
321 /* a module can be made of several debug information formats, so we have to
322 * support them all
324 enum format_info
326 DFI_ELF,
327 DFI_PE,
328 DFI_MACHO,
329 DFI_DWARF,
330 DFI_PDB,
331 DFI_LAST
334 struct module_format
336 struct module* module;
337 void (*remove)(struct process* pcs, struct module_format* modfmt);
338 void (*loc_compute)(struct process* pcs,
339 const struct module_format* modfmt,
340 const struct symt_function* func,
341 struct location* loc);
342 union
344 struct elf_module_info* elf_info;
345 struct dwarf2_module_info_s* dwarf2_info;
346 struct pe_module_info* pe_info;
347 struct macho_module_info* macho_info;
348 struct pdb_module_info* pdb_info;
349 } u;
352 struct module
354 struct process* process;
355 IMAGEHLP_MODULEW64 module;
356 WCHAR modulename[64]; /* used for enumeration */
357 struct module* next;
358 enum module_type type : 16;
359 unsigned short is_virtual : 1;
360 DWORD64 reloc_delta;
361 WCHAR* real_path;
363 /* specific information for debug types */
364 struct module_format* format_info[DFI_LAST];
366 /* memory allocation pool */
367 struct pool pool;
369 /* symbols & symbol tables */
370 struct vector vsymt;
371 int sortlist_valid;
372 unsigned num_sorttab; /* number of symbols with addresses */
373 unsigned num_symbols;
374 unsigned sorttab_size;
375 struct symt_ht** addr_sorttab;
376 struct hash_table ht_symbols;
378 /* types */
379 struct hash_table ht_types;
380 struct vector vtypes;
382 /* source files */
383 unsigned sources_used;
384 unsigned sources_alloc;
385 char* sources;
386 struct wine_rb_tree sources_offsets_tree;
389 typedef BOOL (*enum_modules_cb)(const WCHAR*, ULONG_PTR addr, void* user);
391 struct loader_ops
393 BOOL (*synchronize_module_list)(struct process* process);
394 struct module* (*load_module)(struct process* process, const WCHAR* name, ULONG_PTR addr);
395 BOOL (*load_debug_info)(struct process *process, struct module* module);
396 BOOL (*enum_modules)(struct process* process, enum_modules_cb callback, void* user);
397 BOOL (*fetch_file_info)(struct process* process, const WCHAR* name, ULONG_PTR load_addr, DWORD_PTR* base, DWORD* size, DWORD* checksum);
400 struct process
402 struct process* next;
403 HANDLE handle;
404 const struct loader_ops* loader;
405 WCHAR* search_path;
407 PSYMBOL_REGISTERED_CALLBACK64 reg_cb;
408 PSYMBOL_REGISTERED_CALLBACK reg_cb32;
409 BOOL reg_is_unicode;
410 DWORD64 reg_user;
412 struct module* lmodules;
413 ULONG_PTR dbg_hdr_addr;
415 IMAGEHLP_STACK_FRAME ctx_frame;
417 unsigned buffer_size;
418 void* buffer;
420 BOOL is_64bit;
423 static inline BOOL read_process_memory(const struct process *process, UINT64 addr, void *buf, size_t size)
425 return ReadProcessMemory(process->handle, (void*)(UINT_PTR)addr, buf, size, NULL);
428 struct line_info
430 ULONG_PTR is_first : 1,
431 is_last : 1,
432 is_source_file : 1,
433 line_number;
434 union
436 ULONG_PTR pc_offset; /* if is_source_file isn't set */
437 unsigned source_file; /* if is_source_file is set */
438 } u;
441 struct module_pair
443 struct process* pcs;
444 struct module* requested; /* in: to module_get_debug() */
445 struct module* effective; /* out: module with debug info */
448 enum pdb_kind {PDB_JG, PDB_DS};
450 struct pdb_lookup
452 const char* filename;
453 enum pdb_kind kind;
454 DWORD age;
455 DWORD timestamp;
456 GUID guid;
459 struct cpu_stack_walk
461 HANDLE hProcess;
462 HANDLE hThread;
463 BOOL is32;
464 struct cpu * cpu;
465 union
467 struct
469 PREAD_PROCESS_MEMORY_ROUTINE f_read_mem;
470 PTRANSLATE_ADDRESS_ROUTINE f_xlat_adr;
471 PFUNCTION_TABLE_ACCESS_ROUTINE f_tabl_acs;
472 PGET_MODULE_BASE_ROUTINE f_modl_bas;
473 } s32;
474 struct
476 PREAD_PROCESS_MEMORY_ROUTINE64 f_read_mem;
477 PTRANSLATE_ADDRESS_ROUTINE64 f_xlat_adr;
478 PFUNCTION_TABLE_ACCESS_ROUTINE64 f_tabl_acs;
479 PGET_MODULE_BASE_ROUTINE64 f_modl_bas;
480 } s64;
481 } u;
484 struct dump_memory
486 ULONG64 base;
487 ULONG size;
488 ULONG rva;
491 struct dump_memory64
493 ULONG64 base;
494 ULONG64 size;
497 struct dump_module
499 unsigned is_elf;
500 ULONG64 base;
501 ULONG size;
502 DWORD timestamp;
503 DWORD checksum;
504 WCHAR name[MAX_PATH];
507 struct dump_thread
509 ULONG tid;
510 ULONG prio_class;
511 ULONG curr_prio;
514 struct dump_context
516 /* process & thread information */
517 struct process *process;
518 DWORD pid;
519 unsigned flags_out;
520 /* thread information */
521 struct dump_thread* threads;
522 unsigned num_threads;
523 /* module information */
524 struct dump_module* modules;
525 unsigned num_modules;
526 unsigned alloc_modules;
527 /* exception information */
528 /* output information */
529 MINIDUMP_TYPE type;
530 HANDLE hFile;
531 RVA rva;
532 struct dump_memory* mem;
533 unsigned num_mem;
534 unsigned alloc_mem;
535 struct dump_memory64* mem64;
536 unsigned num_mem64;
537 unsigned alloc_mem64;
538 /* callback information */
539 MINIDUMP_CALLBACK_INFORMATION* cb;
542 union ctx
544 CONTEXT ctx;
545 WOW64_CONTEXT x86;
548 enum cpu_addr {cpu_addr_pc, cpu_addr_stack, cpu_addr_frame};
549 struct cpu
551 DWORD machine;
552 DWORD word_size;
553 DWORD frame_regno;
555 /* address manipulation */
556 BOOL (*get_addr)(HANDLE hThread, const CONTEXT* ctx,
557 enum cpu_addr, ADDRESS64* addr);
559 /* stack manipulation */
560 BOOL (*stack_walk)(struct cpu_stack_walk *csw, STACKFRAME64 *frame,
561 union ctx *ctx);
563 /* module manipulation */
564 void* (*find_runtime_function)(struct module*, DWORD64 addr);
566 /* dwarf dedicated information */
567 unsigned (*map_dwarf_register)(unsigned regno, const struct module* module, BOOL eh_frame);
569 /* context related manipulation */
570 void * (*fetch_context_reg)(union ctx *ctx, unsigned regno, unsigned *size);
571 const char* (*fetch_regname)(unsigned regno);
573 /* minidump per CPU extension */
574 BOOL (*fetch_minidump_thread)(struct dump_context* dc, unsigned index, unsigned flags, const CONTEXT* ctx);
575 BOOL (*fetch_minidump_module)(struct dump_context* dc, unsigned index, unsigned flags);
578 extern struct cpu* dbghelp_current_cpu DECLSPEC_HIDDEN;
580 /* Abbreviated 32-bit PEB */
581 typedef struct _PEB32
583 BOOLEAN InheritedAddressSpace;
584 BOOLEAN ReadImageFileExecOptions;
585 BOOLEAN BeingDebugged;
586 BOOLEAN SpareBool;
587 DWORD Mutant;
588 DWORD ImageBaseAddress;
589 DWORD LdrData;
590 DWORD ProcessParameters;
591 DWORD SubSystemData;
592 DWORD ProcessHeap;
593 DWORD FastPebLock;
594 DWORD FastPebLockRoutine;
595 DWORD FastPebUnlockRoutine;
596 ULONG EnvironmentUpdateCount;
597 DWORD KernelCallbackTable;
598 ULONG Reserved[2];
599 } PEB32;
601 /* dbghelp.c */
602 extern struct process* process_find_by_handle(HANDLE hProcess) DECLSPEC_HIDDEN;
603 extern BOOL validate_addr64(DWORD64 addr) DECLSPEC_HIDDEN;
604 extern BOOL pcs_callback(const struct process* pcs, ULONG action, void* data) DECLSPEC_HIDDEN;
605 extern void* fetch_buffer(struct process* pcs, unsigned size) DECLSPEC_HIDDEN;
606 extern const char* wine_dbgstr_addr(const ADDRESS64* addr) DECLSPEC_HIDDEN;
607 extern struct cpu* cpu_find(DWORD) DECLSPEC_HIDDEN;
608 extern DWORD calc_crc32(HANDLE handle) DECLSPEC_HIDDEN;
610 /* elf_module.c */
611 extern BOOL elf_read_wine_loader_dbg_info(struct process* pcs, ULONG_PTR addr) DECLSPEC_HIDDEN;
612 struct elf_thunk_area;
613 extern int elf_is_in_thunk_area(ULONG_PTR addr, const struct elf_thunk_area* thunks) DECLSPEC_HIDDEN;
615 /* macho_module.c */
616 extern BOOL macho_read_wine_loader_dbg_info(struct process* pcs, ULONG_PTR addr) DECLSPEC_HIDDEN;
618 /* minidump.c */
619 void minidump_add_memory_block(struct dump_context* dc, ULONG64 base, ULONG size, ULONG rva) DECLSPEC_HIDDEN;
621 /* module.c */
622 extern const WCHAR S_ElfW[] DECLSPEC_HIDDEN;
623 extern const WCHAR S_WineLoaderW[] DECLSPEC_HIDDEN;
624 extern const WCHAR S_SlashW[] DECLSPEC_HIDDEN;
625 extern const struct loader_ops no_loader_ops DECLSPEC_HIDDEN;
627 extern struct module*
628 module_find_by_addr(const struct process* pcs, DWORD64 addr,
629 enum module_type type) DECLSPEC_HIDDEN;
630 extern struct module*
631 module_find_by_nameW(const struct process* pcs,
632 const WCHAR* name) DECLSPEC_HIDDEN;
633 extern struct module*
634 module_find_by_nameA(const struct process* pcs,
635 const char* name) DECLSPEC_HIDDEN;
636 extern struct module*
637 module_is_already_loaded(const struct process* pcs,
638 const WCHAR* imgname) DECLSPEC_HIDDEN;
639 extern BOOL module_get_debug(struct module_pair*) DECLSPEC_HIDDEN;
640 extern struct module*
641 module_new(struct process* pcs, const WCHAR* name,
642 enum module_type type, BOOL virtual,
643 DWORD64 addr, DWORD64 size,
644 ULONG_PTR stamp, ULONG_PTR checksum) DECLSPEC_HIDDEN;
645 extern struct module*
646 module_get_containee(const struct process* pcs,
647 const struct module* inner) DECLSPEC_HIDDEN;
648 extern void module_reset_debug_info(struct module* module) DECLSPEC_HIDDEN;
649 extern BOOL module_remove(struct process* pcs,
650 struct module* module) DECLSPEC_HIDDEN;
651 extern void module_set_module(struct module* module, const WCHAR* name) DECLSPEC_HIDDEN;
652 extern WCHAR * get_wine_loader_name(struct process *pcs) DECLSPEC_HIDDEN;
654 /* msc.c */
655 extern BOOL pe_load_debug_directory(const struct process* pcs,
656 struct module* module,
657 const BYTE* mapping,
658 const IMAGE_SECTION_HEADER* sectp, DWORD nsect,
659 const IMAGE_DEBUG_DIRECTORY* dbg, int nDbg) DECLSPEC_HIDDEN;
660 extern BOOL pdb_fetch_file_info(const struct pdb_lookup* pdb_lookup, unsigned* matched) DECLSPEC_HIDDEN;
661 struct pdb_cmd_pair {
662 const char* name;
663 DWORD* pvalue;
665 extern BOOL pdb_virtual_unwind(struct cpu_stack_walk *csw, DWORD_PTR ip,
666 union ctx *context, struct pdb_cmd_pair *cpair) DECLSPEC_HIDDEN;
668 /* path.c */
669 extern BOOL path_find_symbol_file(const struct process* pcs, const struct module* module,
670 PCSTR full_path, enum module_type type, const GUID* guid, DWORD dw1, DWORD dw2,
671 WCHAR *buffer, BOOL* is_unmatched) DECLSPEC_HIDDEN;
672 extern WCHAR *get_dos_file_name(const WCHAR *filename) DECLSPEC_HIDDEN;
673 extern BOOL search_dll_path(const WCHAR *name, BOOL (*match)(void*, HANDLE, const WCHAR*), void *param) DECLSPEC_HIDDEN;
674 extern BOOL search_unix_path(const WCHAR *name, const char *path, BOOL (*match)(void*, HANDLE, const WCHAR*), void *param) DECLSPEC_HIDDEN;
675 extern const WCHAR* file_name(const WCHAR* str) DECLSPEC_HIDDEN;
676 extern const char* file_nameA(const char* str) DECLSPEC_HIDDEN;
678 /* pe_module.c */
679 extern BOOL pe_load_nt_header(HANDLE hProc, DWORD64 base, IMAGE_NT_HEADERS* nth) DECLSPEC_HIDDEN;
680 extern struct module*
681 pe_load_native_module(struct process* pcs, const WCHAR* name,
682 HANDLE hFile, DWORD64 base, DWORD size) DECLSPEC_HIDDEN;
683 extern struct module*
684 pe_load_builtin_module(struct process* pcs, const WCHAR* name,
685 DWORD64 base, DWORD64 size) DECLSPEC_HIDDEN;
686 extern BOOL pe_load_debug_info(const struct process* pcs,
687 struct module* module) DECLSPEC_HIDDEN;
688 extern const char* pe_map_directory(struct module* module, int dirno, DWORD* size) DECLSPEC_HIDDEN;
690 /* source.c */
691 extern unsigned source_new(struct module* module, const char* basedir, const char* source) DECLSPEC_HIDDEN;
692 extern const char* source_get(const struct module* module, unsigned idx) DECLSPEC_HIDDEN;
693 extern int source_rb_compare(const void *key, const struct wine_rb_entry *entry) DECLSPEC_HIDDEN;
695 /* stabs.c */
696 typedef void (*stabs_def_cb)(struct module* module, ULONG_PTR load_offset,
697 const char* name, ULONG_PTR offset,
698 BOOL is_public, BOOL is_global, unsigned char other,
699 struct symt_compiland* compiland, void* user);
700 extern BOOL stabs_parse(struct module* module, ULONG_PTR load_offset,
701 const char* stabs, size_t nstab, size_t stabsize,
702 const char* strs, int strtablen,
703 stabs_def_cb callback, void* user) DECLSPEC_HIDDEN;
705 /* dwarf.c */
706 struct image_file_map;
707 extern BOOL dwarf2_parse(struct module* module, ULONG_PTR load_offset,
708 const struct elf_thunk_area* thunks,
709 struct image_file_map* fmap) DECLSPEC_HIDDEN;
710 extern BOOL dwarf2_virtual_unwind(struct cpu_stack_walk *csw, DWORD_PTR ip,
711 union ctx *ctx, DWORD64 *cfa) DECLSPEC_HIDDEN;
713 /* stack.c */
714 extern BOOL sw_read_mem(struct cpu_stack_walk* csw, DWORD64 addr, void* ptr, DWORD sz) DECLSPEC_HIDDEN;
715 extern DWORD64 sw_xlat_addr(struct cpu_stack_walk* csw, ADDRESS64* addr) DECLSPEC_HIDDEN;
716 extern void* sw_table_access(struct cpu_stack_walk* csw, DWORD64 addr) DECLSPEC_HIDDEN;
717 extern DWORD64 sw_module_base(struct cpu_stack_walk* csw, DWORD64 addr) DECLSPEC_HIDDEN;
719 /* symbol.c */
720 extern const char* symt_get_name(const struct symt* sym) DECLSPEC_HIDDEN;
721 extern WCHAR* symt_get_nameW(const struct symt* sym) DECLSPEC_HIDDEN;
722 extern BOOL symt_get_address(const struct symt* type, ULONG64* addr) DECLSPEC_HIDDEN;
723 extern int __cdecl symt_cmp_addr(const void* p1, const void* p2) DECLSPEC_HIDDEN;
724 extern void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si) DECLSPEC_HIDDEN;
725 extern struct symt_ht*
726 symt_find_nearest(struct module* module, DWORD_PTR addr) DECLSPEC_HIDDEN;
727 extern struct symt_compiland*
728 symt_new_compiland(struct module* module, ULONG_PTR address,
729 unsigned src_idx) DECLSPEC_HIDDEN;
730 extern struct symt_public*
731 symt_new_public(struct module* module,
732 struct symt_compiland* parent,
733 const char* typename,
734 BOOL is_function,
735 ULONG_PTR address,
736 unsigned size) DECLSPEC_HIDDEN;
737 extern struct symt_data*
738 symt_new_global_variable(struct module* module,
739 struct symt_compiland* parent,
740 const char* name, unsigned is_static,
741 struct location loc, ULONG_PTR size,
742 struct symt* type) DECLSPEC_HIDDEN;
743 extern struct symt_function*
744 symt_new_function(struct module* module,
745 struct symt_compiland* parent,
746 const char* name,
747 ULONG_PTR addr, ULONG_PTR size,
748 struct symt* type) DECLSPEC_HIDDEN;
749 extern BOOL symt_normalize_function(struct module* module,
750 const struct symt_function* func) DECLSPEC_HIDDEN;
751 extern void symt_add_func_line(struct module* module,
752 struct symt_function* func,
753 unsigned source_idx, int line_num,
754 ULONG_PTR offset) DECLSPEC_HIDDEN;
755 extern struct symt_data*
756 symt_add_func_local(struct module* module,
757 struct symt_function* func,
758 enum DataKind dt, const struct location* loc,
759 struct symt_block* block,
760 struct symt* type, const char* name) DECLSPEC_HIDDEN;
761 extern struct symt_block*
762 symt_open_func_block(struct module* module,
763 struct symt_function* func,
764 struct symt_block* block,
765 unsigned pc, unsigned len) DECLSPEC_HIDDEN;
766 extern struct symt_block*
767 symt_close_func_block(struct module* module,
768 const struct symt_function* func,
769 struct symt_block* block, unsigned pc) DECLSPEC_HIDDEN;
770 extern struct symt_hierarchy_point*
771 symt_add_function_point(struct module* module,
772 struct symt_function* func,
773 enum SymTagEnum point,
774 const struct location* loc,
775 const char* name) DECLSPEC_HIDDEN;
776 extern BOOL symt_fill_func_line_info(const struct module* module,
777 const struct symt_function* func,
778 DWORD64 addr, IMAGEHLP_LINE64* line) DECLSPEC_HIDDEN;
779 extern BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE64 line) DECLSPEC_HIDDEN;
780 extern struct symt_thunk*
781 symt_new_thunk(struct module* module,
782 struct symt_compiland* parent,
783 const char* name, THUNK_ORDINAL ord,
784 ULONG_PTR addr, ULONG_PTR size) DECLSPEC_HIDDEN;
785 extern struct symt_data*
786 symt_new_constant(struct module* module,
787 struct symt_compiland* parent,
788 const char* name, struct symt* type,
789 const VARIANT* v) DECLSPEC_HIDDEN;
790 extern struct symt_hierarchy_point*
791 symt_new_label(struct module* module,
792 struct symt_compiland* compiland,
793 const char* name, ULONG_PTR address) DECLSPEC_HIDDEN;
794 extern struct symt* symt_index2ptr(struct module* module, DWORD id) DECLSPEC_HIDDEN;
795 extern DWORD symt_ptr2index(struct module* module, const struct symt* sym) DECLSPEC_HIDDEN;
797 /* type.c */
798 extern void symt_init_basic(struct module* module) DECLSPEC_HIDDEN;
799 extern BOOL symt_get_info(struct module* module, const struct symt* type,
800 IMAGEHLP_SYMBOL_TYPE_INFO req, void* pInfo) DECLSPEC_HIDDEN;
801 extern struct symt_basic*
802 symt_new_basic(struct module* module, enum BasicType,
803 const char* typename, unsigned size) DECLSPEC_HIDDEN;
804 extern struct symt_udt*
805 symt_new_udt(struct module* module, const char* typename,
806 unsigned size, enum UdtKind kind) DECLSPEC_HIDDEN;
807 extern BOOL symt_set_udt_size(struct module* module,
808 struct symt_udt* type, unsigned size) DECLSPEC_HIDDEN;
809 extern BOOL symt_add_udt_element(struct module* module,
810 struct symt_udt* udt_type,
811 const char* name,
812 struct symt* elt_type, unsigned offset,
813 unsigned size) DECLSPEC_HIDDEN;
814 extern struct symt_enum*
815 symt_new_enum(struct module* module, const char* typename,
816 struct symt* basetype) DECLSPEC_HIDDEN;
817 extern BOOL symt_add_enum_element(struct module* module,
818 struct symt_enum* enum_type,
819 const char* name, int value) DECLSPEC_HIDDEN;
820 extern struct symt_array*
821 symt_new_array(struct module* module, int min, int max,
822 struct symt* base, struct symt* index) DECLSPEC_HIDDEN;
823 extern struct symt_function_signature*
824 symt_new_function_signature(struct module* module,
825 struct symt* ret_type,
826 enum CV_call_e call_conv) DECLSPEC_HIDDEN;
827 extern BOOL symt_add_function_signature_parameter(struct module* module,
828 struct symt_function_signature* sig,
829 struct symt* param) DECLSPEC_HIDDEN;
830 extern struct symt_pointer*
831 symt_new_pointer(struct module* module,
832 struct symt* ref_type,
833 ULONG_PTR size) DECLSPEC_HIDDEN;
834 extern struct symt_typedef*
835 symt_new_typedef(struct module* module, struct symt* ref,
836 const char* name) DECLSPEC_HIDDEN;