1 /* DWARF 2 location expression support for GDB.
3 Copyright (C) 2003-2013 Free Software Foundation, Inc.
5 Contributed by Daniel Jacobowitz, MontaVista Software, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
33 #include "exceptions.h"
38 #include "dwarf2expr.h"
39 #include "dwarf2loc.h"
40 #include "dwarf2-frame.h"
42 #include "gdb_string.h"
43 #include "gdb_assert.h"
45 extern int dwarf2_always_disassemble
;
47 static void dwarf_expr_frame_base_1 (struct symbol
*framefunc
, CORE_ADDR pc
,
48 const gdb_byte
**start
, size_t *length
);
50 static const struct dwarf_expr_context_funcs dwarf_expr_ctx_funcs
;
52 static struct value
*dwarf2_evaluate_loc_desc_full (struct type
*type
,
53 struct frame_info
*frame
,
56 struct dwarf2_per_cu_data
*per_cu
,
59 /* Until these have formal names, we define these here.
60 ref: http://gcc.gnu.org/wiki/DebugFission
61 Each entry in .debug_loc.dwo begins with a byte that describes the entry,
62 and is then followed by data specific to that entry. */
66 /* Indicates the end of the list of entries. */
67 DEBUG_LOC_END_OF_LIST
= 0,
69 /* This is followed by an unsigned LEB128 number that is an index into
70 .debug_addr and specifies the base address for all following entries. */
71 DEBUG_LOC_BASE_ADDRESS
= 1,
73 /* This is followed by two unsigned LEB128 numbers that are indices into
74 .debug_addr and specify the beginning and ending addresses, and then
75 a normal location expression as in .debug_loc. */
76 DEBUG_LOC_START_END
= 2,
78 /* This is followed by an unsigned LEB128 number that is an index into
79 .debug_addr and specifies the beginning address, and a 4 byte unsigned
80 number that specifies the length, and then a normal location expression
82 DEBUG_LOC_START_LENGTH
= 3,
84 /* An internal value indicating there is insufficient data. */
85 DEBUG_LOC_BUFFER_OVERFLOW
= -1,
87 /* An internal value indicating an invalid kind of entry was found. */
88 DEBUG_LOC_INVALID_ENTRY
= -2
91 /* Helper function which throws an error if a synthetic pointer is
95 invalid_synthetic_pointer (void)
97 error (_("access outside bounds of object "
98 "referenced via synthetic pointer"));
101 /* Decode the addresses in a non-dwo .debug_loc entry.
102 A pointer to the next byte to examine is returned in *NEW_PTR.
103 The encoded low,high addresses are return in *LOW,*HIGH.
104 The result indicates the kind of entry found. */
106 static enum debug_loc_kind
107 decode_debug_loc_addresses (const gdb_byte
*loc_ptr
, const gdb_byte
*buf_end
,
108 const gdb_byte
**new_ptr
,
109 CORE_ADDR
*low
, CORE_ADDR
*high
,
110 enum bfd_endian byte_order
,
111 unsigned int addr_size
,
114 CORE_ADDR base_mask
= ~(~(CORE_ADDR
)1 << (addr_size
* 8 - 1));
116 if (buf_end
- loc_ptr
< 2 * addr_size
)
117 return DEBUG_LOC_BUFFER_OVERFLOW
;
120 *low
= extract_signed_integer (loc_ptr
, addr_size
, byte_order
);
122 *low
= extract_unsigned_integer (loc_ptr
, addr_size
, byte_order
);
123 loc_ptr
+= addr_size
;
126 *high
= extract_signed_integer (loc_ptr
, addr_size
, byte_order
);
128 *high
= extract_unsigned_integer (loc_ptr
, addr_size
, byte_order
);
129 loc_ptr
+= addr_size
;
133 /* A base-address-selection entry. */
134 if ((*low
& base_mask
) == base_mask
)
135 return DEBUG_LOC_BASE_ADDRESS
;
137 /* An end-of-list entry. */
138 if (*low
== 0 && *high
== 0)
139 return DEBUG_LOC_END_OF_LIST
;
141 return DEBUG_LOC_START_END
;
144 /* Decode the addresses in .debug_loc.dwo entry.
145 A pointer to the next byte to examine is returned in *NEW_PTR.
146 The encoded low,high addresses are return in *LOW,*HIGH.
147 The result indicates the kind of entry found. */
149 static enum debug_loc_kind
150 decode_debug_loc_dwo_addresses (struct dwarf2_per_cu_data
*per_cu
,
151 const gdb_byte
*loc_ptr
,
152 const gdb_byte
*buf_end
,
153 const gdb_byte
**new_ptr
,
154 CORE_ADDR
*low
, CORE_ADDR
*high
,
155 enum bfd_endian byte_order
)
157 uint64_t low_index
, high_index
;
159 if (loc_ptr
== buf_end
)
160 return DEBUG_LOC_BUFFER_OVERFLOW
;
164 case DEBUG_LOC_END_OF_LIST
:
166 return DEBUG_LOC_END_OF_LIST
;
167 case DEBUG_LOC_BASE_ADDRESS
:
169 loc_ptr
= gdb_read_uleb128 (loc_ptr
, buf_end
, &high_index
);
171 return DEBUG_LOC_BUFFER_OVERFLOW
;
172 *high
= dwarf2_read_addr_index (per_cu
, high_index
);
174 return DEBUG_LOC_BASE_ADDRESS
;
175 case DEBUG_LOC_START_END
:
176 loc_ptr
= gdb_read_uleb128 (loc_ptr
, buf_end
, &low_index
);
178 return DEBUG_LOC_BUFFER_OVERFLOW
;
179 *low
= dwarf2_read_addr_index (per_cu
, low_index
);
180 loc_ptr
= gdb_read_uleb128 (loc_ptr
, buf_end
, &high_index
);
182 return DEBUG_LOC_BUFFER_OVERFLOW
;
183 *high
= dwarf2_read_addr_index (per_cu
, high_index
);
185 return DEBUG_LOC_START_END
;
186 case DEBUG_LOC_START_LENGTH
:
187 loc_ptr
= gdb_read_uleb128 (loc_ptr
, buf_end
, &low_index
);
189 return DEBUG_LOC_BUFFER_OVERFLOW
;
190 *low
= dwarf2_read_addr_index (per_cu
, low_index
);
191 if (loc_ptr
+ 4 > buf_end
)
192 return DEBUG_LOC_BUFFER_OVERFLOW
;
194 *high
+= extract_unsigned_integer (loc_ptr
, 4, byte_order
);
195 *new_ptr
= loc_ptr
+ 4;
196 return DEBUG_LOC_START_LENGTH
;
198 return DEBUG_LOC_INVALID_ENTRY
;
202 /* A function for dealing with location lists. Given a
203 symbol baton (BATON) and a pc value (PC), find the appropriate
204 location expression, set *LOCEXPR_LENGTH, and return a pointer
205 to the beginning of the expression. Returns NULL on failure.
207 For now, only return the first matching location expression; there
208 can be more than one in the list. */
211 dwarf2_find_location_expression (struct dwarf2_loclist_baton
*baton
,
212 size_t *locexpr_length
, CORE_ADDR pc
)
214 struct objfile
*objfile
= dwarf2_per_cu_objfile (baton
->per_cu
);
215 struct gdbarch
*gdbarch
= get_objfile_arch (objfile
);
216 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
217 unsigned int addr_size
= dwarf2_per_cu_addr_size (baton
->per_cu
);
218 int signed_addr_p
= bfd_get_sign_extend_vma (objfile
->obfd
);
219 /* Adjust base_address for relocatable objects. */
220 CORE_ADDR base_offset
= dwarf2_per_cu_text_offset (baton
->per_cu
);
221 CORE_ADDR base_address
= baton
->base_address
+ base_offset
;
222 const gdb_byte
*loc_ptr
, *buf_end
;
224 loc_ptr
= baton
->data
;
225 buf_end
= baton
->data
+ baton
->size
;
229 CORE_ADDR low
= 0, high
= 0; /* init for gcc -Wall */
231 enum debug_loc_kind kind
;
232 const gdb_byte
*new_ptr
= NULL
; /* init for gcc -Wall */
235 kind
= decode_debug_loc_dwo_addresses (baton
->per_cu
,
236 loc_ptr
, buf_end
, &new_ptr
,
237 &low
, &high
, byte_order
);
239 kind
= decode_debug_loc_addresses (loc_ptr
, buf_end
, &new_ptr
,
241 byte_order
, addr_size
,
246 case DEBUG_LOC_END_OF_LIST
:
249 case DEBUG_LOC_BASE_ADDRESS
:
250 base_address
= high
+ base_offset
;
252 case DEBUG_LOC_START_END
:
253 case DEBUG_LOC_START_LENGTH
:
255 case DEBUG_LOC_BUFFER_OVERFLOW
:
256 case DEBUG_LOC_INVALID_ENTRY
:
257 error (_("dwarf2_find_location_expression: "
258 "Corrupted DWARF expression."));
260 gdb_assert_not_reached ("bad debug_loc_kind");
263 /* Otherwise, a location expression entry.
264 If the entry is from a DWO, don't add base address: the entry is
265 from .debug_addr which has absolute addresses. */
266 if (! baton
->from_dwo
)
269 high
+= base_address
;
272 length
= extract_unsigned_integer (loc_ptr
, 2, byte_order
);
275 if (low
== high
&& pc
== low
)
277 /* This is entry PC record present only at entry point
278 of a function. Verify it is really the function entry point. */
280 struct block
*pc_block
= block_for_pc (pc
);
281 struct symbol
*pc_func
= NULL
;
284 pc_func
= block_linkage_function (pc_block
);
286 if (pc_func
&& pc
== BLOCK_START (SYMBOL_BLOCK_VALUE (pc_func
)))
288 *locexpr_length
= length
;
293 if (pc
>= low
&& pc
< high
)
295 *locexpr_length
= length
;
303 /* This is the baton used when performing dwarf2 expression
305 struct dwarf_expr_baton
307 struct frame_info
*frame
;
308 struct dwarf2_per_cu_data
*per_cu
;
311 /* Helper functions for dwarf2_evaluate_loc_desc. */
313 /* Using the frame specified in BATON, return the value of register
314 REGNUM, treated as a pointer. */
316 dwarf_expr_read_reg (void *baton
, int dwarf_regnum
)
318 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
319 struct gdbarch
*gdbarch
= get_frame_arch (debaton
->frame
);
323 regnum
= gdbarch_dwarf2_reg_to_regnum (gdbarch
, dwarf_regnum
);
324 result
= address_from_register (builtin_type (gdbarch
)->builtin_data_ptr
,
325 regnum
, debaton
->frame
);
329 /* Read memory at ADDR (length LEN) into BUF. */
332 dwarf_expr_read_mem (void *baton
, gdb_byte
*buf
, CORE_ADDR addr
, size_t len
)
334 read_memory (addr
, buf
, len
);
337 /* Using the frame specified in BATON, find the location expression
338 describing the frame base. Return a pointer to it in START and
339 its length in LENGTH. */
341 dwarf_expr_frame_base (void *baton
, const gdb_byte
**start
, size_t * length
)
343 /* FIXME: cagney/2003-03-26: This code should be using
344 get_frame_base_address(), and then implement a dwarf2 specific
346 struct symbol
*framefunc
;
347 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
348 struct block
*bl
= get_frame_block (debaton
->frame
, NULL
);
351 error (_("frame address is not available."));
353 /* Use block_linkage_function, which returns a real (not inlined)
354 function, instead of get_frame_function, which may return an
356 framefunc
= block_linkage_function (bl
);
358 /* If we found a frame-relative symbol then it was certainly within
359 some function associated with a frame. If we can't find the frame,
360 something has gone wrong. */
361 gdb_assert (framefunc
!= NULL
);
363 dwarf_expr_frame_base_1 (framefunc
,
364 get_frame_address_in_block (debaton
->frame
),
368 /* Implement find_frame_base_location method for LOC_BLOCK functions using
369 DWARF expression for its DW_AT_frame_base. */
372 locexpr_find_frame_base_location (struct symbol
*framefunc
, CORE_ADDR pc
,
373 const gdb_byte
**start
, size_t *length
)
375 struct dwarf2_locexpr_baton
*symbaton
= SYMBOL_LOCATION_BATON (framefunc
);
377 *length
= symbaton
->size
;
378 *start
= symbaton
->data
;
381 /* Vector for inferior functions as represented by LOC_BLOCK, if the inferior
382 function uses DWARF expression for its DW_AT_frame_base. */
384 const struct symbol_block_ops dwarf2_block_frame_base_locexpr_funcs
=
386 locexpr_find_frame_base_location
389 /* Implement find_frame_base_location method for LOC_BLOCK functions using
390 DWARF location list for its DW_AT_frame_base. */
393 loclist_find_frame_base_location (struct symbol
*framefunc
, CORE_ADDR pc
,
394 const gdb_byte
**start
, size_t *length
)
396 struct dwarf2_loclist_baton
*symbaton
= SYMBOL_LOCATION_BATON (framefunc
);
398 *start
= dwarf2_find_location_expression (symbaton
, length
, pc
);
401 /* Vector for inferior functions as represented by LOC_BLOCK, if the inferior
402 function uses DWARF location list for its DW_AT_frame_base. */
404 const struct symbol_block_ops dwarf2_block_frame_base_loclist_funcs
=
406 loclist_find_frame_base_location
410 dwarf_expr_frame_base_1 (struct symbol
*framefunc
, CORE_ADDR pc
,
411 const gdb_byte
**start
, size_t *length
)
413 if (SYMBOL_BLOCK_OPS (framefunc
) != NULL
)
415 const struct symbol_block_ops
*ops_block
= SYMBOL_BLOCK_OPS (framefunc
);
417 ops_block
->find_frame_base_location (framefunc
, pc
, start
, length
);
423 error (_("Could not find the frame base for \"%s\"."),
424 SYMBOL_NATURAL_NAME (framefunc
));
427 /* Helper function for dwarf2_evaluate_loc_desc. Computes the CFA for
428 the frame in BATON. */
431 dwarf_expr_frame_cfa (void *baton
)
433 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
435 return dwarf2_frame_cfa (debaton
->frame
);
438 /* Helper function for dwarf2_evaluate_loc_desc. Computes the PC for
439 the frame in BATON. */
442 dwarf_expr_frame_pc (void *baton
)
444 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
446 return get_frame_address_in_block (debaton
->frame
);
449 /* Using the objfile specified in BATON, find the address for the
450 current thread's thread-local storage with offset OFFSET. */
452 dwarf_expr_tls_address (void *baton
, CORE_ADDR offset
)
454 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
455 struct objfile
*objfile
= dwarf2_per_cu_objfile (debaton
->per_cu
);
457 return target_translate_tls_address (objfile
, offset
);
460 /* Call DWARF subroutine from DW_AT_location of DIE at DIE_OFFSET in
461 current CU (as is PER_CU). State of the CTX is not affected by the
465 per_cu_dwarf_call (struct dwarf_expr_context
*ctx
, cu_offset die_offset
,
466 struct dwarf2_per_cu_data
*per_cu
,
467 CORE_ADDR (*get_frame_pc
) (void *baton
),
470 struct dwarf2_locexpr_baton block
;
472 block
= dwarf2_fetch_die_loc_cu_off (die_offset
, per_cu
, get_frame_pc
, baton
);
474 /* DW_OP_call_ref is currently not supported. */
475 gdb_assert (block
.per_cu
== per_cu
);
477 dwarf_expr_eval (ctx
, block
.data
, block
.size
);
480 /* Helper interface of per_cu_dwarf_call for dwarf2_evaluate_loc_desc. */
483 dwarf_expr_dwarf_call (struct dwarf_expr_context
*ctx
, cu_offset die_offset
)
485 struct dwarf_expr_baton
*debaton
= ctx
->baton
;
487 per_cu_dwarf_call (ctx
, die_offset
, debaton
->per_cu
,
488 ctx
->funcs
->get_frame_pc
, ctx
->baton
);
491 /* Callback function for dwarf2_evaluate_loc_desc. */
494 dwarf_expr_get_base_type (struct dwarf_expr_context
*ctx
,
495 cu_offset die_offset
)
497 struct dwarf_expr_baton
*debaton
= ctx
->baton
;
499 return dwarf2_get_die_type (die_offset
, debaton
->per_cu
);
502 /* See dwarf2loc.h. */
504 unsigned int entry_values_debug
= 0;
506 /* Helper to set entry_values_debug. */
509 show_entry_values_debug (struct ui_file
*file
, int from_tty
,
510 struct cmd_list_element
*c
, const char *value
)
512 fprintf_filtered (file
,
513 _("Entry values and tail call frames debugging is %s.\n"),
517 /* Find DW_TAG_GNU_call_site's DW_AT_GNU_call_site_target address.
518 CALLER_FRAME (for registers) can be NULL if it is not known. This function
519 always returns valid address or it throws NO_ENTRY_VALUE_ERROR. */
522 call_site_to_target_addr (struct gdbarch
*call_site_gdbarch
,
523 struct call_site
*call_site
,
524 struct frame_info
*caller_frame
)
526 switch (FIELD_LOC_KIND (call_site
->target
))
528 case FIELD_LOC_KIND_DWARF_BLOCK
:
530 struct dwarf2_locexpr_baton
*dwarf_block
;
532 struct type
*caller_core_addr_type
;
533 struct gdbarch
*caller_arch
;
535 dwarf_block
= FIELD_DWARF_BLOCK (call_site
->target
);
536 if (dwarf_block
== NULL
)
538 struct bound_minimal_symbol msym
;
540 msym
= lookup_minimal_symbol_by_pc (call_site
->pc
- 1);
541 throw_error (NO_ENTRY_VALUE_ERROR
,
542 _("DW_AT_GNU_call_site_target is not specified "
544 paddress (call_site_gdbarch
, call_site
->pc
),
545 (msym
.minsym
== NULL
? "???"
546 : SYMBOL_PRINT_NAME (msym
.minsym
)));
549 if (caller_frame
== NULL
)
551 struct bound_minimal_symbol msym
;
553 msym
= lookup_minimal_symbol_by_pc (call_site
->pc
- 1);
554 throw_error (NO_ENTRY_VALUE_ERROR
,
555 _("DW_AT_GNU_call_site_target DWARF block resolving "
556 "requires known frame which is currently not "
557 "available at %s in %s"),
558 paddress (call_site_gdbarch
, call_site
->pc
),
559 (msym
.minsym
== NULL
? "???"
560 : SYMBOL_PRINT_NAME (msym
.minsym
)));
563 caller_arch
= get_frame_arch (caller_frame
);
564 caller_core_addr_type
= builtin_type (caller_arch
)->builtin_func_ptr
;
565 val
= dwarf2_evaluate_loc_desc (caller_core_addr_type
, caller_frame
,
566 dwarf_block
->data
, dwarf_block
->size
,
567 dwarf_block
->per_cu
);
568 /* DW_AT_GNU_call_site_target is a DWARF expression, not a DWARF
570 if (VALUE_LVAL (val
) == lval_memory
)
571 return value_address (val
);
573 return value_as_address (val
);
576 case FIELD_LOC_KIND_PHYSNAME
:
578 const char *physname
;
579 struct minimal_symbol
*msym
;
581 physname
= FIELD_STATIC_PHYSNAME (call_site
->target
);
583 /* Handle both the mangled and demangled PHYSNAME. */
584 msym
= lookup_minimal_symbol (physname
, NULL
, NULL
);
587 msym
= lookup_minimal_symbol_by_pc (call_site
->pc
- 1).minsym
;
588 throw_error (NO_ENTRY_VALUE_ERROR
,
589 _("Cannot find function \"%s\" for a call site target "
591 physname
, paddress (call_site_gdbarch
, call_site
->pc
),
592 msym
== NULL
? "???" : SYMBOL_PRINT_NAME (msym
));
595 return SYMBOL_VALUE_ADDRESS (msym
);
598 case FIELD_LOC_KIND_PHYSADDR
:
599 return FIELD_STATIC_PHYSADDR (call_site
->target
);
602 internal_error (__FILE__
, __LINE__
, _("invalid call site target kind"));
606 /* Convert function entry point exact address ADDR to the function which is
607 compliant with TAIL_CALL_LIST_COMPLETE condition. Throw
608 NO_ENTRY_VALUE_ERROR otherwise. */
610 static struct symbol
*
611 func_addr_to_tail_call_list (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
613 struct symbol
*sym
= find_pc_function (addr
);
616 if (sym
== NULL
|| BLOCK_START (SYMBOL_BLOCK_VALUE (sym
)) != addr
)
617 throw_error (NO_ENTRY_VALUE_ERROR
,
618 _("DW_TAG_GNU_call_site resolving failed to find function "
619 "name for address %s"),
620 paddress (gdbarch
, addr
));
622 type
= SYMBOL_TYPE (sym
);
623 gdb_assert (TYPE_CODE (type
) == TYPE_CODE_FUNC
);
624 gdb_assert (TYPE_SPECIFIC_FIELD (type
) == TYPE_SPECIFIC_FUNC
);
629 /* Verify function with entry point exact address ADDR can never call itself
630 via its tail calls (incl. transitively). Throw NO_ENTRY_VALUE_ERROR if it
631 can call itself via tail calls.
633 If a funtion can tail call itself its entry value based parameters are
634 unreliable. There is no verification whether the value of some/all
635 parameters is unchanged through the self tail call, we expect if there is
636 a self tail call all the parameters can be modified. */
639 func_verify_no_selftailcall (struct gdbarch
*gdbarch
, CORE_ADDR verify_addr
)
641 struct obstack addr_obstack
;
642 struct cleanup
*old_chain
;
645 /* Track here CORE_ADDRs which were already visited. */
648 /* The verification is completely unordered. Track here function addresses
649 which still need to be iterated. */
650 VEC (CORE_ADDR
) *todo
= NULL
;
652 obstack_init (&addr_obstack
);
653 old_chain
= make_cleanup_obstack_free (&addr_obstack
);
654 addr_hash
= htab_create_alloc_ex (64, core_addr_hash
, core_addr_eq
, NULL
,
655 &addr_obstack
, hashtab_obstack_allocate
,
657 make_cleanup_htab_delete (addr_hash
);
659 make_cleanup (VEC_cleanup (CORE_ADDR
), &todo
);
661 VEC_safe_push (CORE_ADDR
, todo
, verify_addr
);
662 while (!VEC_empty (CORE_ADDR
, todo
))
664 struct symbol
*func_sym
;
665 struct call_site
*call_site
;
667 addr
= VEC_pop (CORE_ADDR
, todo
);
669 func_sym
= func_addr_to_tail_call_list (gdbarch
, addr
);
671 for (call_site
= TYPE_TAIL_CALL_LIST (SYMBOL_TYPE (func_sym
));
672 call_site
; call_site
= call_site
->tail_call_next
)
674 CORE_ADDR target_addr
;
677 /* CALLER_FRAME with registers is not available for tail-call jumped
679 target_addr
= call_site_to_target_addr (gdbarch
, call_site
, NULL
);
681 if (target_addr
== verify_addr
)
683 struct bound_minimal_symbol msym
;
685 msym
= lookup_minimal_symbol_by_pc (verify_addr
);
686 throw_error (NO_ENTRY_VALUE_ERROR
,
687 _("DW_OP_GNU_entry_value resolving has found "
688 "function \"%s\" at %s can call itself via tail "
690 (msym
.minsym
== NULL
? "???"
691 : SYMBOL_PRINT_NAME (msym
.minsym
)),
692 paddress (gdbarch
, verify_addr
));
695 slot
= htab_find_slot (addr_hash
, &target_addr
, INSERT
);
698 *slot
= obstack_copy (&addr_obstack
, &target_addr
,
699 sizeof (target_addr
));
700 VEC_safe_push (CORE_ADDR
, todo
, target_addr
);
705 do_cleanups (old_chain
);
708 /* Print user readable form of CALL_SITE->PC to gdb_stdlog. Used only for
709 ENTRY_VALUES_DEBUG. */
712 tailcall_dump (struct gdbarch
*gdbarch
, const struct call_site
*call_site
)
714 CORE_ADDR addr
= call_site
->pc
;
715 struct bound_minimal_symbol msym
= lookup_minimal_symbol_by_pc (addr
- 1);
717 fprintf_unfiltered (gdb_stdlog
, " %s(%s)", paddress (gdbarch
, addr
),
718 (msym
.minsym
== NULL
? "???"
719 : SYMBOL_PRINT_NAME (msym
.minsym
)));
723 /* vec.h needs single word type name, typedef it. */
724 typedef struct call_site
*call_sitep
;
726 /* Define VEC (call_sitep) functions. */
727 DEF_VEC_P (call_sitep
);
729 /* Intersect RESULTP with CHAIN to keep RESULTP unambiguous, keep in RESULTP
730 only top callers and bottom callees which are present in both. GDBARCH is
731 used only for ENTRY_VALUES_DEBUG. RESULTP is NULL after return if there are
732 no remaining possibilities to provide unambiguous non-trivial result.
733 RESULTP should point to NULL on the first (initialization) call. Caller is
734 responsible for xfree of any RESULTP data. */
737 chain_candidate (struct gdbarch
*gdbarch
, struct call_site_chain
**resultp
,
738 VEC (call_sitep
) *chain
)
740 struct call_site_chain
*result
= *resultp
;
741 long length
= VEC_length (call_sitep
, chain
);
742 int callers
, callees
, idx
;
746 /* Create the initial chain containing all the passed PCs. */
748 result
= xmalloc (sizeof (*result
) + sizeof (*result
->call_site
)
750 result
->length
= length
;
751 result
->callers
= result
->callees
= length
;
752 memcpy (result
->call_site
, VEC_address (call_sitep
, chain
),
753 sizeof (*result
->call_site
) * length
);
756 if (entry_values_debug
)
758 fprintf_unfiltered (gdb_stdlog
, "tailcall: initial:");
759 for (idx
= 0; idx
< length
; idx
++)
760 tailcall_dump (gdbarch
, result
->call_site
[idx
]);
761 fputc_unfiltered ('\n', gdb_stdlog
);
767 if (entry_values_debug
)
769 fprintf_unfiltered (gdb_stdlog
, "tailcall: compare:");
770 for (idx
= 0; idx
< length
; idx
++)
771 tailcall_dump (gdbarch
, VEC_index (call_sitep
, chain
, idx
));
772 fputc_unfiltered ('\n', gdb_stdlog
);
775 /* Intersect callers. */
777 callers
= min (result
->callers
, length
);
778 for (idx
= 0; idx
< callers
; idx
++)
779 if (result
->call_site
[idx
] != VEC_index (call_sitep
, chain
, idx
))
781 result
->callers
= idx
;
785 /* Intersect callees. */
787 callees
= min (result
->callees
, length
);
788 for (idx
= 0; idx
< callees
; idx
++)
789 if (result
->call_site
[result
->length
- 1 - idx
]
790 != VEC_index (call_sitep
, chain
, length
- 1 - idx
))
792 result
->callees
= idx
;
796 if (entry_values_debug
)
798 fprintf_unfiltered (gdb_stdlog
, "tailcall: reduced:");
799 for (idx
= 0; idx
< result
->callers
; idx
++)
800 tailcall_dump (gdbarch
, result
->call_site
[idx
]);
801 fputs_unfiltered (" |", gdb_stdlog
);
802 for (idx
= 0; idx
< result
->callees
; idx
++)
803 tailcall_dump (gdbarch
, result
->call_site
[result
->length
804 - result
->callees
+ idx
]);
805 fputc_unfiltered ('\n', gdb_stdlog
);
808 if (result
->callers
== 0 && result
->callees
== 0)
810 /* There are no common callers or callees. It could be also a direct
811 call (which has length 0) with ambiguous possibility of an indirect
812 call - CALLERS == CALLEES == 0 is valid during the first allocation
813 but any subsequence processing of such entry means ambiguity. */
819 /* See call_site_find_chain_1 why there is no way to reach the bottom callee
820 PC again. In such case there must be two different code paths to reach
821 it, therefore some of the former determined intermediate PCs must differ
822 and the unambiguous chain gets shortened. */
823 gdb_assert (result
->callers
+ result
->callees
< result
->length
);
826 /* Create and return call_site_chain for CALLER_PC and CALLEE_PC. All the
827 assumed frames between them use GDBARCH. Use depth first search so we can
828 keep single CHAIN of call_site's back to CALLER_PC. Function recursion
829 would have needless GDB stack overhead. Caller is responsible for xfree of
830 the returned result. Any unreliability results in thrown
831 NO_ENTRY_VALUE_ERROR. */
833 static struct call_site_chain
*
834 call_site_find_chain_1 (struct gdbarch
*gdbarch
, CORE_ADDR caller_pc
,
837 CORE_ADDR save_callee_pc
= callee_pc
;
838 struct obstack addr_obstack
;
839 struct cleanup
*back_to_retval
, *back_to_workdata
;
840 struct call_site_chain
*retval
= NULL
;
841 struct call_site
*call_site
;
843 /* Mark CALL_SITEs so we do not visit the same ones twice. */
846 /* CHAIN contains only the intermediate CALL_SITEs. Neither CALLER_PC's
847 call_site nor any possible call_site at CALLEE_PC's function is there.
848 Any CALL_SITE in CHAIN will be iterated to its siblings - via
849 TAIL_CALL_NEXT. This is inappropriate for CALLER_PC's call_site. */
850 VEC (call_sitep
) *chain
= NULL
;
852 /* We are not interested in the specific PC inside the callee function. */
853 callee_pc
= get_pc_function_start (callee_pc
);
855 throw_error (NO_ENTRY_VALUE_ERROR
, _("Unable to find function for PC %s"),
856 paddress (gdbarch
, save_callee_pc
));
858 back_to_retval
= make_cleanup (free_current_contents
, &retval
);
860 obstack_init (&addr_obstack
);
861 back_to_workdata
= make_cleanup_obstack_free (&addr_obstack
);
862 addr_hash
= htab_create_alloc_ex (64, core_addr_hash
, core_addr_eq
, NULL
,
863 &addr_obstack
, hashtab_obstack_allocate
,
865 make_cleanup_htab_delete (addr_hash
);
867 make_cleanup (VEC_cleanup (call_sitep
), &chain
);
869 /* Do not push CALL_SITE to CHAIN. Push there only the first tail call site
870 at the target's function. All the possible tail call sites in the
871 target's function will get iterated as already pushed into CHAIN via their
873 call_site
= call_site_for_pc (gdbarch
, caller_pc
);
877 CORE_ADDR target_func_addr
;
878 struct call_site
*target_call_site
;
880 /* CALLER_FRAME with registers is not available for tail-call jumped
882 target_func_addr
= call_site_to_target_addr (gdbarch
, call_site
, NULL
);
884 if (target_func_addr
== callee_pc
)
886 chain_candidate (gdbarch
, &retval
, chain
);
890 /* There is no way to reach CALLEE_PC again as we would prevent
891 entering it twice as being already marked in ADDR_HASH. */
892 target_call_site
= NULL
;
896 struct symbol
*target_func
;
898 target_func
= func_addr_to_tail_call_list (gdbarch
, target_func_addr
);
899 target_call_site
= TYPE_TAIL_CALL_LIST (SYMBOL_TYPE (target_func
));
904 /* Attempt to visit TARGET_CALL_SITE. */
906 if (target_call_site
)
910 slot
= htab_find_slot (addr_hash
, &target_call_site
->pc
, INSERT
);
913 /* Successfully entered TARGET_CALL_SITE. */
915 *slot
= &target_call_site
->pc
;
916 VEC_safe_push (call_sitep
, chain
, target_call_site
);
921 /* Backtrack (without revisiting the originating call_site). Try the
922 callers's sibling; if there isn't any try the callers's callers's
925 target_call_site
= NULL
;
926 while (!VEC_empty (call_sitep
, chain
))
928 call_site
= VEC_pop (call_sitep
, chain
);
930 gdb_assert (htab_find_slot (addr_hash
, &call_site
->pc
,
932 htab_remove_elt (addr_hash
, &call_site
->pc
);
934 target_call_site
= call_site
->tail_call_next
;
935 if (target_call_site
)
939 while (target_call_site
);
941 if (VEC_empty (call_sitep
, chain
))
944 call_site
= VEC_last (call_sitep
, chain
);
949 struct bound_minimal_symbol msym_caller
, msym_callee
;
951 msym_caller
= lookup_minimal_symbol_by_pc (caller_pc
);
952 msym_callee
= lookup_minimal_symbol_by_pc (callee_pc
);
953 throw_error (NO_ENTRY_VALUE_ERROR
,
954 _("There are no unambiguously determinable intermediate "
955 "callers or callees between caller function \"%s\" at %s "
956 "and callee function \"%s\" at %s"),
957 (msym_caller
.minsym
== NULL
958 ? "???" : SYMBOL_PRINT_NAME (msym_caller
.minsym
)),
959 paddress (gdbarch
, caller_pc
),
960 (msym_callee
.minsym
== NULL
961 ? "???" : SYMBOL_PRINT_NAME (msym_callee
.minsym
)),
962 paddress (gdbarch
, callee_pc
));
965 do_cleanups (back_to_workdata
);
966 discard_cleanups (back_to_retval
);
970 /* Create and return call_site_chain for CALLER_PC and CALLEE_PC. All the
971 assumed frames between them use GDBARCH. If valid call_site_chain cannot be
972 constructed return NULL. Caller is responsible for xfree of the returned
975 struct call_site_chain
*
976 call_site_find_chain (struct gdbarch
*gdbarch
, CORE_ADDR caller_pc
,
979 volatile struct gdb_exception e
;
980 struct call_site_chain
*retval
= NULL
;
982 TRY_CATCH (e
, RETURN_MASK_ERROR
)
984 retval
= call_site_find_chain_1 (gdbarch
, caller_pc
, callee_pc
);
988 if (e
.error
== NO_ENTRY_VALUE_ERROR
)
990 if (entry_values_debug
)
991 exception_print (gdb_stdout
, e
);
1001 /* Return 1 if KIND and KIND_U match PARAMETER. Return 0 otherwise. */
1004 call_site_parameter_matches (struct call_site_parameter
*parameter
,
1005 enum call_site_parameter_kind kind
,
1006 union call_site_parameter_u kind_u
)
1008 if (kind
== parameter
->kind
)
1011 case CALL_SITE_PARAMETER_DWARF_REG
:
1012 return kind_u
.dwarf_reg
== parameter
->u
.dwarf_reg
;
1013 case CALL_SITE_PARAMETER_FB_OFFSET
:
1014 return kind_u
.fb_offset
== parameter
->u
.fb_offset
;
1015 case CALL_SITE_PARAMETER_PARAM_OFFSET
:
1016 return kind_u
.param_offset
.cu_off
== parameter
->u
.param_offset
.cu_off
;
1021 /* Fetch call_site_parameter from caller matching KIND and KIND_U.
1022 FRAME is for callee.
1024 Function always returns non-NULL, it throws NO_ENTRY_VALUE_ERROR
1027 static struct call_site_parameter
*
1028 dwarf_expr_reg_to_entry_parameter (struct frame_info
*frame
,
1029 enum call_site_parameter_kind kind
,
1030 union call_site_parameter_u kind_u
,
1031 struct dwarf2_per_cu_data
**per_cu_return
)
1033 CORE_ADDR func_addr
, caller_pc
;
1034 struct gdbarch
*gdbarch
;
1035 struct frame_info
*caller_frame
;
1036 struct call_site
*call_site
;
1038 /* Initialize it just to avoid a GCC false warning. */
1039 struct call_site_parameter
*parameter
= NULL
;
1040 CORE_ADDR target_addr
;
1042 while (get_frame_type (frame
) == INLINE_FRAME
)
1044 frame
= get_prev_frame (frame
);
1045 gdb_assert (frame
!= NULL
);
1048 func_addr
= get_frame_func (frame
);
1049 gdbarch
= get_frame_arch (frame
);
1050 caller_frame
= get_prev_frame (frame
);
1051 if (gdbarch
!= frame_unwind_arch (frame
))
1053 struct bound_minimal_symbol msym
1054 = lookup_minimal_symbol_by_pc (func_addr
);
1055 struct gdbarch
*caller_gdbarch
= frame_unwind_arch (frame
);
1057 throw_error (NO_ENTRY_VALUE_ERROR
,
1058 _("DW_OP_GNU_entry_value resolving callee gdbarch %s "
1059 "(of %s (%s)) does not match caller gdbarch %s"),
1060 gdbarch_bfd_arch_info (gdbarch
)->printable_name
,
1061 paddress (gdbarch
, func_addr
),
1062 (msym
.minsym
== NULL
? "???"
1063 : SYMBOL_PRINT_NAME (msym
.minsym
)),
1064 gdbarch_bfd_arch_info (caller_gdbarch
)->printable_name
);
1067 if (caller_frame
== NULL
)
1069 struct bound_minimal_symbol msym
1070 = lookup_minimal_symbol_by_pc (func_addr
);
1072 throw_error (NO_ENTRY_VALUE_ERROR
, _("DW_OP_GNU_entry_value resolving "
1073 "requires caller of %s (%s)"),
1074 paddress (gdbarch
, func_addr
),
1075 (msym
.minsym
== NULL
? "???"
1076 : SYMBOL_PRINT_NAME (msym
.minsym
)));
1078 caller_pc
= get_frame_pc (caller_frame
);
1079 call_site
= call_site_for_pc (gdbarch
, caller_pc
);
1081 target_addr
= call_site_to_target_addr (gdbarch
, call_site
, caller_frame
);
1082 if (target_addr
!= func_addr
)
1084 struct minimal_symbol
*target_msym
, *func_msym
;
1086 target_msym
= lookup_minimal_symbol_by_pc (target_addr
).minsym
;
1087 func_msym
= lookup_minimal_symbol_by_pc (func_addr
).minsym
;
1088 throw_error (NO_ENTRY_VALUE_ERROR
,
1089 _("DW_OP_GNU_entry_value resolving expects callee %s at %s "
1090 "but the called frame is for %s at %s"),
1091 (target_msym
== NULL
? "???"
1092 : SYMBOL_PRINT_NAME (target_msym
)),
1093 paddress (gdbarch
, target_addr
),
1094 func_msym
== NULL
? "???" : SYMBOL_PRINT_NAME (func_msym
),
1095 paddress (gdbarch
, func_addr
));
1098 /* No entry value based parameters would be reliable if this function can
1099 call itself via tail calls. */
1100 func_verify_no_selftailcall (gdbarch
, func_addr
);
1102 for (iparams
= 0; iparams
< call_site
->parameter_count
; iparams
++)
1104 parameter
= &call_site
->parameter
[iparams
];
1105 if (call_site_parameter_matches (parameter
, kind
, kind_u
))
1108 if (iparams
== call_site
->parameter_count
)
1110 struct minimal_symbol
*msym
1111 = lookup_minimal_symbol_by_pc (caller_pc
).minsym
;
1113 /* DW_TAG_GNU_call_site_parameter will be missing just if GCC could not
1114 determine its value. */
1115 throw_error (NO_ENTRY_VALUE_ERROR
, _("Cannot find matching parameter "
1116 "at DW_TAG_GNU_call_site %s at %s"),
1117 paddress (gdbarch
, caller_pc
),
1118 msym
== NULL
? "???" : SYMBOL_PRINT_NAME (msym
));
1121 *per_cu_return
= call_site
->per_cu
;
1125 /* Return value for PARAMETER matching DEREF_SIZE. If DEREF_SIZE is -1, return
1126 the normal DW_AT_GNU_call_site_value block. Otherwise return the
1127 DW_AT_GNU_call_site_data_value (dereferenced) block.
1129 TYPE and CALLER_FRAME specify how to evaluate the DWARF block into returned
1132 Function always returns non-NULL, non-optimized out value. It throws
1133 NO_ENTRY_VALUE_ERROR if it cannot resolve the value for any reason. */
1135 static struct value
*
1136 dwarf_entry_parameter_to_value (struct call_site_parameter
*parameter
,
1137 CORE_ADDR deref_size
, struct type
*type
,
1138 struct frame_info
*caller_frame
,
1139 struct dwarf2_per_cu_data
*per_cu
)
1141 const gdb_byte
*data_src
;
1145 data_src
= deref_size
== -1 ? parameter
->value
: parameter
->data_value
;
1146 size
= deref_size
== -1 ? parameter
->value_size
: parameter
->data_value_size
;
1148 /* DEREF_SIZE size is not verified here. */
1149 if (data_src
== NULL
)
1150 throw_error (NO_ENTRY_VALUE_ERROR
,
1151 _("Cannot resolve DW_AT_GNU_call_site_data_value"));
1153 /* DW_AT_GNU_call_site_value is a DWARF expression, not a DWARF
1154 location. Postprocessing of DWARF_VALUE_MEMORY would lose the type from
1156 data
= alloca (size
+ 1);
1157 memcpy (data
, data_src
, size
);
1158 data
[size
] = DW_OP_stack_value
;
1160 return dwarf2_evaluate_loc_desc (type
, caller_frame
, data
, size
+ 1, per_cu
);
1163 /* Execute DWARF block of call_site_parameter which matches KIND and KIND_U.
1164 Choose DEREF_SIZE value of that parameter. Search caller of the CTX's
1165 frame. CTX must be of dwarf_expr_ctx_funcs kind.
1167 The CTX caller can be from a different CU - per_cu_dwarf_call implementation
1168 can be more simple as it does not support cross-CU DWARF executions. */
1171 dwarf_expr_push_dwarf_reg_entry_value (struct dwarf_expr_context
*ctx
,
1172 enum call_site_parameter_kind kind
,
1173 union call_site_parameter_u kind_u
,
1176 struct dwarf_expr_baton
*debaton
;
1177 struct frame_info
*frame
, *caller_frame
;
1178 struct dwarf2_per_cu_data
*caller_per_cu
;
1179 struct dwarf_expr_baton baton_local
;
1180 struct dwarf_expr_context saved_ctx
;
1181 struct call_site_parameter
*parameter
;
1182 const gdb_byte
*data_src
;
1185 gdb_assert (ctx
->funcs
== &dwarf_expr_ctx_funcs
);
1186 debaton
= ctx
->baton
;
1187 frame
= debaton
->frame
;
1188 caller_frame
= get_prev_frame (frame
);
1190 parameter
= dwarf_expr_reg_to_entry_parameter (frame
, kind
, kind_u
,
1192 data_src
= deref_size
== -1 ? parameter
->value
: parameter
->data_value
;
1193 size
= deref_size
== -1 ? parameter
->value_size
: parameter
->data_value_size
;
1195 /* DEREF_SIZE size is not verified here. */
1196 if (data_src
== NULL
)
1197 throw_error (NO_ENTRY_VALUE_ERROR
,
1198 _("Cannot resolve DW_AT_GNU_call_site_data_value"));
1200 baton_local
.frame
= caller_frame
;
1201 baton_local
.per_cu
= caller_per_cu
;
1203 saved_ctx
.gdbarch
= ctx
->gdbarch
;
1204 saved_ctx
.addr_size
= ctx
->addr_size
;
1205 saved_ctx
.offset
= ctx
->offset
;
1206 saved_ctx
.baton
= ctx
->baton
;
1207 ctx
->gdbarch
= get_objfile_arch (dwarf2_per_cu_objfile (baton_local
.per_cu
));
1208 ctx
->addr_size
= dwarf2_per_cu_addr_size (baton_local
.per_cu
);
1209 ctx
->offset
= dwarf2_per_cu_text_offset (baton_local
.per_cu
);
1210 ctx
->baton
= &baton_local
;
1212 dwarf_expr_eval (ctx
, data_src
, size
);
1214 ctx
->gdbarch
= saved_ctx
.gdbarch
;
1215 ctx
->addr_size
= saved_ctx
.addr_size
;
1216 ctx
->offset
= saved_ctx
.offset
;
1217 ctx
->baton
= saved_ctx
.baton
;
1220 /* Callback function for dwarf2_evaluate_loc_desc.
1221 Fetch the address indexed by DW_OP_GNU_addr_index. */
1224 dwarf_expr_get_addr_index (void *baton
, unsigned int index
)
1226 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
1228 return dwarf2_read_addr_index (debaton
->per_cu
, index
);
1231 /* VALUE must be of type lval_computed with entry_data_value_funcs. Perform
1232 the indirect method on it, that is use its stored target value, the sole
1233 purpose of entry_data_value_funcs.. */
1235 static struct value
*
1236 entry_data_value_coerce_ref (const struct value
*value
)
1238 struct type
*checked_type
= check_typedef (value_type (value
));
1239 struct value
*target_val
;
1241 if (TYPE_CODE (checked_type
) != TYPE_CODE_REF
)
1244 target_val
= value_computed_closure (value
);
1245 value_incref (target_val
);
1249 /* Implement copy_closure. */
1252 entry_data_value_copy_closure (const struct value
*v
)
1254 struct value
*target_val
= value_computed_closure (v
);
1256 value_incref (target_val
);
1260 /* Implement free_closure. */
1263 entry_data_value_free_closure (struct value
*v
)
1265 struct value
*target_val
= value_computed_closure (v
);
1267 value_free (target_val
);
1270 /* Vector for methods for an entry value reference where the referenced value
1271 is stored in the caller. On the first dereference use
1272 DW_AT_GNU_call_site_data_value in the caller. */
1274 static const struct lval_funcs entry_data_value_funcs
=
1278 NULL
, /* check_validity */
1279 NULL
, /* check_any_valid */
1280 NULL
, /* indirect */
1281 entry_data_value_coerce_ref
,
1282 NULL
, /* check_synthetic_pointer */
1283 entry_data_value_copy_closure
,
1284 entry_data_value_free_closure
1287 /* Read parameter of TYPE at (callee) FRAME's function entry. KIND and KIND_U
1288 are used to match DW_AT_location at the caller's
1289 DW_TAG_GNU_call_site_parameter.
1291 Function always returns non-NULL value. It throws NO_ENTRY_VALUE_ERROR if it
1292 cannot resolve the parameter for any reason. */
1294 static struct value
*
1295 value_of_dwarf_reg_entry (struct type
*type
, struct frame_info
*frame
,
1296 enum call_site_parameter_kind kind
,
1297 union call_site_parameter_u kind_u
)
1299 struct type
*checked_type
= check_typedef (type
);
1300 struct type
*target_type
= TYPE_TARGET_TYPE (checked_type
);
1301 struct frame_info
*caller_frame
= get_prev_frame (frame
);
1302 struct value
*outer_val
, *target_val
, *val
;
1303 struct call_site_parameter
*parameter
;
1304 struct dwarf2_per_cu_data
*caller_per_cu
;
1307 parameter
= dwarf_expr_reg_to_entry_parameter (frame
, kind
, kind_u
,
1310 outer_val
= dwarf_entry_parameter_to_value (parameter
, -1 /* deref_size */,
1314 /* Check if DW_AT_GNU_call_site_data_value cannot be used. If it should be
1315 used and it is not available do not fall back to OUTER_VAL - dereferencing
1316 TYPE_CODE_REF with non-entry data value would give current value - not the
1319 if (TYPE_CODE (checked_type
) != TYPE_CODE_REF
1320 || TYPE_TARGET_TYPE (checked_type
) == NULL
)
1323 target_val
= dwarf_entry_parameter_to_value (parameter
,
1324 TYPE_LENGTH (target_type
),
1325 target_type
, caller_frame
,
1328 /* value_as_address dereferences TYPE_CODE_REF. */
1329 addr
= extract_typed_address (value_contents (outer_val
), checked_type
);
1331 /* The target entry value has artificial address of the entry value
1333 VALUE_LVAL (target_val
) = lval_memory
;
1334 set_value_address (target_val
, addr
);
1336 release_value (target_val
);
1337 val
= allocate_computed_value (type
, &entry_data_value_funcs
,
1338 target_val
/* closure */);
1340 /* Copy the referencing pointer to the new computed value. */
1341 memcpy (value_contents_raw (val
), value_contents_raw (outer_val
),
1342 TYPE_LENGTH (checked_type
));
1343 set_value_lazy (val
, 0);
1348 /* Read parameter of TYPE at (callee) FRAME's function entry. DATA and
1349 SIZE are DWARF block used to match DW_AT_location at the caller's
1350 DW_TAG_GNU_call_site_parameter.
1352 Function always returns non-NULL value. It throws NO_ENTRY_VALUE_ERROR if it
1353 cannot resolve the parameter for any reason. */
1355 static struct value
*
1356 value_of_dwarf_block_entry (struct type
*type
, struct frame_info
*frame
,
1357 const gdb_byte
*block
, size_t block_len
)
1359 union call_site_parameter_u kind_u
;
1361 kind_u
.dwarf_reg
= dwarf_block_to_dwarf_reg (block
, block
+ block_len
);
1362 if (kind_u
.dwarf_reg
!= -1)
1363 return value_of_dwarf_reg_entry (type
, frame
, CALL_SITE_PARAMETER_DWARF_REG
,
1366 if (dwarf_block_to_fb_offset (block
, block
+ block_len
, &kind_u
.fb_offset
))
1367 return value_of_dwarf_reg_entry (type
, frame
, CALL_SITE_PARAMETER_FB_OFFSET
,
1370 /* This can normally happen - throw NO_ENTRY_VALUE_ERROR to get the message
1371 suppressed during normal operation. The expression can be arbitrary if
1372 there is no caller-callee entry value binding expected. */
1373 throw_error (NO_ENTRY_VALUE_ERROR
,
1374 _("DWARF-2 expression error: DW_OP_GNU_entry_value is supported "
1375 "only for single DW_OP_reg* or for DW_OP_fbreg(*)"));
1378 struct piece_closure
1380 /* Reference count. */
1383 /* The CU from which this closure's expression came. */
1384 struct dwarf2_per_cu_data
*per_cu
;
1386 /* The number of pieces used to describe this variable. */
1389 /* The target address size, used only for DWARF_VALUE_STACK. */
1392 /* The pieces themselves. */
1393 struct dwarf_expr_piece
*pieces
;
1396 /* Allocate a closure for a value formed from separately-described
1399 static struct piece_closure
*
1400 allocate_piece_closure (struct dwarf2_per_cu_data
*per_cu
,
1401 int n_pieces
, struct dwarf_expr_piece
*pieces
,
1404 struct piece_closure
*c
= XZALLOC (struct piece_closure
);
1409 c
->n_pieces
= n_pieces
;
1410 c
->addr_size
= addr_size
;
1411 c
->pieces
= XCALLOC (n_pieces
, struct dwarf_expr_piece
);
1413 memcpy (c
->pieces
, pieces
, n_pieces
* sizeof (struct dwarf_expr_piece
));
1414 for (i
= 0; i
< n_pieces
; ++i
)
1415 if (c
->pieces
[i
].location
== DWARF_VALUE_STACK
)
1416 value_incref (c
->pieces
[i
].v
.value
);
1421 /* The lowest-level function to extract bits from a byte buffer.
1422 SOURCE is the buffer. It is updated if we read to the end of a
1424 SOURCE_OFFSET_BITS is the offset of the first bit to read. It is
1425 updated to reflect the number of bits actually read.
1426 NBITS is the number of bits we want to read. It is updated to
1427 reflect the number of bits actually read. This function may read
1429 BITS_BIG_ENDIAN is taken directly from gdbarch.
1430 This function returns the extracted bits. */
1433 extract_bits_primitive (const gdb_byte
**source
,
1434 unsigned int *source_offset_bits
,
1435 int *nbits
, int bits_big_endian
)
1437 unsigned int avail
, mask
, datum
;
1439 gdb_assert (*source_offset_bits
< 8);
1441 avail
= 8 - *source_offset_bits
;
1445 mask
= (1 << avail
) - 1;
1447 if (bits_big_endian
)
1448 datum
>>= 8 - (*source_offset_bits
+ *nbits
);
1450 datum
>>= *source_offset_bits
;
1454 *source_offset_bits
+= avail
;
1455 if (*source_offset_bits
>= 8)
1457 *source_offset_bits
-= 8;
1464 /* Extract some bits from a source buffer and move forward in the
1467 SOURCE is the source buffer. It is updated as bytes are read.
1468 SOURCE_OFFSET_BITS is the offset into SOURCE. It is updated as
1470 NBITS is the number of bits to read.
1471 BITS_BIG_ENDIAN is taken directly from gdbarch.
1473 This function returns the bits that were read. */
1476 extract_bits (const gdb_byte
**source
, unsigned int *source_offset_bits
,
1477 int nbits
, int bits_big_endian
)
1481 gdb_assert (nbits
> 0 && nbits
<= 8);
1483 datum
= extract_bits_primitive (source
, source_offset_bits
, &nbits
,
1489 more
= extract_bits_primitive (source
, source_offset_bits
, &nbits
,
1491 if (bits_big_endian
)
1501 /* Write some bits into a buffer and move forward in the buffer.
1503 DATUM is the bits to write. The low-order bits of DATUM are used.
1504 DEST is the destination buffer. It is updated as bytes are
1506 DEST_OFFSET_BITS is the bit offset in DEST at which writing is
1508 NBITS is the number of valid bits in DATUM.
1509 BITS_BIG_ENDIAN is taken directly from gdbarch. */
1512 insert_bits (unsigned int datum
,
1513 gdb_byte
*dest
, unsigned int dest_offset_bits
,
1514 int nbits
, int bits_big_endian
)
1518 gdb_assert (dest_offset_bits
+ nbits
<= 8);
1520 mask
= (1 << nbits
) - 1;
1521 if (bits_big_endian
)
1523 datum
<<= 8 - (dest_offset_bits
+ nbits
);
1524 mask
<<= 8 - (dest_offset_bits
+ nbits
);
1528 datum
<<= dest_offset_bits
;
1529 mask
<<= dest_offset_bits
;
1532 gdb_assert ((datum
& ~mask
) == 0);
1534 *dest
= (*dest
& ~mask
) | datum
;
1537 /* Copy bits from a source to a destination.
1539 DEST is where the bits should be written.
1540 DEST_OFFSET_BITS is the bit offset into DEST.
1541 SOURCE is the source of bits.
1542 SOURCE_OFFSET_BITS is the bit offset into SOURCE.
1543 BIT_COUNT is the number of bits to copy.
1544 BITS_BIG_ENDIAN is taken directly from gdbarch. */
1547 copy_bitwise (gdb_byte
*dest
, unsigned int dest_offset_bits
,
1548 const gdb_byte
*source
, unsigned int source_offset_bits
,
1549 unsigned int bit_count
,
1550 int bits_big_endian
)
1552 unsigned int dest_avail
;
1555 /* Reduce everything to byte-size pieces. */
1556 dest
+= dest_offset_bits
/ 8;
1557 dest_offset_bits
%= 8;
1558 source
+= source_offset_bits
/ 8;
1559 source_offset_bits
%= 8;
1561 dest_avail
= 8 - dest_offset_bits
% 8;
1563 /* See if we can fill the first destination byte. */
1564 if (dest_avail
< bit_count
)
1566 datum
= extract_bits (&source
, &source_offset_bits
, dest_avail
,
1568 insert_bits (datum
, dest
, dest_offset_bits
, dest_avail
, bits_big_endian
);
1570 dest_offset_bits
= 0;
1571 bit_count
-= dest_avail
;
1574 /* Now, either DEST_OFFSET_BITS is byte-aligned, or we have fewer
1575 than 8 bits remaining. */
1576 gdb_assert (dest_offset_bits
% 8 == 0 || bit_count
< 8);
1577 for (; bit_count
>= 8; bit_count
-= 8)
1579 datum
= extract_bits (&source
, &source_offset_bits
, 8, bits_big_endian
);
1580 *dest
++ = (gdb_byte
) datum
;
1583 /* Finally, we may have a few leftover bits. */
1584 gdb_assert (bit_count
<= 8 - dest_offset_bits
% 8);
1587 datum
= extract_bits (&source
, &source_offset_bits
, bit_count
,
1589 insert_bits (datum
, dest
, dest_offset_bits
, bit_count
, bits_big_endian
);
1594 read_pieced_value (struct value
*v
)
1598 ULONGEST bits_to_skip
;
1600 struct piece_closure
*c
1601 = (struct piece_closure
*) value_computed_closure (v
);
1602 struct frame_info
*frame
= frame_find_by_id (VALUE_FRAME_ID (v
));
1604 size_t buffer_size
= 0;
1605 gdb_byte
*buffer
= NULL
;
1606 struct cleanup
*cleanup
;
1608 = gdbarch_bits_big_endian (get_type_arch (value_type (v
)));
1610 if (value_type (v
) != value_enclosing_type (v
))
1611 internal_error (__FILE__
, __LINE__
,
1612 _("Should not be able to create a lazy value with "
1613 "an enclosing type"));
1615 cleanup
= make_cleanup (free_current_contents
, &buffer
);
1617 contents
= value_contents_raw (v
);
1618 bits_to_skip
= 8 * value_offset (v
);
1619 if (value_bitsize (v
))
1621 bits_to_skip
+= value_bitpos (v
);
1622 type_len
= value_bitsize (v
);
1625 type_len
= 8 * TYPE_LENGTH (value_type (v
));
1627 for (i
= 0; i
< c
->n_pieces
&& offset
< type_len
; i
++)
1629 struct dwarf_expr_piece
*p
= &c
->pieces
[i
];
1630 size_t this_size
, this_size_bits
;
1631 long dest_offset_bits
, source_offset_bits
, source_offset
;
1632 const gdb_byte
*intermediate_buffer
;
1634 /* Compute size, source, and destination offsets for copying, in
1636 this_size_bits
= p
->size
;
1637 if (bits_to_skip
> 0 && bits_to_skip
>= this_size_bits
)
1639 bits_to_skip
-= this_size_bits
;
1642 if (bits_to_skip
> 0)
1644 dest_offset_bits
= 0;
1645 source_offset_bits
= bits_to_skip
;
1646 this_size_bits
-= bits_to_skip
;
1651 dest_offset_bits
= offset
;
1652 source_offset_bits
= 0;
1654 if (this_size_bits
> type_len
- offset
)
1655 this_size_bits
= type_len
- offset
;
1657 this_size
= (this_size_bits
+ source_offset_bits
% 8 + 7) / 8;
1658 source_offset
= source_offset_bits
/ 8;
1659 if (buffer_size
< this_size
)
1661 buffer_size
= this_size
;
1662 buffer
= xrealloc (buffer
, buffer_size
);
1664 intermediate_buffer
= buffer
;
1666 /* Copy from the source to DEST_BUFFER. */
1667 switch (p
->location
)
1669 case DWARF_VALUE_REGISTER
:
1671 struct gdbarch
*arch
= get_frame_arch (frame
);
1672 int gdb_regnum
= gdbarch_dwarf2_reg_to_regnum (arch
, p
->v
.regno
);
1673 int reg_offset
= source_offset
;
1675 if (gdbarch_byte_order (arch
) == BFD_ENDIAN_BIG
1676 && this_size
< register_size (arch
, gdb_regnum
))
1678 /* Big-endian, and we want less than full size. */
1679 reg_offset
= register_size (arch
, gdb_regnum
) - this_size
;
1680 /* We want the lower-order THIS_SIZE_BITS of the bytes
1681 we extract from the register. */
1682 source_offset_bits
+= 8 * this_size
- this_size_bits
;
1685 if (gdb_regnum
!= -1)
1689 if (!get_frame_register_bytes (frame
, gdb_regnum
, reg_offset
,
1693 /* Just so garbage doesn't ever shine through. */
1694 memset (buffer
, 0, this_size
);
1697 set_value_optimized_out (v
, 1);
1699 mark_value_bytes_unavailable (v
, offset
, this_size
);
1704 error (_("Unable to access DWARF register number %s"),
1705 paddress (arch
, p
->v
.regno
));
1710 case DWARF_VALUE_MEMORY
:
1711 read_value_memory (v
, offset
,
1712 p
->v
.mem
.in_stack_memory
,
1713 p
->v
.mem
.addr
+ source_offset
,
1717 case DWARF_VALUE_STACK
:
1719 size_t n
= this_size
;
1721 if (n
> c
->addr_size
- source_offset
)
1722 n
= (c
->addr_size
>= source_offset
1723 ? c
->addr_size
- source_offset
1731 const gdb_byte
*val_bytes
= value_contents_all (p
->v
.value
);
1733 intermediate_buffer
= val_bytes
+ source_offset
;
1738 case DWARF_VALUE_LITERAL
:
1740 size_t n
= this_size
;
1742 if (n
> p
->v
.literal
.length
- source_offset
)
1743 n
= (p
->v
.literal
.length
>= source_offset
1744 ? p
->v
.literal
.length
- source_offset
1747 intermediate_buffer
= p
->v
.literal
.data
+ source_offset
;
1751 /* These bits show up as zeros -- but do not cause the value
1752 to be considered optimized-out. */
1753 case DWARF_VALUE_IMPLICIT_POINTER
:
1756 case DWARF_VALUE_OPTIMIZED_OUT
:
1757 set_value_optimized_out (v
, 1);
1761 internal_error (__FILE__
, __LINE__
, _("invalid location type"));
1764 if (p
->location
!= DWARF_VALUE_OPTIMIZED_OUT
1765 && p
->location
!= DWARF_VALUE_IMPLICIT_POINTER
)
1766 copy_bitwise (contents
, dest_offset_bits
,
1767 intermediate_buffer
, source_offset_bits
% 8,
1768 this_size_bits
, bits_big_endian
);
1770 offset
+= this_size_bits
;
1773 do_cleanups (cleanup
);
1777 write_pieced_value (struct value
*to
, struct value
*from
)
1781 ULONGEST bits_to_skip
;
1782 const gdb_byte
*contents
;
1783 struct piece_closure
*c
1784 = (struct piece_closure
*) value_computed_closure (to
);
1785 struct frame_info
*frame
= frame_find_by_id (VALUE_FRAME_ID (to
));
1787 size_t buffer_size
= 0;
1788 gdb_byte
*buffer
= NULL
;
1789 struct cleanup
*cleanup
;
1791 = gdbarch_bits_big_endian (get_type_arch (value_type (to
)));
1795 set_value_optimized_out (to
, 1);
1799 cleanup
= make_cleanup (free_current_contents
, &buffer
);
1801 contents
= value_contents (from
);
1802 bits_to_skip
= 8 * value_offset (to
);
1803 if (value_bitsize (to
))
1805 bits_to_skip
+= value_bitpos (to
);
1806 type_len
= value_bitsize (to
);
1809 type_len
= 8 * TYPE_LENGTH (value_type (to
));
1811 for (i
= 0; i
< c
->n_pieces
&& offset
< type_len
; i
++)
1813 struct dwarf_expr_piece
*p
= &c
->pieces
[i
];
1814 size_t this_size_bits
, this_size
;
1815 long dest_offset_bits
, source_offset_bits
, dest_offset
, source_offset
;
1817 const gdb_byte
*source_buffer
;
1819 this_size_bits
= p
->size
;
1820 if (bits_to_skip
> 0 && bits_to_skip
>= this_size_bits
)
1822 bits_to_skip
-= this_size_bits
;
1825 if (this_size_bits
> type_len
- offset
)
1826 this_size_bits
= type_len
- offset
;
1827 if (bits_to_skip
> 0)
1829 dest_offset_bits
= bits_to_skip
;
1830 source_offset_bits
= 0;
1831 this_size_bits
-= bits_to_skip
;
1836 dest_offset_bits
= 0;
1837 source_offset_bits
= offset
;
1840 this_size
= (this_size_bits
+ source_offset_bits
% 8 + 7) / 8;
1841 source_offset
= source_offset_bits
/ 8;
1842 dest_offset
= dest_offset_bits
/ 8;
1843 if (dest_offset_bits
% 8 == 0 && source_offset_bits
% 8 == 0)
1845 source_buffer
= contents
+ source_offset
;
1850 if (buffer_size
< this_size
)
1852 buffer_size
= this_size
;
1853 buffer
= xrealloc (buffer
, buffer_size
);
1855 source_buffer
= buffer
;
1859 switch (p
->location
)
1861 case DWARF_VALUE_REGISTER
:
1863 struct gdbarch
*arch
= get_frame_arch (frame
);
1864 int gdb_regnum
= gdbarch_dwarf2_reg_to_regnum (arch
, p
->v
.regno
);
1865 int reg_offset
= dest_offset
;
1867 if (gdbarch_byte_order (arch
) == BFD_ENDIAN_BIG
1868 && this_size
<= register_size (arch
, gdb_regnum
))
1869 /* Big-endian, and we want less than full size. */
1870 reg_offset
= register_size (arch
, gdb_regnum
) - this_size
;
1872 if (gdb_regnum
!= -1)
1878 if (!get_frame_register_bytes (frame
, gdb_regnum
, reg_offset
,
1883 error (_("Can't do read-modify-write to "
1884 "update bitfield; containing word has been "
1887 throw_error (NOT_AVAILABLE_ERROR
,
1888 _("Can't do read-modify-write to update "
1889 "bitfield; containing word "
1892 copy_bitwise (buffer
, dest_offset_bits
,
1893 contents
, source_offset_bits
,
1898 put_frame_register_bytes (frame
, gdb_regnum
, reg_offset
,
1899 this_size
, source_buffer
);
1903 error (_("Unable to write to DWARF register number %s"),
1904 paddress (arch
, p
->v
.regno
));
1908 case DWARF_VALUE_MEMORY
:
1911 /* Only the first and last bytes can possibly have any
1913 read_memory (p
->v
.mem
.addr
+ dest_offset
, buffer
, 1);
1914 read_memory (p
->v
.mem
.addr
+ dest_offset
+ this_size
- 1,
1915 buffer
+ this_size
- 1, 1);
1916 copy_bitwise (buffer
, dest_offset_bits
,
1917 contents
, source_offset_bits
,
1922 write_memory (p
->v
.mem
.addr
+ dest_offset
,
1923 source_buffer
, this_size
);
1926 set_value_optimized_out (to
, 1);
1929 offset
+= this_size_bits
;
1932 do_cleanups (cleanup
);
1935 /* A helper function that checks bit validity in a pieced value.
1936 CHECK_FOR indicates the kind of validity checking.
1937 DWARF_VALUE_MEMORY means to check whether any bit is valid.
1938 DWARF_VALUE_OPTIMIZED_OUT means to check whether any bit is
1940 DWARF_VALUE_IMPLICIT_POINTER means to check whether the bits are an
1941 implicit pointer. */
1944 check_pieced_value_bits (const struct value
*value
, int bit_offset
,
1946 enum dwarf_value_location check_for
)
1948 struct piece_closure
*c
1949 = (struct piece_closure
*) value_computed_closure (value
);
1951 int validity
= (check_for
== DWARF_VALUE_MEMORY
1952 || check_for
== DWARF_VALUE_IMPLICIT_POINTER
);
1954 bit_offset
+= 8 * value_offset (value
);
1955 if (value_bitsize (value
))
1956 bit_offset
+= value_bitpos (value
);
1958 for (i
= 0; i
< c
->n_pieces
&& bit_length
> 0; i
++)
1960 struct dwarf_expr_piece
*p
= &c
->pieces
[i
];
1961 size_t this_size_bits
= p
->size
;
1965 if (bit_offset
>= this_size_bits
)
1967 bit_offset
-= this_size_bits
;
1971 bit_length
-= this_size_bits
- bit_offset
;
1975 bit_length
-= this_size_bits
;
1977 if (check_for
== DWARF_VALUE_IMPLICIT_POINTER
)
1979 if (p
->location
!= DWARF_VALUE_IMPLICIT_POINTER
)
1982 else if (p
->location
== DWARF_VALUE_OPTIMIZED_OUT
1983 || p
->location
== DWARF_VALUE_IMPLICIT_POINTER
)
1999 check_pieced_value_validity (const struct value
*value
, int bit_offset
,
2002 return check_pieced_value_bits (value
, bit_offset
, bit_length
,
2003 DWARF_VALUE_MEMORY
);
2007 check_pieced_value_invalid (const struct value
*value
)
2009 return check_pieced_value_bits (value
, 0,
2010 8 * TYPE_LENGTH (value_type (value
)),
2011 DWARF_VALUE_OPTIMIZED_OUT
);
2014 /* An implementation of an lval_funcs method to see whether a value is
2015 a synthetic pointer. */
2018 check_pieced_synthetic_pointer (const struct value
*value
, int bit_offset
,
2021 return check_pieced_value_bits (value
, bit_offset
, bit_length
,
2022 DWARF_VALUE_IMPLICIT_POINTER
);
2025 /* A wrapper function for get_frame_address_in_block. */
2028 get_frame_address_in_block_wrapper (void *baton
)
2030 return get_frame_address_in_block (baton
);
2033 /* An implementation of an lval_funcs method to indirect through a
2034 pointer. This handles the synthetic pointer case when needed. */
2036 static struct value
*
2037 indirect_pieced_value (struct value
*value
)
2039 struct piece_closure
*c
2040 = (struct piece_closure
*) value_computed_closure (value
);
2042 struct frame_info
*frame
;
2043 struct dwarf2_locexpr_baton baton
;
2044 int i
, bit_offset
, bit_length
;
2045 struct dwarf_expr_piece
*piece
= NULL
;
2046 LONGEST byte_offset
;
2048 type
= check_typedef (value_type (value
));
2049 if (TYPE_CODE (type
) != TYPE_CODE_PTR
)
2052 bit_length
= 8 * TYPE_LENGTH (type
);
2053 bit_offset
= 8 * value_offset (value
);
2054 if (value_bitsize (value
))
2055 bit_offset
+= value_bitpos (value
);
2057 for (i
= 0; i
< c
->n_pieces
&& bit_length
> 0; i
++)
2059 struct dwarf_expr_piece
*p
= &c
->pieces
[i
];
2060 size_t this_size_bits
= p
->size
;
2064 if (bit_offset
>= this_size_bits
)
2066 bit_offset
-= this_size_bits
;
2070 bit_length
-= this_size_bits
- bit_offset
;
2074 bit_length
-= this_size_bits
;
2076 if (p
->location
!= DWARF_VALUE_IMPLICIT_POINTER
)
2079 if (bit_length
!= 0)
2080 error (_("Invalid use of DW_OP_GNU_implicit_pointer"));
2086 frame
= get_selected_frame (_("No frame selected."));
2088 /* This is an offset requested by GDB, such as value subscripts.
2089 However, due to how synthetic pointers are implemented, this is
2090 always presented to us as a pointer type. This means we have to
2091 sign-extend it manually as appropriate. */
2092 byte_offset
= value_as_address (value
);
2093 if (TYPE_LENGTH (value_type (value
)) < sizeof (LONGEST
))
2094 byte_offset
= gdb_sign_extend (byte_offset
,
2095 8 * TYPE_LENGTH (value_type (value
)));
2096 byte_offset
+= piece
->v
.ptr
.offset
;
2100 = dwarf2_fetch_die_loc_sect_off (piece
->v
.ptr
.die
, c
->per_cu
,
2101 get_frame_address_in_block_wrapper
,
2104 if (baton
.data
!= NULL
)
2105 return dwarf2_evaluate_loc_desc_full (TYPE_TARGET_TYPE (type
), frame
,
2106 baton
.data
, baton
.size
, baton
.per_cu
,
2110 struct obstack temp_obstack
;
2111 struct cleanup
*cleanup
;
2112 const gdb_byte
*bytes
;
2114 struct value
*result
;
2116 obstack_init (&temp_obstack
);
2117 cleanup
= make_cleanup_obstack_free (&temp_obstack
);
2119 bytes
= dwarf2_fetch_constant_bytes (piece
->v
.ptr
.die
, c
->per_cu
,
2120 &temp_obstack
, &len
);
2122 result
= allocate_optimized_out_value (TYPE_TARGET_TYPE (type
));
2126 || byte_offset
+ TYPE_LENGTH (TYPE_TARGET_TYPE (type
)) > len
)
2127 invalid_synthetic_pointer ();
2128 bytes
+= byte_offset
;
2129 result
= value_from_contents (TYPE_TARGET_TYPE (type
), bytes
);
2132 do_cleanups (cleanup
);
2138 copy_pieced_value_closure (const struct value
*v
)
2140 struct piece_closure
*c
2141 = (struct piece_closure
*) value_computed_closure (v
);
2148 free_pieced_value_closure (struct value
*v
)
2150 struct piece_closure
*c
2151 = (struct piece_closure
*) value_computed_closure (v
);
2158 for (i
= 0; i
< c
->n_pieces
; ++i
)
2159 if (c
->pieces
[i
].location
== DWARF_VALUE_STACK
)
2160 value_free (c
->pieces
[i
].v
.value
);
2167 /* Functions for accessing a variable described by DW_OP_piece. */
2168 static const struct lval_funcs pieced_value_funcs
= {
2171 check_pieced_value_validity
,
2172 check_pieced_value_invalid
,
2173 indirect_pieced_value
,
2174 NULL
, /* coerce_ref */
2175 check_pieced_synthetic_pointer
,
2176 copy_pieced_value_closure
,
2177 free_pieced_value_closure
2180 /* Virtual method table for dwarf2_evaluate_loc_desc_full below. */
2182 static const struct dwarf_expr_context_funcs dwarf_expr_ctx_funcs
=
2184 dwarf_expr_read_reg
,
2185 dwarf_expr_read_mem
,
2186 dwarf_expr_frame_base
,
2187 dwarf_expr_frame_cfa
,
2188 dwarf_expr_frame_pc
,
2189 dwarf_expr_tls_address
,
2190 dwarf_expr_dwarf_call
,
2191 dwarf_expr_get_base_type
,
2192 dwarf_expr_push_dwarf_reg_entry_value
,
2193 dwarf_expr_get_addr_index
2196 /* Evaluate a location description, starting at DATA and with length
2197 SIZE, to find the current location of variable of TYPE in the
2198 context of FRAME. BYTE_OFFSET is applied after the contents are
2201 static struct value
*
2202 dwarf2_evaluate_loc_desc_full (struct type
*type
, struct frame_info
*frame
,
2203 const gdb_byte
*data
, size_t size
,
2204 struct dwarf2_per_cu_data
*per_cu
,
2205 LONGEST byte_offset
)
2207 struct value
*retval
;
2208 struct dwarf_expr_baton baton
;
2209 struct dwarf_expr_context
*ctx
;
2210 struct cleanup
*old_chain
, *value_chain
;
2211 struct objfile
*objfile
= dwarf2_per_cu_objfile (per_cu
);
2212 volatile struct gdb_exception ex
;
2214 if (byte_offset
< 0)
2215 invalid_synthetic_pointer ();
2218 return allocate_optimized_out_value (type
);
2220 baton
.frame
= frame
;
2221 baton
.per_cu
= per_cu
;
2223 ctx
= new_dwarf_expr_context ();
2224 old_chain
= make_cleanup_free_dwarf_expr_context (ctx
);
2225 value_chain
= make_cleanup_value_free_to_mark (value_mark ());
2227 ctx
->gdbarch
= get_objfile_arch (objfile
);
2228 ctx
->addr_size
= dwarf2_per_cu_addr_size (per_cu
);
2229 ctx
->ref_addr_size
= dwarf2_per_cu_ref_addr_size (per_cu
);
2230 ctx
->offset
= dwarf2_per_cu_text_offset (per_cu
);
2231 ctx
->baton
= &baton
;
2232 ctx
->funcs
= &dwarf_expr_ctx_funcs
;
2234 TRY_CATCH (ex
, RETURN_MASK_ERROR
)
2236 dwarf_expr_eval (ctx
, data
, size
);
2240 if (ex
.error
== NOT_AVAILABLE_ERROR
)
2242 do_cleanups (old_chain
);
2243 retval
= allocate_value (type
);
2244 mark_value_bytes_unavailable (retval
, 0, TYPE_LENGTH (type
));
2247 else if (ex
.error
== NO_ENTRY_VALUE_ERROR
)
2249 if (entry_values_debug
)
2250 exception_print (gdb_stdout
, ex
);
2251 do_cleanups (old_chain
);
2252 return allocate_optimized_out_value (type
);
2255 throw_exception (ex
);
2258 if (ctx
->num_pieces
> 0)
2260 struct piece_closure
*c
;
2261 struct frame_id frame_id
= get_frame_id (frame
);
2262 ULONGEST bit_size
= 0;
2265 for (i
= 0; i
< ctx
->num_pieces
; ++i
)
2266 bit_size
+= ctx
->pieces
[i
].size
;
2267 if (8 * (byte_offset
+ TYPE_LENGTH (type
)) > bit_size
)
2268 invalid_synthetic_pointer ();
2270 c
= allocate_piece_closure (per_cu
, ctx
->num_pieces
, ctx
->pieces
,
2272 /* We must clean up the value chain after creating the piece
2273 closure but before allocating the result. */
2274 do_cleanups (value_chain
);
2275 retval
= allocate_computed_value (type
, &pieced_value_funcs
, c
);
2276 VALUE_FRAME_ID (retval
) = frame_id
;
2277 set_value_offset (retval
, byte_offset
);
2281 switch (ctx
->location
)
2283 case DWARF_VALUE_REGISTER
:
2285 struct gdbarch
*arch
= get_frame_arch (frame
);
2287 = longest_to_int (value_as_long (dwarf_expr_fetch (ctx
, 0)));
2288 int gdb_regnum
= gdbarch_dwarf2_reg_to_regnum (arch
, dwarf_regnum
);
2290 if (byte_offset
!= 0)
2291 error (_("cannot use offset on synthetic pointer to register"));
2292 do_cleanups (value_chain
);
2293 if (gdb_regnum
!= -1)
2294 retval
= value_from_register (type
, gdb_regnum
, frame
);
2296 error (_("Unable to access DWARF register number %d"),
2301 case DWARF_VALUE_MEMORY
:
2303 CORE_ADDR address
= dwarf_expr_fetch_address (ctx
, 0);
2304 int in_stack_memory
= dwarf_expr_fetch_in_stack_memory (ctx
, 0);
2306 do_cleanups (value_chain
);
2307 retval
= value_at_lazy (type
, address
+ byte_offset
);
2308 if (in_stack_memory
)
2309 set_value_stack (retval
, 1);
2313 case DWARF_VALUE_STACK
:
2315 struct value
*value
= dwarf_expr_fetch (ctx
, 0);
2317 const gdb_byte
*val_bytes
;
2318 size_t n
= TYPE_LENGTH (value_type (value
));
2320 if (byte_offset
+ TYPE_LENGTH (type
) > n
)
2321 invalid_synthetic_pointer ();
2323 val_bytes
= value_contents_all (value
);
2324 val_bytes
+= byte_offset
;
2327 /* Preserve VALUE because we are going to free values back
2328 to the mark, but we still need the value contents
2330 value_incref (value
);
2331 do_cleanups (value_chain
);
2332 make_cleanup_value_free (value
);
2334 retval
= allocate_value (type
);
2335 contents
= value_contents_raw (retval
);
2336 if (n
> TYPE_LENGTH (type
))
2338 struct gdbarch
*objfile_gdbarch
= get_objfile_arch (objfile
);
2340 if (gdbarch_byte_order (objfile_gdbarch
) == BFD_ENDIAN_BIG
)
2341 val_bytes
+= n
- TYPE_LENGTH (type
);
2342 n
= TYPE_LENGTH (type
);
2344 memcpy (contents
, val_bytes
, n
);
2348 case DWARF_VALUE_LITERAL
:
2351 const bfd_byte
*ldata
;
2352 size_t n
= ctx
->len
;
2354 if (byte_offset
+ TYPE_LENGTH (type
) > n
)
2355 invalid_synthetic_pointer ();
2357 do_cleanups (value_chain
);
2358 retval
= allocate_value (type
);
2359 contents
= value_contents_raw (retval
);
2361 ldata
= ctx
->data
+ byte_offset
;
2364 if (n
> TYPE_LENGTH (type
))
2366 struct gdbarch
*objfile_gdbarch
= get_objfile_arch (objfile
);
2368 if (gdbarch_byte_order (objfile_gdbarch
) == BFD_ENDIAN_BIG
)
2369 ldata
+= n
- TYPE_LENGTH (type
);
2370 n
= TYPE_LENGTH (type
);
2372 memcpy (contents
, ldata
, n
);
2376 case DWARF_VALUE_OPTIMIZED_OUT
:
2377 do_cleanups (value_chain
);
2378 retval
= allocate_optimized_out_value (type
);
2381 /* DWARF_VALUE_IMPLICIT_POINTER was converted to a pieced
2382 operation by execute_stack_op. */
2383 case DWARF_VALUE_IMPLICIT_POINTER
:
2384 /* DWARF_VALUE_OPTIMIZED_OUT can't occur in this context --
2385 it can only be encountered when making a piece. */
2387 internal_error (__FILE__
, __LINE__
, _("invalid location type"));
2391 set_value_initialized (retval
, ctx
->initialized
);
2393 do_cleanups (old_chain
);
2398 /* The exported interface to dwarf2_evaluate_loc_desc_full; it always
2399 passes 0 as the byte_offset. */
2402 dwarf2_evaluate_loc_desc (struct type
*type
, struct frame_info
*frame
,
2403 const gdb_byte
*data
, size_t size
,
2404 struct dwarf2_per_cu_data
*per_cu
)
2406 return dwarf2_evaluate_loc_desc_full (type
, frame
, data
, size
, per_cu
, 0);
2410 /* Helper functions and baton for dwarf2_loc_desc_needs_frame. */
2412 struct needs_frame_baton
2415 struct dwarf2_per_cu_data
*per_cu
;
2418 /* Reads from registers do require a frame. */
2420 needs_frame_read_reg (void *baton
, int regnum
)
2422 struct needs_frame_baton
*nf_baton
= baton
;
2424 nf_baton
->needs_frame
= 1;
2428 /* Reads from memory do not require a frame. */
2430 needs_frame_read_mem (void *baton
, gdb_byte
*buf
, CORE_ADDR addr
, size_t len
)
2432 memset (buf
, 0, len
);
2435 /* Frame-relative accesses do require a frame. */
2437 needs_frame_frame_base (void *baton
, const gdb_byte
**start
, size_t * length
)
2439 static gdb_byte lit0
= DW_OP_lit0
;
2440 struct needs_frame_baton
*nf_baton
= baton
;
2445 nf_baton
->needs_frame
= 1;
2448 /* CFA accesses require a frame. */
2451 needs_frame_frame_cfa (void *baton
)
2453 struct needs_frame_baton
*nf_baton
= baton
;
2455 nf_baton
->needs_frame
= 1;
2459 /* Thread-local accesses do require a frame. */
2461 needs_frame_tls_address (void *baton
, CORE_ADDR offset
)
2463 struct needs_frame_baton
*nf_baton
= baton
;
2465 nf_baton
->needs_frame
= 1;
2469 /* Helper interface of per_cu_dwarf_call for dwarf2_loc_desc_needs_frame. */
2472 needs_frame_dwarf_call (struct dwarf_expr_context
*ctx
, cu_offset die_offset
)
2474 struct needs_frame_baton
*nf_baton
= ctx
->baton
;
2476 per_cu_dwarf_call (ctx
, die_offset
, nf_baton
->per_cu
,
2477 ctx
->funcs
->get_frame_pc
, ctx
->baton
);
2480 /* DW_OP_GNU_entry_value accesses require a caller, therefore a frame. */
2483 needs_dwarf_reg_entry_value (struct dwarf_expr_context
*ctx
,
2484 enum call_site_parameter_kind kind
,
2485 union call_site_parameter_u kind_u
, int deref_size
)
2487 struct needs_frame_baton
*nf_baton
= ctx
->baton
;
2489 nf_baton
->needs_frame
= 1;
2491 /* The expression may require some stub values on DWARF stack. */
2492 dwarf_expr_push_address (ctx
, 0, 0);
2495 /* DW_OP_GNU_addr_index doesn't require a frame. */
2498 needs_get_addr_index (void *baton
, unsigned int index
)
2500 /* Nothing to do. */
2504 /* Virtual method table for dwarf2_loc_desc_needs_frame below. */
2506 static const struct dwarf_expr_context_funcs needs_frame_ctx_funcs
=
2508 needs_frame_read_reg
,
2509 needs_frame_read_mem
,
2510 needs_frame_frame_base
,
2511 needs_frame_frame_cfa
,
2512 needs_frame_frame_cfa
, /* get_frame_pc */
2513 needs_frame_tls_address
,
2514 needs_frame_dwarf_call
,
2515 NULL
, /* get_base_type */
2516 needs_dwarf_reg_entry_value
,
2517 needs_get_addr_index
2520 /* Return non-zero iff the location expression at DATA (length SIZE)
2521 requires a frame to evaluate. */
2524 dwarf2_loc_desc_needs_frame (const gdb_byte
*data
, size_t size
,
2525 struct dwarf2_per_cu_data
*per_cu
)
2527 struct needs_frame_baton baton
;
2528 struct dwarf_expr_context
*ctx
;
2530 struct cleanup
*old_chain
;
2531 struct objfile
*objfile
= dwarf2_per_cu_objfile (per_cu
);
2533 baton
.needs_frame
= 0;
2534 baton
.per_cu
= per_cu
;
2536 ctx
= new_dwarf_expr_context ();
2537 old_chain
= make_cleanup_free_dwarf_expr_context (ctx
);
2538 make_cleanup_value_free_to_mark (value_mark ());
2540 ctx
->gdbarch
= get_objfile_arch (objfile
);
2541 ctx
->addr_size
= dwarf2_per_cu_addr_size (per_cu
);
2542 ctx
->ref_addr_size
= dwarf2_per_cu_ref_addr_size (per_cu
);
2543 ctx
->offset
= dwarf2_per_cu_text_offset (per_cu
);
2544 ctx
->baton
= &baton
;
2545 ctx
->funcs
= &needs_frame_ctx_funcs
;
2547 dwarf_expr_eval (ctx
, data
, size
);
2549 in_reg
= ctx
->location
== DWARF_VALUE_REGISTER
;
2551 if (ctx
->num_pieces
> 0)
2555 /* If the location has several pieces, and any of them are in
2556 registers, then we will need a frame to fetch them from. */
2557 for (i
= 0; i
< ctx
->num_pieces
; i
++)
2558 if (ctx
->pieces
[i
].location
== DWARF_VALUE_REGISTER
)
2562 do_cleanups (old_chain
);
2564 return baton
.needs_frame
|| in_reg
;
2567 /* A helper function that throws an unimplemented error mentioning a
2568 given DWARF operator. */
2571 unimplemented (unsigned int op
)
2573 const char *name
= get_DW_OP_name (op
);
2576 error (_("DWARF operator %s cannot be translated to an agent expression"),
2579 error (_("Unknown DWARF operator 0x%02x cannot be translated "
2580 "to an agent expression"),
2584 /* A helper function to convert a DWARF register to an arch register.
2585 ARCH is the architecture.
2586 DWARF_REG is the register.
2587 This will throw an exception if the DWARF register cannot be
2588 translated to an architecture register. */
2591 translate_register (struct gdbarch
*arch
, int dwarf_reg
)
2593 int reg
= gdbarch_dwarf2_reg_to_regnum (arch
, dwarf_reg
);
2595 error (_("Unable to access DWARF register number %d"), dwarf_reg
);
2599 /* A helper function that emits an access to memory. ARCH is the
2600 target architecture. EXPR is the expression which we are building.
2601 NBITS is the number of bits we want to read. This emits the
2602 opcodes needed to read the memory and then extract the desired
2606 access_memory (struct gdbarch
*arch
, struct agent_expr
*expr
, ULONGEST nbits
)
2608 ULONGEST nbytes
= (nbits
+ 7) / 8;
2610 gdb_assert (nbytes
> 0 && nbytes
<= sizeof (LONGEST
));
2613 ax_trace_quick (expr
, nbytes
);
2616 ax_simple (expr
, aop_ref8
);
2617 else if (nbits
<= 16)
2618 ax_simple (expr
, aop_ref16
);
2619 else if (nbits
<= 32)
2620 ax_simple (expr
, aop_ref32
);
2622 ax_simple (expr
, aop_ref64
);
2624 /* If we read exactly the number of bytes we wanted, we're done. */
2625 if (8 * nbytes
== nbits
)
2628 if (gdbarch_bits_big_endian (arch
))
2630 /* On a bits-big-endian machine, we want the high-order
2632 ax_const_l (expr
, 8 * nbytes
- nbits
);
2633 ax_simple (expr
, aop_rsh_unsigned
);
2637 /* On a bits-little-endian box, we want the low-order NBITS. */
2638 ax_zero_ext (expr
, nbits
);
2642 /* A helper function to return the frame's PC. */
2645 get_ax_pc (void *baton
)
2647 struct agent_expr
*expr
= baton
;
2652 /* Compile a DWARF location expression to an agent expression.
2654 EXPR is the agent expression we are building.
2655 LOC is the agent value we modify.
2656 ARCH is the architecture.
2657 ADDR_SIZE is the size of addresses, in bytes.
2658 OP_PTR is the start of the location expression.
2659 OP_END is one past the last byte of the location expression.
2661 This will throw an exception for various kinds of errors -- for
2662 example, if the expression cannot be compiled, or if the expression
2666 dwarf2_compile_expr_to_ax (struct agent_expr
*expr
, struct axs_value
*loc
,
2667 struct gdbarch
*arch
, unsigned int addr_size
,
2668 const gdb_byte
*op_ptr
, const gdb_byte
*op_end
,
2669 struct dwarf2_per_cu_data
*per_cu
)
2671 struct cleanup
*cleanups
;
2673 VEC(int) *dw_labels
= NULL
, *patches
= NULL
;
2674 const gdb_byte
* const base
= op_ptr
;
2675 const gdb_byte
*previous_piece
= op_ptr
;
2676 enum bfd_endian byte_order
= gdbarch_byte_order (arch
);
2677 ULONGEST bits_collected
= 0;
2678 unsigned int addr_size_bits
= 8 * addr_size
;
2679 int bits_big_endian
= gdbarch_bits_big_endian (arch
);
2681 offsets
= xmalloc ((op_end
- op_ptr
) * sizeof (int));
2682 cleanups
= make_cleanup (xfree
, offsets
);
2684 for (i
= 0; i
< op_end
- op_ptr
; ++i
)
2687 make_cleanup (VEC_cleanup (int), &dw_labels
);
2688 make_cleanup (VEC_cleanup (int), &patches
);
2690 /* By default we are making an address. */
2691 loc
->kind
= axs_lvalue_memory
;
2693 while (op_ptr
< op_end
)
2695 enum dwarf_location_atom op
= *op_ptr
;
2696 uint64_t uoffset
, reg
;
2700 offsets
[op_ptr
- base
] = expr
->len
;
2703 /* Our basic approach to code generation is to map DWARF
2704 operations directly to AX operations. However, there are
2707 First, DWARF works on address-sized units, but AX always uses
2708 LONGEST. For most operations we simply ignore this
2709 difference; instead we generate sign extensions as needed
2710 before division and comparison operations. It would be nice
2711 to omit the sign extensions, but there is no way to determine
2712 the size of the target's LONGEST. (This code uses the size
2713 of the host LONGEST in some cases -- that is a bug but it is
2716 Second, some DWARF operations cannot be translated to AX.
2717 For these we simply fail. See
2718 http://sourceware.org/bugzilla/show_bug.cgi?id=11662. */
2753 ax_const_l (expr
, op
- DW_OP_lit0
);
2757 uoffset
= extract_unsigned_integer (op_ptr
, addr_size
, byte_order
);
2758 op_ptr
+= addr_size
;
2759 /* Some versions of GCC emit DW_OP_addr before
2760 DW_OP_GNU_push_tls_address. In this case the value is an
2761 index, not an address. We don't support things like
2762 branching between the address and the TLS op. */
2763 if (op_ptr
>= op_end
|| *op_ptr
!= DW_OP_GNU_push_tls_address
)
2764 uoffset
+= dwarf2_per_cu_text_offset (per_cu
);
2765 ax_const_l (expr
, uoffset
);
2769 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, 1, byte_order
));
2773 ax_const_l (expr
, extract_signed_integer (op_ptr
, 1, byte_order
));
2777 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, 2, byte_order
));
2781 ax_const_l (expr
, extract_signed_integer (op_ptr
, 2, byte_order
));
2785 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, 4, byte_order
));
2789 ax_const_l (expr
, extract_signed_integer (op_ptr
, 4, byte_order
));
2793 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, 8, byte_order
));
2797 ax_const_l (expr
, extract_signed_integer (op_ptr
, 8, byte_order
));
2801 op_ptr
= safe_read_uleb128 (op_ptr
, op_end
, &uoffset
);
2802 ax_const_l (expr
, uoffset
);
2805 op_ptr
= safe_read_sleb128 (op_ptr
, op_end
, &offset
);
2806 ax_const_l (expr
, offset
);
2841 dwarf_expr_require_composition (op_ptr
, op_end
, "DW_OP_regx");
2842 loc
->u
.reg
= translate_register (arch
, op
- DW_OP_reg0
);
2843 loc
->kind
= axs_lvalue_register
;
2847 op_ptr
= safe_read_uleb128 (op_ptr
, op_end
, ®
);
2848 dwarf_expr_require_composition (op_ptr
, op_end
, "DW_OP_regx");
2849 loc
->u
.reg
= translate_register (arch
, reg
);
2850 loc
->kind
= axs_lvalue_register
;
2853 case DW_OP_implicit_value
:
2857 op_ptr
= safe_read_uleb128 (op_ptr
, op_end
, &len
);
2858 if (op_ptr
+ len
> op_end
)
2859 error (_("DW_OP_implicit_value: too few bytes available."));
2860 if (len
> sizeof (ULONGEST
))
2861 error (_("Cannot translate DW_OP_implicit_value of %d bytes"),
2864 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, len
,
2867 dwarf_expr_require_composition (op_ptr
, op_end
,
2868 "DW_OP_implicit_value");
2870 loc
->kind
= axs_rvalue
;
2874 case DW_OP_stack_value
:
2875 dwarf_expr_require_composition (op_ptr
, op_end
, "DW_OP_stack_value");
2876 loc
->kind
= axs_rvalue
;
2911 op_ptr
= safe_read_sleb128 (op_ptr
, op_end
, &offset
);
2912 i
= translate_register (arch
, op
- DW_OP_breg0
);
2916 ax_const_l (expr
, offset
);
2917 ax_simple (expr
, aop_add
);
2922 op_ptr
= safe_read_uleb128 (op_ptr
, op_end
, ®
);
2923 op_ptr
= safe_read_sleb128 (op_ptr
, op_end
, &offset
);
2924 i
= translate_register (arch
, reg
);
2928 ax_const_l (expr
, offset
);
2929 ax_simple (expr
, aop_add
);
2935 const gdb_byte
*datastart
;
2938 struct symbol
*framefunc
;
2940 b
= block_for_pc (expr
->scope
);
2943 error (_("No block found for address"));
2945 framefunc
= block_linkage_function (b
);
2948 error (_("No function found for block"));
2950 dwarf_expr_frame_base_1 (framefunc
, expr
->scope
,
2951 &datastart
, &datalen
);
2953 op_ptr
= safe_read_sleb128 (op_ptr
, op_end
, &offset
);
2954 dwarf2_compile_expr_to_ax (expr
, loc
, arch
, addr_size
, datastart
,
2955 datastart
+ datalen
, per_cu
);
2956 if (loc
->kind
== axs_lvalue_register
)
2957 require_rvalue (expr
, loc
);
2961 ax_const_l (expr
, offset
);
2962 ax_simple (expr
, aop_add
);
2965 loc
->kind
= axs_lvalue_memory
;
2970 ax_simple (expr
, aop_dup
);
2974 ax_simple (expr
, aop_pop
);
2979 ax_pick (expr
, offset
);
2983 ax_simple (expr
, aop_swap
);
2991 ax_simple (expr
, aop_rot
);
2995 case DW_OP_deref_size
:
2999 if (op
== DW_OP_deref_size
)
3004 if (size
!= 1 && size
!= 2 && size
!= 4 && size
!= 8)
3005 error (_("Unsupported size %d in %s"),
3006 size
, get_DW_OP_name (op
));
3007 access_memory (arch
, expr
, size
* TARGET_CHAR_BIT
);
3012 /* Sign extend the operand. */
3013 ax_ext (expr
, addr_size_bits
);
3014 ax_simple (expr
, aop_dup
);
3015 ax_const_l (expr
, 0);
3016 ax_simple (expr
, aop_less_signed
);
3017 ax_simple (expr
, aop_log_not
);
3018 i
= ax_goto (expr
, aop_if_goto
);
3019 /* We have to emit 0 - X. */
3020 ax_const_l (expr
, 0);
3021 ax_simple (expr
, aop_swap
);
3022 ax_simple (expr
, aop_sub
);
3023 ax_label (expr
, i
, expr
->len
);
3027 /* No need to sign extend here. */
3028 ax_const_l (expr
, 0);
3029 ax_simple (expr
, aop_swap
);
3030 ax_simple (expr
, aop_sub
);
3034 /* Sign extend the operand. */
3035 ax_ext (expr
, addr_size_bits
);
3036 ax_simple (expr
, aop_bit_not
);
3039 case DW_OP_plus_uconst
:
3040 op_ptr
= safe_read_uleb128 (op_ptr
, op_end
, ®
);
3041 /* It would be really weird to emit `DW_OP_plus_uconst 0',
3042 but we micro-optimize anyhow. */
3045 ax_const_l (expr
, reg
);
3046 ax_simple (expr
, aop_add
);
3051 ax_simple (expr
, aop_bit_and
);
3055 /* Sign extend the operands. */
3056 ax_ext (expr
, addr_size_bits
);
3057 ax_simple (expr
, aop_swap
);
3058 ax_ext (expr
, addr_size_bits
);
3059 ax_simple (expr
, aop_swap
);
3060 ax_simple (expr
, aop_div_signed
);
3064 ax_simple (expr
, aop_sub
);
3068 ax_simple (expr
, aop_rem_unsigned
);
3072 ax_simple (expr
, aop_mul
);
3076 ax_simple (expr
, aop_bit_or
);
3080 ax_simple (expr
, aop_add
);
3084 ax_simple (expr
, aop_lsh
);
3088 ax_simple (expr
, aop_rsh_unsigned
);
3092 ax_simple (expr
, aop_rsh_signed
);
3096 ax_simple (expr
, aop_bit_xor
);
3100 /* Sign extend the operands. */
3101 ax_ext (expr
, addr_size_bits
);
3102 ax_simple (expr
, aop_swap
);
3103 ax_ext (expr
, addr_size_bits
);
3104 /* Note no swap here: A <= B is !(B < A). */
3105 ax_simple (expr
, aop_less_signed
);
3106 ax_simple (expr
, aop_log_not
);
3110 /* Sign extend the operands. */
3111 ax_ext (expr
, addr_size_bits
);
3112 ax_simple (expr
, aop_swap
);
3113 ax_ext (expr
, addr_size_bits
);
3114 ax_simple (expr
, aop_swap
);
3115 /* A >= B is !(A < B). */
3116 ax_simple (expr
, aop_less_signed
);
3117 ax_simple (expr
, aop_log_not
);
3121 /* Sign extend the operands. */
3122 ax_ext (expr
, addr_size_bits
);
3123 ax_simple (expr
, aop_swap
);
3124 ax_ext (expr
, addr_size_bits
);
3125 /* No need for a second swap here. */
3126 ax_simple (expr
, aop_equal
);
3130 /* Sign extend the operands. */
3131 ax_ext (expr
, addr_size_bits
);
3132 ax_simple (expr
, aop_swap
);
3133 ax_ext (expr
, addr_size_bits
);
3134 ax_simple (expr
, aop_swap
);
3135 ax_simple (expr
, aop_less_signed
);
3139 /* Sign extend the operands. */
3140 ax_ext (expr
, addr_size_bits
);
3141 ax_simple (expr
, aop_swap
);
3142 ax_ext (expr
, addr_size_bits
);
3143 /* Note no swap here: A > B is B < A. */
3144 ax_simple (expr
, aop_less_signed
);
3148 /* Sign extend the operands. */
3149 ax_ext (expr
, addr_size_bits
);
3150 ax_simple (expr
, aop_swap
);
3151 ax_ext (expr
, addr_size_bits
);
3152 /* No need for a swap here. */
3153 ax_simple (expr
, aop_equal
);
3154 ax_simple (expr
, aop_log_not
);
3157 case DW_OP_call_frame_cfa
:
3158 dwarf2_compile_cfa_to_ax (expr
, loc
, arch
, expr
->scope
, per_cu
);
3159 loc
->kind
= axs_lvalue_memory
;
3162 case DW_OP_GNU_push_tls_address
:
3167 offset
= extract_signed_integer (op_ptr
, 2, byte_order
);
3169 i
= ax_goto (expr
, aop_goto
);
3170 VEC_safe_push (int, dw_labels
, op_ptr
+ offset
- base
);
3171 VEC_safe_push (int, patches
, i
);
3175 offset
= extract_signed_integer (op_ptr
, 2, byte_order
);
3177 /* Zero extend the operand. */
3178 ax_zero_ext (expr
, addr_size_bits
);
3179 i
= ax_goto (expr
, aop_if_goto
);
3180 VEC_safe_push (int, dw_labels
, op_ptr
+ offset
- base
);
3181 VEC_safe_push (int, patches
, i
);
3188 case DW_OP_bit_piece
:
3190 uint64_t size
, offset
;
3192 if (op_ptr
- 1 == previous_piece
)
3193 error (_("Cannot translate empty pieces to agent expressions"));
3194 previous_piece
= op_ptr
- 1;
3196 op_ptr
= safe_read_uleb128 (op_ptr
, op_end
, &size
);
3197 if (op
== DW_OP_piece
)
3203 op_ptr
= safe_read_uleb128 (op_ptr
, op_end
, &offset
);
3205 if (bits_collected
+ size
> 8 * sizeof (LONGEST
))
3206 error (_("Expression pieces exceed word size"));
3208 /* Access the bits. */
3211 case axs_lvalue_register
:
3212 ax_reg (expr
, loc
->u
.reg
);
3215 case axs_lvalue_memory
:
3216 /* Offset the pointer, if needed. */
3219 ax_const_l (expr
, offset
/ 8);
3220 ax_simple (expr
, aop_add
);
3223 access_memory (arch
, expr
, size
);
3227 /* For a bits-big-endian target, shift up what we already
3228 have. For a bits-little-endian target, shift up the
3229 new data. Note that there is a potential bug here if
3230 the DWARF expression leaves multiple values on the
3232 if (bits_collected
> 0)
3234 if (bits_big_endian
)
3236 ax_simple (expr
, aop_swap
);
3237 ax_const_l (expr
, size
);
3238 ax_simple (expr
, aop_lsh
);
3239 /* We don't need a second swap here, because
3240 aop_bit_or is symmetric. */
3244 ax_const_l (expr
, size
);
3245 ax_simple (expr
, aop_lsh
);
3247 ax_simple (expr
, aop_bit_or
);
3250 bits_collected
+= size
;
3251 loc
->kind
= axs_rvalue
;
3255 case DW_OP_GNU_uninit
:
3261 struct dwarf2_locexpr_baton block
;
3262 int size
= (op
== DW_OP_call2
? 2 : 4);
3265 uoffset
= extract_unsigned_integer (op_ptr
, size
, byte_order
);
3268 offset
.cu_off
= uoffset
;
3269 block
= dwarf2_fetch_die_loc_cu_off (offset
, per_cu
,
3272 /* DW_OP_call_ref is currently not supported. */
3273 gdb_assert (block
.per_cu
== per_cu
);
3275 dwarf2_compile_expr_to_ax (expr
, loc
, arch
, addr_size
,
3276 block
.data
, block
.data
+ block
.size
,
3281 case DW_OP_call_ref
:
3289 /* Patch all the branches we emitted. */
3290 for (i
= 0; i
< VEC_length (int, patches
); ++i
)
3292 int targ
= offsets
[VEC_index (int, dw_labels
, i
)];
3294 internal_error (__FILE__
, __LINE__
, _("invalid label"));
3295 ax_label (expr
, VEC_index (int, patches
, i
), targ
);
3298 do_cleanups (cleanups
);
3302 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
3303 evaluator to calculate the location. */
3304 static struct value
*
3305 locexpr_read_variable (struct symbol
*symbol
, struct frame_info
*frame
)
3307 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
3310 val
= dwarf2_evaluate_loc_desc (SYMBOL_TYPE (symbol
), frame
, dlbaton
->data
,
3311 dlbaton
->size
, dlbaton
->per_cu
);
3316 /* Return the value of SYMBOL in FRAME at (callee) FRAME's function
3317 entry. SYMBOL should be a function parameter, otherwise NO_ENTRY_VALUE_ERROR
3320 static struct value
*
3321 locexpr_read_variable_at_entry (struct symbol
*symbol
, struct frame_info
*frame
)
3323 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
3325 return value_of_dwarf_block_entry (SYMBOL_TYPE (symbol
), frame
, dlbaton
->data
,
3329 /* Return non-zero iff we need a frame to evaluate SYMBOL. */
3331 locexpr_read_needs_frame (struct symbol
*symbol
)
3333 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
3335 return dwarf2_loc_desc_needs_frame (dlbaton
->data
, dlbaton
->size
,
3339 /* Return true if DATA points to the end of a piece. END is one past
3340 the last byte in the expression. */
3343 piece_end_p (const gdb_byte
*data
, const gdb_byte
*end
)
3345 return data
== end
|| data
[0] == DW_OP_piece
|| data
[0] == DW_OP_bit_piece
;
3348 /* Helper for locexpr_describe_location_piece that finds the name of a
3352 locexpr_regname (struct gdbarch
*gdbarch
, int dwarf_regnum
)
3356 regnum
= gdbarch_dwarf2_reg_to_regnum (gdbarch
, dwarf_regnum
);
3357 return gdbarch_register_name (gdbarch
, regnum
);
3360 /* Nicely describe a single piece of a location, returning an updated
3361 position in the bytecode sequence. This function cannot recognize
3362 all locations; if a location is not recognized, it simply returns
3363 DATA. If there is an error during reading, e.g. we run off the end
3364 of the buffer, an error is thrown. */
3366 static const gdb_byte
*
3367 locexpr_describe_location_piece (struct symbol
*symbol
, struct ui_file
*stream
,
3368 CORE_ADDR addr
, struct objfile
*objfile
,
3369 struct dwarf2_per_cu_data
*per_cu
,
3370 const gdb_byte
*data
, const gdb_byte
*end
,
3371 unsigned int addr_size
)
3373 struct gdbarch
*gdbarch
= get_objfile_arch (objfile
);
3376 if (data
[0] >= DW_OP_reg0
&& data
[0] <= DW_OP_reg31
)
3378 fprintf_filtered (stream
, _("a variable in $%s"),
3379 locexpr_regname (gdbarch
, data
[0] - DW_OP_reg0
));
3382 else if (data
[0] == DW_OP_regx
)
3386 data
= safe_read_uleb128 (data
+ 1, end
, ®
);
3387 fprintf_filtered (stream
, _("a variable in $%s"),
3388 locexpr_regname (gdbarch
, reg
));
3390 else if (data
[0] == DW_OP_fbreg
)
3393 struct symbol
*framefunc
;
3395 int64_t frame_offset
;
3396 const gdb_byte
*base_data
, *new_data
, *save_data
= data
;
3398 int64_t base_offset
= 0;
3400 new_data
= safe_read_sleb128 (data
+ 1, end
, &frame_offset
);
3401 if (!piece_end_p (new_data
, end
))
3405 b
= block_for_pc (addr
);
3408 error (_("No block found for address for symbol \"%s\"."),
3409 SYMBOL_PRINT_NAME (symbol
));
3411 framefunc
= block_linkage_function (b
);
3414 error (_("No function found for block for symbol \"%s\"."),
3415 SYMBOL_PRINT_NAME (symbol
));
3417 dwarf_expr_frame_base_1 (framefunc
, addr
, &base_data
, &base_size
);
3419 if (base_data
[0] >= DW_OP_breg0
&& base_data
[0] <= DW_OP_breg31
)
3421 const gdb_byte
*buf_end
;
3423 frame_reg
= base_data
[0] - DW_OP_breg0
;
3424 buf_end
= safe_read_sleb128 (base_data
+ 1, base_data
+ base_size
,
3426 if (buf_end
!= base_data
+ base_size
)
3427 error (_("Unexpected opcode after "
3428 "DW_OP_breg%u for symbol \"%s\"."),
3429 frame_reg
, SYMBOL_PRINT_NAME (symbol
));
3431 else if (base_data
[0] >= DW_OP_reg0
&& base_data
[0] <= DW_OP_reg31
)
3433 /* The frame base is just the register, with no offset. */
3434 frame_reg
= base_data
[0] - DW_OP_reg0
;
3439 /* We don't know what to do with the frame base expression,
3440 so we can't trace this variable; give up. */
3444 fprintf_filtered (stream
,
3445 _("a variable at frame base reg $%s offset %s+%s"),
3446 locexpr_regname (gdbarch
, frame_reg
),
3447 plongest (base_offset
), plongest (frame_offset
));
3449 else if (data
[0] >= DW_OP_breg0
&& data
[0] <= DW_OP_breg31
3450 && piece_end_p (data
, end
))
3454 data
= safe_read_sleb128 (data
+ 1, end
, &offset
);
3456 fprintf_filtered (stream
,
3457 _("a variable at offset %s from base reg $%s"),
3459 locexpr_regname (gdbarch
, data
[0] - DW_OP_breg0
));
3462 /* The location expression for a TLS variable looks like this (on a
3465 DW_AT_location : 10 byte block: 3 4 0 0 0 0 0 0 0 e0
3466 (DW_OP_addr: 4; DW_OP_GNU_push_tls_address)
3468 0x3 is the encoding for DW_OP_addr, which has an operand as long
3469 as the size of an address on the target machine (here is 8
3470 bytes). Note that more recent version of GCC emit DW_OP_const4u
3471 or DW_OP_const8u, depending on address size, rather than
3472 DW_OP_addr. 0xe0 is the encoding for DW_OP_GNU_push_tls_address.
3473 The operand represents the offset at which the variable is within
3474 the thread local storage. */
3476 else if (data
+ 1 + addr_size
< end
3477 && (data
[0] == DW_OP_addr
3478 || (addr_size
== 4 && data
[0] == DW_OP_const4u
)
3479 || (addr_size
== 8 && data
[0] == DW_OP_const8u
))
3480 && data
[1 + addr_size
] == DW_OP_GNU_push_tls_address
3481 && piece_end_p (data
+ 2 + addr_size
, end
))
3484 offset
= extract_unsigned_integer (data
+ 1, addr_size
,
3485 gdbarch_byte_order (gdbarch
));
3487 fprintf_filtered (stream
,
3488 _("a thread-local variable at offset 0x%s "
3489 "in the thread-local storage for `%s'"),
3490 phex_nz (offset
, addr_size
), objfile
->name
);
3492 data
+= 1 + addr_size
+ 1;
3495 /* With -gsplit-dwarf a TLS variable can also look like this:
3496 DW_AT_location : 3 byte block: fc 4 e0
3497 (DW_OP_GNU_const_index: 4;
3498 DW_OP_GNU_push_tls_address) */
3499 else if (data
+ 3 <= end
3500 && data
+ 1 + (leb128_size
= skip_leb128 (data
+ 1, end
)) < end
3501 && data
[0] == DW_OP_GNU_const_index
3503 && data
[1 + leb128_size
] == DW_OP_GNU_push_tls_address
3504 && piece_end_p (data
+ 2 + leb128_size
, end
))
3508 data
= safe_read_uleb128 (data
+ 1, end
, &offset
);
3509 offset
= dwarf2_read_addr_index (per_cu
, offset
);
3510 fprintf_filtered (stream
,
3511 _("a thread-local variable at offset 0x%s "
3512 "in the thread-local storage for `%s'"),
3513 phex_nz (offset
, addr_size
), objfile
->name
);
3517 else if (data
[0] >= DW_OP_lit0
3518 && data
[0] <= DW_OP_lit31
3520 && data
[1] == DW_OP_stack_value
)
3522 fprintf_filtered (stream
, _("the constant %d"), data
[0] - DW_OP_lit0
);
3529 /* Disassemble an expression, stopping at the end of a piece or at the
3530 end of the expression. Returns a pointer to the next unread byte
3531 in the input expression. If ALL is nonzero, then this function
3532 will keep going until it reaches the end of the expression.
3533 If there is an error during reading, e.g. we run off the end
3534 of the buffer, an error is thrown. */
3536 static const gdb_byte
*
3537 disassemble_dwarf_expression (struct ui_file
*stream
,
3538 struct gdbarch
*arch
, unsigned int addr_size
,
3539 int offset_size
, const gdb_byte
*start
,
3540 const gdb_byte
*data
, const gdb_byte
*end
,
3541 int indent
, int all
,
3542 struct dwarf2_per_cu_data
*per_cu
)
3546 || (data
[0] != DW_OP_piece
&& data
[0] != DW_OP_bit_piece
)))
3548 enum dwarf_location_atom op
= *data
++;
3553 name
= get_DW_OP_name (op
);
3556 error (_("Unrecognized DWARF opcode 0x%02x at %ld"),
3557 op
, (long) (data
- 1 - start
));
3558 fprintf_filtered (stream
, " %*ld: %s", indent
+ 4,
3559 (long) (data
- 1 - start
), name
);
3564 ul
= extract_unsigned_integer (data
, addr_size
,
3565 gdbarch_byte_order (arch
));
3567 fprintf_filtered (stream
, " 0x%s", phex_nz (ul
, addr_size
));
3571 ul
= extract_unsigned_integer (data
, 1, gdbarch_byte_order (arch
));
3573 fprintf_filtered (stream
, " %s", pulongest (ul
));
3576 l
= extract_signed_integer (data
, 1, gdbarch_byte_order (arch
));
3578 fprintf_filtered (stream
, " %s", plongest (l
));
3581 ul
= extract_unsigned_integer (data
, 2, gdbarch_byte_order (arch
));
3583 fprintf_filtered (stream
, " %s", pulongest (ul
));
3586 l
= extract_signed_integer (data
, 2, gdbarch_byte_order (arch
));
3588 fprintf_filtered (stream
, " %s", plongest (l
));
3591 ul
= extract_unsigned_integer (data
, 4, gdbarch_byte_order (arch
));
3593 fprintf_filtered (stream
, " %s", pulongest (ul
));
3596 l
= extract_signed_integer (data
, 4, gdbarch_byte_order (arch
));
3598 fprintf_filtered (stream
, " %s", plongest (l
));
3601 ul
= extract_unsigned_integer (data
, 8, gdbarch_byte_order (arch
));
3603 fprintf_filtered (stream
, " %s", pulongest (ul
));
3606 l
= extract_signed_integer (data
, 8, gdbarch_byte_order (arch
));
3608 fprintf_filtered (stream
, " %s", plongest (l
));
3611 data
= safe_read_uleb128 (data
, end
, &ul
);
3612 fprintf_filtered (stream
, " %s", pulongest (ul
));
3615 data
= safe_read_sleb128 (data
, end
, &l
);
3616 fprintf_filtered (stream
, " %s", plongest (l
));
3651 fprintf_filtered (stream
, " [$%s]",
3652 locexpr_regname (arch
, op
- DW_OP_reg0
));
3656 data
= safe_read_uleb128 (data
, end
, &ul
);
3657 fprintf_filtered (stream
, " %s [$%s]", pulongest (ul
),
3658 locexpr_regname (arch
, (int) ul
));
3661 case DW_OP_implicit_value
:
3662 data
= safe_read_uleb128 (data
, end
, &ul
);
3664 fprintf_filtered (stream
, " %s", pulongest (ul
));
3699 data
= safe_read_sleb128 (data
, end
, &l
);
3700 fprintf_filtered (stream
, " %s [$%s]", plongest (l
),
3701 locexpr_regname (arch
, op
- DW_OP_breg0
));
3705 data
= safe_read_uleb128 (data
, end
, &ul
);
3706 data
= safe_read_sleb128 (data
, end
, &l
);
3707 fprintf_filtered (stream
, " register %s [$%s] offset %s",
3709 locexpr_regname (arch
, (int) ul
),
3714 data
= safe_read_sleb128 (data
, end
, &l
);
3715 fprintf_filtered (stream
, " %s", plongest (l
));
3718 case DW_OP_xderef_size
:
3719 case DW_OP_deref_size
:
3721 fprintf_filtered (stream
, " %d", *data
);
3725 case DW_OP_plus_uconst
:
3726 data
= safe_read_uleb128 (data
, end
, &ul
);
3727 fprintf_filtered (stream
, " %s", pulongest (ul
));
3731 l
= extract_signed_integer (data
, 2, gdbarch_byte_order (arch
));
3733 fprintf_filtered (stream
, " to %ld",
3734 (long) (data
+ l
- start
));
3738 l
= extract_signed_integer (data
, 2, gdbarch_byte_order (arch
));
3740 fprintf_filtered (stream
, " %ld",
3741 (long) (data
+ l
- start
));
3745 ul
= extract_unsigned_integer (data
, 2, gdbarch_byte_order (arch
));
3747 fprintf_filtered (stream
, " offset %s", phex_nz (ul
, 2));
3751 ul
= extract_unsigned_integer (data
, 4, gdbarch_byte_order (arch
));
3753 fprintf_filtered (stream
, " offset %s", phex_nz (ul
, 4));
3756 case DW_OP_call_ref
:
3757 ul
= extract_unsigned_integer (data
, offset_size
,
3758 gdbarch_byte_order (arch
));
3759 data
+= offset_size
;
3760 fprintf_filtered (stream
, " offset %s", phex_nz (ul
, offset_size
));
3764 data
= safe_read_uleb128 (data
, end
, &ul
);
3765 fprintf_filtered (stream
, " %s (bytes)", pulongest (ul
));
3768 case DW_OP_bit_piece
:
3772 data
= safe_read_uleb128 (data
, end
, &ul
);
3773 data
= safe_read_uleb128 (data
, end
, &offset
);
3774 fprintf_filtered (stream
, " size %s offset %s (bits)",
3775 pulongest (ul
), pulongest (offset
));
3779 case DW_OP_GNU_implicit_pointer
:
3781 ul
= extract_unsigned_integer (data
, offset_size
,
3782 gdbarch_byte_order (arch
));
3783 data
+= offset_size
;
3785 data
= safe_read_sleb128 (data
, end
, &l
);
3787 fprintf_filtered (stream
, " DIE %s offset %s",
3788 phex_nz (ul
, offset_size
),
3793 case DW_OP_GNU_deref_type
:
3795 int addr_size
= *data
++;
3799 data
= safe_read_uleb128 (data
, end
, &ul
);
3801 type
= dwarf2_get_die_type (offset
, per_cu
);
3802 fprintf_filtered (stream
, "<");
3803 type_print (type
, "", stream
, -1);
3804 fprintf_filtered (stream
, " [0x%s]> %d", phex_nz (offset
.cu_off
, 0),
3809 case DW_OP_GNU_const_type
:
3814 data
= safe_read_uleb128 (data
, end
, &ul
);
3815 type_die
.cu_off
= ul
;
3816 type
= dwarf2_get_die_type (type_die
, per_cu
);
3817 fprintf_filtered (stream
, "<");
3818 type_print (type
, "", stream
, -1);
3819 fprintf_filtered (stream
, " [0x%s]>", phex_nz (type_die
.cu_off
, 0));
3823 case DW_OP_GNU_regval_type
:
3829 data
= safe_read_uleb128 (data
, end
, ®
);
3830 data
= safe_read_uleb128 (data
, end
, &ul
);
3831 type_die
.cu_off
= ul
;
3833 type
= dwarf2_get_die_type (type_die
, per_cu
);
3834 fprintf_filtered (stream
, "<");
3835 type_print (type
, "", stream
, -1);
3836 fprintf_filtered (stream
, " [0x%s]> [$%s]",
3837 phex_nz (type_die
.cu_off
, 0),
3838 locexpr_regname (arch
, reg
));
3842 case DW_OP_GNU_convert
:
3843 case DW_OP_GNU_reinterpret
:
3847 data
= safe_read_uleb128 (data
, end
, &ul
);
3848 type_die
.cu_off
= ul
;
3850 if (type_die
.cu_off
== 0)
3851 fprintf_filtered (stream
, "<0>");
3856 type
= dwarf2_get_die_type (type_die
, per_cu
);
3857 fprintf_filtered (stream
, "<");
3858 type_print (type
, "", stream
, -1);
3859 fprintf_filtered (stream
, " [0x%s]>", phex_nz (type_die
.cu_off
, 0));
3864 case DW_OP_GNU_entry_value
:
3865 data
= safe_read_uleb128 (data
, end
, &ul
);
3866 fputc_filtered ('\n', stream
);
3867 disassemble_dwarf_expression (stream
, arch
, addr_size
, offset_size
,
3868 start
, data
, data
+ ul
, indent
+ 2,
3873 case DW_OP_GNU_parameter_ref
:
3874 ul
= extract_unsigned_integer (data
, 4, gdbarch_byte_order (arch
));
3876 fprintf_filtered (stream
, " offset %s", phex_nz (ul
, 4));
3879 case DW_OP_GNU_addr_index
:
3880 data
= safe_read_uleb128 (data
, end
, &ul
);
3881 ul
= dwarf2_read_addr_index (per_cu
, ul
);
3882 fprintf_filtered (stream
, " 0x%s", phex_nz (ul
, addr_size
));
3884 case DW_OP_GNU_const_index
:
3885 data
= safe_read_uleb128 (data
, end
, &ul
);
3886 ul
= dwarf2_read_addr_index (per_cu
, ul
);
3887 fprintf_filtered (stream
, " %s", pulongest (ul
));
3891 fprintf_filtered (stream
, "\n");
3897 /* Describe a single location, which may in turn consist of multiple
3901 locexpr_describe_location_1 (struct symbol
*symbol
, CORE_ADDR addr
,
3902 struct ui_file
*stream
,
3903 const gdb_byte
*data
, size_t size
,
3904 struct objfile
*objfile
, unsigned int addr_size
,
3905 int offset_size
, struct dwarf2_per_cu_data
*per_cu
)
3907 const gdb_byte
*end
= data
+ size
;
3908 int first_piece
= 1, bad
= 0;
3912 const gdb_byte
*here
= data
;
3913 int disassemble
= 1;
3918 fprintf_filtered (stream
, _(", and "));
3920 if (!dwarf2_always_disassemble
)
3922 data
= locexpr_describe_location_piece (symbol
, stream
,
3923 addr
, objfile
, per_cu
,
3924 data
, end
, addr_size
);
3925 /* If we printed anything, or if we have an empty piece,
3926 then don't disassemble. */
3928 || data
[0] == DW_OP_piece
3929 || data
[0] == DW_OP_bit_piece
)
3934 fprintf_filtered (stream
, _("a complex DWARF expression:\n"));
3935 data
= disassemble_dwarf_expression (stream
,
3936 get_objfile_arch (objfile
),
3937 addr_size
, offset_size
, data
,
3939 dwarf2_always_disassemble
,
3945 int empty
= data
== here
;
3948 fprintf_filtered (stream
, " ");
3949 if (data
[0] == DW_OP_piece
)
3953 data
= safe_read_uleb128 (data
+ 1, end
, &bytes
);
3956 fprintf_filtered (stream
, _("an empty %s-byte piece"),
3959 fprintf_filtered (stream
, _(" [%s-byte piece]"),
3962 else if (data
[0] == DW_OP_bit_piece
)
3964 uint64_t bits
, offset
;
3966 data
= safe_read_uleb128 (data
+ 1, end
, &bits
);
3967 data
= safe_read_uleb128 (data
, end
, &offset
);
3970 fprintf_filtered (stream
,
3971 _("an empty %s-bit piece"),
3974 fprintf_filtered (stream
,
3975 _(" [%s-bit piece, offset %s bits]"),
3976 pulongest (bits
), pulongest (offset
));
3986 if (bad
|| data
> end
)
3987 error (_("Corrupted DWARF2 expression for \"%s\"."),
3988 SYMBOL_PRINT_NAME (symbol
));
3991 /* Print a natural-language description of SYMBOL to STREAM. This
3992 version is for a symbol with a single location. */
3995 locexpr_describe_location (struct symbol
*symbol
, CORE_ADDR addr
,
3996 struct ui_file
*stream
)
3998 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
3999 struct objfile
*objfile
= dwarf2_per_cu_objfile (dlbaton
->per_cu
);
4000 unsigned int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
4001 int offset_size
= dwarf2_per_cu_offset_size (dlbaton
->per_cu
);
4003 locexpr_describe_location_1 (symbol
, addr
, stream
,
4004 dlbaton
->data
, dlbaton
->size
,
4005 objfile
, addr_size
, offset_size
,
4009 /* Describe the location of SYMBOL as an agent value in VALUE, generating
4010 any necessary bytecode in AX. */
4013 locexpr_tracepoint_var_ref (struct symbol
*symbol
, struct gdbarch
*gdbarch
,
4014 struct agent_expr
*ax
, struct axs_value
*value
)
4016 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
4017 unsigned int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
4019 if (dlbaton
->size
== 0)
4020 value
->optimized_out
= 1;
4022 dwarf2_compile_expr_to_ax (ax
, value
, gdbarch
, addr_size
,
4023 dlbaton
->data
, dlbaton
->data
+ dlbaton
->size
,
4027 /* The set of location functions used with the DWARF-2 expression
4029 const struct symbol_computed_ops dwarf2_locexpr_funcs
= {
4030 locexpr_read_variable
,
4031 locexpr_read_variable_at_entry
,
4032 locexpr_read_needs_frame
,
4033 locexpr_describe_location
,
4034 0, /* location_has_loclist */
4035 locexpr_tracepoint_var_ref
4039 /* Wrapper functions for location lists. These generally find
4040 the appropriate location expression and call something above. */
4042 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
4043 evaluator to calculate the location. */
4044 static struct value
*
4045 loclist_read_variable (struct symbol
*symbol
, struct frame_info
*frame
)
4047 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
4049 const gdb_byte
*data
;
4051 CORE_ADDR pc
= frame
? get_frame_address_in_block (frame
) : 0;
4053 data
= dwarf2_find_location_expression (dlbaton
, &size
, pc
);
4054 val
= dwarf2_evaluate_loc_desc (SYMBOL_TYPE (symbol
), frame
, data
, size
,
4060 /* Read variable SYMBOL like loclist_read_variable at (callee) FRAME's function
4061 entry. SYMBOL should be a function parameter, otherwise NO_ENTRY_VALUE_ERROR
4064 Function always returns non-NULL value, it may be marked optimized out if
4065 inferior frame information is not available. It throws NO_ENTRY_VALUE_ERROR
4066 if it cannot resolve the parameter for any reason. */
4068 static struct value
*
4069 loclist_read_variable_at_entry (struct symbol
*symbol
, struct frame_info
*frame
)
4071 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
4072 const gdb_byte
*data
;
4076 if (frame
== NULL
|| !get_frame_func_if_available (frame
, &pc
))
4077 return allocate_optimized_out_value (SYMBOL_TYPE (symbol
));
4079 data
= dwarf2_find_location_expression (dlbaton
, &size
, pc
);
4081 return allocate_optimized_out_value (SYMBOL_TYPE (symbol
));
4083 return value_of_dwarf_block_entry (SYMBOL_TYPE (symbol
), frame
, data
, size
);
4086 /* Return non-zero iff we need a frame to evaluate SYMBOL. */
4088 loclist_read_needs_frame (struct symbol
*symbol
)
4090 /* If there's a location list, then assume we need to have a frame
4091 to choose the appropriate location expression. With tracking of
4092 global variables this is not necessarily true, but such tracking
4093 is disabled in GCC at the moment until we figure out how to
4099 /* Print a natural-language description of SYMBOL to STREAM. This
4100 version applies when there is a list of different locations, each
4101 with a specified address range. */
4104 loclist_describe_location (struct symbol
*symbol
, CORE_ADDR addr
,
4105 struct ui_file
*stream
)
4107 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
4108 const gdb_byte
*loc_ptr
, *buf_end
;
4109 struct objfile
*objfile
= dwarf2_per_cu_objfile (dlbaton
->per_cu
);
4110 struct gdbarch
*gdbarch
= get_objfile_arch (objfile
);
4111 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
4112 unsigned int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
4113 int offset_size
= dwarf2_per_cu_offset_size (dlbaton
->per_cu
);
4114 int signed_addr_p
= bfd_get_sign_extend_vma (objfile
->obfd
);
4115 /* Adjust base_address for relocatable objects. */
4116 CORE_ADDR base_offset
= dwarf2_per_cu_text_offset (dlbaton
->per_cu
);
4117 CORE_ADDR base_address
= dlbaton
->base_address
+ base_offset
;
4120 loc_ptr
= dlbaton
->data
;
4121 buf_end
= dlbaton
->data
+ dlbaton
->size
;
4123 fprintf_filtered (stream
, _("multi-location:\n"));
4125 /* Iterate through locations until we run out. */
4128 CORE_ADDR low
= 0, high
= 0; /* init for gcc -Wall */
4130 enum debug_loc_kind kind
;
4131 const gdb_byte
*new_ptr
= NULL
; /* init for gcc -Wall */
4133 if (dlbaton
->from_dwo
)
4134 kind
= decode_debug_loc_dwo_addresses (dlbaton
->per_cu
,
4135 loc_ptr
, buf_end
, &new_ptr
,
4136 &low
, &high
, byte_order
);
4138 kind
= decode_debug_loc_addresses (loc_ptr
, buf_end
, &new_ptr
,
4140 byte_order
, addr_size
,
4145 case DEBUG_LOC_END_OF_LIST
:
4148 case DEBUG_LOC_BASE_ADDRESS
:
4149 base_address
= high
+ base_offset
;
4150 fprintf_filtered (stream
, _(" Base address %s"),
4151 paddress (gdbarch
, base_address
));
4153 case DEBUG_LOC_START_END
:
4154 case DEBUG_LOC_START_LENGTH
:
4156 case DEBUG_LOC_BUFFER_OVERFLOW
:
4157 case DEBUG_LOC_INVALID_ENTRY
:
4158 error (_("Corrupted DWARF expression for symbol \"%s\"."),
4159 SYMBOL_PRINT_NAME (symbol
));
4161 gdb_assert_not_reached ("bad debug_loc_kind");
4164 /* Otherwise, a location expression entry. */
4165 low
+= base_address
;
4166 high
+= base_address
;
4168 length
= extract_unsigned_integer (loc_ptr
, 2, byte_order
);
4171 /* (It would improve readability to print only the minimum
4172 necessary digits of the second number of the range.) */
4173 fprintf_filtered (stream
, _(" Range %s-%s: "),
4174 paddress (gdbarch
, low
), paddress (gdbarch
, high
));
4176 /* Now describe this particular location. */
4177 locexpr_describe_location_1 (symbol
, low
, stream
, loc_ptr
, length
,
4178 objfile
, addr_size
, offset_size
,
4181 fprintf_filtered (stream
, "\n");
4187 /* Describe the location of SYMBOL as an agent value in VALUE, generating
4188 any necessary bytecode in AX. */
4190 loclist_tracepoint_var_ref (struct symbol
*symbol
, struct gdbarch
*gdbarch
,
4191 struct agent_expr
*ax
, struct axs_value
*value
)
4193 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
4194 const gdb_byte
*data
;
4196 unsigned int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
4198 data
= dwarf2_find_location_expression (dlbaton
, &size
, ax
->scope
);
4200 value
->optimized_out
= 1;
4202 dwarf2_compile_expr_to_ax (ax
, value
, gdbarch
, addr_size
, data
, data
+ size
,
4206 /* The set of location functions used with the DWARF-2 expression
4207 evaluator and location lists. */
4208 const struct symbol_computed_ops dwarf2_loclist_funcs
= {
4209 loclist_read_variable
,
4210 loclist_read_variable_at_entry
,
4211 loclist_read_needs_frame
,
4212 loclist_describe_location
,
4213 1, /* location_has_loclist */
4214 loclist_tracepoint_var_ref
4217 /* Provide a prototype to silence -Wmissing-prototypes. */
4218 extern initialize_file_ftype _initialize_dwarf2loc
;
4221 _initialize_dwarf2loc (void)
4223 add_setshow_zuinteger_cmd ("entry-values", class_maintenance
,
4224 &entry_values_debug
,
4225 _("Set entry values and tail call frames "
4227 _("Show entry values and tail call frames "
4229 _("When non-zero, the process of determining "
4230 "parameter values from function entry point "
4231 "and tail call frames will be printed."),
4233 show_entry_values_debug
,
4234 &setdebuglist
, &showdebuglist
);