2 * File dwarf.c - read dwarf2 information from the ELF modules
4 * Copyright (C) 2005, Raphael Junqueira
5 * Copyright (C) 2006-2011, Eric Pouech
6 * Copyright (C) 2010, Alexandre Julliard
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #define NONAMELESSUNION
27 #include <sys/types.h>
29 #ifdef HAVE_SYS_STAT_H
30 # include <sys/stat.h>
32 #ifdef HAVE_SYS_MMAN_H
56 #include "dbghelp_private.h"
57 #include "image_private.h"
59 #include "wine/debug.h"
61 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_dwarf
);
65 * o unspecified parameters
67 * o Debug{Start|End}Point
70 * o proper types loading (nesting)
74 static void dump(const void* ptr
, unsigned len
)
78 static const char hexof
[] = "0123456789abcdef";
81 for (i
= 0; i
< len
; i
+= 16)
83 sprintf(msg
, "%08x: ", i
);
84 memset(msg
+ 10, ' ', 3 * 16 + 1 + 16);
85 for (j
= 0; j
< min(16, len
- i
); j
++)
87 msg
[10 + 3 * j
+ 0] = hexof
[x
[i
+ j
] >> 4];
88 msg
[10 + 3 * j
+ 1] = hexof
[x
[i
+ j
] & 15];
89 msg
[10 + 3 * j
+ 2] = ' ';
90 msg
[10 + 3 * 16 + 1 + j
] = (x
[i
+ j
] >= 0x20 && x
[i
+ j
] < 0x7f) ?
93 msg
[10 + 3 * 16] = ' ';
94 msg
[10 + 3 * 16 + 1 + 16] = '\0';
103 * http://www.eagercon.com/dwarf/dwarf3std.htm
104 * http://www.eagercon.com/dwarf/dwarf-2.0.0.pdf
106 * dwarf2.h: http://www.hakpetzna.com/b/binutils/dwarf2_8h-source.html
108 * example of projects who do dwarf2 parsing:
109 * http://www.x86-64.org/cgi-bin/cvsweb.cgi/binutils.dead/binutils/readelf.c?rev=1.1.1.2
110 * http://elis.ugent.be/diota/log/ltrace_elf.c
118 typedef struct dwarf2_abbrev_entry_attr_s
120 unsigned long attribute
;
122 struct dwarf2_abbrev_entry_attr_s
* next
;
123 } dwarf2_abbrev_entry_attr_t
;
125 typedef struct dwarf2_abbrev_entry_s
127 unsigned long entry_code
;
129 unsigned char have_child
;
131 dwarf2_abbrev_entry_attr_t
* attrs
;
132 } dwarf2_abbrev_entry_t
;
137 const unsigned char* ptr
;
143 enum {attr_direct
, attr_abstract_origin
, attr_specification
} gotten_from
;
146 unsigned long uvalue
;
150 struct dwarf2_block block
;
154 typedef struct dwarf2_debug_info_s
156 const dwarf2_abbrev_entry_t
*abbrev
;
158 const unsigned char** data
;
159 struct vector children
;
160 struct dwarf2_debug_info_s
* parent
;
161 } dwarf2_debug_info_t
;
163 typedef struct dwarf2_section_s
166 const unsigned char* address
;
171 enum dwarf2_sections
{section_debug
, section_string
, section_abbrev
, section_line
, section_ranges
, section_max
};
173 typedef struct dwarf2_traverse_context_s
175 const unsigned char* data
;
176 const unsigned char* end_data
;
177 unsigned char word_size
;
178 } dwarf2_traverse_context_t
;
180 /* symt_cache indexes */
187 typedef struct dwarf2_parse_context_s
189 const dwarf2_section_t
* sections
;
192 struct module
* module
;
193 struct symt_compiland
* compiland
;
194 const struct elf_thunk_area
*thunks
;
195 struct sparse_array abbrev_table
;
196 struct sparse_array debug_info_table
;
197 unsigned long load_offset
;
198 unsigned long ref_offset
;
199 struct symt
* symt_cache
[sc_num
]; /* void, int1, int2, int4 */
201 } dwarf2_parse_context_t
;
203 /* stored in the dbghelp's module internal structure for later reuse */
204 struct dwarf2_module_info_s
206 dwarf2_section_t debug_loc
;
207 dwarf2_section_t debug_frame
;
208 dwarf2_section_t eh_frame
;
209 unsigned char word_size
;
212 #define loc_dwarf2_location_list (loc_user + 0)
213 #define loc_dwarf2_block (loc_user + 1)
215 /* forward declarations */
216 static struct symt
* dwarf2_parse_enumeration_type(dwarf2_parse_context_t
* ctx
, dwarf2_debug_info_t
* entry
);
218 static unsigned char dwarf2_get_byte(const unsigned char* ptr
)
223 static unsigned char dwarf2_parse_byte(dwarf2_traverse_context_t
* ctx
)
225 unsigned char uvalue
= dwarf2_get_byte(ctx
->data
);
230 static unsigned short dwarf2_get_u2(const unsigned char* ptr
)
232 return *(const UINT16
*)ptr
;
235 static unsigned short dwarf2_parse_u2(dwarf2_traverse_context_t
* ctx
)
237 unsigned short uvalue
= dwarf2_get_u2(ctx
->data
);
242 static unsigned long dwarf2_get_u4(const unsigned char* ptr
)
244 return *(const UINT32
*)ptr
;
247 static unsigned long dwarf2_parse_u4(dwarf2_traverse_context_t
* ctx
)
249 unsigned long uvalue
= dwarf2_get_u4(ctx
->data
);
254 static DWORD64
dwarf2_get_u8(const unsigned char* ptr
)
256 return *(const UINT64
*)ptr
;
259 static DWORD64
dwarf2_parse_u8(dwarf2_traverse_context_t
* ctx
)
261 DWORD64 uvalue
= dwarf2_get_u8(ctx
->data
);
266 static unsigned long dwarf2_get_leb128_as_unsigned(const unsigned char* ptr
, const unsigned char** end
)
268 unsigned long ret
= 0;
274 byte
= dwarf2_get_byte(ptr
++);
275 ret
|= (byte
& 0x7f) << shift
;
277 } while (byte
& 0x80);
283 static unsigned long dwarf2_leb128_as_unsigned(dwarf2_traverse_context_t
* ctx
)
289 ret
= dwarf2_get_leb128_as_unsigned(ctx
->data
, &ctx
->data
);
294 static long dwarf2_get_leb128_as_signed(const unsigned char* ptr
, const unsigned char** end
)
299 const unsigned size
= sizeof(int) * 8;
303 byte
= dwarf2_get_byte(ptr
++);
304 ret
|= (byte
& 0x7f) << shift
;
306 } while (byte
& 0x80);
309 /* as spec: sign bit of byte is 2nd high order bit (80x40)
310 * -> 0x80 is used as flag.
312 if ((shift
< size
) && (byte
& 0x40))
314 ret
|= - (1 << shift
);
319 static long dwarf2_leb128_as_signed(dwarf2_traverse_context_t
* ctx
)
325 ret
= dwarf2_get_leb128_as_signed(ctx
->data
, &ctx
->data
);
329 static unsigned dwarf2_leb128_length(const dwarf2_traverse_context_t
* ctx
)
332 for (ret
= 0; ctx
->data
[ret
] & 0x80; ret
++);
336 /******************************************************************
339 * Returns an address.
340 * We assume that in all cases word size from Dwarf matches the size of
341 * addresses in platform where the exec is compiled.
343 static unsigned long dwarf2_get_addr(const unsigned char* ptr
, unsigned word_size
)
350 ret
= dwarf2_get_u4(ptr
);
353 ret
= dwarf2_get_u8(ptr
);
356 FIXME("Unsupported Word Size %u\n", word_size
);
362 static unsigned long dwarf2_parse_addr(dwarf2_traverse_context_t
* ctx
)
364 unsigned long ret
= dwarf2_get_addr(ctx
->data
, ctx
->word_size
);
365 ctx
->data
+= ctx
->word_size
;
369 static const char* dwarf2_debug_traverse_ctx(const dwarf2_traverse_context_t
* ctx
)
371 return wine_dbg_sprintf("ctx(%p)", ctx
->data
);
374 static const char* dwarf2_debug_ctx(const dwarf2_parse_context_t
* ctx
)
376 return wine_dbg_sprintf("ctx(%p,%s)",
377 ctx
, debugstr_w(ctx
->module
->module
.ModuleName
));
380 static const char* dwarf2_debug_di(const dwarf2_debug_info_t
* di
)
382 return wine_dbg_sprintf("debug_info(abbrev:%p,symt:%p)",
383 di
->abbrev
, di
->symt
);
386 static dwarf2_abbrev_entry_t
*
387 dwarf2_abbrev_table_find_entry(const struct sparse_array
* abbrev_table
,
388 unsigned long entry_code
)
390 assert( NULL
!= abbrev_table
);
391 return sparse_array_find(abbrev_table
, entry_code
);
394 static void dwarf2_parse_abbrev_set(dwarf2_traverse_context_t
* abbrev_ctx
,
395 struct sparse_array
* abbrev_table
,
398 unsigned long entry_code
;
399 dwarf2_abbrev_entry_t
* abbrev_entry
;
400 dwarf2_abbrev_entry_attr_t
* new = NULL
;
401 dwarf2_abbrev_entry_attr_t
* last
= NULL
;
402 unsigned long attribute
;
405 assert( NULL
!= abbrev_ctx
);
407 TRACE("%s, end at %p\n",
408 dwarf2_debug_traverse_ctx(abbrev_ctx
), abbrev_ctx
->end_data
);
410 sparse_array_init(abbrev_table
, sizeof(dwarf2_abbrev_entry_t
), 32);
411 while (abbrev_ctx
->data
< abbrev_ctx
->end_data
)
413 TRACE("now at %s\n", dwarf2_debug_traverse_ctx(abbrev_ctx
));
414 entry_code
= dwarf2_leb128_as_unsigned(abbrev_ctx
);
415 TRACE("found entry_code %lu\n", entry_code
);
418 TRACE("NULL entry code at %s\n", dwarf2_debug_traverse_ctx(abbrev_ctx
));
421 abbrev_entry
= sparse_array_add(abbrev_table
, entry_code
, pool
);
422 assert( NULL
!= abbrev_entry
);
424 abbrev_entry
->entry_code
= entry_code
;
425 abbrev_entry
->tag
= dwarf2_leb128_as_unsigned(abbrev_ctx
);
426 abbrev_entry
->have_child
= dwarf2_parse_byte(abbrev_ctx
);
427 abbrev_entry
->attrs
= NULL
;
428 abbrev_entry
->num_attr
= 0;
430 TRACE("table:(%p,#%u) entry_code(%lu) tag(0x%lx) have_child(%u) -> %p\n",
431 abbrev_table
, sparse_array_length(abbrev_table
),
432 entry_code
, abbrev_entry
->tag
, abbrev_entry
->have_child
, abbrev_entry
);
437 attribute
= dwarf2_leb128_as_unsigned(abbrev_ctx
);
438 form
= dwarf2_leb128_as_unsigned(abbrev_ctx
);
439 if (!attribute
) break;
441 new = pool_alloc(pool
, sizeof(dwarf2_abbrev_entry_attr_t
));
444 new->attribute
= attribute
;
447 if (abbrev_entry
->attrs
) last
->next
= new;
448 else abbrev_entry
->attrs
= new;
450 abbrev_entry
->num_attr
++;
453 TRACE("found %u entries\n", sparse_array_length(abbrev_table
));
456 static void dwarf2_swallow_attribute(dwarf2_traverse_context_t
* ctx
,
457 const dwarf2_abbrev_entry_attr_t
* abbrev_attr
)
461 TRACE("(attr:0x%lx,form:0x%lx)\n", abbrev_attr
->attribute
, abbrev_attr
->form
);
463 switch (abbrev_attr
->form
)
465 case DW_FORM_ref_addr
:
466 case DW_FORM_addr
: step
= ctx
->word_size
; break;
469 case DW_FORM_ref1
: step
= 1; break;
471 case DW_FORM_ref2
: step
= 2; break;
474 case DW_FORM_strp
: step
= 4; break;
476 case DW_FORM_ref8
: step
= 8; break;
478 case DW_FORM_ref_udata
:
479 case DW_FORM_udata
: step
= dwarf2_leb128_length(ctx
); break;
480 case DW_FORM_string
: step
= strlen((const char*)ctx
->data
) + 1; break;
481 case DW_FORM_block
: step
= dwarf2_leb128_as_unsigned(ctx
); break;
482 case DW_FORM_block1
: step
= dwarf2_parse_byte(ctx
); break;
483 case DW_FORM_block2
: step
= dwarf2_parse_u2(ctx
); break;
484 case DW_FORM_block4
: step
= dwarf2_parse_u4(ctx
); break;
486 FIXME("Unhandled attribute form %lx\n", abbrev_attr
->form
);
492 static void dwarf2_fill_attr(const dwarf2_parse_context_t
* ctx
,
493 const dwarf2_abbrev_entry_attr_t
* abbrev_attr
,
494 const unsigned char* data
,
495 struct attribute
* attr
)
497 attr
->form
= abbrev_attr
->form
;
500 case DW_FORM_ref_addr
:
502 attr
->u
.uvalue
= dwarf2_get_addr(data
,
503 ctx
->module
->format_info
[DFI_DWARF
]->u
.dwarf2_info
->word_size
);
504 TRACE("addr<0x%lx>\n", attr
->u
.uvalue
);
508 attr
->u
.uvalue
= dwarf2_get_byte(data
);
509 TRACE("flag<0x%lx>\n", attr
->u
.uvalue
);
513 attr
->u
.uvalue
= dwarf2_get_byte(data
);
514 TRACE("data1<%lu>\n", attr
->u
.uvalue
);
518 attr
->u
.uvalue
= dwarf2_get_u2(data
);
519 TRACE("data2<%lu>\n", attr
->u
.uvalue
);
523 attr
->u
.uvalue
= dwarf2_get_u4(data
);
524 TRACE("data4<%lu>\n", attr
->u
.uvalue
);
528 attr
->u
.lluvalue
= dwarf2_get_u8(data
);
529 TRACE("data8<%s>\n", wine_dbgstr_longlong(attr
->u
.uvalue
));
533 attr
->u
.uvalue
= ctx
->ref_offset
+ dwarf2_get_byte(data
);
534 TRACE("ref1<0x%lx>\n", attr
->u
.uvalue
);
538 attr
->u
.uvalue
= ctx
->ref_offset
+ dwarf2_get_u2(data
);
539 TRACE("ref2<0x%lx>\n", attr
->u
.uvalue
);
543 attr
->u
.uvalue
= ctx
->ref_offset
+ dwarf2_get_u4(data
);
544 TRACE("ref4<0x%lx>\n", attr
->u
.uvalue
);
548 FIXME("Unhandled 64-bit support\n");
552 attr
->u
.svalue
= dwarf2_get_leb128_as_signed(data
, NULL
);
555 case DW_FORM_ref_udata
:
556 attr
->u
.uvalue
= dwarf2_get_leb128_as_unsigned(data
, NULL
);
560 attr
->u
.uvalue
= dwarf2_get_leb128_as_unsigned(data
, NULL
);
564 attr
->u
.string
= (const char *)data
;
565 TRACE("string<%s>\n", attr
->u
.string
);
570 unsigned long offset
= dwarf2_get_u4(data
);
571 attr
->u
.string
= (const char*)ctx
->sections
[section_string
].address
+ offset
;
573 TRACE("strp<%s>\n", attr
->u
.string
);
577 attr
->u
.block
.size
= dwarf2_get_leb128_as_unsigned(data
, &attr
->u
.block
.ptr
);
581 attr
->u
.block
.size
= dwarf2_get_byte(data
);
582 attr
->u
.block
.ptr
= data
+ 1;
586 attr
->u
.block
.size
= dwarf2_get_u2(data
);
587 attr
->u
.block
.ptr
= data
+ 2;
591 attr
->u
.block
.size
= dwarf2_get_u4(data
);
592 attr
->u
.block
.ptr
= data
+ 4;
596 FIXME("Unhandled attribute form %lx\n", abbrev_attr
->form
);
601 static BOOL
dwarf2_find_attribute(const dwarf2_parse_context_t
* ctx
,
602 const dwarf2_debug_info_t
* di
,
603 unsigned at
, struct attribute
* attr
)
605 unsigned i
, refidx
= 0;
606 dwarf2_abbrev_entry_attr_t
* abbrev_attr
;
607 dwarf2_abbrev_entry_attr_t
* ref_abbrev_attr
= NULL
;
609 attr
->gotten_from
= attr_direct
;
612 ref_abbrev_attr
= NULL
;
613 for (i
= 0, abbrev_attr
= di
->abbrev
->attrs
; abbrev_attr
; i
++, abbrev_attr
= abbrev_attr
->next
)
615 if (abbrev_attr
->attribute
== at
)
617 dwarf2_fill_attr(ctx
, abbrev_attr
, di
->data
[i
], attr
);
620 if ((abbrev_attr
->attribute
== DW_AT_abstract_origin
||
621 abbrev_attr
->attribute
== DW_AT_specification
) &&
625 FIXME("two references %lx and %lx\n", ref_abbrev_attr
->attribute
, abbrev_attr
->attribute
);
626 ref_abbrev_attr
= abbrev_attr
;
628 attr
->gotten_from
= (abbrev_attr
->attribute
== DW_AT_abstract_origin
) ?
629 attr_abstract_origin
: attr_specification
;
632 /* do we have either an abstract origin or a specification debug entry to look into ? */
633 if (!ref_abbrev_attr
) break;
634 dwarf2_fill_attr(ctx
, ref_abbrev_attr
, di
->data
[refidx
], attr
);
635 if (!(di
= sparse_array_find(&ctx
->debug_info_table
, attr
->u
.uvalue
)))
636 FIXME("Should have found the debug info entry\n");
641 static void dwarf2_load_one_entry(dwarf2_parse_context_t
*, dwarf2_debug_info_t
*);
643 #define Wine_DW_no_register 0x7FFFFFFF
645 static unsigned dwarf2_map_register(int regno
)
647 if (regno
== Wine_DW_no_register
)
649 FIXME("What the heck map reg 0x%x\n",regno
);
652 return dbghelp_current_cpu
->map_dwarf_register(regno
);
655 static enum location_error
656 compute_location(dwarf2_traverse_context_t
* ctx
, struct location
* loc
,
657 HANDLE hproc
, const struct location
* frame
)
659 DWORD_PTR tmp
, stack
[64];
662 BOOL piece_found
= FALSE
;
666 loc
->kind
= loc_absolute
;
667 loc
->reg
= Wine_DW_no_register
;
669 while (ctx
->data
< ctx
->end_data
)
671 op
= dwarf2_parse_byte(ctx
);
673 if (op
>= DW_OP_lit0
&& op
<= DW_OP_lit31
)
674 stack
[++stk
] = op
- DW_OP_lit0
;
675 else if (op
>= DW_OP_reg0
&& op
<= DW_OP_reg31
)
677 /* dbghelp APIs don't know how to cope with this anyway
678 * (for example 'long long' stored in two registers)
679 * FIXME: We should tell winedbg how to deal with it (sigh)
683 DWORD cvreg
= dwarf2_map_register(op
- DW_OP_reg0
);
684 if (loc
->reg
!= Wine_DW_no_register
)
685 FIXME("Only supporting one reg (%s/%d -> %s/%d)\n",
686 dbghelp_current_cpu
->fetch_regname(loc
->reg
), loc
->reg
,
687 dbghelp_current_cpu
->fetch_regname(cvreg
), cvreg
);
690 loc
->kind
= loc_register
;
692 else if (op
>= DW_OP_breg0
&& op
<= DW_OP_breg31
)
694 /* dbghelp APIs don't know how to cope with this anyway
695 * (for example 'long long' stored in two registers)
696 * FIXME: We should tell winedbg how to deal with it (sigh)
700 DWORD cvreg
= dwarf2_map_register(op
- DW_OP_breg0
);
701 if (loc
->reg
!= Wine_DW_no_register
)
702 FIXME("Only supporting one breg (%s/%d -> %s/%d)\n",
703 dbghelp_current_cpu
->fetch_regname(loc
->reg
), loc
->reg
,
704 dbghelp_current_cpu
->fetch_regname(cvreg
), cvreg
);
707 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
);
708 loc
->kind
= loc_regrel
;
712 case DW_OP_nop
: break;
713 case DW_OP_addr
: stack
[++stk
] = dwarf2_parse_addr(ctx
); break;
714 case DW_OP_const1u
: stack
[++stk
] = dwarf2_parse_byte(ctx
); break;
715 case DW_OP_const1s
: stack
[++stk
] = dwarf2_parse_byte(ctx
); break;
716 case DW_OP_const2u
: stack
[++stk
] = dwarf2_parse_u2(ctx
); break;
717 case DW_OP_const2s
: stack
[++stk
] = dwarf2_parse_u2(ctx
); break;
718 case DW_OP_const4u
: stack
[++stk
] = dwarf2_parse_u4(ctx
); break;
719 case DW_OP_const4s
: stack
[++stk
] = dwarf2_parse_u4(ctx
); break;
720 case DW_OP_const8u
: stack
[++stk
] = dwarf2_parse_u8(ctx
); break;
721 case DW_OP_const8s
: stack
[++stk
] = dwarf2_parse_u8(ctx
); break;
722 case DW_OP_constu
: stack
[++stk
] = dwarf2_leb128_as_unsigned(ctx
); break;
723 case DW_OP_consts
: stack
[++stk
] = dwarf2_leb128_as_signed(ctx
); break;
724 case DW_OP_dup
: stack
[stk
+ 1] = stack
[stk
]; stk
++; break;
725 case DW_OP_drop
: stk
--; break;
726 case DW_OP_over
: stack
[stk
+ 1] = stack
[stk
- 1]; stk
++; break;
727 case DW_OP_pick
: stack
[stk
+ 1] = stack
[stk
- dwarf2_parse_byte(ctx
)]; stk
++; break;
728 case DW_OP_swap
: tmp
= stack
[stk
]; stack
[stk
] = stack
[stk
-1]; stack
[stk
-1] = tmp
; break;
729 case DW_OP_rot
: tmp
= stack
[stk
]; stack
[stk
] = stack
[stk
-1]; stack
[stk
-1] = stack
[stk
-2]; stack
[stk
-2] = tmp
; break;
730 case DW_OP_abs
: stack
[stk
] = labs(stack
[stk
]); break;
731 case DW_OP_neg
: stack
[stk
] = -stack
[stk
]; break;
732 case DW_OP_not
: stack
[stk
] = ~stack
[stk
]; break;
733 case DW_OP_and
: stack
[stk
-1] &= stack
[stk
]; stk
--; break;
734 case DW_OP_or
: stack
[stk
-1] |= stack
[stk
]; stk
--; break;
735 case DW_OP_minus
: stack
[stk
-1] -= stack
[stk
]; stk
--; break;
736 case DW_OP_mul
: stack
[stk
-1] *= stack
[stk
]; stk
--; break;
737 case DW_OP_plus
: stack
[stk
-1] += stack
[stk
]; stk
--; break;
738 case DW_OP_xor
: stack
[stk
-1] ^= stack
[stk
]; stk
--; break;
739 case DW_OP_shl
: stack
[stk
-1] <<= stack
[stk
]; stk
--; break;
740 case DW_OP_shr
: stack
[stk
-1] >>= stack
[stk
]; stk
--; break;
741 case DW_OP_plus_uconst
: stack
[stk
] += dwarf2_leb128_as_unsigned(ctx
); break;
742 case DW_OP_shra
: stack
[stk
-1] = stack
[stk
-1] / (1 << stack
[stk
]); stk
--; break;
743 case DW_OP_div
: stack
[stk
-1] = stack
[stk
-1] / stack
[stk
]; stk
--; break;
744 case DW_OP_mod
: stack
[stk
-1] = stack
[stk
-1] % stack
[stk
]; stk
--; break;
745 case DW_OP_ge
: stack
[stk
-1] = (stack
[stk
-1] >= stack
[stk
]); stk
--; break;
746 case DW_OP_gt
: stack
[stk
-1] = (stack
[stk
-1] > stack
[stk
]); stk
--; break;
747 case DW_OP_le
: stack
[stk
-1] = (stack
[stk
-1] <= stack
[stk
]); stk
--; break;
748 case DW_OP_lt
: stack
[stk
-1] = (stack
[stk
-1] < stack
[stk
]); stk
--; break;
749 case DW_OP_eq
: stack
[stk
-1] = (stack
[stk
-1] == stack
[stk
]); stk
--; break;
750 case DW_OP_ne
: stack
[stk
-1] = (stack
[stk
-1] != stack
[stk
]); stk
--; break;
751 case DW_OP_skip
: tmp
= dwarf2_parse_u2(ctx
); ctx
->data
+= tmp
; break;
752 case DW_OP_bra
: tmp
= dwarf2_parse_u2(ctx
); if (!stack
[stk
--]) ctx
->data
+= tmp
; break;
754 tmp
= dwarf2_leb128_as_unsigned(ctx
);
757 if (loc
->reg
!= Wine_DW_no_register
)
758 FIXME("Only supporting one reg\n");
759 loc
->reg
= dwarf2_map_register(tmp
);
761 loc
->kind
= loc_register
;
764 tmp
= dwarf2_leb128_as_unsigned(ctx
);
765 if (loc
->reg
!= Wine_DW_no_register
)
766 FIXME("Only supporting one regx\n");
767 loc
->reg
= dwarf2_map_register(tmp
);
768 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
);
769 loc
->kind
= loc_regrel
;
772 if (loc
->reg
!= Wine_DW_no_register
)
773 FIXME("Only supporting one reg (%s/%d -> -2)\n",
774 dbghelp_current_cpu
->fetch_regname(loc
->reg
), loc
->reg
);
775 if (frame
&& frame
->kind
== loc_register
)
777 loc
->kind
= loc_regrel
;
778 loc
->reg
= frame
->reg
;
779 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
);
781 else if (frame
&& frame
->kind
== loc_regrel
)
783 loc
->kind
= loc_regrel
;
784 loc
->reg
= frame
->reg
;
785 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
) + frame
->offset
;
789 /* FIXME: this could be later optimized by not recomputing
790 * this very location expression
792 loc
->kind
= loc_dwarf2_block
;
793 stack
[++stk
] = dwarf2_leb128_as_signed(ctx
);
798 unsigned sz
= dwarf2_leb128_as_unsigned(ctx
);
799 WARN("Not handling OP_piece (size=%d)\n", sz
);
806 FIXME("Unexpected empty stack\n");
807 return loc_err_internal
;
809 if (loc
->reg
!= Wine_DW_no_register
)
811 WARN("Too complex expression for deref\n");
812 return loc_err_too_complex
;
816 DWORD_PTR addr
= stack
[stk
--];
819 if (!ReadProcessMemory(hproc
, (void*)addr
, &deref
, sizeof(deref
), NULL
))
821 WARN("Couldn't read memory at %lx\n", addr
);
822 return loc_err_cant_read
;
824 stack
[++stk
] = deref
;
828 loc
->kind
= loc_dwarf2_block
;
831 case DW_OP_deref_size
:
834 FIXME("Unexpected empty stack\n");
835 return loc_err_internal
;
837 if (loc
->reg
!= Wine_DW_no_register
)
839 WARN("Too complex expression for deref\n");
840 return loc_err_too_complex
;
844 DWORD_PTR addr
= stack
[stk
--];
845 BYTE derefsize
= dwarf2_parse_byte(ctx
);
848 if (!ReadProcessMemory(hproc
, (void*)addr
, &deref
, derefsize
, NULL
))
850 WARN("Couldn't read memory at %lx\n", addr
);
851 return loc_err_cant_read
;
856 case 1: stack
[++stk
] = *(unsigned char*)&deref
; break;
857 case 2: stack
[++stk
] = *(unsigned short*)&deref
; break;
858 case 4: stack
[++stk
] = *(DWORD
*)&deref
; break;
859 case 8: if (ctx
->word_size
>= derefsize
) stack
[++stk
] = deref
; break;
864 dwarf2_parse_byte(ctx
);
865 loc
->kind
= loc_dwarf2_block
;
868 case DW_OP_stack_value
:
869 /* Expected behaviour is that this is the last instruction of this
870 * expression and just the "top of stack" value should be put to loc->offset. */
873 if (op
< DW_OP_lo_user
) /* as DW_OP_hi_user is 0xFF, we don't need to test against it */
874 FIXME("Unhandled attr op: %x\n", op
);
875 /* FIXME else unhandled extension */
876 return loc_err_internal
;
879 loc
->offset
= stack
[stk
];
883 static BOOL
dwarf2_compute_location_attr(dwarf2_parse_context_t
* ctx
,
884 const dwarf2_debug_info_t
* di
,
886 struct location
* loc
,
887 const struct location
* frame
)
889 struct attribute xloc
;
891 if (!dwarf2_find_attribute(ctx
, di
, dw
, &xloc
)) return FALSE
;
895 case DW_FORM_data1
: case DW_FORM_data2
:
896 case DW_FORM_udata
: case DW_FORM_sdata
:
897 loc
->kind
= loc_absolute
;
899 loc
->offset
= xloc
.u
.uvalue
;
901 case DW_FORM_data4
: case DW_FORM_data8
:
902 loc
->kind
= loc_dwarf2_location_list
;
903 loc
->reg
= Wine_DW_no_register
;
904 loc
->offset
= xloc
.u
.uvalue
;
911 default: FIXME("Unsupported yet form %lx\n", xloc
.form
);
915 /* assume we have a block form */
917 if (xloc
.u
.block
.size
)
919 dwarf2_traverse_context_t lctx
;
920 enum location_error err
;
922 lctx
.data
= xloc
.u
.block
.ptr
;
923 lctx
.end_data
= xloc
.u
.block
.ptr
+ xloc
.u
.block
.size
;
924 lctx
.word_size
= ctx
->module
->format_info
[DFI_DWARF
]->u
.dwarf2_info
->word_size
;
926 err
= compute_location(&lctx
, loc
, NULL
, frame
);
929 loc
->kind
= loc_error
;
932 else if (loc
->kind
== loc_dwarf2_block
)
934 unsigned* ptr
= pool_alloc(&ctx
->module
->pool
,
935 sizeof(unsigned) + xloc
.u
.block
.size
);
936 *ptr
= xloc
.u
.block
.size
;
937 memcpy(ptr
+ 1, xloc
.u
.block
.ptr
, xloc
.u
.block
.size
);
938 loc
->offset
= (unsigned long)ptr
;
944 static struct symt
* dwarf2_lookup_type(dwarf2_parse_context_t
* ctx
,
945 const dwarf2_debug_info_t
* di
)
947 struct attribute attr
;
948 dwarf2_debug_info_t
* type
;
950 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_type
, &attr
))
952 if (!(type
= sparse_array_find(&ctx
->debug_info_table
, attr
.u
.uvalue
)))
954 FIXME("Unable to find back reference to type %lx\n", attr
.u
.uvalue
);
959 /* load the debug info entity */
960 dwarf2_load_one_entry(ctx
, type
);
962 FIXME("Unable to load forward reference for tag %lx\n", type
->abbrev
->tag
);
967 static const char* dwarf2_get_cpp_name(dwarf2_parse_context_t
* ctx
, dwarf2_debug_info_t
* di
, const char* name
)
970 struct attribute diname
;
971 struct attribute spec
;
973 if (di
->abbrev
->tag
== DW_TAG_compile_unit
) return name
;
975 ctx
->cpp_name
= pool_alloc(&ctx
->pool
, MAX_SYM_NAME
);
976 last
= ctx
->cpp_name
+ MAX_SYM_NAME
- strlen(name
) - 1;
979 /* if the di is a definition, but has also a (previous) declaration, then scope must
980 * be gotten from declaration not definition
982 if (dwarf2_find_attribute(ctx
, di
, DW_AT_specification
, &spec
) && spec
.gotten_from
== attr_direct
)
984 di
= sparse_array_find(&ctx
->debug_info_table
, spec
.u
.uvalue
);
987 FIXME("Should have found the debug info entry\n");
992 for (di
= di
->parent
; di
; di
= di
->parent
)
994 switch (di
->abbrev
->tag
)
996 case DW_TAG_namespace
:
997 case DW_TAG_structure_type
:
998 case DW_TAG_class_type
:
999 case DW_TAG_interface_type
:
1000 case DW_TAG_union_type
:
1001 if (dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &diname
))
1003 size_t len
= strlen(diname
.u
.string
);
1005 if (last
< ctx
->cpp_name
) return NULL
;
1006 memcpy(last
, diname
.u
.string
, len
);
1007 last
[len
] = last
[len
+ 1] = ':';
1017 /******************************************************************
1020 * read a range for a given debug_info (either using AT_range attribute, in which
1021 * case we don't return all the details, or using AT_low_pc & AT_high_pc attributes)
1022 * in all cases, range is relative to beginning of compilation unit
1024 static BOOL
dwarf2_read_range(dwarf2_parse_context_t
* ctx
, const dwarf2_debug_info_t
* di
,
1025 unsigned long* plow
, unsigned long* phigh
)
1027 struct attribute range
;
1029 if (dwarf2_find_attribute(ctx
, di
, DW_AT_ranges
, &range
))
1031 dwarf2_traverse_context_t traverse
;
1032 unsigned long low
, high
;
1034 traverse
.data
= ctx
->sections
[section_ranges
].address
+ range
.u
.uvalue
;
1035 traverse
.end_data
= ctx
->sections
[section_ranges
].address
+
1036 ctx
->sections
[section_ranges
].size
;
1037 traverse
.word_size
= ctx
->module
->format_info
[DFI_DWARF
]->u
.dwarf2_info
->word_size
;
1041 while (traverse
.data
+ 2 * traverse
.word_size
< traverse
.end_data
)
1043 low
= dwarf2_parse_addr(&traverse
);
1044 high
= dwarf2_parse_addr(&traverse
);
1045 if (low
== 0 && high
== 0) break;
1046 if (low
== ULONG_MAX
) FIXME("unsupported yet (base address selection)\n");
1047 if (low
< *plow
) *plow
= low
;
1048 if (high
> *phigh
) *phigh
= high
;
1050 if (*plow
== ULONG_MAX
|| *phigh
== 0) {FIXME("no entry found\n"); return FALSE
;}
1051 if (*plow
== *phigh
) {FIXME("entry found, but low=high\n"); return FALSE
;}
1057 struct attribute low_pc
;
1058 struct attribute high_pc
;
1060 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_low_pc
, &low_pc
) ||
1061 !dwarf2_find_attribute(ctx
, di
, DW_AT_high_pc
, &high_pc
))
1063 *plow
= low_pc
.u
.uvalue
;
1064 *phigh
= high_pc
.u
.uvalue
;
1069 /******************************************************************
1070 * dwarf2_read_one_debug_info
1072 * Loads into memory one debug info entry, and recursively its children (if any)
1074 static BOOL
dwarf2_read_one_debug_info(dwarf2_parse_context_t
* ctx
,
1075 dwarf2_traverse_context_t
* traverse
,
1076 dwarf2_debug_info_t
* parent_di
,
1077 dwarf2_debug_info_t
** pdi
)
1079 const dwarf2_abbrev_entry_t
*abbrev
;
1080 unsigned long entry_code
;
1081 unsigned long offset
;
1082 dwarf2_debug_info_t
* di
;
1083 dwarf2_debug_info_t
* child
;
1084 dwarf2_debug_info_t
** where
;
1085 dwarf2_abbrev_entry_attr_t
* attr
;
1087 struct attribute sibling
;
1089 offset
= traverse
->data
- ctx
->sections
[ctx
->section
].address
;
1090 entry_code
= dwarf2_leb128_as_unsigned(traverse
);
1091 TRACE("found entry_code %lu at 0x%lx\n", entry_code
, offset
);
1097 abbrev
= dwarf2_abbrev_table_find_entry(&ctx
->abbrev_table
, entry_code
);
1100 WARN("Cannot find abbrev entry for %lu at 0x%lx\n", entry_code
, offset
);
1103 di
= sparse_array_add(&ctx
->debug_info_table
, offset
, &ctx
->pool
);
1104 if (!di
) return FALSE
;
1105 di
->abbrev
= abbrev
;
1107 di
->parent
= parent_di
;
1109 if (abbrev
->num_attr
)
1111 di
->data
= pool_alloc(&ctx
->pool
, abbrev
->num_attr
* sizeof(const char*));
1112 for (i
= 0, attr
= abbrev
->attrs
; attr
; i
++, attr
= attr
->next
)
1114 di
->data
[i
] = traverse
->data
;
1115 dwarf2_swallow_attribute(traverse
, attr
);
1118 else di
->data
= NULL
;
1119 if (abbrev
->have_child
)
1121 vector_init(&di
->children
, sizeof(dwarf2_debug_info_t
*), 16);
1122 while (traverse
->data
< traverse
->end_data
)
1124 if (!dwarf2_read_one_debug_info(ctx
, traverse
, di
, &child
)) return FALSE
;
1126 where
= vector_add(&di
->children
, &ctx
->pool
);
1127 if (!where
) return FALSE
;
1131 if (dwarf2_find_attribute(ctx
, di
, DW_AT_sibling
, &sibling
) &&
1132 traverse
->data
!= ctx
->sections
[ctx
->section
].address
+ sibling
.u
.uvalue
)
1134 WARN("setting cursor for %s to next sibling <0x%lx>\n",
1135 dwarf2_debug_traverse_ctx(traverse
), sibling
.u
.uvalue
);
1136 traverse
->data
= ctx
->sections
[ctx
->section
].address
+ sibling
.u
.uvalue
;
1142 static struct vector
* dwarf2_get_di_children(dwarf2_parse_context_t
* ctx
,
1143 dwarf2_debug_info_t
* di
)
1145 struct attribute spec
;
1149 if (di
->abbrev
->have_child
)
1150 return &di
->children
;
1151 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_specification
, &spec
)) break;
1152 if (!(di
= sparse_array_find(&ctx
->debug_info_table
, spec
.u
.uvalue
)))
1153 FIXME("Should have found the debug info entry\n");
1158 static struct symt
* dwarf2_parse_base_type(dwarf2_parse_context_t
* ctx
,
1159 dwarf2_debug_info_t
* di
)
1161 struct attribute name
;
1162 struct attribute size
;
1163 struct attribute encoding
;
1166 if (di
->symt
) return di
->symt
;
1168 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1170 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
))
1171 name
.u
.string
= NULL
;
1172 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &size
)) size
.u
.uvalue
= 0;
1173 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_encoding
, &encoding
)) encoding
.u
.uvalue
= DW_ATE_void
;
1175 switch (encoding
.u
.uvalue
)
1177 case DW_ATE_void
: bt
= btVoid
; break;
1178 case DW_ATE_address
: bt
= btULong
; break;
1179 case DW_ATE_boolean
: bt
= btBool
; break;
1180 case DW_ATE_complex_float
: bt
= btComplex
; break;
1181 case DW_ATE_float
: bt
= btFloat
; break;
1182 case DW_ATE_signed
: bt
= btInt
; break;
1183 case DW_ATE_unsigned
: bt
= btUInt
; break;
1184 case DW_ATE_signed_char
: bt
= btChar
; break;
1185 case DW_ATE_unsigned_char
: bt
= btChar
; break;
1186 default: bt
= btNoType
; break;
1188 di
->symt
= &symt_new_basic(ctx
->module
, bt
, name
.u
.string
, size
.u
.uvalue
)->symt
;
1192 assert(size
.u
.uvalue
== 0);
1193 cache_idx
= sc_void
;
1196 switch (size
.u
.uvalue
)
1198 case 1: cache_idx
= sc_int1
; break;
1199 case 2: cache_idx
= sc_int2
; break;
1200 case 4: cache_idx
= sc_int4
; break;
1205 if (cache_idx
!= -1 && !ctx
->symt_cache
[cache_idx
])
1206 ctx
->symt_cache
[cache_idx
] = di
->symt
;
1208 if (dwarf2_get_di_children(ctx
, di
)) FIXME("Unsupported children\n");
1212 static struct symt
* dwarf2_parse_typedef(dwarf2_parse_context_t
* ctx
,
1213 dwarf2_debug_info_t
* di
)
1215 struct symt
* ref_type
;
1216 struct attribute name
;
1218 if (di
->symt
) return di
->symt
;
1220 TRACE("%s, for %lu\n", dwarf2_debug_ctx(ctx
), di
->abbrev
->entry_code
);
1222 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) name
.u
.string
= NULL
;
1223 ref_type
= dwarf2_lookup_type(ctx
, di
);
1226 di
->symt
= &symt_new_typedef(ctx
->module
, ref_type
, name
.u
.string
)->symt
;
1227 if (dwarf2_get_di_children(ctx
, di
)) FIXME("Unsupported children\n");
1231 static struct symt
* dwarf2_parse_pointer_type(dwarf2_parse_context_t
* ctx
,
1232 dwarf2_debug_info_t
* di
)
1234 struct symt
* ref_type
;
1235 struct attribute size
;
1237 if (di
->symt
) return di
->symt
;
1239 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1241 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &size
)) size
.u
.uvalue
= sizeof(void *);
1242 if (!(ref_type
= dwarf2_lookup_type(ctx
, di
)))
1244 ref_type
= ctx
->symt_cache
[sc_void
];
1247 di
->symt
= &symt_new_pointer(ctx
->module
, ref_type
, size
.u
.uvalue
)->symt
;
1248 if (dwarf2_get_di_children(ctx
, di
)) FIXME("Unsupported children\n");
1252 static struct symt
* dwarf2_parse_array_type(dwarf2_parse_context_t
* ctx
,
1253 dwarf2_debug_info_t
* di
)
1255 struct symt
* ref_type
;
1256 struct symt
* idx_type
= NULL
;
1257 struct attribute min
, max
, cnt
;
1258 dwarf2_debug_info_t
* child
;
1260 const struct vector
* children
;
1262 if (di
->symt
) return di
->symt
;
1264 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1266 ref_type
= dwarf2_lookup_type(ctx
, di
);
1268 if (!(children
= dwarf2_get_di_children(ctx
, di
)))
1270 /* fake an array with unknown size */
1271 /* FIXME: int4 even on 64bit machines??? */
1272 idx_type
= ctx
->symt_cache
[sc_int4
];
1276 else for (i
= 0; i
< vector_length(children
); i
++)
1278 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
1279 switch (child
->abbrev
->tag
)
1281 case DW_TAG_subrange_type
:
1282 idx_type
= dwarf2_lookup_type(ctx
, child
);
1283 if (!dwarf2_find_attribute(ctx
, child
, DW_AT_lower_bound
, &min
))
1285 if (!dwarf2_find_attribute(ctx
, child
, DW_AT_upper_bound
, &max
))
1287 if (dwarf2_find_attribute(ctx
, child
, DW_AT_count
, &cnt
))
1288 max
.u
.uvalue
= min
.u
.uvalue
+ cnt
.u
.uvalue
;
1291 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1292 child
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1296 di
->symt
= &symt_new_array(ctx
->module
, min
.u
.uvalue
, max
.u
.uvalue
, ref_type
, idx_type
)->symt
;
1300 static struct symt
* dwarf2_parse_const_type(dwarf2_parse_context_t
* ctx
,
1301 dwarf2_debug_info_t
* di
)
1303 struct symt
* ref_type
;
1305 if (di
->symt
) return di
->symt
;
1307 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1309 if (!(ref_type
= dwarf2_lookup_type(ctx
, di
)))
1311 ref_type
= ctx
->symt_cache
[sc_void
];
1314 if (dwarf2_get_di_children(ctx
, di
)) FIXME("Unsupported children\n");
1315 di
->symt
= ref_type
;
1320 static struct symt
* dwarf2_parse_volatile_type(dwarf2_parse_context_t
* ctx
,
1321 dwarf2_debug_info_t
* di
)
1323 struct symt
* ref_type
;
1325 if (di
->symt
) return di
->symt
;
1327 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1329 if (!(ref_type
= dwarf2_lookup_type(ctx
, di
)))
1331 ref_type
= ctx
->symt_cache
[sc_void
];
1334 if (dwarf2_get_di_children(ctx
, di
)) FIXME("Unsupported children\n");
1335 di
->symt
= ref_type
;
1340 static struct symt
* dwarf2_parse_reference_type(dwarf2_parse_context_t
* ctx
,
1341 dwarf2_debug_info_t
* di
)
1343 struct symt
* ref_type
= NULL
;
1345 if (di
->symt
) return di
->symt
;
1347 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1349 ref_type
= dwarf2_lookup_type(ctx
, di
);
1350 /* FIXME: for now, we hard-wire C++ references to pointers */
1351 di
->symt
= &symt_new_pointer(ctx
->module
, ref_type
, sizeof(void *))->symt
;
1353 if (dwarf2_get_di_children(ctx
, di
)) FIXME("Unsupported children\n");
1358 static void dwarf2_parse_udt_member(dwarf2_parse_context_t
* ctx
,
1359 dwarf2_debug_info_t
* di
,
1360 struct symt_udt
* parent
)
1362 struct symt
* elt_type
;
1363 struct attribute name
;
1364 struct attribute bit_size
;
1365 struct attribute bit_offset
;
1366 struct location loc
;
1370 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1372 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) name
.u
.string
= NULL
;
1373 elt_type
= dwarf2_lookup_type(ctx
, di
);
1374 if (dwarf2_compute_location_attr(ctx
, di
, DW_AT_data_member_location
, &loc
, NULL
))
1376 if (loc
.kind
!= loc_absolute
)
1378 FIXME("Found register, while not expecting it\n");
1382 TRACE("found member_location at %s -> %lu\n",
1383 dwarf2_debug_ctx(ctx
), loc
.offset
);
1387 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_bit_size
, &bit_size
))
1388 bit_size
.u
.uvalue
= 0;
1389 if (dwarf2_find_attribute(ctx
, di
, DW_AT_bit_offset
, &bit_offset
))
1391 /* FIXME: we should only do this when implementation is LSB (which is
1392 * the case on i386 processors)
1394 struct attribute nbytes
;
1395 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &nbytes
))
1398 nbytes
.u
.uvalue
= symt_get_info(ctx
->module
, elt_type
, TI_GET_LENGTH
, &size
) ?
1399 (unsigned long)size
: 0;
1401 bit_offset
.u
.uvalue
= nbytes
.u
.uvalue
* 8 - bit_offset
.u
.uvalue
- bit_size
.u
.uvalue
;
1403 else bit_offset
.u
.uvalue
= 0;
1404 symt_add_udt_element(ctx
->module
, parent
, name
.u
.string
, elt_type
,
1405 (loc
.offset
<< 3) + bit_offset
.u
.uvalue
,
1408 if (dwarf2_get_di_children(ctx
, di
)) FIXME("Unsupported children\n");
1411 static struct symt
* dwarf2_parse_subprogram(dwarf2_parse_context_t
* ctx
,
1412 dwarf2_debug_info_t
* di
);
1414 static struct symt
* dwarf2_parse_udt_type(dwarf2_parse_context_t
* ctx
,
1415 dwarf2_debug_info_t
* di
,
1418 struct attribute name
;
1419 struct attribute size
;
1420 struct vector
* children
;
1421 dwarf2_debug_info_t
*child
;
1424 if (di
->symt
) return di
->symt
;
1426 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1428 /* quirk... FIXME provide real support for anonymous UDTs */
1429 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
))
1430 name
.u
.string
= "zz_anon_zz";
1431 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &size
)) size
.u
.uvalue
= 0;
1433 di
->symt
= &symt_new_udt(ctx
->module
, dwarf2_get_cpp_name(ctx
, di
, name
.u
.string
),
1434 size
.u
.uvalue
, udt
)->symt
;
1436 children
= dwarf2_get_di_children(ctx
, di
);
1437 if (children
) for (i
= 0; i
< vector_length(children
); i
++)
1439 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
1441 switch (child
->abbrev
->tag
)
1443 case DW_TAG_array_type
:
1444 dwarf2_parse_array_type(ctx
, di
);
1447 /* FIXME: should I follow the sibling stuff ?? */
1448 dwarf2_parse_udt_member(ctx
, child
, (struct symt_udt
*)di
->symt
);
1450 case DW_TAG_enumeration_type
:
1451 dwarf2_parse_enumeration_type(ctx
, child
);
1453 case DW_TAG_subprogram
:
1454 dwarf2_parse_subprogram(ctx
, child
);
1456 case DW_TAG_const_type
:
1457 dwarf2_parse_const_type(ctx
, child
);
1459 case DW_TAG_structure_type
:
1460 case DW_TAG_class_type
:
1461 case DW_TAG_union_type
:
1462 case DW_TAG_typedef
:
1463 /* FIXME: we need to handle nested udt definitions */
1464 case DW_TAG_inheritance
:
1465 case DW_TAG_template_type_param
:
1466 case DW_TAG_template_value_param
:
1467 case DW_TAG_variable
:
1468 case DW_TAG_imported_declaration
:
1469 case DW_TAG_ptr_to_member_type
:
1470 case DW_TAG_GNU_template_parameter_pack
:
1471 case DW_TAG_GNU_formal_parameter_pack
:
1472 /* FIXME: some C++ related stuff */
1475 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1476 child
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1484 static void dwarf2_parse_enumerator(dwarf2_parse_context_t
* ctx
,
1485 dwarf2_debug_info_t
* di
,
1486 struct symt_enum
* parent
)
1488 struct attribute name
;
1489 struct attribute value
;
1491 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1493 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) return;
1494 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_const_value
, &value
)) value
.u
.svalue
= 0;
1495 symt_add_enum_element(ctx
->module
, parent
, name
.u
.string
, value
.u
.svalue
);
1497 if (dwarf2_get_di_children(ctx
, di
)) FIXME("Unsupported children\n");
1500 static struct symt
* dwarf2_parse_enumeration_type(dwarf2_parse_context_t
* ctx
,
1501 dwarf2_debug_info_t
* di
)
1503 struct attribute name
;
1504 struct attribute size
;
1505 struct symt_basic
* basetype
;
1506 struct vector
* children
;
1507 dwarf2_debug_info_t
*child
;
1510 if (di
->symt
) return di
->symt
;
1512 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1514 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
)) name
.u
.string
= NULL
;
1515 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_byte_size
, &size
)) size
.u
.uvalue
= 4;
1517 switch (size
.u
.uvalue
) /* FIXME: that's wrong */
1519 case 1: basetype
= symt_new_basic(ctx
->module
, btInt
, "char", 1); break;
1520 case 2: basetype
= symt_new_basic(ctx
->module
, btInt
, "short", 2); break;
1522 case 4: basetype
= symt_new_basic(ctx
->module
, btInt
, "int", 4); break;
1525 di
->symt
= &symt_new_enum(ctx
->module
, name
.u
.string
, &basetype
->symt
)->symt
;
1527 children
= dwarf2_get_di_children(ctx
, di
);
1528 /* FIXME: should we use the sibling stuff ?? */
1529 if (children
) for (i
= 0; i
< vector_length(children
); i
++)
1531 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
1533 switch (child
->abbrev
->tag
)
1535 case DW_TAG_enumerator
:
1536 dwarf2_parse_enumerator(ctx
, child
, (struct symt_enum
*)di
->symt
);
1539 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1540 di
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1546 /* structure used to pass information around when parsing a subprogram */
1547 typedef struct dwarf2_subprogram_s
1549 dwarf2_parse_context_t
* ctx
;
1550 struct symt_function
* func
;
1551 BOOL non_computed_variable
;
1552 struct location frame
;
1553 } dwarf2_subprogram_t
;
1555 /******************************************************************
1556 * dwarf2_parse_variable
1558 * Parses any variable (parameter, local/global variable)
1560 static void dwarf2_parse_variable(dwarf2_subprogram_t
* subpgm
,
1561 struct symt_block
* block
,
1562 dwarf2_debug_info_t
* di
)
1564 struct symt
* param_type
;
1565 struct attribute name
, value
;
1566 struct location loc
;
1569 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1571 is_pmt
= !block
&& di
->abbrev
->tag
== DW_TAG_formal_parameter
;
1572 param_type
= dwarf2_lookup_type(subpgm
->ctx
, di
);
1574 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_name
, &name
)) {
1575 /* cannot do much without the name, the functions below won't like it. */
1578 if (dwarf2_compute_location_attr(subpgm
->ctx
, di
, DW_AT_location
,
1579 &loc
, &subpgm
->frame
))
1581 struct attribute ext
;
1583 TRACE("found parameter %s (kind=%d, offset=%ld, reg=%d) at %s\n",
1584 name
.u
.string
, loc
.kind
, loc
.offset
, loc
.reg
,
1585 dwarf2_debug_ctx(subpgm
->ctx
));
1592 /* it's a global variable */
1593 /* FIXME: we don't handle its scope yet */
1594 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_external
, &ext
))
1596 loc
.offset
+= subpgm
->ctx
->load_offset
;
1597 symt_new_global_variable(subpgm
->ctx
->module
, subpgm
->ctx
->compiland
,
1598 dwarf2_get_cpp_name(subpgm
->ctx
, di
, name
.u
.string
), !ext
.u
.uvalue
,
1599 loc
, 0, param_type
);
1602 subpgm
->non_computed_variable
= TRUE
;
1606 /* either a pmt/variable relative to frame pointer or
1607 * pmt/variable in a register
1609 assert(subpgm
->func
);
1610 symt_add_func_local(subpgm
->ctx
->module
, subpgm
->func
,
1611 is_pmt
? DataIsParam
: DataIsLocal
,
1612 &loc
, block
, param_type
, name
.u
.string
);
1616 else if (dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_const_value
, &value
))
1619 if (subpgm
->func
) WARN("Unsupported constant %s in function\n", name
.u
.string
);
1620 if (is_pmt
) FIXME("Unsupported constant (parameter) %s in function\n", name
.u
.string
);
1628 v
.n1
.n2
.vt
= VT_UI4
;
1629 v
.n1
.n2
.n3
.lVal
= value
.u
.uvalue
;
1633 v
.n1
.n2
.vt
= VT_UI8
;
1634 v
.n1
.n2
.n3
.llVal
= value
.u
.lluvalue
;
1639 v
.n1
.n2
.n3
.lVal
= value
.u
.svalue
;
1643 case DW_FORM_string
:
1644 /* FIXME: native doesn't report const strings from here !!
1645 * however, the value of the string is in the code somewhere
1647 v
.n1
.n2
.vt
= VT_I1
| VT_BYREF
;
1648 v
.n1
.n2
.n3
.byref
= pool_strdup(&subpgm
->ctx
->module
->pool
, value
.u
.string
);
1652 case DW_FORM_block1
:
1653 case DW_FORM_block2
:
1654 case DW_FORM_block4
:
1656 switch (value
.u
.block
.size
)
1658 case 1: v
.n1
.n2
.n3
.lVal
= *(BYTE
*)value
.u
.block
.ptr
; break;
1659 case 2: v
.n1
.n2
.n3
.lVal
= *(USHORT
*)value
.u
.block
.ptr
; break;
1660 case 4: v
.n1
.n2
.n3
.lVal
= *(DWORD
*)value
.u
.block
.ptr
; break;
1662 v
.n1
.n2
.vt
= VT_I1
| VT_BYREF
;
1663 v
.n1
.n2
.n3
.byref
= pool_alloc(&subpgm
->ctx
->module
->pool
, value
.u
.block
.size
);
1664 memcpy(v
.n1
.n2
.n3
.byref
, value
.u
.block
.ptr
, value
.u
.block
.size
);
1669 FIXME("Unsupported form for const value %s (%lx)\n",
1670 name
.u
.string
, value
.form
);
1671 v
.n1
.n2
.vt
= VT_EMPTY
;
1673 di
->symt
= &symt_new_constant(subpgm
->ctx
->module
, subpgm
->ctx
->compiland
,
1674 name
.u
.string
, param_type
, &v
)->symt
;
1678 /* variable has been optimized away... report anyway */
1679 loc
.kind
= loc_error
;
1680 loc
.reg
= loc_err_no_location
;
1683 symt_add_func_local(subpgm
->ctx
->module
, subpgm
->func
,
1684 is_pmt
? DataIsParam
: DataIsLocal
,
1685 &loc
, block
, param_type
, name
.u
.string
);
1689 WARN("dropping global variable %s which has been optimized away\n", name
.u
.string
);
1692 if (is_pmt
&& subpgm
->func
&& subpgm
->func
->type
)
1693 symt_add_function_signature_parameter(subpgm
->ctx
->module
,
1694 (struct symt_function_signature
*)subpgm
->func
->type
,
1697 if (dwarf2_get_di_children(subpgm
->ctx
, di
)) FIXME("Unsupported children\n");
1700 static void dwarf2_parse_subprogram_label(dwarf2_subprogram_t
* subpgm
,
1701 const dwarf2_debug_info_t
* di
)
1703 struct attribute name
;
1704 struct attribute low_pc
;
1705 struct location loc
;
1707 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1709 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_low_pc
, &low_pc
)) low_pc
.u
.uvalue
= 0;
1710 if (!dwarf2_find_attribute(subpgm
->ctx
, di
, DW_AT_name
, &name
))
1711 name
.u
.string
= NULL
;
1713 loc
.kind
= loc_absolute
;
1714 loc
.offset
= subpgm
->ctx
->load_offset
+ low_pc
.u
.uvalue
;
1715 symt_add_function_point(subpgm
->ctx
->module
, subpgm
->func
, SymTagLabel
,
1716 &loc
, name
.u
.string
);
1719 static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t
* subpgm
,
1720 struct symt_block
* parent_block
,
1721 dwarf2_debug_info_t
* di
);
1723 static struct symt
* dwarf2_parse_subroutine_type(dwarf2_parse_context_t
* ctx
,
1724 dwarf2_debug_info_t
* di
);
1726 static void dwarf2_parse_inlined_subroutine(dwarf2_subprogram_t
* subpgm
,
1727 struct symt_block
* parent_block
,
1728 dwarf2_debug_info_t
* di
)
1730 struct symt_block
* block
;
1731 unsigned long low_pc
, high_pc
;
1732 struct vector
* children
;
1733 dwarf2_debug_info_t
*child
;
1736 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1738 if (!dwarf2_read_range(subpgm
->ctx
, di
, &low_pc
, &high_pc
))
1740 FIXME("cannot read range\n");
1744 block
= symt_open_func_block(subpgm
->ctx
->module
, subpgm
->func
, parent_block
,
1745 subpgm
->ctx
->load_offset
+ low_pc
- subpgm
->func
->address
,
1748 children
= dwarf2_get_di_children(subpgm
->ctx
, di
);
1749 if (children
) for (i
= 0; i
< vector_length(children
); i
++)
1751 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
1753 switch (child
->abbrev
->tag
)
1755 case DW_TAG_formal_parameter
:
1756 case DW_TAG_variable
:
1757 dwarf2_parse_variable(subpgm
, block
, child
);
1759 case DW_TAG_lexical_block
:
1760 dwarf2_parse_subprogram_block(subpgm
, block
, child
);
1762 case DW_TAG_inlined_subroutine
:
1763 dwarf2_parse_inlined_subroutine(subpgm
, block
, child
);
1766 dwarf2_parse_subprogram_label(subpgm
, child
);
1768 case DW_TAG_GNU_call_site
:
1769 /* this isn't properly supported by dbghelp interface. skip it for now */
1772 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1773 child
->abbrev
->tag
, dwarf2_debug_ctx(subpgm
->ctx
),
1774 dwarf2_debug_di(di
));
1777 symt_close_func_block(subpgm
->ctx
->module
, subpgm
->func
, block
, 0);
1780 static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t
* subpgm
,
1781 struct symt_block
* parent_block
,
1782 dwarf2_debug_info_t
* di
)
1784 struct symt_block
* block
;
1785 unsigned long low_pc
, high_pc
;
1786 struct vector
* children
;
1787 dwarf2_debug_info_t
*child
;
1790 TRACE("%s, for %s\n", dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1792 if (!dwarf2_read_range(subpgm
->ctx
, di
, &low_pc
, &high_pc
))
1794 FIXME("no range\n");
1798 block
= symt_open_func_block(subpgm
->ctx
->module
, subpgm
->func
, parent_block
,
1799 subpgm
->ctx
->load_offset
+ low_pc
- subpgm
->func
->address
,
1802 children
= dwarf2_get_di_children(subpgm
->ctx
, di
);
1803 if (children
) for (i
= 0; i
< vector_length(children
); i
++)
1805 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
1807 switch (child
->abbrev
->tag
)
1809 case DW_TAG_inlined_subroutine
:
1810 dwarf2_parse_inlined_subroutine(subpgm
, block
, child
);
1812 case DW_TAG_variable
:
1813 dwarf2_parse_variable(subpgm
, block
, child
);
1815 case DW_TAG_pointer_type
:
1816 dwarf2_parse_pointer_type(subpgm
->ctx
, di
);
1818 case DW_TAG_subroutine_type
:
1819 dwarf2_parse_subroutine_type(subpgm
->ctx
, di
);
1821 case DW_TAG_lexical_block
:
1822 dwarf2_parse_subprogram_block(subpgm
, block
, child
);
1824 case DW_TAG_subprogram
:
1825 /* FIXME: likely a declaration (to be checked)
1829 case DW_TAG_formal_parameter
:
1830 /* FIXME: likely elements for exception handling (GCC flavor)
1834 case DW_TAG_imported_module
:
1835 /* C++ stuff to be silenced (for now) */
1837 case DW_TAG_GNU_call_site
:
1838 /* this isn't properly supported by dbghelp interface. skip it for now */
1841 dwarf2_parse_subprogram_label(subpgm
, child
);
1843 case DW_TAG_class_type
:
1844 case DW_TAG_structure_type
:
1845 case DW_TAG_union_type
:
1846 case DW_TAG_enumeration_type
:
1847 case DW_TAG_typedef
:
1848 /* the type referred to will be loaded when we need it, so skip it */
1851 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1852 child
->abbrev
->tag
, dwarf2_debug_ctx(subpgm
->ctx
), dwarf2_debug_di(di
));
1856 symt_close_func_block(subpgm
->ctx
->module
, subpgm
->func
, block
, 0);
1859 static struct symt
* dwarf2_parse_subprogram(dwarf2_parse_context_t
* ctx
,
1860 dwarf2_debug_info_t
* di
)
1862 struct attribute name
;
1863 unsigned long low_pc
, high_pc
;
1864 struct attribute is_decl
;
1865 struct attribute inline_flags
;
1866 struct symt
* ret_type
;
1867 struct symt_function_signature
* sig_type
;
1868 dwarf2_subprogram_t subpgm
;
1869 struct vector
* children
;
1870 dwarf2_debug_info_t
* child
;
1873 if (di
->symt
) return di
->symt
;
1875 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1877 if (!dwarf2_find_attribute(ctx
, di
, DW_AT_name
, &name
))
1879 WARN("No name for function... dropping function\n");
1882 /* if it's an abstract representation of an inline function, there should be
1883 * a concrete object that we'll handle
1885 if (dwarf2_find_attribute(ctx
, di
, DW_AT_inline
, &inline_flags
) &&
1886 inline_flags
.u
.uvalue
!= DW_INL_not_inlined
)
1888 TRACE("Function %s declared as inlined (%ld)... skipping\n",
1889 name
.u
.string
? name
.u
.string
: "(null)", inline_flags
.u
.uvalue
);
1893 if (dwarf2_find_attribute(ctx
, di
, DW_AT_declaration
, &is_decl
) &&
1894 is_decl
.u
.uvalue
&& is_decl
.gotten_from
== attr_direct
)
1896 /* it's a real declaration, skip it */
1899 if (!dwarf2_read_range(ctx
, di
, &low_pc
, &high_pc
))
1901 WARN("cannot get range for %s\n", name
.u
.string
);
1904 /* As functions (defined as inline assembly) get debug info with dwarf
1905 * (not the case for stabs), we just drop Wine's thunks here...
1906 * Actual thunks will be created in elf_module from the symbol table
1908 if (elf_is_in_thunk_area(ctx
->load_offset
+ low_pc
, ctx
->thunks
) >= 0)
1910 if (!(ret_type
= dwarf2_lookup_type(ctx
, di
)))
1912 ret_type
= ctx
->symt_cache
[sc_void
];
1915 /* FIXME: assuming C source code */
1916 sig_type
= symt_new_function_signature(ctx
->module
, ret_type
, CV_CALL_FAR_C
);
1917 subpgm
.func
= symt_new_function(ctx
->module
, ctx
->compiland
,
1918 dwarf2_get_cpp_name(ctx
, di
, name
.u
.string
),
1919 ctx
->load_offset
+ low_pc
, high_pc
- low_pc
,
1921 di
->symt
= &subpgm
.func
->symt
;
1923 if (!dwarf2_compute_location_attr(ctx
, di
, DW_AT_frame_base
,
1924 &subpgm
.frame
, NULL
))
1927 subpgm
.frame
.kind
= loc_regrel
;
1928 subpgm
.frame
.reg
= dbghelp_current_cpu
->frame_regno
;
1929 subpgm
.frame
.offset
= 0;
1931 subpgm
.non_computed_variable
= FALSE
;
1933 children
= dwarf2_get_di_children(ctx
, di
);
1934 if (children
) for (i
= 0; i
< vector_length(children
); i
++)
1936 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
1938 switch (child
->abbrev
->tag
)
1940 case DW_TAG_variable
:
1941 case DW_TAG_formal_parameter
:
1942 dwarf2_parse_variable(&subpgm
, NULL
, child
);
1944 case DW_TAG_lexical_block
:
1945 dwarf2_parse_subprogram_block(&subpgm
, NULL
, child
);
1947 case DW_TAG_inlined_subroutine
:
1948 dwarf2_parse_inlined_subroutine(&subpgm
, NULL
, child
);
1950 case DW_TAG_pointer_type
:
1951 dwarf2_parse_pointer_type(subpgm
.ctx
, di
);
1953 case DW_TAG_subprogram
:
1954 /* FIXME: likely a declaration (to be checked)
1959 dwarf2_parse_subprogram_label(&subpgm
, child
);
1961 case DW_TAG_class_type
:
1962 case DW_TAG_structure_type
:
1963 case DW_TAG_union_type
:
1964 case DW_TAG_enumeration_type
:
1965 case DW_TAG_typedef
:
1966 /* the type referred to will be loaded when we need it, so skip it */
1968 case DW_TAG_unspecified_parameters
:
1969 case DW_TAG_template_type_param
:
1970 case DW_TAG_template_value_param
:
1971 case DW_TAG_GNU_call_site
:
1972 case DW_TAG_GNU_template_parameter_pack
:
1973 case DW_TAG_GNU_formal_parameter_pack
:
1974 /* FIXME: no support in dbghelp's internals so far */
1977 FIXME("Unhandled Tag type 0x%lx at %s, for %s\n",
1978 child
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
1982 if (subpgm
.non_computed_variable
|| subpgm
.frame
.kind
>= loc_user
)
1984 symt_add_function_point(ctx
->module
, subpgm
.func
, SymTagCustom
,
1985 &subpgm
.frame
, NULL
);
1987 if (subpgm
.func
) symt_normalize_function(subpgm
.ctx
->module
, subpgm
.func
);
1992 static struct symt
* dwarf2_parse_subroutine_type(dwarf2_parse_context_t
* ctx
,
1993 dwarf2_debug_info_t
* di
)
1995 struct symt
* ret_type
;
1996 struct symt_function_signature
* sig_type
;
1997 struct vector
* children
;
1998 dwarf2_debug_info_t
* child
;
2001 if (di
->symt
) return di
->symt
;
2003 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
2005 if (!(ret_type
= dwarf2_lookup_type(ctx
, di
)))
2007 ret_type
= ctx
->symt_cache
[sc_void
];
2011 /* FIXME: assuming C source code */
2012 sig_type
= symt_new_function_signature(ctx
->module
, ret_type
, CV_CALL_FAR_C
);
2014 children
= dwarf2_get_di_children(ctx
, di
);
2015 if (children
) for (i
= 0; i
< vector_length(children
); i
++)
2017 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
2019 switch (child
->abbrev
->tag
)
2021 case DW_TAG_formal_parameter
:
2022 symt_add_function_signature_parameter(ctx
->module
, sig_type
,
2023 dwarf2_lookup_type(ctx
, child
));
2025 case DW_TAG_unspecified_parameters
:
2026 WARN("Unsupported unspecified parameters\n");
2031 return di
->symt
= &sig_type
->symt
;
2034 static void dwarf2_parse_namespace(dwarf2_parse_context_t
* ctx
,
2035 dwarf2_debug_info_t
* di
)
2037 struct vector
* children
;
2038 dwarf2_debug_info_t
* child
;
2041 if (di
->symt
) return;
2043 TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx
), dwarf2_debug_di(di
));
2045 di
->symt
= ctx
->symt_cache
[sc_void
];
2047 children
= dwarf2_get_di_children(ctx
, di
);
2048 if (children
) for (i
= 0; i
< vector_length(children
); i
++)
2050 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
2051 dwarf2_load_one_entry(ctx
, child
);
2055 static void dwarf2_load_one_entry(dwarf2_parse_context_t
* ctx
,
2056 dwarf2_debug_info_t
* di
)
2058 switch (di
->abbrev
->tag
)
2060 case DW_TAG_typedef
:
2061 dwarf2_parse_typedef(ctx
, di
);
2063 case DW_TAG_base_type
:
2064 dwarf2_parse_base_type(ctx
, di
);
2066 case DW_TAG_pointer_type
:
2067 dwarf2_parse_pointer_type(ctx
, di
);
2069 case DW_TAG_class_type
:
2070 dwarf2_parse_udt_type(ctx
, di
, UdtClass
);
2072 case DW_TAG_structure_type
:
2073 dwarf2_parse_udt_type(ctx
, di
, UdtStruct
);
2075 case DW_TAG_union_type
:
2076 dwarf2_parse_udt_type(ctx
, di
, UdtUnion
);
2078 case DW_TAG_array_type
:
2079 dwarf2_parse_array_type(ctx
, di
);
2081 case DW_TAG_const_type
:
2082 dwarf2_parse_const_type(ctx
, di
);
2084 case DW_TAG_volatile_type
:
2085 dwarf2_parse_volatile_type(ctx
, di
);
2087 case DW_TAG_reference_type
:
2088 dwarf2_parse_reference_type(ctx
, di
);
2090 case DW_TAG_enumeration_type
:
2091 dwarf2_parse_enumeration_type(ctx
, di
);
2093 case DW_TAG_subprogram
:
2094 dwarf2_parse_subprogram(ctx
, di
);
2096 case DW_TAG_subroutine_type
:
2097 dwarf2_parse_subroutine_type(ctx
, di
);
2099 case DW_TAG_variable
:
2101 dwarf2_subprogram_t subpgm
;
2105 subpgm
.frame
.kind
= loc_absolute
;
2106 subpgm
.frame
.offset
= 0;
2107 subpgm
.frame
.reg
= Wine_DW_no_register
;
2108 dwarf2_parse_variable(&subpgm
, NULL
, di
);
2111 case DW_TAG_namespace
:
2112 dwarf2_parse_namespace(ctx
, di
);
2114 /* silence a couple of C++ defines */
2115 case DW_TAG_imported_module
:
2116 case DW_TAG_imported_declaration
:
2117 case DW_TAG_ptr_to_member_type
:
2120 FIXME("Unhandled Tag type 0x%lx at %s, for %lu\n",
2121 di
->abbrev
->tag
, dwarf2_debug_ctx(ctx
), di
->abbrev
->entry_code
);
2125 static void dwarf2_set_line_number(struct module
* module
, unsigned long address
,
2126 const struct vector
* v
, unsigned file
, unsigned line
)
2128 struct symt_function
* func
;
2129 struct symt_ht
* symt
;
2132 if (!file
|| !(psrc
= vector_at(v
, file
- 1))) return;
2134 TRACE("%s %lx %s %u\n",
2135 debugstr_w(module
->module
.ModuleName
), address
, source_get(module
, *psrc
), line
);
2136 if (!(symt
= symt_find_nearest(module
, address
)) ||
2137 symt
->symt
.tag
!= SymTagFunction
) return;
2138 func
= (struct symt_function
*)symt
;
2139 symt_add_func_line(module
, func
, *psrc
, line
, address
- func
->address
);
2142 static BOOL
dwarf2_parse_line_numbers(const dwarf2_section_t
* sections
,
2143 dwarf2_parse_context_t
* ctx
,
2144 const char* compile_dir
,
2145 unsigned long offset
)
2147 dwarf2_traverse_context_t traverse
;
2148 unsigned long length
;
2149 unsigned insn_size
, default_stmt
;
2150 unsigned line_range
, opcode_base
;
2152 const unsigned char* opcode_len
;
2154 struct vector files
;
2157 /* section with line numbers stripped */
2158 if (sections
[section_line
].address
== IMAGE_NO_MAP
)
2161 if (offset
+ 4 > sections
[section_line
].size
)
2163 WARN("out of bounds offset\n");
2166 traverse
.data
= sections
[section_line
].address
+ offset
;
2167 traverse
.end_data
= traverse
.data
+ 4;
2168 traverse
.word_size
= ctx
->module
->format_info
[DFI_DWARF
]->u
.dwarf2_info
->word_size
;
2170 length
= dwarf2_parse_u4(&traverse
);
2171 traverse
.end_data
= sections
[section_line
].address
+ offset
+ length
;
2173 if (offset
+ 4 + length
> sections
[section_line
].size
)
2175 WARN("out of bounds header\n");
2178 dwarf2_parse_u2(&traverse
); /* version */
2179 dwarf2_parse_u4(&traverse
); /* header_len */
2180 insn_size
= dwarf2_parse_byte(&traverse
);
2181 default_stmt
= dwarf2_parse_byte(&traverse
);
2182 line_base
= (signed char)dwarf2_parse_byte(&traverse
);
2183 line_range
= dwarf2_parse_byte(&traverse
);
2184 opcode_base
= dwarf2_parse_byte(&traverse
);
2186 opcode_len
= traverse
.data
;
2187 traverse
.data
+= opcode_base
- 1;
2189 vector_init(&dirs
, sizeof(const char*), 4);
2190 p
= vector_add(&dirs
, &ctx
->pool
);
2191 *p
= compile_dir
? compile_dir
: ".";
2192 while (*traverse
.data
)
2194 const char* rel
= (const char*)traverse
.data
;
2195 unsigned rellen
= strlen(rel
);
2196 TRACE("Got include %s\n", rel
);
2197 traverse
.data
+= rellen
+ 1;
2198 p
= vector_add(&dirs
, &ctx
->pool
);
2200 if (*rel
== '/' || !compile_dir
)
2204 /* include directory relative to compile directory */
2205 unsigned baselen
= strlen(compile_dir
);
2206 char* tmp
= pool_alloc(&ctx
->pool
, baselen
+ 1 + rellen
+ 1);
2207 strcpy(tmp
, compile_dir
);
2208 if (tmp
[baselen
- 1] != '/') tmp
[baselen
++] = '/';
2209 strcpy(&tmp
[baselen
], rel
);
2216 vector_init(&files
, sizeof(unsigned), 16);
2217 while (*traverse
.data
)
2219 unsigned int dir_index
, mod_time
;
2224 name
= (const char*)traverse
.data
;
2225 traverse
.data
+= strlen(name
) + 1;
2226 dir_index
= dwarf2_leb128_as_unsigned(&traverse
);
2227 mod_time
= dwarf2_leb128_as_unsigned(&traverse
);
2228 length
= dwarf2_leb128_as_unsigned(&traverse
);
2229 dir
= *(const char**)vector_at(&dirs
, dir_index
);
2230 TRACE("Got file %s/%s (%u,%lu)\n", dir
, name
, mod_time
, length
);
2231 psrc
= vector_add(&files
, &ctx
->pool
);
2232 *psrc
= source_new(ctx
->module
, dir
, name
);
2236 while (traverse
.data
< traverse
.end_data
)
2238 unsigned long address
= 0;
2241 unsigned is_stmt
= default_stmt
;
2242 BOOL end_sequence
= FALSE
;
2243 unsigned opcode
, extopcode
, i
;
2245 while (!end_sequence
)
2247 opcode
= dwarf2_parse_byte(&traverse
);
2248 TRACE("Got opcode %x\n", opcode
);
2250 if (opcode
>= opcode_base
)
2252 unsigned delta
= opcode
- opcode_base
;
2254 address
+= (delta
/ line_range
) * insn_size
;
2255 line
+= line_base
+ (delta
% line_range
);
2256 dwarf2_set_line_number(ctx
->module
, address
, &files
, file
, line
);
2263 dwarf2_set_line_number(ctx
->module
, address
, &files
, file
, line
);
2265 case DW_LNS_advance_pc
:
2266 address
+= insn_size
* dwarf2_leb128_as_unsigned(&traverse
);
2268 case DW_LNS_advance_line
:
2269 line
+= dwarf2_leb128_as_signed(&traverse
);
2271 case DW_LNS_set_file
:
2272 file
= dwarf2_leb128_as_unsigned(&traverse
);
2274 case DW_LNS_set_column
:
2275 dwarf2_leb128_as_unsigned(&traverse
);
2277 case DW_LNS_negate_stmt
:
2280 case DW_LNS_set_basic_block
:
2282 case DW_LNS_const_add_pc
:
2283 address
+= ((255 - opcode_base
) / line_range
) * insn_size
;
2285 case DW_LNS_fixed_advance_pc
:
2286 address
+= dwarf2_parse_u2(&traverse
);
2288 case DW_LNS_extended_op
:
2289 dwarf2_leb128_as_unsigned(&traverse
);
2290 extopcode
= dwarf2_parse_byte(&traverse
);
2293 case DW_LNE_end_sequence
:
2294 dwarf2_set_line_number(ctx
->module
, address
, &files
, file
, line
);
2295 end_sequence
= TRUE
;
2297 case DW_LNE_set_address
:
2298 address
= ctx
->load_offset
+ dwarf2_parse_addr(&traverse
);
2300 case DW_LNE_define_file
:
2301 FIXME("not handled define file %s\n", traverse
.data
);
2302 traverse
.data
+= strlen((const char *)traverse
.data
) + 1;
2303 dwarf2_leb128_as_unsigned(&traverse
);
2304 dwarf2_leb128_as_unsigned(&traverse
);
2305 dwarf2_leb128_as_unsigned(&traverse
);
2307 case DW_LNE_set_discriminator
:
2311 descr
= dwarf2_leb128_as_unsigned(&traverse
);
2312 WARN("not handled discriminator %x\n", descr
);
2316 FIXME("Unsupported extended opcode %x\n", extopcode
);
2321 WARN("Unsupported opcode %x\n", opcode
);
2322 for (i
= 0; i
< opcode_len
[opcode
]; i
++)
2323 dwarf2_leb128_as_unsigned(&traverse
);
2332 static BOOL
dwarf2_parse_compilation_unit(const dwarf2_section_t
* sections
,
2333 struct module
* module
,
2334 const struct elf_thunk_area
* thunks
,
2335 dwarf2_traverse_context_t
* mod_ctx
,
2336 unsigned long load_offset
)
2338 dwarf2_parse_context_t ctx
;
2339 dwarf2_traverse_context_t abbrev_ctx
;
2340 dwarf2_debug_info_t
* di
;
2341 dwarf2_traverse_context_t cu_ctx
;
2342 const unsigned char* comp_unit_start
= mod_ctx
->data
;
2343 unsigned long cu_length
;
2344 unsigned short cu_version
;
2345 unsigned long cu_abbrev_offset
;
2348 cu_length
= dwarf2_parse_u4(mod_ctx
);
2349 cu_ctx
.data
= mod_ctx
->data
;
2350 cu_ctx
.end_data
= mod_ctx
->data
+ cu_length
;
2351 mod_ctx
->data
+= cu_length
;
2352 cu_version
= dwarf2_parse_u2(&cu_ctx
);
2353 cu_abbrev_offset
= dwarf2_parse_u4(&cu_ctx
);
2354 cu_ctx
.word_size
= dwarf2_parse_byte(&cu_ctx
);
2356 TRACE("Compilation Unit Header found at 0x%x:\n",
2357 (int)(comp_unit_start
- sections
[section_debug
].address
));
2358 TRACE("- length: %lu\n", cu_length
);
2359 TRACE("- version: %u\n", cu_version
);
2360 TRACE("- abbrev_offset: %lu\n", cu_abbrev_offset
);
2361 TRACE("- word_size: %u\n", cu_ctx
.word_size
);
2363 if (cu_version
!= 2)
2365 WARN("%u DWARF version unsupported. Wine dbghelp only support DWARF 2.\n",
2370 module
->format_info
[DFI_DWARF
]->u
.dwarf2_info
->word_size
= cu_ctx
.word_size
;
2371 mod_ctx
->word_size
= cu_ctx
.word_size
;
2373 pool_init(&ctx
.pool
, 65536);
2374 ctx
.sections
= sections
;
2375 ctx
.section
= section_debug
;
2376 ctx
.module
= module
;
2377 ctx
.thunks
= thunks
;
2378 ctx
.load_offset
= load_offset
;
2379 ctx
.ref_offset
= comp_unit_start
- sections
[section_debug
].address
;
2380 memset(ctx
.symt_cache
, 0, sizeof(ctx
.symt_cache
));
2381 ctx
.symt_cache
[sc_void
] = &symt_new_basic(module
, btVoid
, "void", 0)->symt
;
2382 ctx
.cpp_name
= NULL
;
2384 abbrev_ctx
.data
= sections
[section_abbrev
].address
+ cu_abbrev_offset
;
2385 abbrev_ctx
.end_data
= sections
[section_abbrev
].address
+ sections
[section_abbrev
].size
;
2386 abbrev_ctx
.word_size
= cu_ctx
.word_size
;
2387 dwarf2_parse_abbrev_set(&abbrev_ctx
, &ctx
.abbrev_table
, &ctx
.pool
);
2389 sparse_array_init(&ctx
.debug_info_table
, sizeof(dwarf2_debug_info_t
), 128);
2390 dwarf2_read_one_debug_info(&ctx
, &cu_ctx
, NULL
, &di
);
2392 if (di
->abbrev
->tag
== DW_TAG_compile_unit
)
2394 struct attribute name
;
2395 struct vector
* children
;
2396 dwarf2_debug_info_t
* child
= NULL
;
2398 struct attribute stmt_list
, low_pc
;
2399 struct attribute comp_dir
;
2401 if (!dwarf2_find_attribute(&ctx
, di
, DW_AT_name
, &name
))
2402 name
.u
.string
= NULL
;
2404 /* get working directory of current compilation unit */
2405 if (!dwarf2_find_attribute(&ctx
, di
, DW_AT_comp_dir
, &comp_dir
))
2406 comp_dir
.u
.string
= NULL
;
2408 if (!dwarf2_find_attribute(&ctx
, di
, DW_AT_low_pc
, &low_pc
))
2409 low_pc
.u
.uvalue
= 0;
2410 ctx
.compiland
= symt_new_compiland(module
, ctx
.load_offset
+ low_pc
.u
.uvalue
,
2411 source_new(module
, comp_dir
.u
.string
, name
.u
.string
));
2412 di
->symt
= &ctx
.compiland
->symt
;
2413 children
= dwarf2_get_di_children(&ctx
, di
);
2414 if (children
) for (i
= 0; i
< vector_length(children
); i
++)
2416 child
= *(dwarf2_debug_info_t
**)vector_at(children
, i
);
2417 dwarf2_load_one_entry(&ctx
, child
);
2419 if (dwarf2_find_attribute(&ctx
, di
, DW_AT_stmt_list
, &stmt_list
))
2421 if (dwarf2_parse_line_numbers(sections
, &ctx
, comp_dir
.u
.string
, stmt_list
.u
.uvalue
))
2422 module
->module
.LineNumbers
= TRUE
;
2426 else FIXME("Should have a compilation unit here\n");
2427 pool_destroy(&ctx
.pool
);
2431 static BOOL
dwarf2_lookup_loclist(const struct module_format
* modfmt
, const BYTE
* start
,
2432 unsigned long ip
, dwarf2_traverse_context_t
* lctx
)
2435 const BYTE
* ptr
= start
;
2438 while (ptr
< modfmt
->u
.dwarf2_info
->debug_loc
.address
+ modfmt
->u
.dwarf2_info
->debug_loc
.size
)
2440 beg
= dwarf2_get_addr(ptr
, modfmt
->u
.dwarf2_info
->word_size
); ptr
+= modfmt
->u
.dwarf2_info
->word_size
;
2441 end
= dwarf2_get_addr(ptr
, modfmt
->u
.dwarf2_info
->word_size
); ptr
+= modfmt
->u
.dwarf2_info
->word_size
;
2442 if (!beg
&& !end
) break;
2443 len
= dwarf2_get_u2(ptr
); ptr
+= 2;
2445 if (beg
<= ip
&& ip
< end
)
2448 lctx
->end_data
= ptr
+ len
;
2449 lctx
->word_size
= modfmt
->u
.dwarf2_info
->word_size
;
2454 WARN("Couldn't find ip in location list\n");
2458 static enum location_error
loc_compute_frame(struct process
* pcs
,
2459 const struct module_format
* modfmt
,
2460 const struct symt_function
* func
,
2461 DWORD_PTR ip
, struct location
* frame
)
2463 struct symt
** psym
= NULL
;
2464 struct location
* pframe
;
2465 dwarf2_traverse_context_t lctx
;
2466 enum location_error err
;
2469 for (i
=0; i
<vector_length(&func
->vchildren
); i
++)
2471 psym
= vector_at(&func
->vchildren
, i
);
2472 if ((*psym
)->tag
== SymTagCustom
)
2474 pframe
= &((struct symt_hierarchy_point
*)*psym
)->loc
;
2476 /* First, recompute the frame information, if needed */
2477 switch (pframe
->kind
)
2483 case loc_dwarf2_location_list
:
2484 WARN("Searching loclist for %s\n", func
->hash_elt
.name
);
2485 if (!dwarf2_lookup_loclist(modfmt
,
2486 modfmt
->u
.dwarf2_info
->debug_loc
.address
+ pframe
->offset
,
2488 return loc_err_out_of_scope
;
2489 if ((err
= compute_location(&lctx
, frame
, pcs
->handle
, NULL
)) < 0) return err
;
2490 if (frame
->kind
>= loc_user
)
2492 WARN("Couldn't compute runtime frame location\n");
2493 return loc_err_too_complex
;
2497 WARN("Unsupported frame kind %d\n", pframe
->kind
);
2498 return loc_err_internal
;
2503 WARN("Couldn't find Custom function point, whilst location list offset is searched\n");
2504 return loc_err_internal
;
2509 RULE_UNSET
, /* not set at all */
2510 RULE_UNDEFINED
, /* undefined value */
2511 RULE_SAME
, /* same value as previous frame */
2512 RULE_CFA_OFFSET
, /* stored at cfa offset */
2513 RULE_OTHER_REG
, /* stored in other register */
2514 RULE_EXPRESSION
, /* address specified by expression */
2515 RULE_VAL_EXPRESSION
/* value specified by expression */
2518 /* make it large enough for all CPUs */
2519 #define NB_FRAME_REGS 64
2520 #define MAX_SAVED_STATES 16
2524 ULONG_PTR cfa_offset
;
2525 unsigned char cfa_reg
;
2526 enum reg_rule cfa_rule
;
2527 enum reg_rule rules
[NB_FRAME_REGS
];
2528 ULONG_PTR regs
[NB_FRAME_REGS
];
2534 ULONG_PTR code_align
;
2535 LONG_PTR data_align
;
2536 unsigned char retaddr_reg
;
2537 unsigned char fde_encoding
;
2538 unsigned char lsda_encoding
;
2539 unsigned char signal_frame
;
2540 unsigned char aug_z_format
;
2541 unsigned char state_sp
;
2542 struct frame_state state
;
2543 struct frame_state state_stack
[MAX_SAVED_STATES
];
2546 static ULONG_PTR
dwarf2_parse_augmentation_ptr(dwarf2_traverse_context_t
* ctx
, unsigned char encoding
)
2550 if (encoding
== DW_EH_PE_omit
) return 0;
2552 switch (encoding
& 0xf0)
2557 case DW_EH_PE_pcrel
:
2558 base
= (ULONG_PTR
)ctx
->data
;
2561 FIXME("unsupported encoding %02x\n", encoding
);
2565 switch (encoding
& 0x0f)
2567 case DW_EH_PE_native
:
2568 return base
+ dwarf2_parse_addr(ctx
);
2569 case DW_EH_PE_leb128
:
2570 return base
+ dwarf2_leb128_as_unsigned(ctx
);
2571 case DW_EH_PE_data2
:
2572 return base
+ dwarf2_parse_u2(ctx
);
2573 case DW_EH_PE_data4
:
2574 return base
+ dwarf2_parse_u4(ctx
);
2575 case DW_EH_PE_data8
:
2576 return base
+ dwarf2_parse_u8(ctx
);
2577 case DW_EH_PE_signed
|DW_EH_PE_leb128
:
2578 return base
+ dwarf2_leb128_as_signed(ctx
);
2579 case DW_EH_PE_signed
|DW_EH_PE_data2
:
2580 return base
+ (signed short)dwarf2_parse_u2(ctx
);
2581 case DW_EH_PE_signed
|DW_EH_PE_data4
:
2582 return base
+ (signed int)dwarf2_parse_u4(ctx
);
2583 case DW_EH_PE_signed
|DW_EH_PE_data8
:
2584 return base
+ (LONG64
)dwarf2_parse_u8(ctx
);
2586 FIXME("unsupported encoding %02x\n", encoding
);
2591 static BOOL
parse_cie_details(dwarf2_traverse_context_t
* ctx
, struct frame_info
* info
)
2593 unsigned char version
;
2594 const char* augmentation
;
2595 const unsigned char* end
;
2598 memset(info
, 0, sizeof(*info
));
2599 info
->lsda_encoding
= DW_EH_PE_omit
;
2600 info
->aug_z_format
= 0;
2602 /* parse the CIE first */
2603 version
= dwarf2_parse_byte(ctx
);
2606 FIXME("unknown CIE version %u at %p\n", version
, ctx
->data
- 1);
2609 augmentation
= (const char*)ctx
->data
;
2610 ctx
->data
+= strlen(augmentation
) + 1;
2612 info
->code_align
= dwarf2_leb128_as_unsigned(ctx
);
2613 info
->data_align
= dwarf2_leb128_as_signed(ctx
);
2614 info
->retaddr_reg
= dwarf2_parse_byte(ctx
);
2615 info
->state
.cfa_rule
= RULE_CFA_OFFSET
;
2618 TRACE("\tparsing augmentation %s\n", augmentation
);
2619 if (*augmentation
) do
2621 switch (*augmentation
)
2624 len
= dwarf2_leb128_as_unsigned(ctx
);
2625 end
= ctx
->data
+ len
;
2626 info
->aug_z_format
= 1;
2629 info
->lsda_encoding
= dwarf2_parse_byte(ctx
);
2633 unsigned char encoding
= dwarf2_parse_byte(ctx
);
2634 /* throw away the indirect bit, as we don't care for the result */
2635 encoding
&= ~DW_EH_PE_indirect
;
2636 dwarf2_parse_augmentation_ptr(ctx
, encoding
); /* handler */
2640 info
->fde_encoding
= dwarf2_parse_byte(ctx
);
2643 info
->signal_frame
= 1;
2646 FIXME("unknown augmentation '%c'\n", *augmentation
);
2647 if (!end
) return FALSE
;
2649 } while (*++augmentation
);
2650 if (end
) ctx
->data
= end
;
2654 static BOOL
dwarf2_get_cie(unsigned long addr
, struct module
* module
, DWORD_PTR delta
,
2655 dwarf2_traverse_context_t
* fde_ctx
, dwarf2_traverse_context_t
* cie_ctx
,
2656 struct frame_info
* info
, BOOL in_eh_frame
)
2658 const unsigned char* ptr_blk
;
2659 const unsigned char* cie_ptr
;
2660 const unsigned char* last_cie_ptr
= (const unsigned char*)~0;
2662 unsigned long start
, range
;
2664 const BYTE
* start_data
= fde_ctx
->data
;
2666 cie_id
= in_eh_frame
? 0 : DW_CIE_ID
;
2667 /* skip 0-padding at beginning of section (alignment) */
2668 while (fde_ctx
->data
+ 2 * 4 < fde_ctx
->end_data
)
2670 if (dwarf2_parse_u4(fde_ctx
))
2676 for (; fde_ctx
->data
+ 2 * 4 < fde_ctx
->end_data
; fde_ctx
->data
= ptr_blk
)
2678 /* find the FDE for address addr (skip CIE) */
2679 len
= dwarf2_parse_u4(fde_ctx
);
2680 if (len
== 0xffffffff) FIXME("Unsupported yet 64-bit CIEs\n");
2681 ptr_blk
= fde_ctx
->data
+ len
;
2682 id
= dwarf2_parse_u4(fde_ctx
);
2685 last_cie_ptr
= fde_ctx
->data
- 8;
2686 /* we need some bits out of the CIE in order to parse all contents */
2687 if (!parse_cie_details(fde_ctx
, info
)) return FALSE
;
2688 cie_ctx
->data
= fde_ctx
->data
;
2689 cie_ctx
->end_data
= ptr_blk
;
2690 cie_ctx
->word_size
= fde_ctx
->word_size
;
2693 cie_ptr
= (in_eh_frame
) ? fde_ctx
->data
- id
- 4 : start_data
+ id
;
2694 if (cie_ptr
!= last_cie_ptr
)
2696 last_cie_ptr
= cie_ptr
;
2697 cie_ctx
->data
= cie_ptr
;
2698 cie_ctx
->word_size
= fde_ctx
->word_size
;
2699 cie_ctx
->end_data
= cie_ptr
+ 4;
2700 cie_ctx
->end_data
= cie_ptr
+ 4 + dwarf2_parse_u4(cie_ctx
);
2701 if (dwarf2_parse_u4(cie_ctx
) != cie_id
)
2703 FIXME("wrong CIE pointer at %x from FDE %x\n",
2704 (unsigned)(cie_ptr
- start_data
),
2705 (unsigned)(fde_ctx
->data
- start_data
));
2708 if (!parse_cie_details(cie_ctx
, info
)) return FALSE
;
2710 start
= delta
+ dwarf2_parse_augmentation_ptr(fde_ctx
, info
->fde_encoding
);
2711 range
= dwarf2_parse_augmentation_ptr(fde_ctx
, info
->fde_encoding
& 0x0F);
2713 if (addr
>= start
&& addr
< start
+ range
)
2715 /* reset the FDE context */
2716 fde_ctx
->end_data
= ptr_blk
;
2725 static int valid_reg(ULONG_PTR reg
)
2727 if (reg
>= NB_FRAME_REGS
) FIXME("unsupported reg %lx\n", reg
);
2728 return (reg
< NB_FRAME_REGS
);
2731 static void execute_cfa_instructions(dwarf2_traverse_context_t
* ctx
,
2732 ULONG_PTR last_ip
, struct frame_info
*info
)
2734 while (ctx
->data
< ctx
->end_data
&& info
->ip
<= last_ip
+ info
->signal_frame
)
2736 enum dwarf_call_frame_info op
= dwarf2_parse_byte(ctx
);
2742 case DW_CFA_advance_loc
:
2744 ULONG_PTR offset
= (op
& 0x3f) * info
->code_align
;
2745 TRACE("%lx: DW_CFA_advance_loc %lu\n", info
->ip
, offset
);
2751 ULONG_PTR reg
= op
& 0x3f;
2752 LONG_PTR offset
= dwarf2_leb128_as_unsigned(ctx
) * info
->data_align
;
2753 if (!valid_reg(reg
)) break;
2754 TRACE("%lx: DW_CFA_offset %s, %ld\n",
2756 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)),
2758 info
->state
.regs
[reg
] = offset
;
2759 info
->state
.rules
[reg
] = RULE_CFA_OFFSET
;
2762 case DW_CFA_restore
:
2764 ULONG_PTR reg
= op
& 0x3f;
2765 if (!valid_reg(reg
)) break;
2766 TRACE("%lx: DW_CFA_restore %s\n",
2768 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)));
2769 info
->state
.rules
[reg
] = RULE_UNSET
;
2778 case DW_CFA_set_loc
:
2780 ULONG_PTR loc
= dwarf2_parse_augmentation_ptr(ctx
, info
->fde_encoding
);
2781 TRACE("%lx: DW_CFA_set_loc %lx\n", info
->ip
, loc
);
2785 case DW_CFA_advance_loc1
:
2787 ULONG_PTR offset
= dwarf2_parse_byte(ctx
) * info
->code_align
;
2788 TRACE("%lx: DW_CFA_advance_loc1 %lu\n", info
->ip
, offset
);
2792 case DW_CFA_advance_loc2
:
2794 ULONG_PTR offset
= dwarf2_parse_u2(ctx
) * info
->code_align
;
2795 TRACE("%lx: DW_CFA_advance_loc2 %lu\n", info
->ip
, offset
);
2799 case DW_CFA_advance_loc4
:
2801 ULONG_PTR offset
= dwarf2_parse_u4(ctx
) * info
->code_align
;
2802 TRACE("%lx: DW_CFA_advance_loc4 %lu\n", info
->ip
, offset
);
2806 case DW_CFA_offset_extended
:
2807 case DW_CFA_offset_extended_sf
:
2809 ULONG_PTR reg
= dwarf2_leb128_as_unsigned(ctx
);
2810 LONG_PTR offset
= (op
== DW_CFA_offset_extended
) ? dwarf2_leb128_as_unsigned(ctx
) * info
->data_align
2811 : dwarf2_leb128_as_signed(ctx
) * info
->data_align
;
2812 if (!valid_reg(reg
)) break;
2813 TRACE("%lx: DW_CFA_offset_extended %s, %ld\n",
2815 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)),
2817 info
->state
.regs
[reg
] = offset
;
2818 info
->state
.rules
[reg
] = RULE_CFA_OFFSET
;
2821 case DW_CFA_restore_extended
:
2823 ULONG_PTR reg
= dwarf2_leb128_as_unsigned(ctx
);
2824 if (!valid_reg(reg
)) break;
2825 TRACE("%lx: DW_CFA_restore_extended %s\n",
2827 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)));
2828 info
->state
.rules
[reg
] = RULE_UNSET
;
2831 case DW_CFA_undefined
:
2833 ULONG_PTR reg
= dwarf2_leb128_as_unsigned(ctx
);
2834 if (!valid_reg(reg
)) break;
2835 TRACE("%lx: DW_CFA_undefined %s\n",
2837 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)));
2838 info
->state
.rules
[reg
] = RULE_UNDEFINED
;
2841 case DW_CFA_same_value
:
2843 ULONG_PTR reg
= dwarf2_leb128_as_unsigned(ctx
);
2844 if (!valid_reg(reg
)) break;
2845 TRACE("%lx: DW_CFA_same_value %s\n",
2847 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)));
2848 info
->state
.regs
[reg
] = reg
;
2849 info
->state
.rules
[reg
] = RULE_SAME
;
2852 case DW_CFA_register
:
2854 ULONG_PTR reg
= dwarf2_leb128_as_unsigned(ctx
);
2855 ULONG_PTR reg2
= dwarf2_leb128_as_unsigned(ctx
);
2856 if (!valid_reg(reg
) || !valid_reg(reg2
)) break;
2857 TRACE("%lx: DW_CFA_register %s == %s\n",
2859 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)),
2860 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg2
)));
2861 info
->state
.regs
[reg
] = reg2
;
2862 info
->state
.rules
[reg
] = RULE_OTHER_REG
;
2865 case DW_CFA_remember_state
:
2866 TRACE("%lx: DW_CFA_remember_state\n", info
->ip
);
2867 if (info
->state_sp
>= MAX_SAVED_STATES
)
2868 FIXME("%lx: DW_CFA_remember_state too many nested saves\n", info
->ip
);
2870 info
->state_stack
[info
->state_sp
++] = info
->state
;
2872 case DW_CFA_restore_state
:
2873 TRACE("%lx: DW_CFA_restore_state\n", info
->ip
);
2874 if (!info
->state_sp
)
2875 FIXME("%lx: DW_CFA_restore_state without corresponding save\n", info
->ip
);
2877 info
->state
= info
->state_stack
[--info
->state_sp
];
2879 case DW_CFA_def_cfa
:
2880 case DW_CFA_def_cfa_sf
:
2882 ULONG_PTR reg
= dwarf2_leb128_as_unsigned(ctx
);
2883 ULONG_PTR offset
= (op
== DW_CFA_def_cfa
) ? dwarf2_leb128_as_unsigned(ctx
)
2884 : dwarf2_leb128_as_signed(ctx
) * info
->data_align
;
2885 if (!valid_reg(reg
)) break;
2886 TRACE("%lx: DW_CFA_def_cfa %s, %ld\n",
2888 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)),
2890 info
->state
.cfa_reg
= reg
;
2891 info
->state
.cfa_offset
= offset
;
2892 info
->state
.cfa_rule
= RULE_CFA_OFFSET
;
2895 case DW_CFA_def_cfa_register
:
2897 ULONG_PTR reg
= dwarf2_leb128_as_unsigned(ctx
);
2898 if (!valid_reg(reg
)) break;
2899 TRACE("%lx: DW_CFA_def_cfa_register %s\n",
2901 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)));
2902 info
->state
.cfa_reg
= reg
;
2903 info
->state
.cfa_rule
= RULE_CFA_OFFSET
;
2906 case DW_CFA_def_cfa_offset
:
2907 case DW_CFA_def_cfa_offset_sf
:
2909 ULONG_PTR offset
= (op
== DW_CFA_def_cfa_offset
) ? dwarf2_leb128_as_unsigned(ctx
)
2910 : dwarf2_leb128_as_signed(ctx
) * info
->data_align
;
2911 TRACE("%lx: DW_CFA_def_cfa_offset %ld\n", info
->ip
, offset
);
2912 info
->state
.cfa_offset
= offset
;
2913 info
->state
.cfa_rule
= RULE_CFA_OFFSET
;
2916 case DW_CFA_def_cfa_expression
:
2918 ULONG_PTR expr
= (ULONG_PTR
)ctx
->data
;
2919 ULONG_PTR len
= dwarf2_leb128_as_unsigned(ctx
);
2920 TRACE("%lx: DW_CFA_def_cfa_expression %lx-%lx\n", info
->ip
, expr
, expr
+len
);
2921 info
->state
.cfa_offset
= expr
;
2922 info
->state
.cfa_rule
= RULE_VAL_EXPRESSION
;
2926 case DW_CFA_expression
:
2927 case DW_CFA_val_expression
:
2929 ULONG_PTR reg
= dwarf2_leb128_as_unsigned(ctx
);
2930 ULONG_PTR expr
= (ULONG_PTR
)ctx
->data
;
2931 ULONG_PTR len
= dwarf2_leb128_as_unsigned(ctx
);
2932 if (!valid_reg(reg
)) break;
2933 TRACE("%lx: DW_CFA_%sexpression %s %lx-%lx\n",
2934 info
->ip
, (op
== DW_CFA_expression
) ? "" : "val_",
2935 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(reg
)),
2937 info
->state
.regs
[reg
] = expr
;
2938 info
->state
.rules
[reg
] = (op
== DW_CFA_expression
) ? RULE_EXPRESSION
: RULE_VAL_EXPRESSION
;
2942 case DW_CFA_GNU_args_size
:
2943 /* FIXME: should check that GCC is the compiler for this CU */
2945 ULONG_PTR args
= dwarf2_leb128_as_unsigned(ctx
);
2946 TRACE("%lx: DW_CFA_GNU_args_size %lu\n", info
->ip
, args
);
2951 FIXME("%lx: unknown CFA opcode %02x\n", info
->ip
, op
);
2957 /* retrieve a context register from its dwarf number */
2958 static ULONG_PTR
get_context_reg(CONTEXT
*context
, ULONG_PTR dw_reg
)
2960 unsigned regno
= dbghelp_current_cpu
->map_dwarf_register(dw_reg
), sz
;
2961 ULONG_PTR
* ptr
= dbghelp_current_cpu
->fetch_context_reg(context
, regno
, &sz
);
2963 if (sz
!= sizeof(ULONG_PTR
))
2965 FIXME("reading register %lu/%u of wrong size %u\n", dw_reg
, regno
, sz
);
2971 /* set a context register from its dwarf number */
2972 static void set_context_reg(struct cpu_stack_walk
* csw
, CONTEXT
*context
, ULONG_PTR dw_reg
,
2973 ULONG_PTR val
, BOOL isdebuggee
)
2975 unsigned regno
= dbghelp_current_cpu
->map_dwarf_register(dw_reg
), sz
;
2976 ULONG_PTR
* ptr
= dbghelp_current_cpu
->fetch_context_reg(context
, regno
, &sz
);
2982 if (sz
> sizeof(tmp
))
2984 FIXME("register %lu/%u size is too wide: %u\n", dw_reg
, regno
, sz
);
2987 if (!sw_read_mem(csw
, val
, tmp
, sz
))
2989 WARN("Couldn't read memory at %p\n", (void*)val
);
2992 memcpy(ptr
, tmp
, sz
);
2996 if (sz
!= sizeof(ULONG_PTR
))
2998 FIXME("assigning to register %lu/%u of wrong size %u\n", dw_reg
, regno
, sz
);
3005 /* copy a register from one context to another using dwarf number */
3006 static void copy_context_reg(CONTEXT
*dstcontext
, ULONG_PTR dwregdst
, CONTEXT
* srccontext
, ULONG_PTR dwregsrc
)
3008 unsigned regdstno
= dbghelp_current_cpu
->map_dwarf_register(dwregdst
), szdst
;
3009 unsigned regsrcno
= dbghelp_current_cpu
->map_dwarf_register(dwregsrc
), szsrc
;
3010 ULONG_PTR
* ptrdst
= dbghelp_current_cpu
->fetch_context_reg(dstcontext
, regdstno
, &szdst
);
3011 ULONG_PTR
* ptrsrc
= dbghelp_current_cpu
->fetch_context_reg(srccontext
, regsrcno
, &szsrc
);
3015 FIXME("Cannot copy register %lu/%u => %lu/%u because of size mismatch (%u => %u)\n",
3016 dwregsrc
, regsrcno
, dwregdst
, regdstno
, szsrc
, szdst
);
3019 memcpy(ptrdst
, ptrsrc
, szdst
);
3022 static ULONG_PTR
eval_expression(const struct module
* module
, struct cpu_stack_walk
* csw
,
3023 const unsigned char* zp
, CONTEXT
*context
)
3025 dwarf2_traverse_context_t ctx
;
3026 ULONG_PTR reg
, sz
, tmp
, stack
[64];
3031 ctx
.end_data
= zp
+ 4;
3032 len
= dwarf2_leb128_as_unsigned(&ctx
);
3033 ctx
.end_data
= ctx
.data
+ len
;
3034 ctx
.word_size
= module
->format_info
[DFI_DWARF
]->u
.dwarf2_info
->word_size
;
3036 while (ctx
.data
< ctx
.end_data
)
3038 unsigned char opcode
= dwarf2_parse_byte(&ctx
);
3040 if (opcode
>= DW_OP_lit0
&& opcode
<= DW_OP_lit31
)
3041 stack
[++sp
] = opcode
- DW_OP_lit0
;
3042 else if (opcode
>= DW_OP_reg0
&& opcode
<= DW_OP_reg31
)
3043 stack
[++sp
] = get_context_reg(context
, opcode
- DW_OP_reg0
);
3044 else if (opcode
>= DW_OP_breg0
&& opcode
<= DW_OP_breg31
)
3045 stack
[++sp
] = get_context_reg(context
, opcode
- DW_OP_breg0
) + dwarf2_leb128_as_signed(&ctx
);
3046 else switch (opcode
)
3048 case DW_OP_nop
: break;
3049 case DW_OP_addr
: stack
[++sp
] = dwarf2_parse_addr(&ctx
); break;
3050 case DW_OP_const1u
: stack
[++sp
] = dwarf2_parse_byte(&ctx
); break;
3051 case DW_OP_const1s
: stack
[++sp
] = (signed char)dwarf2_parse_byte(&ctx
); break;
3052 case DW_OP_const2u
: stack
[++sp
] = dwarf2_parse_u2(&ctx
); break;
3053 case DW_OP_const2s
: stack
[++sp
] = (short)dwarf2_parse_u2(&ctx
); break;
3054 case DW_OP_const4u
: stack
[++sp
] = dwarf2_parse_u4(&ctx
); break;
3055 case DW_OP_const4s
: stack
[++sp
] = (signed int)dwarf2_parse_u4(&ctx
); break;
3056 case DW_OP_const8u
: stack
[++sp
] = dwarf2_parse_u8(&ctx
); break;
3057 case DW_OP_const8s
: stack
[++sp
] = (LONG_PTR
)dwarf2_parse_u8(&ctx
); break;
3058 case DW_OP_constu
: stack
[++sp
] = dwarf2_leb128_as_unsigned(&ctx
); break;
3059 case DW_OP_consts
: stack
[++sp
] = dwarf2_leb128_as_signed(&ctx
); break;
3061 if (!sw_read_mem(csw
, stack
[sp
], &tmp
, sizeof(tmp
)))
3063 ERR("Couldn't read memory at %lx\n", stack
[sp
]);
3068 case DW_OP_dup
: stack
[sp
+ 1] = stack
[sp
]; sp
++; break;
3069 case DW_OP_drop
: sp
--; break;
3070 case DW_OP_over
: stack
[sp
+ 1] = stack
[sp
- 1]; sp
++; break;
3071 case DW_OP_pick
: stack
[sp
+ 1] = stack
[sp
- dwarf2_parse_byte(&ctx
)]; sp
++; break;
3072 case DW_OP_swap
: tmp
= stack
[sp
]; stack
[sp
] = stack
[sp
-1]; stack
[sp
-1] = tmp
; break;
3073 case DW_OP_rot
: tmp
= stack
[sp
]; stack
[sp
] = stack
[sp
-1]; stack
[sp
-1] = stack
[sp
-2]; stack
[sp
-2] = tmp
; break;
3074 case DW_OP_abs
: stack
[sp
] = labs(stack
[sp
]); break;
3075 case DW_OP_neg
: stack
[sp
] = -stack
[sp
]; break;
3076 case DW_OP_not
: stack
[sp
] = ~stack
[sp
]; break;
3077 case DW_OP_and
: stack
[sp
-1] &= stack
[sp
]; sp
--; break;
3078 case DW_OP_or
: stack
[sp
-1] |= stack
[sp
]; sp
--; break;
3079 case DW_OP_minus
: stack
[sp
-1] -= stack
[sp
]; sp
--; break;
3080 case DW_OP_mul
: stack
[sp
-1] *= stack
[sp
]; sp
--; break;
3081 case DW_OP_plus
: stack
[sp
-1] += stack
[sp
]; sp
--; break;
3082 case DW_OP_xor
: stack
[sp
-1] ^= stack
[sp
]; sp
--; break;
3083 case DW_OP_shl
: stack
[sp
-1] <<= stack
[sp
]; sp
--; break;
3084 case DW_OP_shr
: stack
[sp
-1] >>= stack
[sp
]; sp
--; break;
3085 case DW_OP_plus_uconst
: stack
[sp
] += dwarf2_leb128_as_unsigned(&ctx
); break;
3086 case DW_OP_shra
: stack
[sp
-1] = (LONG_PTR
)stack
[sp
-1] / (1 << stack
[sp
]); sp
--; break;
3087 case DW_OP_div
: stack
[sp
-1] = (LONG_PTR
)stack
[sp
-1] / (LONG_PTR
)stack
[sp
]; sp
--; break;
3088 case DW_OP_mod
: stack
[sp
-1] = (LONG_PTR
)stack
[sp
-1] % (LONG_PTR
)stack
[sp
]; sp
--; break;
3089 case DW_OP_ge
: stack
[sp
-1] = ((LONG_PTR
)stack
[sp
-1] >= (LONG_PTR
)stack
[sp
]); sp
--; break;
3090 case DW_OP_gt
: stack
[sp
-1] = ((LONG_PTR
)stack
[sp
-1] > (LONG_PTR
)stack
[sp
]); sp
--; break;
3091 case DW_OP_le
: stack
[sp
-1] = ((LONG_PTR
)stack
[sp
-1] <= (LONG_PTR
)stack
[sp
]); sp
--; break;
3092 case DW_OP_lt
: stack
[sp
-1] = ((LONG_PTR
)stack
[sp
-1] < (LONG_PTR
)stack
[sp
]); sp
--; break;
3093 case DW_OP_eq
: stack
[sp
-1] = (stack
[sp
-1] == stack
[sp
]); sp
--; break;
3094 case DW_OP_ne
: stack
[sp
-1] = (stack
[sp
-1] != stack
[sp
]); sp
--; break;
3095 case DW_OP_skip
: tmp
= (short)dwarf2_parse_u2(&ctx
); ctx
.data
+= tmp
; break;
3096 case DW_OP_bra
: tmp
= (short)dwarf2_parse_u2(&ctx
); if (!stack
[sp
--]) ctx
.data
+= tmp
; break;
3097 case DW_OP_GNU_encoded_addr
:
3098 tmp
= dwarf2_parse_byte(&ctx
);
3099 stack
[++sp
] = dwarf2_parse_augmentation_ptr(&ctx
, tmp
);
3102 stack
[++sp
] = get_context_reg(context
, dwarf2_leb128_as_unsigned(&ctx
));
3105 reg
= dwarf2_leb128_as_unsigned(&ctx
);
3106 tmp
= dwarf2_leb128_as_signed(&ctx
);
3107 stack
[++sp
] = get_context_reg(context
, reg
) + tmp
;
3109 case DW_OP_deref_size
:
3110 sz
= dwarf2_parse_byte(&ctx
);
3111 if (!sw_read_mem(csw
, stack
[sp
], &tmp
, sz
))
3113 ERR("Couldn't read memory at %lx\n", stack
[sp
]);
3116 /* do integral promotion */
3119 case 1: stack
[sp
] = *(unsigned char*)&tmp
; break;
3120 case 2: stack
[sp
] = *(unsigned short*)&tmp
; break;
3121 case 4: stack
[sp
] = *(unsigned int*)&tmp
; break;
3122 case 8: stack
[sp
] = *(ULONG_PTR
*)&tmp
; break; /* FIXME: won't work on 32bit platform */
3123 default: FIXME("Unknown size for deref 0x%lx\n", sz
);
3127 FIXME("unhandled opcode %02x\n", opcode
);
3133 static void apply_frame_state(const struct module
* module
, struct cpu_stack_walk
* csw
,
3134 CONTEXT
*context
, struct frame_state
*state
, ULONG_PTR
* cfa
)
3138 CONTEXT new_context
= *context
;
3140 switch (state
->cfa_rule
)
3142 case RULE_EXPRESSION
:
3143 *cfa
= eval_expression(module
, csw
, (const unsigned char*)state
->cfa_offset
, context
);
3144 if (!sw_read_mem(csw
, *cfa
, cfa
, sizeof(*cfa
)))
3146 WARN("Couldn't read memory at %p\n", (void*)*cfa
);
3150 case RULE_VAL_EXPRESSION
:
3151 *cfa
= eval_expression(module
, csw
, (const unsigned char*)state
->cfa_offset
, context
);
3154 *cfa
= get_context_reg(context
, state
->cfa_reg
) + state
->cfa_offset
;
3159 for (i
= 0; i
< NB_FRAME_REGS
; i
++)
3161 switch (state
->rules
[i
])
3164 case RULE_UNDEFINED
:
3167 case RULE_CFA_OFFSET
:
3168 set_context_reg(csw
, &new_context
, i
, *cfa
+ state
->regs
[i
], TRUE
);
3170 case RULE_OTHER_REG
:
3171 copy_context_reg(&new_context
, i
, context
, state
->regs
[i
]);
3173 case RULE_EXPRESSION
:
3174 value
= eval_expression(module
, csw
, (const unsigned char*)state
->regs
[i
], context
);
3175 set_context_reg(csw
, &new_context
, i
, value
, TRUE
);
3177 case RULE_VAL_EXPRESSION
:
3178 value
= eval_expression(module
, csw
, (const unsigned char*)state
->regs
[i
], context
);
3179 set_context_reg(csw
, &new_context
, i
, value
, FALSE
);
3183 *context
= new_context
;
3186 /***********************************************************************
3187 * dwarf2_virtual_unwind
3190 BOOL
dwarf2_virtual_unwind(struct cpu_stack_walk
* csw
, ULONG_PTR ip
, CONTEXT
* context
, ULONG_PTR
* cfa
)
3192 struct module_pair pair
;
3193 struct frame_info info
;
3194 dwarf2_traverse_context_t cie_ctx
, fde_ctx
;
3195 struct module_format
* modfmt
;
3196 const unsigned char* end
;
3199 if (!(pair
.pcs
= process_find_by_handle(csw
->hProcess
)) ||
3200 !(pair
.requested
= module_find_by_addr(pair
.pcs
, ip
, DMT_UNKNOWN
)) ||
3201 !module_get_debug(&pair
))
3203 modfmt
= pair
.effective
->format_info
[DFI_DWARF
];
3204 if (!modfmt
) return FALSE
;
3205 memset(&info
, 0, sizeof(info
));
3206 fde_ctx
.data
= modfmt
->u
.dwarf2_info
->eh_frame
.address
;
3207 fde_ctx
.end_data
= fde_ctx
.data
+ modfmt
->u
.dwarf2_info
->eh_frame
.size
;
3208 fde_ctx
.word_size
= modfmt
->u
.dwarf2_info
->word_size
;
3209 /* let offsets relative to the eh_frame sections be correctly computed, as we'll map
3210 * in this process the IMAGE section at a different address as the one expected by
3213 delta
= pair
.effective
->module
.BaseOfImage
+ modfmt
->u
.dwarf2_info
->eh_frame
.rva
-
3214 (DWORD_PTR
)modfmt
->u
.dwarf2_info
->eh_frame
.address
;
3215 if (!dwarf2_get_cie(ip
, pair
.effective
, delta
, &fde_ctx
, &cie_ctx
, &info
, TRUE
))
3217 fde_ctx
.data
= modfmt
->u
.dwarf2_info
->debug_frame
.address
;
3218 fde_ctx
.end_data
= fde_ctx
.data
+ modfmt
->u
.dwarf2_info
->debug_frame
.size
;
3219 fde_ctx
.word_size
= modfmt
->u
.dwarf2_info
->word_size
;
3220 delta
= pair
.effective
->reloc_delta
;
3221 if (!dwarf2_get_cie(ip
, pair
.effective
, delta
, &fde_ctx
, &cie_ctx
, &info
, FALSE
))
3223 TRACE("Couldn't find information for %lx\n", ip
);
3228 TRACE("function %lx/%lx code_align %lu data_align %ld retaddr %s\n",
3229 ip
, info
.ip
, info
.code_align
, info
.data_align
,
3230 dbghelp_current_cpu
->fetch_regname(dbghelp_current_cpu
->map_dwarf_register(info
.retaddr_reg
)));
3232 /* if at very beginning of function, return and use default unwinder */
3233 if (ip
== info
.ip
) return FALSE
;
3234 execute_cfa_instructions(&cie_ctx
, ip
, &info
);
3236 if (info
.aug_z_format
) /* get length of augmentation data */
3238 ULONG_PTR len
= dwarf2_leb128_as_unsigned(&fde_ctx
);
3239 end
= fde_ctx
.data
+ len
;
3242 dwarf2_parse_augmentation_ptr(&fde_ctx
, info
.lsda_encoding
); /* handler_data */
3243 if (end
) fde_ctx
.data
= end
;
3245 execute_cfa_instructions(&fde_ctx
, ip
, &info
);
3246 apply_frame_state(pair
.effective
, csw
, context
, &info
.state
, cfa
);
3251 static void dwarf2_location_compute(struct process
* pcs
,
3252 const struct module_format
* modfmt
,
3253 const struct symt_function
* func
,
3254 struct location
* loc
)
3256 struct location frame
;
3259 dwarf2_traverse_context_t lctx
;
3261 if (!func
->container
|| func
->container
->tag
!= SymTagCompiland
)
3263 WARN("We'd expect function %s's container to exist and be a compiland\n", func
->hash_elt
.name
);
3264 err
= loc_err_internal
;
3268 /* instruction pointer relative to compiland's start */
3269 ip
= pcs
->ctx_frame
.InstructionOffset
- ((struct symt_compiland
*)func
->container
)->address
;
3271 if ((err
= loc_compute_frame(pcs
, modfmt
, func
, ip
, &frame
)) == 0)
3275 case loc_dwarf2_location_list
:
3276 /* Then, if the variable has a location list, find it !! */
3277 if (dwarf2_lookup_loclist(modfmt
,
3278 modfmt
->u
.dwarf2_info
->debug_loc
.address
+ loc
->offset
,
3281 err
= loc_err_out_of_scope
;
3283 case loc_dwarf2_block
:
3284 /* or if we have a copy of an existing block, get ready for it */
3286 unsigned* ptr
= (unsigned*)loc
->offset
;
3288 lctx
.data
= (const BYTE
*)(ptr
+ 1);
3289 lctx
.end_data
= lctx
.data
+ *ptr
;
3290 lctx
.word_size
= modfmt
->u
.dwarf2_info
->word_size
;
3293 /* now get the variable */
3294 err
= compute_location(&lctx
, loc
, pcs
->handle
, &frame
);
3301 WARN("Unsupported local kind %d\n", loc
->kind
);
3302 err
= loc_err_internal
;
3308 loc
->kind
= loc_register
;
3314 static void *zalloc(void *priv
, uInt items
, uInt sz
)
3316 return HeapAlloc(GetProcessHeap(), 0, items
* sz
);
3319 static void zfree(void *priv
, void *addr
)
3321 HeapFree(GetProcessHeap(), 0, addr
);
3324 static inline BOOL
dwarf2_init_zsection(dwarf2_section_t
* section
,
3325 const char* zsectname
,
3326 struct image_section_map
* ism
)
3333 BYTE
*addr
, *sect
= (BYTE
*)image_map_section(ism
);
3334 size_t sz
= image_get_map_size(ism
);
3336 if (sz
<= 12 || memcmp(sect
, "ZLIB", 4))
3338 ERR("invalid compressed section %s\n", zsectname
);
3342 #ifdef WORDS_BIGENDIAN
3343 li
.u
.HighPart
= *(DWORD
*)§
[4];
3344 li
.u
.LowPart
= *(DWORD
*)§
[8];
3346 li
.u
.HighPart
= RtlUlongByteSwap(*(DWORD
*)§
[4]);
3347 li
.u
.LowPart
= RtlUlongByteSwap(*(DWORD
*)§
[8]);
3350 addr
= HeapAlloc(GetProcessHeap(), 0, li
.QuadPart
);
3354 z
.next_in
= §
[12];
3355 z
.avail_in
= sz
- 12;
3360 res
= inflateInit(&z
);
3363 FIXME("inflateInit failed with %i / %s\n", res
, z
.msg
);
3368 z
.next_out
= addr
+ z
.total_out
;
3369 z
.avail_out
= li
.QuadPart
- z
.total_out
;
3370 res
= inflate(&z
, Z_FINISH
);
3371 } while (z
.avail_in
&& res
== Z_STREAM_END
);
3373 if (res
!= Z_STREAM_END
)
3375 FIXME("Decompression failed with %i / %s\n", res
, z
.msg
);
3380 section
->compressed
= TRUE
;
3381 section
->address
= addr
;
3382 section
->rva
= image_get_map_rva(ism
);
3383 section
->size
= z
.total_out
;
3389 HeapFree(GetProcessHeap(), 0, addr
);
3391 image_unmap_section(ism
);
3397 static inline BOOL
dwarf2_init_section(dwarf2_section_t
* section
, struct image_file_map
* fmap
,
3398 const char* sectname
, const char* zsectname
,
3399 struct image_section_map
* ism
)
3401 struct image_section_map local_ism
;
3403 if (!ism
) ism
= &local_ism
;
3405 section
->compressed
= FALSE
;
3406 if (image_find_section(fmap
, sectname
, ism
))
3408 section
->address
= (const BYTE
*)image_map_section(ism
);
3409 section
->size
= image_get_map_size(ism
);
3410 section
->rva
= image_get_map_rva(ism
);
3414 section
->address
= NULL
;
3418 if (zsectname
&& image_find_section(fmap
, zsectname
, ism
))
3421 return dwarf2_init_zsection(section
, zsectname
, ism
);
3423 FIXME("dbghelp not built with zlib, but compressed section found\n" );
3430 static inline void dwarf2_fini_section(dwarf2_section_t
* section
)
3432 if (section
->compressed
)
3433 HeapFree(GetProcessHeap(), 0, (void*)section
->address
);
3436 static void dwarf2_module_remove(struct process
* pcs
, struct module_format
* modfmt
)
3438 dwarf2_fini_section(&modfmt
->u
.dwarf2_info
->debug_loc
);
3439 dwarf2_fini_section(&modfmt
->u
.dwarf2_info
->debug_frame
);
3440 HeapFree(GetProcessHeap(), 0, modfmt
);
3443 BOOL
dwarf2_parse(struct module
* module
, unsigned long load_offset
,
3444 const struct elf_thunk_area
* thunks
,
3445 struct image_file_map
* fmap
)
3447 dwarf2_section_t eh_frame
, section
[section_max
];
3448 dwarf2_traverse_context_t mod_ctx
;
3449 struct image_section_map debug_sect
, debug_str_sect
, debug_abbrev_sect
,
3450 debug_line_sect
, debug_ranges_sect
, eh_frame_sect
;
3452 struct module_format
* dwarf2_modfmt
;
3454 dwarf2_init_section(&eh_frame
, fmap
, ".eh_frame", NULL
, &eh_frame_sect
);
3455 dwarf2_init_section(§ion
[section_debug
], fmap
, ".debug_info", ".zdebug_info", &debug_sect
);
3456 dwarf2_init_section(§ion
[section_abbrev
], fmap
, ".debug_abbrev", ".zdebug_abbrev", &debug_abbrev_sect
);
3457 dwarf2_init_section(§ion
[section_string
], fmap
, ".debug_str", ".zdebug_str", &debug_str_sect
);
3458 dwarf2_init_section(§ion
[section_line
], fmap
, ".debug_line", ".zdebug_line", &debug_line_sect
);
3459 dwarf2_init_section(§ion
[section_ranges
], fmap
, ".debug_ranges", ".zdebug_ranges", &debug_ranges_sect
);
3461 /* to do anything useful we need either .eh_frame or .debug_info */
3462 if ((!eh_frame
.address
|| eh_frame
.address
== IMAGE_NO_MAP
) &&
3463 (!section
[section_debug
].address
|| section
[section_debug
].address
== IMAGE_NO_MAP
))
3469 if (fmap
->modtype
== DMT_ELF
&& debug_sect
.fmap
)
3471 /* debug info might have a different base address than .so file
3472 * when elf file is prelinked after splitting off debug info
3473 * adjust symbol base addresses accordingly
3475 load_offset
+= fmap
->u
.elf
.elf_start
- debug_sect
.fmap
->u
.elf
.elf_start
;
3478 TRACE("Loading Dwarf2 information for %s\n", debugstr_w(module
->module
.ModuleName
));
3480 mod_ctx
.data
= section
[section_debug
].address
;
3481 mod_ctx
.end_data
= mod_ctx
.data
+ section
[section_debug
].size
;
3482 mod_ctx
.word_size
= 0; /* will be correctly set later on */
3484 dwarf2_modfmt
= HeapAlloc(GetProcessHeap(), 0,
3485 sizeof(*dwarf2_modfmt
) + sizeof(*dwarf2_modfmt
->u
.dwarf2_info
));
3491 dwarf2_modfmt
->module
= module
;
3492 dwarf2_modfmt
->remove
= dwarf2_module_remove
;
3493 dwarf2_modfmt
->loc_compute
= dwarf2_location_compute
;
3494 dwarf2_modfmt
->u
.dwarf2_info
= (struct dwarf2_module_info_s
*)(dwarf2_modfmt
+ 1);
3495 dwarf2_modfmt
->u
.dwarf2_info
->word_size
= 0; /* will be correctly set later on */
3496 dwarf2_modfmt
->module
->format_info
[DFI_DWARF
] = dwarf2_modfmt
;
3498 /* As we'll need later some sections' content, we won't unmap these
3499 * sections upon existing this function
3501 dwarf2_init_section(&dwarf2_modfmt
->u
.dwarf2_info
->debug_loc
, fmap
, ".debug_loc", ".zdebug_loc", NULL
);
3502 dwarf2_init_section(&dwarf2_modfmt
->u
.dwarf2_info
->debug_frame
, fmap
, ".debug_frame", ".zdebug_frame", NULL
);
3503 dwarf2_modfmt
->u
.dwarf2_info
->eh_frame
= eh_frame
;
3505 while (mod_ctx
.data
< mod_ctx
.end_data
)
3507 dwarf2_parse_compilation_unit(section
, dwarf2_modfmt
->module
, thunks
, &mod_ctx
, load_offset
);
3509 dwarf2_modfmt
->module
->module
.SymType
= SymDia
;
3510 dwarf2_modfmt
->module
->module
.CVSig
= 'D' | ('W' << 8) | ('A' << 16) | ('R' << 24);
3511 /* FIXME: we could have a finer grain here */
3512 dwarf2_modfmt
->module
->module
.GlobalSymbols
= TRUE
;
3513 dwarf2_modfmt
->module
->module
.TypeInfo
= TRUE
;
3514 dwarf2_modfmt
->module
->module
.SourceIndexed
= TRUE
;
3515 dwarf2_modfmt
->module
->module
.Publics
= TRUE
;
3517 /* set the word_size for eh_frame parsing */
3518 dwarf2_modfmt
->u
.dwarf2_info
->word_size
= fmap
->addr_size
/ 8;
3521 dwarf2_fini_section(§ion
[section_debug
]);
3522 dwarf2_fini_section(§ion
[section_abbrev
]);
3523 dwarf2_fini_section(§ion
[section_string
]);
3524 dwarf2_fini_section(§ion
[section_line
]);
3525 dwarf2_fini_section(§ion
[section_ranges
]);
3527 image_unmap_section(&debug_sect
);
3528 image_unmap_section(&debug_abbrev_sect
);
3529 image_unmap_section(&debug_str_sect
);
3530 image_unmap_section(&debug_line_sect
);
3531 image_unmap_section(&debug_ranges_sect
);
3532 if (!ret
) image_unmap_section(&eh_frame_sect
);