dbghelp: Determine the target Mach-O architecture from the process's architecture.
[wine.git] / dlls / dbghelp / dbghelp_private.h
blob0963f1e317164a0553be3a43994444eec99fccf5
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/unicode.h"
34 #include "wine/rbtree.h"
36 #include "cvconst.h"
38 /* #define USE_STATS */
40 struct pool /* poor's man */
42 struct list arena_list;
43 struct list arena_full;
44 size_t arena_size;
47 void pool_init(struct pool* a, size_t arena_size) DECLSPEC_HIDDEN;
48 void pool_destroy(struct pool* a) DECLSPEC_HIDDEN;
49 void* pool_alloc(struct pool* a, size_t len) DECLSPEC_HIDDEN;
50 char* pool_strdup(struct pool* a, const char* str) DECLSPEC_HIDDEN;
52 struct vector
54 void** buckets;
55 unsigned elt_size;
56 unsigned shift;
57 unsigned num_elts;
58 unsigned num_buckets;
59 unsigned buckets_allocated;
62 void vector_init(struct vector* v, unsigned elt_sz, unsigned bucket_sz) DECLSPEC_HIDDEN;
63 unsigned vector_length(const struct vector* v) DECLSPEC_HIDDEN;
64 void* vector_at(const struct vector* v, unsigned pos) DECLSPEC_HIDDEN;
65 void* vector_add(struct vector* v, struct pool* pool) DECLSPEC_HIDDEN;
67 struct sparse_array
69 struct vector key2index;
70 struct vector elements;
73 void sparse_array_init(struct sparse_array* sa, unsigned elt_sz, unsigned bucket_sz) DECLSPEC_HIDDEN;
74 void* sparse_array_find(const struct sparse_array* sa, unsigned long idx) DECLSPEC_HIDDEN;
75 void* sparse_array_add(struct sparse_array* sa, unsigned long key, struct pool* pool) DECLSPEC_HIDDEN;
76 unsigned sparse_array_length(const struct sparse_array* sa) DECLSPEC_HIDDEN;
78 struct hash_table_elt
80 const char* name;
81 struct hash_table_elt* next;
84 struct hash_table_bucket
86 struct hash_table_elt* first;
87 struct hash_table_elt* last;
90 struct hash_table
92 unsigned num_elts;
93 unsigned num_buckets;
94 struct hash_table_bucket* buckets;
95 struct pool* pool;
98 void hash_table_init(struct pool* pool, struct hash_table* ht,
99 unsigned num_buckets) DECLSPEC_HIDDEN;
100 void hash_table_destroy(struct hash_table* ht) DECLSPEC_HIDDEN;
101 void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt) DECLSPEC_HIDDEN;
103 struct hash_table_iter
105 const struct hash_table* ht;
106 struct hash_table_elt* element;
107 int index;
108 int last;
111 void hash_table_iter_init(const struct hash_table* ht,
112 struct hash_table_iter* hti, const char* name) DECLSPEC_HIDDEN;
113 void* hash_table_iter_up(struct hash_table_iter* hti) DECLSPEC_HIDDEN;
116 extern unsigned dbghelp_options DECLSPEC_HIDDEN;
117 /* some more Wine extensions */
118 #define SYMOPT_WINE_WITH_NATIVE_MODULES 0x40000000
120 enum location_kind {loc_error, /* reg is the error code */
121 loc_unavailable, /* location is not available */
122 loc_absolute, /* offset is the location */
123 loc_register, /* reg is the location */
124 loc_regrel, /* [reg+offset] is the location */
125 loc_tlsrel, /* offset is the address of the TLS index */
126 loc_user, /* value is debug information dependent,
127 reg & offset can be used ad libidem */
130 enum location_error {loc_err_internal = -1, /* internal while computing */
131 loc_err_too_complex = -2, /* couldn't compute location (even at runtime) */
132 loc_err_out_of_scope = -3, /* variable isn't available at current address */
133 loc_err_cant_read = -4, /* couldn't read memory at given address */
134 loc_err_no_location = -5, /* likely optimized away (by compiler) */
137 struct location
139 unsigned kind : 8,
140 reg;
141 unsigned long offset;
144 struct symt
146 enum SymTagEnum tag;
149 struct symt_ht
151 struct symt symt;
152 struct hash_table_elt hash_elt; /* if global symbol or type */
155 /* lexical tree */
156 struct symt_block
158 struct symt symt;
159 unsigned long address;
160 unsigned long size;
161 struct symt* container; /* block, or func */
162 struct vector vchildren; /* sub-blocks & local variables */
165 struct symt_compiland
167 struct symt symt;
168 unsigned long address;
169 unsigned source;
170 struct vector vchildren; /* global variables & functions */
173 struct symt_data
175 struct symt symt;
176 struct hash_table_elt hash_elt; /* if global symbol */
177 enum DataKind kind;
178 struct symt* container;
179 struct symt* type;
180 union /* depends on kind */
182 /* DataIs{Global, FileStatic}:
183 * with loc.kind
184 * loc_absolute loc.offset is address
185 * loc_tlsrel loc.offset is TLS index address
186 * DataIs{Local,Param}:
187 * with loc.kind
188 * loc_absolute not supported
189 * loc_register location is in register loc.reg
190 * loc_regrel location is at address loc.reg + loc.offset
191 * >= loc_user ask debug info provider for resolution
193 struct location var;
194 /* DataIs{Member} (all values are in bits, not bytes) */
195 struct
197 long offset;
198 unsigned long length;
199 } member;
200 /* DataIsConstant */
201 VARIANT value;
202 } u;
205 struct symt_function
207 struct symt symt;
208 struct hash_table_elt hash_elt; /* if global symbol */
209 unsigned long address;
210 struct symt* container; /* compiland */
211 struct symt* type; /* points to function_signature */
212 unsigned long size;
213 struct vector vlines;
214 struct vector vchildren; /* locals, params, blocks, start/end, labels */
217 struct symt_hierarchy_point
219 struct symt symt; /* either SymTagFunctionDebugStart, SymTagFunctionDebugEnd, SymTagLabel */
220 struct hash_table_elt hash_elt; /* if label (and in compiland's hash table if global) */
221 struct symt* parent; /* symt_function or symt_compiland */
222 struct location loc;
225 struct symt_public
227 struct symt symt;
228 struct hash_table_elt hash_elt;
229 struct symt* container; /* compiland */
230 unsigned long address;
231 unsigned long size;
234 struct symt_thunk
236 struct symt symt;
237 struct hash_table_elt hash_elt;
238 struct symt* container; /* compiland */
239 unsigned long address;
240 unsigned long 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 unsigned long 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 unsigned long 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;
362 /* specific information for debug types */
363 struct module_format* format_info[DFI_LAST];
365 /* memory allocation pool */
366 struct pool pool;
368 /* symbols & symbol tables */
369 struct vector vsymt;
370 int sortlist_valid;
371 unsigned num_sorttab; /* number of symbols with addresses */
372 unsigned num_symbols;
373 unsigned sorttab_size;
374 struct symt_ht** addr_sorttab;
375 struct hash_table ht_symbols;
377 /* types */
378 struct hash_table ht_types;
379 struct vector vtypes;
381 /* source files */
382 unsigned sources_used;
383 unsigned sources_alloc;
384 char* sources;
385 struct wine_rb_tree sources_offsets_tree;
388 struct process
390 struct process* next;
391 HANDLE handle;
392 WCHAR* search_path;
394 PSYMBOL_REGISTERED_CALLBACK64 reg_cb;
395 PSYMBOL_REGISTERED_CALLBACK reg_cb32;
396 BOOL reg_is_unicode;
397 DWORD64 reg_user;
399 struct module* lmodules;
400 unsigned long dbg_hdr_addr;
402 IMAGEHLP_STACK_FRAME ctx_frame;
404 unsigned buffer_size;
405 void* buffer;
407 BOOL is_64bit;
410 struct line_info
412 unsigned long is_first : 1,
413 is_last : 1,
414 is_source_file : 1,
415 line_number;
416 union
418 unsigned long pc_offset; /* if is_source_file isn't set */
419 unsigned source_file; /* if is_source_file is set */
420 } u;
423 struct module_pair
425 struct process* pcs;
426 struct module* requested; /* in: to module_get_debug() */
427 struct module* effective; /* out: module with debug info */
430 enum pdb_kind {PDB_JG, PDB_DS};
432 struct pdb_lookup
434 const char* filename;
435 enum pdb_kind kind;
436 DWORD age;
437 DWORD timestamp;
438 GUID guid;
441 struct cpu_stack_walk
443 HANDLE hProcess;
444 HANDLE hThread;
445 BOOL is32;
446 union
448 struct
450 PREAD_PROCESS_MEMORY_ROUTINE f_read_mem;
451 PTRANSLATE_ADDRESS_ROUTINE f_xlat_adr;
452 PFUNCTION_TABLE_ACCESS_ROUTINE f_tabl_acs;
453 PGET_MODULE_BASE_ROUTINE f_modl_bas;
454 } s32;
455 struct
457 PREAD_PROCESS_MEMORY_ROUTINE64 f_read_mem;
458 PTRANSLATE_ADDRESS_ROUTINE64 f_xlat_adr;
459 PFUNCTION_TABLE_ACCESS_ROUTINE64 f_tabl_acs;
460 PGET_MODULE_BASE_ROUTINE64 f_modl_bas;
461 } s64;
462 } u;
465 struct dump_memory
467 ULONG64 base;
468 ULONG size;
469 ULONG rva;
472 struct dump_module
474 unsigned is_elf;
475 ULONG64 base;
476 ULONG size;
477 DWORD timestamp;
478 DWORD checksum;
479 WCHAR name[MAX_PATH];
482 struct dump_thread
484 ULONG tid;
485 ULONG prio_class;
486 ULONG curr_prio;
489 struct dump_context
491 /* process & thread information */
492 HANDLE hProcess;
493 DWORD pid;
494 unsigned flags_out;
495 /* thread information */
496 struct dump_thread* threads;
497 unsigned num_threads;
498 /* module information */
499 struct dump_module* modules;
500 unsigned num_modules;
501 unsigned alloc_modules;
502 /* exception information */
503 /* output information */
504 MINIDUMP_TYPE type;
505 HANDLE hFile;
506 RVA rva;
507 struct dump_memory* mem;
508 unsigned num_mem;
509 unsigned alloc_mem;
510 /* callback information */
511 MINIDUMP_CALLBACK_INFORMATION* cb;
514 enum cpu_addr {cpu_addr_pc, cpu_addr_stack, cpu_addr_frame};
515 struct cpu
517 DWORD machine;
518 DWORD word_size;
519 DWORD frame_regno;
521 /* address manipulation */
522 BOOL (*get_addr)(HANDLE hThread, const CONTEXT* ctx,
523 enum cpu_addr, ADDRESS64* addr);
525 /* stack manipulation */
526 BOOL (*stack_walk)(struct cpu_stack_walk* csw, LPSTACKFRAME64 frame, CONTEXT* context);
528 /* module manipulation */
529 void* (*find_runtime_function)(struct module*, DWORD64 addr);
531 /* dwarf dedicated information */
532 unsigned (*map_dwarf_register)(unsigned regno, BOOL eh_frame);
534 /* context related manipulation */
535 void* (*fetch_context_reg)(CONTEXT* context, unsigned regno, unsigned* size);
536 const char* (*fetch_regname)(unsigned regno);
538 /* minidump per CPU extension */
539 BOOL (*fetch_minidump_thread)(struct dump_context* dc, unsigned index, unsigned flags, const CONTEXT* ctx);
540 BOOL (*fetch_minidump_module)(struct dump_context* dc, unsigned index, unsigned flags);
543 extern struct cpu* dbghelp_current_cpu DECLSPEC_HIDDEN;
545 /* Abbreviated 32-bit PEB */
546 typedef struct _PEB32
548 BOOLEAN InheritedAddressSpace;
549 BOOLEAN ReadImageFileExecOptions;
550 BOOLEAN BeingDebugged;
551 BOOLEAN SpareBool;
552 DWORD Mutant;
553 DWORD ImageBaseAddress;
554 DWORD LdrData;
555 DWORD ProcessParameters;
556 DWORD SubSystemData;
557 DWORD ProcessHeap;
558 DWORD FastPebLock;
559 DWORD FastPebLockRoutine;
560 DWORD FastPebUnlockRoutine;
561 ULONG EnvironmentUpdateCount;
562 DWORD KernelCallbackTable;
563 ULONG Reserved[2];
564 } PEB32;
566 /* dbghelp.c */
567 extern struct process* process_find_by_handle(HANDLE hProcess) DECLSPEC_HIDDEN;
568 extern BOOL validate_addr64(DWORD64 addr) DECLSPEC_HIDDEN;
569 extern BOOL pcs_callback(const struct process* pcs, ULONG action, void* data) DECLSPEC_HIDDEN;
570 extern void* fetch_buffer(struct process* pcs, unsigned size) DECLSPEC_HIDDEN;
571 extern const char* wine_dbgstr_addr(const ADDRESS64* addr) DECLSPEC_HIDDEN;
572 extern struct cpu* cpu_find(DWORD) DECLSPEC_HIDDEN;
574 /* crc32.c */
575 extern DWORD calc_crc32(int fd) DECLSPEC_HIDDEN;
577 typedef BOOL (*enum_modules_cb)(const WCHAR*, unsigned long addr, void* user);
579 /* elf_module.c */
580 extern BOOL elf_enum_modules(HANDLE hProc, enum_modules_cb, void*) DECLSPEC_HIDDEN;
581 extern BOOL elf_fetch_file_info(const WCHAR* name, DWORD_PTR* base, DWORD* size, DWORD* checksum) DECLSPEC_HIDDEN;
582 struct image_file_map;
583 extern BOOL elf_load_debug_info(struct module* module) DECLSPEC_HIDDEN;
584 extern struct module*
585 elf_load_module(struct process* pcs, const WCHAR* name, unsigned long) DECLSPEC_HIDDEN;
586 extern BOOL elf_read_wine_loader_dbg_info(struct process* pcs) DECLSPEC_HIDDEN;
587 extern BOOL elf_synchronize_module_list(struct process* pcs) DECLSPEC_HIDDEN;
588 struct elf_thunk_area;
589 extern int elf_is_in_thunk_area(unsigned long addr, const struct elf_thunk_area* thunks) DECLSPEC_HIDDEN;
591 /* macho_module.c */
592 extern BOOL macho_enum_modules(HANDLE hProc, enum_modules_cb, void*) DECLSPEC_HIDDEN;
593 extern BOOL macho_fetch_file_info(HANDLE process, const WCHAR* name, unsigned long load_addr, DWORD_PTR* base, DWORD* size, DWORD* checksum) DECLSPEC_HIDDEN;
594 extern BOOL macho_load_debug_info(struct process *pcs, struct module* module) DECLSPEC_HIDDEN;
595 extern struct module*
596 macho_load_module(struct process* pcs, const WCHAR* name, unsigned long) DECLSPEC_HIDDEN;
597 extern BOOL macho_read_wine_loader_dbg_info(struct process* pcs) DECLSPEC_HIDDEN;
598 extern BOOL macho_synchronize_module_list(struct process* pcs) DECLSPEC_HIDDEN;
600 /* minidump.c */
601 void minidump_add_memory_block(struct dump_context* dc, ULONG64 base, ULONG size, ULONG rva) DECLSPEC_HIDDEN;
603 /* module.c */
604 extern const WCHAR S_ElfW[] DECLSPEC_HIDDEN;
605 extern const WCHAR S_WineLoaderW[] DECLSPEC_HIDDEN;
606 extern const WCHAR S_SlashW[] DECLSPEC_HIDDEN;
608 extern struct module*
609 module_find_by_addr(const struct process* pcs, DWORD64 addr,
610 enum module_type type) DECLSPEC_HIDDEN;
611 extern struct module*
612 module_find_by_nameW(const struct process* pcs,
613 const WCHAR* name) DECLSPEC_HIDDEN;
614 extern struct module*
615 module_find_by_nameA(const struct process* pcs,
616 const char* name) DECLSPEC_HIDDEN;
617 extern struct module*
618 module_is_already_loaded(const struct process* pcs,
619 const WCHAR* imgname) DECLSPEC_HIDDEN;
620 extern BOOL module_get_debug(struct module_pair*) DECLSPEC_HIDDEN;
621 extern struct module*
622 module_new(struct process* pcs, const WCHAR* name,
623 enum module_type type, BOOL virtual,
624 DWORD64 addr, DWORD64 size,
625 unsigned long stamp, unsigned long checksum) DECLSPEC_HIDDEN;
626 extern struct module*
627 module_get_containee(const struct process* pcs,
628 const struct module* inner) DECLSPEC_HIDDEN;
629 extern enum module_type
630 module_get_type_by_name(const WCHAR* name) DECLSPEC_HIDDEN;
631 extern void module_reset_debug_info(struct module* module) DECLSPEC_HIDDEN;
632 extern BOOL module_remove(struct process* pcs,
633 struct module* module) DECLSPEC_HIDDEN;
634 extern void module_set_module(struct module* module, const WCHAR* name) DECLSPEC_HIDDEN;
635 extern WCHAR * get_wine_loader_name(struct process *pcs) DECLSPEC_HIDDEN;
637 /* msc.c */
638 extern BOOL pe_load_debug_directory(const struct process* pcs,
639 struct module* module,
640 const BYTE* mapping,
641 const IMAGE_SECTION_HEADER* sectp, DWORD nsect,
642 const IMAGE_DEBUG_DIRECTORY* dbg, int nDbg) DECLSPEC_HIDDEN;
643 extern BOOL pdb_fetch_file_info(const struct pdb_lookup* pdb_lookup, unsigned* matched) DECLSPEC_HIDDEN;
644 struct pdb_cmd_pair {
645 const char* name;
646 DWORD* pvalue;
648 extern BOOL pdb_virtual_unwind(struct cpu_stack_walk* csw, DWORD_PTR ip,
649 CONTEXT* context, struct pdb_cmd_pair* cpair) DECLSPEC_HIDDEN;
651 /* path.c */
652 extern BOOL path_find_symbol_file(const struct process* pcs, PCSTR full_path,
653 const GUID* guid, DWORD dw1, DWORD dw2, PSTR buffer,
654 BOOL* is_unmatched) DECLSPEC_HIDDEN;
656 /* pe_module.c */
657 extern BOOL pe_load_nt_header(HANDLE hProc, DWORD64 base, IMAGE_NT_HEADERS* nth) DECLSPEC_HIDDEN;
658 extern struct module*
659 pe_load_native_module(struct process* pcs, const WCHAR* name,
660 HANDLE hFile, DWORD64 base, DWORD size) DECLSPEC_HIDDEN;
661 extern struct module*
662 pe_load_builtin_module(struct process* pcs, const WCHAR* name,
663 DWORD64 base, DWORD64 size) DECLSPEC_HIDDEN;
664 extern BOOL pe_load_debug_info(const struct process* pcs,
665 struct module* module) DECLSPEC_HIDDEN;
666 extern const char* pe_map_directory(struct module* module, int dirno, DWORD* size) DECLSPEC_HIDDEN;
668 /* source.c */
669 extern unsigned source_new(struct module* module, const char* basedir, const char* source) DECLSPEC_HIDDEN;
670 extern const char* source_get(const struct module* module, unsigned idx) DECLSPEC_HIDDEN;
671 extern int source_rb_compare(const void *key, const struct wine_rb_entry *entry) DECLSPEC_HIDDEN;
673 /* stabs.c */
674 typedef void (*stabs_def_cb)(struct module* module, unsigned long load_offset,
675 const char* name, unsigned long offset,
676 BOOL is_public, BOOL is_global, unsigned char other,
677 struct symt_compiland* compiland, void* user);
678 extern BOOL stabs_parse(struct module* module, unsigned long load_offset,
679 const void* stabs, int stablen,
680 const char* strs, int strtablen,
681 stabs_def_cb callback, void* user) DECLSPEC_HIDDEN;
683 /* dwarf.c */
684 extern BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
685 const struct elf_thunk_area* thunks,
686 struct image_file_map* fmap) DECLSPEC_HIDDEN;
687 extern BOOL dwarf2_virtual_unwind(struct cpu_stack_walk* csw, DWORD_PTR ip,
688 CONTEXT* context, ULONG_PTR* cfa) DECLSPEC_HIDDEN;
690 /* stack.c */
691 extern BOOL sw_read_mem(struct cpu_stack_walk* csw, DWORD64 addr, void* ptr, DWORD sz) DECLSPEC_HIDDEN;
692 extern DWORD64 sw_xlat_addr(struct cpu_stack_walk* csw, ADDRESS64* addr) DECLSPEC_HIDDEN;
693 extern void* sw_table_access(struct cpu_stack_walk* csw, DWORD64 addr) DECLSPEC_HIDDEN;
694 extern DWORD64 sw_module_base(struct cpu_stack_walk* csw, DWORD64 addr) DECLSPEC_HIDDEN;
696 /* symbol.c */
697 extern const char* symt_get_name(const struct symt* sym) DECLSPEC_HIDDEN;
698 extern WCHAR* symt_get_nameW(const struct symt* sym) DECLSPEC_HIDDEN;
699 extern BOOL symt_get_address(const struct symt* type, ULONG64* addr) DECLSPEC_HIDDEN;
700 extern int symt_cmp_addr(const void* p1, const void* p2) DECLSPEC_HIDDEN;
701 extern void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si) DECLSPEC_HIDDEN;
702 extern struct symt_ht*
703 symt_find_nearest(struct module* module, DWORD_PTR addr) DECLSPEC_HIDDEN;
704 extern struct symt_compiland*
705 symt_new_compiland(struct module* module, unsigned long address,
706 unsigned src_idx) DECLSPEC_HIDDEN;
707 extern struct symt_public*
708 symt_new_public(struct module* module,
709 struct symt_compiland* parent,
710 const char* typename,
711 unsigned long address, unsigned size) DECLSPEC_HIDDEN;
712 extern struct symt_data*
713 symt_new_global_variable(struct module* module,
714 struct symt_compiland* parent,
715 const char* name, unsigned is_static,
716 struct location loc, unsigned long size,
717 struct symt* type) DECLSPEC_HIDDEN;
718 extern struct symt_function*
719 symt_new_function(struct module* module,
720 struct symt_compiland* parent,
721 const char* name,
722 unsigned long addr, unsigned long size,
723 struct symt* type) DECLSPEC_HIDDEN;
724 extern BOOL symt_normalize_function(struct module* module,
725 const struct symt_function* func) DECLSPEC_HIDDEN;
726 extern void symt_add_func_line(struct module* module,
727 struct symt_function* func,
728 unsigned source_idx, int line_num,
729 unsigned long offset) DECLSPEC_HIDDEN;
730 extern struct symt_data*
731 symt_add_func_local(struct module* module,
732 struct symt_function* func,
733 enum DataKind dt, const struct location* loc,
734 struct symt_block* block,
735 struct symt* type, const char* name) DECLSPEC_HIDDEN;
736 extern struct symt_block*
737 symt_open_func_block(struct module* module,
738 struct symt_function* func,
739 struct symt_block* block,
740 unsigned pc, unsigned len) DECLSPEC_HIDDEN;
741 extern struct symt_block*
742 symt_close_func_block(struct module* module,
743 const struct symt_function* func,
744 struct symt_block* block, unsigned pc) DECLSPEC_HIDDEN;
745 extern struct symt_hierarchy_point*
746 symt_add_function_point(struct module* module,
747 struct symt_function* func,
748 enum SymTagEnum point,
749 const struct location* loc,
750 const char* name) DECLSPEC_HIDDEN;
751 extern BOOL symt_fill_func_line_info(const struct module* module,
752 const struct symt_function* func,
753 DWORD64 addr, IMAGEHLP_LINE64* line) DECLSPEC_HIDDEN;
754 extern BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE64 line) DECLSPEC_HIDDEN;
755 extern struct symt_thunk*
756 symt_new_thunk(struct module* module,
757 struct symt_compiland* parent,
758 const char* name, THUNK_ORDINAL ord,
759 unsigned long addr, unsigned long size) DECLSPEC_HIDDEN;
760 extern struct symt_data*
761 symt_new_constant(struct module* module,
762 struct symt_compiland* parent,
763 const char* name, struct symt* type,
764 const VARIANT* v) DECLSPEC_HIDDEN;
765 extern struct symt_hierarchy_point*
766 symt_new_label(struct module* module,
767 struct symt_compiland* compiland,
768 const char* name, unsigned long address) DECLSPEC_HIDDEN;
769 extern struct symt* symt_index2ptr(struct module* module, DWORD id) DECLSPEC_HIDDEN;
770 extern DWORD symt_ptr2index(struct module* module, const struct symt* sym) DECLSPEC_HIDDEN;
772 /* type.c */
773 extern void symt_init_basic(struct module* module) DECLSPEC_HIDDEN;
774 extern BOOL symt_get_info(struct module* module, const struct symt* type,
775 IMAGEHLP_SYMBOL_TYPE_INFO req, void* pInfo) DECLSPEC_HIDDEN;
776 extern struct symt_basic*
777 symt_new_basic(struct module* module, enum BasicType,
778 const char* typename, unsigned size) DECLSPEC_HIDDEN;
779 extern struct symt_udt*
780 symt_new_udt(struct module* module, const char* typename,
781 unsigned size, enum UdtKind kind) DECLSPEC_HIDDEN;
782 extern BOOL symt_set_udt_size(struct module* module,
783 struct symt_udt* type, unsigned size) DECLSPEC_HIDDEN;
784 extern BOOL symt_add_udt_element(struct module* module,
785 struct symt_udt* udt_type,
786 const char* name,
787 struct symt* elt_type, unsigned offset,
788 unsigned size) DECLSPEC_HIDDEN;
789 extern struct symt_enum*
790 symt_new_enum(struct module* module, const char* typename,
791 struct symt* basetype) DECLSPEC_HIDDEN;
792 extern BOOL symt_add_enum_element(struct module* module,
793 struct symt_enum* enum_type,
794 const char* name, int value) DECLSPEC_HIDDEN;
795 extern struct symt_array*
796 symt_new_array(struct module* module, int min, int max,
797 struct symt* base, struct symt* index) DECLSPEC_HIDDEN;
798 extern struct symt_function_signature*
799 symt_new_function_signature(struct module* module,
800 struct symt* ret_type,
801 enum CV_call_e call_conv) DECLSPEC_HIDDEN;
802 extern BOOL symt_add_function_signature_parameter(struct module* module,
803 struct symt_function_signature* sig,
804 struct symt* param) DECLSPEC_HIDDEN;
805 extern struct symt_pointer*
806 symt_new_pointer(struct module* module,
807 struct symt* ref_type,
808 unsigned long size) DECLSPEC_HIDDEN;
809 extern struct symt_typedef*
810 symt_new_typedef(struct module* module, struct symt* ref,
811 const char* name) DECLSPEC_HIDDEN;