dbghelp: Fix a couple of casts on 64bit platforms.
[wine] / dlls / dbghelp / symbol.c
1 /*
2  * File symbol.c - management of symbols (lexical tree)
3  *
4  * Copyright (C) 1993, Eric Youngdale.
5  *               2004, Eric Pouech
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #define NONAMELESSUNION
23 #define NONAMELESSSTRUCT
24
25 #include "config.h"
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <limits.h>
31 #include <sys/types.h>
32 #include <assert.h>
33 #ifdef HAVE_REGEX_H
34 # include <regex.h>
35 #endif
36
37 #include "wine/debug.h"
38 #include "dbghelp_private.h"
39 #include "winnls.h"
40
41 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
42 WINE_DECLARE_DEBUG_CHANNEL(dbghelp_symt);
43
44 static inline int cmp_addr(ULONG64 a1, ULONG64 a2)
45 {
46     if (a1 > a2) return 1;
47     if (a1 < a2) return -1;
48     return 0;
49 }
50
51 static inline int cmp_sorttab_addr(const struct module* module, int idx, ULONG64 addr)
52 {
53     ULONG64     ref;
54
55     symt_get_info(&module->addr_sorttab[idx]->symt, TI_GET_ADDRESS, &ref);
56     return cmp_addr(ref, addr);
57 }
58
59 int symt_cmp_addr(const void* p1, const void* p2)
60 {
61     const struct symt*  sym1 = *(const struct symt* const *)p1;
62     const struct symt*  sym2 = *(const struct symt* const *)p2;
63     ULONG64     a1, a2;
64
65     symt_get_info(sym1, TI_GET_ADDRESS, &a1);
66     symt_get_info(sym2, TI_GET_ADDRESS, &a2);
67     return cmp_addr(a1, a2);
68 }
69
70 static BOOL symt_grow_sorttab(struct module* module, unsigned sz)
71 {
72     struct symt_ht**    new;
73     unsigned int size;
74
75     if (sz <= module->sorttab_size) return TRUE;
76     if (module->addr_sorttab)
77     {
78         size = module->sorttab_size * 2;
79         new = HeapReAlloc(GetProcessHeap(), 0, module->addr_sorttab,
80                           size * sizeof(struct symt_ht*));
81     }
82     else
83     {
84         size = 64;
85         new = HeapAlloc(GetProcessHeap(), 0, size * sizeof(struct symt_ht*));
86     }
87     if (!new) return FALSE;
88     module->sorttab_size = size;
89     module->addr_sorttab = new;
90     return TRUE;
91 }
92
93 static void symt_add_module_ht(struct module* module, struct symt_ht* ht)
94 {
95     ULONG64             addr;
96
97     hash_table_add(&module->ht_symbols, &ht->hash_elt);
98     /* Don't store in sorttab a symbol without address, they are of
99      * no use here (e.g. constant values)
100      */
101     if (symt_get_info(&ht->symt, TI_GET_ADDRESS, &addr) &&
102         symt_grow_sorttab(module, module->num_symbols + 1))
103     {
104         module->addr_sorttab[module->num_symbols++] = ht;
105         module->sortlist_valid = FALSE;
106     }
107 }
108
109 #ifdef HAVE_REGEX_H
110
111 /* transforms a dbghelp's regular expression into a POSIX one
112  * Here are the valid dbghelp reg ex characters:
113  *      *       0 or more characters
114  *      ?       a single character
115  *      []      list
116  *      #       0 or more of preceding char
117  *      +       1 or more of preceding char
118  *      escapes \ on #, ?, [, ], *, +. don't work on -
119  */
120 static void compile_regex(const char* str, int numchar, regex_t* re, BOOL _case)
121 {
122     char *mask, *p;
123     BOOL        in_escape = FALSE;
124     unsigned    flags = REG_NOSUB;
125
126     if (numchar == -1) numchar = strlen( str );
127
128     p = mask = HeapAlloc( GetProcessHeap(), 0, 2 * numchar + 3 );
129     *p++ = '^';
130
131     while (*str && numchar--)
132     {
133         /* FIXME: this shouldn't be valid on '-' */
134         if (in_escape)
135         {
136             *p++ = '\\';
137             *p++ = *str;
138             in_escape = FALSE;
139         }
140         else switch (*str)
141         {
142         case '\\': in_escape = TRUE; break;
143         case '*':  *p++ = '.'; *p++ = '*'; break;
144         case '?':  *p++ = '.'; break;
145         case '#':  *p++ = '*'; break;
146         /* escape some valid characters in dbghelp reg exp:s */
147         case '$':  *p++ = '\\'; *p++ = '$'; break;
148         /* +, [, ], - are the same in dbghelp & POSIX, use them as any other char */
149         default:   *p++ = *str; break;
150         }
151         str++;
152     }
153     if (in_escape)
154     {
155         *p++ = '\\';
156         *p++ = '\\';
157     }
158     *p++ = '$';
159     *p = 0;
160     if (_case) flags |= REG_ICASE;
161     if (regcomp(re, mask, flags)) FIXME("Couldn't compile %s\n", mask);
162     HeapFree(GetProcessHeap(), 0, mask);
163 }
164
165 static BOOL compile_file_regex(regex_t* re, const char* srcfile)
166 {
167     char *mask, *p;
168     BOOL ret;
169
170     if (!srcfile || !*srcfile) return regcomp(re, ".*", REG_NOSUB);
171
172     p = mask = HeapAlloc(GetProcessHeap(), 0, 5 * strlen(srcfile) + 4);
173     *p++ = '^';
174     while (*srcfile)
175     {
176         switch (*srcfile)
177         {
178         case '\\':
179         case '/':
180             *p++ = '[';
181             *p++ = '\\';
182             *p++ = '\\';
183             *p++ = '/';
184             *p++ = ']';
185             break;
186         case '.':
187             *p++ = '\\';
188             *p++ = '.';
189             break;
190         default:
191             *p++ = *srcfile;
192             break;
193         }
194         srcfile++;
195     }
196     *p++ = '$';
197     *p = 0;
198     ret = !regcomp(re, mask, REG_NOSUB);
199     HeapFree(GetProcessHeap(), 0, mask);
200     if (!ret)
201     {
202         FIXME("Couldn't compile %s\n", mask);
203         SetLastError(ERROR_INVALID_PARAMETER);
204     }
205     return ret;
206 }
207
208 static int match_regexp( const regex_t *re, const char *str )
209 {
210     return !regexec( re, str, 0, NULL, 0 );
211 }
212
213 #else /* HAVE_REGEX_H */
214
215 /* if we don't have regexp support, fall back to a simple string comparison */
216
217 typedef struct
218 {
219     char *str;
220     BOOL  icase;
221 } regex_t;
222
223 static void compile_regex(const char* str, int numchar, regex_t* re, BOOL _case)
224 {
225     if (numchar == -1) numchar = strlen( str );
226
227     re->str = HeapAlloc( GetProcessHeap(), 0, numchar + 1 );
228     memcpy( re->str, str, numchar );
229     re->str[numchar] = 0;
230     re->icase = _case;
231 }
232
233 static BOOL compile_file_regex(regex_t* re, const char* srcfile)
234 {
235     if (!srcfile || !*srcfile) re->str = NULL;
236     else compile_regex( srcfile, -1, re, FALSE );
237     return TRUE;
238 }
239
240 static int match_regexp( const regex_t *re, const char *str )
241 {
242     if (!re->str) return 1;
243     if (re->icase) return !lstrcmpiA( re->str, str );
244     return !strcmp( re->str, str );
245 }
246
247 static void regfree( regex_t *re )
248 {
249     HeapFree( GetProcessHeap(), 0, re->str );
250 }
251
252 #endif /* HAVE_REGEX_H */
253
254 struct symt_compiland* symt_new_compiland(struct module* module, 
255                                           unsigned long address, unsigned src_idx)
256 {
257     struct symt_compiland*    sym;
258
259     TRACE_(dbghelp_symt)("Adding compiland symbol %s:%s\n",
260                          debugstr_w(module->module.ModuleName), source_get(module, src_idx));
261     if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
262     {
263         sym->symt.tag = SymTagCompiland;
264         sym->address  = address;
265         sym->source   = src_idx;
266         vector_init(&sym->vchildren, sizeof(struct symt*), 32);
267     }
268     return sym;
269 }
270
271 struct symt_public* symt_new_public(struct module* module, 
272                                     struct symt_compiland* compiland,
273                                     const char* name,
274                                     unsigned long address, unsigned size,
275                                     BOOL in_code, BOOL is_func)
276 {
277     struct symt_public* sym;
278     struct symt**       p;
279
280     TRACE_(dbghelp_symt)("Adding public symbol %s:%s @%lx\n",
281                          debugstr_w(module->module.ModuleName), name, address);
282     if ((dbghelp_options & SYMOPT_AUTO_PUBLICS) &&
283         symt_find_nearest(module, address) != NULL)
284         return NULL;
285     if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
286     {
287         sym->symt.tag      = SymTagPublicSymbol;
288         sym->hash_elt.name = pool_strdup(&module->pool, name);
289         sym->container     = compiland ? &compiland->symt : NULL;
290         sym->address       = address;
291         sym->size          = size;
292         sym->in_code       = in_code;
293         sym->is_function   = is_func;
294         symt_add_module_ht(module, (struct symt_ht*)sym);
295         if (compiland)
296         {
297             p = vector_add(&compiland->vchildren, &module->pool);
298             *p = &sym->symt;
299         }
300     }
301     return sym;
302 }
303
304 struct symt_data* symt_new_global_variable(struct module* module, 
305                                            struct symt_compiland* compiland, 
306                                            const char* name, unsigned is_static,
307                                            unsigned long addr, unsigned long size,
308                                            struct symt* type)
309 {
310     struct symt_data*   sym;
311     struct symt**       p;
312     DWORD64             tsz;
313
314     TRACE_(dbghelp_symt)("Adding global symbol %s:%s @%lx %p\n",
315                          debugstr_w(module->module.ModuleName), name, addr, type);
316     if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
317     {
318         sym->symt.tag      = SymTagData;
319         sym->hash_elt.name = pool_strdup(&module->pool, name);
320         sym->kind          = is_static ? DataIsFileStatic : DataIsGlobal;
321         sym->container     = compiland ? &compiland->symt : NULL;
322         sym->type          = type;
323         sym->u.var.offset  = addr;
324         if (type && size && symt_get_info(type, TI_GET_LENGTH, &tsz))
325         {
326             if (tsz != size)
327                 FIXME("Size mismatch for %s.%s between type (%s) and src (%lu)\n",
328                       debugstr_w(module->module.ModuleName), name,
329                       wine_dbgstr_longlong(tsz), size);
330         }
331         symt_add_module_ht(module, (struct symt_ht*)sym);
332         if (compiland)
333         {
334             p = vector_add(&compiland->vchildren, &module->pool);
335             *p = &sym->symt;
336         }
337     }
338     return sym;
339 }
340
341 struct symt_function* symt_new_function(struct module* module, 
342                                         struct symt_compiland* compiland, 
343                                         const char* name,
344                                         unsigned long addr, unsigned long size,
345                                         struct symt* sig_type)
346 {
347     struct symt_function*       sym;
348     struct symt**               p;
349
350     TRACE_(dbghelp_symt)("Adding global function %s:%s @%lx-%lx\n",
351                          debugstr_w(module->module.ModuleName), name, addr, addr + size - 1);
352
353     assert(!sig_type || sig_type->tag == SymTagFunctionType);
354     if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
355     {
356         sym->symt.tag  = SymTagFunction;
357         sym->hash_elt.name = pool_strdup(&module->pool, name);
358         sym->container = &compiland->symt;
359         sym->address   = addr;
360         sym->type      = sig_type;
361         sym->size      = size;
362         vector_init(&sym->vlines,  sizeof(struct line_info), 64);
363         vector_init(&sym->vchildren, sizeof(struct symt*), 8);
364         symt_add_module_ht(module, (struct symt_ht*)sym);
365         if (compiland)
366         {
367             p = vector_add(&compiland->vchildren, &module->pool);
368             *p = &sym->symt;
369         }
370     }
371     return sym;
372 }
373
374 void symt_add_func_line(struct module* module, struct symt_function* func,
375                         unsigned source_idx, int line_num, unsigned long offset)
376 {
377     struct line_info*   dli;
378     BOOL                last_matches = FALSE;
379     int                 i;
380
381     if (func == NULL || !(dbghelp_options & SYMOPT_LOAD_LINES)) return;
382
383     TRACE_(dbghelp_symt)("(%p)%s:%lx %s:%u\n", 
384                          func, func->hash_elt.name, offset, 
385                          source_get(module, source_idx), line_num);
386
387     assert(func->symt.tag == SymTagFunction);
388
389     for (i=vector_length(&func->vlines)-1; i>=0; i--)
390     {
391         dli = vector_at(&func->vlines, i);
392         if (dli->is_source_file)
393         {
394             last_matches = (source_idx == dli->u.source_file);
395             break;
396         }
397     }
398
399     if (!last_matches)
400     {
401         /* we shouldn't have line changes on first line of function */
402         dli = vector_add(&func->vlines, &module->pool);
403         dli->is_source_file = 1;
404         dli->is_first       = dli->is_last = 0;
405         dli->line_number    = 0;
406         dli->u.source_file  = source_idx;
407     }
408     dli = vector_add(&func->vlines, &module->pool);
409     dli->is_source_file = 0;
410     dli->is_first       = dli->is_last = 0;
411     dli->line_number    = line_num;
412     dli->u.pc_offset    = func->address + offset;
413 }
414
415 /******************************************************************
416  *             symt_add_func_local
417  *
418  * Adds a new local/parameter to a given function:
419  * In any cases, dt tells whether it's a local variable or a parameter
420  * If regno it's not 0:
421  *      - then variable is stored in a register
422  *      - otherwise, value is referenced by register + offset
423  * Otherwise, the variable is stored on the stack:
424  *      - offset is then the offset from the frame register
425  */
426 struct symt_data* symt_add_func_local(struct module* module, 
427                                       struct symt_function* func, 
428                                       enum DataKind dt,
429                                       const struct location* loc,
430                                       struct symt_block* block, 
431                                       struct symt* type, const char* name)
432 {
433     struct symt_data*   locsym;
434     struct symt**       p;
435
436     TRACE_(dbghelp_symt)("Adding local symbol (%s:%s): %s %p\n",
437                          debugstr_w(module->module.ModuleName), func->hash_elt.name,
438                          name, type);
439
440     assert(func);
441     assert(func->symt.tag == SymTagFunction);
442     assert(dt == DataIsParam || dt == DataIsLocal);
443
444     locsym = pool_alloc(&module->pool, sizeof(*locsym));
445     locsym->symt.tag      = SymTagData;
446     locsym->hash_elt.name = pool_strdup(&module->pool, name);
447     locsym->hash_elt.next = NULL;
448     locsym->kind          = dt;
449     locsym->container     = &block->symt;
450     locsym->type          = type;
451     locsym->u.var         = *loc;
452     if (block)
453         p = vector_add(&block->vchildren, &module->pool);
454     else
455         p = vector_add(&func->vchildren, &module->pool);
456     *p = &locsym->symt;
457     return locsym;
458 }
459
460
461 struct symt_block* symt_open_func_block(struct module* module, 
462                                         struct symt_function* func,
463                                         struct symt_block* parent_block, 
464                                         unsigned pc, unsigned len)
465 {
466     struct symt_block*  block;
467     struct symt**       p;
468
469     assert(func);
470     assert(func->symt.tag == SymTagFunction);
471
472     assert(!parent_block || parent_block->symt.tag == SymTagBlock);
473     block = pool_alloc(&module->pool, sizeof(*block));
474     block->symt.tag = SymTagBlock;
475     block->address  = func->address + pc;
476     block->size     = len;
477     block->container = parent_block ? &parent_block->symt : &func->symt;
478     vector_init(&block->vchildren, sizeof(struct symt*), 4);
479     if (parent_block)
480         p = vector_add(&parent_block->vchildren, &module->pool);
481     else
482         p = vector_add(&func->vchildren, &module->pool);
483     *p = &block->symt;
484
485     return block;
486 }
487
488 struct symt_block* symt_close_func_block(struct module* module, 
489                                          const struct symt_function* func,
490                                          struct symt_block* block, unsigned pc)
491 {
492     assert(func);
493     assert(func->symt.tag == SymTagFunction);
494
495     if (pc) block->size = func->address + pc - block->address;
496     return (block->container->tag == SymTagBlock) ? 
497         GET_ENTRY(block->container, struct symt_block, symt) : NULL;
498 }
499
500 struct symt_hierarchy_point* symt_add_function_point(struct module* module,
501                                                      struct symt_function* func,
502                                                      enum SymTagEnum point,
503                                                      const struct location* loc,
504                                                      const char* name)
505 {
506     struct symt_hierarchy_point*sym;
507     struct symt**               p;
508
509     if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
510     {
511         sym->symt.tag = point;
512         sym->parent   = &func->symt;
513         sym->loc      = *loc;
514         sym->hash_elt.name = name ? pool_strdup(&module->pool, name) : NULL;
515         p = vector_add(&func->vchildren, &module->pool);
516         *p = &sym->symt;
517     }
518     return sym;
519 }
520
521 BOOL symt_normalize_function(struct module* module, const struct symt_function* func)
522 {
523     unsigned            len;
524     struct line_info*   dli;
525
526     assert(func);
527     /* We aren't adding any more locals or line numbers to this function.
528      * Free any spare memory that we might have allocated.
529      */
530     assert(func->symt.tag == SymTagFunction);
531
532 /* EPP     vector_pool_normalize(&func->vlines,    &module->pool); */
533 /* EPP     vector_pool_normalize(&func->vchildren, &module->pool); */
534
535     len = vector_length(&func->vlines);
536     if (len--)
537     {
538         dli = vector_at(&func->vlines,   0);  dli->is_first = 1;
539         dli = vector_at(&func->vlines, len);  dli->is_last  = 1;
540     }
541     return TRUE;
542 }
543
544 struct symt_thunk* symt_new_thunk(struct module* module, 
545                                   struct symt_compiland* compiland, 
546                                   const char* name, THUNK_ORDINAL ord,
547                                   unsigned long addr, unsigned long size)
548 {
549     struct symt_thunk*  sym;
550
551     TRACE_(dbghelp_symt)("Adding global thunk %s:%s @%lx-%lx\n",
552                          debugstr_w(module->module.ModuleName), name, addr, addr + size - 1);
553
554     if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
555     {
556         sym->symt.tag  = SymTagThunk;
557         sym->hash_elt.name = pool_strdup(&module->pool, name);
558         sym->container = &compiland->symt;
559         sym->address   = addr;
560         sym->size      = size;
561         sym->ordinal   = ord;
562         symt_add_module_ht(module, (struct symt_ht*)sym);
563         if (compiland)
564         {
565             struct symt**       p;
566             p = vector_add(&compiland->vchildren, &module->pool);
567             *p = &sym->symt;
568         }
569     }
570     return sym;
571 }
572
573 struct symt_data* symt_new_constant(struct module* module,
574                                     struct symt_compiland* compiland,
575                                     const char* name, struct symt* type,
576                                     const VARIANT* v)
577 {
578     struct symt_data*  sym;
579
580     TRACE_(dbghelp_symt)("Adding constant value %s:%s\n",
581                          debugstr_w(module->module.ModuleName), name);
582
583     if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
584     {
585         sym->symt.tag      = SymTagData;
586         sym->hash_elt.name = pool_strdup(&module->pool, name);
587         sym->kind          = DataIsConstant;
588         sym->container     = compiland ? &compiland->symt : NULL;
589         sym->type          = type;
590         sym->u.value       = *v;
591         symt_add_module_ht(module, (struct symt_ht*)sym);
592         if (compiland)
593         {
594             struct symt**       p;
595             p = vector_add(&compiland->vchildren, &module->pool);
596             *p = &sym->symt;
597         }
598     }
599     return sym;
600 }
601
602 struct symt_hierarchy_point* symt_new_label(struct module* module,
603                                             struct symt_compiland* compiland,
604                                             const char* name, unsigned long address)
605 {
606     struct symt_hierarchy_point*        sym;
607
608     TRACE_(dbghelp_symt)("Adding global label value %s:%s\n",
609                          debugstr_w(module->module.ModuleName), name);
610
611     if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
612     {
613         sym->symt.tag      = SymTagLabel;
614         sym->hash_elt.name = pool_strdup(&module->pool, name);
615         sym->loc.kind      = loc_absolute;
616         sym->loc.offset    = address;
617         sym->parent        = compiland ? &compiland->symt : NULL;
618         symt_add_module_ht(module, (struct symt_ht*)sym);
619         if (compiland)
620         {
621             struct symt**       p;
622             p = vector_add(&compiland->vchildren, &module->pool);
623             *p = &sym->symt;
624         }
625     }
626     return sym;
627 }
628
629 /* expect sym_info->MaxNameLen to be set before being called */
630 static void symt_fill_sym_info(const struct module_pair* pair,
631                                const struct symt_function* func,
632                                const struct symt* sym, SYMBOL_INFO* sym_info)
633 {
634     const char* name;
635     DWORD64 size;
636
637     if (!symt_get_info(sym, TI_GET_TYPE, &sym_info->TypeIndex))
638         sym_info->TypeIndex = 0;
639     sym_info->info = (DWORD)sym;
640     sym_info->Reserved[0] = sym_info->Reserved[1] = 0;
641     if (!symt_get_info(sym, TI_GET_LENGTH, &size) &&
642         (!sym_info->TypeIndex ||
643          !symt_get_info((struct symt*)sym_info->TypeIndex, TI_GET_LENGTH, &size)))
644         size = 0;
645     sym_info->Size = (DWORD)size;
646     sym_info->ModBase = pair->requested->module.BaseOfImage;
647     sym_info->Flags = 0;
648     sym_info->Value = 0;
649
650     switch (sym->tag)
651     {
652     case SymTagData:
653         {
654             const struct symt_data*  data = (const struct symt_data*)sym;
655             switch (data->kind)
656             {
657             case DataIsParam:
658                 sym_info->Flags |= SYMFLAG_PARAMETER;
659                 /* fall through */
660             case DataIsLocal:
661                 {
662                     struct location loc = data->u.var;
663
664                     if (loc.kind >= loc_user)
665                         pair->effective->loc_compute(pair->pcs, pair->effective, func, &loc);
666
667                     switch (loc.kind)
668                     {
669                     case loc_error:
670                         /* for now we report error cases as a negative register number */
671                         sym_info->Flags |= SYMFLAG_LOCAL;
672                         /* fall through */
673                     case loc_register:
674                         sym_info->Flags |= SYMFLAG_REGISTER;
675                         sym_info->Register = loc.reg;
676                         sym_info->Address = 0;
677                         break;
678                     case loc_regrel:
679                         sym_info->Flags |= SYMFLAG_LOCAL | SYMFLAG_REGREL;
680                         /* FIXME: it's i386 dependent !!! */
681                         sym_info->Register = loc.reg ? loc.reg : CV_REG_EBP;
682                         sym_info->Address = loc.offset;
683                         break;
684                     default:
685                         FIXME("Shouldn't happen (kind=%d), debug reader backend is broken\n", loc.kind);
686                         assert(0);
687                     }
688                 }
689                 break;
690             case DataIsGlobal:
691             case DataIsFileStatic:
692                 symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
693                 sym_info->Register = 0;
694                 break;
695             case DataIsConstant:
696                 sym_info->Flags |= SYMFLAG_VALUEPRESENT;
697                 switch (data->u.value.n1.n2.vt)
698                 {
699                 case VT_I4:  sym_info->Value = (ULONG)data->u.value.n1.n2.n3.lVal; break;
700                 case VT_I2:  sym_info->Value = (ULONG)(long)data->u.value.n1.n2.n3.iVal; break;
701                 case VT_I1:  sym_info->Value = (ULONG)(long)data->u.value.n1.n2.n3.cVal; break;
702                 case VT_UI4: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.ulVal; break;
703                 case VT_UI2: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.uiVal; break;
704                 case VT_UI1: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.bVal; break;
705                 case VT_I1 | VT_BYREF: sym_info->Value = (ULONG64)(DWORD_PTR)data->u.value.n1.n2.n3.byref; break;
706                 case VT_EMPTY: sym_info->Value = 0; break;
707                 default:
708                     FIXME("Unsupported variant type (%u)\n", data->u.value.n1.n2.vt);
709                     sym_info->Value = 0;
710                     break;
711                 }
712                 break;
713             default:
714                 FIXME("Unhandled kind (%u) in sym data\n", data->kind);
715             }
716         }
717         break;
718     case SymTagPublicSymbol:
719         sym_info->Flags |= SYMFLAG_EXPORT;
720         symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
721         break;
722     case SymTagFunction:
723         sym_info->Flags |= SYMFLAG_FUNCTION;
724         symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
725         break;
726     case SymTagThunk:
727         sym_info->Flags |= SYMFLAG_THUNK;
728         symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
729         break;
730     default:
731         symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
732         sym_info->Register = 0;
733         break;
734     }
735     sym_info->Scope = 0; /* FIXME */
736     sym_info->Tag = sym->tag;
737     name = symt_get_name(sym);
738     if (sym_info->MaxNameLen)
739     {
740         if (sym->tag != SymTagPublicSymbol || !(dbghelp_options & SYMOPT_UNDNAME) ||
741             (sym_info->NameLen = UnDecorateSymbolName(name, sym_info->Name,
742                                                       sym_info->MaxNameLen, UNDNAME_NAME_ONLY) == 0))
743         {
744             sym_info->NameLen = min(strlen(name), sym_info->MaxNameLen - 1);
745             memcpy(sym_info->Name, name, sym_info->NameLen);
746             sym_info->Name[sym_info->NameLen] = '\0';
747         }
748     }
749     TRACE_(dbghelp_symt)("%p => %s %u %s\n",
750                          sym, sym_info->Name, sym_info->Size,
751                          wine_dbgstr_longlong(sym_info->Address));
752 }
753
754 struct sym_enum
755 {
756     PSYM_ENUMERATESYMBOLS_CALLBACK      cb;
757     PVOID                               user;
758     SYMBOL_INFO*                        sym_info;
759     DWORD                               index;
760     DWORD                               tag;
761     DWORD64                             addr;
762     char                                buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
763 };
764
765 static BOOL send_symbol(const struct sym_enum* se, const struct module_pair* pair,
766                         const struct symt_function* func, const struct symt* sym)
767 {
768     symt_fill_sym_info(pair, func, sym, se->sym_info);
769     if (se->index && se->sym_info->info != se->index) return FALSE;
770     if (se->tag && se->sym_info->Tag != se->tag) return FALSE;
771     if (se->addr && !(se->addr >= se->sym_info->Address && se->addr < se->sym_info->Address + se->sym_info->Size)) return FALSE;
772     return !se->cb(se->sym_info, se->sym_info->Size, se->user);
773 }
774
775 static BOOL symt_enum_module(const struct module_pair* pair, const regex_t* regex,
776                              const struct sym_enum* se)
777 {
778     void*                       ptr;
779     struct symt_ht*             sym = NULL;
780     struct hash_table_iter      hti;
781
782     hash_table_iter_init(&pair->effective->ht_symbols, &hti, NULL);
783     while ((ptr = hash_table_iter_up(&hti)))
784     {
785         sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
786         if (sym->hash_elt.name && match_regexp(regex, sym->hash_elt.name))
787         {
788             se->sym_info->SizeOfStruct = sizeof(SYMBOL_INFO);
789             se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);
790             if (send_symbol(se, pair, NULL, &sym->symt)) return TRUE;
791         }
792     }   
793     return FALSE;
794 }
795
796 static inline unsigned where_to_insert(const struct module* module, unsigned high, const struct symt_ht* elt)
797 {
798     unsigned    low = 0, mid = high / 2;
799     ULONG64     addr;
800
801     if (!high) return 0;
802     symt_get_info(&elt->symt, TI_GET_ADDRESS, &addr);
803     do
804     {
805         switch (cmp_sorttab_addr(module, mid, addr))
806         {
807         case 0: return mid;
808         case -1: low = mid + 1; break;
809         case 1: high = mid; break;
810         }
811         mid = low + (high - low) / 2;
812     } while (low < high);
813     return mid;
814 }
815
816 /***********************************************************************
817  *              resort_symbols
818  *
819  * Rebuild sorted list of symbols for a module.
820  */
821 static BOOL resort_symbols(struct module* module)
822 {
823     if (!(module->module.NumSyms = module->num_symbols))
824         return FALSE;
825
826     /* FIXME: what's the optimal value here ??? */
827     if (module->num_sorttab && module->num_symbols <= module->num_sorttab + 30)
828     {
829         int     i, delta, ins_idx = module->num_sorttab, prev_ins_idx;
830         struct symt_ht* tmp[30];
831
832         delta = module->num_symbols - module->num_sorttab;
833         memcpy(tmp, &module->addr_sorttab[module->num_sorttab], delta * sizeof(struct symt_ht*));
834         qsort(tmp, delta, sizeof(struct symt_ht*), symt_cmp_addr);
835
836         for (i = delta - 1; i >= 0; i--)
837         {
838             prev_ins_idx = ins_idx;
839             ins_idx = where_to_insert(module, prev_ins_idx = ins_idx, tmp[i]);
840             memmove(&module->addr_sorttab[ins_idx + i + 1],
841                     &module->addr_sorttab[ins_idx],
842                     (prev_ins_idx - ins_idx) * sizeof(struct symt_ht*));
843             module->addr_sorttab[ins_idx + i] = tmp[i];
844         }
845     }
846     else
847         qsort(module->addr_sorttab, module->num_symbols, sizeof(struct symt_ht*), symt_cmp_addr);
848     module->num_sorttab = module->num_symbols;
849     return module->sortlist_valid = TRUE;
850 }
851
852 static void symt_get_length(const struct symt* symt, ULONG64* size)
853 {
854     DWORD       type_index;
855
856     if (symt_get_info(symt, TI_GET_LENGTH, size) && *size)
857         return;
858
859     if (symt_get_info(symt, TI_GET_TYPE, &type_index) &&
860         symt_get_info((struct symt*)type_index, TI_GET_LENGTH, size)) return;
861     *size = 0x1000; /* arbitrary value */
862 }
863
864 /* assume addr is in module */
865 struct symt_ht* symt_find_nearest(struct module* module, DWORD addr)
866 {
867     int         mid, high, low;
868     ULONG64     ref_addr, ref_size;
869
870     if (!module->sortlist_valid || !module->addr_sorttab)
871     {
872         if (!resort_symbols(module)) return NULL;
873     }
874
875     /*
876      * Binary search to find closest symbol.
877      */
878     low = 0;
879     high = module->num_sorttab;
880
881     symt_get_info(&module->addr_sorttab[0]->symt, TI_GET_ADDRESS, &ref_addr);
882     if (addr < ref_addr) return NULL;
883     if (high)
884     {
885         symt_get_info(&module->addr_sorttab[high - 1]->symt, TI_GET_ADDRESS, &ref_addr);
886         symt_get_length(&module->addr_sorttab[high - 1]->symt, &ref_size);
887         if (addr >= ref_addr + ref_size) return NULL;
888     }
889     
890     while (high > low + 1)
891     {
892         mid = (high + low) / 2;
893         if (cmp_sorttab_addr(module, mid, addr) < 0)
894             low = mid;
895         else
896             high = mid;
897     }
898     if (low != high && high != module->num_sorttab &&
899         cmp_sorttab_addr(module, high, addr) <= 0)
900         low = high;
901
902     /* If found symbol is a public symbol, check if there are any other entries that
903      * might also have the same address, but would get better information
904      */
905     if (module->addr_sorttab[low]->symt.tag == SymTagPublicSymbol)
906     {   
907         symt_get_info(&module->addr_sorttab[low]->symt, TI_GET_ADDRESS, &ref_addr);
908         if (low > 0 &&
909             module->addr_sorttab[low - 1]->symt.tag != SymTagPublicSymbol &&
910             !cmp_sorttab_addr(module, low - 1, ref_addr))
911             low--;
912         else if (low < module->num_sorttab - 1 &&
913                  module->addr_sorttab[low + 1]->symt.tag != SymTagPublicSymbol &&
914                  !cmp_sorttab_addr(module, low + 1, ref_addr))
915             low++;
916     }
917     /* finally check that we fit into the found symbol */
918     symt_get_info(&module->addr_sorttab[low]->symt, TI_GET_ADDRESS, &ref_addr);
919     if (addr < ref_addr) return NULL;
920     symt_get_length(&module->addr_sorttab[low]->symt, &ref_size);
921     if (addr >= ref_addr + ref_size) return NULL;
922
923     return module->addr_sorttab[low];
924 }
925
926 static BOOL symt_enum_locals_helper(struct module_pair* pair,
927                                     regex_t* preg, const struct sym_enum* se,
928                                     struct symt_function* func, const struct vector* v)
929 {
930     struct symt*        lsym = NULL;
931     DWORD               pc = pair->pcs->ctx_frame.InstructionOffset;
932     unsigned int        i;
933
934     for (i=0; i<vector_length(v); i++)
935     {
936         lsym = *(struct symt**)vector_at(v, i);
937         switch (lsym->tag)
938         {
939         case SymTagBlock:
940             {
941                 struct symt_block*  block = (struct symt_block*)lsym;
942                 if (pc < block->address || block->address + block->size <= pc)
943                     continue;
944                 if (!symt_enum_locals_helper(pair, preg, se, func, &block->vchildren))
945                     return FALSE;
946             }
947             break;
948         case SymTagData:
949             if (match_regexp(preg, symt_get_name(lsym)))
950             {
951                 if (send_symbol(se, pair, func, lsym)) return FALSE;
952             }
953             break;
954         case SymTagLabel:
955         case SymTagFuncDebugStart:
956         case SymTagFuncDebugEnd:
957         case SymTagCustom:
958             break;
959         default:
960             FIXME("Unknown type: %u (%x)\n", lsym->tag, lsym->tag);
961             assert(0);
962         }
963     }
964     return TRUE;
965 }
966
967 static BOOL symt_enum_locals(struct process* pcs, const char* mask, 
968                              const struct sym_enum* se)
969 {
970     struct module_pair  pair;
971     struct symt_ht*     sym;
972     DWORD               pc = pcs->ctx_frame.InstructionOffset;
973
974     se->sym_info->SizeOfStruct = sizeof(*se->sym_info);
975     se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);
976
977     pair.pcs = pcs;
978     pair.requested = module_find_by_addr(pair.pcs, pc, DMT_UNKNOWN);
979     if (!module_get_debug(&pair)) return FALSE;
980     if ((sym = symt_find_nearest(pair.effective, pc)) == NULL) return FALSE;
981
982     if (sym->symt.tag == SymTagFunction)
983     {
984         BOOL            ret;
985         regex_t         preg;
986
987         compile_regex(mask ? mask : "*", -1, &preg,
988                       dbghelp_options & SYMOPT_CASE_INSENSITIVE);
989         ret = symt_enum_locals_helper(&pair, &preg, se, (struct symt_function*)sym,
990                                       &((struct symt_function*)sym)->vchildren);
991         regfree(&preg);
992         return ret;
993         
994     }
995     return send_symbol(se, &pair, NULL, &sym->symt);
996 }
997
998 /******************************************************************
999  *              copy_symbolW
1000  *
1001  * Helper for transforming an ANSI symbol info into a UNICODE one.
1002  * Assume that MaxNameLen is the same for both version (A & W).
1003  */
1004 void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si)
1005 {
1006     siw->SizeOfStruct = si->SizeOfStruct;
1007     siw->TypeIndex = si->TypeIndex; 
1008     siw->Reserved[0] = si->Reserved[0];
1009     siw->Reserved[1] = si->Reserved[1];
1010     siw->Index = si->info; /* FIXME: see dbghelp.h */
1011     siw->Size = si->Size;
1012     siw->ModBase = si->ModBase;
1013     siw->Flags = si->Flags;
1014     siw->Value = si->Value;
1015     siw->Address = si->Address;
1016     siw->Register = si->Register;
1017     siw->Scope = si->Scope;
1018     siw->Tag = si->Tag;
1019     siw->NameLen = si->NameLen;
1020     siw->MaxNameLen = si->MaxNameLen;
1021     MultiByteToWideChar(CP_ACP, 0, si->Name, -1, siw->Name, siw->MaxNameLen);
1022 }
1023
1024 /******************************************************************
1025  *              sym_enum
1026  *
1027  * Core routine for most of the enumeration of symbols
1028  */
1029 static BOOL sym_enum(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
1030                      const struct sym_enum* se)
1031 {
1032     struct module_pair  pair;
1033     const char*         bang;
1034     regex_t             mod_regex, sym_regex;
1035
1036     pair.pcs = process_find_by_handle(hProcess);
1037     if (!pair.pcs) return FALSE;
1038     if (BaseOfDll == 0)
1039     {
1040         /* do local variables ? */
1041         if (!Mask || !(bang = strchr(Mask, '!')))
1042             return symt_enum_locals(pair.pcs, Mask, se);
1043
1044         if (bang == Mask) return FALSE;
1045
1046         compile_regex(Mask, bang - Mask, &mod_regex, TRUE);
1047         compile_regex(bang + 1, -1, &sym_regex, 
1048                       dbghelp_options & SYMOPT_CASE_INSENSITIVE);
1049         
1050         for (pair.requested = pair.pcs->lmodules; pair.requested; pair.requested = pair.requested->next)
1051         {
1052             if (pair.requested->type == DMT_PE && module_get_debug(&pair))
1053             {
1054                 if (match_regexp(&mod_regex, pair.requested->module_name) &&
1055                     symt_enum_module(&pair, &sym_regex, se))
1056                     break;
1057             }
1058         }
1059         /* not found in PE modules, retry on the ELF ones
1060          */
1061         if (!pair.requested && (dbghelp_options & SYMOPT_WINE_WITH_NATIVE_MODULES))
1062         {
1063             for (pair.requested = pair.pcs->lmodules; pair.requested; pair.requested = pair.requested->next)
1064             {
1065                 if ((pair.requested->type == DMT_ELF || pair.requested->type == DMT_MACHO) &&
1066                     !module_get_containee(pair.pcs, pair.requested) &&
1067                     module_get_debug(&pair))
1068                 {
1069                     if (match_regexp(&mod_regex, pair.requested->module_name) &&
1070                         symt_enum_module(&pair, &sym_regex, se))
1071                     break;
1072                 }
1073             }
1074         }
1075         regfree(&mod_regex);
1076         regfree(&sym_regex);
1077         return TRUE;
1078     }
1079     pair.requested = module_find_by_addr(pair.pcs, BaseOfDll, DMT_UNKNOWN);
1080     if (!module_get_debug(&pair))
1081         return FALSE;
1082
1083     /* we always ignore module name from Mask when BaseOfDll is defined */
1084     if (Mask && (bang = strchr(Mask, '!')))
1085     {
1086         if (bang == Mask) return FALSE;
1087         Mask = bang + 1;
1088     }
1089
1090     compile_regex(Mask ? Mask : "*", -1, &sym_regex, 
1091                   dbghelp_options & SYMOPT_CASE_INSENSITIVE);
1092     symt_enum_module(&pair, &sym_regex, se);
1093     regfree(&sym_regex);
1094
1095     return TRUE;
1096 }
1097
1098 /******************************************************************
1099  *              SymEnumSymbols (DBGHELP.@)
1100  *
1101  * cases BaseOfDll = 0
1102  *      !foo fails always (despite what MSDN states)
1103  *      RE1!RE2 looks up all modules matching RE1, and in all these modules, lookup RE2
1104  *      no ! in Mask, lookup in local Context
1105  * cases BaseOfDll != 0
1106  *      !foo fails always (despite what MSDN states)
1107  *      RE1!RE2 gets RE2 from BaseOfDll (whatever RE1 is)
1108  */
1109 BOOL WINAPI SymEnumSymbols(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
1110                            PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback,
1111                            PVOID UserContext)
1112 {
1113     struct sym_enum     se;
1114
1115     TRACE("(%p %s %s %p %p)\n", 
1116           hProcess, wine_dbgstr_longlong(BaseOfDll), debugstr_a(Mask),
1117           EnumSymbolsCallback, UserContext);
1118
1119     se.cb = EnumSymbolsCallback;
1120     se.user = UserContext;
1121     se.index = 0;
1122     se.tag = 0;
1123     se.addr = 0;
1124     se.sym_info = (PSYMBOL_INFO)se.buffer;
1125
1126     return sym_enum(hProcess, BaseOfDll, Mask, &se);
1127 }
1128
1129 struct sym_enumW
1130 {
1131     PSYM_ENUMERATESYMBOLS_CALLBACKW     cb;
1132     void*                               ctx;
1133     PSYMBOL_INFOW                       sym_info;
1134     char                                buffer[sizeof(SYMBOL_INFOW) + MAX_SYM_NAME];
1135
1136 };
1137     
1138 static BOOL CALLBACK sym_enumW(PSYMBOL_INFO si, ULONG size, PVOID ctx)
1139 {
1140     struct sym_enumW*   sew = ctx;
1141
1142     copy_symbolW(sew->sym_info, si);
1143
1144     return (sew->cb)(sew->sym_info, size, sew->ctx);
1145 }
1146
1147 /******************************************************************
1148  *              SymEnumSymbolsW (DBGHELP.@)
1149  *
1150  */
1151 BOOL WINAPI SymEnumSymbolsW(HANDLE hProcess, ULONG64 BaseOfDll, PCWSTR Mask,
1152                             PSYM_ENUMERATESYMBOLS_CALLBACKW EnumSymbolsCallback,
1153                             PVOID UserContext)
1154 {
1155     struct sym_enumW    sew;
1156     BOOL                ret = FALSE;
1157     char*               maskA = NULL;
1158
1159     sew.ctx = UserContext;
1160     sew.cb = EnumSymbolsCallback;
1161     sew.sym_info = (PSYMBOL_INFOW)sew.buffer;
1162
1163     if (Mask)
1164     {
1165         unsigned len = WideCharToMultiByte(CP_ACP, 0, Mask, -1, NULL, 0, NULL, NULL);
1166         maskA = HeapAlloc(GetProcessHeap(), 0, len);
1167         if (!maskA) return FALSE;
1168         WideCharToMultiByte(CP_ACP, 0, Mask, -1, maskA, len, NULL, NULL);
1169     }
1170     ret = SymEnumSymbols(hProcess, BaseOfDll, maskA, sym_enumW, &sew);
1171     HeapFree(GetProcessHeap(), 0, maskA);
1172
1173     return ret;
1174 }
1175
1176 struct sym_enumerate
1177 {
1178     void*                       ctx;
1179     PSYM_ENUMSYMBOLS_CALLBACK   cb;
1180 };
1181
1182 static BOOL CALLBACK sym_enumerate_cb(PSYMBOL_INFO syminfo, ULONG size, void* ctx)
1183 {
1184     struct sym_enumerate*       se = ctx;
1185     return (se->cb)(syminfo->Name, syminfo->Address, syminfo->Size, se->ctx);
1186 }
1187
1188 /***********************************************************************
1189  *              SymEnumerateSymbols (DBGHELP.@)
1190  */
1191 BOOL WINAPI SymEnumerateSymbols(HANDLE hProcess, DWORD BaseOfDll,
1192                                 PSYM_ENUMSYMBOLS_CALLBACK EnumSymbolsCallback, 
1193                                 PVOID UserContext)
1194 {
1195     struct sym_enumerate        se;
1196
1197     se.ctx = UserContext;
1198     se.cb  = EnumSymbolsCallback;
1199     
1200     return SymEnumSymbols(hProcess, BaseOfDll, NULL, sym_enumerate_cb, &se);
1201 }
1202
1203 struct sym_enumerate64
1204 {
1205     void*                       ctx;
1206     PSYM_ENUMSYMBOLS_CALLBACK64 cb;
1207 };
1208
1209 static BOOL CALLBACK sym_enumerate_cb64(PSYMBOL_INFO syminfo, ULONG size, void* ctx)
1210 {
1211     struct sym_enumerate64*     se = ctx;
1212     return (se->cb)(syminfo->Name, syminfo->Address, syminfo->Size, se->ctx);
1213 }
1214
1215 /***********************************************************************
1216  *              SymEnumerateSymbols64 (DBGHELP.@)
1217  */
1218 BOOL WINAPI SymEnumerateSymbols64(HANDLE hProcess, DWORD64 BaseOfDll,
1219                                   PSYM_ENUMSYMBOLS_CALLBACK64 EnumSymbolsCallback,
1220                                   PVOID UserContext)
1221 {
1222     struct sym_enumerate64      se;
1223
1224     se.ctx = UserContext;
1225     se.cb  = EnumSymbolsCallback;
1226
1227     return SymEnumSymbols(hProcess, BaseOfDll, NULL, sym_enumerate_cb64, &se);
1228 }
1229
1230 /******************************************************************
1231  *              SymFromAddr (DBGHELP.@)
1232  *
1233  */
1234 BOOL WINAPI SymFromAddr(HANDLE hProcess, DWORD64 Address, 
1235                         DWORD64* Displacement, PSYMBOL_INFO Symbol)
1236 {
1237     struct module_pair  pair;
1238     struct symt_ht*     sym;
1239
1240     pair.pcs = process_find_by_handle(hProcess);
1241     if (!pair.pcs) return FALSE;
1242     pair.requested = module_find_by_addr(pair.pcs, Address, DMT_UNKNOWN);
1243     if (!module_get_debug(&pair)) return FALSE;
1244     if ((sym = symt_find_nearest(pair.effective, Address)) == NULL) return FALSE;
1245
1246     symt_fill_sym_info(&pair, NULL, &sym->symt, Symbol);
1247     *Displacement = Address - Symbol->Address;
1248     return TRUE;
1249 }
1250
1251 /******************************************************************
1252  *              SymFromAddrW (DBGHELP.@)
1253  *
1254  */
1255 BOOL WINAPI SymFromAddrW(HANDLE hProcess, DWORD64 Address, 
1256                          DWORD64* Displacement, PSYMBOL_INFOW Symbol)
1257 {
1258     PSYMBOL_INFO        si;
1259     unsigned            len;
1260     BOOL                ret;
1261
1262     len = sizeof(*si) + Symbol->MaxNameLen * sizeof(WCHAR);
1263     si = HeapAlloc(GetProcessHeap(), 0, len);
1264     if (!si) return FALSE;
1265
1266     si->SizeOfStruct = sizeof(*si);
1267     si->MaxNameLen = Symbol->MaxNameLen;
1268     if ((ret = SymFromAddr(hProcess, Address, Displacement, si)))
1269     {
1270         copy_symbolW(Symbol, si);
1271     }
1272     HeapFree(GetProcessHeap(), 0, si);
1273     return ret;
1274 }
1275
1276 /******************************************************************
1277  *              SymGetSymFromAddr (DBGHELP.@)
1278  *
1279  */
1280 BOOL WINAPI SymGetSymFromAddr(HANDLE hProcess, DWORD Address,
1281                               PDWORD Displacement, PIMAGEHLP_SYMBOL Symbol)
1282 {
1283     char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1284     SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1285     size_t      len;
1286     DWORD64     Displacement64;
1287
1288     if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1289     si->SizeOfStruct = sizeof(*si);
1290     si->MaxNameLen = MAX_SYM_NAME;
1291     if (!SymFromAddr(hProcess, Address, &Displacement64, si))
1292         return FALSE;
1293
1294     if (Displacement)
1295         *Displacement = Displacement64;
1296     Symbol->Address = si->Address;
1297     Symbol->Size    = si->Size;
1298     Symbol->Flags   = si->Flags;
1299     len = min(Symbol->MaxNameLength, si->MaxNameLen);
1300     lstrcpynA(Symbol->Name, si->Name, len);
1301     return TRUE;
1302 }
1303
1304 /******************************************************************
1305  *              SymGetSymFromAddr64 (DBGHELP.@)
1306  *
1307  */
1308 BOOL WINAPI SymGetSymFromAddr64(HANDLE hProcess, DWORD64 Address,
1309                                 PDWORD64 Displacement, PIMAGEHLP_SYMBOL64 Symbol)
1310 {
1311     char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1312     SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1313     size_t      len;
1314     DWORD64     Displacement64;
1315
1316     if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1317     si->SizeOfStruct = sizeof(*si);
1318     si->MaxNameLen = MAX_SYM_NAME;
1319     if (!SymFromAddr(hProcess, Address, &Displacement64, si))
1320         return FALSE;
1321
1322     if (Displacement)
1323         *Displacement = Displacement64;
1324     Symbol->Address = si->Address;
1325     Symbol->Size    = si->Size;
1326     Symbol->Flags   = si->Flags;
1327     len = min(Symbol->MaxNameLength, si->MaxNameLen);
1328     lstrcpynA(Symbol->Name, si->Name, len);
1329     return TRUE;
1330 }
1331
1332 static BOOL find_name(struct process* pcs, struct module* module, const char* name,
1333                       SYMBOL_INFO* symbol)
1334 {
1335     struct hash_table_iter      hti;
1336     void*                       ptr;
1337     struct symt_ht*             sym = NULL;
1338     struct module_pair          pair;
1339
1340     pair.pcs = pcs;
1341     if (!(pair.requested = module)) return FALSE;
1342     if (!module_get_debug(&pair)) return FALSE;
1343
1344     hash_table_iter_init(&pair.effective->ht_symbols, &hti, name);
1345     while ((ptr = hash_table_iter_up(&hti)))
1346     {
1347         sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
1348
1349         if (!strcmp(sym->hash_elt.name, name))
1350         {
1351             symt_fill_sym_info(&pair, NULL, &sym->symt, symbol);
1352             return TRUE;
1353         }
1354     }
1355     return FALSE;
1356
1357 }
1358 /******************************************************************
1359  *              SymFromName (DBGHELP.@)
1360  *
1361  */
1362 BOOL WINAPI SymFromName(HANDLE hProcess, PCSTR Name, PSYMBOL_INFO Symbol)
1363 {
1364     struct process*             pcs = process_find_by_handle(hProcess);
1365     struct module*              module;
1366     const char*                 name;
1367
1368     TRACE("(%p, %s, %p)\n", hProcess, Name, Symbol);
1369     if (!pcs) return FALSE;
1370     if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1371     name = strchr(Name, '!');
1372     if (name)
1373     {
1374         char    tmp[128];
1375         assert(name - Name < sizeof(tmp));
1376         memcpy(tmp, Name, name - Name);
1377         tmp[name - Name] = '\0';
1378         module = module_find_by_nameA(pcs, tmp);
1379         return find_name(pcs, module, name + 1, Symbol);
1380     }
1381     for (module = pcs->lmodules; module; module = module->next)
1382     {
1383         if (module->type == DMT_PE && find_name(pcs, module, Name, Symbol))
1384             return TRUE;
1385     }
1386     /* not found in PE modules, retry on the ELF ones
1387      */
1388     if (dbghelp_options & SYMOPT_WINE_WITH_NATIVE_MODULES)
1389     {
1390         for (module = pcs->lmodules; module; module = module->next)
1391         {
1392             if ((module->type == DMT_ELF || module->type == DMT_MACHO) &&
1393                 !module_get_containee(pcs, module) &&
1394                 find_name(pcs, module, Name, Symbol))
1395                 return TRUE;
1396         }
1397     }
1398     return FALSE;
1399 }
1400
1401 /***********************************************************************
1402  *              SymGetSymFromName64 (DBGHELP.@)
1403  */
1404 BOOL WINAPI SymGetSymFromName64(HANDLE hProcess, PCSTR Name, PIMAGEHLP_SYMBOL64 Symbol)
1405 {
1406     char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1407     SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1408     size_t      len;
1409
1410     if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1411     si->SizeOfStruct = sizeof(*si);
1412     si->MaxNameLen = MAX_SYM_NAME;
1413     if (!SymFromName(hProcess, Name, si)) return FALSE;
1414
1415     Symbol->Address = si->Address;
1416     Symbol->Size    = si->Size;
1417     Symbol->Flags   = si->Flags;
1418     len = min(Symbol->MaxNameLength, si->MaxNameLen);
1419     lstrcpynA(Symbol->Name, si->Name, len);
1420     return TRUE;
1421 }
1422
1423 /***********************************************************************
1424  *              SymGetSymFromName (DBGHELP.@)
1425  */
1426 BOOL WINAPI SymGetSymFromName(HANDLE hProcess, PCSTR Name, PIMAGEHLP_SYMBOL Symbol)
1427 {
1428     char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1429     SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1430     size_t      len;
1431
1432     if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1433     si->SizeOfStruct = sizeof(*si);
1434     si->MaxNameLen = MAX_SYM_NAME;
1435     if (!SymFromName(hProcess, Name, si)) return FALSE;
1436
1437     Symbol->Address = si->Address;
1438     Symbol->Size    = si->Size;
1439     Symbol->Flags   = si->Flags;
1440     len = min(Symbol->MaxNameLength, si->MaxNameLen);
1441     lstrcpynA(Symbol->Name, si->Name, len);
1442     return TRUE;
1443 }
1444
1445 /******************************************************************
1446  *              sym_fill_func_line_info
1447  *
1448  * fills information about a file
1449  */
1450 BOOL symt_fill_func_line_info(const struct module* module, const struct symt_function* func,
1451                               DWORD addr, IMAGEHLP_LINE* line)
1452 {
1453     struct line_info*   dli = NULL;
1454     BOOL                found = FALSE;
1455     int                 i;
1456
1457     assert(func->symt.tag == SymTagFunction);
1458
1459     for (i=vector_length(&func->vlines)-1; i>=0; i--)
1460     {
1461         dli = vector_at(&func->vlines, i);
1462         if (!dli->is_source_file)
1463         {
1464             if (found || dli->u.pc_offset > addr) continue;
1465             line->LineNumber = dli->line_number;
1466             line->Address    = dli->u.pc_offset;
1467             line->Key        = dli;
1468             found = TRUE;
1469             continue;
1470         }
1471         if (found)
1472         {
1473             line->FileName = (char*)source_get(module, dli->u.source_file);
1474             return TRUE;
1475         }
1476     }
1477     return FALSE;
1478 }
1479
1480 /***********************************************************************
1481  *              SymGetSymNext64 (DBGHELP.@)
1482  */
1483 BOOL WINAPI SymGetSymNext64(HANDLE hProcess, PIMAGEHLP_SYMBOL64 Symbol)
1484 {
1485     /* algo:
1486      * get module from Symbol.Address
1487      * get index in module.addr_sorttab of Symbol.Address
1488      * increment index
1489      * if out of module bounds, move to next module in process address space
1490      */
1491     FIXME("(%p, %p): stub\n", hProcess, Symbol);
1492     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1493     return FALSE;
1494 }
1495
1496 /***********************************************************************
1497  *              SymGetSymNext (DBGHELP.@)
1498  */
1499 BOOL WINAPI SymGetSymNext(HANDLE hProcess, PIMAGEHLP_SYMBOL Symbol)
1500 {
1501     FIXME("(%p, %p): stub\n", hProcess, Symbol);
1502     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1503     return FALSE;
1504 }
1505
1506 /***********************************************************************
1507  *              SymGetSymPrev64 (DBGHELP.@)
1508  */
1509 BOOL WINAPI SymGetSymPrev64(HANDLE hProcess, PIMAGEHLP_SYMBOL64 Symbol)
1510 {
1511     FIXME("(%p, %p): stub\n", hProcess, Symbol);
1512     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1513     return FALSE;
1514 }
1515
1516 /***********************************************************************
1517  *              SymGetSymPrev (DBGHELP.@)
1518  */
1519 BOOL WINAPI SymGetSymPrev(HANDLE hProcess, PIMAGEHLP_SYMBOL Symbol)
1520 {
1521     FIXME("(%p, %p): stub\n", hProcess, Symbol);
1522     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1523     return FALSE;
1524 }
1525
1526 /******************************************************************
1527  *              SymGetLineFromAddr (DBGHELP.@)
1528  *
1529  */
1530 BOOL WINAPI SymGetLineFromAddr(HANDLE hProcess, DWORD dwAddr, 
1531                                PDWORD pdwDisplacement, PIMAGEHLP_LINE Line)
1532 {
1533     struct module_pair  pair;
1534     struct symt_ht*     symt;
1535
1536     TRACE("%p %08x %p %p\n", hProcess, dwAddr, pdwDisplacement, Line);
1537
1538     if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1539
1540     pair.pcs = process_find_by_handle(hProcess);
1541     if (!pair.pcs) return FALSE;
1542     pair.requested = module_find_by_addr(pair.pcs, dwAddr, DMT_UNKNOWN);
1543     if (!module_get_debug(&pair)) return FALSE;
1544     if ((symt = symt_find_nearest(pair.effective, dwAddr)) == NULL) return FALSE;
1545
1546     if (symt->symt.tag != SymTagFunction) return FALSE;
1547     if (!symt_fill_func_line_info(pair.effective, (struct symt_function*)symt,
1548                                   dwAddr, Line)) return FALSE;
1549     *pdwDisplacement = dwAddr - Line->Address;
1550     return TRUE;
1551 }
1552
1553 /******************************************************************
1554  *              copy_line_64_from_32 (internal)
1555  *
1556  */
1557 static void copy_line_64_from_32(IMAGEHLP_LINE64* l64, const IMAGEHLP_LINE* l32)
1558
1559 {
1560     l64->Key = l32->Key;
1561     l64->LineNumber = l32->LineNumber;
1562     l64->FileName = l32->FileName;
1563     l64->Address = l32->Address;
1564 }
1565
1566 /******************************************************************
1567  *              copy_line_W64_from_32 (internal)
1568  *
1569  */
1570 static void copy_line_W64_from_32(struct process* pcs, IMAGEHLP_LINEW64* l64, const IMAGEHLP_LINE* l32)
1571 {
1572     unsigned len;
1573
1574     l64->Key = l32->Key;
1575     l64->LineNumber = l32->LineNumber;
1576     len = MultiByteToWideChar(CP_ACP, 0, l32->FileName, -1, NULL, 0);
1577     if ((l64->FileName = fetch_buffer(pcs, len * sizeof(WCHAR))))
1578         MultiByteToWideChar(CP_ACP, 0, l32->FileName, -1, l64->FileName, len);
1579     l64->Address = l32->Address;
1580 }
1581
1582 /******************************************************************
1583  *              copy_line_32_from_64 (internal)
1584  *
1585  */
1586 static void copy_line_32_from_64(IMAGEHLP_LINE* l32, const IMAGEHLP_LINE64* l64)
1587
1588 {
1589     l32->Key = l64->Key;
1590     l32->LineNumber = l64->LineNumber;
1591     l32->FileName = l64->FileName;
1592     l32->Address = l64->Address;
1593 }
1594
1595 /******************************************************************
1596  *              SymGetLineFromAddr64 (DBGHELP.@)
1597  *
1598  */
1599 BOOL WINAPI SymGetLineFromAddr64(HANDLE hProcess, DWORD64 dwAddr, 
1600                                  PDWORD pdwDisplacement, PIMAGEHLP_LINE64 Line)
1601 {
1602     IMAGEHLP_LINE       line32;
1603
1604     if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1605     if (!validate_addr64(dwAddr)) return FALSE;
1606     line32.SizeOfStruct = sizeof(line32);
1607     if (!SymGetLineFromAddr(hProcess, (DWORD)dwAddr, pdwDisplacement, &line32))
1608         return FALSE;
1609     copy_line_64_from_32(Line, &line32);
1610     return TRUE;
1611 }
1612
1613 /******************************************************************
1614  *              SymGetLineFromAddrW64 (DBGHELP.@)
1615  *
1616  */
1617 BOOL WINAPI SymGetLineFromAddrW64(HANDLE hProcess, DWORD64 dwAddr, 
1618                                   PDWORD pdwDisplacement, PIMAGEHLP_LINEW64 Line)
1619 {
1620     struct process*     pcs = process_find_by_handle(hProcess);
1621     IMAGEHLP_LINE       line32;
1622
1623     if (!pcs) return FALSE;
1624     if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1625     if (!validate_addr64(dwAddr)) return FALSE;
1626     line32.SizeOfStruct = sizeof(line32);
1627     if (!SymGetLineFromAddr(hProcess, (DWORD)dwAddr, pdwDisplacement, &line32))
1628         return FALSE;
1629     copy_line_W64_from_32(pcs, Line, &line32);
1630     return TRUE;
1631 }
1632
1633 /******************************************************************
1634  *              SymGetLinePrev (DBGHELP.@)
1635  *
1636  */
1637 BOOL WINAPI SymGetLinePrev(HANDLE hProcess, PIMAGEHLP_LINE Line)
1638 {
1639     struct module_pair  pair;
1640     struct line_info*   li;
1641     BOOL                in_search = FALSE;
1642
1643     TRACE("(%p %p)\n", hProcess, Line);
1644
1645     if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1646
1647     pair.pcs = process_find_by_handle(hProcess);
1648     if (!pair.pcs) return FALSE;
1649     pair.requested = module_find_by_addr(pair.pcs, Line->Address, DMT_UNKNOWN);
1650     if (!module_get_debug(&pair)) return FALSE;
1651
1652     if (Line->Key == 0) return FALSE;
1653     li = Line->Key;
1654     /* things are a bit complicated because when we encounter a DLIT_SOURCEFILE
1655      * element we have to go back until we find the prev one to get the real
1656      * source file name for the DLIT_OFFSET element just before 
1657      * the first DLIT_SOURCEFILE
1658      */
1659     while (!li->is_first)
1660     {
1661         li--;
1662         if (!li->is_source_file)
1663         {
1664             Line->LineNumber = li->line_number;
1665             Line->Address    = li->u.pc_offset;
1666             Line->Key        = li;
1667             if (!in_search) return TRUE;
1668         }
1669         else
1670         {
1671             if (in_search)
1672             {
1673                 Line->FileName = (char*)source_get(pair.effective, li->u.source_file);
1674                 return TRUE;
1675             }
1676             in_search = TRUE;
1677         }
1678     }
1679     SetLastError(ERROR_NO_MORE_ITEMS); /* FIXME */
1680     return FALSE;
1681 }
1682
1683 /******************************************************************
1684  *              SymGetLinePrev64 (DBGHELP.@)
1685  *
1686  */
1687 BOOL WINAPI SymGetLinePrev64(HANDLE hProcess, PIMAGEHLP_LINE64 Line)
1688 {
1689     IMAGEHLP_LINE       line32;
1690
1691     line32.SizeOfStruct = sizeof(line32);
1692     copy_line_32_from_64(&line32, Line);
1693     if (!SymGetLinePrev(hProcess, &line32)) return FALSE;
1694     copy_line_64_from_32(Line, &line32);
1695     return TRUE;
1696 }
1697     
1698 BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE line)
1699 {
1700     struct line_info*   li;
1701
1702     if (line->Key == 0) return FALSE;
1703     li = line->Key;
1704     while (!li->is_last)
1705     {
1706         li++;
1707         if (!li->is_source_file)
1708         {
1709             line->LineNumber = li->line_number;
1710             line->Address    = li->u.pc_offset;
1711             line->Key        = li;
1712             return TRUE;
1713         }
1714         line->FileName = (char*)source_get(module, li->u.source_file);
1715     }
1716     return FALSE;
1717 }
1718
1719 /******************************************************************
1720  *              SymGetLineNext (DBGHELP.@)
1721  *
1722  */
1723 BOOL WINAPI SymGetLineNext(HANDLE hProcess, PIMAGEHLP_LINE Line)
1724 {
1725     struct module_pair  pair;
1726
1727     TRACE("(%p %p)\n", hProcess, Line);
1728
1729     if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1730     pair.pcs = process_find_by_handle(hProcess);
1731     if (!pair.pcs) return FALSE;
1732     pair.requested = module_find_by_addr(pair.pcs, Line->Address, DMT_UNKNOWN);
1733     if (!module_get_debug(&pair)) return FALSE;
1734
1735     if (symt_get_func_line_next(pair.effective, Line)) return TRUE;
1736     SetLastError(ERROR_NO_MORE_ITEMS); /* FIXME */
1737     return FALSE;
1738 }
1739
1740 /******************************************************************
1741  *              SymGetLineNext64 (DBGHELP.@)
1742  *
1743  */
1744 BOOL WINAPI SymGetLineNext64(HANDLE hProcess, PIMAGEHLP_LINE64 Line)
1745 {
1746     IMAGEHLP_LINE       line32;
1747
1748     line32.SizeOfStruct = sizeof(line32);
1749     copy_line_32_from_64(&line32, Line);
1750     if (!SymGetLineNext(hProcess, &line32)) return FALSE;
1751     copy_line_64_from_32(Line, &line32);
1752     return TRUE;
1753 }
1754     
1755 /***********************************************************************
1756  *              SymFunctionTableAccess (DBGHELP.@)
1757  */
1758 PVOID WINAPI SymFunctionTableAccess(HANDLE hProcess, DWORD AddrBase)
1759 {
1760     WARN("(%p, 0x%08x): stub\n", hProcess, AddrBase);
1761     return NULL;
1762 }
1763
1764 /***********************************************************************
1765  *              SymFunctionTableAccess64 (DBGHELP.@)
1766  */
1767 PVOID WINAPI SymFunctionTableAccess64(HANDLE hProcess, DWORD64 AddrBase)
1768 {
1769     WARN("(%p, %s): stub\n", hProcess, wine_dbgstr_longlong(AddrBase));
1770     return NULL;
1771 }
1772
1773 /***********************************************************************
1774  *              SymUnDName (DBGHELP.@)
1775  */
1776 BOOL WINAPI SymUnDName(PIMAGEHLP_SYMBOL sym, PSTR UnDecName, DWORD UnDecNameLength)
1777 {
1778     return UnDecorateSymbolName(sym->Name, UnDecName, UnDecNameLength,
1779                                 UNDNAME_COMPLETE) != 0;
1780 }
1781
1782 /***********************************************************************
1783  *              SymUnDName64 (DBGHELP.@)
1784  */
1785 BOOL WINAPI SymUnDName64(PIMAGEHLP_SYMBOL64 sym, PSTR UnDecName, DWORD UnDecNameLength)
1786 {
1787     return UnDecorateSymbolName(sym->Name, UnDecName, UnDecNameLength,
1788                                 UNDNAME_COMPLETE) != 0;
1789 }
1790
1791 static void* und_alloc(size_t len) { return HeapAlloc(GetProcessHeap(), 0, len); }
1792 static void  und_free (void* ptr)  { HeapFree(GetProcessHeap(), 0, ptr); }
1793
1794 /***********************************************************************
1795  *              UnDecorateSymbolName (DBGHELP.@)
1796  */
1797 DWORD WINAPI UnDecorateSymbolName(PCSTR DecoratedName, PSTR UnDecoratedName,
1798                                   DWORD UndecoratedLength, DWORD Flags)
1799 {
1800     /* undocumented from msvcrt */
1801     static char* (*p_undname)(char*, const char*, int, void* (*)(size_t), void (*)(void*), unsigned short);
1802     static const WCHAR szMsvcrt[] = {'m','s','v','c','r','t','.','d','l','l',0};
1803
1804     TRACE("(%s, %p, %d, 0x%08x)\n",
1805           debugstr_a(DecoratedName), UnDecoratedName, UndecoratedLength, Flags);
1806
1807     if (!p_undname)
1808     {
1809         if (!hMsvcrt) hMsvcrt = LoadLibraryW(szMsvcrt);
1810         if (hMsvcrt) p_undname = (void*)GetProcAddress(hMsvcrt, "__unDName");
1811         if (!p_undname) return 0;
1812     }
1813
1814     if (!UnDecoratedName) return 0;
1815     if (!p_undname(UnDecoratedName, DecoratedName, UndecoratedLength, 
1816                    und_alloc, und_free, Flags))
1817         return 0;
1818     return strlen(UnDecoratedName);
1819 }
1820
1821 /******************************************************************
1822  *              SymMatchString (DBGHELP.@)
1823  *
1824  */
1825 BOOL WINAPI SymMatchString(PCSTR string, PCSTR re, BOOL _case)
1826 {
1827     regex_t     preg;
1828     BOOL        ret;
1829
1830     TRACE("%s %s %c\n", string, re, _case ? 'Y' : 'N');
1831
1832     compile_regex(re, -1, &preg, _case);
1833     ret = match_regexp(&preg, string);
1834     regfree(&preg);
1835     return ret;
1836 }
1837
1838 /******************************************************************
1839  *              SymSearch (DBGHELP.@)
1840  */
1841 BOOL WINAPI SymSearch(HANDLE hProcess, ULONG64 BaseOfDll, DWORD Index,
1842                       DWORD SymTag, PCSTR Mask, DWORD64 Address,
1843                       PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback,
1844                       PVOID UserContext, DWORD Options)
1845 {
1846     struct sym_enum     se;
1847
1848     TRACE("(%p %s %u %u %s %s %p %p %x)\n",
1849           hProcess, wine_dbgstr_longlong(BaseOfDll), Index, SymTag, Mask,
1850           wine_dbgstr_longlong(Address), EnumSymbolsCallback,
1851           UserContext, Options);
1852
1853     if (Options != SYMSEARCH_GLOBALSONLY)
1854     {
1855         FIXME("Unsupported searching with options (%x)\n", Options);
1856         SetLastError(ERROR_INVALID_PARAMETER);
1857         return FALSE;
1858     }
1859
1860     se.cb = EnumSymbolsCallback;
1861     se.user = UserContext;
1862     se.index = Index;
1863     se.tag = SymTag;
1864     se.addr = Address;
1865     se.sym_info = (PSYMBOL_INFO)se.buffer;
1866
1867     return sym_enum(hProcess, BaseOfDll, Mask, &se);
1868 }
1869
1870 /******************************************************************
1871  *              SymSearchW (DBGHELP.@)
1872  */
1873 BOOL WINAPI SymSearchW(HANDLE hProcess, ULONG64 BaseOfDll, DWORD Index,
1874                        DWORD SymTag, PCWSTR Mask, DWORD64 Address,
1875                        PSYM_ENUMERATESYMBOLS_CALLBACKW EnumSymbolsCallback,
1876                        PVOID UserContext, DWORD Options)
1877 {
1878     struct sym_enumW    sew;
1879     BOOL                ret = FALSE;
1880     char*               maskA = NULL;
1881
1882     TRACE("(%p %s %u %u %s %s %p %p %x)\n",
1883           hProcess, wine_dbgstr_longlong(BaseOfDll), Index, SymTag, debugstr_w(Mask),
1884           wine_dbgstr_longlong(Address), EnumSymbolsCallback,
1885           UserContext, Options);
1886
1887     sew.ctx = UserContext;
1888     sew.cb = EnumSymbolsCallback;
1889     sew.sym_info = (PSYMBOL_INFOW)sew.buffer;
1890
1891     if (Mask)
1892     {
1893         unsigned len = WideCharToMultiByte(CP_ACP, 0, Mask, -1, NULL, 0, NULL, NULL);
1894         maskA = HeapAlloc(GetProcessHeap(), 0, len);
1895         if (!maskA) return FALSE;
1896         WideCharToMultiByte(CP_ACP, 0, Mask, -1, maskA, len, NULL, NULL);
1897     }
1898     ret = SymSearch(hProcess, BaseOfDll, Index, SymTag, maskA, Address,
1899                     sym_enumW, &sew, Options);
1900     HeapFree(GetProcessHeap(), 0, maskA);
1901
1902     return ret;
1903 }
1904
1905 /******************************************************************
1906  *              SymAddSymbol (DBGHELP.@)
1907  *
1908  */
1909 BOOL WINAPI SymAddSymbol(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR name,
1910                          DWORD64 addr, DWORD size, DWORD flags)
1911 {
1912     WCHAR       nameW[MAX_SYM_NAME];
1913
1914     MultiByteToWideChar(CP_ACP, 0, name, -1, nameW, sizeof(nameW) / sizeof(WCHAR));
1915     return SymAddSymbolW(hProcess, BaseOfDll, nameW, addr, size, flags);
1916 }
1917
1918 /******************************************************************
1919  *              SymAddSymbolW (DBGHELP.@)
1920  *
1921  */
1922 BOOL WINAPI SymAddSymbolW(HANDLE hProcess, ULONG64 BaseOfDll, PCWSTR name,
1923                           DWORD64 addr, DWORD size, DWORD flags)
1924 {
1925     struct module_pair  pair;
1926
1927     TRACE("(%p %s %s %u)\n", hProcess, wine_dbgstr_w(name), wine_dbgstr_longlong(addr), size);
1928
1929     pair.pcs = process_find_by_handle(hProcess);
1930     if (!pair.pcs) return FALSE;
1931     pair.requested = module_find_by_addr(pair.pcs, BaseOfDll, DMT_UNKNOWN);
1932     if (!module_get_debug(&pair)) return FALSE;
1933
1934     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1935     return FALSE;
1936 }
1937
1938 /******************************************************************
1939  *              SymSetScopeFromAddr (DBGHELP.@)
1940  */
1941 BOOL WINAPI SymSetScopeFromAddr(HANDLE hProcess, ULONG64 addr)
1942 {
1943     struct process*     pcs;
1944
1945     FIXME("(%p %s): stub\n", hProcess, wine_dbgstr_longlong(addr));
1946
1947     if (!(pcs = process_find_by_handle(hProcess))) return FALSE;
1948     return TRUE;
1949 }
1950
1951 /******************************************************************
1952  *              SymEnumLines (DBGHELP.@)
1953  *
1954  */
1955 BOOL WINAPI SymEnumLines(HANDLE hProcess, ULONG64 base, PCSTR compiland,
1956                          PCSTR srcfile, PSYM_ENUMLINES_CALLBACK cb, PVOID user)
1957 {
1958     struct module_pair          pair;
1959     struct hash_table_iter      hti;
1960     struct symt_ht*             sym;
1961     regex_t                     re;
1962     struct line_info*           dli;
1963     void*                       ptr;
1964     SRCCODEINFO                 sci;
1965     const char*                 file;
1966
1967     if (!cb) return FALSE;
1968     if (!(dbghelp_options & SYMOPT_LOAD_LINES)) return TRUE;
1969
1970     pair.pcs = process_find_by_handle(hProcess);
1971     if (!pair.pcs) return FALSE;
1972     if (compiland) FIXME("Unsupported yet (filtering on compiland %s)\n", compiland);
1973     pair.requested = module_find_by_addr(pair.pcs, base, DMT_UNKNOWN);
1974     if (!module_get_debug(&pair)) return FALSE;
1975     if (!compile_file_regex(&re, srcfile)) return FALSE;
1976
1977     sci.SizeOfStruct = sizeof(sci);
1978     sci.ModBase      = base;
1979
1980     hash_table_iter_init(&pair.effective->ht_symbols, &hti, NULL);
1981     while ((ptr = hash_table_iter_up(&hti)))
1982     {
1983         unsigned int    i;
1984
1985         sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
1986         if (sym->symt.tag != SymTagFunction) continue;
1987
1988         sci.FileName[0] = '\0';
1989         for (i=0; i<vector_length(&((struct symt_function*)sym)->vlines); i++)
1990         {
1991             dli = vector_at(&((struct symt_function*)sym)->vlines, i);
1992             if (dli->is_source_file)
1993             {
1994                 file = source_get(pair.effective, dli->u.source_file);
1995                 if (!match_regexp(&re, file)) file = "";
1996                 strcpy(sci.FileName, file);
1997             }
1998             else if (sci.FileName[0])
1999             {
2000                 sci.Key = dli;
2001                 sci.Obj[0] = '\0'; /* FIXME */
2002                 sci.LineNumber = dli->line_number;
2003                 sci.Address = dli->u.pc_offset;
2004                 if (!cb(&sci, user)) break;
2005             }
2006         }
2007     }
2008     regfree(&re);
2009     return TRUE;
2010 }