2 * File dwarf.c - read dwarf2 information from the ELF modules
4 * Copyright (C) 2005, Raphael Junqueira
5 * Copyright (C) 2006, Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #define NONAMELESSUNION
26 #include <sys/types.h>
28 #ifdef HAVE_SYS_STAT_H
29 # include <sys/stat.h>
31 #ifdef HAVE_SYS_MMAN_H
42 #define PATH_MAX MAX_PATH
53 #include "dbghelp_private.h"
55 #include "wine/debug.h"
57 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_dwarf);
61 * o unspecified parameters
63 * o Debug{Start|End}Point
66 * o proper types loading (nesting)
70 static void dump(const void* ptr, unsigned len)
74 static const char hexof[] = "0123456789abcdef";
77 for (i = 0; i < len; i += 16)
79 sprintf(msg, "%08x: ", i);
80 memset(msg + 10, ' ', 3 * 16 + 1 + 16);
81 for (j = 0; j < min(16, len - i); j++)
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) ?
89 msg[10 + 3 * 16] = ' ';
90 msg[10 + 3 * 16 + 1 + 16] = '\0';
99 * http://www.eagercon.com/dwarf/dwarf3std.htm
100 * http://www.eagercon.com/dwarf/dwarf-2.0.0.pdf
102 * dwarf2.h: http://www.hakpetzna.com/b/binutils/dwarf2_8h-source.html
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
114 typedef struct dwarf2_abbrev_entry_attr_s
116 unsigned long attribute;
118 struct dwarf2_abbrev_entry_attr_s* next;
119 } dwarf2_abbrev_entry_attr_t;
121 typedef struct dwarf2_abbrev_entry_s
123 unsigned long entry_code;
125 unsigned char have_child;
127 dwarf2_abbrev_entry_attr_t* attrs;
128 } dwarf2_abbrev_entry_t;
133 const unsigned char* ptr;
141 unsigned long uvalue;
144 struct dwarf2_block block;
148 typedef struct dwarf2_debug_info_s
150 const dwarf2_abbrev_entry_t*abbrev;
152 const unsigned char** data;
153 struct vector children;
154 } dwarf2_debug_info_t;
156 typedef struct dwarf2_section_s
158 const unsigned char* address;
162 enum dwarf2_sections {section_debug, section_string, section_abbrev, section_line, section_max};
164 typedef struct dwarf2_traverse_context_s
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;
172 /* symt_cache indexes */
179 typedef struct dwarf2_parse_context_s
181 const dwarf2_section_t* sections;
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;
194 /* stored in the dbghelp's module internal structure for later reuse */
195 struct dwarf2_module_info_s
197 dwarf2_section_t debug_loc;
200 #define loc_dwarf2_location_list (loc_user + 0)
201 #define loc_dwarf2_block (loc_user + 1)
203 /* forward declarations */
204 static struct symt* dwarf2_parse_enumeration_type(dwarf2_parse_context_t* ctx, dwarf2_debug_info_t* entry);
206 static unsigned char dwarf2_get_byte(const unsigned char* ptr)
211 static unsigned char dwarf2_parse_byte(dwarf2_traverse_context_t* ctx)
213 unsigned char uvalue = dwarf2_get_byte(ctx->data);
218 static unsigned short dwarf2_get_u2(const unsigned char* ptr)
220 return *(const UINT16*)ptr;
223 static unsigned short dwarf2_parse_u2(dwarf2_traverse_context_t* ctx)
225 unsigned short uvalue = dwarf2_get_u2(ctx->data);
230 static unsigned long dwarf2_get_u4(const unsigned char* ptr)
232 return *(const UINT32*)ptr;
235 static unsigned long dwarf2_parse_u4(dwarf2_traverse_context_t* ctx)
237 unsigned long uvalue = dwarf2_get_u4(ctx->data);
242 static DWORD64 dwarf2_get_u8(const unsigned char* ptr)
244 return *(const UINT64*)ptr;
247 static unsigned long dwarf2_get_leb128_as_unsigned(const unsigned char* ptr, const unsigned char** end)
249 unsigned long ret = 0;
255 byte = dwarf2_get_byte(ptr++);
256 ret |= (byte & 0x7f) << shift;
258 } while (byte & 0x80);
264 static unsigned long dwarf2_leb128_as_unsigned(dwarf2_traverse_context_t* ctx)
270 ret = dwarf2_get_leb128_as_unsigned(ctx->data, &ctx->data);
275 static long dwarf2_get_leb128_as_signed(const unsigned char* ptr, const unsigned char** end)
280 const unsigned size = sizeof(int) * 8;
284 byte = dwarf2_get_byte(ptr++);
285 ret |= (byte & 0x7f) << shift;
287 } while (byte & 0x80);
290 /* as spec: sign bit of byte is 2nd high order bit (80x40)
291 * -> 0x80 is used as flag.
293 if ((shift < size) && (byte & 0x40))
295 ret |= - (1 << shift);
300 static long dwarf2_leb128_as_signed(dwarf2_traverse_context_t* ctx)
306 ret = dwarf2_get_leb128_as_signed(ctx->data, &ctx->data);
310 static unsigned dwarf2_leb128_length(const dwarf2_traverse_context_t* ctx)
313 for (ret = 0; ctx->data[ret] & 0x80; ret++);
317 /******************************************************************
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.
324 static unsigned long dwarf2_get_addr(const unsigned char* ptr, unsigned word_size)
331 ret = dwarf2_get_u4(ptr);
334 ret = dwarf2_get_u8(ptr);
337 FIXME("Unsupported Word Size %u\n", word_size);
343 static unsigned long dwarf2_parse_addr(dwarf2_traverse_context_t* ctx)
345 unsigned long ret = dwarf2_get_addr(ctx->data, ctx->word_size);
346 ctx->data += ctx->word_size;
350 static const char* dwarf2_debug_traverse_ctx(const dwarf2_traverse_context_t* ctx)
352 return wine_dbg_sprintf("ctx(%p)", ctx->data);
355 static const char* dwarf2_debug_ctx(const dwarf2_parse_context_t* ctx)
357 return wine_dbg_sprintf("ctx(%p,%s)",
358 ctx, debugstr_w(ctx->module->module.ModuleName));
361 static const char* dwarf2_debug_di(const dwarf2_debug_info_t* di)
363 return wine_dbg_sprintf("debug_info(abbrev:%p,symt:%p)",
364 di->abbrev, di->symt);
367 static dwarf2_abbrev_entry_t*
368 dwarf2_abbrev_table_find_entry(const struct sparse_array* abbrev_table,
369 unsigned long entry_code)
371 assert( NULL != abbrev_table );
372 return sparse_array_find(abbrev_table, entry_code);
375 static void dwarf2_parse_abbrev_set(dwarf2_traverse_context_t* abbrev_ctx,
376 struct sparse_array* abbrev_table,
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;
386 assert( NULL != abbrev_ctx );
388 TRACE("%s, end at %p\n",
389 dwarf2_debug_traverse_ctx(abbrev_ctx), abbrev_ctx->end_data);
391 sparse_array_init(abbrev_table, sizeof(dwarf2_abbrev_entry_t), 32);
392 while (abbrev_ctx->data < abbrev_ctx->end_data)
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);
399 TRACE("NULL entry code at %s\n", dwarf2_debug_traverse_ctx(abbrev_ctx));
402 abbrev_entry = sparse_array_add(abbrev_table, entry_code, pool);
403 assert( NULL != abbrev_entry );
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;
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);
418 attribute = dwarf2_leb128_as_unsigned(abbrev_ctx);
419 form = dwarf2_leb128_as_unsigned(abbrev_ctx);
420 if (!attribute) break;
422 new = pool_alloc(pool, sizeof(dwarf2_abbrev_entry_attr_t));
425 new->attribute = attribute;
428 if (abbrev_entry->attrs) last->next = new;
429 else abbrev_entry->attrs = new;
431 abbrev_entry->num_attr++;
434 TRACE("found %u entries\n", sparse_array_length(abbrev_table));
437 static void dwarf2_swallow_attribute(dwarf2_traverse_context_t* ctx,
438 const dwarf2_abbrev_entry_attr_t* abbrev_attr)
442 TRACE("(attr:0x%lx,form:0x%lx)\n", abbrev_attr->attribute, abbrev_attr->form);
444 switch (abbrev_attr->form)
446 case DW_FORM_ref_addr:
447 case DW_FORM_addr: step = ctx->word_size; break;
450 case DW_FORM_ref1: step = 1; break;
452 case DW_FORM_ref2: step = 2; break;
455 case DW_FORM_strp: step = 4; break;
457 case DW_FORM_ref8: step = 8; break;
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;
467 FIXME("Unhandled attribute form %lx\n", abbrev_attr->form);
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)
478 attr->form = abbrev_attr->form;
481 case DW_FORM_ref_addr:
483 attr->u.uvalue = dwarf2_get_addr(data, ctx->word_size);
484 TRACE("addr<0x%lx>\n", attr->u.uvalue);
488 attr->u.uvalue = dwarf2_get_byte(data);
489 TRACE("flag<0x%lx>\n", attr->u.uvalue);
493 attr->u.uvalue = dwarf2_get_byte(data);
494 TRACE("data1<%lu>\n", attr->u.uvalue);
498 attr->u.uvalue = dwarf2_get_u2(data);
499 TRACE("data2<%lu>\n", attr->u.uvalue);
503 attr->u.uvalue = dwarf2_get_u4(data);
504 TRACE("data4<%lu>\n", attr->u.uvalue);
508 attr->u.block.size = 8;
509 attr->u.block.ptr = data;
514 attr->u.uvalue = ctx->ref_offset + dwarf2_get_byte(data);
515 TRACE("ref1<0x%lx>\n", attr->u.uvalue);
519 attr->u.uvalue = ctx->ref_offset + dwarf2_get_u2(data);
520 TRACE("ref2<0x%lx>\n", attr->u.uvalue);
524 attr->u.uvalue = ctx->ref_offset + dwarf2_get_u4(data);
525 TRACE("ref4<0x%lx>\n", attr->u.uvalue);
529 FIXME("Unhandled 64 bit support\n");
533 attr->u.svalue = dwarf2_get_leb128_as_signed(data, NULL);
536 case DW_FORM_ref_udata:
537 attr->u.uvalue = dwarf2_get_leb128_as_unsigned(data, NULL);
541 attr->u.uvalue = dwarf2_get_leb128_as_unsigned(data, NULL);
545 attr->u.string = (const char *)data;
546 TRACE("string<%s>\n", attr->u.string);
551 unsigned long offset = dwarf2_get_u4(data);
552 attr->u.string = (const char*)ctx->sections[section_string].address + offset;
554 TRACE("strp<%s>\n", attr->u.string);
558 attr->u.block.size = dwarf2_get_leb128_as_unsigned(data, &attr->u.block.ptr);
562 attr->u.block.size = dwarf2_get_byte(data);
563 attr->u.block.ptr = data + 1;
567 attr->u.block.size = dwarf2_get_u2(data);
568 attr->u.block.ptr = data + 2;
572 attr->u.block.size = dwarf2_get_u4(data);
573 attr->u.block.ptr = data + 4;
577 FIXME("Unhandled attribute form %lx\n", abbrev_attr->form);
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)
587 dwarf2_abbrev_entry_attr_t* abbrev_attr;
588 dwarf2_abbrev_entry_attr_t* abstract_abbrev_attr;
592 abstract_abbrev_attr = NULL;
593 for (i = 0, abbrev_attr = di->abbrev->attrs; abbrev_attr; i++, abbrev_attr = abbrev_attr->next)
595 if (abbrev_attr->attribute == at)
597 dwarf2_fill_attr(ctx, abbrev_attr, di->data[i], attr);
600 if (abbrev_attr->attribute == DW_AT_abstract_origin &&
603 abstract_abbrev_attr = abbrev_attr;
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");
616 static void dwarf2_load_one_entry(dwarf2_parse_context_t*, dwarf2_debug_info_t*,
617 struct symt_compiland*);
619 #define Wine_DW_no_register 0x7FFFFFFF
621 static unsigned dwarf2_map_register(int regno)
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;
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;
662 FIXME("Don't know how to map register %d\n", regno);
668 static enum location_error
669 compute_location(dwarf2_traverse_context_t* ctx, struct location* loc,
670 HANDLE hproc, const struct location* frame)
675 BOOL piece_found = FALSE;
679 loc->kind = loc_absolute;
680 loc->reg = Wine_DW_no_register;
682 while (ctx->data < ctx->end_data)
684 op = dwarf2_parse_byte(ctx);
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)
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);
717 loc->kind = loc_register;
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)
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);
738 stack[++stk] = dwarf2_leb128_as_signed(ctx);
739 loc->kind = loc_regrel;
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)
746 loc->kind = loc_regrel;
747 loc->reg = frame->reg;
748 stack[++stk] = dwarf2_leb128_as_signed(ctx);
750 else if (frame && frame->kind == loc_regrel)
752 loc->kind = loc_regrel;
753 loc->reg = frame->reg;
754 stack[++stk] = dwarf2_leb128_as_signed(ctx) + frame->offset;
758 /* FIXME: this could be later optimized by not recomputing
759 * this very location expression
761 loc->kind = loc_dwarf2_block;
762 stack[++stk] = dwarf2_leb128_as_signed(ctx);
767 unsigned sz = dwarf2_leb128_as_unsigned(ctx);
768 WARN("Not handling OP_piece (size=%d)\n", sz);
775 FIXME("Unexpected empty stack\n");
776 return loc_err_internal;
778 if (loc->reg != Wine_DW_no_register)
780 WARN("Too complex expression for deref\n");
781 return loc_err_too_complex;
785 DWORD_PTR addr = stack[stk--];
788 if (!ReadProcessMemory(hproc, (void*)addr, &deref, sizeof(deref), NULL))
790 WARN("Couldn't read memory at %lx\n", addr);
791 return loc_err_cant_read;
793 stack[++stk] = deref;
797 loc->kind = loc_dwarf2_block;
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;
807 loc->offset = stack[stk];
811 static BOOL dwarf2_compute_location_attr(dwarf2_parse_context_t* ctx,
812 const dwarf2_debug_info_t* di,
814 struct location* loc,
815 const struct location* frame)
817 struct attribute xloc;
819 if (!dwarf2_find_attribute(ctx, di, dw, &xloc)) return FALSE;
823 case DW_FORM_data1: case DW_FORM_data2:
824 case DW_FORM_udata: case DW_FORM_sdata:
825 loc->kind = loc_absolute;
827 loc->offset = xloc.u.uvalue;
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;
836 /* assume we have a block form */
838 if (xloc.u.block.size)
840 dwarf2_traverse_context_t lctx;
841 enum location_error err;
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;
847 err = compute_location(&lctx, loc, NULL, frame);
850 loc->kind = loc_error;
853 else if (loc->kind == loc_dwarf2_block)
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;
865 static struct symt* dwarf2_lookup_type(dwarf2_parse_context_t* ctx,
866 const dwarf2_debug_info_t* di)
868 struct attribute attr;
870 if (dwarf2_find_attribute(ctx, di, DW_AT_type, &attr))
872 dwarf2_debug_info_t* type;
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);
878 /* load the debug info entity */
879 dwarf2_load_one_entry(ctx, type, NULL);
886 /******************************************************************
887 * dwarf2_read_one_debug_info
889 * Loads into memory one debug info entry, and recursively its children (if any)
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)
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;
903 struct attribute sibling;
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);
913 abbrev = dwarf2_abbrev_table_find_entry(&ctx->abbrev_table, entry_code);
916 WARN("Cannot find abbrev entry for %lu at 0x%lx\n", entry_code, offset);
919 di = sparse_array_add(&ctx->debug_info_table, offset, &ctx->pool);
920 if (!di) return FALSE;
924 if (abbrev->num_attr)
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)
929 di->data[i] = traverse->data;
930 dwarf2_swallow_attribute(traverse, attr);
933 else di->data = NULL;
934 if (abbrev->have_child)
936 vector_init(&di->children, sizeof(dwarf2_debug_info_t*), 16);
937 while (traverse->data < traverse->end_data)
939 if (!dwarf2_read_one_debug_info(ctx, traverse, &child)) return FALSE;
941 where = vector_add(&di->children, &ctx->pool);
942 if (!where) return FALSE;
946 if (dwarf2_find_attribute(ctx, di, DW_AT_sibling, &sibling) &&
947 traverse->data != ctx->sections[ctx->section].address + sibling.u.uvalue)
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;
957 static struct symt* dwarf2_parse_base_type(dwarf2_parse_context_t* ctx,
958 dwarf2_debug_info_t* di)
960 struct attribute name;
961 struct attribute size;
962 struct attribute encoding;
965 if (di->symt) return di->symt;
967 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
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;
974 switch (encoding.u.uvalue)
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;
987 di->symt = &symt_new_basic(ctx->module, bt, name.u.string, size.u.uvalue)->symt;
991 assert(size.u.uvalue == 0);
995 switch (size.u.uvalue)
997 case 1: cache_idx = sc_int1; break;
998 case 2: cache_idx = sc_int2; break;
999 case 4: cache_idx = sc_int4; break;
1004 if (cache_idx != -1 && !ctx->symt_cache[cache_idx])
1005 ctx->symt_cache[cache_idx] = di->symt;
1007 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1011 static struct symt* dwarf2_parse_typedef(dwarf2_parse_context_t* ctx,
1012 dwarf2_debug_info_t* di)
1014 struct symt* ref_type;
1015 struct attribute name;
1017 if (di->symt) return di->symt;
1019 TRACE("%s, for %lu\n", dwarf2_debug_ctx(ctx), di->abbrev->entry_code);
1021 if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name)) name.u.string = NULL;
1022 ref_type = dwarf2_lookup_type(ctx, di);
1025 di->symt = &symt_new_typedef(ctx->module, ref_type, name.u.string)->symt;
1026 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1030 static struct symt* dwarf2_parse_pointer_type(dwarf2_parse_context_t* ctx,
1031 dwarf2_debug_info_t* di)
1033 struct symt* ref_type;
1034 struct attribute size;
1036 if (di->symt) return di->symt;
1038 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
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)))
1043 ref_type = ctx->symt_cache[sc_void];
1046 di->symt = &symt_new_pointer(ctx->module, ref_type)->symt;
1047 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1051 static struct symt* dwarf2_parse_array_type(dwarf2_parse_context_t* ctx,
1052 dwarf2_debug_info_t* di)
1054 struct symt* ref_type;
1055 struct symt* idx_type = NULL;
1056 struct attribute min, max, cnt;
1057 dwarf2_debug_info_t* child;
1060 if (di->symt) return di->symt;
1062 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1064 if (!di->abbrev->have_child)
1066 FIXME("array without range information\n");
1069 ref_type = dwarf2_lookup_type(ctx, di);
1071 for (i=0; i<vector_length(&di->children); i++)
1073 child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1074 switch (child->abbrev->tag)
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))
1080 if (!dwarf2_find_attribute(ctx, child, DW_AT_upper_bound, &max))
1082 if (dwarf2_find_attribute(ctx, child, DW_AT_count, &cnt))
1083 max.u.uvalue = min.u.uvalue + cnt.u.uvalue;
1086 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1087 child->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1091 di->symt = &symt_new_array(ctx->module, min.u.uvalue, max.u.uvalue, ref_type, idx_type)->symt;
1095 static struct symt* dwarf2_parse_const_type(dwarf2_parse_context_t* ctx,
1096 dwarf2_debug_info_t* di)
1098 struct symt* ref_type;
1100 if (di->symt) return di->symt;
1102 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1104 ref_type = dwarf2_lookup_type(ctx, di);
1105 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1106 di->symt = ref_type;
1111 static struct symt* dwarf2_parse_volatile_type(dwarf2_parse_context_t* ctx,
1112 dwarf2_debug_info_t* di)
1114 struct symt* ref_type;
1116 if (di->symt) return di->symt;
1118 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1120 ref_type = dwarf2_lookup_type(ctx, di);
1121 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1122 di->symt = ref_type;
1127 static struct symt* dwarf2_parse_reference_type(dwarf2_parse_context_t* ctx,
1128 dwarf2_debug_info_t* di)
1130 struct symt* ref_type = NULL;
1132 if (di->symt) return di->symt;
1134 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
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;
1140 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1145 static void dwarf2_parse_udt_member(dwarf2_parse_context_t* ctx,
1146 const dwarf2_debug_info_t* di,
1147 struct symt_udt* parent)
1149 struct symt* elt_type;
1150 struct attribute name;
1151 struct attribute bit_size;
1152 struct attribute bit_offset;
1153 struct location loc;
1157 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
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))
1163 if (loc.kind != loc_absolute)
1165 FIXME("Found register, while not expecting it\n");
1169 TRACE("found member_location at %s -> %lu\n",
1170 dwarf2_debug_ctx(ctx), loc.offset);
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))
1178 /* FIXME: we should only do this when implementation is LSB (which is
1179 * the case on i386 processors)
1181 struct attribute nbytes;
1182 if (!dwarf2_find_attribute(ctx, di, DW_AT_byte_size, &nbytes))
1185 nbytes.u.uvalue = symt_get_info(ctx->module, elt_type, TI_GET_LENGTH, &size) ?
1186 (unsigned long)size : 0;
1188 bit_offset.u.uvalue = nbytes.u.uvalue * 8 - bit_offset.u.uvalue - bit_size.u.uvalue;
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,
1195 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1198 static struct symt* dwarf2_parse_udt_type(dwarf2_parse_context_t* ctx,
1199 dwarf2_debug_info_t* di,
1202 struct attribute name;
1203 struct attribute size;
1205 if (di->symt) return di->symt;
1207 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
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;
1212 di->symt = &symt_new_udt(ctx->module, name.u.string, size.u.uvalue, udt)->symt;
1214 if (di->abbrev->have_child) /** any interest to not have child ? */
1216 dwarf2_debug_info_t* child;
1219 for (i=0; i<vector_length(&di->children); i++)
1221 child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1223 switch (child->abbrev->tag)
1226 /* FIXME: should I follow the sibling stuff ?? */
1227 dwarf2_parse_udt_member(ctx, child, (struct symt_udt*)di->symt);
1229 case DW_TAG_enumeration_type:
1230 dwarf2_parse_enumeration_type(ctx, child);
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 */
1239 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1240 child->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1249 static void dwarf2_parse_enumerator(dwarf2_parse_context_t* ctx,
1250 const dwarf2_debug_info_t* di,
1251 struct symt_enum* parent)
1253 struct attribute name;
1254 struct attribute value;
1256 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
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);
1262 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1265 static struct symt* dwarf2_parse_enumeration_type(dwarf2_parse_context_t* ctx,
1266 dwarf2_debug_info_t* di)
1268 struct attribute name;
1269 struct attribute size;
1270 struct symt_basic* basetype;
1272 if (di->symt) return di->symt;
1274 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
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;
1279 switch (size.u.uvalue) /* FIXME: that's wrong */
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;
1284 case 4: basetype = symt_new_basic(ctx->module, btInt, "int", 4); break;
1287 di->symt = &symt_new_enum(ctx->module, name.u.string, &basetype->symt)->symt;
1289 if (di->abbrev->have_child) /* any interest to not have child ? */
1291 dwarf2_debug_info_t* child;
1294 /* FIXME: should we use the sibling stuff ?? */
1295 for (i=0; i<vector_length(&di->children); i++)
1297 child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1299 switch (child->abbrev->tag)
1301 case DW_TAG_enumerator:
1302 dwarf2_parse_enumerator(ctx, child, (struct symt_enum*)di->symt);
1305 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1306 di->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1313 /* structure used to pass information around when parsing a subprogram */
1314 typedef struct dwarf2_subprogram_s
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;
1323 /******************************************************************
1324 * dwarf2_parse_variable
1326 * Parses any variable (parameter, local/global variable)
1328 static void dwarf2_parse_variable(dwarf2_subprogram_t* subpgm,
1329 struct symt_block* block,
1330 dwarf2_debug_info_t* di)
1332 struct symt* param_type;
1333 struct attribute name, value;
1334 struct location loc;
1337 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
1339 is_pmt = !block && di->abbrev->tag == DW_TAG_formal_parameter;
1340 param_type = dwarf2_lookup_type(subpgm->ctx, di);
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. */
1346 if (dwarf2_compute_location_attr(subpgm->ctx, di, DW_AT_location,
1347 &loc, &subpgm->frame))
1349 struct attribute ext;
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));
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))
1364 symt_new_global_variable(subpgm->ctx->module, subpgm->compiland,
1365 name.u.string, !ext.u.uvalue,
1366 subpgm->ctx->load_offset + loc.offset,
1370 subpgm->non_computed_variable = TRUE;
1374 /* either a pmt/variable relative to frame pointer or
1375 * pmt/variable in a register
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);
1384 else if (dwarf2_find_attribute(subpgm->ctx, di, DW_AT_const_value, &value))
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);
1396 v.n1.n2.vt = VT_UI4;
1397 v.n1.n2.n3.lVal = value.u.uvalue;
1402 v.n1.n2.n3.lVal = value.u.svalue;
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
1410 v.n1.n2.vt = VT_I1 | VT_BYREF;
1411 v.n1.n2.n3.byref = pool_strdup(&subpgm->ctx->module->pool, value.u.string);
1415 case DW_FORM_block1:
1416 case DW_FORM_block2:
1417 case DW_FORM_block4:
1419 switch (value.u.block.size)
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;
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);
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);
1438 FIXME("Unsupported form for const value %s (%lx)\n",
1439 name.u.string, value.form);
1440 v.n1.n2.vt = VT_EMPTY;
1442 di->symt = &symt_new_constant(subpgm->ctx->module, subpgm->compiland,
1443 name.u.string, param_type, &v)->symt;
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,
1450 if (di->abbrev->have_child) FIXME("Unsupported children\n");
1453 static void dwarf2_parse_subprogram_label(dwarf2_subprogram_t* subpgm,
1454 const dwarf2_debug_info_t* di)
1456 struct attribute name;
1457 struct attribute low_pc;
1458 struct location loc;
1460 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
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;
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);
1472 static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm,
1473 struct symt_block* parent_block,
1474 const dwarf2_debug_info_t* di);
1476 static void dwarf2_parse_inlined_subroutine(dwarf2_subprogram_t* subpgm,
1477 struct symt_block* parent_block,
1478 const dwarf2_debug_info_t* di)
1480 struct symt_block* block;
1481 struct attribute low_pc;
1482 struct attribute high_pc;
1484 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
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;
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);
1493 if (di->abbrev->have_child) /** any interest to not have child ? */
1495 dwarf2_debug_info_t* child;
1498 for (i=0; i<vector_length(&di->children); i++)
1500 child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1502 switch (child->abbrev->tag)
1504 case DW_TAG_formal_parameter:
1505 case DW_TAG_variable:
1506 dwarf2_parse_variable(subpgm, block, child);
1508 case DW_TAG_lexical_block:
1509 dwarf2_parse_subprogram_block(subpgm, block, child);
1511 case DW_TAG_inlined_subroutine:
1512 dwarf2_parse_inlined_subroutine(subpgm, block, child);
1515 dwarf2_parse_subprogram_label(subpgm, child);
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));
1524 symt_close_func_block(subpgm->ctx->module, subpgm->func, block, 0);
1527 static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm,
1528 struct symt_block* parent_block,
1529 const dwarf2_debug_info_t* di)
1531 struct symt_block* block;
1532 struct attribute low_pc;
1533 struct attribute high_pc;
1535 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm->ctx), dwarf2_debug_di(di));
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;
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);
1546 if (di->abbrev->have_child) /** any interest to not have child ? */
1548 dwarf2_debug_info_t* child;
1551 for (i=0; i<vector_length(&di->children); i++)
1553 child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1555 switch (child->abbrev->tag)
1557 case DW_TAG_inlined_subroutine:
1558 dwarf2_parse_inlined_subroutine(subpgm, block, child);
1560 case DW_TAG_variable:
1561 dwarf2_parse_variable(subpgm, block, child);
1563 case DW_TAG_lexical_block:
1564 dwarf2_parse_subprogram_block(subpgm, block, child);
1566 case DW_TAG_subprogram:
1567 /* FIXME: likely a declaration (to be checked)
1571 case DW_TAG_formal_parameter:
1572 /* FIXME: likely elements for exception handling (GCC flavor)
1577 dwarf2_parse_subprogram_label(subpgm, child);
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 */
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));
1593 symt_close_func_block(subpgm->ctx->module, subpgm->func, block, 0);
1596 static struct symt* dwarf2_parse_subprogram(dwarf2_parse_context_t* ctx,
1597 dwarf2_debug_info_t* di,
1598 struct symt_compiland* compiland)
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;
1609 if (di->symt) return di->symt;
1611 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1613 if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name))
1615 WARN("No name for function... dropping function\n");
1618 /* if it's an abstract representation of an inline function, there should be
1619 * a concrete object that we'll handle
1621 if (dwarf2_find_attribute(ctx, di, DW_AT_inline, &inline_flags))
1623 TRACE("Function %s declared as inlined (%ld)... skipping\n",
1624 name.u.string ? name.u.string : "(null)", inline_flags.u.uvalue);
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
1634 if (elf_is_in_thunk_area(ctx->load_offset + low_pc.u.uvalue,
1637 if (!dwarf2_find_attribute(ctx, di, DW_AT_declaration, &is_decl))
1638 is_decl.u.uvalue = 0;
1640 if (!(ret_type = dwarf2_lookup_type(ctx, di)))
1642 ret_type = ctx->symt_cache[sc_void];
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)
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,
1654 di->symt = &subpgm.func->symt;
1656 else subpgm.func = NULL;
1659 subpgm.compiland = compiland;
1660 if (!dwarf2_compute_location_attr(ctx, di, DW_AT_frame_base,
1661 &subpgm.frame, NULL))
1664 subpgm.frame.kind = loc_regrel;
1665 subpgm.frame.reg = 0;
1666 subpgm.frame.offset = 0;
1668 subpgm.non_computed_variable = FALSE;
1670 if (di->abbrev->have_child) /** any interest to not have child ? */
1672 dwarf2_debug_info_t* child;
1675 for (i=0; i<vector_length(&di->children); i++)
1677 child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1679 switch (child->abbrev->tag)
1681 case DW_TAG_variable:
1682 case DW_TAG_formal_parameter:
1683 dwarf2_parse_variable(&subpgm, NULL, child);
1685 case DW_TAG_lexical_block:
1686 dwarf2_parse_subprogram_block(&subpgm, NULL, child);
1688 case DW_TAG_inlined_subroutine:
1689 dwarf2_parse_inlined_subroutine(&subpgm, NULL, child);
1691 case DW_TAG_subprogram:
1692 /* FIXME: likely a declaration (to be checked)
1697 dwarf2_parse_subprogram_label(&subpgm, child);
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 */
1706 case DW_TAG_unspecified_parameters:
1707 /* FIXME: no support in dbghelp's internals so far */
1710 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1711 child->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1716 if (subpgm.non_computed_variable || subpgm.frame.kind >= loc_user)
1718 symt_add_function_point(ctx->module, subpgm.func, SymTagCustom,
1719 &subpgm.frame, NULL);
1721 if (subpgm.func) symt_normalize_function(subpgm.ctx->module, subpgm.func);
1726 static struct symt* dwarf2_parse_subroutine_type(dwarf2_parse_context_t* ctx,
1727 dwarf2_debug_info_t* di)
1729 struct symt* ret_type;
1730 struct symt_function_signature* sig_type;
1732 if (di->symt) return di->symt;
1734 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
1736 if (!(ret_type = dwarf2_lookup_type(ctx, di)))
1738 ret_type = ctx->symt_cache[sc_void];
1742 /* FIXME: assuming C source code */
1743 sig_type = symt_new_function_signature(ctx->module, ret_type, CV_CALL_FAR_C);
1745 if (di->abbrev->have_child) /** any interest to not have child ? */
1747 dwarf2_debug_info_t* child;
1750 for (i=0; i<vector_length(&di->children); i++)
1752 child = *(dwarf2_debug_info_t**)vector_at(&di->children, i);
1754 switch (child->abbrev->tag)
1756 case DW_TAG_formal_parameter:
1757 symt_add_function_signature_parameter(ctx->module, sig_type,
1758 dwarf2_lookup_type(ctx, child));
1760 case DW_TAG_unspecified_parameters:
1761 WARN("Unsupported unspecified parameters\n");
1767 return di->symt = &sig_type->symt;
1770 static void dwarf2_load_one_entry(dwarf2_parse_context_t* ctx,
1771 dwarf2_debug_info_t* di,
1772 struct symt_compiland* compiland)
1774 switch (di->abbrev->tag)
1776 case DW_TAG_typedef:
1777 dwarf2_parse_typedef(ctx, di);
1779 case DW_TAG_base_type:
1780 dwarf2_parse_base_type(ctx, di);
1782 case DW_TAG_pointer_type:
1783 dwarf2_parse_pointer_type(ctx, di);
1785 case DW_TAG_class_type:
1786 dwarf2_parse_udt_type(ctx, di, UdtClass);
1788 case DW_TAG_structure_type:
1789 dwarf2_parse_udt_type(ctx, di, UdtStruct);
1791 case DW_TAG_union_type:
1792 dwarf2_parse_udt_type(ctx, di, UdtUnion);
1794 case DW_TAG_array_type:
1795 dwarf2_parse_array_type(ctx, di);
1797 case DW_TAG_const_type:
1798 dwarf2_parse_const_type(ctx, di);
1800 case DW_TAG_volatile_type:
1801 dwarf2_parse_volatile_type(ctx, di);
1803 case DW_TAG_reference_type:
1804 dwarf2_parse_reference_type(ctx, di);
1806 case DW_TAG_enumeration_type:
1807 dwarf2_parse_enumeration_type(ctx, di);
1809 case DW_TAG_subprogram:
1810 dwarf2_parse_subprogram(ctx, di, compiland);
1812 case DW_TAG_subroutine_type:
1813 dwarf2_parse_subroutine_type(ctx, di);
1815 case DW_TAG_variable:
1817 dwarf2_subprogram_t subpgm;
1820 subpgm.compiland = compiland;
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);
1829 FIXME("Unhandled Tag type 0x%lx at %s, for %lu\n",
1830 di->abbrev->tag, dwarf2_debug_ctx(ctx), di->abbrev->entry_code);
1834 static void dwarf2_set_line_number(struct module* module, unsigned long address,
1835 const struct vector* v, unsigned file, unsigned line)
1837 struct symt_function* func;
1838 struct symt_ht* symt;
1841 if (!file || !(psrc = vector_at(v, file - 1))) return;
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);
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)
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;
1861 const unsigned char* opcode_len;
1863 struct vector files;
1866 /* section with line numbers stripped */
1867 if (sections[section_line].address == ELF_NO_MAP)
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;
1875 length = dwarf2_parse_u4(&traverse);
1876 traverse.end_data = traverse.start_data + length;
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);
1886 opcode_len = traverse.data;
1887 traverse.data += opcode_base - 1;
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)
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);
1900 if (*rel == '/' || !compile_dir)
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);
1916 vector_init(&files, sizeof(unsigned), 16);
1917 while (*traverse.data)
1919 unsigned int dir_index, mod_time, length;
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);
1936 while (traverse.data < traverse.end_data)
1938 unsigned long address = 0;
1941 unsigned is_stmt = default_stmt;
1942 BOOL basic_block = FALSE, end_sequence = FALSE;
1943 unsigned opcode, extopcode, i;
1945 while (!end_sequence)
1947 opcode = dwarf2_parse_byte(&traverse);
1948 TRACE("Got opcode %x\n", opcode);
1950 if (opcode >= opcode_base)
1952 unsigned delta = opcode - opcode_base;
1954 address += (delta / line_range) * insn_size;
1955 line += line_base + (delta % line_range);
1957 dwarf2_set_line_number(ctx->module, address, &files, file, line);
1964 basic_block = FALSE;
1965 dwarf2_set_line_number(ctx->module, address, &files, file, line);
1967 case DW_LNS_advance_pc:
1968 address += insn_size * dwarf2_leb128_as_unsigned(&traverse);
1970 case DW_LNS_advance_line:
1971 line += dwarf2_leb128_as_signed(&traverse);
1973 case DW_LNS_set_file:
1974 file = dwarf2_leb128_as_unsigned(&traverse);
1976 case DW_LNS_set_column:
1977 dwarf2_leb128_as_unsigned(&traverse);
1979 case DW_LNS_negate_stmt:
1982 case DW_LNS_set_basic_block:
1985 case DW_LNS_const_add_pc:
1986 address += ((255 - opcode_base) / line_range) * insn_size;
1988 case DW_LNS_fixed_advance_pc:
1989 address += dwarf2_parse_u2(&traverse);
1991 case DW_LNS_extended_op:
1992 dwarf2_leb128_as_unsigned(&traverse);
1993 extopcode = dwarf2_parse_byte(&traverse);
1996 case DW_LNE_end_sequence:
1997 dwarf2_set_line_number(ctx->module, address, &files, file, line);
1998 end_sequence = TRUE;
2000 case DW_LNE_set_address:
2001 address = ctx->load_offset + dwarf2_parse_addr(&traverse);
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);
2011 FIXME("Unsupported extended opcode %x\n", extopcode);
2016 WARN("Unsupported opcode %x\n", opcode);
2017 for (i = 0; i < opcode_len[opcode]; i++)
2018 dwarf2_leb128_as_unsigned(&traverse);
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)
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;
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);
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);
2058 if (cu_version != 2)
2060 WARN("%u DWARF version unsupported. Wine dbghelp only support DWARF 2.\n",
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;
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);
2082 sparse_array_init(&ctx.debug_info_table, sizeof(dwarf2_debug_info_t), 128);
2083 dwarf2_read_one_debug_info(&ctx, &cu_ctx, &di);
2085 if (di->abbrev->tag == DW_TAG_compile_unit)
2087 struct attribute name;
2088 dwarf2_debug_info_t** pdi = NULL;
2089 struct attribute stmt_list, low_pc;
2090 struct attribute comp_dir;
2092 if (!dwarf2_find_attribute(&ctx, di, DW_AT_name, &name))
2093 name.u.string = NULL;
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;
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;
2105 if (di->abbrev->have_child)
2108 for (i=0; i<vector_length(&di->children); i++)
2110 pdi = vector_at(&di->children, i);
2111 dwarf2_load_one_entry(&ctx, *pdi, (struct symt_compiland*)di->symt);
2114 if (dwarf2_find_attribute(&ctx, di, DW_AT_stmt_list, &stmt_list))
2116 if (dwarf2_parse_line_numbers(sections, &ctx, comp_dir.u.string, stmt_list.u.uvalue))
2117 module->module.LineNumbers = TRUE;
2121 else FIXME("Should have a compilation unit here\n");
2122 pool_destroy(&ctx.pool);
2126 static BOOL dwarf2_lookup_loclist(const struct module* module, const BYTE* start,
2128 dwarf2_traverse_context_t* lctx)
2131 const BYTE* ptr = start;
2134 while (ptr < module->dwarf2_info->debug_loc.address + module->dwarf2_info->debug_loc.size)
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;
2141 if (beg <= ip && ip < end)
2144 lctx->end_data = ptr + len;
2145 lctx->word_size = 4; /* FIXME word size !!! */
2150 WARN("Couldn't find ip in location list\n");
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)
2159 struct symt** psym = NULL;
2160 struct location* pframe;
2161 dwarf2_traverse_context_t lctx;
2162 enum location_error err;
2165 for (i=0; i<vector_length(&func->vchildren); i++)
2167 psym = vector_at(&func->vchildren, i);
2168 if ((*psym)->tag == SymTagCustom)
2170 pframe = &((struct symt_hierarchy_point*)*psym)->loc;
2172 /* First, recompute the frame information, if needed */
2173 switch (pframe->kind)
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,
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)
2188 WARN("Couldn't compute runtime frame location\n");
2189 return loc_err_too_complex;
2193 WARN("Unsupported frame kind %d\n", pframe->kind);
2194 return loc_err_internal;
2199 WARN("Couldn't find Custom function point, whilst location list offset is searched\n");
2200 return loc_err_internal;
2203 static void dwarf2_location_compute(struct process* pcs,
2204 const struct module* module,
2205 const struct symt_function* func,
2206 struct location* loc)
2208 struct location frame;
2211 dwarf2_traverse_context_t lctx;
2213 if (!func->container || func->container->tag != SymTagCompiland)
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;
2220 /* instruction pointer relative to compiland's start */
2221 ip = pcs->ctx_frame.InstructionOffset - ((struct symt_compiland*)func->container)->address;
2223 if ((err = loc_compute_frame(pcs, module, func, ip, &frame)) == 0)
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,
2233 err = loc_err_out_of_scope;
2235 case loc_dwarf2_block:
2236 /* or if we have a copy of an existing block, get ready for it */
2238 unsigned* ptr = (unsigned*)loc->offset;
2240 lctx.data = (const BYTE*)(ptr + 1);
2241 lctx.end_data = lctx.data + *ptr;
2242 lctx.word_size = 4; /* FIXME !! */
2245 /* now get the variable */
2246 err = compute_location(&lctx, loc, pcs->handle, &frame);
2253 WARN("Unsupported local kind %d\n", loc->kind);
2254 err = loc_err_internal;
2260 loc->kind = loc_register;
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)
2273 dwarf2_section_t section[section_max];
2275 dwarf2_traverse_context_t mod_ctx;
2277 mod_ctx.start_data = mod_ctx.data = debug;
2278 mod_ctx.end_data = debug + debug_size;
2280 module->loc_compute = dwarf2_location_compute;
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;
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
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;
2305 while (mod_ctx.data < mod_ctx.end_data)
2307 dwarf2_parse_compilation_unit(section, module, thunks, &mod_ctx, load_offset);
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;