2 * File symbol.c - management of symbols (lexical tree)
4 * Copyright (C) 1993, Eric Youngdale.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #define NONAMELESSUNION
23 #define NONAMELESSSTRUCT
31 #include <sys/types.h>
37 #include "wine/debug.h"
38 #include "dbghelp_private.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
42 WINE_DECLARE_DEBUG_CHANNEL(dbghelp_symt);
44 static inline int cmp_addr(ULONG64 a1, ULONG64 a2)
46 if (a1 > a2) return 1;
47 if (a1 < a2) return -1;
51 static inline int cmp_sorttab_addr(struct module* module, int idx, ULONG64 addr)
55 symt_get_info(module, &module->addr_sorttab[idx]->symt, TI_GET_ADDRESS, &ref);
56 return cmp_addr(ref, addr);
59 struct module* symt_cmp_addr_module = NULL;
61 int symt_cmp_addr(const void* p1, const void* p2)
63 const struct symt* sym1 = *(const struct symt* const *)p1;
64 const struct symt* sym2 = *(const struct symt* const *)p2;
67 symt_get_info(symt_cmp_addr_module, sym1, TI_GET_ADDRESS, &a1);
68 symt_get_info(symt_cmp_addr_module, sym2, TI_GET_ADDRESS, &a2);
69 return cmp_addr(a1, a2);
72 DWORD symt_ptr2index(struct module* module, const struct symt* sym)
75 const struct symt** c;
76 int len = vector_length(&module->vsymt), i;
78 /* FIXME: this is inefficient */
79 for (i = 0; i < len; i++)
81 if (*(struct symt**)vector_at(&module->vsymt, i) == sym)
85 c = vector_add(&module->vsymt, &module->pool);
93 struct symt* symt_index2ptr(struct module* module, DWORD id)
96 if (!id-- || id >= vector_length(&module->vsymt)) return NULL;
97 return *(struct symt**)vector_at(&module->vsymt, id);
99 return (struct symt*)id;
103 static BOOL symt_grow_sorttab(struct module* module, unsigned sz)
105 struct symt_ht** new;
108 if (sz <= module->sorttab_size) return TRUE;
109 if (module->addr_sorttab)
111 size = module->sorttab_size * 2;
112 new = HeapReAlloc(GetProcessHeap(), 0, module->addr_sorttab,
113 size * sizeof(struct symt_ht*));
118 new = HeapAlloc(GetProcessHeap(), 0, size * sizeof(struct symt_ht*));
120 if (!new) return FALSE;
121 module->sorttab_size = size;
122 module->addr_sorttab = new;
126 static void symt_add_module_ht(struct module* module, struct symt_ht* ht)
130 hash_table_add(&module->ht_symbols, &ht->hash_elt);
131 /* Don't store in sorttab a symbol without address, they are of
132 * no use here (e.g. constant values)
134 if (symt_get_info(module, &ht->symt, TI_GET_ADDRESS, &addr) &&
135 symt_grow_sorttab(module, module->num_symbols + 1))
137 module->addr_sorttab[module->num_symbols++] = ht;
138 module->sortlist_valid = FALSE;
144 /* transforms a dbghelp's regular expression into a POSIX one
145 * Here are the valid dbghelp reg ex characters:
146 * * 0 or more characters
147 * ? a single character
149 * # 0 or more of preceding char
150 * + 1 or more of preceding char
151 * escapes \ on #, ?, [, ], *, +. don't work on -
153 static void compile_regex(const char* str, int numchar, regex_t* re, BOOL _case)
156 BOOL in_escape = FALSE;
157 unsigned flags = REG_NOSUB;
159 if (numchar == -1) numchar = strlen( str );
161 p = mask = HeapAlloc( GetProcessHeap(), 0, 2 * numchar + 3 );
164 while (*str && numchar--)
166 /* FIXME: this shouldn't be valid on '-' */
175 case '\\': in_escape = TRUE; break;
176 case '*': *p++ = '.'; *p++ = '*'; break;
177 case '?': *p++ = '.'; break;
178 case '#': *p++ = '*'; break;
179 /* escape some valid characters in dbghelp reg exp:s */
180 case '$': *p++ = '\\'; *p++ = '$'; break;
181 /* +, [, ], - are the same in dbghelp & POSIX, use them as any other char */
182 default: *p++ = *str; break;
193 if (_case) flags |= REG_ICASE;
194 if (regcomp(re, mask, flags)) FIXME("Couldn't compile %s\n", mask);
195 HeapFree(GetProcessHeap(), 0, mask);
198 static BOOL compile_file_regex(regex_t* re, const char* srcfile)
203 if (!srcfile || !*srcfile) return regcomp(re, ".*", REG_NOSUB);
205 p = mask = HeapAlloc(GetProcessHeap(), 0, 5 * strlen(srcfile) + 4);
231 ret = !regcomp(re, mask, REG_NOSUB);
232 HeapFree(GetProcessHeap(), 0, mask);
235 FIXME("Couldn't compile %s\n", mask);
236 SetLastError(ERROR_INVALID_PARAMETER);
241 static int match_regexp( const regex_t *re, const char *str )
243 return !regexec( re, str, 0, NULL, 0 );
246 #else /* HAVE_REGEX_H */
248 /* if we don't have regexp support, fall back to a simple string comparison */
256 static void compile_regex(const char* str, int numchar, regex_t* re, BOOL _case)
258 if (numchar == -1) numchar = strlen( str );
260 re->str = HeapAlloc( GetProcessHeap(), 0, numchar + 1 );
261 memcpy( re->str, str, numchar );
262 re->str[numchar] = 0;
266 static BOOL compile_file_regex(regex_t* re, const char* srcfile)
268 if (!srcfile || !*srcfile) re->str = NULL;
269 else compile_regex( srcfile, -1, re, FALSE );
273 static int match_regexp( const regex_t *re, const char *str )
275 if (!re->str) return 1;
276 if (re->icase) return !lstrcmpiA( re->str, str );
277 return !strcmp( re->str, str );
280 static void regfree( regex_t *re )
282 HeapFree( GetProcessHeap(), 0, re->str );
285 #endif /* HAVE_REGEX_H */
287 struct symt_compiland* symt_new_compiland(struct module* module,
288 unsigned long address, unsigned src_idx)
290 struct symt_compiland* sym;
292 TRACE_(dbghelp_symt)("Adding compiland symbol %s:%s\n",
293 debugstr_w(module->module.ModuleName), source_get(module, src_idx));
294 if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
296 sym->symt.tag = SymTagCompiland;
297 sym->address = address;
298 sym->source = src_idx;
299 vector_init(&sym->vchildren, sizeof(struct symt*), 32);
304 struct symt_public* symt_new_public(struct module* module,
305 struct symt_compiland* compiland,
307 unsigned long address, unsigned size)
309 struct symt_public* sym;
312 TRACE_(dbghelp_symt)("Adding public symbol %s:%s @%lx\n",
313 debugstr_w(module->module.ModuleName), name, address);
314 if ((dbghelp_options & SYMOPT_AUTO_PUBLICS) &&
315 symt_find_nearest(module, address) != NULL)
317 if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
319 sym->symt.tag = SymTagPublicSymbol;
320 sym->hash_elt.name = pool_strdup(&module->pool, name);
321 sym->container = compiland ? &compiland->symt : NULL;
322 sym->address = address;
324 symt_add_module_ht(module, (struct symt_ht*)sym);
327 p = vector_add(&compiland->vchildren, &module->pool);
334 struct symt_data* symt_new_global_variable(struct module* module,
335 struct symt_compiland* compiland,
336 const char* name, unsigned is_static,
337 unsigned long addr, unsigned long size,
340 struct symt_data* sym;
344 TRACE_(dbghelp_symt)("Adding global symbol %s:%s @%lx %p\n",
345 debugstr_w(module->module.ModuleName), name, addr, type);
346 if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
348 sym->symt.tag = SymTagData;
349 sym->hash_elt.name = pool_strdup(&module->pool, name);
350 sym->kind = is_static ? DataIsFileStatic : DataIsGlobal;
351 sym->container = compiland ? &compiland->symt : NULL;
353 sym->u.var.offset = addr;
354 if (type && size && symt_get_info(module, type, TI_GET_LENGTH, &tsz))
357 FIXME("Size mismatch for %s.%s between type (%s) and src (%lu)\n",
358 debugstr_w(module->module.ModuleName), name,
359 wine_dbgstr_longlong(tsz), size);
361 symt_add_module_ht(module, (struct symt_ht*)sym);
364 p = vector_add(&compiland->vchildren, &module->pool);
371 struct symt_function* symt_new_function(struct module* module,
372 struct symt_compiland* compiland,
374 unsigned long addr, unsigned long size,
375 struct symt* sig_type)
377 struct symt_function* sym;
380 TRACE_(dbghelp_symt)("Adding global function %s:%s @%lx-%lx\n",
381 debugstr_w(module->module.ModuleName), name, addr, addr + size - 1);
383 assert(!sig_type || sig_type->tag == SymTagFunctionType);
384 if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
386 sym->symt.tag = SymTagFunction;
387 sym->hash_elt.name = pool_strdup(&module->pool, name);
388 sym->container = &compiland->symt;
390 sym->type = sig_type;
392 vector_init(&sym->vlines, sizeof(struct line_info), 64);
393 vector_init(&sym->vchildren, sizeof(struct symt*), 8);
394 symt_add_module_ht(module, (struct symt_ht*)sym);
397 p = vector_add(&compiland->vchildren, &module->pool);
404 void symt_add_func_line(struct module* module, struct symt_function* func,
405 unsigned source_idx, int line_num, unsigned long offset)
407 struct line_info* dli;
408 BOOL last_matches = FALSE;
411 if (func == NULL || !(dbghelp_options & SYMOPT_LOAD_LINES)) return;
413 TRACE_(dbghelp_symt)("(%p)%s:%lx %s:%u\n",
414 func, func->hash_elt.name, offset,
415 source_get(module, source_idx), line_num);
417 assert(func->symt.tag == SymTagFunction);
419 for (i=vector_length(&func->vlines)-1; i>=0; i--)
421 dli = vector_at(&func->vlines, i);
422 if (dli->is_source_file)
424 last_matches = (source_idx == dli->u.source_file);
431 /* we shouldn't have line changes on first line of function */
432 dli = vector_add(&func->vlines, &module->pool);
433 dli->is_source_file = 1;
434 dli->is_first = dli->is_last = 0;
435 dli->line_number = 0;
436 dli->u.source_file = source_idx;
438 dli = vector_add(&func->vlines, &module->pool);
439 dli->is_source_file = 0;
440 dli->is_first = dli->is_last = 0;
441 dli->line_number = line_num;
442 dli->u.pc_offset = func->address + offset;
445 /******************************************************************
446 * symt_add_func_local
448 * Adds a new local/parameter to a given function:
449 * In any cases, dt tells whether it's a local variable or a parameter
450 * If regno it's not 0:
451 * - then variable is stored in a register
452 * - otherwise, value is referenced by register + offset
453 * Otherwise, the variable is stored on the stack:
454 * - offset is then the offset from the frame register
456 struct symt_data* symt_add_func_local(struct module* module,
457 struct symt_function* func,
459 const struct location* loc,
460 struct symt_block* block,
461 struct symt* type, const char* name)
463 struct symt_data* locsym;
466 TRACE_(dbghelp_symt)("Adding local symbol (%s:%s): %s %p\n",
467 debugstr_w(module->module.ModuleName), func->hash_elt.name,
471 assert(func->symt.tag == SymTagFunction);
472 assert(dt == DataIsParam || dt == DataIsLocal);
474 locsym = pool_alloc(&module->pool, sizeof(*locsym));
475 locsym->symt.tag = SymTagData;
476 locsym->hash_elt.name = pool_strdup(&module->pool, name);
477 locsym->hash_elt.next = NULL;
479 locsym->container = &block->symt;
481 locsym->u.var = *loc;
483 p = vector_add(&block->vchildren, &module->pool);
485 p = vector_add(&func->vchildren, &module->pool);
491 struct symt_block* symt_open_func_block(struct module* module,
492 struct symt_function* func,
493 struct symt_block* parent_block,
494 unsigned pc, unsigned len)
496 struct symt_block* block;
500 assert(func->symt.tag == SymTagFunction);
502 assert(!parent_block || parent_block->symt.tag == SymTagBlock);
503 block = pool_alloc(&module->pool, sizeof(*block));
504 block->symt.tag = SymTagBlock;
505 block->address = func->address + pc;
507 block->container = parent_block ? &parent_block->symt : &func->symt;
508 vector_init(&block->vchildren, sizeof(struct symt*), 4);
510 p = vector_add(&parent_block->vchildren, &module->pool);
512 p = vector_add(&func->vchildren, &module->pool);
518 struct symt_block* symt_close_func_block(struct module* module,
519 const struct symt_function* func,
520 struct symt_block* block, unsigned pc)
523 assert(func->symt.tag == SymTagFunction);
525 if (pc) block->size = func->address + pc - block->address;
526 return (block->container->tag == SymTagBlock) ?
527 GET_ENTRY(block->container, struct symt_block, symt) : NULL;
530 struct symt_hierarchy_point* symt_add_function_point(struct module* module,
531 struct symt_function* func,
532 enum SymTagEnum point,
533 const struct location* loc,
536 struct symt_hierarchy_point*sym;
539 if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
541 sym->symt.tag = point;
542 sym->parent = &func->symt;
544 sym->hash_elt.name = name ? pool_strdup(&module->pool, name) : NULL;
545 p = vector_add(&func->vchildren, &module->pool);
551 BOOL symt_normalize_function(struct module* module, const struct symt_function* func)
554 struct line_info* dli;
557 /* We aren't adding any more locals or line numbers to this function.
558 * Free any spare memory that we might have allocated.
560 assert(func->symt.tag == SymTagFunction);
562 /* EPP vector_pool_normalize(&func->vlines, &module->pool); */
563 /* EPP vector_pool_normalize(&func->vchildren, &module->pool); */
565 len = vector_length(&func->vlines);
568 dli = vector_at(&func->vlines, 0); dli->is_first = 1;
569 dli = vector_at(&func->vlines, len); dli->is_last = 1;
574 struct symt_thunk* symt_new_thunk(struct module* module,
575 struct symt_compiland* compiland,
576 const char* name, THUNK_ORDINAL ord,
577 unsigned long addr, unsigned long size)
579 struct symt_thunk* sym;
581 TRACE_(dbghelp_symt)("Adding global thunk %s:%s @%lx-%lx\n",
582 debugstr_w(module->module.ModuleName), name, addr, addr + size - 1);
584 if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
586 sym->symt.tag = SymTagThunk;
587 sym->hash_elt.name = pool_strdup(&module->pool, name);
588 sym->container = &compiland->symt;
592 symt_add_module_ht(module, (struct symt_ht*)sym);
596 p = vector_add(&compiland->vchildren, &module->pool);
603 struct symt_data* symt_new_constant(struct module* module,
604 struct symt_compiland* compiland,
605 const char* name, struct symt* type,
608 struct symt_data* sym;
610 TRACE_(dbghelp_symt)("Adding constant value %s:%s\n",
611 debugstr_w(module->module.ModuleName), name);
613 if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
615 sym->symt.tag = SymTagData;
616 sym->hash_elt.name = pool_strdup(&module->pool, name);
617 sym->kind = DataIsConstant;
618 sym->container = compiland ? &compiland->symt : NULL;
621 symt_add_module_ht(module, (struct symt_ht*)sym);
625 p = vector_add(&compiland->vchildren, &module->pool);
632 struct symt_hierarchy_point* symt_new_label(struct module* module,
633 struct symt_compiland* compiland,
634 const char* name, unsigned long address)
636 struct symt_hierarchy_point* sym;
638 TRACE_(dbghelp_symt)("Adding global label value %s:%s\n",
639 debugstr_w(module->module.ModuleName), name);
641 if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
643 sym->symt.tag = SymTagLabel;
644 sym->hash_elt.name = pool_strdup(&module->pool, name);
645 sym->loc.kind = loc_absolute;
646 sym->loc.offset = address;
647 sym->parent = compiland ? &compiland->symt : NULL;
648 symt_add_module_ht(module, (struct symt_ht*)sym);
652 p = vector_add(&compiland->vchildren, &module->pool);
659 /* expect sym_info->MaxNameLen to be set before being called */
660 static void symt_fill_sym_info(struct module_pair* pair,
661 const struct symt_function* func,
662 const struct symt* sym, SYMBOL_INFO* sym_info)
667 if (!symt_get_info(pair->effective, sym, TI_GET_TYPE, &sym_info->TypeIndex))
668 sym_info->TypeIndex = 0;
669 sym_info->info = symt_ptr2index(pair->effective, sym);
670 sym_info->Reserved[0] = sym_info->Reserved[1] = 0;
671 if (!symt_get_info(pair->effective, sym, TI_GET_LENGTH, &size) &&
672 (!sym_info->TypeIndex ||
673 !symt_get_info(pair->effective, symt_index2ptr(pair->effective, sym_info->TypeIndex),
674 TI_GET_LENGTH, &size)))
676 sym_info->Size = (DWORD)size;
677 sym_info->ModBase = pair->requested->module.BaseOfImage;
685 const struct symt_data* data = (const struct symt_data*)sym;
689 sym_info->Flags |= SYMFLAG_PARAMETER;
693 struct location loc = data->u.var;
695 if (loc.kind >= loc_user)
698 struct module_format* modfmt;
700 for (i = 0; i < DFI_LAST; i++)
702 modfmt = pair->effective->format_info[i];
703 if (modfmt && modfmt->loc_compute)
705 modfmt->loc_compute(pair->pcs, modfmt, func, &loc);
713 /* for now we report error cases as a negative register number */
714 sym_info->Flags |= SYMFLAG_LOCAL;
717 sym_info->Flags |= SYMFLAG_REGISTER;
718 sym_info->Register = loc.reg;
719 sym_info->Address = 0;
722 sym_info->Flags |= SYMFLAG_LOCAL | SYMFLAG_REGREL;
723 /* FIXME: it's i386 dependent !!! */
724 sym_info->Register = loc.reg ? loc.reg : CV_REG_EBP;
725 sym_info->Address = loc.offset;
728 FIXME("Shouldn't happen (kind=%d), debug reader backend is broken\n", loc.kind);
734 case DataIsFileStatic:
735 symt_get_info(pair->effective, sym, TI_GET_ADDRESS, &sym_info->Address);
736 sym_info->Register = 0;
739 sym_info->Flags |= SYMFLAG_VALUEPRESENT;
740 switch (data->u.value.n1.n2.vt)
742 case VT_I4: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.lVal; break;
743 case VT_I2: sym_info->Value = (ULONG)(long)data->u.value.n1.n2.n3.iVal; break;
744 case VT_I1: sym_info->Value = (ULONG)(long)data->u.value.n1.n2.n3.cVal; break;
745 case VT_UI4: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.ulVal; break;
746 case VT_UI2: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.uiVal; break;
747 case VT_UI1: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.bVal; break;
748 case VT_I1 | VT_BYREF: sym_info->Value = (ULONG64)(DWORD_PTR)data->u.value.n1.n2.n3.byref; break;
749 case VT_EMPTY: sym_info->Value = 0; break;
751 FIXME("Unsupported variant type (%u)\n", data->u.value.n1.n2.vt);
757 FIXME("Unhandled kind (%u) in sym data\n", data->kind);
761 case SymTagPublicSymbol:
762 sym_info->Flags |= SYMFLAG_EXPORT;
763 symt_get_info(pair->effective, sym, TI_GET_ADDRESS, &sym_info->Address);
766 sym_info->Flags |= SYMFLAG_FUNCTION;
767 symt_get_info(pair->effective, sym, TI_GET_ADDRESS, &sym_info->Address);
770 sym_info->Flags |= SYMFLAG_THUNK;
771 symt_get_info(pair->effective, sym, TI_GET_ADDRESS, &sym_info->Address);
774 symt_get_info(pair->effective, sym, TI_GET_ADDRESS, &sym_info->Address);
775 sym_info->Register = 0;
778 sym_info->Scope = 0; /* FIXME */
779 sym_info->Tag = sym->tag;
780 name = symt_get_name(sym);
781 if (sym_info->MaxNameLen)
783 if (sym->tag != SymTagPublicSymbol || !(dbghelp_options & SYMOPT_UNDNAME) ||
784 (sym_info->NameLen = UnDecorateSymbolName(name, sym_info->Name,
785 sym_info->MaxNameLen, UNDNAME_NAME_ONLY) == 0))
787 sym_info->NameLen = min(strlen(name), sym_info->MaxNameLen - 1);
788 memcpy(sym_info->Name, name, sym_info->NameLen);
789 sym_info->Name[sym_info->NameLen] = '\0';
792 TRACE_(dbghelp_symt)("%p => %s %u %s\n",
793 sym, sym_info->Name, sym_info->Size,
794 wine_dbgstr_longlong(sym_info->Address));
799 PSYM_ENUMERATESYMBOLS_CALLBACK cb;
801 SYMBOL_INFO* sym_info;
805 char buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
808 static BOOL send_symbol(const struct sym_enum* se, struct module_pair* pair,
809 const struct symt_function* func, const struct symt* sym)
811 symt_fill_sym_info(pair, func, sym, se->sym_info);
812 if (se->index && se->sym_info->info != se->index) return FALSE;
813 if (se->tag && se->sym_info->Tag != se->tag) return FALSE;
814 if (se->addr && !(se->addr >= se->sym_info->Address && se->addr < se->sym_info->Address + se->sym_info->Size)) return FALSE;
815 return !se->cb(se->sym_info, se->sym_info->Size, se->user);
818 static BOOL symt_enum_module(struct module_pair* pair, const regex_t* regex,
819 const struct sym_enum* se)
822 struct symt_ht* sym = NULL;
823 struct hash_table_iter hti;
825 hash_table_iter_init(&pair->effective->ht_symbols, &hti, NULL);
826 while ((ptr = hash_table_iter_up(&hti)))
828 sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
829 if (sym->hash_elt.name && match_regexp(regex, sym->hash_elt.name))
831 se->sym_info->SizeOfStruct = sizeof(SYMBOL_INFO);
832 se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);
833 if (send_symbol(se, pair, NULL, &sym->symt)) return TRUE;
839 static inline unsigned where_to_insert(struct module* module, unsigned high, const struct symt_ht* elt)
841 unsigned low = 0, mid = high / 2;
845 symt_get_info(module, &elt->symt, TI_GET_ADDRESS, &addr);
848 switch (cmp_sorttab_addr(module, mid, addr))
851 case -1: low = mid + 1; break;
852 case 1: high = mid; break;
854 mid = low + (high - low) / 2;
855 } while (low < high);
859 /***********************************************************************
862 * Rebuild sorted list of symbols for a module.
864 static BOOL resort_symbols(struct module* module)
866 if (!(module->module.NumSyms = module->num_symbols))
869 /* FIXME: what's the optimal value here ??? */
870 if (module->num_sorttab && module->num_symbols <= module->num_sorttab + 30)
872 int i, delta, ins_idx = module->num_sorttab, prev_ins_idx;
873 struct symt_ht* tmp[30];
875 delta = module->num_symbols - module->num_sorttab;
876 memcpy(tmp, &module->addr_sorttab[module->num_sorttab], delta * sizeof(struct symt_ht*));
877 symt_cmp_addr_module = module;
878 qsort(tmp, delta, sizeof(struct symt_ht*), symt_cmp_addr);
880 for (i = delta - 1; i >= 0; i--)
882 prev_ins_idx = ins_idx;
883 ins_idx = where_to_insert(module, prev_ins_idx = ins_idx, tmp[i]);
884 memmove(&module->addr_sorttab[ins_idx + i + 1],
885 &module->addr_sorttab[ins_idx],
886 (prev_ins_idx - ins_idx) * sizeof(struct symt_ht*));
887 module->addr_sorttab[ins_idx + i] = tmp[i];
892 symt_cmp_addr_module = module;
893 qsort(module->addr_sorttab, module->num_symbols, sizeof(struct symt_ht*), symt_cmp_addr);
895 module->num_sorttab = module->num_symbols;
896 return module->sortlist_valid = TRUE;
899 static void symt_get_length(struct module* module, const struct symt* symt, ULONG64* size)
903 if (symt_get_info(module, symt, TI_GET_LENGTH, size) && *size)
906 if (symt_get_info(module, symt, TI_GET_TYPE, &type_index) &&
907 symt_get_info(module, symt_index2ptr(module, type_index), TI_GET_LENGTH, size)) return;
908 *size = 0x1000; /* arbitrary value */
911 /* assume addr is in module */
912 struct symt_ht* symt_find_nearest(struct module* module, DWORD_PTR addr)
915 ULONG64 ref_addr, ref_size;
917 if (!module->sortlist_valid || !module->addr_sorttab)
919 if (!resort_symbols(module)) return NULL;
923 * Binary search to find closest symbol.
926 high = module->num_sorttab;
928 symt_get_info(module, &module->addr_sorttab[0]->symt, TI_GET_ADDRESS, &ref_addr);
929 if (addr < ref_addr) return NULL;
932 symt_get_info(module, &module->addr_sorttab[high - 1]->symt, TI_GET_ADDRESS, &ref_addr);
933 symt_get_length(module, &module->addr_sorttab[high - 1]->symt, &ref_size);
934 if (addr >= ref_addr + ref_size) return NULL;
937 while (high > low + 1)
939 mid = (high + low) / 2;
940 if (cmp_sorttab_addr(module, mid, addr) < 0)
945 if (low != high && high != module->num_sorttab &&
946 cmp_sorttab_addr(module, high, addr) <= 0)
949 /* If found symbol is a public symbol, check if there are any other entries that
950 * might also have the same address, but would get better information
952 if (module->addr_sorttab[low]->symt.tag == SymTagPublicSymbol)
954 symt_get_info(module, &module->addr_sorttab[low]->symt, TI_GET_ADDRESS, &ref_addr);
956 module->addr_sorttab[low - 1]->symt.tag != SymTagPublicSymbol &&
957 !cmp_sorttab_addr(module, low - 1, ref_addr))
959 else if (low < module->num_sorttab - 1 &&
960 module->addr_sorttab[low + 1]->symt.tag != SymTagPublicSymbol &&
961 !cmp_sorttab_addr(module, low + 1, ref_addr))
964 /* finally check that we fit into the found symbol */
965 symt_get_info(module, &module->addr_sorttab[low]->symt, TI_GET_ADDRESS, &ref_addr);
966 if (addr < ref_addr) return NULL;
967 symt_get_length(module, &module->addr_sorttab[low]->symt, &ref_size);
968 if (addr >= ref_addr + ref_size) return NULL;
970 return module->addr_sorttab[low];
973 static BOOL symt_enum_locals_helper(struct module_pair* pair,
974 regex_t* preg, const struct sym_enum* se,
975 struct symt_function* func, const struct vector* v)
977 struct symt* lsym = NULL;
978 DWORD pc = pair->pcs->ctx_frame.InstructionOffset;
981 for (i=0; i<vector_length(v); i++)
983 lsym = *(struct symt**)vector_at(v, i);
988 struct symt_block* block = (struct symt_block*)lsym;
989 if (pc < block->address || block->address + block->size <= pc)
991 if (!symt_enum_locals_helper(pair, preg, se, func, &block->vchildren))
996 if (match_regexp(preg, symt_get_name(lsym)))
998 if (send_symbol(se, pair, func, lsym)) return FALSE;
1002 case SymTagFuncDebugStart:
1003 case SymTagFuncDebugEnd:
1007 FIXME("Unknown type: %u (%x)\n", lsym->tag, lsym->tag);
1014 static BOOL symt_enum_locals(struct process* pcs, const char* mask,
1015 const struct sym_enum* se)
1017 struct module_pair pair;
1018 struct symt_ht* sym;
1019 DWORD_PTR pc = pcs->ctx_frame.InstructionOffset;
1021 se->sym_info->SizeOfStruct = sizeof(*se->sym_info);
1022 se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);
1025 pair.requested = module_find_by_addr(pair.pcs, pc, DMT_UNKNOWN);
1026 if (!module_get_debug(&pair)) return FALSE;
1027 if ((sym = symt_find_nearest(pair.effective, pc)) == NULL) return FALSE;
1029 if (sym->symt.tag == SymTagFunction)
1034 compile_regex(mask ? mask : "*", -1, &preg,
1035 dbghelp_options & SYMOPT_CASE_INSENSITIVE);
1036 ret = symt_enum_locals_helper(&pair, &preg, se, (struct symt_function*)sym,
1037 &((struct symt_function*)sym)->vchildren);
1044 /******************************************************************
1047 * Helper for transforming an ANSI symbol info into a UNICODE one.
1048 * Assume that MaxNameLen is the same for both version (A & W).
1050 void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si)
1052 siw->SizeOfStruct = si->SizeOfStruct;
1053 siw->TypeIndex = si->TypeIndex;
1054 siw->Reserved[0] = si->Reserved[0];
1055 siw->Reserved[1] = si->Reserved[1];
1056 siw->Index = si->info; /* FIXME: see dbghelp.h */
1057 siw->Size = si->Size;
1058 siw->ModBase = si->ModBase;
1059 siw->Flags = si->Flags;
1060 siw->Value = si->Value;
1061 siw->Address = si->Address;
1062 siw->Register = si->Register;
1063 siw->Scope = si->Scope;
1065 siw->NameLen = si->NameLen;
1066 siw->MaxNameLen = si->MaxNameLen;
1067 MultiByteToWideChar(CP_ACP, 0, si->Name, -1, siw->Name, siw->MaxNameLen);
1070 /******************************************************************
1073 * Core routine for most of the enumeration of symbols
1075 static BOOL sym_enum(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
1076 const struct sym_enum* se)
1078 struct module_pair pair;
1080 regex_t mod_regex, sym_regex;
1082 pair.pcs = process_find_by_handle(hProcess);
1083 if (!pair.pcs) return FALSE;
1086 /* do local variables ? */
1087 if (!Mask || !(bang = strchr(Mask, '!')))
1088 return symt_enum_locals(pair.pcs, Mask, se);
1090 if (bang == Mask) return FALSE;
1092 compile_regex(Mask, bang - Mask, &mod_regex, TRUE);
1093 compile_regex(bang + 1, -1, &sym_regex,
1094 dbghelp_options & SYMOPT_CASE_INSENSITIVE);
1096 for (pair.requested = pair.pcs->lmodules; pair.requested; pair.requested = pair.requested->next)
1098 if (pair.requested->type == DMT_PE && module_get_debug(&pair))
1100 if (match_regexp(&mod_regex, pair.requested->module_name) &&
1101 symt_enum_module(&pair, &sym_regex, se))
1105 /* not found in PE modules, retry on the ELF ones
1107 if (!pair.requested && (dbghelp_options & SYMOPT_WINE_WITH_NATIVE_MODULES))
1109 for (pair.requested = pair.pcs->lmodules; pair.requested; pair.requested = pair.requested->next)
1111 if ((pair.requested->type == DMT_ELF || pair.requested->type == DMT_MACHO) &&
1112 !module_get_containee(pair.pcs, pair.requested) &&
1113 module_get_debug(&pair))
1115 if (match_regexp(&mod_regex, pair.requested->module_name) &&
1116 symt_enum_module(&pair, &sym_regex, se))
1121 regfree(&mod_regex);
1122 regfree(&sym_regex);
1125 pair.requested = module_find_by_addr(pair.pcs, BaseOfDll, DMT_UNKNOWN);
1126 if (!module_get_debug(&pair))
1129 /* we always ignore module name from Mask when BaseOfDll is defined */
1130 if (Mask && (bang = strchr(Mask, '!')))
1132 if (bang == Mask) return FALSE;
1136 compile_regex(Mask ? Mask : "*", -1, &sym_regex,
1137 dbghelp_options & SYMOPT_CASE_INSENSITIVE);
1138 symt_enum_module(&pair, &sym_regex, se);
1139 regfree(&sym_regex);
1144 /******************************************************************
1145 * SymEnumSymbols (DBGHELP.@)
1147 * cases BaseOfDll = 0
1148 * !foo fails always (despite what MSDN states)
1149 * RE1!RE2 looks up all modules matching RE1, and in all these modules, lookup RE2
1150 * no ! in Mask, lookup in local Context
1151 * cases BaseOfDll != 0
1152 * !foo fails always (despite what MSDN states)
1153 * RE1!RE2 gets RE2 from BaseOfDll (whatever RE1 is)
1155 BOOL WINAPI SymEnumSymbols(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
1156 PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback,
1161 TRACE("(%p %s %s %p %p)\n",
1162 hProcess, wine_dbgstr_longlong(BaseOfDll), debugstr_a(Mask),
1163 EnumSymbolsCallback, UserContext);
1165 se.cb = EnumSymbolsCallback;
1166 se.user = UserContext;
1170 se.sym_info = (PSYMBOL_INFO)se.buffer;
1172 return sym_enum(hProcess, BaseOfDll, Mask, &se);
1177 PSYM_ENUMERATESYMBOLS_CALLBACKW cb;
1179 PSYMBOL_INFOW sym_info;
1180 char buffer[sizeof(SYMBOL_INFOW) + MAX_SYM_NAME];
1184 static BOOL CALLBACK sym_enumW(PSYMBOL_INFO si, ULONG size, PVOID ctx)
1186 struct sym_enumW* sew = ctx;
1188 copy_symbolW(sew->sym_info, si);
1190 return (sew->cb)(sew->sym_info, size, sew->ctx);
1193 /******************************************************************
1194 * SymEnumSymbolsW (DBGHELP.@)
1197 BOOL WINAPI SymEnumSymbolsW(HANDLE hProcess, ULONG64 BaseOfDll, PCWSTR Mask,
1198 PSYM_ENUMERATESYMBOLS_CALLBACKW EnumSymbolsCallback,
1201 struct sym_enumW sew;
1205 sew.ctx = UserContext;
1206 sew.cb = EnumSymbolsCallback;
1207 sew.sym_info = (PSYMBOL_INFOW)sew.buffer;
1211 unsigned len = WideCharToMultiByte(CP_ACP, 0, Mask, -1, NULL, 0, NULL, NULL);
1212 maskA = HeapAlloc(GetProcessHeap(), 0, len);
1213 if (!maskA) return FALSE;
1214 WideCharToMultiByte(CP_ACP, 0, Mask, -1, maskA, len, NULL, NULL);
1216 ret = SymEnumSymbols(hProcess, BaseOfDll, maskA, sym_enumW, &sew);
1217 HeapFree(GetProcessHeap(), 0, maskA);
1222 struct sym_enumerate
1225 PSYM_ENUMSYMBOLS_CALLBACK cb;
1228 static BOOL CALLBACK sym_enumerate_cb(PSYMBOL_INFO syminfo, ULONG size, void* ctx)
1230 struct sym_enumerate* se = ctx;
1231 return (se->cb)(syminfo->Name, syminfo->Address, syminfo->Size, se->ctx);
1234 /***********************************************************************
1235 * SymEnumerateSymbols (DBGHELP.@)
1237 BOOL WINAPI SymEnumerateSymbols(HANDLE hProcess, DWORD BaseOfDll,
1238 PSYM_ENUMSYMBOLS_CALLBACK EnumSymbolsCallback,
1241 struct sym_enumerate se;
1243 se.ctx = UserContext;
1244 se.cb = EnumSymbolsCallback;
1246 return SymEnumSymbols(hProcess, BaseOfDll, NULL, sym_enumerate_cb, &se);
1249 struct sym_enumerate64
1252 PSYM_ENUMSYMBOLS_CALLBACK64 cb;
1255 static BOOL CALLBACK sym_enumerate_cb64(PSYMBOL_INFO syminfo, ULONG size, void* ctx)
1257 struct sym_enumerate64* se = ctx;
1258 return (se->cb)(syminfo->Name, syminfo->Address, syminfo->Size, se->ctx);
1261 /***********************************************************************
1262 * SymEnumerateSymbols64 (DBGHELP.@)
1264 BOOL WINAPI SymEnumerateSymbols64(HANDLE hProcess, DWORD64 BaseOfDll,
1265 PSYM_ENUMSYMBOLS_CALLBACK64 EnumSymbolsCallback,
1268 struct sym_enumerate64 se;
1270 se.ctx = UserContext;
1271 se.cb = EnumSymbolsCallback;
1273 return SymEnumSymbols(hProcess, BaseOfDll, NULL, sym_enumerate_cb64, &se);
1276 /******************************************************************
1277 * SymFromAddr (DBGHELP.@)
1280 BOOL WINAPI SymFromAddr(HANDLE hProcess, DWORD64 Address,
1281 DWORD64* Displacement, PSYMBOL_INFO Symbol)
1283 struct module_pair pair;
1284 struct symt_ht* sym;
1286 pair.pcs = process_find_by_handle(hProcess);
1287 if (!pair.pcs) return FALSE;
1288 pair.requested = module_find_by_addr(pair.pcs, Address, DMT_UNKNOWN);
1289 if (!module_get_debug(&pair)) return FALSE;
1290 if ((sym = symt_find_nearest(pair.effective, Address)) == NULL) return FALSE;
1292 symt_fill_sym_info(&pair, NULL, &sym->symt, Symbol);
1293 *Displacement = Address - Symbol->Address;
1297 /******************************************************************
1298 * SymFromAddrW (DBGHELP.@)
1301 BOOL WINAPI SymFromAddrW(HANDLE hProcess, DWORD64 Address,
1302 DWORD64* Displacement, PSYMBOL_INFOW Symbol)
1308 len = sizeof(*si) + Symbol->MaxNameLen * sizeof(WCHAR);
1309 si = HeapAlloc(GetProcessHeap(), 0, len);
1310 if (!si) return FALSE;
1312 si->SizeOfStruct = sizeof(*si);
1313 si->MaxNameLen = Symbol->MaxNameLen;
1314 if ((ret = SymFromAddr(hProcess, Address, Displacement, si)))
1316 copy_symbolW(Symbol, si);
1318 HeapFree(GetProcessHeap(), 0, si);
1322 /******************************************************************
1323 * SymGetSymFromAddr (DBGHELP.@)
1326 BOOL WINAPI SymGetSymFromAddr(HANDLE hProcess, DWORD Address,
1327 PDWORD Displacement, PIMAGEHLP_SYMBOL Symbol)
1329 char buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1330 SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1332 DWORD64 Displacement64;
1334 if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1335 si->SizeOfStruct = sizeof(*si);
1336 si->MaxNameLen = MAX_SYM_NAME;
1337 if (!SymFromAddr(hProcess, Address, &Displacement64, si))
1341 *Displacement = Displacement64;
1342 Symbol->Address = si->Address;
1343 Symbol->Size = si->Size;
1344 Symbol->Flags = si->Flags;
1345 len = min(Symbol->MaxNameLength, si->MaxNameLen);
1346 lstrcpynA(Symbol->Name, si->Name, len);
1350 /******************************************************************
1351 * SymGetSymFromAddr64 (DBGHELP.@)
1354 BOOL WINAPI SymGetSymFromAddr64(HANDLE hProcess, DWORD64 Address,
1355 PDWORD64 Displacement, PIMAGEHLP_SYMBOL64 Symbol)
1357 char buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1358 SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1360 DWORD64 Displacement64;
1362 if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1363 si->SizeOfStruct = sizeof(*si);
1364 si->MaxNameLen = MAX_SYM_NAME;
1365 if (!SymFromAddr(hProcess, Address, &Displacement64, si))
1369 *Displacement = Displacement64;
1370 Symbol->Address = si->Address;
1371 Symbol->Size = si->Size;
1372 Symbol->Flags = si->Flags;
1373 len = min(Symbol->MaxNameLength, si->MaxNameLen);
1374 lstrcpynA(Symbol->Name, si->Name, len);
1378 static BOOL find_name(struct process* pcs, struct module* module, const char* name,
1379 SYMBOL_INFO* symbol)
1381 struct hash_table_iter hti;
1383 struct symt_ht* sym = NULL;
1384 struct module_pair pair;
1387 if (!(pair.requested = module)) return FALSE;
1388 if (!module_get_debug(&pair)) return FALSE;
1390 hash_table_iter_init(&pair.effective->ht_symbols, &hti, name);
1391 while ((ptr = hash_table_iter_up(&hti)))
1393 sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
1395 if (!strcmp(sym->hash_elt.name, name))
1397 symt_fill_sym_info(&pair, NULL, &sym->symt, symbol);
1404 /******************************************************************
1405 * SymFromName (DBGHELP.@)
1408 BOOL WINAPI SymFromName(HANDLE hProcess, PCSTR Name, PSYMBOL_INFO Symbol)
1410 struct process* pcs = process_find_by_handle(hProcess);
1411 struct module* module;
1414 TRACE("(%p, %s, %p)\n", hProcess, Name, Symbol);
1415 if (!pcs) return FALSE;
1416 if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1417 name = strchr(Name, '!');
1421 assert(name - Name < sizeof(tmp));
1422 memcpy(tmp, Name, name - Name);
1423 tmp[name - Name] = '\0';
1424 module = module_find_by_nameA(pcs, tmp);
1425 return find_name(pcs, module, name + 1, Symbol);
1427 for (module = pcs->lmodules; module; module = module->next)
1429 if (module->type == DMT_PE && find_name(pcs, module, Name, Symbol))
1432 /* not found in PE modules, retry on the ELF ones
1434 if (dbghelp_options & SYMOPT_WINE_WITH_NATIVE_MODULES)
1436 for (module = pcs->lmodules; module; module = module->next)
1438 if ((module->type == DMT_ELF || module->type == DMT_MACHO) &&
1439 !module_get_containee(pcs, module) &&
1440 find_name(pcs, module, Name, Symbol))
1447 /***********************************************************************
1448 * SymGetSymFromName64 (DBGHELP.@)
1450 BOOL WINAPI SymGetSymFromName64(HANDLE hProcess, PCSTR Name, PIMAGEHLP_SYMBOL64 Symbol)
1452 char buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1453 SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1456 if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1457 si->SizeOfStruct = sizeof(*si);
1458 si->MaxNameLen = MAX_SYM_NAME;
1459 if (!SymFromName(hProcess, Name, si)) return FALSE;
1461 Symbol->Address = si->Address;
1462 Symbol->Size = si->Size;
1463 Symbol->Flags = si->Flags;
1464 len = min(Symbol->MaxNameLength, si->MaxNameLen);
1465 lstrcpynA(Symbol->Name, si->Name, len);
1469 /***********************************************************************
1470 * SymGetSymFromName (DBGHELP.@)
1472 BOOL WINAPI SymGetSymFromName(HANDLE hProcess, PCSTR Name, PIMAGEHLP_SYMBOL Symbol)
1474 char buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1475 SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1478 if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1479 si->SizeOfStruct = sizeof(*si);
1480 si->MaxNameLen = MAX_SYM_NAME;
1481 if (!SymFromName(hProcess, Name, si)) return FALSE;
1483 Symbol->Address = si->Address;
1484 Symbol->Size = si->Size;
1485 Symbol->Flags = si->Flags;
1486 len = min(Symbol->MaxNameLength, si->MaxNameLen);
1487 lstrcpynA(Symbol->Name, si->Name, len);
1491 /******************************************************************
1492 * sym_fill_func_line_info
1494 * fills information about a file
1496 BOOL symt_fill_func_line_info(const struct module* module, const struct symt_function* func,
1497 DWORD64 addr, IMAGEHLP_LINE64* line)
1499 struct line_info* dli = NULL;
1503 assert(func->symt.tag == SymTagFunction);
1505 for (i=vector_length(&func->vlines)-1; i>=0; i--)
1507 dli = vector_at(&func->vlines, i);
1508 if (!dli->is_source_file)
1510 if (found || dli->u.pc_offset > addr) continue;
1511 line->LineNumber = dli->line_number;
1512 line->Address = dli->u.pc_offset;
1519 line->FileName = (char*)source_get(module, dli->u.source_file);
1526 /***********************************************************************
1527 * SymGetSymNext64 (DBGHELP.@)
1529 BOOL WINAPI SymGetSymNext64(HANDLE hProcess, PIMAGEHLP_SYMBOL64 Symbol)
1532 * get module from Symbol.Address
1533 * get index in module.addr_sorttab of Symbol.Address
1535 * if out of module bounds, move to next module in process address space
1537 FIXME("(%p, %p): stub\n", hProcess, Symbol);
1538 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1542 /***********************************************************************
1543 * SymGetSymNext (DBGHELP.@)
1545 BOOL WINAPI SymGetSymNext(HANDLE hProcess, PIMAGEHLP_SYMBOL Symbol)
1547 FIXME("(%p, %p): stub\n", hProcess, Symbol);
1548 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1552 /***********************************************************************
1553 * SymGetSymPrev64 (DBGHELP.@)
1555 BOOL WINAPI SymGetSymPrev64(HANDLE hProcess, PIMAGEHLP_SYMBOL64 Symbol)
1557 FIXME("(%p, %p): stub\n", hProcess, Symbol);
1558 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1562 /***********************************************************************
1563 * SymGetSymPrev (DBGHELP.@)
1565 BOOL WINAPI SymGetSymPrev(HANDLE hProcess, PIMAGEHLP_SYMBOL Symbol)
1567 FIXME("(%p, %p): stub\n", hProcess, Symbol);
1568 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1572 /******************************************************************
1573 * copy_line_64_from_32 (internal)
1576 static void copy_line_64_from_32(IMAGEHLP_LINE64* l64, const IMAGEHLP_LINE* l32)
1579 l64->Key = l32->Key;
1580 l64->LineNumber = l32->LineNumber;
1581 l64->FileName = l32->FileName;
1582 l64->Address = l32->Address;
1585 /******************************************************************
1586 * copy_line_W64_from_32 (internal)
1589 static void copy_line_W64_from_64(struct process* pcs, IMAGEHLP_LINEW64* l64w, const IMAGEHLP_LINE64* l64)
1593 l64w->Key = l64->Key;
1594 l64w->LineNumber = l64->LineNumber;
1595 len = MultiByteToWideChar(CP_ACP, 0, l64->FileName, -1, NULL, 0);
1596 if ((l64w->FileName = fetch_buffer(pcs, len * sizeof(WCHAR))))
1597 MultiByteToWideChar(CP_ACP, 0, l64->FileName, -1, l64w->FileName, len);
1598 l64w->Address = l64->Address;
1601 /******************************************************************
1602 * copy_line_32_from_64 (internal)
1605 static void copy_line_32_from_64(IMAGEHLP_LINE* l32, const IMAGEHLP_LINE64* l64)
1608 l32->Key = l64->Key;
1609 l32->LineNumber = l64->LineNumber;
1610 l32->FileName = l64->FileName;
1611 l32->Address = l64->Address;
1614 /******************************************************************
1615 * SymGetLineFromAddr (DBGHELP.@)
1618 BOOL WINAPI SymGetLineFromAddr(HANDLE hProcess, DWORD dwAddr,
1619 PDWORD pdwDisplacement, PIMAGEHLP_LINE Line)
1621 IMAGEHLP_LINE64 il64;
1623 il64.SizeOfStruct = sizeof(il64);
1624 if (!SymGetLineFromAddr64(hProcess, dwAddr, pdwDisplacement, &il64))
1626 copy_line_32_from_64(Line, &il64);
1630 /******************************************************************
1631 * SymGetLineFromAddr64 (DBGHELP.@)
1634 BOOL WINAPI SymGetLineFromAddr64(HANDLE hProcess, DWORD64 dwAddr,
1635 PDWORD pdwDisplacement, PIMAGEHLP_LINE64 Line)
1637 struct module_pair pair;
1638 struct symt_ht* symt;
1640 TRACE("%p %s %p %p\n", hProcess, wine_dbgstr_longlong(dwAddr), pdwDisplacement, Line);
1642 if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1644 pair.pcs = process_find_by_handle(hProcess);
1645 if (!pair.pcs) return FALSE;
1646 pair.requested = module_find_by_addr(pair.pcs, dwAddr, DMT_UNKNOWN);
1647 if (!module_get_debug(&pair)) return FALSE;
1648 if ((symt = symt_find_nearest(pair.effective, dwAddr)) == NULL) return FALSE;
1650 if (symt->symt.tag != SymTagFunction) return FALSE;
1651 if (!symt_fill_func_line_info(pair.effective, (struct symt_function*)symt,
1652 dwAddr, Line)) return FALSE;
1653 *pdwDisplacement = dwAddr - Line->Address;
1657 /******************************************************************
1658 * SymGetLineFromAddrW64 (DBGHELP.@)
1661 BOOL WINAPI SymGetLineFromAddrW64(HANDLE hProcess, DWORD64 dwAddr,
1662 PDWORD pdwDisplacement, PIMAGEHLP_LINEW64 Line)
1664 IMAGEHLP_LINE64 il64;
1666 il64.SizeOfStruct = sizeof(il64);
1667 if (!SymGetLineFromAddr64(hProcess, dwAddr, pdwDisplacement, &il64))
1669 copy_line_W64_from_64(process_find_by_handle(hProcess), Line, &il64);
1673 /******************************************************************
1674 * SymGetLinePrev64 (DBGHELP.@)
1677 BOOL WINAPI SymGetLinePrev64(HANDLE hProcess, PIMAGEHLP_LINE64 Line)
1679 struct module_pair pair;
1680 struct line_info* li;
1681 BOOL in_search = FALSE;
1683 TRACE("(%p %p)\n", hProcess, Line);
1685 if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1687 pair.pcs = process_find_by_handle(hProcess);
1688 if (!pair.pcs) return FALSE;
1689 pair.requested = module_find_by_addr(pair.pcs, Line->Address, DMT_UNKNOWN);
1690 if (!module_get_debug(&pair)) return FALSE;
1692 if (Line->Key == 0) return FALSE;
1694 /* things are a bit complicated because when we encounter a DLIT_SOURCEFILE
1695 * element we have to go back until we find the prev one to get the real
1696 * source file name for the DLIT_OFFSET element just before
1697 * the first DLIT_SOURCEFILE
1699 while (!li->is_first)
1702 if (!li->is_source_file)
1704 Line->LineNumber = li->line_number;
1705 Line->Address = li->u.pc_offset;
1707 if (!in_search) return TRUE;
1713 Line->FileName = (char*)source_get(pair.effective, li->u.source_file);
1719 SetLastError(ERROR_NO_MORE_ITEMS); /* FIXME */
1723 /******************************************************************
1724 * SymGetLinePrev (DBGHELP.@)
1727 BOOL WINAPI SymGetLinePrev(HANDLE hProcess, PIMAGEHLP_LINE Line)
1729 IMAGEHLP_LINE64 line64;
1731 line64.SizeOfStruct = sizeof(line64);
1732 copy_line_64_from_32(&line64, Line);
1733 if (!SymGetLinePrev64(hProcess, &line64)) return FALSE;
1734 copy_line_32_from_64(Line, &line64);
1738 BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE64 line)
1740 struct line_info* li;
1742 if (line->Key == 0) return FALSE;
1744 while (!li->is_last)
1747 if (!li->is_source_file)
1749 line->LineNumber = li->line_number;
1750 line->Address = li->u.pc_offset;
1754 line->FileName = (char*)source_get(module, li->u.source_file);
1759 /******************************************************************
1760 * SymGetLineNext64 (DBGHELP.@)
1763 BOOL WINAPI SymGetLineNext64(HANDLE hProcess, PIMAGEHLP_LINE64 Line)
1765 struct module_pair pair;
1767 TRACE("(%p %p)\n", hProcess, Line);
1769 if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1770 pair.pcs = process_find_by_handle(hProcess);
1771 if (!pair.pcs) return FALSE;
1772 pair.requested = module_find_by_addr(pair.pcs, Line->Address, DMT_UNKNOWN);
1773 if (!module_get_debug(&pair)) return FALSE;
1775 if (symt_get_func_line_next(pair.effective, Line)) return TRUE;
1776 SetLastError(ERROR_NO_MORE_ITEMS); /* FIXME */
1780 /******************************************************************
1781 * SymGetLineNext (DBGHELP.@)
1784 BOOL WINAPI SymGetLineNext(HANDLE hProcess, PIMAGEHLP_LINE Line)
1786 IMAGEHLP_LINE64 line64;
1788 line64.SizeOfStruct = sizeof(line64);
1789 copy_line_64_from_32(&line64, Line);
1790 if (!SymGetLineNext64(hProcess, &line64)) return FALSE;
1791 copy_line_32_from_64(Line, &line64);
1795 /***********************************************************************
1796 * SymUnDName (DBGHELP.@)
1798 BOOL WINAPI SymUnDName(PIMAGEHLP_SYMBOL sym, PSTR UnDecName, DWORD UnDecNameLength)
1800 return UnDecorateSymbolName(sym->Name, UnDecName, UnDecNameLength,
1801 UNDNAME_COMPLETE) != 0;
1804 /***********************************************************************
1805 * SymUnDName64 (DBGHELP.@)
1807 BOOL WINAPI SymUnDName64(PIMAGEHLP_SYMBOL64 sym, PSTR UnDecName, DWORD UnDecNameLength)
1809 return UnDecorateSymbolName(sym->Name, UnDecName, UnDecNameLength,
1810 UNDNAME_COMPLETE) != 0;
1813 static void* und_alloc(size_t len) { return HeapAlloc(GetProcessHeap(), 0, len); }
1814 static void und_free (void* ptr) { HeapFree(GetProcessHeap(), 0, ptr); }
1816 /***********************************************************************
1817 * UnDecorateSymbolName (DBGHELP.@)
1819 DWORD WINAPI UnDecorateSymbolName(PCSTR DecoratedName, PSTR UnDecoratedName,
1820 DWORD UndecoratedLength, DWORD Flags)
1822 /* undocumented from msvcrt */
1823 static char* (*p_undname)(char*, const char*, int, void* (*)(size_t), void (*)(void*), unsigned short);
1824 static const WCHAR szMsvcrt[] = {'m','s','v','c','r','t','.','d','l','l',0};
1826 TRACE("(%s, %p, %d, 0x%08x)\n",
1827 debugstr_a(DecoratedName), UnDecoratedName, UndecoratedLength, Flags);
1831 if (!hMsvcrt) hMsvcrt = LoadLibraryW(szMsvcrt);
1832 if (hMsvcrt) p_undname = (void*)GetProcAddress(hMsvcrt, "__unDName");
1833 if (!p_undname) return 0;
1836 if (!UnDecoratedName) return 0;
1837 if (!p_undname(UnDecoratedName, DecoratedName, UndecoratedLength,
1838 und_alloc, und_free, Flags))
1840 return strlen(UnDecoratedName);
1843 /******************************************************************
1844 * SymMatchString (DBGHELP.@)
1847 BOOL WINAPI SymMatchString(PCSTR string, PCSTR re, BOOL _case)
1852 TRACE("%s %s %c\n", string, re, _case ? 'Y' : 'N');
1854 compile_regex(re, -1, &preg, _case);
1855 ret = match_regexp(&preg, string);
1860 /******************************************************************
1861 * SymSearch (DBGHELP.@)
1863 BOOL WINAPI SymSearch(HANDLE hProcess, ULONG64 BaseOfDll, DWORD Index,
1864 DWORD SymTag, PCSTR Mask, DWORD64 Address,
1865 PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback,
1866 PVOID UserContext, DWORD Options)
1870 TRACE("(%p %s %u %u %s %s %p %p %x)\n",
1871 hProcess, wine_dbgstr_longlong(BaseOfDll), Index, SymTag, Mask,
1872 wine_dbgstr_longlong(Address), EnumSymbolsCallback,
1873 UserContext, Options);
1875 if (Options != SYMSEARCH_GLOBALSONLY)
1877 FIXME("Unsupported searching with options (%x)\n", Options);
1878 SetLastError(ERROR_INVALID_PARAMETER);
1882 se.cb = EnumSymbolsCallback;
1883 se.user = UserContext;
1887 se.sym_info = (PSYMBOL_INFO)se.buffer;
1889 return sym_enum(hProcess, BaseOfDll, Mask, &se);
1892 /******************************************************************
1893 * SymSearchW (DBGHELP.@)
1895 BOOL WINAPI SymSearchW(HANDLE hProcess, ULONG64 BaseOfDll, DWORD Index,
1896 DWORD SymTag, PCWSTR Mask, DWORD64 Address,
1897 PSYM_ENUMERATESYMBOLS_CALLBACKW EnumSymbolsCallback,
1898 PVOID UserContext, DWORD Options)
1900 struct sym_enumW sew;
1904 TRACE("(%p %s %u %u %s %s %p %p %x)\n",
1905 hProcess, wine_dbgstr_longlong(BaseOfDll), Index, SymTag, debugstr_w(Mask),
1906 wine_dbgstr_longlong(Address), EnumSymbolsCallback,
1907 UserContext, Options);
1909 sew.ctx = UserContext;
1910 sew.cb = EnumSymbolsCallback;
1911 sew.sym_info = (PSYMBOL_INFOW)sew.buffer;
1915 unsigned len = WideCharToMultiByte(CP_ACP, 0, Mask, -1, NULL, 0, NULL, NULL);
1916 maskA = HeapAlloc(GetProcessHeap(), 0, len);
1917 if (!maskA) return FALSE;
1918 WideCharToMultiByte(CP_ACP, 0, Mask, -1, maskA, len, NULL, NULL);
1920 ret = SymSearch(hProcess, BaseOfDll, Index, SymTag, maskA, Address,
1921 sym_enumW, &sew, Options);
1922 HeapFree(GetProcessHeap(), 0, maskA);
1927 /******************************************************************
1928 * SymAddSymbol (DBGHELP.@)
1931 BOOL WINAPI SymAddSymbol(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR name,
1932 DWORD64 addr, DWORD size, DWORD flags)
1934 WCHAR nameW[MAX_SYM_NAME];
1936 MultiByteToWideChar(CP_ACP, 0, name, -1, nameW, sizeof(nameW) / sizeof(WCHAR));
1937 return SymAddSymbolW(hProcess, BaseOfDll, nameW, addr, size, flags);
1940 /******************************************************************
1941 * SymAddSymbolW (DBGHELP.@)
1944 BOOL WINAPI SymAddSymbolW(HANDLE hProcess, ULONG64 BaseOfDll, PCWSTR name,
1945 DWORD64 addr, DWORD size, DWORD flags)
1947 struct module_pair pair;
1949 TRACE("(%p %s %s %u)\n", hProcess, wine_dbgstr_w(name), wine_dbgstr_longlong(addr), size);
1951 pair.pcs = process_find_by_handle(hProcess);
1952 if (!pair.pcs) return FALSE;
1953 pair.requested = module_find_by_addr(pair.pcs, BaseOfDll, DMT_UNKNOWN);
1954 if (!module_get_debug(&pair)) return FALSE;
1956 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1960 /******************************************************************
1961 * SymSetScopeFromAddr (DBGHELP.@)
1963 BOOL WINAPI SymSetScopeFromAddr(HANDLE hProcess, ULONG64 addr)
1965 struct process* pcs;
1967 FIXME("(%p %s): stub\n", hProcess, wine_dbgstr_longlong(addr));
1969 if (!(pcs = process_find_by_handle(hProcess))) return FALSE;
1973 /******************************************************************
1974 * SymEnumLines (DBGHELP.@)
1977 BOOL WINAPI SymEnumLines(HANDLE hProcess, ULONG64 base, PCSTR compiland,
1978 PCSTR srcfile, PSYM_ENUMLINES_CALLBACK cb, PVOID user)
1980 struct module_pair pair;
1981 struct hash_table_iter hti;
1982 struct symt_ht* sym;
1984 struct line_info* dli;
1989 if (!cb) return FALSE;
1990 if (!(dbghelp_options & SYMOPT_LOAD_LINES)) return TRUE;
1992 pair.pcs = process_find_by_handle(hProcess);
1993 if (!pair.pcs) return FALSE;
1994 if (compiland) FIXME("Unsupported yet (filtering on compiland %s)\n", compiland);
1995 pair.requested = module_find_by_addr(pair.pcs, base, DMT_UNKNOWN);
1996 if (!module_get_debug(&pair)) return FALSE;
1997 if (!compile_file_regex(&re, srcfile)) return FALSE;
1999 sci.SizeOfStruct = sizeof(sci);
2002 hash_table_iter_init(&pair.effective->ht_symbols, &hti, NULL);
2003 while ((ptr = hash_table_iter_up(&hti)))
2007 sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
2008 if (sym->symt.tag != SymTagFunction) continue;
2010 sci.FileName[0] = '\0';
2011 for (i=0; i<vector_length(&((struct symt_function*)sym)->vlines); i++)
2013 dli = vector_at(&((struct symt_function*)sym)->vlines, i);
2014 if (dli->is_source_file)
2016 file = source_get(pair.effective, dli->u.source_file);
2017 if (!match_regexp(&re, file)) file = "";
2018 strcpy(sci.FileName, file);
2020 else if (sci.FileName[0])
2023 sci.Obj[0] = '\0'; /* FIXME */
2024 sci.LineNumber = dli->line_number;
2025 sci.Address = dli->u.pc_offset;
2026 if (!cb(&sci, user)) break;
2034 BOOL WINAPI SymGetLineFromName(HANDLE hProcess, PCSTR ModuleName, PCSTR FileName,
2035 DWORD dwLineNumber, PLONG plDisplacement, PIMAGEHLP_LINE Line)
2037 FIXME("(%p) (%s, %s, %d %p %p): stub\n", hProcess, ModuleName, FileName,
2038 dwLineNumber, plDisplacement, Line);
2042 BOOL WINAPI SymGetLineFromName64(HANDLE hProcess, PCSTR ModuleName, PCSTR FileName,
2043 DWORD dwLineNumber, PLONG lpDisplacement, PIMAGEHLP_LINE64 Line)
2045 FIXME("(%p) (%s, %s, %d %p %p): stub\n", hProcess, ModuleName, FileName,
2046 dwLineNumber, lpDisplacement, Line);
2050 BOOL WINAPI SymGetLineFromNameW64(HANDLE hProcess, PCWSTR ModuleName, PCWSTR FileName,
2051 DWORD dwLineNumber, PLONG plDisplacement, PIMAGEHLP_LINEW64 Line)
2053 FIXME("(%p) (%s, %s, %d %p %p): stub\n", hProcess, debugstr_w(ModuleName), debugstr_w(FileName),
2054 dwLineNumber, plDisplacement, Line);