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";
75 const BYTE
* x
= (const BYTE
*)ptr
;
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 unsigned short*)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 unsigned long*)ptr
;
235 static unsigned long dwarf2_parse_u4(dwarf2_traverse_context_t
* ctx
)
237 unsigned long uvalue
= dwarf2_get_u4(ctx
->data
);
242 static unsigned long dwarf2_get_leb128_as_unsigned(const unsigned char* ptr
, const unsigned char** end
)
244 unsigned long ret
= 0;
250 byte
= dwarf2_get_byte(ptr
++);
251 ret
|= (byte
& 0x7f) << shift
;
253 } while (byte
& 0x80);
259 static unsigned long dwarf2_leb128_as_unsigned(dwarf2_traverse_context_t
* ctx
)
265 ret
= dwarf2_get_leb128_as_unsigned(ctx
->data
, &ctx
->data
);
270 static long dwarf2_get_leb128_as_signed(const unsigned char* ptr
, const unsigned char** end
)
275 const unsigned size
= sizeof(int) * 8;
279 byte
= dwarf2_get_byte(ptr
++);
280 ret
|= (byte
& 0x7f) << shift
;
282 } while (byte
& 0x80);
285 /* as spec: sign bit of byte is 2nd high order bit (80x40)
286 * -> 0x80 is used as flag.
288 if ((shift
< size
) && (byte
& 0x40))
290 ret
|= - (1 << shift
);
295 static long dwarf2_leb128_as_signed(dwarf2_traverse_context_t
* ctx
)
301 ret
= dwarf2_get_leb128_as_signed(ctx
->data
, &ctx
->data
);
305 static unsigned dwarf2_leb128_length(const dwarf2_traverse_context_t
* ctx
)
308 for (ret
= 0; ctx
->data
[ret
] & 0x80; ret
++);
312 static unsigned long dwarf2_get_addr(const unsigned char* ptr
, unsigned word_size
)
319 ret
= dwarf2_get_u4(ptr
);
322 FIXME("Unsupported Word Size %u\n", word_size
);
328 static unsigned long dwarf2_parse_addr(dwarf2_traverse_context_t
* ctx
)
330 unsigned long ret
= dwarf2_get_addr(ctx
->data
, ctx
->word_size
);
331 ctx
->data
+= ctx
->word_size
;
335 static const char* dwarf2_debug_traverse_ctx(const dwarf2_traverse_context_t
* ctx
)
337 return wine_dbg_sprintf("ctx(%p)", ctx
->data
);
340 static const char* dwarf2_debug_ctx(const dwarf2_parse_context_t
* ctx
)
342 return wine_dbg_sprintf("ctx(%p,%s)",
343 ctx
, debugstr_w(ctx
->module
->module
.ModuleName
));
346 static const char* dwarf2_debug_di(const dwarf2_debug_info_t
* di
)
348 return wine_dbg_sprintf("debug_info(abbrev:%p,symt:%p)",
349 di
->abbrev
, di
->symt
);
352 static dwarf2_abbrev_entry_t
*
353 dwarf2_abbrev_table_find_entry(const struct sparse_array
* abbrev_table
,
354 unsigned long entry_code
)
356 assert( NULL
!= abbrev_table
);
357 return sparse_array_find(abbrev_table
, entry_code
);
360 static void dwarf2_parse_abbrev_set(dwarf2_traverse_context_t
* abbrev_ctx
,
361 struct sparse_array
* abbrev_table
,
364 unsigned long entry_code
;
365 dwarf2_abbrev_entry_t
* abbrev_entry
;
366 dwarf2_abbrev_entry_attr_t
* new = NULL
;
367 dwarf2_abbrev_entry_attr_t
* last
= NULL
;
368 unsigned long attribute
;
371 assert( NULL
!= abbrev_ctx
);
373 TRACE("%s, end at %p\n",
374 dwarf2_debug_traverse_ctx(abbrev_ctx
), abbrev_ctx
->end_data
);
376 sparse_array_init(abbrev_table
, sizeof(dwarf2_abbrev_entry_t
), 32);
377 while (abbrev_ctx
->data
< abbrev_ctx
->end_data
)
379 TRACE("now at %s\n", dwarf2_debug_traverse_ctx(abbrev_ctx
));
380 entry_code
= dwarf2_leb128_as_unsigned(abbrev_ctx
);
381 TRACE("found entry_code %lu\n", entry_code
);
384 TRACE("NULL entry code at %s\n", dwarf2_debug_traverse_ctx(abbrev_ctx
));
387 abbrev_entry
= sparse_array_add(abbrev_table
, entry_code
, pool
);
388 assert( NULL
!= abbrev_entry
);
390 abbrev_entry
->entry_code
= entry_code
;
391 abbrev_entry
->tag
= dwarf2_leb128_as_unsigned(abbrev_ctx
);
392 abbrev_entry
->have_child
= dwarf2_parse_byte(abbrev_ctx
);
393 abbrev_entry
->attrs
= NULL
;
394 abbrev_entry
->num_attr
= 0;
396 TRACE("table:(%p,#%u) entry_code(%lu) tag(0x%lx) have_child(%u) -> %p\n",
397 abbrev_table
, sparse_array_length(abbrev_table
),
398 entry_code
, abbrev_entry
->tag
, abbrev_entry
->have_child
, abbrev_entry
);
403 attribute
= dwarf2_leb128_as_unsigned(abbrev_ctx
);
404 form
= dwarf2_leb128_as_unsigned(abbrev_ctx
);
405 if (!attribute
) break;
407 new = pool_alloc(pool
, sizeof(dwarf2_abbrev_entry_attr_t
));
410 new->attribute
= attribute
;
413 if (abbrev_entry
->attrs
) last
->next
= new;
414 else abbrev_entry
->attrs
= new;
416 abbrev_entry
->num_attr
++;
419 TRACE("found %u entries\n", sparse_array_length(abbrev_table
));
422 static void dwarf2_swallow_attribute(dwarf2_traverse_context_t
* ctx
,
423 const dwarf2_abbrev_entry_attr_t
* abbrev_attr
)
427 TRACE("(attr:0x%lx,form:0x%lx)\n", abbrev_attr
->attribute
, abbrev_attr
->form
);
429 switch (abbrev_attr
->form
)
431 case DW_FORM_ref_addr
:
432 case DW_FORM_addr
: step
= ctx
->word_size
; break;
435 case DW_FORM_ref1
: step
= 1; break;
437 case DW_FORM_ref2
: step
= 2; break;
440 case DW_FORM_strp
: step
= 4; break;
442 case DW_FORM_ref8
: step
= 8; break;
444 case DW_FORM_ref_udata
:
445 case DW_FORM_udata
: step
= dwarf2_leb128_length(ctx
); break;
446 case DW_FORM_string
: step
= strlen((const char*)ctx
->data
) + 1; break;
447 case DW_FORM_block
: step
= dwarf2_leb128_as_unsigned(ctx
); break;
448 case DW_FORM_block1
: step
= dwarf2_parse_byte(ctx
); break;
449 case DW_FORM_block2
: step
= dwarf2_parse_u2(ctx
); break;
450 case DW_FORM_block4
: step
= dwarf2_parse_u4(ctx
); break;
452 FIXME("Unhandled attribute form %lx\n", abbrev_attr
->form
);
458 static void dwarf2_fill_attr(const dwarf2_parse_context_t
* ctx
,
459 const dwarf2_abbrev_entry_attr_t
* abbrev_attr
,
460 const unsigned char* data
,
461 struct attribute
* attr
)
463 attr
->form
= abbrev_attr
->form
;
466 case DW_FORM_ref_addr
:
468 attr
->u
.uvalue
= dwarf2_get_addr(data
, ctx
->word_size
);
469 TRACE("addr<0x%lx>\n", attr
->u
.uvalue
);
473 attr
->u
.uvalue
= dwarf2_get_byte(data
);
474 TRACE("flag<0x%lx>\n", attr
->u
.uvalue
);
478 attr
->u
.uvalue
= dwarf2_get_byte(data
);
479 TRACE("data1<%lu>\n", attr
->u
.uvalue
);
483 attr
->u
.uvalue
= dwarf2_get_u2(data
);
484 TRACE("data2<%lu>\n", attr
->u
.uvalue
);
488 attr
->u
.uvalue
= dwarf2_get_u4(data
);
489 TRACE("data4<%lu>\n", attr
->u
.uvalue
);
493 FIXME("Unhandled 64bits support\n");
497 attr
->u
.uvalue
= ctx
->ref_offset
+ dwarf2_get_byte(data
);
498 TRACE("ref1<0x%lx>\n", attr
->u
.uvalue
);
502 attr
->u
.uvalue
= ctx
->ref_offset
+ dwarf2_get_u2(data
);
503 TRACE("ref2<0x%lx>\n", attr
->u
.uvalue
);
507 attr
->u
.uvalue
= ctx
->ref_offset
+ dwarf2_get_u4(data
);
508 TRACE("ref4<0x%lx>\n", attr
->u
.uvalue
);
512 FIXME("Unhandled 64 bit support\n");
516 attr
->u
.svalue
= dwarf2_get_leb128_as_signed(data
, NULL
);
519 case DW_FORM_ref_udata
:
520 attr
->u
.uvalue
= dwarf2_get_leb128_as_unsigned(data
, NULL
);
524 attr
->u
.uvalue
= dwarf2_get_leb128_as_unsigned(data
, NULL
);
528 attr
->u
.string
= (const char *)data
;
529 TRACE("string<%s>\n", attr
->u
.string
);
534 unsigned long offset
= dwarf2_get_u4(data
);
535 attr
->u
.string
= (const char*)ctx
->sections
[section_string
].address
+ offset
;
537 TRACE("strp<%s>\n", attr
->u
.string
);
541 attr
->u
.block
.size
= dwarf2_get_leb128_as_unsigned(data
, &attr
->u
.block
.ptr
);
545 attr
->u
.block
.size
= dwarf2_get_byte(data
);
546 attr
->u
.block
.ptr
= data
+ 1;
550 attr
->u
.block
.size
= dwarf2_get_u2(data
);
551 attr
->u
.block
.ptr
= data
+ 2;
555 attr
->u
.block
.size
= dwarf2_get_u4(data
);
556 attr
->u
.block
.ptr
= data
+ 4;
560 FIXME("Unhandled attribute form %lx\n", abbrev_attr
->form
);
565 static BOOL
dwarf2_find_attribute(const dwarf2_parse_context_t
* ctx
,
566 const dwarf2_debug_info_t
* di
,
567 unsigned at
, struct attribute
* attr
)
570 dwarf2_abbrev_entry_attr_t
* abbrev_attr
;
571 dwarf2_abbrev_entry_attr_t
* abstract_abbrev_attr
;
575 abstract_abbrev_attr
= NULL
;
576 for (i
= 0, abbrev_attr
= di
->abbrev
->attrs
; abbrev_attr
; i
++, abbrev_attr
= abbrev_attr
->next
)
578 if (abbrev_attr
->attribute
== at
)
580 dwarf2_fill_attr(ctx
, abbrev_attr
, di
->data
[i
], attr
);
583 if (abbrev_attr
->attribute
== DW_AT_abstract_origin
&&
586 abstract_abbrev_attr
= abbrev_attr
;
590 /* do we have an abstract origin debug entry to look into ? */
591 if (!abstract_abbrev_attr
) break;
592 dwarf2_fill_attr(ctx
, abstract_abbrev_attr
, di
->data
[ai
], attr
);
593 if (!(di
= sparse_array_find(&ctx
->debug_info_table
, attr
->u
.uvalue
)))
594 FIXME("Should have found the debug info entry\n");
599 static void dwarf2_load_one_entry(dwarf2_parse_context_t
*, dwarf2_debug_info_t
*,
600 struct symt_compiland
*);
602 #define Wine_DW_no_register 0x7FFFFFFF
604 static unsigned dwarf2_map_register(int regno
)
610 case Wine_DW_no_register
: FIXME("What the heck map reg 0x%x\n",regno
); reg
= 0; break;
611 case 0: reg
= CV_REG_EAX
; break;
612 case 1: reg
= CV_REG_ECX
; break;
613 case 2: reg
= CV_REG_EDX
; break;
614 case 3: reg
= CV_REG_EBX
; break;
615 case 4: reg
= CV_REG_ESP
; break;
616 case 5: reg
= CV_REG_EBP
; break;
617 case 6: reg
= CV_REG_ESI
; break;
618 case 7: reg
= CV_REG_EDI
; break;
619 case 8: reg
= CV_REG_EIP
; break;
620 case 9: reg
= CV_REG_EFLAGS
; break;
621 case 10: reg
= CV_REG_CS
; break;
622 case 11: reg
= CV_REG_SS
; break;
623 case 12: reg
= CV_REG_DS
; break;
624 case 13: reg
= CV_REG_ES
; break;
625 case 14: reg
= CV_REG_FS
; break;
626 case 15: reg
= CV_REG_GS
; break;
627 case 16: case 17: case 18: case 19:
628 case 20: case 21: case 22: case 23:
629 reg
= CV_REG_ST0
+ regno
- 16; break;
630 case 24: reg
= CV_REG_CTRL
; break;
631 case 25: reg
= CV_REG_STAT
; break;
632 case 26: reg
= CV_REG_TAG
; break;
640 case 32: case 33: case 34: case 35:
641 case 36: case 37: case 38: case 39:
642 reg
= CV_REG_XMM0
+ regno
- 32; break;
643 case 40: reg
= CV_REG_MXCSR
; break;
645 FIXME("Don't know how to map register %d\n", regno
);
651 static enum location_error
652 compute_location(dwarf2_traverse_context_t
* ctx
, struct location
* loc
,
653 HANDLE hproc
, const struct location
* frame
)
655 unsigned long stack
[64];
658 BOOL piece_found
= FALSE
;
662 loc
->kind
= loc_absolute
;
663 loc
->reg
= Wine_DW_no_register
;
665 while (ctx
->data
< ctx
->end_data
)
667 op
= dwarf2_parse_byte(ctx
);
670 case DW_OP_addr
: stack
[++stk
] = dwarf2_parse_addr(ctx
); break;
671 case DW_OP_const1u
: stack
[++stk
] = dwarf2_parse_byte(ctx
); break;
672 case DW_OP_const1s
: stack
[++stk
] = (long)(signed char)dwarf2_parse_byte(ctx
); break;
673 case DW_OP_const2u
: stack
[++stk
] = dwarf2_parse_u2(ctx
); break;
674 case DW_OP_const2s
: stack
[++stk
] = (long)(short)dwarf2_parse_u2(ctx
); break;
675 case DW_OP_const4u
: stack
[++stk
] = dwarf2_parse_u4(ctx
); break;
676 case DW_OP_const4s
: stack
[++stk
] = dwarf2_parse_u4(ctx
); break;
677 case DW_OP_constu
: stack
[++stk
] = dwarf2_leb128_as_unsigned(ctx
); break;
678 case DW_OP_consts
: stack
[++stk
] = dwarf2_leb128_as_signed(ctx
); break;
679 case DW_OP_plus_uconst
:
680 stack
[stk
] += dwarf2_leb128_as_unsigned(ctx
); break;
681 case DW_OP_reg0
: case DW_OP_reg1
: case DW_OP_reg2
: case DW_OP_reg3
:
682 case DW_OP_reg4
: case DW_OP_reg5
: case DW_OP_reg6
: case DW_OP_reg7
:
683 case DW_OP_reg8
: case DW_OP_reg9
: case DW_OP_reg10
: case DW_OP_reg11
:
684 case DW_OP_reg12
: case DW_OP_reg13
: case DW_OP_reg14
: case DW_OP_reg15
:
685 case DW_OP_reg16
: case DW_OP_reg17
: case DW_OP_reg18
: case DW_OP_reg19
:
686 case DW_OP_reg20
: case DW_OP_reg21
: case DW_OP_reg22
: case DW_OP_reg23
:
687 case DW_OP_reg24
: case DW_OP_reg25
: case DW_OP_reg26
: case DW_OP_reg27
:
688 case DW_OP_reg28
: case DW_OP_reg29
: case DW_OP_reg30
: case DW_OP_reg31
:
689 /* dbghelp APIs don't know how to cope with this anyway
690 * (for example 'long long' stored in two registers)
691 * FIXME: We should tell winedbg how to deal with it (sigh)
695 if (loc
->reg
!= Wine_DW_no_register
)
696 FIXME("Only supporting one reg (%d -> %d)\n",
697 loc
->reg
, dwarf2_map_register(op
- DW_OP_reg0
));
698 loc
->reg
= dwarf2_map_register(op
- DW_OP_reg0
);
700 loc
->kind
= loc_register
;
702 case DW_OP_breg0
: case DW_OP_breg1
: case DW_OP_breg2
: case DW_OP_breg3
:
703 case DW_OP_breg4
: case DW_OP_breg5
: case DW_OP_breg6
: case DW_OP_breg7
:
704 case DW_OP_breg8
: case DW_OP_breg9
: case DW_OP_breg10
: case DW_OP_breg11
:
705 case DW_OP_breg12
: case DW_OP_breg13
: case DW_OP_breg14
: case DW_OP_breg15
:
706 case DW_OP_breg16
: case DW_OP_breg17
: case DW_OP_breg18
: case DW_OP_breg19
:
707 case DW_OP_breg20
: case DW_OP_breg21
: case DW_OP_breg22
: case DW_OP_breg23
:
708 case DW_OP_breg24
: case DW_OP_breg25
: case DW_OP_breg26
: case DW_OP_breg27
:
709 case DW_OP_breg28
: case DW_OP_breg29
: case DW_OP_breg30
: case DW_OP_breg31
:
710 /* dbghelp APIs don't know how to cope with this anyway
711 * (for example 'long long' stored in two registers)
712 * FIXME: We should tell winedbg how to deal with it (sigh)
716 if (loc
->reg
!= Wine_DW_no_register
)
717 FIXME("Only supporting one reg (%d -> %d)\n",
718 loc
->reg
, dwarf2_map_register(op
- DW_OP_breg0
));
719 loc
->reg
= dwarf2_map_register(op
- DW_OP_breg0
);
721 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
);
722 loc
->kind
= loc_regrel
;
725 if (loc
->reg
!= Wine_DW_no_register
)
726 FIXME("Only supporting one reg (%d -> -2)\n", loc
->reg
);
727 if (frame
&& frame
->kind
== loc_register
)
729 loc
->kind
= loc_regrel
;
730 loc
->reg
= frame
->reg
;
731 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
);
733 else if (frame
&& frame
->kind
== loc_regrel
)
735 loc
->kind
= loc_regrel
;
736 loc
->reg
= frame
->reg
;
737 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
) + frame
->offset
;
741 /* FIXME: this could be later optimized by not recomputing
742 * this very location expression
744 loc
->kind
= loc_dwarf2_block
;
745 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
);
750 unsigned sz
= dwarf2_leb128_as_unsigned(ctx
);
751 WARN("Not handling OP_piece (size=%d)\n", sz
);
758 FIXME("Unexpected empty stack\n");
759 return loc_err_internal
;
761 if (loc
->reg
!= Wine_DW_no_register
)
763 WARN("Too complex expression for deref\n");
764 return loc_err_too_complex
;
768 DWORD addr
= stack
[stk
--];
771 if (!ReadProcessMemory(hproc
, (void*)addr
, &deref
, sizeof(deref
), NULL
))
773 WARN("Couldn't read memory at %x\n", addr
);
774 return loc_err_cant_read
;
776 stack
[++stk
] = deref
;
780 loc
->kind
= loc_dwarf2_block
;
784 FIXME("Unhandled attr op: %x\n", op
);
785 return loc_err_internal
;
788 loc
->offset
= stack
[stk
];
792 static BOOL
dwarf2_compute_location_attr(dwarf2_parse_context_t
* ctx
,
793 const dwarf2_debug_info_t
* di
,
795 struct location
* loc
,
796 const struct location
* frame
)
798 struct attribute xloc
;
800 if (!dwarf2_find_attribute(ctx
, di
, dw
, &xloc
)) return FALSE
;
804 case DW_FORM_data1
: case DW_FORM_data2
:
805 case DW_FORM_udata
: case DW_FORM_sdata
:
806 loc
->kind
= loc_absolute
;
808 loc
->offset
= xloc
.u
.uvalue
;
810 case DW_FORM_data4
: case DW_FORM_data8
:
811 loc
->kind
= loc_dwarf2_location_list
;
812 loc
->reg
= Wine_DW_no_register
;
813 loc
->offset
= xloc
.u
.uvalue
;
817 /* assume we have a block form */
819 if (xloc
.u
.block
.size
)
821 dwarf2_traverse_context_t lctx
;
822 enum location_error err
;
824 lctx
.data
= xloc
.u
.block
.ptr
;
825 lctx
.end_data
= xloc
.u
.block
.ptr
+ xloc
.u
.block
.size
;
826 lctx
.word_size
= ctx
->word_size
;
828 err
= compute_location(&lctx
, loc
, NULL
, frame
);
831 loc
->kind
= loc_error
;
834 else if (loc
->kind
== loc_dwarf2_block
)
836 unsigned* ptr
= pool_alloc(&ctx
->module
->pool
,
837 sizeof(unsigned) + xloc
.u
.block
.size
);
838 *ptr
= xloc
.u
.block
.size
;
839 memcpy(ptr
+ 1, xloc
.u
.block
.ptr
, xloc
.u
.block
.size
);
840 loc
->offset
= (unsigned long)ptr
;
846 static struct symt
* dwarf2_lookup_type(dwarf2_parse_context_t
* ctx
,
847 const dwarf2_debug_info_t
* di
)
849 struct attribute attr
;
851 if (dwarf2_find_attribute(ctx
, di
, DW_AT_type
, &attr
))
853 dwarf2_debug_info_t
* type
;
855 type
= sparse_array_find(&ctx
->debug_info_table
, attr
.u
.uvalue
);
856 if (!type
) FIXME("Unable to find back reference to type %lx\n", attr
.u
.uvalue
);
859 /* load the debug info entity */
860 dwarf2_load_one_entry(ctx
, type
, NULL
);
867 /******************************************************************
868 * dwarf2_read_one_debug_info
870 * Loads into memory one debug info entry, and recursively its children (if any)
872 static BOOL
dwarf2_read_one_debug_info(dwarf2_parse_context_t
* ctx
,
873 dwarf2_traverse_context_t
* traverse
,
874 dwarf2_debug_info_t
** pdi
)
876 const dwarf2_abbrev_entry_t
*abbrev
;
877 unsigned long entry_code
;
878 unsigned long offset
;
879 dwarf2_debug_info_t
* di
;
880 dwarf2_debug_info_t
* child
;
881 dwarf2_debug_info_t
** where
;
882 dwarf2_abbrev_entry_attr_t
* attr
;
884 struct attribute sibling
;
886 offset
= traverse
->data
- ctx
->sections
[ctx
->section
].address
;
887 entry_code
= dwarf2_leb128_as_unsigned(traverse
);
888 TRACE("found entry_code %lu at 0x%lx\n", entry_code
, offset
);
894 abbrev
= dwarf2_abbrev_table_find_entry(&ctx
->abbrev_table
, entry_code
);
897 WARN("Cannot find abbrev entry for %lu at 0x%lx\n", entry_code
, offset
);
900 di
= sparse_array_add(&ctx
->debug_info_table
, offset
, &ctx
->pool
);
901 if (!di
) return FALSE
;
905 if (abbrev
->num_attr
)
907 di
->data
= pool_alloc(&ctx
->pool
, abbrev
->num_attr
* sizeof(const char*));
908 for (i
= 0, attr
= abbrev
->attrs
; attr
; i
++, attr
= attr
->next
)
910 di
->data
[i
] = traverse
->data
;
911 dwarf2_swallow_attribute(traverse
, attr
);
914 else di
->data
= NULL
;
915 if (abbrev
->have_child
)
917 vector_init(&di
->children
, sizeof(dwarf2_debug_info_t
*), 16);
918 while (traverse
->data
< traverse
->end_data
)
920 if (!dwarf2_read_one_debug_info(ctx
, traverse
, &child
)) return FALSE
;
922 where
= vector_add(&di
->children
, &ctx
->pool
);
923 if (!where
) return FALSE
;
927 if (dwarf2_find_attribute(ctx
, di
, DW_AT_sibling
, &sibling
) &&
928 traverse
->data
!= ctx
->sections
[ctx
->section
].address
+ sibling
.u
.uvalue
)
930 WARN("setting cursor for %s to next sibling <0x%lx>\n",
931 dwarf2_debug_traverse_ctx(traverse
), sibling
.u
.uvalue
);
932 traverse
->data
= ctx
->sections
[ctx
->section
].address
+ sibling
.u
.uvalue
;
938 static struct symt
* dwarf2_parse_base_type(dwarf2_parse_context_t
* ctx
,
939 dwarf2_debug_info_t
* di
)
941 struct attribute name
;
942 struct attribute size
;
943 struct attribute encoding
;
946 if (di
->symt
) return di
->symt
;
948 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
950 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
))
951 name
.u
.string
= NULL
;
952 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &size
)) size
.u
.uvalue
= 0;
953 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_encoding
, &encoding
)) encoding
.u
.uvalue
= DW_ATE_void
;
955 switch (encoding
.u
.uvalue
)
957 case DW_ATE_void
: bt
= btVoid
; break;
958 case DW_ATE_address
: bt
= btULong
; break;
959 case DW_ATE_boolean
: bt
= btBool
; break;
960 case DW_ATE_complex_float
: bt
= btComplex
; break;
961 case DW_ATE_float
: bt
= btFloat
; break;
962 case DW_ATE_signed
: bt
= btInt
; break;
963 case DW_ATE_unsigned
: bt
= btUInt
; break;
964 case DW_ATE_signed_char
: bt
= btChar
; break;
965 case DW_ATE_unsigned_char
: bt
= btChar
; break;
966 default: bt
= btNoType
; break;
968 di
->symt
= &symt_new_basic(ctx
->module
, bt
, name
.u
.string
, size
.u
.uvalue
)->symt
;
972 assert(size
.u
.uvalue
== 0);
976 switch (size
.u
.uvalue
)
978 case 1: cache_idx
= sc_int1
; break;
979 case 2: cache_idx
= sc_int2
; break;
980 case 4: cache_idx
= sc_int4
; break;
985 if (cache_idx
!= -1 && !ctx
->symt_cache
[cache_idx
])
986 ctx
->symt_cache
[cache_idx
] = di
->symt
;
988 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
992 static struct symt
* dwarf2_parse_typedef(dwarf2_parse_context_t
* ctx
,
993 dwarf2_debug_info_t
* di
)
995 struct symt
* ref_type
;
996 struct attribute name
;
998 if (di
->symt
) return di
->symt
;
1000 TRACE("%s, for %lu\n", dwarf2_debug_ctx(ctx
), di
->abbrev
->entry_code
);
1002 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) name
.u
.string
= NULL
;
1003 ref_type
= dwarf2_lookup_type(ctx
, di
);
1006 di
->symt
= &symt_new_typedef(ctx
->module
, ref_type
, name
.u
.string
)->symt
;
1007 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
1011 static struct symt
* dwarf2_parse_pointer_type(dwarf2_parse_context_t
* ctx
,
1012 dwarf2_debug_info_t
* di
)
1014 struct symt
* ref_type
;
1015 struct attribute size
;
1017 if (di
->symt
) return di
->symt
;
1019 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1021 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &size
)) size
.u
.uvalue
= 0;
1022 if (!(ref_type
= dwarf2_lookup_type(ctx
, di
)))
1024 ref_type
= ctx
->symt_cache
[sc_void
];
1027 di
->symt
= &symt_new_pointer(ctx
->module
, ref_type
)->symt
;
1028 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
1032 static struct symt
* dwarf2_parse_array_type(dwarf2_parse_context_t
* ctx
,
1033 dwarf2_debug_info_t
* di
)
1035 struct symt
* ref_type
;
1036 struct symt
* idx_type
= NULL
;
1037 struct attribute min
, max
, cnt
;
1038 dwarf2_debug_info_t
* child
;
1041 if (di
->symt
) return di
->symt
;
1043 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1045 if (!di
->abbrev
->have_child
)
1047 FIXME("array without range information\n");
1050 ref_type
= dwarf2_lookup_type(ctx
, di
);
1052 for (i
=0; i
<vector_length(&di
->children
); i
++)
1054 child
= *(dwarf2_debug_info_t
**)vector_at(&di
->children
, i
);
1055 switch (child
->abbrev
->tag
)
1057 case DW_TAG_subrange_type
:
1058 idx_type
= dwarf2_lookup_type(ctx
, child
);
1059 if (!dwarf2_find_attribute(ctx
, child
, DW_AT_lower_bound
, &min
))
1061 if (!dwarf2_find_attribute(ctx
, child
, DW_AT_upper_bound
, &max
))
1063 if (dwarf2_find_attribute(ctx
, child
, DW_AT_count
, &cnt
))
1064 max
.u
.uvalue
= min
.u
.uvalue
+ cnt
.u
.uvalue
;
1067 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1068 child
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1072 di
->symt
= &symt_new_array(ctx
->module
, min
.u
.uvalue
, max
.u
.uvalue
, ref_type
, idx_type
)->symt
;
1076 static struct symt
* dwarf2_parse_const_type(dwarf2_parse_context_t
* ctx
,
1077 dwarf2_debug_info_t
* di
)
1079 struct symt
* ref_type
;
1081 if (di
->symt
) return di
->symt
;
1083 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1085 ref_type
= dwarf2_lookup_type(ctx
, di
);
1086 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
1087 di
->symt
= ref_type
;
1092 static struct symt
* dwarf2_parse_volatile_type(dwarf2_parse_context_t
* ctx
,
1093 dwarf2_debug_info_t
* di
)
1095 struct symt
* ref_type
;
1097 if (di
->symt
) return di
->symt
;
1099 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1101 ref_type
= dwarf2_lookup_type(ctx
, di
);
1102 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
1103 di
->symt
= ref_type
;
1108 static struct symt
* dwarf2_parse_reference_type(dwarf2_parse_context_t
* ctx
,
1109 dwarf2_debug_info_t
* di
)
1111 struct symt
* ref_type
= NULL
;
1113 if (di
->symt
) return di
->symt
;
1115 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1117 ref_type
= dwarf2_lookup_type(ctx
, di
);
1118 /* FIXME: for now, we hard-wire C++ references to pointers */
1119 di
->symt
= &symt_new_pointer(ctx
->module
, ref_type
)->symt
;
1121 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
1126 static void dwarf2_parse_udt_member(dwarf2_parse_context_t
* ctx
,
1127 const dwarf2_debug_info_t
* di
,
1128 struct symt_udt
* parent
)
1130 struct symt
* elt_type
;
1131 struct attribute name
;
1132 struct attribute bit_size
;
1133 struct attribute bit_offset
;
1134 struct location loc
;
1138 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1140 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) name
.u
.string
= NULL
;
1141 elt_type
= dwarf2_lookup_type(ctx
, di
);
1142 if (dwarf2_compute_location_attr(ctx
, di
, DW_AT_data_member_location
, &loc
, NULL
))
1144 if (loc
.kind
!= loc_absolute
)
1146 FIXME("Found register, while not expecting it\n");
1150 TRACE("found member_location at %s -> %lu\n",
1151 dwarf2_debug_ctx(ctx
), loc
.offset
);
1155 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_bit_size
, &bit_size
))
1156 bit_size
.u
.uvalue
= 0;
1157 if (dwarf2_find_attribute(ctx
, di
, DW_AT_bit_offset
, &bit_offset
))
1159 /* FIXME: we should only do this when implementation is LSB (which is
1160 * the case on i386 processors)
1162 struct attribute nbytes
;
1163 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &nbytes
))
1166 nbytes
.u
.uvalue
= symt_get_info(elt_type
, TI_GET_LENGTH
, &size
) ? (unsigned long)size
: 0;
1168 bit_offset
.u
.uvalue
= nbytes
.u
.uvalue
* 8 - bit_offset
.u
.uvalue
- bit_size
.u
.uvalue
;
1170 else bit_offset
.u
.uvalue
= 0;
1171 symt_add_udt_element(ctx
->module
, parent
, name
.u
.string
, elt_type
,
1172 (loc
.offset
<< 3) + bit_offset
.u
.uvalue
,
1175 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
1178 static struct symt
* dwarf2_parse_udt_type(dwarf2_parse_context_t
* ctx
,
1179 dwarf2_debug_info_t
* di
,
1182 struct attribute name
;
1183 struct attribute size
;
1185 if (di
->symt
) return di
->symt
;
1187 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1189 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) name
.u
.string
= NULL
;
1190 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &size
)) size
.u
.uvalue
= 0;
1192 di
->symt
= &symt_new_udt(ctx
->module
, name
.u
.string
, size
.u
.uvalue
, udt
)->symt
;
1194 if (di
->abbrev
->have_child
) /** any interest to not have child ? */
1196 dwarf2_debug_info_t
* child
;
1199 for (i
=0; i
<vector_length(&di
->children
); i
++)
1201 child
= *(dwarf2_debug_info_t
**)vector_at(&di
->children
, i
);
1203 switch (child
->abbrev
->tag
)
1206 /* FIXME: should I follow the sibling stuff ?? */
1207 dwarf2_parse_udt_member(ctx
, child
, (struct symt_udt
*)di
->symt
);
1209 case DW_TAG_enumeration_type
:
1210 dwarf2_parse_enumeration_type(ctx
, child
);
1212 case DW_TAG_structure_type
:
1213 case DW_TAG_class_type
:
1214 case DW_TAG_union_type
:
1215 case DW_TAG_typedef
:
1216 /* FIXME: we need to handle nested udt definitions */
1219 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1220 child
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1229 static void dwarf2_parse_enumerator(dwarf2_parse_context_t
* ctx
,
1230 const dwarf2_debug_info_t
* di
,
1231 struct symt_enum
* parent
)
1233 struct attribute name
;
1234 struct attribute value
;
1236 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1238 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) return;
1239 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_const_value
, &value
)) value
.u
.svalue
= 0;
1240 symt_add_enum_element(ctx
->module
, parent
, name
.u
.string
, value
.u
.svalue
);
1242 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
1245 static struct symt
* dwarf2_parse_enumeration_type(dwarf2_parse_context_t
* ctx
,
1246 dwarf2_debug_info_t
* di
)
1248 struct attribute name
;
1249 struct attribute size
;
1250 struct symt_basic
* basetype
;
1252 if (di
->symt
) return di
->symt
;
1254 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1256 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) name
.u
.string
= NULL
;
1257 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &size
)) size
.u
.uvalue
= 4;
1259 switch (size
.u
.uvalue
) /* FIXME: that's wrong */
1261 case 1: basetype
= symt_new_basic(ctx
->module
, btInt
, "char", 1); break;
1262 case 2: basetype
= symt_new_basic(ctx
->module
, btInt
, "short", 2); break;
1264 case 4: basetype
= symt_new_basic(ctx
->module
, btInt
, "int", 4); break;
1267 di
->symt
= &symt_new_enum(ctx
->module
, name
.u
.string
, &basetype
->symt
)->symt
;
1269 if (di
->abbrev
->have_child
) /* any interest to not have child ? */
1271 dwarf2_debug_info_t
* child
;
1274 /* FIXME: should we use the sibling stuff ?? */
1275 for (i
=0; i
<vector_length(&di
->children
); i
++)
1277 child
= *(dwarf2_debug_info_t
**)vector_at(&di
->children
, i
);
1279 switch (child
->abbrev
->tag
)
1281 case DW_TAG_enumerator
:
1282 dwarf2_parse_enumerator(ctx
, child
, (struct symt_enum
*)di
->symt
);
1285 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1286 di
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1293 /* structure used to pass information around when parsing a subprogram */
1294 typedef struct dwarf2_subprogram_s
1296 dwarf2_parse_context_t
* ctx
;
1297 struct symt_compiland
* compiland
;
1298 struct symt_function
* func
;
1299 BOOL non_computed_variable
;
1300 struct location frame
;
1301 } dwarf2_subprogram_t
;
1303 /******************************************************************
1304 * dwarf2_parse_variable
1306 * Parses any variable (parameter, local/global variable)
1308 static void dwarf2_parse_variable(dwarf2_subprogram_t
* subpgm
,
1309 struct symt_block
* block
,
1310 dwarf2_debug_info_t
* di
)
1312 struct symt
* param_type
;
1313 struct attribute name
, value
;
1314 struct location loc
;
1317 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1319 is_pmt
= !block
&& di
->abbrev
->tag
== DW_TAG_formal_parameter
;
1320 param_type
= dwarf2_lookup_type(subpgm
->ctx
, di
);
1322 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_name
, &name
)) {
1323 /* cannot do much without the name, the functions below won't like it. */
1326 if (dwarf2_compute_location_attr(subpgm
->ctx
, di
, DW_AT_location
,
1327 &loc
, &subpgm
->frame
))
1329 struct attribute ext
;
1331 TRACE("found parameter %s (kind=%d, offset=%ld, reg=%d) at %s\n",
1332 name
.u
.string
, loc
.kind
, loc
.offset
, loc
.reg
,
1333 dwarf2_debug_ctx(subpgm
->ctx
));
1338 /* it's a global variable */
1339 /* FIXME: we don't handle its scope yet */
1340 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_external
, &ext
))
1342 symt_new_global_variable(subpgm
->ctx
->module
, subpgm
->compiland
,
1343 name
.u
.string
, !ext
.u
.uvalue
,
1344 subpgm
->ctx
->load_offset
+ loc
.offset
,
1348 subpgm
->non_computed_variable
= TRUE
;
1352 /* either a pmt/variable relative to frame pointer or
1353 * pmt/variable in a register
1355 assert(subpgm
->func
);
1356 symt_add_func_local(subpgm
->ctx
->module
, subpgm
->func
,
1357 is_pmt
? DataIsParam
: DataIsLocal
,
1358 &loc
, block
, param_type
, name
.u
.string
);
1362 else if (dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_const_value
, &value
))
1365 if (subpgm
->func
) WARN("Unsupported constant %s in function\n", name
.u
.string
);
1366 if (is_pmt
) FIXME("Unsupported constant (parameter) %s in function\n", name
.u
.string
);
1374 v
.n1
.n2
.vt
= VT_UI4
;
1375 v
.n1
.n2
.n3
.lVal
= value
.u
.uvalue
;
1380 v
.n1
.n2
.n3
.lVal
= value
.u
.svalue
;
1384 case DW_FORM_string
:
1385 /* FIXME: native doesn't report const strings from here !!
1386 * however, the value of the string is in the code somewhere
1388 v
.n1
.n2
.vt
= VT_I1
| VT_BYREF
;
1389 v
.n1
.n2
.n3
.byref
= pool_strdup(&subpgm
->ctx
->module
->pool
, value
.u
.string
);
1394 case DW_FORM_block1
:
1395 case DW_FORM_block2
:
1396 case DW_FORM_block4
:
1399 FIXME("Unsupported form for const value %s (%lx)\n",
1400 name
.u
.string
, value
.form
);
1401 v
.n1
.n2
.vt
= VT_EMPTY
;
1403 di
->symt
= &symt_new_constant(subpgm
->ctx
->module
, subpgm
->compiland
,
1404 name
.u
.string
, param_type
, &v
)->symt
;
1406 if (is_pmt
&& subpgm
->func
&& subpgm
->func
->type
)
1407 symt_add_function_signature_parameter(subpgm
->ctx
->module
,
1408 (struct symt_function_signature
*)subpgm
->func
->type
,
1411 if (di
->abbrev
->have_child
) FIXME("Unsupported children\n");
1414 static void dwarf2_parse_subprogram_label(dwarf2_subprogram_t
* subpgm
,
1415 const dwarf2_debug_info_t
* di
)
1417 struct attribute name
;
1418 struct attribute low_pc
;
1419 struct location loc
;
1421 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1423 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_low_pc
, &low_pc
)) low_pc
.u
.uvalue
= 0;
1424 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_name
, &name
))
1425 name
.u
.string
= NULL
;
1427 loc
.kind
= loc_absolute
;
1428 loc
.offset
= subpgm
->ctx
->load_offset
+ low_pc
.u
.uvalue
;
1429 symt_add_function_point(subpgm
->ctx
->module
, subpgm
->func
, SymTagLabel
,
1430 &loc
, name
.u
.string
);
1433 static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t
* subpgm
,
1434 struct symt_block
* parent_block
,
1435 const dwarf2_debug_info_t
* di
);
1437 static void dwarf2_parse_inlined_subroutine(dwarf2_subprogram_t
* subpgm
,
1438 struct symt_block
* parent_block
,
1439 const dwarf2_debug_info_t
* di
)
1441 struct symt_block
* block
;
1442 struct attribute low_pc
;
1443 struct attribute high_pc
;
1445 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1447 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_low_pc
, &low_pc
)) low_pc
.u
.uvalue
= 0;
1448 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_high_pc
, &high_pc
)) high_pc
.u
.uvalue
= 0;
1450 block
= symt_open_func_block(subpgm
->ctx
->module
, subpgm
->func
, parent_block
,
1451 subpgm
->ctx
->load_offset
+ low_pc
.u
.uvalue
- subpgm
->func
->address
,
1452 high_pc
.u
.uvalue
- low_pc
.u
.uvalue
);
1454 if (di
->abbrev
->have_child
) /** any interest to not have child ? */
1456 dwarf2_debug_info_t
* child
;
1459 for (i
=0; i
<vector_length(&di
->children
); i
++)
1461 child
= *(dwarf2_debug_info_t
**)vector_at(&di
->children
, i
);
1463 switch (child
->abbrev
->tag
)
1465 case DW_TAG_formal_parameter
:
1466 case DW_TAG_variable
:
1467 dwarf2_parse_variable(subpgm
, block
, child
);
1469 case DW_TAG_lexical_block
:
1470 dwarf2_parse_subprogram_block(subpgm
, block
, child
);
1472 case DW_TAG_inlined_subroutine
:
1473 dwarf2_parse_inlined_subroutine(subpgm
, block
, child
);
1476 dwarf2_parse_subprogram_label(subpgm
, child
);
1479 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1480 child
->abbrev
->tag
, dwarf2_debug_ctx(subpgm
->ctx
),
1481 dwarf2_debug_di(di
));
1485 symt_close_func_block(subpgm
->ctx
->module
, subpgm
->func
, block
, 0);
1488 static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t
* subpgm
,
1489 struct symt_block
* parent_block
,
1490 const dwarf2_debug_info_t
* di
)
1492 struct symt_block
* block
;
1493 struct attribute low_pc
;
1494 struct attribute high_pc
;
1496 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1498 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_low_pc
, &low_pc
))
1499 low_pc
.u
.uvalue
= 0;
1500 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_high_pc
, &high_pc
))
1501 high_pc
.u
.uvalue
= 0;
1503 block
= symt_open_func_block(subpgm
->ctx
->module
, subpgm
->func
, parent_block
,
1504 subpgm
->ctx
->load_offset
+ low_pc
.u
.uvalue
- subpgm
->func
->address
,
1505 high_pc
.u
.uvalue
- low_pc
.u
.uvalue
);
1507 if (di
->abbrev
->have_child
) /** any interest to not have child ? */
1509 dwarf2_debug_info_t
* child
;
1512 for (i
=0; i
<vector_length(&di
->children
); i
++)
1514 child
= *(dwarf2_debug_info_t
**)vector_at(&di
->children
, i
);
1516 switch (child
->abbrev
->tag
)
1518 case DW_TAG_inlined_subroutine
:
1519 dwarf2_parse_inlined_subroutine(subpgm
, block
, child
);
1521 case DW_TAG_variable
:
1522 dwarf2_parse_variable(subpgm
, block
, child
);
1524 case DW_TAG_lexical_block
:
1525 dwarf2_parse_subprogram_block(subpgm
, block
, child
);
1527 case DW_TAG_subprogram
:
1528 /* FIXME: likely a declaration (to be checked)
1532 case DW_TAG_formal_parameter
:
1533 /* FIXME: likely elements for exception handling (GCC flavor)
1538 dwarf2_parse_subprogram_label(subpgm
, child
);
1540 case DW_TAG_class_type
:
1541 case DW_TAG_structure_type
:
1542 case DW_TAG_union_type
:
1543 case DW_TAG_enumeration_type
:
1544 case DW_TAG_typedef
:
1545 /* the type referred to will be loaded when we need it, so skip it */
1548 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1549 child
->abbrev
->tag
, dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1554 symt_close_func_block(subpgm
->ctx
->module
, subpgm
->func
, block
, 0);
1557 static struct symt
* dwarf2_parse_subprogram(dwarf2_parse_context_t
* ctx
,
1558 dwarf2_debug_info_t
* di
,
1559 struct symt_compiland
* compiland
)
1561 struct attribute name
;
1562 struct attribute low_pc
;
1563 struct attribute high_pc
;
1564 struct attribute is_decl
;
1565 struct attribute inline_flags
;
1566 struct symt
* ret_type
;
1567 struct symt_function_signature
* sig_type
;
1568 dwarf2_subprogram_t subpgm
;
1570 if (di
->symt
) return di
->symt
;
1572 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1574 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) name
.u
.string
= NULL
;
1575 /* if it's an abstract representation of an inline function, there should be
1576 * a concrete object that we'll handle
1578 if (dwarf2_find_attribute(ctx
, di
, DW_AT_inline
, &inline_flags
))
1580 TRACE("Function %s declared as inlined (%ld)... skipping\n",
1581 name
.u
.string
? name
.u
.string
: "(null)", inline_flags
.u
.uvalue
);
1585 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_low_pc
, &low_pc
)) low_pc
.u
.uvalue
= 0;
1586 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_high_pc
, &high_pc
)) high_pc
.u
.uvalue
= 0;
1587 /* As functions (defined as inline assembly) get debug info with dwarf
1588 * (not the case for stabs), we just drop Wine's thunks here...
1589 * Actual thunks will be created in elf_module from the symbol table
1591 if (elf_is_in_thunk_area(ctx
->load_offset
+ low_pc
.u
.uvalue
,
1594 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_declaration
, &is_decl
))
1595 is_decl
.u
.uvalue
= 0;
1597 if (!(ret_type
= dwarf2_lookup_type(ctx
, di
)))
1599 ret_type
= ctx
->symt_cache
[sc_void
];
1603 /* FIXME: assuming C source code */
1604 sig_type
= symt_new_function_signature(ctx
->module
, ret_type
, CV_CALL_FAR_C
);
1605 if (!is_decl
.u
.uvalue
)
1607 subpgm
.func
= symt_new_function(ctx
->module
, compiland
, name
.u
.string
,
1608 ctx
->load_offset
+ low_pc
.u
.uvalue
,
1609 high_pc
.u
.uvalue
- low_pc
.u
.uvalue
,
1611 di
->symt
= &subpgm
.func
->symt
;
1613 else subpgm
.func
= NULL
;
1616 subpgm
.compiland
= compiland
;
1617 if (!dwarf2_compute_location_attr(ctx
, di
, DW_AT_frame_base
,
1618 &subpgm
.frame
, NULL
))
1621 subpgm
.frame
.kind
= loc_regrel
;
1622 subpgm
.frame
.reg
= 0;
1623 subpgm
.frame
.offset
= 0;
1625 subpgm
.non_computed_variable
= FALSE
;
1627 if (di
->abbrev
->have_child
) /** any interest to not have child ? */
1629 dwarf2_debug_info_t
* child
;
1632 for (i
=0; i
<vector_length(&di
->children
); i
++)
1634 child
= *(dwarf2_debug_info_t
**)vector_at(&di
->children
, i
);
1636 switch (child
->abbrev
->tag
)
1638 case DW_TAG_variable
:
1639 case DW_TAG_formal_parameter
:
1640 dwarf2_parse_variable(&subpgm
, NULL
, child
);
1642 case DW_TAG_lexical_block
:
1643 dwarf2_parse_subprogram_block(&subpgm
, NULL
, child
);
1645 case DW_TAG_inlined_subroutine
:
1646 dwarf2_parse_inlined_subroutine(&subpgm
, NULL
, child
);
1648 case DW_TAG_subprogram
:
1649 /* FIXME: likely a declaration (to be checked)
1654 dwarf2_parse_subprogram_label(&subpgm
, child
);
1656 case DW_TAG_class_type
:
1657 case DW_TAG_structure_type
:
1658 case DW_TAG_union_type
:
1659 case DW_TAG_enumeration_type
:
1660 case DW_TAG_typedef
:
1661 /* the type referred to will be loaded when we need it, so skip it */
1663 case DW_TAG_unspecified_parameters
:
1664 /* FIXME: no support in dbghelp's internals so far */
1667 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1668 child
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1673 if (subpgm
.non_computed_variable
|| subpgm
.frame
.kind
>= loc_user
)
1675 symt_add_function_point(ctx
->module
, subpgm
.func
, SymTagCustom
,
1676 &subpgm
.frame
, NULL
);
1678 symt_normalize_function(subpgm
.ctx
->module
, subpgm
.func
);
1683 static struct symt
* dwarf2_parse_subroutine_type(dwarf2_parse_context_t
* ctx
,
1684 dwarf2_debug_info_t
* di
)
1686 struct symt
* ret_type
;
1687 struct symt_function_signature
* sig_type
;
1689 if (di
->symt
) return di
->symt
;
1691 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1693 if (!(ret_type
= dwarf2_lookup_type(ctx
, di
)))
1695 ret_type
= ctx
->symt_cache
[sc_void
];
1699 /* FIXME: assuming C source code */
1700 sig_type
= symt_new_function_signature(ctx
->module
, ret_type
, CV_CALL_FAR_C
);
1702 if (di
->abbrev
->have_child
) /** any interest to not have child ? */
1704 dwarf2_debug_info_t
* child
;
1707 for (i
=0; i
<vector_length(&di
->children
); i
++)
1709 child
= *(dwarf2_debug_info_t
**)vector_at(&di
->children
, i
);
1711 switch (child
->abbrev
->tag
)
1713 case DW_TAG_formal_parameter
:
1714 symt_add_function_signature_parameter(ctx
->module
, sig_type
,
1715 dwarf2_lookup_type(ctx
, child
));
1717 case DW_TAG_unspecified_parameters
:
1718 WARN("Unsupported unspecified parameters\n");
1724 return di
->symt
= &sig_type
->symt
;
1727 static void dwarf2_load_one_entry(dwarf2_parse_context_t
* ctx
,
1728 dwarf2_debug_info_t
* di
,
1729 struct symt_compiland
* compiland
)
1731 switch (di
->abbrev
->tag
)
1733 case DW_TAG_typedef
:
1734 dwarf2_parse_typedef(ctx
, di
);
1736 case DW_TAG_base_type
:
1737 dwarf2_parse_base_type(ctx
, di
);
1739 case DW_TAG_pointer_type
:
1740 dwarf2_parse_pointer_type(ctx
, di
);
1742 case DW_TAG_class_type
:
1743 dwarf2_parse_udt_type(ctx
, di
, UdtClass
);
1745 case DW_TAG_structure_type
:
1746 dwarf2_parse_udt_type(ctx
, di
, UdtStruct
);
1748 case DW_TAG_union_type
:
1749 dwarf2_parse_udt_type(ctx
, di
, UdtUnion
);
1751 case DW_TAG_array_type
:
1752 dwarf2_parse_array_type(ctx
, di
);
1754 case DW_TAG_const_type
:
1755 dwarf2_parse_const_type(ctx
, di
);
1757 case DW_TAG_volatile_type
:
1758 dwarf2_parse_volatile_type(ctx
, di
);
1760 case DW_TAG_reference_type
:
1761 dwarf2_parse_reference_type(ctx
, di
);
1763 case DW_TAG_enumeration_type
:
1764 dwarf2_parse_enumeration_type(ctx
, di
);
1766 case DW_TAG_subprogram
:
1767 dwarf2_parse_subprogram(ctx
, di
, compiland
);
1769 case DW_TAG_subroutine_type
:
1770 dwarf2_parse_subroutine_type(ctx
, di
);
1772 case DW_TAG_variable
:
1774 dwarf2_subprogram_t subpgm
;
1777 subpgm
.compiland
= compiland
;
1779 subpgm
.frame
.kind
= loc_absolute
;
1780 subpgm
.frame
.offset
= 0;
1781 subpgm
.frame
.reg
= Wine_DW_no_register
;
1782 dwarf2_parse_variable(&subpgm
, NULL
, di
);
1786 FIXME("Unhandled Tag type 0x%lx at %s, for %lu\n",
1787 di
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), di
->abbrev
->entry_code
);
1791 static void dwarf2_set_line_number(struct module
* module
, unsigned long address
,
1792 const struct vector
* v
, unsigned file
, unsigned line
)
1794 struct symt_function
* func
;
1795 struct symt_ht
* symt
;
1798 if (!file
|| !(psrc
= vector_at(v
, file
- 1))) return;
1800 TRACE("%s %lx %s %u\n",
1801 debugstr_w(module
->module
.ModuleName
), address
, source_get(module
, *psrc
), line
);
1802 if (!(symt
= symt_find_nearest(module
, address
)) ||
1803 symt
->symt
.tag
!= SymTagFunction
) return;
1804 func
= (struct symt_function
*)symt
;
1805 symt_add_func_line(module
, func
, *psrc
, line
, address
- func
->address
);
1808 static BOOL
dwarf2_parse_line_numbers(const dwarf2_section_t
* sections
,
1809 dwarf2_parse_context_t
* ctx
,
1810 const char* compile_dir
,
1811 unsigned long offset
)
1813 dwarf2_traverse_context_t traverse
;
1814 unsigned long length
;
1815 unsigned version
, header_len
, insn_size
, default_stmt
;
1816 unsigned line_range
, opcode_base
;
1818 const unsigned char* opcode_len
;
1820 struct vector files
;
1823 /* section with line numbers stripped */
1824 if (sections
[section_line
].address
== ELF_NO_MAP
)
1827 traverse
.data
= sections
[section_line
].address
+ offset
;
1828 traverse
.start_data
= traverse
.data
;
1829 traverse
.end_data
= traverse
.data
+ 4;
1830 traverse
.word_size
= ctx
->word_size
;
1832 length
= dwarf2_parse_u4(&traverse
);
1833 traverse
.end_data
= traverse
.start_data
+ length
;
1835 version
= dwarf2_parse_u2(&traverse
);
1836 header_len
= dwarf2_parse_u4(&traverse
);
1837 insn_size
= dwarf2_parse_byte(&traverse
);
1838 default_stmt
= dwarf2_parse_byte(&traverse
);
1839 line_base
= (signed char)dwarf2_parse_byte(&traverse
);
1840 line_range
= dwarf2_parse_byte(&traverse
);
1841 opcode_base
= dwarf2_parse_byte(&traverse
);
1843 opcode_len
= traverse
.data
;
1844 traverse
.data
+= opcode_base
- 1;
1846 vector_init(&dirs
, sizeof(const char*), 4);
1847 p
= vector_add(&dirs
, &ctx
->pool
);
1848 *p
= compile_dir
? compile_dir
: ".";
1849 while (*traverse
.data
)
1851 const char* rel
= (const char*)traverse
.data
;
1852 unsigned rellen
= strlen(rel
);
1853 TRACE("Got include %s\n", rel
);
1854 traverse
.data
+= rellen
+ 1;
1855 p
= vector_add(&dirs
, &ctx
->pool
);
1857 if (*rel
== '/' || !compile_dir
)
1861 /* include directory relative to compile directory */
1862 unsigned baselen
= strlen(compile_dir
);
1863 char* tmp
= pool_alloc(&ctx
->pool
, baselen
+ 1 + rellen
+ 1);
1864 strcpy(tmp
, compile_dir
);
1865 if (tmp
[baselen
- 1] != '/') tmp
[baselen
++] = '/';
1866 strcpy(&tmp
[baselen
], rel
);
1873 vector_init(&files
, sizeof(unsigned), 16);
1874 while (*traverse
.data
)
1876 unsigned int dir_index
, mod_time
, length
;
1881 name
= (const char*)traverse
.data
;
1882 traverse
.data
+= strlen(name
) + 1;
1883 dir_index
= dwarf2_leb128_as_unsigned(&traverse
);
1884 mod_time
= dwarf2_leb128_as_unsigned(&traverse
);
1885 length
= dwarf2_leb128_as_unsigned(&traverse
);
1886 dir
= *(const char**)vector_at(&dirs
, dir_index
);
1887 TRACE("Got file %s/%s (%u,%u)\n", dir
, name
, mod_time
, length
);
1888 psrc
= vector_add(&files
, &ctx
->pool
);
1889 *psrc
= source_new(ctx
->module
, dir
, name
);
1893 while (traverse
.data
< traverse
.end_data
)
1895 unsigned long address
= 0;
1898 unsigned is_stmt
= default_stmt
;
1899 BOOL basic_block
= FALSE
, end_sequence
= FALSE
;
1900 unsigned opcode
, extopcode
, i
;
1902 while (!end_sequence
)
1904 opcode
= dwarf2_parse_byte(&traverse
);
1905 TRACE("Got opcode %x\n", opcode
);
1907 if (opcode
>= opcode_base
)
1909 unsigned delta
= opcode
- opcode_base
;
1911 address
+= (delta
/ line_range
) * insn_size
;
1912 line
+= line_base
+ (delta
% line_range
);
1914 dwarf2_set_line_number(ctx
->module
, address
, &files
, file
, line
);
1921 basic_block
= FALSE
;
1922 dwarf2_set_line_number(ctx
->module
, address
, &files
, file
, line
);
1924 case DW_LNS_advance_pc
:
1925 address
+= insn_size
* dwarf2_leb128_as_unsigned(&traverse
);
1927 case DW_LNS_advance_line
:
1928 line
+= dwarf2_leb128_as_signed(&traverse
);
1930 case DW_LNS_set_file
:
1931 file
= dwarf2_leb128_as_unsigned(&traverse
);
1933 case DW_LNS_set_column
:
1934 dwarf2_leb128_as_unsigned(&traverse
);
1936 case DW_LNS_negate_stmt
:
1939 case DW_LNS_set_basic_block
:
1942 case DW_LNS_const_add_pc
:
1943 address
+= ((255 - opcode_base
) / line_range
) * insn_size
;
1945 case DW_LNS_fixed_advance_pc
:
1946 address
+= dwarf2_parse_u2(&traverse
);
1948 case DW_LNS_extended_op
:
1949 dwarf2_leb128_as_unsigned(&traverse
);
1950 extopcode
= dwarf2_parse_byte(&traverse
);
1953 case DW_LNE_end_sequence
:
1954 dwarf2_set_line_number(ctx
->module
, address
, &files
, file
, line
);
1955 end_sequence
= TRUE
;
1957 case DW_LNE_set_address
:
1958 address
= ctx
->load_offset
+ dwarf2_parse_addr(&traverse
);
1960 case DW_LNE_define_file
:
1961 FIXME("not handled %s\n", traverse
.data
);
1962 traverse
.data
+= strlen((const char *)traverse
.data
) + 1;
1963 dwarf2_leb128_as_unsigned(&traverse
);
1964 dwarf2_leb128_as_unsigned(&traverse
);
1965 dwarf2_leb128_as_unsigned(&traverse
);
1968 FIXME("Unsupported extended opcode %x\n", extopcode
);
1973 WARN("Unsupported opcode %x\n", opcode
);
1974 for (i
= 0; i
< opcode_len
[opcode
]; i
++)
1975 dwarf2_leb128_as_unsigned(&traverse
);
1984 static BOOL
dwarf2_parse_compilation_unit(const dwarf2_section_t
* sections
,
1985 struct module
* module
,
1986 const struct elf_thunk_area
* thunks
,
1987 dwarf2_traverse_context_t
* mod_ctx
,
1988 unsigned long load_offset
)
1990 dwarf2_parse_context_t ctx
;
1991 dwarf2_traverse_context_t abbrev_ctx
;
1992 dwarf2_debug_info_t
* di
;
1993 dwarf2_traverse_context_t cu_ctx
;
1994 const unsigned char* comp_unit_start
= mod_ctx
->data
;
1995 unsigned long cu_length
;
1996 unsigned short cu_version
;
1997 unsigned long cu_abbrev_offset
;
2000 cu_length
= dwarf2_parse_u4(mod_ctx
);
2001 cu_ctx
.data
= cu_ctx
.start_data
= mod_ctx
->data
;
2002 cu_ctx
.end_data
= mod_ctx
->data
+ cu_length
;
2003 mod_ctx
->data
+= cu_length
;
2004 cu_version
= dwarf2_parse_u2(&cu_ctx
);
2005 cu_abbrev_offset
= dwarf2_parse_u4(&cu_ctx
);
2006 cu_ctx
.word_size
= dwarf2_parse_byte(&cu_ctx
);
2008 TRACE("Compilation Unit Header found at 0x%x:\n",
2009 comp_unit_start
- sections
[section_debug
].address
);
2010 TRACE("- length: %lu\n", cu_length
);
2011 TRACE("- version: %u\n", cu_version
);
2012 TRACE("- abbrev_offset: %lu\n", cu_abbrev_offset
);
2013 TRACE("- word_size: %u\n", cu_ctx
.word_size
);
2015 if (cu_version
!= 2)
2017 WARN("%u DWARF version unsupported. Wine dbghelp only support DWARF 2.\n",
2022 pool_init(&ctx
.pool
, 65536);
2023 ctx
.sections
= sections
;
2024 ctx
.section
= section_debug
;
2025 ctx
.module
= module
;
2026 ctx
.word_size
= cu_ctx
.word_size
;
2027 ctx
.thunks
= thunks
;
2028 ctx
.load_offset
= load_offset
;
2029 ctx
.ref_offset
= comp_unit_start
- sections
[section_debug
].address
;
2030 memset(ctx
.symt_cache
, 0, sizeof(ctx
.symt_cache
));
2031 ctx
.symt_cache
[sc_void
] = &symt_new_basic(module
, btVoid
, "void", 0)->symt
;
2033 abbrev_ctx
.start_data
= sections
[section_abbrev
].address
+ cu_abbrev_offset
;
2034 abbrev_ctx
.data
= abbrev_ctx
.start_data
;
2035 abbrev_ctx
.end_data
= sections
[section_abbrev
].address
+ sections
[section_abbrev
].size
;
2036 abbrev_ctx
.word_size
= cu_ctx
.word_size
;
2037 dwarf2_parse_abbrev_set(&abbrev_ctx
, &ctx
.abbrev_table
, &ctx
.pool
);
2039 sparse_array_init(&ctx
.debug_info_table
, sizeof(dwarf2_debug_info_t
), 128);
2040 dwarf2_read_one_debug_info(&ctx
, &cu_ctx
, &di
);
2042 if (di
->abbrev
->tag
== DW_TAG_compile_unit
)
2044 struct attribute name
;
2045 dwarf2_debug_info_t
** pdi
= NULL
;
2046 struct attribute stmt_list
, low_pc
;
2047 struct attribute comp_dir
;
2049 if (!dwarf2_find_attribute(&ctx
, di
, DW_AT_name
, &name
))
2050 name
.u
.string
= NULL
;
2052 /* get working directory of current compilation unit */
2053 if (!dwarf2_find_attribute(&ctx
, di
, DW_AT_comp_dir
, &comp_dir
))
2054 comp_dir
.u
.string
= NULL
;
2056 if (!dwarf2_find_attribute(&ctx
, di
, DW_AT_low_pc
, &low_pc
))
2057 low_pc
.u
.uvalue
= 0;
2058 di
->symt
= &symt_new_compiland(module
,
2059 ctx
.load_offset
+ low_pc
.u
.uvalue
,
2060 source_new(module
, comp_dir
.u
.string
, name
.u
.string
))->symt
;
2062 if (di
->abbrev
->have_child
)
2065 for (i
=0; i
<vector_length(&di
->children
); i
++)
2067 pdi
= vector_at(&di
->children
, i
);
2068 dwarf2_load_one_entry(&ctx
, *pdi
, (struct symt_compiland
*)di
->symt
);
2071 if (dwarf2_find_attribute(&ctx
, di
, DW_AT_stmt_list
, &stmt_list
))
2073 if (dwarf2_parse_line_numbers(sections
, &ctx
, comp_dir
.u
.string
, stmt_list
.u
.uvalue
))
2074 module
->module
.LineNumbers
= TRUE
;
2078 else FIXME("Should have a compilation unit here\n");
2079 pool_destroy(&ctx
.pool
);
2083 static BOOL
dwarf2_lookup_loclist(const struct module
* module
, const BYTE
* start
,
2085 dwarf2_traverse_context_t
* lctx
)
2088 const BYTE
* ptr
= start
;
2091 while (ptr
< module
->dwarf2_info
->debug_loc
.address
+ module
->dwarf2_info
->debug_loc
.size
)
2093 beg
= dwarf2_get_u4(ptr
); ptr
+= 4;
2094 end
= dwarf2_get_u4(ptr
); ptr
+= 4;
2095 if (!beg
&& !end
) break;
2096 len
= dwarf2_get_u2(ptr
); ptr
+= 2;
2098 if (beg
<= ip
&& ip
< end
)
2101 lctx
->end_data
= ptr
+ len
;
2102 lctx
->word_size
= 4; /* FIXME word size !!! */
2107 WARN("Couldn't find ip in location list\n");
2111 static enum location_error
loc_compute_frame(struct process
* pcs
,
2112 const struct module
* module
,
2113 const struct symt_function
* func
,
2114 DWORD ip
, struct location
* frame
)
2116 struct symt
** psym
= NULL
;
2117 struct location
* pframe
;
2118 dwarf2_traverse_context_t lctx
;
2119 enum location_error err
;
2122 for (i
=0; i
<vector_length(&func
->vchildren
); i
++)
2124 psym
= vector_at(&func
->vchildren
, i
);
2125 if ((*psym
)->tag
== SymTagCustom
)
2127 pframe
= &((struct symt_hierarchy_point
*)*psym
)->loc
;
2129 /* First, recompute the frame information, if needed */
2130 switch (pframe
->kind
)
2136 case loc_dwarf2_location_list
:
2137 WARN("Searching loclist for %s\n", func
->hash_elt
.name
);
2138 if (!dwarf2_lookup_loclist(module
,
2139 module
->dwarf2_info
->debug_loc
.address
+ pframe
->offset
,
2141 return loc_err_out_of_scope
;
2142 if ((err
= compute_location(&lctx
, frame
, pcs
->handle
, NULL
)) < 0) return err
;
2143 if (frame
->kind
>= loc_user
)
2145 WARN("Couldn't compute runtime frame location\n");
2146 return loc_err_too_complex
;
2150 WARN("Unsupported frame kind %d\n", pframe
->kind
);
2151 return loc_err_internal
;
2156 WARN("Couldn't find Custom function point, whilst location list offset is searched\n");
2157 return loc_err_internal
;
2160 static void dwarf2_location_compute(struct process
* pcs
,
2161 const struct module
* module
,
2162 const struct symt_function
* func
,
2163 struct location
* loc
)
2165 struct location frame
;
2168 dwarf2_traverse_context_t lctx
;
2170 if (!func
->container
|| func
->container
->tag
!= SymTagCompiland
)
2172 WARN("We'd expect function %s's container to exist and be a compiland\n", func
->hash_elt
.name
);
2173 err
= loc_err_internal
;
2177 /* instruction pointer relative to compiland's start */
2178 ip
= pcs
->ctx_frame
.InstructionOffset
- ((struct symt_compiland
*)func
->container
)->address
;
2180 if ((err
= loc_compute_frame(pcs
, module
, func
, ip
, &frame
)) == 0)
2184 case loc_dwarf2_location_list
:
2185 /* Then, if the variable has a location list, find it !! */
2186 if (dwarf2_lookup_loclist(module
,
2187 module
->dwarf2_info
->debug_loc
.address
+ loc
->offset
,
2190 err
= loc_err_out_of_scope
;
2192 case loc_dwarf2_block
:
2193 /* or if we have a copy of an existing block, get ready for it */
2195 unsigned* ptr
= (unsigned*)loc
->offset
;
2197 lctx
.data
= (const BYTE
*)(ptr
+ 1);
2198 lctx
.end_data
= lctx
.data
+ *ptr
;
2199 lctx
.word_size
= 4; /* FIXME !! */
2202 /* now get the variable */
2203 err
= compute_location(&lctx
, loc
, pcs
->handle
, &frame
);
2210 WARN("Unsupported local kind %d\n", loc
->kind
);
2211 err
= loc_err_internal
;
2217 loc
->kind
= loc_register
;
2222 BOOL
dwarf2_parse(struct module
* module
, unsigned long load_offset
,
2223 const struct elf_thunk_area
* thunks
,
2224 const unsigned char* debug
, unsigned int debug_size
,
2225 const unsigned char* abbrev
, unsigned int abbrev_size
,
2226 const unsigned char* str
, unsigned int str_size
,
2227 const unsigned char* line
, unsigned int line_size
,
2228 const unsigned char* loclist
, unsigned int loclist_size
)
2230 dwarf2_section_t section
[section_max
];
2232 dwarf2_traverse_context_t mod_ctx
;
2234 mod_ctx
.start_data
= mod_ctx
.data
= debug
;
2235 mod_ctx
.end_data
= debug
+ debug_size
;
2237 module
->loc_compute
= dwarf2_location_compute
;
2239 section
[section_debug
].address
= debug
;
2240 section
[section_debug
].size
= debug_size
;
2241 section
[section_abbrev
].address
= abbrev
;
2242 section
[section_abbrev
].size
= abbrev_size
;
2243 section
[section_string
].address
= str
;
2244 section
[section_string
].size
= str_size
;
2245 section
[section_line
].address
= line
;
2246 section
[section_line
].size
= line_size
;
2250 /* initialize the dwarf2 specific info block for this module.
2251 * As we'll need later on the .debug_loc section content, we copy it in
2252 * the module structure for later reuse
2254 module
->dwarf2_info
= HeapAlloc(GetProcessHeap(), 0, sizeof(*module
->dwarf2_info
) + loclist_size
);
2255 if (!module
->dwarf2_info
) return FALSE
;
2256 ptr
= (unsigned char*)(module
->dwarf2_info
+ 1);
2257 memcpy(ptr
, loclist
, loclist_size
);
2258 module
->dwarf2_info
->debug_loc
.address
= ptr
;
2259 module
->dwarf2_info
->debug_loc
.size
= loclist_size
;
2262 while (mod_ctx
.data
< mod_ctx
.end_data
)
2264 dwarf2_parse_compilation_unit(section
, module
, thunks
, &mod_ctx
, load_offset
);
2266 module
->module
.SymType
= SymDia
;
2267 module
->module
.CVSig
= 'D' | ('W' << 8) | ('A' << 16) | ('R' << 24);
2268 /* FIXME: we could have a finer grain here */
2269 module
->module
.GlobalSymbols
= TRUE
;
2270 module
->module
.TypeInfo
= TRUE
;
2271 module
->module
.SourceIndexed
= TRUE
;
2272 module
->module
.Publics
= TRUE
;