ole32: Fix memory leaks in the storage test.
[wine] / dlls / dbghelp / dwarf.c
1 /*
2  * File dwarf.c - read dwarf2 information from the ELF modules
3  *
4  * Copyright (C) 2005, Raphael Junqueira
5  * Copyright (C) 2006, 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
24 #include "config.h"
25
26 #include <sys/types.h>
27 #include <fcntl.h>
28 #ifdef HAVE_SYS_STAT_H
29 # include <sys/stat.h>
30 #endif
31 #ifdef HAVE_SYS_MMAN_H
32 #include <sys/mman.h>
33 #endif
34 #include <limits.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #ifdef HAVE_UNISTD_H
38 # include <unistd.h>
39 #endif
40 #include <stdio.h>
41 #ifndef PATH_MAX
42 #define PATH_MAX MAX_PATH
43 #endif
44 #include <assert.h>
45 #include <stdarg.h>
46
47 #include "windef.h"
48 #include "winbase.h"
49 #include "winuser.h"
50 #include "ole2.h"
51 #include "oleauto.h"
52
53 #include "dbghelp_private.h"
54
55 #include "wine/debug.h"
56
57 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_dwarf);
58
59 /* FIXME:
60  * - Functions:
61  *      o unspecified parameters
62  *      o inlined functions
63  *      o Debug{Start|End}Point
64  *      o CFA
65  * - Udt
66  *      o proper types loading (nesting)
67  */
68
69 #if 0
70 static void dump(const void* ptr, unsigned len)
71 {
72     int         i, j;
73     BYTE        msg[128];
74     static const char hexof[] = "0123456789abcdef";
75     const       BYTE* x = ptr;
76
77     for (i = 0; i < len; i += 16)
78     {
79         sprintf(msg, "%08x: ", i);
80         memset(msg + 10, ' ', 3 * 16 + 1 + 16);
81         for (j = 0; j < min(16, len - i); j++)
82         {
83             msg[10 + 3 * j + 0] = hexof[x[i + j] >> 4];
84             msg[10 + 3 * j + 1] = hexof[x[i + j] & 15];
85             msg[10 + 3 * j + 2] = ' ';
86             msg[10 + 3 * 16 + 1 + j] = (x[i + j] >= 0x20 && x[i + j] < 0x7f) ?
87                 x[i + j] : '.';
88         }
89         msg[10 + 3 * 16] = ' ';
90         msg[10 + 3 * 16 + 1 + 16] = '\0';
91         TRACE("%s\n", msg);
92     }
93 }
94 #endif
95
96 /**
97  *
98  * Main Specs:
99  *  http://www.eagercon.com/dwarf/dwarf3std.htm
100  *  http://www.eagercon.com/dwarf/dwarf-2.0.0.pdf
101  *
102  * dwarf2.h: http://www.hakpetzna.com/b/binutils/dwarf2_8h-source.html
103  *
104  * example of projects who do dwarf2 parsing:
105  *  http://www.x86-64.org/cgi-bin/cvsweb.cgi/binutils.dead/binutils/readelf.c?rev=1.1.1.2
106  *  http://elis.ugent.be/diota/log/ltrace_elf.c
107  */
108 #include "dwarf.h"
109
110 /**
111  * Parsers
112  */
113
114 typedef struct dwarf2_abbrev_entry_attr_s
115 {
116   unsigned long attribute;
117   unsigned long form;
118   struct dwarf2_abbrev_entry_attr_s* next;
119 } dwarf2_abbrev_entry_attr_t;
120
121 typedef struct dwarf2_abbrev_entry_s
122 {
123     unsigned long entry_code;
124     unsigned long tag;
125     unsigned char have_child;
126     unsigned num_attr;
127     dwarf2_abbrev_entry_attr_t* attrs;
128 } dwarf2_abbrev_entry_t;
129
130 struct dwarf2_block
131 {
132     unsigned                    size;
133     const unsigned char*        ptr;
134 };
135
136 struct attribute
137 {
138     unsigned long               form;
139     union
140     {
141         unsigned long                   uvalue;
142         long                            svalue;
143         const char*                     string;
144         struct dwarf2_block             block;
145     } u;
146 };
147
148 typedef struct dwarf2_debug_info_s
149 {
150     const dwarf2_abbrev_entry_t*abbrev;
151     struct symt*                symt;
152     const unsigned char**       data;
153     struct vector               children;
154 } dwarf2_debug_info_t;
155
156 typedef struct dwarf2_section_s
157 {
158     const unsigned char*        address;
159     unsigned                    size;
160 } dwarf2_section_t;
161
162 enum dwarf2_sections {section_debug, section_string, section_abbrev, section_line, section_max};
163
164 typedef struct dwarf2_traverse_context_s
165 {
166     const unsigned char*        data;
167     const unsigned char*        start_data;
168     const unsigned char*        end_data;
169     unsigned char               word_size;
170 } dwarf2_traverse_context_t;
171
172 /* symt_cache indexes */
173 #define sc_void 0
174 #define sc_int1 1
175 #define sc_int2 2
176 #define sc_int4 3
177 #define sc_num  4
178
179 typedef struct dwarf2_parse_context_s
180 {
181     const dwarf2_section_t*     sections;
182     unsigned                    section;
183     struct pool                 pool;
184     struct module*              module;
185     const struct elf_thunk_area*thunks;
186     struct sparse_array         abbrev_table;
187     struct sparse_array         debug_info_table;
188     unsigned long               load_offset;
189     unsigned long               ref_offset;
190     unsigned char               word_size;
191     struct symt*                symt_cache[sc_num]; /* void, int1, int2, int4 */
192 } dwarf2_parse_context_t;
193
194 /* stored in the dbghelp's module internal structure for later reuse */
195 struct dwarf2_module_info_s
196 {
197     dwarf2_section_t            debug_loc;
198 };
199
200 #define loc_dwarf2_location_list        (loc_user + 0)
201 #define loc_dwarf2_block                (loc_user + 1)
202
203 /* forward declarations */
204 static struct symt* dwarf2_parse_enumeration_type(dwarf2_parse_context_t* ctx, dwarf2_debug_info_t* entry);
205
206 static unsigned char dwarf2_get_byte(const unsigned char* ptr)
207 {
208     return *ptr;
209 }
210
211 static unsigned char dwarf2_parse_byte(dwarf2_traverse_context_t* ctx)
212 {
213     unsigned char uvalue = dwarf2_get_byte(ctx->data);
214     ctx->data += 1;
215     return uvalue;
216 }
217
218 static unsigned short dwarf2_get_u2(const unsigned char* ptr)
219 {
220     return *(const UINT16*)ptr;
221 }
222
223 static unsigned short dwarf2_parse_u2(dwarf2_traverse_context_t* ctx)
224 {
225     unsigned short uvalue = dwarf2_get_u2(ctx->data);
226     ctx->data += 2;
227     return uvalue;
228 }
229
230 static unsigned long dwarf2_get_u4(const unsigned char* ptr)
231 {
232     return *(const UINT32*)ptr;
233 }
234
235 static unsigned long dwarf2_parse_u4(dwarf2_traverse_context_t* ctx)
236 {
237     unsigned long uvalue = dwarf2_get_u4(ctx->data);
238     ctx->data += 4;
239     return uvalue;
240 }
241
242 static DWORD64 dwarf2_get_u8(const unsigned char* ptr)
243 {
244     return *(const UINT64*)ptr;
245 }
246
247 static unsigned long dwarf2_get_leb128_as_unsigned(const unsigned char* ptr, const unsigned char** end)
248 {
249     unsigned long ret = 0;
250     unsigned char byte;
251     unsigned shift = 0;
252
253     do
254     {
255         byte = dwarf2_get_byte(ptr++);
256         ret |= (byte & 0x7f) << shift;
257         shift += 7;
258     } while (byte & 0x80);
259
260     if (end) *end = ptr;
261     return ret;
262 }
263
264 static unsigned long dwarf2_leb128_as_unsigned(dwarf2_traverse_context_t* ctx)
265 {
266     unsigned long ret;
267
268     assert(ctx);
269
270     ret = dwarf2_get_leb128_as_unsigned(ctx->data, &ctx->data);
271
272     return ret;
273 }
274
275 static long dwarf2_get_leb128_as_signed(const unsigned char* ptr, const unsigned char** end)
276 {
277     long ret = 0;
278     unsigned char byte;
279     unsigned shift = 0;
280     const unsigned size = sizeof(int) * 8;
281
282     do
283     {
284         byte = dwarf2_get_byte(ptr++);
285         ret |= (byte & 0x7f) << shift;
286         shift += 7;
287     } while (byte & 0x80);
288     if (end) *end = ptr;
289
290     /* as spec: sign bit of byte is 2nd high order bit (80x40)
291      *  -> 0x80 is used as flag.
292      */
293     if ((shift < size) && (byte & 0x40))
294     {
295         ret |= - (1 << shift);
296     }
297     return ret;
298 }
299
300 static long dwarf2_leb128_as_signed(dwarf2_traverse_context_t* ctx)
301 {
302     long ret = 0;
303
304     assert(ctx);
305
306     ret = dwarf2_get_leb128_as_signed(ctx->data, &ctx->data);
307     return ret;
308 }
309
310 static unsigned dwarf2_leb128_length(const dwarf2_traverse_context_t* ctx)
311 {
312     unsigned    ret;
313     for (ret = 0; ctx->data[ret] & 0x80; ret++);
314     return ret + 1;
315 }
316
317 /******************************************************************
318  *              dwarf2_get_addr
319  *
320  * Returns an address.
321  * We assume that in all cases word size from Dwarf matches the size of
322  * addresses in platform where the exec is compiled.
323  */
324 static unsigned long dwarf2_get_addr(const unsigned char* ptr, unsigned word_size)
325 {
326     unsigned long ret;
327
328     switch (word_size)
329     {
330     case 4:
331         ret = dwarf2_get_u4(ptr);
332         break;
333     case 8:
334         ret = dwarf2_get_u8(ptr);
335         break;
336     default:
337         FIXME("Unsupported Word Size %u\n", word_size);
338         ret = 0;
339     }
340     return ret;
341 }
342
343 static unsigned long dwarf2_parse_addr(dwarf2_traverse_context_t* ctx)
344 {
345     unsigned long ret = dwarf2_get_addr(ctx->data, ctx->word_size);
346     ctx->data += ctx->word_size;
347     return ret;
348 }
349
350 static const char* dwarf2_debug_traverse_ctx(const dwarf2_traverse_context_t* ctx) 
351 {
352     return wine_dbg_sprintf("ctx(%p)", ctx->data); 
353 }
354
355 static const char* dwarf2_debug_ctx(const dwarf2_parse_context_t* ctx)
356 {
357     return wine_dbg_sprintf("ctx(%p,%s)",
358                             ctx, debugstr_w(ctx->module->module.ModuleName));
359 }
360
361 static const char* dwarf2_debug_di(const dwarf2_debug_info_t* di)
362 {
363     return wine_dbg_sprintf("debug_info(abbrev:%p,symt:%p)",
364                             di->abbrev, di->symt);
365 }
366
367 static dwarf2_abbrev_entry_t*
368 dwarf2_abbrev_table_find_entry(const struct sparse_array* abbrev_table,
369                                unsigned long entry_code)
370 {
371     assert( NULL != abbrev_table );
372     return sparse_array_find(abbrev_table, entry_code);
373 }
374
375 static void dwarf2_parse_abbrev_set(dwarf2_traverse_context_t* abbrev_ctx, 
376                                     struct sparse_array* abbrev_table,
377                                     struct pool* pool)
378 {
379     unsigned long entry_code;
380     dwarf2_abbrev_entry_t* abbrev_entry;
381     dwarf2_abbrev_entry_attr_t* new = NULL;
382     dwarf2_abbrev_entry_attr_t* last = NULL;
383     unsigned long attribute;
384     unsigned long form;
385
386     assert( NULL != abbrev_ctx );
387
388     TRACE("%s, end at %p\n",
389           dwarf2_debug_traverse_ctx(abbrev_ctx), abbrev_ctx->end_data); 
390
391     sparse_array_init(abbrev_table, sizeof(dwarf2_abbrev_entry_t), 32);
392     while (abbrev_ctx->data < abbrev_ctx->end_data)
393     {
394         TRACE("now at %s\n", dwarf2_debug_traverse_ctx(abbrev_ctx)); 
395         entry_code = dwarf2_leb128_as_unsigned(abbrev_ctx);
396         TRACE("found entry_code %lu\n", entry_code);
397         if (!entry_code)
398         {
399             TRACE("NULL entry code at %s\n", dwarf2_debug_traverse_ctx(abbrev_ctx)); 
400             break;
401         }
402         abbrev_entry = sparse_array_add(abbrev_table, entry_code, pool);
403         assert( NULL != abbrev_entry );
404
405         abbrev_entry->entry_code = entry_code;
406         abbrev_entry->tag        = dwarf2_leb128_as_unsigned(abbrev_ctx);
407         abbrev_entry->have_child = dwarf2_parse_byte(abbrev_ctx);
408         abbrev_entry->attrs      = NULL;
409         abbrev_entry->num_attr   = 0;
410
411         TRACE("table:(%p,#%u) entry_code(%lu) tag(0x%lx) have_child(%u) -> %p\n",
412               abbrev_table, sparse_array_length(abbrev_table),
413               entry_code, abbrev_entry->tag, abbrev_entry->have_child, abbrev_entry);
414
415         last = NULL;
416         while (1)
417         {
418             attribute = dwarf2_leb128_as_unsigned(abbrev_ctx);
419             form = dwarf2_leb128_as_unsigned(abbrev_ctx);
420             if (!attribute) break;
421
422             new = pool_alloc(pool, sizeof(dwarf2_abbrev_entry_attr_t));
423             assert(new);
424
425             new->attribute = attribute;
426             new->form      = form;
427             new->next      = NULL;
428             if (abbrev_entry->attrs)    last->next = new;
429             else                        abbrev_entry->attrs = new;
430             last = new;
431             abbrev_entry->num_attr++;
432         }
433     }
434     TRACE("found %u entries\n", sparse_array_length(abbrev_table));
435 }
436
437 static void dwarf2_swallow_attribute(dwarf2_traverse_context_t* ctx,
438                                      const dwarf2_abbrev_entry_attr_t* abbrev_attr)
439 {
440     unsigned    step;
441
442     TRACE("(attr:0x%lx,form:0x%lx)\n", abbrev_attr->attribute, abbrev_attr->form);
443
444     switch (abbrev_attr->form)
445     {
446     case DW_FORM_ref_addr:
447     case DW_FORM_addr:   step = ctx->word_size; break;
448     case DW_FORM_flag:
449     case DW_FORM_data1:
450     case DW_FORM_ref1:   step = 1; break;
451     case DW_FORM_data2:
452     case DW_FORM_ref2:   step = 2; break;
453     case DW_FORM_data4:
454     case DW_FORM_ref4:
455     case DW_FORM_strp:   step = 4; break;
456     case DW_FORM_data8:
457     case DW_FORM_ref8:   step = 8; break;
458     case DW_FORM_sdata:
459     case DW_FORM_ref_udata:
460     case DW_FORM_udata:  step = dwarf2_leb128_length(ctx); break;
461     case DW_FORM_string: step = strlen((const char*)ctx->data) + 1; break;
462     case DW_FORM_block:  step = dwarf2_leb128_as_unsigned(ctx); break;
463     case DW_FORM_block1: step = dwarf2_parse_byte(ctx); break;
464     case DW_FORM_block2: step = dwarf2_parse_u2(ctx); break;
465     case DW_FORM_block4: step = dwarf2_parse_u4(ctx); break;
466     default:
467         FIXME("Unhandled attribute form %lx\n", abbrev_attr->form);
468         return;
469     }
470     ctx->data += step;
471 }
472
473 static void dwarf2_fill_attr(const dwarf2_parse_context_t* ctx,
474                              const dwarf2_abbrev_entry_attr_t* abbrev_attr,
475                              const unsigned char* data,
476                              struct attribute* attr)
477 {
478     attr->form = abbrev_attr->form;
479     switch (attr->form)
480     {
481     case DW_FORM_ref_addr:
482     case DW_FORM_addr:
483         attr->u.uvalue = dwarf2_get_addr(data, ctx->word_size);
484         TRACE("addr<0x%lx>\n", attr->u.uvalue);
485         break;
486
487     case DW_FORM_flag:
488         attr->u.uvalue = dwarf2_get_byte(data);
489         TRACE("flag<0x%lx>\n", attr->u.uvalue);
490         break;
491
492     case DW_FORM_data1:
493         attr->u.uvalue = dwarf2_get_byte(data);
494         TRACE("data1<%lu>\n", attr->u.uvalue);
495         break;
496
497     case DW_FORM_data2:
498         attr->u.uvalue = dwarf2_get_u2(data);
499         TRACE("data2<%lu>\n", attr->u.uvalue);
500         break;
501
502     case DW_FORM_data4:
503         attr->u.uvalue = dwarf2_get_u4(data);
504         TRACE("data4<%lu>\n", attr->u.uvalue);
505         break;
506
507     case DW_FORM_data8:
508         attr->u.block.size = 8;
509         attr->u.block.ptr  = data;
510         data += 8;
511         break;
512
513     case DW_FORM_ref1:
514         attr->u.uvalue = ctx->ref_offset + dwarf2_get_byte(data);
515         TRACE("ref1<0x%lx>\n", attr->u.uvalue);
516         break;
517
518     case DW_FORM_ref2:
519         attr->u.uvalue = ctx->ref_offset + dwarf2_get_u2(data);
520         TRACE("ref2<0x%lx>\n", attr->u.uvalue);
521         break;
522
523     case DW_FORM_ref4:
524         attr->u.uvalue = ctx->ref_offset + dwarf2_get_u4(data);
525         TRACE("ref4<0x%lx>\n", attr->u.uvalue);
526         break;
527     
528     case DW_FORM_ref8:
529         FIXME("Unhandled 64 bit support\n");
530         break;
531
532     case DW_FORM_sdata:
533         attr->u.svalue = dwarf2_get_leb128_as_signed(data, NULL);
534         break;
535
536     case DW_FORM_ref_udata:
537         attr->u.uvalue = dwarf2_get_leb128_as_unsigned(data, NULL);
538         break;
539
540     case DW_FORM_udata:
541         attr->u.uvalue = dwarf2_get_leb128_as_unsigned(data, NULL);
542         break;
543
544     case DW_FORM_string:
545         attr->u.string = (const char *)data;
546         TRACE("string<%s>\n", attr->u.string);
547         break;
548
549     case DW_FORM_strp:
550     {
551         unsigned long offset = dwarf2_get_u4(data);
552         attr->u.string = (const char*)ctx->sections[section_string].address + offset;
553     }
554     TRACE("strp<%s>\n", attr->u.string);
555     break;
556         
557     case DW_FORM_block:
558         attr->u.block.size = dwarf2_get_leb128_as_unsigned(data, &attr->u.block.ptr);
559         break;
560
561     case DW_FORM_block1:
562         attr->u.block.size = dwarf2_get_byte(data);
563         attr->u.block.ptr  = data + 1;
564         break;
565
566     case DW_FORM_block2:
567         attr->u.block.size = dwarf2_get_u2(data);
568         attr->u.block.ptr  = data + 2;
569         break;
570
571     case DW_FORM_block4:
572         attr->u.block.size = dwarf2_get_u4(data);
573         attr->u.block.ptr  = data + 4;
574         break;
575
576     default:
577         FIXME("Unhandled attribute form %lx\n", abbrev_attr->form);
578         break;
579     }
580 }
581
582 static BOOL dwarf2_find_attribute(const dwarf2_parse_context_t* ctx,
583                                   const dwarf2_debug_info_t* di,
584                                   unsigned at, struct attribute* attr)
585 {
586     unsigned                    i, ai = 0;
587     dwarf2_abbrev_entry_attr_t* abbrev_attr;
588     dwarf2_abbrev_entry_attr_t* abstract_abbrev_attr;
589
590     while (di)
591     {
592         abstract_abbrev_attr = NULL;
593         for (i = 0, abbrev_attr = di->abbrev->attrs; abbrev_attr; i++, abbrev_attr = abbrev_attr->next)
594         {
595             if (abbrev_attr->attribute == at)
596             {
597                 dwarf2_fill_attr(ctx, abbrev_attr, di->data[i], attr);
598                 return TRUE;
599             }
600             if (abbrev_attr->attribute == DW_AT_abstract_origin &&
601                 at != DW_AT_sibling)
602             {
603                 abstract_abbrev_attr = abbrev_attr;
604                 ai = i;
605             }
606         }
607         /* do we have an abstract origin debug entry to look into ? */
608         if (!abstract_abbrev_attr) break;
609         dwarf2_fill_attr(ctx, abstract_abbrev_attr, di->data[ai], attr);
610         if (!(di = sparse_array_find(&ctx->debug_info_table, attr->u.uvalue)))
611             FIXME("Should have found the debug info entry\n");
612     }
613     return FALSE;
614 }
615
616 static void dwarf2_load_one_entry(dwarf2_parse_context_t*, dwarf2_debug_info_t*,
617                                   struct symt_compiland*);
618
619 #define Wine_DW_no_register     0x7FFFFFFF
620
621 static unsigned dwarf2_map_register(int regno)
622 {
623     unsigned    reg;
624
625     switch (regno)
626     {
627     case Wine_DW_no_register: FIXME("What the heck map reg 0x%x\n",regno); reg = 0; break;
628     case  0: reg = CV_REG_EAX; break;
629     case  1: reg = CV_REG_ECX; break;
630     case  2: reg = CV_REG_EDX; break;
631     case  3: reg = CV_REG_EBX; break;
632     case  4: reg = CV_REG_ESP; break;
633     case  5: reg = CV_REG_EBP; break;
634     case  6: reg = CV_REG_ESI; break;
635     case  7: reg = CV_REG_EDI; break;
636     case  8: reg = CV_REG_EIP; break;
637     case  9: reg = CV_REG_EFLAGS; break;
638     case 10: reg = CV_REG_CS;  break;
639     case 11: reg = CV_REG_SS;  break;
640     case 12: reg = CV_REG_DS;  break;
641     case 13: reg = CV_REG_ES;  break;
642     case 14: reg = CV_REG_FS;  break;
643     case 15: reg = CV_REG_GS;  break;
644     case 16: case 17: case 18: case 19:
645     case 20: case 21: case 22: case 23:
646         reg = CV_REG_ST0 + regno - 16; break;
647     case 24: reg = CV_REG_CTRL; break;
648     case 25: reg = CV_REG_STAT; break;
649     case 26: reg = CV_REG_TAG; break;
650 /*
651 reg: fiseg 27
652 reg: fioff 28
653 reg: foseg 29
654 reg: fooff 30
655 reg: fop   31
656 */
657     case 32: case 33: case 34: case 35:
658     case 36: case 37: case 38: case 39:
659         reg = CV_REG_XMM0 + regno - 32; break;
660     case 40: reg = CV_REG_MXCSR; break;
661     default:
662         FIXME("Don't know how to map register %d\n", regno);
663         return 0;
664     }
665     return reg;
666 }
667
668 static enum location_error
669 compute_location(dwarf2_traverse_context_t* ctx, struct location* loc,
670                  HANDLE hproc, const struct location* frame)
671 {
672     DWORD_PTR stack[64];
673     unsigned stk;
674     unsigned char op;
675     BOOL piece_found = FALSE;
676
677     stack[stk = 0] = 0;
678
679     loc->kind = loc_absolute;
680     loc->reg = Wine_DW_no_register;
681
682     while (ctx->data < ctx->end_data)
683     {
684         op = dwarf2_parse_byte(ctx);
685         switch (op)
686         {
687         case DW_OP_addr:    stack[++stk] = dwarf2_parse_addr(ctx); break;
688         case DW_OP_const1u: stack[++stk] = dwarf2_parse_byte(ctx); break;
689         case DW_OP_const1s: stack[++stk] = (long)(signed char)dwarf2_parse_byte(ctx); break;
690         case DW_OP_const2u: stack[++stk] = dwarf2_parse_u2(ctx); break;
691         case DW_OP_const2s: stack[++stk] = (long)(short)dwarf2_parse_u2(ctx); break;
692         case DW_OP_const4u: stack[++stk] = dwarf2_parse_u4(ctx); break;
693         case DW_OP_const4s: stack[++stk] = dwarf2_parse_u4(ctx); break;
694         case DW_OP_constu:  stack[++stk] = dwarf2_leb128_as_unsigned(ctx); break;
695         case DW_OP_consts:  stack[++stk] = dwarf2_leb128_as_signed(ctx); break;
696         case DW_OP_plus_uconst:
697             stack[stk] += dwarf2_leb128_as_unsigned(ctx); break;
698         case DW_OP_reg0:  case DW_OP_reg1:  case DW_OP_reg2:  case DW_OP_reg3:
699         case DW_OP_reg4:  case DW_OP_reg5:  case DW_OP_reg6:  case DW_OP_reg7:
700         case DW_OP_reg8:  case DW_OP_reg9:  case DW_OP_reg10: case DW_OP_reg11:
701         case DW_OP_reg12: case DW_OP_reg13: case DW_OP_reg14: case DW_OP_reg15:
702         case DW_OP_reg16: case DW_OP_reg17: case DW_OP_reg18: case DW_OP_reg19:
703         case DW_OP_reg20: case DW_OP_reg21: case DW_OP_reg22: case DW_OP_reg23:
704         case DW_OP_reg24: case DW_OP_reg25: case DW_OP_reg26: case DW_OP_reg27:
705         case DW_OP_reg28: case DW_OP_reg29: case DW_OP_reg30: case DW_OP_reg31:
706             /* dbghelp APIs don't know how to cope with this anyway
707              * (for example 'long long' stored in two registers)
708              * FIXME: We should tell winedbg how to deal with it (sigh)
709              */
710             if (!piece_found)
711             {
712                 if (loc->reg != Wine_DW_no_register)
713                     FIXME("Only supporting one reg (%d -> %d)\n",
714                           loc->reg, dwarf2_map_register(op - DW_OP_reg0));
715                 loc->reg = dwarf2_map_register(op - DW_OP_reg0);
716             }
717             loc->kind = loc_register;
718             break;
719         case DW_OP_breg0:  case DW_OP_breg1:  case DW_OP_breg2:  case DW_OP_breg3:
720         case DW_OP_breg4:  case DW_OP_breg5:  case DW_OP_breg6:  case DW_OP_breg7:
721         case DW_OP_breg8:  case DW_OP_breg9:  case DW_OP_breg10: case DW_OP_breg11:
722         case DW_OP_breg12: case DW_OP_breg13: case DW_OP_breg14: case DW_OP_breg15:
723         case DW_OP_breg16: case DW_OP_breg17: case DW_OP_breg18: case DW_OP_breg19:
724         case DW_OP_breg20: case DW_OP_breg21: case DW_OP_breg22: case DW_OP_breg23:
725         case DW_OP_breg24: case DW_OP_breg25: case DW_OP_breg26: case DW_OP_breg27:
726         case DW_OP_breg28: case DW_OP_breg29: case DW_OP_breg30: case DW_OP_breg31:
727             /* dbghelp APIs don't know how to cope with this anyway
728              * (for example 'long long' stored in two registers)
729              * FIXME: We should tell winedbg how to deal with it (sigh)
730              */
731             if (!piece_found)
732             {
733                 if (loc->reg != Wine_DW_no_register)
734                     FIXME("Only supporting one reg (%d -> %d)\n",
735                           loc->reg, dwarf2_map_register(op - DW_OP_breg0));
736                 loc->reg = dwarf2_map_register(op - DW_OP_breg0);
737             }
738             stack[++stk] = dwarf2_leb128_as_signed(ctx);
739             loc->kind = loc_regrel;
740             break;
741         case DW_OP_fbreg:
742             if (loc->reg != Wine_DW_no_register)
743                 FIXME("Only supporting one reg (%d -> -2)\n", loc->reg);
744             if (frame && frame->kind == loc_register)
745             {
746                 loc->kind = loc_regrel;
747                 loc->reg = frame->reg;
748                 stack[++stk] = dwarf2_leb128_as_signed(ctx);
749             }
750             else if (frame && frame->kind == loc_regrel)
751             {
752                 loc->kind = loc_regrel;
753                 loc->reg = frame->reg;
754                 stack[++stk] = dwarf2_leb128_as_signed(ctx) + frame->offset;
755             }
756             else
757             {
758                 /* FIXME: this could be later optimized by not recomputing
759                  * this very location expression
760                  */
761                 loc->kind = loc_dwarf2_block;
762                 stack[++stk] = dwarf2_leb128_as_signed(ctx);
763             }
764             break;
765         case DW_OP_piece:
766             {
767                 unsigned sz = dwarf2_leb128_as_unsigned(ctx);
768                 WARN("Not handling OP_piece (size=%d)\n", sz);
769                 piece_found = TRUE;
770             }
771             break;
772         case DW_OP_deref:
773             if (!stk)
774             {
775                 FIXME("Unexpected empty stack\n");
776                 return loc_err_internal;
777             }
778             if (loc->reg != Wine_DW_no_register)
779             {
780                 WARN("Too complex expression for deref\n");
781                 return loc_err_too_complex;
782             }
783             if (hproc)
784             {
785                 DWORD_PTR addr = stack[stk--];
786                 DWORD_PTR deref;
787
788                 if (!ReadProcessMemory(hproc, (void*)addr, &deref, sizeof(deref), NULL))
789                 {
790                     WARN("Couldn't read memory at %lx\n", addr);
791                     return loc_err_cant_read;
792                 }
793                 stack[++stk] = deref;
794             }
795             else
796             {
797                loc->kind = loc_dwarf2_block;
798             }
799             break;
800         default:
801             if (op < DW_OP_lo_user) /* as DW_OP_hi_user is 0xFF, we don't need to test against it */
802                 FIXME("Unhandled attr op: %x\n", op);
803             /* FIXME else unhandled extension */
804             return loc_err_internal;
805         }
806     }
807     loc->offset = stack[stk];
808     return 0;
809 }
810
811 static BOOL dwarf2_compute_location_attr(dwarf2_parse_context_t* ctx,
812                                          const dwarf2_debug_info_t* di,
813                                          unsigned long dw,
814                                          struct location* loc,
815                                          const struct location* frame)
816 {
817     struct attribute xloc;
818
819     if (!dwarf2_find_attribute(ctx, di, dw, &xloc)) return FALSE;
820
821     switch (xloc.form)
822     {
823     case DW_FORM_data1: case DW_FORM_data2:
824     case DW_FORM_udata: case DW_FORM_sdata:
825         loc->kind = loc_absolute;
826         loc->reg = 0;
827         loc->offset = xloc.u.uvalue;
828         return TRUE;
829     case DW_FORM_data4: case DW_FORM_data8:
830         loc->kind = loc_dwarf2_location_list;
831         loc->reg = Wine_DW_no_register;
832         loc->offset = xloc.u.uvalue;
833         return TRUE;
834     }
835
836     /* assume we have a block form */
837
838     if (xloc.u.block.size)
839     {
840         dwarf2_traverse_context_t       lctx;
841         enum location_error             err;
842
843         lctx.data = xloc.u.block.ptr;
844         lctx.end_data = xloc.u.block.ptr + xloc.u.block.size;
845         lctx.word_size = ctx->word_size;
846
847         err = compute_location(&lctx, loc, NULL, frame);
848         if (err < 0)
849         {
850             loc->kind = loc_error;
851             loc->reg = err;
852         }
853         else if (loc->kind == loc_dwarf2_block)
854         {
855             unsigned*   ptr = pool_alloc(&ctx->module->pool,
856                                          sizeof(unsigned) + xloc.u.block.size);
857             *ptr = xloc.u.block.size;
858             memcpy(ptr + 1, xloc.u.block.ptr, xloc.u.block.size);
859             loc->offset = (unsigned long)ptr;
860         }
861     }
862     return TRUE;
863 }
864
865 static struct symt* dwarf2_lookup_type(dwarf2_parse_context_t* ctx,
866                                        const dwarf2_debug_info_t* di)
867 {
868     struct attribute    attr;
869
870     if (dwarf2_find_attribute(ctx, di, DW_AT_type, &attr))
871     {
872         dwarf2_debug_info_t*    type;
873         
874         type = sparse_array_find(&ctx->debug_info_table, attr.u.uvalue);
875         if (!type) FIXME("Unable to find back reference to type %lx\n", attr.u.uvalue);
876         if (!type->symt)
877         {
878             /* load the debug info entity */
879             dwarf2_load_one_entry(ctx, type, NULL);
880         }
881         return type->symt;
882     }
883     return NULL;
884 }
885
886 /******************************************************************
887  *              dwarf2_read_one_debug_info
888  *
889  * Loads into memory one debug info entry, and recursively its children (if any)
890  */
891 static BOOL dwarf2_read_one_debug_info(dwarf2_parse_context_t* ctx,
892                                        dwarf2_traverse_context_t* traverse,
893                                        dwarf2_debug_info_t** pdi)
894 {
895     const dwarf2_abbrev_entry_t*abbrev;
896     unsigned long               entry_code;
897     unsigned long               offset;
898     dwarf2_debug_info_t*        di;
899     dwarf2_debug_info_t*        child;
900     dwarf2_debug_info_t**       where;
901     dwarf2_abbrev_entry_attr_t* attr;
902     unsigned                    i;
903     struct attribute            sibling;
904
905     offset = traverse->data - ctx->sections[ctx->section].address;
906     entry_code = dwarf2_leb128_as_unsigned(traverse);
907     TRACE("found entry_code %lu at 0x%lx\n", entry_code, offset);
908     if (!entry_code)
909     {
910         *pdi = NULL;
911         return TRUE;
912     }
913     abbrev = dwarf2_abbrev_table_find_entry(&ctx->abbrev_table, entry_code);
914     if (!abbrev)
915     {
916         WARN("Cannot find abbrev entry for %lu at 0x%lx\n", entry_code, offset);
917         return FALSE;
918     }
919     di = sparse_array_add(&ctx->debug_info_table, offset, &ctx->pool);
920     if (!di) return FALSE;
921     di->abbrev = abbrev;
922     di->symt   = NULL;
923
924     if (abbrev->num_attr)
925     {
926         di->data = pool_alloc(&ctx->pool, abbrev->num_attr * sizeof(const char*));
927         for (i = 0, attr = abbrev->attrs; attr; i++, attr = attr->next)
928         {
929             di->data[i] = traverse->data;
930             dwarf2_swallow_attribute(traverse, attr);
931         }
932     }
933     else di->data = NULL;
934     if (abbrev->have_child)
935     {
936         vector_init(&di->children, sizeof(dwarf2_debug_info_t*), 16);
937         while (traverse->data < traverse->end_data)
938         {
939             if (!dwarf2_read_one_debug_info(ctx, traverse, &child)) return FALSE;
940             if (!child) break;
941             where = vector_add(&di->children, &ctx->pool);
942             if (!where) return FALSE;
943             *where = child;
944         }
945     }
946     if (dwarf2_find_attribute(ctx, di, DW_AT_sibling, &sibling) &&
947         traverse->data != ctx->sections[ctx->section].address + sibling.u.uvalue)
948     {
949         WARN("setting cursor for %s to next sibling <0x%lx>\n",
950              dwarf2_debug_traverse_ctx(traverse), sibling.u.uvalue);
951         traverse->data = ctx->sections[ctx->section].address + sibling.u.uvalue;
952     }
953     *pdi = di;
954     return TRUE;
955 }
956
957 static struct symt* dwarf2_parse_base_type(dwarf2_parse_context_t* ctx,
958                                            dwarf2_debug_info_t* di)
959 {
960     struct attribute name;
961     struct attribute size;
962     struct attribute encoding;
963     enum BasicType bt;
964     int cache_idx = -1;
965     if (di->symt) return di->symt;
966
967     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di)); 
968
969     if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name))
970         name.u.string = NULL;
971     if (!dwarf2_find_attribute(ctx, di, DW_AT_byte_size, &size)) size.u.uvalue = 0;
972     if (!dwarf2_find_attribute(ctx, di, DW_AT_encoding, &encoding)) encoding.u.uvalue = DW_ATE_void;
973
974     switch (encoding.u.uvalue)
975     {
976     case DW_ATE_void:           bt = btVoid; break;
977     case DW_ATE_address:        bt = btULong; break;
978     case DW_ATE_boolean:        bt = btBool; break;
979     case DW_ATE_complex_float:  bt = btComplex; break;
980     case DW_ATE_float:          bt = btFloat; break;
981     case DW_ATE_signed:         bt = btInt; break;
982     case DW_ATE_unsigned:       bt = btUInt; break;
983     case DW_ATE_signed_char:    bt = btChar; break;
984     case DW_ATE_unsigned_char:  bt = btChar; break;
985     default:                    bt = btNoType; break;
986     }
987     di->symt = &symt_new_basic(ctx->module, bt, name.u.string, size.u.uvalue)->symt;
988     switch (bt)
989     {
990     case btVoid:
991         assert(size.u.uvalue == 0);
992         cache_idx = sc_void;
993         break;
994     case btInt:
995         switch (size.u.uvalue)
996         {
997         case 1: cache_idx = sc_int1; break;
998         case 2: cache_idx = sc_int2; break;
999         case 4: cache_idx = sc_int4; break;
1000         }
1001         break;
1002     default: break;
1003     }
1004     if (cache_idx != -1 && !ctx->symt_cache[cache_idx])
1005         ctx->symt_cache[cache_idx] = di->symt;
1006
1007     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1008     return di->symt;
1009 }
1010
1011 static struct symt* dwarf2_parse_typedef(dwarf2_parse_context_t* ctx,
1012                                          dwarf2_debug_info_t* di)
1013 {
1014     struct symt*        ref_type;
1015     struct attribute    name;
1016
1017     if (di->symt) return di->symt;
1018
1019     TRACE("%s, for %lu\n", dwarf2_debug_ctx(ctx), di->abbrev->entry_code); 
1020
1021     if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name)) name.u.string = NULL;
1022     ref_type = dwarf2_lookup_type(ctx, di);
1023
1024     if (name.u.string)
1025         di->symt = &symt_new_typedef(ctx->module, ref_type, name.u.string)->symt;
1026     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1027     return di->symt;
1028 }
1029
1030 static struct symt* dwarf2_parse_pointer_type(dwarf2_parse_context_t* ctx,
1031                                               dwarf2_debug_info_t* di)
1032 {
1033     struct symt*        ref_type;
1034     struct attribute    size;
1035
1036     if (di->symt) return di->symt;
1037
1038     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di)); 
1039
1040     if (!dwarf2_find_attribute(ctx, di, DW_AT_byte_size, &size)) size.u.uvalue = 0;
1041     if (!(ref_type = dwarf2_lookup_type(ctx, di)))
1042     {
1043         ref_type = ctx->symt_cache[sc_void];
1044         assert(ref_type);
1045     }
1046     di->symt = &symt_new_pointer(ctx->module, ref_type)->symt;
1047     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1048     return di->symt;
1049 }
1050
1051 static struct symt* dwarf2_parse_array_type(dwarf2_parse_context_t* ctx,
1052                                             dwarf2_debug_info_t* di)
1053 {
1054     struct symt* ref_type;
1055     struct symt* idx_type = NULL;
1056     struct attribute min, max, cnt;
1057     dwarf2_debug_info_t* child;
1058     unsigned int    i;
1059
1060     if (di->symt) return di->symt;
1061
1062     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1063
1064     if (!di->abbrev->have_child)
1065     {
1066         FIXME("array without range information\n");
1067         return NULL;
1068     }
1069     ref_type = dwarf2_lookup_type(ctx, di);
1070
1071     for (i=0; i<vector_length(&di->children); i++)
1072     {
1073         child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1074         switch (child->abbrev->tag)
1075         {
1076         case DW_TAG_subrange_type:
1077             idx_type = dwarf2_lookup_type(ctx, child);
1078             if (!dwarf2_find_attribute(ctx, child, DW_AT_lower_bound, &min))
1079                 min.u.uvalue = 0;
1080             if (!dwarf2_find_attribute(ctx, child, DW_AT_upper_bound, &max))
1081                 max.u.uvalue = 0;
1082             if (dwarf2_find_attribute(ctx, child, DW_AT_count, &cnt))
1083                 max.u.uvalue = min.u.uvalue + cnt.u.uvalue;
1084             break;
1085         default:
1086             FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1087                   child->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1088             break;
1089         }
1090     }
1091     di->symt = &symt_new_array(ctx->module, min.u.uvalue, max.u.uvalue, ref_type, idx_type)->symt;
1092     return di->symt;
1093 }
1094
1095 static struct symt* dwarf2_parse_const_type(dwarf2_parse_context_t* ctx,
1096                                             dwarf2_debug_info_t* di)
1097 {
1098     struct symt* ref_type;
1099
1100     if (di->symt) return di->symt;
1101
1102     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di)); 
1103
1104     ref_type = dwarf2_lookup_type(ctx, di);
1105     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1106     di->symt = ref_type;
1107
1108     return ref_type;
1109 }
1110
1111 static struct symt* dwarf2_parse_volatile_type(dwarf2_parse_context_t* ctx,
1112                                                dwarf2_debug_info_t* di)
1113 {
1114     struct symt* ref_type;
1115
1116     if (di->symt) return di->symt;
1117
1118     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di)); 
1119
1120     ref_type = dwarf2_lookup_type(ctx, di);
1121     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1122     di->symt = ref_type;
1123
1124     return ref_type;
1125 }
1126
1127 static struct symt* dwarf2_parse_reference_type(dwarf2_parse_context_t* ctx,
1128                                                 dwarf2_debug_info_t* di)
1129 {
1130     struct symt* ref_type = NULL;
1131
1132     if (di->symt) return di->symt;
1133
1134     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1135
1136     ref_type = dwarf2_lookup_type(ctx, di);
1137     /* FIXME: for now, we hard-wire C++ references to pointers */
1138     di->symt = &symt_new_pointer(ctx->module, ref_type)->symt;
1139
1140     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1141
1142     return di->symt;
1143 }
1144
1145 static void dwarf2_parse_udt_member(dwarf2_parse_context_t* ctx,
1146                                     const dwarf2_debug_info_t* di,
1147                                     struct symt_udt* parent)
1148 {
1149     struct symt* elt_type;
1150     struct attribute name;
1151     struct attribute bit_size;
1152     struct attribute bit_offset;
1153     struct location  loc;
1154
1155     assert(parent);
1156
1157     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1158
1159     if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name)) name.u.string = NULL;
1160     elt_type = dwarf2_lookup_type(ctx, di);
1161     if (dwarf2_compute_location_attr(ctx, di, DW_AT_data_member_location, &loc, NULL))
1162     {
1163         if (loc.kind != loc_absolute)
1164         {
1165            FIXME("Found register, while not expecting it\n");
1166            loc.offset = 0;
1167         }
1168         else
1169             TRACE("found member_location at %s -> %lu\n",
1170                   dwarf2_debug_ctx(ctx), loc.offset);
1171     }
1172     else
1173         loc.offset = 0;
1174     if (!dwarf2_find_attribute(ctx, di, DW_AT_bit_size, &bit_size))
1175         bit_size.u.uvalue = 0;
1176     if (dwarf2_find_attribute(ctx, di, DW_AT_bit_offset, &bit_offset))
1177     {
1178         /* FIXME: we should only do this when implementation is LSB (which is
1179          * the case on i386 processors)
1180          */
1181         struct attribute nbytes;
1182         if (!dwarf2_find_attribute(ctx, di, DW_AT_byte_size, &nbytes))
1183         {
1184             DWORD64     size;
1185             nbytes.u.uvalue = symt_get_info(ctx->module, elt_type, TI_GET_LENGTH, &size) ?
1186                 (unsigned long)size : 0;
1187         }
1188         bit_offset.u.uvalue = nbytes.u.uvalue * 8 - bit_offset.u.uvalue - bit_size.u.uvalue;
1189     }
1190     else bit_offset.u.uvalue = 0;
1191     symt_add_udt_element(ctx->module, parent, name.u.string, elt_type,    
1192                          (loc.offset << 3) + bit_offset.u.uvalue,
1193                          bit_size.u.uvalue);
1194
1195     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1196 }
1197
1198 static struct symt* dwarf2_parse_udt_type(dwarf2_parse_context_t* ctx,
1199                                           dwarf2_debug_info_t* di,
1200                                           enum UdtKind udt)
1201 {
1202     struct attribute    name;
1203     struct attribute    size;
1204
1205     if (di->symt) return di->symt;
1206
1207     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di)); 
1208
1209     if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name)) name.u.string = NULL;
1210     if (!dwarf2_find_attribute(ctx, di, DW_AT_byte_size, &size)) size.u.uvalue = 0;
1211
1212     di->symt = &symt_new_udt(ctx->module, name.u.string, size.u.uvalue, udt)->symt;
1213
1214     if (di->abbrev->have_child) /** any interest to not have child ? */
1215     {
1216         dwarf2_debug_info_t*    child;
1217         unsigned int    i;
1218
1219         for (i=0; i<vector_length(&di->children); i++)
1220         {
1221             child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1222
1223             switch (child->abbrev->tag)
1224             {
1225             case DW_TAG_member:
1226                 /* FIXME: should I follow the sibling stuff ?? */
1227                 dwarf2_parse_udt_member(ctx, child, (struct symt_udt*)di->symt);
1228                 break;
1229             case DW_TAG_enumeration_type:
1230                 dwarf2_parse_enumeration_type(ctx, child);
1231                 break;
1232             case DW_TAG_structure_type:
1233             case DW_TAG_class_type:
1234             case DW_TAG_union_type:
1235             case DW_TAG_typedef:
1236                 /* FIXME: we need to handle nested udt definitions */
1237                 break;
1238             default:
1239                 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1240                       child->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1241                 break;
1242             }
1243         }
1244     }
1245
1246     return di->symt;
1247 }
1248
1249 static void dwarf2_parse_enumerator(dwarf2_parse_context_t* ctx,
1250                                     const dwarf2_debug_info_t* di,
1251                                     struct symt_enum* parent)
1252 {
1253     struct attribute    name;
1254     struct attribute    value;
1255
1256     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di)); 
1257
1258     if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name)) return;
1259     if (!dwarf2_find_attribute(ctx, di, DW_AT_const_value, &value)) value.u.svalue = 0;
1260     symt_add_enum_element(ctx->module, parent, name.u.string, value.u.svalue);
1261
1262     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1263 }
1264
1265 static struct symt* dwarf2_parse_enumeration_type(dwarf2_parse_context_t* ctx,
1266                                                   dwarf2_debug_info_t* di)
1267 {
1268     struct attribute    name;
1269     struct attribute    size;
1270     struct symt_basic*  basetype;
1271
1272     if (di->symt) return di->symt;
1273
1274     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di)); 
1275
1276     if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name)) name.u.string = NULL;
1277     if (!dwarf2_find_attribute(ctx, di, DW_AT_byte_size, &size)) size.u.uvalue = 4;
1278
1279     switch (size.u.uvalue) /* FIXME: that's wrong */
1280     {
1281     case 1: basetype = symt_new_basic(ctx->module, btInt, "char", 1); break;
1282     case 2: basetype = symt_new_basic(ctx->module, btInt, "short", 2); break;
1283     default:
1284     case 4: basetype = symt_new_basic(ctx->module, btInt, "int", 4); break;
1285     }
1286
1287     di->symt = &symt_new_enum(ctx->module, name.u.string, &basetype->symt)->symt;
1288
1289     if (di->abbrev->have_child) /* any interest to not have child ? */
1290     {
1291         dwarf2_debug_info_t*    child;
1292         unsigned int    i;
1293
1294         /* FIXME: should we use the sibling stuff ?? */
1295         for (i=0; i<vector_length(&di->children); i++)
1296         {
1297             child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1298
1299             switch (child->abbrev->tag)
1300             {
1301             case DW_TAG_enumerator:
1302                 dwarf2_parse_enumerator(ctx, child, (struct symt_enum*)di->symt);
1303                 break;
1304             default:
1305                 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1306                       di->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1307             }
1308         }
1309     }
1310     return di->symt;
1311 }
1312
1313 /* structure used to pass information around when parsing a subprogram */
1314 typedef struct dwarf2_subprogram_s
1315 {
1316     dwarf2_parse_context_t*     ctx;
1317     struct symt_compiland*      compiland;
1318     struct symt_function*       func;
1319     BOOL                        non_computed_variable;
1320     struct location             frame;
1321 } dwarf2_subprogram_t;
1322
1323 /******************************************************************
1324  *              dwarf2_parse_variable
1325  *
1326  * Parses any variable (parameter, local/global variable)
1327  */
1328 static void dwarf2_parse_variable(dwarf2_subprogram_t* subpgm,
1329                                   struct symt_block* block,
1330                                   dwarf2_debug_info_t* di)
1331 {
1332     struct symt*        param_type;
1333     struct attribute    name, value;
1334     struct location     loc;
1335     BOOL                is_pmt;
1336
1337     TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
1338
1339     is_pmt = !block && di->abbrev->tag == DW_TAG_formal_parameter;
1340     param_type = dwarf2_lookup_type(subpgm->ctx, di);
1341         
1342     if (!dwarf2_find_attribute(subpgm->ctx, di, DW_AT_name, &name)) {
1343         /* cannot do much without the name, the functions below won't like it. */
1344         return;
1345     }
1346     if (dwarf2_compute_location_attr(subpgm->ctx, di, DW_AT_location,
1347                                      &loc, &subpgm->frame))
1348     {
1349         struct attribute ext;
1350
1351         TRACE("found parameter %s (kind=%d, offset=%ld, reg=%d) at %s\n",
1352               name.u.string, loc.kind, loc.offset, loc.reg,
1353               dwarf2_debug_ctx(subpgm->ctx));
1354
1355         switch (loc.kind)
1356         {
1357         case loc_error:
1358             break;
1359         case loc_absolute:
1360             /* it's a global variable */
1361             /* FIXME: we don't handle its scope yet */
1362             if (!dwarf2_find_attribute(subpgm->ctx, di, DW_AT_external, &ext))
1363                 ext.u.uvalue = 0;
1364             symt_new_global_variable(subpgm->ctx->module, subpgm->compiland,
1365                                      name.u.string, !ext.u.uvalue,
1366                                      subpgm->ctx->load_offset + loc.offset,
1367                                      0, param_type);
1368             break;
1369         default:
1370             subpgm->non_computed_variable = TRUE;
1371             /* fall through */
1372         case loc_register:
1373         case loc_regrel:
1374             /* either a pmt/variable relative to frame pointer or
1375              * pmt/variable in a register
1376              */
1377             assert(subpgm->func);
1378             symt_add_func_local(subpgm->ctx->module, subpgm->func, 
1379                                 is_pmt ? DataIsParam : DataIsLocal,
1380                                 &loc, block, param_type, name.u.string);
1381             break;
1382         }
1383     }
1384     else if (dwarf2_find_attribute(subpgm->ctx, di, DW_AT_const_value, &value))
1385     {
1386         VARIANT v;
1387         if (subpgm->func) WARN("Unsupported constant %s in function\n", name.u.string);
1388         if (is_pmt)       FIXME("Unsupported constant (parameter) %s in function\n", name.u.string);
1389         switch (value.form)
1390         {
1391         case DW_FORM_data1:
1392         case DW_FORM_data2:
1393         case DW_FORM_data4:
1394         case DW_FORM_udata:
1395         case DW_FORM_addr:
1396             v.n1.n2.vt = VT_UI4;
1397             v.n1.n2.n3.lVal = value.u.uvalue;
1398             break;
1399
1400         case DW_FORM_sdata:
1401             v.n1.n2.vt = VT_I4;
1402             v.n1.n2.n3.lVal = value.u.svalue;
1403             break;
1404
1405         case DW_FORM_strp:
1406         case DW_FORM_string:
1407             /* FIXME: native doesn't report const strings from here !!
1408              * however, the value of the string is in the code somewhere
1409              */
1410             v.n1.n2.vt = VT_I1 | VT_BYREF;
1411             v.n1.n2.n3.byref = pool_strdup(&subpgm->ctx->module->pool, value.u.string);
1412             break;
1413
1414         case DW_FORM_block:
1415         case DW_FORM_block1:
1416         case DW_FORM_block2:
1417         case DW_FORM_block4:
1418             v.n1.n2.vt = VT_I4;
1419             switch (value.u.block.size)
1420             {
1421             case 1:     v.n1.n2.n3.lVal = *(BYTE*)value.u.block.ptr;    break;
1422             case 2:     v.n1.n2.n3.lVal = *(USHORT*)value.u.block.ptr;  break;
1423             case 4:     v.n1.n2.n3.lVal = *(DWORD*)value.u.block.ptr;   break;
1424             default:
1425                 v.n1.n2.vt = VT_I1 | VT_BYREF;
1426                 v.n1.n2.n3.byref = pool_alloc(&subpgm->ctx->module->pool, value.u.block.size);
1427                 memcpy(v.n1.n2.n3.byref, value.u.block.ptr, value.u.block.size);
1428             }
1429             break;
1430
1431         case DW_FORM_data8:
1432             v.n1.n2.vt = VT_I1 | VT_BYREF;
1433             v.n1.n2.n3.byref = pool_alloc(&subpgm->ctx->module->pool, value.u.block.size);
1434             memcpy(v.n1.n2.n3.byref, value.u.block.ptr, value.u.block.size);
1435             break;
1436
1437         default:
1438             FIXME("Unsupported form for const value %s (%lx)\n",
1439                   name.u.string, value.form);
1440             v.n1.n2.vt = VT_EMPTY;
1441         }
1442         di->symt = &symt_new_constant(subpgm->ctx->module, subpgm->compiland,
1443                                       name.u.string, param_type, &v)->symt;
1444     }
1445     if (is_pmt && subpgm->func && subpgm->func->type)
1446         symt_add_function_signature_parameter(subpgm->ctx->module,
1447                                               (struct symt_function_signature*)subpgm->func->type,
1448                                               param_type);
1449
1450     if (di->abbrev->have_child) FIXME("Unsupported children\n");
1451 }
1452
1453 static void dwarf2_parse_subprogram_label(dwarf2_subprogram_t* subpgm,
1454                                           const dwarf2_debug_info_t* di)
1455 {
1456     struct attribute    name;
1457     struct attribute    low_pc;
1458     struct location     loc;
1459
1460     TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
1461
1462     if (!dwarf2_find_attribute(subpgm->ctx, di, DW_AT_low_pc, &low_pc)) low_pc.u.uvalue = 0;
1463     if (!dwarf2_find_attribute(subpgm->ctx, di, DW_AT_name, &name))
1464         name.u.string = NULL;
1465
1466     loc.kind = loc_absolute;
1467     loc.offset = subpgm->ctx->load_offset + low_pc.u.uvalue;
1468     symt_add_function_point(subpgm->ctx->module, subpgm->func, SymTagLabel,
1469                             &loc, name.u.string);
1470 }
1471
1472 static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm,
1473                                           struct symt_block* parent_block,
1474                                           const dwarf2_debug_info_t* di);
1475
1476 static void dwarf2_parse_inlined_subroutine(dwarf2_subprogram_t* subpgm,
1477                                             struct symt_block* parent_block,
1478                                             const dwarf2_debug_info_t* di)
1479 {
1480     struct symt_block*  block;
1481     struct attribute    low_pc;
1482     struct attribute    high_pc;
1483
1484     TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
1485
1486     if (!dwarf2_find_attribute(subpgm->ctx, di, DW_AT_low_pc, &low_pc)) low_pc.u.uvalue = 0;
1487     if (!dwarf2_find_attribute(subpgm->ctx, di, DW_AT_high_pc, &high_pc)) high_pc.u.uvalue = 0;
1488
1489     block = symt_open_func_block(subpgm->ctx->module, subpgm->func, parent_block,
1490                                  subpgm->ctx->load_offset + low_pc.u.uvalue - subpgm->func->address,
1491                                  high_pc.u.uvalue - low_pc.u.uvalue);
1492
1493     if (di->abbrev->have_child) /** any interest to not have child ? */
1494     {
1495         dwarf2_debug_info_t*    child;
1496         unsigned int    i;
1497
1498         for (i=0; i<vector_length(&di->children); i++)
1499         {
1500             child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1501
1502             switch (child->abbrev->tag)
1503             {
1504             case DW_TAG_formal_parameter:
1505             case DW_TAG_variable:
1506                 dwarf2_parse_variable(subpgm, block, child);
1507                 break;
1508             case DW_TAG_lexical_block:
1509                 dwarf2_parse_subprogram_block(subpgm, block, child);
1510                 break;
1511             case DW_TAG_inlined_subroutine:
1512                 dwarf2_parse_inlined_subroutine(subpgm, block, child);
1513                 break;
1514             case DW_TAG_label:
1515                 dwarf2_parse_subprogram_label(subpgm, child);
1516                 break;
1517             default:
1518                 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1519                       child->abbrev->tag, dwarf2_debug_ctx(subpgm->ctx),
1520                       dwarf2_debug_di(di));
1521             }
1522         }
1523     }
1524     symt_close_func_block(subpgm->ctx->module, subpgm->func, block, 0);
1525 }
1526
1527 static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm, 
1528                                           struct symt_block* parent_block,
1529                                           const dwarf2_debug_info_t* di)
1530 {
1531     struct symt_block*  block;
1532     struct attribute    low_pc;
1533     struct attribute    high_pc;
1534
1535     TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
1536
1537     if (!dwarf2_find_attribute(subpgm->ctx, di, DW_AT_low_pc, &low_pc))
1538         low_pc.u.uvalue = 0;
1539     if (!dwarf2_find_attribute(subpgm->ctx, di, DW_AT_high_pc, &high_pc))
1540         high_pc.u.uvalue = 0;
1541
1542     block = symt_open_func_block(subpgm->ctx->module, subpgm->func, parent_block,
1543                                  subpgm->ctx->load_offset + low_pc.u.uvalue - subpgm->func->address,
1544                                  high_pc.u.uvalue - low_pc.u.uvalue);
1545
1546     if (di->abbrev->have_child) /** any interest to not have child ? */
1547     {
1548         dwarf2_debug_info_t*    child;
1549         unsigned int    i;
1550
1551         for (i=0; i<vector_length(&di->children); i++)
1552         {
1553             child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1554
1555             switch (child->abbrev->tag)
1556             {
1557             case DW_TAG_inlined_subroutine:
1558                 dwarf2_parse_inlined_subroutine(subpgm, block, child);
1559                 break;
1560             case DW_TAG_variable:
1561                 dwarf2_parse_variable(subpgm, block, child);
1562                 break;
1563             case DW_TAG_lexical_block:
1564                 dwarf2_parse_subprogram_block(subpgm, block, child);
1565                 break;
1566             case DW_TAG_subprogram:
1567                 /* FIXME: likely a declaration (to be checked)
1568                  * skip it for now
1569                  */
1570                 break;
1571             case DW_TAG_formal_parameter:
1572                 /* FIXME: likely elements for exception handling (GCC flavor)
1573                  * Skip it for now
1574                  */
1575                 break;
1576             case DW_TAG_label:
1577                 dwarf2_parse_subprogram_label(subpgm, child);
1578                 break;
1579             case DW_TAG_class_type:
1580             case DW_TAG_structure_type:
1581             case DW_TAG_union_type:
1582             case DW_TAG_enumeration_type:
1583             case DW_TAG_typedef:
1584                 /* the type referred to will be loaded when we need it, so skip it */
1585                 break;
1586             default:
1587                 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1588                       child->abbrev->tag, dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
1589             }
1590         }
1591     }
1592
1593     symt_close_func_block(subpgm->ctx->module, subpgm->func, block, 0);
1594 }
1595
1596 static struct symt* dwarf2_parse_subprogram(dwarf2_parse_context_t* ctx,
1597                                             dwarf2_debug_info_t* di,
1598                                             struct symt_compiland* compiland)
1599 {
1600     struct attribute name;
1601     struct attribute low_pc;
1602     struct attribute high_pc;
1603     struct attribute is_decl;
1604     struct attribute inline_flags;
1605     struct symt* ret_type;
1606     struct symt_function_signature* sig_type;
1607     dwarf2_subprogram_t subpgm;
1608
1609     if (di->symt) return di->symt;
1610
1611     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1612
1613     if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name))
1614     {
1615         WARN("No name for function... dropping function\n");
1616         return NULL;
1617     }
1618     /* if it's an abstract representation of an inline function, there should be
1619      * a concrete object that we'll handle
1620      */
1621     if (dwarf2_find_attribute(ctx, di, DW_AT_inline, &inline_flags))
1622     {
1623         TRACE("Function %s declared as inlined (%ld)... skipping\n",
1624               name.u.string ? name.u.string : "(null)", inline_flags.u.uvalue);
1625         return NULL;
1626     }
1627
1628     if (!dwarf2_find_attribute(ctx, di, DW_AT_low_pc, &low_pc)) low_pc.u.uvalue = 0;
1629     if (!dwarf2_find_attribute(ctx, di, DW_AT_high_pc, &high_pc)) high_pc.u.uvalue = 0;
1630     /* As functions (defined as inline assembly) get debug info with dwarf
1631      * (not the case for stabs), we just drop Wine's thunks here...
1632      * Actual thunks will be created in elf_module from the symbol table
1633      */
1634     if (elf_is_in_thunk_area(ctx->load_offset + low_pc.u.uvalue,
1635                              ctx->thunks) >= 0)
1636         return NULL;
1637     if (!dwarf2_find_attribute(ctx, di, DW_AT_declaration, &is_decl))
1638         is_decl.u.uvalue = 0;
1639         
1640     if (!(ret_type = dwarf2_lookup_type(ctx, di)))
1641     {
1642         ret_type = ctx->symt_cache[sc_void];
1643         assert(ret_type);
1644     }
1645
1646     /* FIXME: assuming C source code */
1647     sig_type = symt_new_function_signature(ctx->module, ret_type, CV_CALL_FAR_C);
1648     if (!is_decl.u.uvalue)
1649     {
1650         subpgm.func = symt_new_function(ctx->module, compiland, name.u.string,
1651                                         ctx->load_offset + low_pc.u.uvalue,
1652                                         high_pc.u.uvalue - low_pc.u.uvalue,
1653                                         &sig_type->symt);
1654         di->symt = &subpgm.func->symt;
1655     }
1656     else subpgm.func = NULL;
1657
1658     subpgm.ctx = ctx;
1659     subpgm.compiland = compiland;
1660     if (!dwarf2_compute_location_attr(ctx, di, DW_AT_frame_base,
1661                                       &subpgm.frame, NULL))
1662     {
1663         /* on stack !! */
1664         subpgm.frame.kind = loc_regrel;
1665         subpgm.frame.reg = 0;
1666         subpgm.frame.offset = 0;
1667     }
1668     subpgm.non_computed_variable = FALSE;
1669
1670     if (di->abbrev->have_child) /** any interest to not have child ? */
1671     {
1672         dwarf2_debug_info_t*    child;
1673         unsigned int    i;
1674
1675         for (i=0; i<vector_length(&di->children); i++)
1676         {
1677             child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1678
1679             switch (child->abbrev->tag)
1680             {
1681             case DW_TAG_variable:
1682             case DW_TAG_formal_parameter:
1683                 dwarf2_parse_variable(&subpgm, NULL, child);
1684                 break;
1685             case DW_TAG_lexical_block:
1686                 dwarf2_parse_subprogram_block(&subpgm, NULL, child);
1687                 break;
1688             case DW_TAG_inlined_subroutine:
1689                 dwarf2_parse_inlined_subroutine(&subpgm, NULL, child);
1690                 break;
1691             case DW_TAG_subprogram:
1692                 /* FIXME: likely a declaration (to be checked)
1693                  * skip it for now
1694                  */
1695                 break;
1696             case DW_TAG_label:
1697                 dwarf2_parse_subprogram_label(&subpgm, child);
1698                 break;
1699             case DW_TAG_class_type:
1700             case DW_TAG_structure_type:
1701             case DW_TAG_union_type:
1702             case DW_TAG_enumeration_type:
1703             case DW_TAG_typedef:
1704                 /* the type referred to will be loaded when we need it, so skip it */
1705                 break;
1706             case DW_TAG_unspecified_parameters:
1707                 /* FIXME: no support in dbghelp's internals so far */
1708                 break;
1709             default:
1710                 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1711                       child->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1712             }
1713         }
1714     }
1715
1716     if (subpgm.non_computed_variable || subpgm.frame.kind >= loc_user)
1717     {
1718         symt_add_function_point(ctx->module, subpgm.func, SymTagCustom,
1719                                 &subpgm.frame, NULL);
1720     }
1721     if (subpgm.func) symt_normalize_function(subpgm.ctx->module, subpgm.func);
1722
1723     return di->symt;
1724 }
1725
1726 static struct symt* dwarf2_parse_subroutine_type(dwarf2_parse_context_t* ctx,
1727                                                  dwarf2_debug_info_t* di)
1728 {
1729     struct symt* ret_type;
1730     struct symt_function_signature* sig_type;
1731
1732     if (di->symt) return di->symt;
1733
1734     TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1735
1736     if (!(ret_type = dwarf2_lookup_type(ctx, di)))
1737     {
1738         ret_type = ctx->symt_cache[sc_void];
1739         assert(ret_type);
1740     }
1741
1742     /* FIXME: assuming C source code */
1743     sig_type = symt_new_function_signature(ctx->module, ret_type, CV_CALL_FAR_C);
1744
1745     if (di->abbrev->have_child) /** any interest to not have child ? */
1746     {
1747         dwarf2_debug_info_t*    child;
1748         unsigned int    i;
1749
1750         for (i=0; i<vector_length(&di->children); i++)
1751         {
1752             child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1753
1754             switch (child->abbrev->tag)
1755             {
1756             case DW_TAG_formal_parameter:
1757                 symt_add_function_signature_parameter(ctx->module, sig_type,
1758                                                       dwarf2_lookup_type(ctx, child));
1759                 break;
1760             case DW_TAG_unspecified_parameters:
1761                 WARN("Unsupported unspecified parameters\n");
1762                 break;
1763             }
1764         }
1765     }
1766
1767     return di->symt = &sig_type->symt;
1768 }
1769
1770 static void dwarf2_load_one_entry(dwarf2_parse_context_t* ctx,
1771                                   dwarf2_debug_info_t* di,
1772                                   struct symt_compiland* compiland)
1773 {
1774     switch (di->abbrev->tag)
1775     {
1776     case DW_TAG_typedef:
1777         dwarf2_parse_typedef(ctx, di);
1778         break;
1779     case DW_TAG_base_type:
1780         dwarf2_parse_base_type(ctx, di);
1781         break;
1782     case DW_TAG_pointer_type:
1783         dwarf2_parse_pointer_type(ctx, di);
1784         break;
1785     case DW_TAG_class_type:
1786         dwarf2_parse_udt_type(ctx, di, UdtClass);
1787         break;
1788     case DW_TAG_structure_type:
1789         dwarf2_parse_udt_type(ctx, di, UdtStruct);
1790         break;
1791     case DW_TAG_union_type:
1792         dwarf2_parse_udt_type(ctx, di, UdtUnion);
1793         break;
1794     case DW_TAG_array_type:
1795         dwarf2_parse_array_type(ctx, di);
1796         break;
1797     case DW_TAG_const_type:
1798         dwarf2_parse_const_type(ctx, di);
1799         break;
1800     case DW_TAG_volatile_type:
1801         dwarf2_parse_volatile_type(ctx, di);
1802         break;
1803     case DW_TAG_reference_type:
1804         dwarf2_parse_reference_type(ctx, di);
1805         break;
1806     case DW_TAG_enumeration_type:
1807         dwarf2_parse_enumeration_type(ctx, di);
1808         break;
1809     case DW_TAG_subprogram:
1810         dwarf2_parse_subprogram(ctx, di, compiland);
1811         break;
1812     case DW_TAG_subroutine_type:
1813         dwarf2_parse_subroutine_type(ctx, di);
1814         break;
1815     case DW_TAG_variable:
1816         {
1817             dwarf2_subprogram_t subpgm;
1818
1819             subpgm.ctx = ctx;
1820             subpgm.compiland = compiland;
1821             subpgm.func = NULL;
1822             subpgm.frame.kind = loc_absolute;
1823             subpgm.frame.offset = 0;
1824             subpgm.frame.reg = Wine_DW_no_register;
1825             dwarf2_parse_variable(&subpgm, NULL, di);
1826         }
1827         break;
1828     default:
1829         FIXME("Unhandled Tag type 0x%lx at %s, for %lu\n",
1830               di->abbrev->tag, dwarf2_debug_ctx(ctx), di->abbrev->entry_code); 
1831     }
1832 }
1833
1834 static void dwarf2_set_line_number(struct module* module, unsigned long address,
1835                                    const struct vector* v, unsigned file, unsigned line)
1836 {
1837     struct symt_function*       func;
1838     struct symt_ht*             symt;
1839     unsigned*                   psrc;
1840
1841     if (!file || !(psrc = vector_at(v, file - 1))) return;
1842
1843     TRACE("%s %lx %s %u\n",
1844           debugstr_w(module->module.ModuleName), address, source_get(module, *psrc), line);
1845     if (!(symt = symt_find_nearest(module, address)) ||
1846         symt->symt.tag != SymTagFunction) return;
1847     func = (struct symt_function*)symt;
1848     symt_add_func_line(module, func, *psrc, line, address - func->address);
1849 }
1850
1851 static BOOL dwarf2_parse_line_numbers(const dwarf2_section_t* sections,
1852                                       dwarf2_parse_context_t* ctx,
1853                                       const char* compile_dir,
1854                                       unsigned long offset)
1855 {
1856     dwarf2_traverse_context_t   traverse;
1857     unsigned long               length;
1858     unsigned                    version, header_len, insn_size, default_stmt;
1859     unsigned                    line_range, opcode_base;
1860     int                         line_base;
1861     const unsigned char*        opcode_len;
1862     struct vector               dirs;
1863     struct vector               files;
1864     const char**                p;
1865
1866     /* section with line numbers stripped */
1867     if (sections[section_line].address == ELF_NO_MAP)
1868         return FALSE;
1869
1870     traverse.data = sections[section_line].address + offset;
1871     traverse.start_data = traverse.data;
1872     traverse.end_data = traverse.data + 4;
1873     traverse.word_size = ctx->word_size;
1874
1875     length = dwarf2_parse_u4(&traverse);
1876     traverse.end_data = traverse.start_data + length;
1877
1878     version = dwarf2_parse_u2(&traverse);
1879     header_len = dwarf2_parse_u4(&traverse);
1880     insn_size = dwarf2_parse_byte(&traverse);
1881     default_stmt = dwarf2_parse_byte(&traverse);
1882     line_base = (signed char)dwarf2_parse_byte(&traverse);
1883     line_range = dwarf2_parse_byte(&traverse);
1884     opcode_base = dwarf2_parse_byte(&traverse);
1885
1886     opcode_len = traverse.data;
1887     traverse.data += opcode_base - 1;
1888
1889     vector_init(&dirs, sizeof(const char*), 4);
1890     p = vector_add(&dirs, &ctx->pool);
1891     *p = compile_dir ? compile_dir : ".";
1892     while (*traverse.data)
1893     {
1894         const char*  rel = (const char*)traverse.data;
1895         unsigned     rellen = strlen(rel);
1896         TRACE("Got include %s\n", rel);
1897         traverse.data += rellen + 1;
1898         p = vector_add(&dirs, &ctx->pool);
1899
1900         if (*rel == '/' || !compile_dir)
1901             *p = rel;
1902         else
1903         {
1904            /* include directory relative to compile directory */
1905            unsigned  baselen = strlen(compile_dir);
1906            char*     tmp = pool_alloc(&ctx->pool, baselen + 1 + rellen + 1);
1907            strcpy(tmp, compile_dir);
1908            if (tmp[baselen - 1] != '/') tmp[baselen++] = '/';
1909            strcpy(&tmp[baselen], rel);
1910            *p = tmp;
1911         }
1912
1913     }
1914     traverse.data++;
1915
1916     vector_init(&files, sizeof(unsigned), 16);
1917     while (*traverse.data)
1918     {
1919         unsigned int    dir_index, mod_time, length;
1920         const char*     name;
1921         const char*     dir;
1922         unsigned*       psrc;
1923
1924         name = (const char*)traverse.data;
1925         traverse.data += strlen(name) + 1;
1926         dir_index = dwarf2_leb128_as_unsigned(&traverse);
1927         mod_time = dwarf2_leb128_as_unsigned(&traverse);
1928         length = dwarf2_leb128_as_unsigned(&traverse);
1929         dir = *(const char**)vector_at(&dirs, dir_index);
1930         TRACE("Got file %s/%s (%u,%u)\n", dir, name, mod_time, length);
1931         psrc = vector_add(&files, &ctx->pool);
1932         *psrc = source_new(ctx->module, dir, name);
1933     }
1934     traverse.data++;
1935
1936     while (traverse.data < traverse.end_data)
1937     {
1938         unsigned long address = 0;
1939         unsigned file = 1;
1940         unsigned line = 1;
1941         unsigned is_stmt = default_stmt;
1942         BOOL basic_block = FALSE, end_sequence = FALSE;
1943         unsigned opcode, extopcode, i;
1944
1945         while (!end_sequence)
1946         {
1947             opcode = dwarf2_parse_byte(&traverse);
1948             TRACE("Got opcode %x\n", opcode);
1949
1950             if (opcode >= opcode_base)
1951             {
1952                 unsigned delta = opcode - opcode_base;
1953
1954                 address += (delta / line_range) * insn_size;
1955                 line += line_base + (delta % line_range);
1956                 basic_block = TRUE;
1957                 dwarf2_set_line_number(ctx->module, address, &files, file, line);
1958             }
1959             else
1960             {
1961                 switch (opcode)
1962                 {
1963                 case DW_LNS_copy:
1964                     basic_block = FALSE;
1965                     dwarf2_set_line_number(ctx->module, address, &files, file, line);
1966                     break;
1967                 case DW_LNS_advance_pc:
1968                     address += insn_size * dwarf2_leb128_as_unsigned(&traverse);
1969                     break;
1970                 case DW_LNS_advance_line:
1971                     line += dwarf2_leb128_as_signed(&traverse);
1972                     break;
1973                 case DW_LNS_set_file:
1974                     file = dwarf2_leb128_as_unsigned(&traverse);
1975                     break;
1976                 case DW_LNS_set_column:
1977                     dwarf2_leb128_as_unsigned(&traverse);
1978                     break;
1979                 case DW_LNS_negate_stmt:
1980                     is_stmt = !is_stmt;
1981                     break;
1982                 case DW_LNS_set_basic_block:
1983                     basic_block = 1;
1984                     break;
1985                 case DW_LNS_const_add_pc:
1986                     address += ((255 - opcode_base) / line_range) * insn_size;
1987                     break;
1988                 case DW_LNS_fixed_advance_pc:
1989                     address += dwarf2_parse_u2(&traverse);
1990                     break;
1991                 case DW_LNS_extended_op:
1992                     dwarf2_leb128_as_unsigned(&traverse);
1993                     extopcode = dwarf2_parse_byte(&traverse);
1994                     switch (extopcode)
1995                     {
1996                     case DW_LNE_end_sequence:
1997                         dwarf2_set_line_number(ctx->module, address, &files, file, line);
1998                         end_sequence = TRUE;
1999                         break;
2000                     case DW_LNE_set_address:
2001                         address = ctx->load_offset + dwarf2_parse_addr(&traverse);
2002                         break;
2003                     case DW_LNE_define_file:
2004                         FIXME("not handled %s\n", traverse.data);
2005                         traverse.data += strlen((const char *)traverse.data) + 1;
2006                         dwarf2_leb128_as_unsigned(&traverse);
2007                         dwarf2_leb128_as_unsigned(&traverse);
2008                         dwarf2_leb128_as_unsigned(&traverse);
2009                         break;
2010                     default:
2011                         FIXME("Unsupported extended opcode %x\n", extopcode);
2012                         break;
2013                     }
2014                     break;
2015                 default:
2016                     WARN("Unsupported opcode %x\n", opcode);
2017                     for (i = 0; i < opcode_len[opcode]; i++)
2018                         dwarf2_leb128_as_unsigned(&traverse);
2019                     break;
2020                 }
2021             }
2022         }
2023     }
2024     return TRUE;
2025 }
2026
2027 static BOOL dwarf2_parse_compilation_unit(const dwarf2_section_t* sections,
2028                                           struct module* module,
2029                                           const struct elf_thunk_area* thunks,
2030                                           dwarf2_traverse_context_t* mod_ctx,
2031                                           unsigned long load_offset)
2032 {
2033     dwarf2_parse_context_t ctx;
2034     dwarf2_traverse_context_t abbrev_ctx;
2035     dwarf2_debug_info_t* di;
2036     dwarf2_traverse_context_t cu_ctx;
2037     const unsigned char* comp_unit_start = mod_ctx->data;
2038     unsigned long cu_length;
2039     unsigned short cu_version;
2040     unsigned long cu_abbrev_offset;
2041     BOOL ret = FALSE;
2042
2043     cu_length = dwarf2_parse_u4(mod_ctx);
2044     cu_ctx.data = cu_ctx.start_data = mod_ctx->data;
2045     cu_ctx.end_data = mod_ctx->data + cu_length;
2046     mod_ctx->data += cu_length;
2047     cu_version = dwarf2_parse_u2(&cu_ctx);
2048     cu_abbrev_offset = dwarf2_parse_u4(&cu_ctx);
2049     cu_ctx.word_size = dwarf2_parse_byte(&cu_ctx);
2050
2051     TRACE("Compilation Unit Header found at 0x%x:\n",
2052           (int)(comp_unit_start - sections[section_debug].address));
2053     TRACE("- length:        %lu\n", cu_length);
2054     TRACE("- version:       %u\n",  cu_version);
2055     TRACE("- abbrev_offset: %lu\n", cu_abbrev_offset);
2056     TRACE("- word_size:     %u\n",  cu_ctx.word_size);
2057
2058     if (cu_version != 2)
2059     {
2060         WARN("%u DWARF version unsupported. Wine dbghelp only support DWARF 2.\n",
2061              cu_version);
2062         return FALSE;
2063     }
2064
2065     pool_init(&ctx.pool, 65536);
2066     ctx.sections = sections;
2067     ctx.section = section_debug;
2068     ctx.module = module;
2069     ctx.word_size = cu_ctx.word_size;
2070     ctx.thunks = thunks;
2071     ctx.load_offset = load_offset;
2072     ctx.ref_offset = comp_unit_start - sections[section_debug].address;
2073     memset(ctx.symt_cache, 0, sizeof(ctx.symt_cache));
2074     ctx.symt_cache[sc_void] = &symt_new_basic(module, btVoid, "void", 0)->symt;
2075
2076     abbrev_ctx.start_data = sections[section_abbrev].address + cu_abbrev_offset;
2077     abbrev_ctx.data = abbrev_ctx.start_data;
2078     abbrev_ctx.end_data = sections[section_abbrev].address + sections[section_abbrev].size;
2079     abbrev_ctx.word_size = cu_ctx.word_size;
2080     dwarf2_parse_abbrev_set(&abbrev_ctx, &ctx.abbrev_table, &ctx.pool);
2081
2082     sparse_array_init(&ctx.debug_info_table, sizeof(dwarf2_debug_info_t), 128);
2083     dwarf2_read_one_debug_info(&ctx, &cu_ctx, &di);
2084
2085     if (di->abbrev->tag == DW_TAG_compile_unit)
2086     {
2087         struct attribute            name;
2088         dwarf2_debug_info_t**       pdi = NULL;
2089         struct attribute            stmt_list, low_pc;
2090         struct attribute            comp_dir;
2091
2092         if (!dwarf2_find_attribute(&ctx, di, DW_AT_name, &name))
2093             name.u.string = NULL;
2094
2095         /* get working directory of current compilation unit */
2096         if (!dwarf2_find_attribute(&ctx, di, DW_AT_comp_dir, &comp_dir))
2097             comp_dir.u.string = NULL;
2098
2099         if (!dwarf2_find_attribute(&ctx, di, DW_AT_low_pc, &low_pc))
2100             low_pc.u.uvalue = 0;
2101         di->symt = &symt_new_compiland(module, 
2102                                        ctx.load_offset + low_pc.u.uvalue,
2103                                        source_new(module, comp_dir.u.string, name.u.string))->symt;
2104
2105         if (di->abbrev->have_child)
2106         {
2107             unsigned int    i;
2108             for (i=0; i<vector_length(&di->children); i++)
2109             {
2110                 pdi = vector_at(&di->children, i);
2111                 dwarf2_load_one_entry(&ctx, *pdi, (struct symt_compiland*)di->symt);
2112             }
2113         }
2114         if (dwarf2_find_attribute(&ctx, di, DW_AT_stmt_list, &stmt_list))
2115         {
2116             if (dwarf2_parse_line_numbers(sections, &ctx, comp_dir.u.string, stmt_list.u.uvalue))
2117                 module->module.LineNumbers = TRUE;
2118         }
2119         ret = TRUE;
2120     }
2121     else FIXME("Should have a compilation unit here\n");
2122     pool_destroy(&ctx.pool);
2123     return ret;
2124 }
2125
2126 static BOOL dwarf2_lookup_loclist(const struct module* module, const BYTE* start,
2127                                   unsigned long ip,
2128                                   dwarf2_traverse_context_t*  lctx)
2129 {
2130     DWORD                       beg, end;
2131     const BYTE*                 ptr = start;
2132     DWORD                       len;
2133
2134     while (ptr < module->dwarf2_info->debug_loc.address + module->dwarf2_info->debug_loc.size)
2135     {
2136         beg = dwarf2_get_u4(ptr); ptr += 4;
2137         end = dwarf2_get_u4(ptr); ptr += 4;
2138         if (!beg && !end) break;
2139         len = dwarf2_get_u2(ptr); ptr += 2;
2140
2141         if (beg <= ip && ip < end)
2142         {
2143             lctx->data = ptr;
2144             lctx->end_data = ptr + len;
2145             lctx->word_size = 4; /* FIXME word size !!! */
2146             return TRUE;
2147         }
2148         ptr += len;
2149     }
2150     WARN("Couldn't find ip in location list\n");
2151     return FALSE;
2152 }
2153
2154 static enum location_error loc_compute_frame(struct process* pcs,
2155                                              const struct module* module,
2156                                              const struct symt_function* func,
2157                                              DWORD ip, struct location* frame)
2158 {
2159     struct symt**               psym = NULL;
2160     struct location*            pframe;
2161     dwarf2_traverse_context_t   lctx;
2162     enum location_error         err;
2163     unsigned int                i;
2164
2165     for (i=0; i<vector_length(&func->vchildren); i++)
2166     {
2167         psym = vector_at(&func->vchildren, i);
2168         if ((*psym)->tag == SymTagCustom)
2169         {
2170             pframe = &((struct symt_hierarchy_point*)*psym)->loc;
2171
2172             /* First, recompute the frame information, if needed */
2173             switch (pframe->kind)
2174             {
2175             case loc_regrel:
2176             case loc_register:
2177                 *frame = *pframe;
2178                 break;
2179             case loc_dwarf2_location_list:
2180                 WARN("Searching loclist for %s\n", func->hash_elt.name);
2181                 if (!dwarf2_lookup_loclist(module, 
2182                                            module->dwarf2_info->debug_loc.address + pframe->offset,
2183                                            ip, &lctx))
2184                     return loc_err_out_of_scope;
2185                 if ((err = compute_location(&lctx, frame, pcs->handle, NULL)) < 0) return err;
2186                 if (frame->kind >= loc_user)
2187                 {
2188                     WARN("Couldn't compute runtime frame location\n");
2189                     return loc_err_too_complex;
2190                 }
2191                 break;
2192             default:
2193                 WARN("Unsupported frame kind %d\n", pframe->kind);
2194                 return loc_err_internal;
2195             }
2196             return 0;
2197         }
2198     }
2199     WARN("Couldn't find Custom function point, whilst location list offset is searched\n");
2200     return loc_err_internal;
2201 }
2202
2203 static void dwarf2_location_compute(struct process* pcs,
2204                                     const struct module* module,
2205                                     const struct symt_function* func,
2206                                     struct location* loc)
2207 {
2208     struct location             frame;
2209     DWORD                       ip;
2210     int                         err;
2211     dwarf2_traverse_context_t   lctx;
2212
2213     if (!func->container || func->container->tag != SymTagCompiland)
2214     {
2215         WARN("We'd expect function %s's container to exist and be a compiland\n", func->hash_elt.name);
2216         err = loc_err_internal;
2217     }
2218     else
2219     {
2220         /* instruction pointer relative to compiland's start */
2221         ip = pcs->ctx_frame.InstructionOffset - ((struct symt_compiland*)func->container)->address;
2222
2223         if ((err = loc_compute_frame(pcs, module, func, ip, &frame)) == 0)
2224         {
2225             switch (loc->kind)
2226             {
2227             case loc_dwarf2_location_list:
2228                 /* Then, if the variable has a location list, find it !! */
2229                 if (dwarf2_lookup_loclist(module, 
2230                                           module->dwarf2_info->debug_loc.address + loc->offset,
2231                                           ip, &lctx))
2232                     goto do_compute;
2233                 err = loc_err_out_of_scope;
2234                 break;
2235             case loc_dwarf2_block:
2236                 /* or if we have a copy of an existing block, get ready for it */
2237                 {
2238                     unsigned*   ptr = (unsigned*)loc->offset;
2239
2240                     lctx.data = (const BYTE*)(ptr + 1);
2241                     lctx.end_data = lctx.data + *ptr;
2242                     lctx.word_size = 4; /* FIXME !! */
2243                 }
2244             do_compute:
2245                 /* now get the variable */
2246                 err = compute_location(&lctx, loc, pcs->handle, &frame);
2247                 break;
2248             case loc_register:
2249             case loc_regrel:
2250                 /* nothing to do */
2251                 break;
2252             default:
2253                 WARN("Unsupported local kind %d\n", loc->kind);
2254                 err = loc_err_internal;
2255             }
2256         }
2257     }
2258     if (err < 0)
2259     {
2260         loc->kind = loc_register;
2261         loc->reg = err;
2262     }
2263 }
2264
2265 BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
2266                   const struct elf_thunk_area* thunks,
2267                   const unsigned char* debug, unsigned int debug_size,
2268                   const unsigned char* abbrev, unsigned int abbrev_size,
2269                   const unsigned char* str, unsigned int str_size,
2270                   const unsigned char* line, unsigned int line_size,
2271                   const unsigned char* loclist, unsigned int loclist_size)
2272 {
2273     dwarf2_section_t    section[section_max];
2274     unsigned char*      ptr;
2275     dwarf2_traverse_context_t   mod_ctx;
2276
2277     mod_ctx.start_data = mod_ctx.data = debug;
2278     mod_ctx.end_data = debug + debug_size;
2279
2280     module->loc_compute = dwarf2_location_compute;
2281
2282     section[section_debug].address = debug;
2283     section[section_debug].size = debug_size;
2284     section[section_abbrev].address = abbrev;
2285     section[section_abbrev].size = abbrev_size;
2286     section[section_string].address = str;
2287     section[section_string].size = str_size;
2288     section[section_line].address = line;
2289     section[section_line].size = line_size;
2290
2291     if (loclist_size)
2292     {
2293         /* initialize the dwarf2 specific info block for this module.
2294          * As we'll need later on the .debug_loc section content, we copy it in
2295          * the module structure for later reuse
2296          */
2297         module->dwarf2_info = HeapAlloc(GetProcessHeap(), 0, sizeof(*module->dwarf2_info) + loclist_size);
2298         if (!module->dwarf2_info) return FALSE;
2299         ptr = (unsigned char*)(module->dwarf2_info + 1);
2300         memcpy(ptr, loclist, loclist_size);
2301         module->dwarf2_info->debug_loc.address = ptr;
2302         module->dwarf2_info->debug_loc.size    = loclist_size;
2303     }
2304
2305     while (mod_ctx.data < mod_ctx.end_data)
2306     {
2307         dwarf2_parse_compilation_unit(section, module, thunks, &mod_ctx, load_offset);
2308     }
2309     module->module.SymType = SymDia;
2310     module->module.CVSig = 'D' | ('W' << 8) | ('A' << 16) | ('R' << 24);
2311     /* FIXME: we could have a finer grain here */
2312     module->module.GlobalSymbols = TRUE;
2313     module->module.TypeInfo = TRUE;
2314     module->module.SourceIndexed = TRUE;
2315     module->module.Publics = TRUE;
2316     return TRUE;
2317 }