1 /* DWARF 2 location expression support for GDB.
3 Copyright (C) 2003-2019 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/>. */
35 #include "complaints.h"
37 #include "dwarf2expr.h"
38 #include "dwarf2loc.h"
39 #include "dwarf2-frame.h"
40 #include "compile/compile.h"
41 #include "common/selftest.h"
44 #include <unordered_set>
45 #include "common/underlying.h"
46 #include "common/byte-vector.h"
48 extern int dwarf_always_disassemble;
50 static struct value *dwarf2_evaluate_loc_desc_full (struct type *type,
51 struct frame_info *frame,
54 struct dwarf2_per_cu_data *per_cu,
55 struct type *subobj_type,
56 LONGEST subobj_byte_offset);
58 static struct call_site_parameter *dwarf_expr_reg_to_entry_parameter
59 (struct frame_info *frame,
60 enum call_site_parameter_kind kind,
61 union call_site_parameter_u kind_u,
62 struct dwarf2_per_cu_data **per_cu_return);
64 static struct value *indirect_synthetic_pointer
65 (sect_offset die, LONGEST byte_offset,
66 struct dwarf2_per_cu_data *per_cu,
67 struct frame_info *frame,
68 struct type *type, bool resolve_abstract_p = false);
70 /* Until these have formal names, we define these here.
71 ref: http://gcc.gnu.org/wiki/DebugFission
72 Each entry in .debug_loc.dwo begins with a byte that describes the entry,
73 and is then followed by data specific to that entry. */
77 /* Indicates the end of the list of entries. */
78 DEBUG_LOC_END_OF_LIST = 0,
80 /* This is followed by an unsigned LEB128 number that is an index into
81 .debug_addr and specifies the base address for all following entries. */
82 DEBUG_LOC_BASE_ADDRESS = 1,
84 /* This is followed by two unsigned LEB128 numbers that are indices into
85 .debug_addr and specify the beginning and ending addresses, and then
86 a normal location expression as in .debug_loc. */
87 DEBUG_LOC_START_END = 2,
89 /* This is followed by an unsigned LEB128 number that is an index into
90 .debug_addr and specifies the beginning address, and a 4 byte unsigned
91 number that specifies the length, and then a normal location expression
93 DEBUG_LOC_START_LENGTH = 3,
95 /* An internal value indicating there is insufficient data. */
96 DEBUG_LOC_BUFFER_OVERFLOW = -1,
98 /* An internal value indicating an invalid kind of entry was found. */
99 DEBUG_LOC_INVALID_ENTRY = -2
102 /* Helper function which throws an error if a synthetic pointer is
106 invalid_synthetic_pointer (void)
108 error (_("access outside bounds of object "
109 "referenced via synthetic pointer"));
112 /* Decode the addresses in a non-dwo .debug_loc entry.
113 A pointer to the next byte to examine is returned in *NEW_PTR.
114 The encoded low,high addresses are return in *LOW,*HIGH.
115 The result indicates the kind of entry found. */
117 static enum debug_loc_kind
118 decode_debug_loc_addresses (const gdb_byte *loc_ptr, const gdb_byte *buf_end,
119 const gdb_byte **new_ptr,
120 CORE_ADDR *low, CORE_ADDR *high,
121 enum bfd_endian byte_order,
122 unsigned int addr_size,
125 CORE_ADDR base_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
127 if (buf_end - loc_ptr < 2 * addr_size)
128 return DEBUG_LOC_BUFFER_OVERFLOW;
131 *low = extract_signed_integer (loc_ptr, addr_size, byte_order);
133 *low = extract_unsigned_integer (loc_ptr, addr_size, byte_order);
134 loc_ptr += addr_size;
137 *high = extract_signed_integer (loc_ptr, addr_size, byte_order);
139 *high = extract_unsigned_integer (loc_ptr, addr_size, byte_order);
140 loc_ptr += addr_size;
144 /* A base-address-selection entry. */
145 if ((*low & base_mask) == base_mask)
146 return DEBUG_LOC_BASE_ADDRESS;
148 /* An end-of-list entry. */
149 if (*low == 0 && *high == 0)
150 return DEBUG_LOC_END_OF_LIST;
152 return DEBUG_LOC_START_END;
155 /* Decode the addresses in .debug_loclists entry.
156 A pointer to the next byte to examine is returned in *NEW_PTR.
157 The encoded low,high addresses are return in *LOW,*HIGH.
158 The result indicates the kind of entry found. */
160 static enum debug_loc_kind
161 decode_debug_loclists_addresses (struct dwarf2_per_cu_data *per_cu,
162 const gdb_byte *loc_ptr,
163 const gdb_byte *buf_end,
164 const gdb_byte **new_ptr,
165 CORE_ADDR *low, CORE_ADDR *high,
166 enum bfd_endian byte_order,
167 unsigned int addr_size,
172 if (loc_ptr == buf_end)
173 return DEBUG_LOC_BUFFER_OVERFLOW;
177 case DW_LLE_end_of_list:
179 return DEBUG_LOC_END_OF_LIST;
180 case DW_LLE_base_address:
181 if (loc_ptr + addr_size > buf_end)
182 return DEBUG_LOC_BUFFER_OVERFLOW;
184 *high = extract_signed_integer (loc_ptr, addr_size, byte_order);
186 *high = extract_unsigned_integer (loc_ptr, addr_size, byte_order);
187 loc_ptr += addr_size;
189 return DEBUG_LOC_BASE_ADDRESS;
190 case DW_LLE_offset_pair:
191 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &u64);
193 return DEBUG_LOC_BUFFER_OVERFLOW;
195 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &u64);
197 return DEBUG_LOC_BUFFER_OVERFLOW;
200 return DEBUG_LOC_START_END;
202 return DEBUG_LOC_INVALID_ENTRY;
206 /* Decode the addresses in .debug_loc.dwo entry.
207 A pointer to the next byte to examine is returned in *NEW_PTR.
208 The encoded low,high addresses are return in *LOW,*HIGH.
209 The result indicates the kind of entry found. */
211 static enum debug_loc_kind
212 decode_debug_loc_dwo_addresses (struct dwarf2_per_cu_data *per_cu,
213 const gdb_byte *loc_ptr,
214 const gdb_byte *buf_end,
215 const gdb_byte **new_ptr,
216 CORE_ADDR *low, CORE_ADDR *high,
217 enum bfd_endian byte_order)
219 uint64_t low_index, high_index;
221 if (loc_ptr == buf_end)
222 return DEBUG_LOC_BUFFER_OVERFLOW;
226 case DW_LLE_GNU_end_of_list_entry:
228 return DEBUG_LOC_END_OF_LIST;
229 case DW_LLE_GNU_base_address_selection_entry:
231 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &high_index);
233 return DEBUG_LOC_BUFFER_OVERFLOW;
234 *high = dwarf2_read_addr_index (per_cu, high_index);
236 return DEBUG_LOC_BASE_ADDRESS;
237 case DW_LLE_GNU_start_end_entry:
238 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &low_index);
240 return DEBUG_LOC_BUFFER_OVERFLOW;
241 *low = dwarf2_read_addr_index (per_cu, low_index);
242 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &high_index);
244 return DEBUG_LOC_BUFFER_OVERFLOW;
245 *high = dwarf2_read_addr_index (per_cu, high_index);
247 return DEBUG_LOC_START_END;
248 case DW_LLE_GNU_start_length_entry:
249 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &low_index);
251 return DEBUG_LOC_BUFFER_OVERFLOW;
252 *low = dwarf2_read_addr_index (per_cu, low_index);
253 if (loc_ptr + 4 > buf_end)
254 return DEBUG_LOC_BUFFER_OVERFLOW;
256 *high += extract_unsigned_integer (loc_ptr, 4, byte_order);
257 *new_ptr = loc_ptr + 4;
258 return DEBUG_LOC_START_LENGTH;
260 return DEBUG_LOC_INVALID_ENTRY;
264 /* A function for dealing with location lists. Given a
265 symbol baton (BATON) and a pc value (PC), find the appropriate
266 location expression, set *LOCEXPR_LENGTH, and return a pointer
267 to the beginning of the expression. Returns NULL on failure.
269 For now, only return the first matching location expression; there
270 can be more than one in the list. */
273 dwarf2_find_location_expression (struct dwarf2_loclist_baton *baton,
274 size_t *locexpr_length, CORE_ADDR pc)
276 struct objfile *objfile = dwarf2_per_cu_objfile (baton->per_cu);
277 struct gdbarch *gdbarch = get_objfile_arch (objfile);
278 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
279 unsigned int addr_size = dwarf2_per_cu_addr_size (baton->per_cu);
280 int signed_addr_p = bfd_get_sign_extend_vma (objfile->obfd);
281 /* Adjust base_address for relocatable objects. */
282 CORE_ADDR base_offset = dwarf2_per_cu_text_offset (baton->per_cu);
283 CORE_ADDR base_address = baton->base_address + base_offset;
284 const gdb_byte *loc_ptr, *buf_end;
286 loc_ptr = baton->data;
287 buf_end = baton->data + baton->size;
291 CORE_ADDR low = 0, high = 0; /* init for gcc -Wall */
293 enum debug_loc_kind kind;
294 const gdb_byte *new_ptr = NULL; /* init for gcc -Wall */
297 kind = decode_debug_loc_dwo_addresses (baton->per_cu,
298 loc_ptr, buf_end, &new_ptr,
299 &low, &high, byte_order);
300 else if (dwarf2_version (baton->per_cu) < 5)
301 kind = decode_debug_loc_addresses (loc_ptr, buf_end, &new_ptr,
303 byte_order, addr_size,
306 kind = decode_debug_loclists_addresses (baton->per_cu,
307 loc_ptr, buf_end, &new_ptr,
308 &low, &high, byte_order,
309 addr_size, signed_addr_p);
314 case DEBUG_LOC_END_OF_LIST:
317 case DEBUG_LOC_BASE_ADDRESS:
318 base_address = high + base_offset;
320 case DEBUG_LOC_START_END:
321 case DEBUG_LOC_START_LENGTH:
323 case DEBUG_LOC_BUFFER_OVERFLOW:
324 case DEBUG_LOC_INVALID_ENTRY:
325 error (_("dwarf2_find_location_expression: "
326 "Corrupted DWARF expression."));
328 gdb_assert_not_reached ("bad debug_loc_kind");
331 /* Otherwise, a location expression entry.
332 If the entry is from a DWO, don't add base address: the entry is from
333 .debug_addr which already has the DWARF "base address". We still add
334 base_offset in case we're debugging a PIE executable. */
343 high += base_address;
346 if (dwarf2_version (baton->per_cu) < 5)
348 length = extract_unsigned_integer (loc_ptr, 2, byte_order);
353 unsigned int bytes_read;
355 length = read_unsigned_leb128 (NULL, loc_ptr, &bytes_read);
356 loc_ptr += bytes_read;
359 if (low == high && pc == low)
361 /* This is entry PC record present only at entry point
362 of a function. Verify it is really the function entry point. */
364 const struct block *pc_block = block_for_pc (pc);
365 struct symbol *pc_func = NULL;
368 pc_func = block_linkage_function (pc_block);
370 if (pc_func && pc == BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (pc_func)))
372 *locexpr_length = length;
377 if (pc >= low && pc < high)
379 *locexpr_length = length;
387 /* This is the baton used when performing dwarf2 expression
389 struct dwarf_expr_baton
391 struct frame_info *frame;
392 struct dwarf2_per_cu_data *per_cu;
393 CORE_ADDR obj_address;
396 /* Implement find_frame_base_location method for LOC_BLOCK functions using
397 DWARF expression for its DW_AT_frame_base. */
400 locexpr_find_frame_base_location (struct symbol *framefunc, CORE_ADDR pc,
401 const gdb_byte **start, size_t *length)
403 struct dwarf2_locexpr_baton *symbaton
404 = (struct dwarf2_locexpr_baton *) SYMBOL_LOCATION_BATON (framefunc);
406 *length = symbaton->size;
407 *start = symbaton->data;
410 /* Implement the struct symbol_block_ops::get_frame_base method for
411 LOC_BLOCK functions using a DWARF expression as its DW_AT_frame_base. */
414 locexpr_get_frame_base (struct symbol *framefunc, struct frame_info *frame)
416 struct gdbarch *gdbarch;
418 struct dwarf2_locexpr_baton *dlbaton;
419 const gdb_byte *start;
421 struct value *result;
423 /* If this method is called, then FRAMEFUNC is supposed to be a DWARF block.
424 Thus, it's supposed to provide the find_frame_base_location method as
426 gdb_assert (SYMBOL_BLOCK_OPS (framefunc)->find_frame_base_location != NULL);
428 gdbarch = get_frame_arch (frame);
429 type = builtin_type (gdbarch)->builtin_data_ptr;
430 dlbaton = (struct dwarf2_locexpr_baton *) SYMBOL_LOCATION_BATON (framefunc);
432 SYMBOL_BLOCK_OPS (framefunc)->find_frame_base_location
433 (framefunc, get_frame_pc (frame), &start, &length);
434 result = dwarf2_evaluate_loc_desc (type, frame, start, length,
437 /* The DW_AT_frame_base attribute contains a location description which
438 computes the base address itself. However, the call to
439 dwarf2_evaluate_loc_desc returns a value representing a variable at
440 that address. The frame base address is thus this variable's
442 return value_address (result);
445 /* Vector for inferior functions as represented by LOC_BLOCK, if the inferior
446 function uses DWARF expression for its DW_AT_frame_base. */
448 const struct symbol_block_ops dwarf2_block_frame_base_locexpr_funcs =
450 locexpr_find_frame_base_location,
451 locexpr_get_frame_base
454 /* Implement find_frame_base_location method for LOC_BLOCK functions using
455 DWARF location list for its DW_AT_frame_base. */
458 loclist_find_frame_base_location (struct symbol *framefunc, CORE_ADDR pc,
459 const gdb_byte **start, size_t *length)
461 struct dwarf2_loclist_baton *symbaton
462 = (struct dwarf2_loclist_baton *) SYMBOL_LOCATION_BATON (framefunc);
464 *start = dwarf2_find_location_expression (symbaton, length, pc);
467 /* Implement the struct symbol_block_ops::get_frame_base method for
468 LOC_BLOCK functions using a DWARF location list as its DW_AT_frame_base. */
471 loclist_get_frame_base (struct symbol *framefunc, struct frame_info *frame)
473 struct gdbarch *gdbarch;
475 struct dwarf2_loclist_baton *dlbaton;
476 const gdb_byte *start;
478 struct value *result;
480 /* If this method is called, then FRAMEFUNC is supposed to be a DWARF block.
481 Thus, it's supposed to provide the find_frame_base_location method as
483 gdb_assert (SYMBOL_BLOCK_OPS (framefunc)->find_frame_base_location != NULL);
485 gdbarch = get_frame_arch (frame);
486 type = builtin_type (gdbarch)->builtin_data_ptr;
487 dlbaton = (struct dwarf2_loclist_baton *) SYMBOL_LOCATION_BATON (framefunc);
489 SYMBOL_BLOCK_OPS (framefunc)->find_frame_base_location
490 (framefunc, get_frame_pc (frame), &start, &length);
491 result = dwarf2_evaluate_loc_desc (type, frame, start, length,
494 /* The DW_AT_frame_base attribute contains a location description which
495 computes the base address itself. However, the call to
496 dwarf2_evaluate_loc_desc returns a value representing a variable at
497 that address. The frame base address is thus this variable's
499 return value_address (result);
502 /* Vector for inferior functions as represented by LOC_BLOCK, if the inferior
503 function uses DWARF location list for its DW_AT_frame_base. */
505 const struct symbol_block_ops dwarf2_block_frame_base_loclist_funcs =
507 loclist_find_frame_base_location,
508 loclist_get_frame_base
511 /* See dwarf2loc.h. */
514 func_get_frame_base_dwarf_block (struct symbol *framefunc, CORE_ADDR pc,
515 const gdb_byte **start, size_t *length)
517 if (SYMBOL_BLOCK_OPS (framefunc) != NULL)
519 const struct symbol_block_ops *ops_block = SYMBOL_BLOCK_OPS (framefunc);
521 ops_block->find_frame_base_location (framefunc, pc, start, length);
527 error (_("Could not find the frame base for \"%s\"."),
528 SYMBOL_NATURAL_NAME (framefunc));
532 get_frame_pc_for_per_cu_dwarf_call (void *baton)
534 dwarf_expr_context *ctx = (dwarf_expr_context *) baton;
536 return ctx->get_frame_pc ();
540 per_cu_dwarf_call (struct dwarf_expr_context *ctx, cu_offset die_offset,
541 struct dwarf2_per_cu_data *per_cu)
543 struct dwarf2_locexpr_baton block;
545 block = dwarf2_fetch_die_loc_cu_off (die_offset, per_cu,
546 get_frame_pc_for_per_cu_dwarf_call,
549 /* DW_OP_call_ref is currently not supported. */
550 gdb_assert (block.per_cu == per_cu);
552 ctx->eval (block.data, block.size);
555 /* Given context CTX, section offset SECT_OFF, and compilation unit
556 data PER_CU, execute the "variable value" operation on the DIE
557 found at SECT_OFF. */
559 static struct value *
560 sect_variable_value (struct dwarf_expr_context *ctx, sect_offset sect_off,
561 struct dwarf2_per_cu_data *per_cu)
563 struct type *die_type = dwarf2_fetch_die_type_sect_off (sect_off, per_cu);
565 if (die_type == NULL)
566 error (_("Bad DW_OP_GNU_variable_value DIE."));
568 /* Note: Things still work when the following test is removed. This
569 test and error is here to conform to the proposed specification. */
570 if (TYPE_CODE (die_type) != TYPE_CODE_INT
571 && TYPE_CODE (die_type) != TYPE_CODE_PTR)
572 error (_("Type of DW_OP_GNU_variable_value DIE must be an integer or pointer."));
574 struct type *type = lookup_pointer_type (die_type);
575 struct frame_info *frame = get_selected_frame (_("No frame selected."));
576 return indirect_synthetic_pointer (sect_off, 0, per_cu, frame, type, true);
579 class dwarf_evaluate_loc_desc : public dwarf_expr_context
583 struct frame_info *frame;
584 struct dwarf2_per_cu_data *per_cu;
585 CORE_ADDR obj_address;
587 /* Helper function for dwarf2_evaluate_loc_desc. Computes the CFA for
588 the frame in BATON. */
590 CORE_ADDR get_frame_cfa () override
592 return dwarf2_frame_cfa (frame);
595 /* Helper function for dwarf2_evaluate_loc_desc. Computes the PC for
596 the frame in BATON. */
598 CORE_ADDR get_frame_pc () override
600 return get_frame_address_in_block (frame);
603 /* Using the objfile specified in BATON, find the address for the
604 current thread's thread-local storage with offset OFFSET. */
605 CORE_ADDR get_tls_address (CORE_ADDR offset) override
607 struct objfile *objfile = dwarf2_per_cu_objfile (per_cu);
609 return target_translate_tls_address (objfile, offset);
612 /* Helper interface of per_cu_dwarf_call for
613 dwarf2_evaluate_loc_desc. */
615 void dwarf_call (cu_offset die_offset) override
617 per_cu_dwarf_call (this, die_offset, per_cu);
620 /* Helper interface of sect_variable_value for
621 dwarf2_evaluate_loc_desc. */
623 struct value *dwarf_variable_value (sect_offset sect_off) override
625 return sect_variable_value (this, sect_off, per_cu);
628 struct type *get_base_type (cu_offset die_offset, int size) override
630 struct type *result = dwarf2_get_die_type (die_offset, per_cu);
632 error (_("Could not find type for DW_OP_const_type"));
633 if (size != 0 && TYPE_LENGTH (result) != size)
634 error (_("DW_OP_const_type has different sizes for type and data"));
638 /* Callback function for dwarf2_evaluate_loc_desc.
639 Fetch the address indexed by DW_OP_GNU_addr_index. */
641 CORE_ADDR get_addr_index (unsigned int index) override
643 return dwarf2_read_addr_index (per_cu, index);
646 /* Callback function for get_object_address. Return the address of the VLA
649 CORE_ADDR get_object_address () override
651 if (obj_address == 0)
652 error (_("Location address is not set."));
656 /* Execute DWARF block of call_site_parameter which matches KIND and
657 KIND_U. Choose DEREF_SIZE value of that parameter. Search
658 caller of this objects's frame.
660 The caller can be from a different CU - per_cu_dwarf_call
661 implementation can be more simple as it does not support cross-CU
664 void push_dwarf_reg_entry_value (enum call_site_parameter_kind kind,
665 union call_site_parameter_u kind_u,
666 int deref_size) override
668 struct frame_info *caller_frame;
669 struct dwarf2_per_cu_data *caller_per_cu;
670 struct call_site_parameter *parameter;
671 const gdb_byte *data_src;
674 caller_frame = get_prev_frame (frame);
676 parameter = dwarf_expr_reg_to_entry_parameter (frame, kind, kind_u,
678 data_src = deref_size == -1 ? parameter->value : parameter->data_value;
679 size = deref_size == -1 ? parameter->value_size : parameter->data_value_size;
681 /* DEREF_SIZE size is not verified here. */
682 if (data_src == NULL)
683 throw_error (NO_ENTRY_VALUE_ERROR,
684 _("Cannot resolve DW_AT_call_data_value"));
686 scoped_restore save_frame = make_scoped_restore (&this->frame,
688 scoped_restore save_per_cu = make_scoped_restore (&this->per_cu,
690 scoped_restore save_obj_addr = make_scoped_restore (&this->obj_address,
693 scoped_restore save_arch = make_scoped_restore (&this->gdbarch);
695 = get_objfile_arch (dwarf2_per_cu_objfile (per_cu));
696 scoped_restore save_addr_size = make_scoped_restore (&this->addr_size);
697 this->addr_size = dwarf2_per_cu_addr_size (per_cu);
698 scoped_restore save_offset = make_scoped_restore (&this->offset);
699 this->offset = dwarf2_per_cu_text_offset (per_cu);
701 this->eval (data_src, size);
704 /* Using the frame specified in BATON, find the location expression
705 describing the frame base. Return a pointer to it in START and
706 its length in LENGTH. */
707 void get_frame_base (const gdb_byte **start, size_t * length) override
709 /* FIXME: cagney/2003-03-26: This code should be using
710 get_frame_base_address(), and then implement a dwarf2 specific
712 struct symbol *framefunc;
713 const struct block *bl = get_frame_block (frame, NULL);
716 error (_("frame address is not available."));
718 /* Use block_linkage_function, which returns a real (not inlined)
719 function, instead of get_frame_function, which may return an
721 framefunc = block_linkage_function (bl);
723 /* If we found a frame-relative symbol then it was certainly within
724 some function associated with a frame. If we can't find the frame,
725 something has gone wrong. */
726 gdb_assert (framefunc != NULL);
728 func_get_frame_base_dwarf_block (framefunc,
729 get_frame_address_in_block (frame),
733 /* Read memory at ADDR (length LEN) into BUF. */
735 void read_mem (gdb_byte *buf, CORE_ADDR addr, size_t len) override
737 read_memory (addr, buf, len);
740 /* Using the frame specified in BATON, return the value of register
741 REGNUM, treated as a pointer. */
742 CORE_ADDR read_addr_from_reg (int dwarf_regnum) override
744 struct gdbarch *gdbarch = get_frame_arch (frame);
745 int regnum = dwarf_reg_to_regnum_or_error (gdbarch, dwarf_regnum);
747 return address_from_register (regnum, frame);
750 /* Implement "get_reg_value" callback. */
752 struct value *get_reg_value (struct type *type, int dwarf_regnum) override
754 struct gdbarch *gdbarch = get_frame_arch (frame);
755 int regnum = dwarf_reg_to_regnum_or_error (gdbarch, dwarf_regnum);
757 return value_from_register (type, regnum, frame);
761 /* See dwarf2loc.h. */
763 unsigned int entry_values_debug = 0;
765 /* Helper to set entry_values_debug. */
768 show_entry_values_debug (struct ui_file *file, int from_tty,
769 struct cmd_list_element *c, const char *value)
771 fprintf_filtered (file,
772 _("Entry values and tail call frames debugging is %s.\n"),
776 /* Find DW_TAG_call_site's DW_AT_call_target address.
777 CALLER_FRAME (for registers) can be NULL if it is not known. This function
778 always returns valid address or it throws NO_ENTRY_VALUE_ERROR. */
781 call_site_to_target_addr (struct gdbarch *call_site_gdbarch,
782 struct call_site *call_site,
783 struct frame_info *caller_frame)
785 switch (FIELD_LOC_KIND (call_site->target))
787 case FIELD_LOC_KIND_DWARF_BLOCK:
789 struct dwarf2_locexpr_baton *dwarf_block;
791 struct type *caller_core_addr_type;
792 struct gdbarch *caller_arch;
794 dwarf_block = FIELD_DWARF_BLOCK (call_site->target);
795 if (dwarf_block == NULL)
797 struct bound_minimal_symbol msym;
799 msym = lookup_minimal_symbol_by_pc (call_site->pc - 1);
800 throw_error (NO_ENTRY_VALUE_ERROR,
801 _("DW_AT_call_target is not specified at %s in %s"),
802 paddress (call_site_gdbarch, call_site->pc),
803 (msym.minsym == NULL ? "???"
804 : MSYMBOL_PRINT_NAME (msym.minsym)));
807 if (caller_frame == NULL)
809 struct bound_minimal_symbol msym;
811 msym = lookup_minimal_symbol_by_pc (call_site->pc - 1);
812 throw_error (NO_ENTRY_VALUE_ERROR,
813 _("DW_AT_call_target DWARF block resolving "
814 "requires known frame which is currently not "
815 "available at %s in %s"),
816 paddress (call_site_gdbarch, call_site->pc),
817 (msym.minsym == NULL ? "???"
818 : MSYMBOL_PRINT_NAME (msym.minsym)));
821 caller_arch = get_frame_arch (caller_frame);
822 caller_core_addr_type = builtin_type (caller_arch)->builtin_func_ptr;
823 val = dwarf2_evaluate_loc_desc (caller_core_addr_type, caller_frame,
824 dwarf_block->data, dwarf_block->size,
825 dwarf_block->per_cu);
826 /* DW_AT_call_target is a DWARF expression, not a DWARF location. */
827 if (VALUE_LVAL (val) == lval_memory)
828 return value_address (val);
830 return value_as_address (val);
833 case FIELD_LOC_KIND_PHYSNAME:
835 const char *physname;
836 struct bound_minimal_symbol msym;
838 physname = FIELD_STATIC_PHYSNAME (call_site->target);
840 /* Handle both the mangled and demangled PHYSNAME. */
841 msym = lookup_minimal_symbol (physname, NULL, NULL);
842 if (msym.minsym == NULL)
844 msym = lookup_minimal_symbol_by_pc (call_site->pc - 1);
845 throw_error (NO_ENTRY_VALUE_ERROR,
846 _("Cannot find function \"%s\" for a call site target "
848 physname, paddress (call_site_gdbarch, call_site->pc),
849 (msym.minsym == NULL ? "???"
850 : MSYMBOL_PRINT_NAME (msym.minsym)));
853 return BMSYMBOL_VALUE_ADDRESS (msym);
856 case FIELD_LOC_KIND_PHYSADDR:
857 return FIELD_STATIC_PHYSADDR (call_site->target);
860 internal_error (__FILE__, __LINE__, _("invalid call site target kind"));
864 /* Convert function entry point exact address ADDR to the function which is
865 compliant with TAIL_CALL_LIST_COMPLETE condition. Throw
866 NO_ENTRY_VALUE_ERROR otherwise. */
868 static struct symbol *
869 func_addr_to_tail_call_list (struct gdbarch *gdbarch, CORE_ADDR addr)
871 struct symbol *sym = find_pc_function (addr);
874 if (sym == NULL || BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym)) != addr)
875 throw_error (NO_ENTRY_VALUE_ERROR,
876 _("DW_TAG_call_site resolving failed to find function "
877 "name for address %s"),
878 paddress (gdbarch, addr));
880 type = SYMBOL_TYPE (sym);
881 gdb_assert (TYPE_CODE (type) == TYPE_CODE_FUNC);
882 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_FUNC);
887 /* Verify function with entry point exact address ADDR can never call itself
888 via its tail calls (incl. transitively). Throw NO_ENTRY_VALUE_ERROR if it
889 can call itself via tail calls.
891 If a funtion can tail call itself its entry value based parameters are
892 unreliable. There is no verification whether the value of some/all
893 parameters is unchanged through the self tail call, we expect if there is
894 a self tail call all the parameters can be modified. */
897 func_verify_no_selftailcall (struct gdbarch *gdbarch, CORE_ADDR verify_addr)
901 /* The verification is completely unordered. Track here function addresses
902 which still need to be iterated. */
903 std::vector<CORE_ADDR> todo;
905 /* Track here CORE_ADDRs which were already visited. */
906 std::unordered_set<CORE_ADDR> addr_hash;
908 todo.push_back (verify_addr);
909 while (!todo.empty ())
911 struct symbol *func_sym;
912 struct call_site *call_site;
917 func_sym = func_addr_to_tail_call_list (gdbarch, addr);
919 for (call_site = TYPE_TAIL_CALL_LIST (SYMBOL_TYPE (func_sym));
920 call_site; call_site = call_site->tail_call_next)
922 CORE_ADDR target_addr;
924 /* CALLER_FRAME with registers is not available for tail-call jumped
926 target_addr = call_site_to_target_addr (gdbarch, call_site, NULL);
928 if (target_addr == verify_addr)
930 struct bound_minimal_symbol msym;
932 msym = lookup_minimal_symbol_by_pc (verify_addr);
933 throw_error (NO_ENTRY_VALUE_ERROR,
934 _("DW_OP_entry_value resolving has found "
935 "function \"%s\" at %s can call itself via tail "
937 (msym.minsym == NULL ? "???"
938 : MSYMBOL_PRINT_NAME (msym.minsym)),
939 paddress (gdbarch, verify_addr));
942 if (addr_hash.insert (target_addr).second)
943 todo.push_back (target_addr);
948 /* Print user readable form of CALL_SITE->PC to gdb_stdlog. Used only for
949 ENTRY_VALUES_DEBUG. */
952 tailcall_dump (struct gdbarch *gdbarch, const struct call_site *call_site)
954 CORE_ADDR addr = call_site->pc;
955 struct bound_minimal_symbol msym = lookup_minimal_symbol_by_pc (addr - 1);
957 fprintf_unfiltered (gdb_stdlog, " %s(%s)", paddress (gdbarch, addr),
958 (msym.minsym == NULL ? "???"
959 : MSYMBOL_PRINT_NAME (msym.minsym)));
963 /* Intersect RESULTP with CHAIN to keep RESULTP unambiguous, keep in RESULTP
964 only top callers and bottom callees which are present in both. GDBARCH is
965 used only for ENTRY_VALUES_DEBUG. RESULTP is NULL after return if there are
966 no remaining possibilities to provide unambiguous non-trivial result.
967 RESULTP should point to NULL on the first (initialization) call. Caller is
968 responsible for xfree of any RESULTP data. */
971 chain_candidate (struct gdbarch *gdbarch,
972 gdb::unique_xmalloc_ptr<struct call_site_chain> *resultp,
973 std::vector<struct call_site *> *chain)
975 long length = chain->size ();
976 int callers, callees, idx;
978 if (*resultp == NULL)
980 /* Create the initial chain containing all the passed PCs. */
982 struct call_site_chain *result
983 = ((struct call_site_chain *)
984 xmalloc (sizeof (*result)
985 + sizeof (*result->call_site) * (length - 1)));
986 result->length = length;
987 result->callers = result->callees = length;
988 if (!chain->empty ())
989 memcpy (result->call_site, chain->data (),
990 sizeof (*result->call_site) * length);
991 resultp->reset (result);
993 if (entry_values_debug)
995 fprintf_unfiltered (gdb_stdlog, "tailcall: initial:");
996 for (idx = 0; idx < length; idx++)
997 tailcall_dump (gdbarch, result->call_site[idx]);
998 fputc_unfiltered ('\n', gdb_stdlog);
1004 if (entry_values_debug)
1006 fprintf_unfiltered (gdb_stdlog, "tailcall: compare:");
1007 for (idx = 0; idx < length; idx++)
1008 tailcall_dump (gdbarch, chain->at (idx));
1009 fputc_unfiltered ('\n', gdb_stdlog);
1012 /* Intersect callers. */
1014 callers = std::min ((long) (*resultp)->callers, length);
1015 for (idx = 0; idx < callers; idx++)
1016 if ((*resultp)->call_site[idx] != chain->at (idx))
1018 (*resultp)->callers = idx;
1022 /* Intersect callees. */
1024 callees = std::min ((long) (*resultp)->callees, length);
1025 for (idx = 0; idx < callees; idx++)
1026 if ((*resultp)->call_site[(*resultp)->length - 1 - idx]
1027 != chain->at (length - 1 - idx))
1029 (*resultp)->callees = idx;
1033 if (entry_values_debug)
1035 fprintf_unfiltered (gdb_stdlog, "tailcall: reduced:");
1036 for (idx = 0; idx < (*resultp)->callers; idx++)
1037 tailcall_dump (gdbarch, (*resultp)->call_site[idx]);
1038 fputs_unfiltered (" |", gdb_stdlog);
1039 for (idx = 0; idx < (*resultp)->callees; idx++)
1040 tailcall_dump (gdbarch,
1041 (*resultp)->call_site[(*resultp)->length
1042 - (*resultp)->callees + idx]);
1043 fputc_unfiltered ('\n', gdb_stdlog);
1046 if ((*resultp)->callers == 0 && (*resultp)->callees == 0)
1048 /* There are no common callers or callees. It could be also a direct
1049 call (which has length 0) with ambiguous possibility of an indirect
1050 call - CALLERS == CALLEES == 0 is valid during the first allocation
1051 but any subsequence processing of such entry means ambiguity. */
1052 resultp->reset (NULL);
1056 /* See call_site_find_chain_1 why there is no way to reach the bottom callee
1057 PC again. In such case there must be two different code paths to reach
1058 it. CALLERS + CALLEES equal to LENGTH in the case of self tail-call. */
1059 gdb_assert ((*resultp)->callers + (*resultp)->callees <= (*resultp)->length);
1062 /* Create and return call_site_chain for CALLER_PC and CALLEE_PC. All the
1063 assumed frames between them use GDBARCH. Use depth first search so we can
1064 keep single CHAIN of call_site's back to CALLER_PC. Function recursion
1065 would have needless GDB stack overhead. Caller is responsible for xfree of
1066 the returned result. Any unreliability results in thrown
1067 NO_ENTRY_VALUE_ERROR. */
1069 static struct call_site_chain *
1070 call_site_find_chain_1 (struct gdbarch *gdbarch, CORE_ADDR caller_pc,
1071 CORE_ADDR callee_pc)
1073 CORE_ADDR save_callee_pc = callee_pc;
1074 gdb::unique_xmalloc_ptr<struct call_site_chain> retval;
1075 struct call_site *call_site;
1077 /* CHAIN contains only the intermediate CALL_SITEs. Neither CALLER_PC's
1078 call_site nor any possible call_site at CALLEE_PC's function is there.
1079 Any CALL_SITE in CHAIN will be iterated to its siblings - via
1080 TAIL_CALL_NEXT. This is inappropriate for CALLER_PC's call_site. */
1081 std::vector<struct call_site *> chain;
1083 /* We are not interested in the specific PC inside the callee function. */
1084 callee_pc = get_pc_function_start (callee_pc);
1086 throw_error (NO_ENTRY_VALUE_ERROR, _("Unable to find function for PC %s"),
1087 paddress (gdbarch, save_callee_pc));
1089 /* Mark CALL_SITEs so we do not visit the same ones twice. */
1090 std::unordered_set<CORE_ADDR> addr_hash;
1092 /* Do not push CALL_SITE to CHAIN. Push there only the first tail call site
1093 at the target's function. All the possible tail call sites in the
1094 target's function will get iterated as already pushed into CHAIN via their
1096 call_site = call_site_for_pc (gdbarch, caller_pc);
1100 CORE_ADDR target_func_addr;
1101 struct call_site *target_call_site;
1103 /* CALLER_FRAME with registers is not available for tail-call jumped
1105 target_func_addr = call_site_to_target_addr (gdbarch, call_site, NULL);
1107 if (target_func_addr == callee_pc)
1109 chain_candidate (gdbarch, &retval, &chain);
1113 /* There is no way to reach CALLEE_PC again as we would prevent
1114 entering it twice as being already marked in ADDR_HASH. */
1115 target_call_site = NULL;
1119 struct symbol *target_func;
1121 target_func = func_addr_to_tail_call_list (gdbarch, target_func_addr);
1122 target_call_site = TYPE_TAIL_CALL_LIST (SYMBOL_TYPE (target_func));
1127 /* Attempt to visit TARGET_CALL_SITE. */
1129 if (target_call_site)
1131 if (addr_hash.insert (target_call_site->pc).second)
1133 /* Successfully entered TARGET_CALL_SITE. */
1135 chain.push_back (target_call_site);
1140 /* Backtrack (without revisiting the originating call_site). Try the
1141 callers's sibling; if there isn't any try the callers's callers's
1144 target_call_site = NULL;
1145 while (!chain.empty ())
1147 call_site = chain.back ();
1150 size_t removed = addr_hash.erase (call_site->pc);
1151 gdb_assert (removed == 1);
1153 target_call_site = call_site->tail_call_next;
1154 if (target_call_site)
1158 while (target_call_site);
1163 call_site = chain.back ();
1168 struct bound_minimal_symbol msym_caller, msym_callee;
1170 msym_caller = lookup_minimal_symbol_by_pc (caller_pc);
1171 msym_callee = lookup_minimal_symbol_by_pc (callee_pc);
1172 throw_error (NO_ENTRY_VALUE_ERROR,
1173 _("There are no unambiguously determinable intermediate "
1174 "callers or callees between caller function \"%s\" at %s "
1175 "and callee function \"%s\" at %s"),
1176 (msym_caller.minsym == NULL
1177 ? "???" : MSYMBOL_PRINT_NAME (msym_caller.minsym)),
1178 paddress (gdbarch, caller_pc),
1179 (msym_callee.minsym == NULL
1180 ? "???" : MSYMBOL_PRINT_NAME (msym_callee.minsym)),
1181 paddress (gdbarch, callee_pc));
1184 return retval.release ();
1187 /* Create and return call_site_chain for CALLER_PC and CALLEE_PC. All the
1188 assumed frames between them use GDBARCH. If valid call_site_chain cannot be
1189 constructed return NULL. Caller is responsible for xfree of the returned
1192 struct call_site_chain *
1193 call_site_find_chain (struct gdbarch *gdbarch, CORE_ADDR caller_pc,
1194 CORE_ADDR callee_pc)
1196 struct call_site_chain *retval = NULL;
1200 retval = call_site_find_chain_1 (gdbarch, caller_pc, callee_pc);
1202 CATCH (e, RETURN_MASK_ERROR)
1204 if (e.error == NO_ENTRY_VALUE_ERROR)
1206 if (entry_values_debug)
1207 exception_print (gdb_stdout, e);
1212 throw_exception (e);
1219 /* Return 1 if KIND and KIND_U match PARAMETER. Return 0 otherwise. */
1222 call_site_parameter_matches (struct call_site_parameter *parameter,
1223 enum call_site_parameter_kind kind,
1224 union call_site_parameter_u kind_u)
1226 if (kind == parameter->kind)
1229 case CALL_SITE_PARAMETER_DWARF_REG:
1230 return kind_u.dwarf_reg == parameter->u.dwarf_reg;
1231 case CALL_SITE_PARAMETER_FB_OFFSET:
1232 return kind_u.fb_offset == parameter->u.fb_offset;
1233 case CALL_SITE_PARAMETER_PARAM_OFFSET:
1234 return kind_u.param_cu_off == parameter->u.param_cu_off;
1239 /* Fetch call_site_parameter from caller matching KIND and KIND_U.
1240 FRAME is for callee.
1242 Function always returns non-NULL, it throws NO_ENTRY_VALUE_ERROR
1245 static struct call_site_parameter *
1246 dwarf_expr_reg_to_entry_parameter (struct frame_info *frame,
1247 enum call_site_parameter_kind kind,
1248 union call_site_parameter_u kind_u,
1249 struct dwarf2_per_cu_data **per_cu_return)
1251 CORE_ADDR func_addr, caller_pc;
1252 struct gdbarch *gdbarch;
1253 struct frame_info *caller_frame;
1254 struct call_site *call_site;
1256 /* Initialize it just to avoid a GCC false warning. */
1257 struct call_site_parameter *parameter = NULL;
1258 CORE_ADDR target_addr;
1260 while (get_frame_type (frame) == INLINE_FRAME)
1262 frame = get_prev_frame (frame);
1263 gdb_assert (frame != NULL);
1266 func_addr = get_frame_func (frame);
1267 gdbarch = get_frame_arch (frame);
1268 caller_frame = get_prev_frame (frame);
1269 if (gdbarch != frame_unwind_arch (frame))
1271 struct bound_minimal_symbol msym
1272 = lookup_minimal_symbol_by_pc (func_addr);
1273 struct gdbarch *caller_gdbarch = frame_unwind_arch (frame);
1275 throw_error (NO_ENTRY_VALUE_ERROR,
1276 _("DW_OP_entry_value resolving callee gdbarch %s "
1277 "(of %s (%s)) does not match caller gdbarch %s"),
1278 gdbarch_bfd_arch_info (gdbarch)->printable_name,
1279 paddress (gdbarch, func_addr),
1280 (msym.minsym == NULL ? "???"
1281 : MSYMBOL_PRINT_NAME (msym.minsym)),
1282 gdbarch_bfd_arch_info (caller_gdbarch)->printable_name);
1285 if (caller_frame == NULL)
1287 struct bound_minimal_symbol msym
1288 = lookup_minimal_symbol_by_pc (func_addr);
1290 throw_error (NO_ENTRY_VALUE_ERROR, _("DW_OP_entry_value resolving "
1291 "requires caller of %s (%s)"),
1292 paddress (gdbarch, func_addr),
1293 (msym.minsym == NULL ? "???"
1294 : MSYMBOL_PRINT_NAME (msym.minsym)));
1296 caller_pc = get_frame_pc (caller_frame);
1297 call_site = call_site_for_pc (gdbarch, caller_pc);
1299 target_addr = call_site_to_target_addr (gdbarch, call_site, caller_frame);
1300 if (target_addr != func_addr)
1302 struct minimal_symbol *target_msym, *func_msym;
1304 target_msym = lookup_minimal_symbol_by_pc (target_addr).minsym;
1305 func_msym = lookup_minimal_symbol_by_pc (func_addr).minsym;
1306 throw_error (NO_ENTRY_VALUE_ERROR,
1307 _("DW_OP_entry_value resolving expects callee %s at %s "
1308 "but the called frame is for %s at %s"),
1309 (target_msym == NULL ? "???"
1310 : MSYMBOL_PRINT_NAME (target_msym)),
1311 paddress (gdbarch, target_addr),
1312 func_msym == NULL ? "???" : MSYMBOL_PRINT_NAME (func_msym),
1313 paddress (gdbarch, func_addr));
1316 /* No entry value based parameters would be reliable if this function can
1317 call itself via tail calls. */
1318 func_verify_no_selftailcall (gdbarch, func_addr);
1320 for (iparams = 0; iparams < call_site->parameter_count; iparams++)
1322 parameter = &call_site->parameter[iparams];
1323 if (call_site_parameter_matches (parameter, kind, kind_u))
1326 if (iparams == call_site->parameter_count)
1328 struct minimal_symbol *msym
1329 = lookup_minimal_symbol_by_pc (caller_pc).minsym;
1331 /* DW_TAG_call_site_parameter will be missing just if GCC could not
1332 determine its value. */
1333 throw_error (NO_ENTRY_VALUE_ERROR, _("Cannot find matching parameter "
1334 "at DW_TAG_call_site %s at %s"),
1335 paddress (gdbarch, caller_pc),
1336 msym == NULL ? "???" : MSYMBOL_PRINT_NAME (msym));
1339 *per_cu_return = call_site->per_cu;
1343 /* Return value for PARAMETER matching DEREF_SIZE. If DEREF_SIZE is -1, return
1344 the normal DW_AT_call_value block. Otherwise return the
1345 DW_AT_call_data_value (dereferenced) block.
1347 TYPE and CALLER_FRAME specify how to evaluate the DWARF block into returned
1350 Function always returns non-NULL, non-optimized out value. It throws
1351 NO_ENTRY_VALUE_ERROR if it cannot resolve the value for any reason. */
1353 static struct value *
1354 dwarf_entry_parameter_to_value (struct call_site_parameter *parameter,
1355 CORE_ADDR deref_size, struct type *type,
1356 struct frame_info *caller_frame,
1357 struct dwarf2_per_cu_data *per_cu)
1359 const gdb_byte *data_src;
1363 data_src = deref_size == -1 ? parameter->value : parameter->data_value;
1364 size = deref_size == -1 ? parameter->value_size : parameter->data_value_size;
1366 /* DEREF_SIZE size is not verified here. */
1367 if (data_src == NULL)
1368 throw_error (NO_ENTRY_VALUE_ERROR,
1369 _("Cannot resolve DW_AT_call_data_value"));
1371 /* DW_AT_call_value is a DWARF expression, not a DWARF
1372 location. Postprocessing of DWARF_VALUE_MEMORY would lose the type from
1374 data = (gdb_byte *) alloca (size + 1);
1375 memcpy (data, data_src, size);
1376 data[size] = DW_OP_stack_value;
1378 return dwarf2_evaluate_loc_desc (type, caller_frame, data, size + 1, per_cu);
1381 /* VALUE must be of type lval_computed with entry_data_value_funcs. Perform
1382 the indirect method on it, that is use its stored target value, the sole
1383 purpose of entry_data_value_funcs.. */
1385 static struct value *
1386 entry_data_value_coerce_ref (const struct value *value)
1388 struct type *checked_type = check_typedef (value_type (value));
1389 struct value *target_val;
1391 if (!TYPE_IS_REFERENCE (checked_type))
1394 target_val = (struct value *) value_computed_closure (value);
1395 value_incref (target_val);
1399 /* Implement copy_closure. */
1402 entry_data_value_copy_closure (const struct value *v)
1404 struct value *target_val = (struct value *) value_computed_closure (v);
1406 value_incref (target_val);
1410 /* Implement free_closure. */
1413 entry_data_value_free_closure (struct value *v)
1415 struct value *target_val = (struct value *) value_computed_closure (v);
1417 value_decref (target_val);
1420 /* Vector for methods for an entry value reference where the referenced value
1421 is stored in the caller. On the first dereference use
1422 DW_AT_call_data_value in the caller. */
1424 static const struct lval_funcs entry_data_value_funcs =
1428 NULL, /* indirect */
1429 entry_data_value_coerce_ref,
1430 NULL, /* check_synthetic_pointer */
1431 entry_data_value_copy_closure,
1432 entry_data_value_free_closure
1435 /* Read parameter of TYPE at (callee) FRAME's function entry. KIND and KIND_U
1436 are used to match DW_AT_location at the caller's
1437 DW_TAG_call_site_parameter.
1439 Function always returns non-NULL value. It throws NO_ENTRY_VALUE_ERROR if it
1440 cannot resolve the parameter for any reason. */
1442 static struct value *
1443 value_of_dwarf_reg_entry (struct type *type, struct frame_info *frame,
1444 enum call_site_parameter_kind kind,
1445 union call_site_parameter_u kind_u)
1447 struct type *checked_type = check_typedef (type);
1448 struct type *target_type = TYPE_TARGET_TYPE (checked_type);
1449 struct frame_info *caller_frame = get_prev_frame (frame);
1450 struct value *outer_val, *target_val, *val;
1451 struct call_site_parameter *parameter;
1452 struct dwarf2_per_cu_data *caller_per_cu;
1454 parameter = dwarf_expr_reg_to_entry_parameter (frame, kind, kind_u,
1457 outer_val = dwarf_entry_parameter_to_value (parameter, -1 /* deref_size */,
1461 /* Check if DW_AT_call_data_value cannot be used. If it should be
1462 used and it is not available do not fall back to OUTER_VAL - dereferencing
1463 TYPE_CODE_REF with non-entry data value would give current value - not the
1466 if (!TYPE_IS_REFERENCE (checked_type)
1467 || TYPE_TARGET_TYPE (checked_type) == NULL)
1470 target_val = dwarf_entry_parameter_to_value (parameter,
1471 TYPE_LENGTH (target_type),
1472 target_type, caller_frame,
1475 release_value (target_val).release ();
1476 val = allocate_computed_value (type, &entry_data_value_funcs,
1477 target_val /* closure */);
1479 /* Copy the referencing pointer to the new computed value. */
1480 memcpy (value_contents_raw (val), value_contents_raw (outer_val),
1481 TYPE_LENGTH (checked_type));
1482 set_value_lazy (val, 0);
1487 /* Read parameter of TYPE at (callee) FRAME's function entry. DATA and
1488 SIZE are DWARF block used to match DW_AT_location at the caller's
1489 DW_TAG_call_site_parameter.
1491 Function always returns non-NULL value. It throws NO_ENTRY_VALUE_ERROR if it
1492 cannot resolve the parameter for any reason. */
1494 static struct value *
1495 value_of_dwarf_block_entry (struct type *type, struct frame_info *frame,
1496 const gdb_byte *block, size_t block_len)
1498 union call_site_parameter_u kind_u;
1500 kind_u.dwarf_reg = dwarf_block_to_dwarf_reg (block, block + block_len);
1501 if (kind_u.dwarf_reg != -1)
1502 return value_of_dwarf_reg_entry (type, frame, CALL_SITE_PARAMETER_DWARF_REG,
1505 if (dwarf_block_to_fb_offset (block, block + block_len, &kind_u.fb_offset))
1506 return value_of_dwarf_reg_entry (type, frame, CALL_SITE_PARAMETER_FB_OFFSET,
1509 /* This can normally happen - throw NO_ENTRY_VALUE_ERROR to get the message
1510 suppressed during normal operation. The expression can be arbitrary if
1511 there is no caller-callee entry value binding expected. */
1512 throw_error (NO_ENTRY_VALUE_ERROR,
1513 _("DWARF-2 expression error: DW_OP_entry_value is supported "
1514 "only for single DW_OP_reg* or for DW_OP_fbreg(*)"));
1517 struct piece_closure
1519 /* Reference count. */
1522 /* The CU from which this closure's expression came. */
1523 struct dwarf2_per_cu_data *per_cu = NULL;
1525 /* The pieces describing this variable. */
1526 std::vector<dwarf_expr_piece> pieces;
1528 /* Frame ID of frame to which a register value is relative, used
1529 only by DWARF_VALUE_REGISTER. */
1530 struct frame_id frame_id;
1533 /* Allocate a closure for a value formed from separately-described
1536 static struct piece_closure *
1537 allocate_piece_closure (struct dwarf2_per_cu_data *per_cu,
1538 std::vector<dwarf_expr_piece> &&pieces,
1539 struct frame_info *frame)
1541 struct piece_closure *c = new piece_closure;
1545 c->pieces = std::move (pieces);
1547 c->frame_id = null_frame_id;
1549 c->frame_id = get_frame_id (frame);
1551 for (dwarf_expr_piece &piece : c->pieces)
1552 if (piece.location == DWARF_VALUE_STACK)
1553 value_incref (piece.v.value);
1558 /* Return the number of bytes overlapping a contiguous chunk of N_BITS
1559 bits whose first bit is located at bit offset START. */
1562 bits_to_bytes (ULONGEST start, ULONGEST n_bits)
1564 return (start % 8 + n_bits + 7) / 8;
1567 /* Read or write a pieced value V. If FROM != NULL, operate in "write
1568 mode": copy FROM into the pieces comprising V. If FROM == NULL,
1569 operate in "read mode": fetch the contents of the (lazy) value V by
1570 composing it from its pieces. */
1573 rw_pieced_value (struct value *v, struct value *from)
1576 LONGEST offset = 0, max_offset;
1577 ULONGEST bits_to_skip;
1578 gdb_byte *v_contents;
1579 const gdb_byte *from_contents;
1580 struct piece_closure *c
1581 = (struct piece_closure *) value_computed_closure (v);
1582 gdb::byte_vector buffer;
1584 = gdbarch_bits_big_endian (get_type_arch (value_type (v)));
1588 from_contents = value_contents (from);
1593 if (value_type (v) != value_enclosing_type (v))
1594 internal_error (__FILE__, __LINE__,
1595 _("Should not be able to create a lazy value with "
1596 "an enclosing type"));
1597 v_contents = value_contents_raw (v);
1598 from_contents = NULL;
1601 bits_to_skip = 8 * value_offset (v);
1602 if (value_bitsize (v))
1604 bits_to_skip += (8 * value_offset (value_parent (v))
1605 + value_bitpos (v));
1607 && (gdbarch_byte_order (get_type_arch (value_type (from)))
1610 /* Use the least significant bits of FROM. */
1611 max_offset = 8 * TYPE_LENGTH (value_type (from));
1612 offset = max_offset - value_bitsize (v);
1615 max_offset = value_bitsize (v);
1618 max_offset = 8 * TYPE_LENGTH (value_type (v));
1620 /* Advance to the first non-skipped piece. */
1621 for (i = 0; i < c->pieces.size () && bits_to_skip >= c->pieces[i].size; i++)
1622 bits_to_skip -= c->pieces[i].size;
1624 for (; i < c->pieces.size () && offset < max_offset; i++)
1626 struct dwarf_expr_piece *p = &c->pieces[i];
1627 size_t this_size_bits, this_size;
1629 this_size_bits = p->size - bits_to_skip;
1630 if (this_size_bits > max_offset - offset)
1631 this_size_bits = max_offset - offset;
1633 switch (p->location)
1635 case DWARF_VALUE_REGISTER:
1637 struct frame_info *frame = frame_find_by_id (c->frame_id);
1638 struct gdbarch *arch = get_frame_arch (frame);
1639 int gdb_regnum = dwarf_reg_to_regnum_or_error (arch, p->v.regno);
1640 ULONGEST reg_bits = 8 * register_size (arch, gdb_regnum);
1643 if (gdbarch_byte_order (arch) == BFD_ENDIAN_BIG
1644 && p->offset + p->size < reg_bits)
1646 /* Big-endian, and we want less than full size. */
1647 bits_to_skip += reg_bits - (p->offset + p->size);
1650 bits_to_skip += p->offset;
1652 this_size = bits_to_bytes (bits_to_skip, this_size_bits);
1653 buffer.resize (this_size);
1658 if (!get_frame_register_bytes (frame, gdb_regnum,
1660 this_size, buffer.data (),
1664 mark_value_bits_optimized_out (v, offset,
1667 mark_value_bits_unavailable (v, offset,
1672 copy_bitwise (v_contents, offset,
1673 buffer.data (), bits_to_skip % 8,
1674 this_size_bits, bits_big_endian);
1679 if (bits_to_skip % 8 != 0 || this_size_bits % 8 != 0)
1681 /* Data is copied non-byte-aligned into the register.
1682 Need some bits from original register value. */
1683 get_frame_register_bytes (frame, gdb_regnum,
1685 this_size, buffer.data (),
1688 throw_error (OPTIMIZED_OUT_ERROR,
1689 _("Can't do read-modify-write to "
1690 "update bitfield; containing word "
1691 "has been optimized out"));
1693 throw_error (NOT_AVAILABLE_ERROR,
1694 _("Can't do read-modify-write to "
1695 "update bitfield; containing word "
1699 copy_bitwise (buffer.data (), bits_to_skip % 8,
1700 from_contents, offset,
1701 this_size_bits, bits_big_endian);
1702 put_frame_register_bytes (frame, gdb_regnum,
1704 this_size, buffer.data ());
1709 case DWARF_VALUE_MEMORY:
1711 bits_to_skip += p->offset;
1713 CORE_ADDR start_addr = p->v.mem.addr + bits_to_skip / 8;
1715 if (bits_to_skip % 8 == 0 && this_size_bits % 8 == 0
1718 /* Everything is byte-aligned; no buffer needed. */
1720 write_memory_with_notification (start_addr,
1723 this_size_bits / 8);
1725 read_value_memory (v, offset,
1726 p->v.mem.in_stack_memory,
1727 p->v.mem.addr + bits_to_skip / 8,
1728 v_contents + offset / 8,
1729 this_size_bits / 8);
1733 this_size = bits_to_bytes (bits_to_skip, this_size_bits);
1734 buffer.resize (this_size);
1739 read_value_memory (v, offset,
1740 p->v.mem.in_stack_memory,
1741 p->v.mem.addr + bits_to_skip / 8,
1742 buffer.data (), this_size);
1743 copy_bitwise (v_contents, offset,
1744 buffer.data (), bits_to_skip % 8,
1745 this_size_bits, bits_big_endian);
1750 if (bits_to_skip % 8 != 0 || this_size_bits % 8 != 0)
1754 /* Perform a single read for small sizes. */
1755 read_memory (start_addr, buffer.data (),
1760 /* Only the first and last bytes can possibly have
1762 read_memory (start_addr, buffer.data (), 1);
1763 read_memory (start_addr + this_size - 1,
1764 &buffer[this_size - 1], 1);
1768 copy_bitwise (buffer.data (), bits_to_skip % 8,
1769 from_contents, offset,
1770 this_size_bits, bits_big_endian);
1771 write_memory_with_notification (start_addr,
1778 case DWARF_VALUE_STACK:
1782 mark_value_bits_optimized_out (v, offset, this_size_bits);
1786 struct objfile *objfile = dwarf2_per_cu_objfile (c->per_cu);
1787 struct gdbarch *objfile_gdbarch = get_objfile_arch (objfile);
1788 ULONGEST stack_value_size_bits
1789 = 8 * TYPE_LENGTH (value_type (p->v.value));
1791 /* Use zeroes if piece reaches beyond stack value. */
1792 if (p->offset + p->size > stack_value_size_bits)
1795 /* Piece is anchored at least significant bit end. */
1796 if (gdbarch_byte_order (objfile_gdbarch) == BFD_ENDIAN_BIG)
1797 bits_to_skip += stack_value_size_bits - p->offset - p->size;
1799 bits_to_skip += p->offset;
1801 copy_bitwise (v_contents, offset,
1802 value_contents_all (p->v.value),
1804 this_size_bits, bits_big_endian);
1808 case DWARF_VALUE_LITERAL:
1812 mark_value_bits_optimized_out (v, offset, this_size_bits);
1816 ULONGEST literal_size_bits = 8 * p->v.literal.length;
1817 size_t n = this_size_bits;
1819 /* Cut off at the end of the implicit value. */
1820 bits_to_skip += p->offset;
1821 if (bits_to_skip >= literal_size_bits)
1823 if (n > literal_size_bits - bits_to_skip)
1824 n = literal_size_bits - bits_to_skip;
1826 copy_bitwise (v_contents, offset,
1827 p->v.literal.data, bits_to_skip,
1828 n, bits_big_endian);
1832 case DWARF_VALUE_IMPLICIT_POINTER:
1835 mark_value_bits_optimized_out (v, offset, this_size_bits);
1839 /* These bits show up as zeros -- but do not cause the value to
1840 be considered optimized-out. */
1843 case DWARF_VALUE_OPTIMIZED_OUT:
1844 mark_value_bits_optimized_out (v, offset, this_size_bits);
1848 internal_error (__FILE__, __LINE__, _("invalid location type"));
1851 offset += this_size_bits;
1858 read_pieced_value (struct value *v)
1860 rw_pieced_value (v, NULL);
1864 write_pieced_value (struct value *to, struct value *from)
1866 rw_pieced_value (to, from);
1869 /* An implementation of an lval_funcs method to see whether a value is
1870 a synthetic pointer. */
1873 check_pieced_synthetic_pointer (const struct value *value, LONGEST bit_offset,
1876 struct piece_closure *c
1877 = (struct piece_closure *) value_computed_closure (value);
1880 bit_offset += 8 * value_offset (value);
1881 if (value_bitsize (value))
1882 bit_offset += value_bitpos (value);
1884 for (i = 0; i < c->pieces.size () && bit_length > 0; i++)
1886 struct dwarf_expr_piece *p = &c->pieces[i];
1887 size_t this_size_bits = p->size;
1891 if (bit_offset >= this_size_bits)
1893 bit_offset -= this_size_bits;
1897 bit_length -= this_size_bits - bit_offset;
1901 bit_length -= this_size_bits;
1903 if (p->location != DWARF_VALUE_IMPLICIT_POINTER)
1910 /* A wrapper function for get_frame_address_in_block. */
1913 get_frame_address_in_block_wrapper (void *baton)
1915 return get_frame_address_in_block ((struct frame_info *) baton);
1918 /* Fetch a DW_AT_const_value through a synthetic pointer. */
1920 static struct value *
1921 fetch_const_value_from_synthetic_pointer (sect_offset die, LONGEST byte_offset,
1922 struct dwarf2_per_cu_data *per_cu,
1925 struct value *result = NULL;
1926 const gdb_byte *bytes;
1929 auto_obstack temp_obstack;
1930 bytes = dwarf2_fetch_constant_bytes (die, per_cu, &temp_obstack, &len);
1934 if (byte_offset >= 0
1935 && byte_offset + TYPE_LENGTH (TYPE_TARGET_TYPE (type)) <= len)
1937 bytes += byte_offset;
1938 result = value_from_contents (TYPE_TARGET_TYPE (type), bytes);
1941 invalid_synthetic_pointer ();
1944 result = allocate_optimized_out_value (TYPE_TARGET_TYPE (type));
1949 /* Fetch the value pointed to by a synthetic pointer. */
1951 static struct value *
1952 indirect_synthetic_pointer (sect_offset die, LONGEST byte_offset,
1953 struct dwarf2_per_cu_data *per_cu,
1954 struct frame_info *frame, struct type *type,
1955 bool resolve_abstract_p)
1957 /* Fetch the location expression of the DIE we're pointing to. */
1958 struct dwarf2_locexpr_baton baton
1959 = dwarf2_fetch_die_loc_sect_off (die, per_cu,
1960 get_frame_address_in_block_wrapper, frame,
1961 resolve_abstract_p);
1963 /* Get type of pointed-to DIE. */
1964 struct type *orig_type = dwarf2_fetch_die_type_sect_off (die, per_cu);
1965 if (orig_type == NULL)
1966 invalid_synthetic_pointer ();
1968 /* If pointed-to DIE has a DW_AT_location, evaluate it and return the
1969 resulting value. Otherwise, it may have a DW_AT_const_value instead,
1970 or it may've been optimized out. */
1971 if (baton.data != NULL)
1972 return dwarf2_evaluate_loc_desc_full (orig_type, frame, baton.data,
1973 baton.size, baton.per_cu,
1974 TYPE_TARGET_TYPE (type),
1977 return fetch_const_value_from_synthetic_pointer (die, byte_offset, per_cu,
1981 /* An implementation of an lval_funcs method to indirect through a
1982 pointer. This handles the synthetic pointer case when needed. */
1984 static struct value *
1985 indirect_pieced_value (struct value *value)
1987 struct piece_closure *c
1988 = (struct piece_closure *) value_computed_closure (value);
1990 struct frame_info *frame;
1993 struct dwarf_expr_piece *piece = NULL;
1994 LONGEST byte_offset;
1995 enum bfd_endian byte_order;
1997 type = check_typedef (value_type (value));
1998 if (TYPE_CODE (type) != TYPE_CODE_PTR)
2001 bit_length = 8 * TYPE_LENGTH (type);
2002 bit_offset = 8 * value_offset (value);
2003 if (value_bitsize (value))
2004 bit_offset += value_bitpos (value);
2006 for (i = 0; i < c->pieces.size () && bit_length > 0; i++)
2008 struct dwarf_expr_piece *p = &c->pieces[i];
2009 size_t this_size_bits = p->size;
2013 if (bit_offset >= this_size_bits)
2015 bit_offset -= this_size_bits;
2019 bit_length -= this_size_bits - bit_offset;
2023 bit_length -= this_size_bits;
2025 if (p->location != DWARF_VALUE_IMPLICIT_POINTER)
2028 if (bit_length != 0)
2029 error (_("Invalid use of DW_OP_implicit_pointer"));
2035 gdb_assert (piece != NULL);
2036 frame = get_selected_frame (_("No frame selected."));
2038 /* This is an offset requested by GDB, such as value subscripts.
2039 However, due to how synthetic pointers are implemented, this is
2040 always presented to us as a pointer type. This means we have to
2041 sign-extend it manually as appropriate. Use raw
2042 extract_signed_integer directly rather than value_as_address and
2043 sign extend afterwards on architectures that would need it
2044 (mostly everywhere except MIPS, which has signed addresses) as
2045 the later would go through gdbarch_pointer_to_address and thus
2046 return a CORE_ADDR with high bits set on architectures that
2047 encode address spaces and other things in CORE_ADDR. */
2048 byte_order = gdbarch_byte_order (get_frame_arch (frame));
2049 byte_offset = extract_signed_integer (value_contents (value),
2050 TYPE_LENGTH (type), byte_order);
2051 byte_offset += piece->v.ptr.offset;
2053 return indirect_synthetic_pointer (piece->v.ptr.die_sect_off,
2054 byte_offset, c->per_cu,
2058 /* Implementation of the coerce_ref method of lval_funcs for synthetic C++
2061 static struct value *
2062 coerce_pieced_ref (const struct value *value)
2064 struct type *type = check_typedef (value_type (value));
2066 if (value_bits_synthetic_pointer (value, value_embedded_offset (value),
2067 TARGET_CHAR_BIT * TYPE_LENGTH (type)))
2069 const struct piece_closure *closure
2070 = (struct piece_closure *) value_computed_closure (value);
2071 struct frame_info *frame
2072 = get_selected_frame (_("No frame selected."));
2074 /* gdb represents synthetic pointers as pieced values with a single
2076 gdb_assert (closure != NULL);
2077 gdb_assert (closure->pieces.size () == 1);
2079 return indirect_synthetic_pointer
2080 (closure->pieces[0].v.ptr.die_sect_off,
2081 closure->pieces[0].v.ptr.offset,
2082 closure->per_cu, frame, type);
2086 /* Else: not a synthetic reference; do nothing. */
2092 copy_pieced_value_closure (const struct value *v)
2094 struct piece_closure *c
2095 = (struct piece_closure *) value_computed_closure (v);
2102 free_pieced_value_closure (struct value *v)
2104 struct piece_closure *c
2105 = (struct piece_closure *) value_computed_closure (v);
2110 for (dwarf_expr_piece &p : c->pieces)
2111 if (p.location == DWARF_VALUE_STACK)
2112 value_decref (p.v.value);
2118 /* Functions for accessing a variable described by DW_OP_piece. */
2119 static const struct lval_funcs pieced_value_funcs = {
2122 indirect_pieced_value,
2124 check_pieced_synthetic_pointer,
2125 copy_pieced_value_closure,
2126 free_pieced_value_closure
2129 /* Evaluate a location description, starting at DATA and with length
2130 SIZE, to find the current location of variable of TYPE in the
2131 context of FRAME. If SUBOBJ_TYPE is non-NULL, return instead the
2132 location of the subobject of type SUBOBJ_TYPE at byte offset
2133 SUBOBJ_BYTE_OFFSET within the variable of type TYPE. */
2135 static struct value *
2136 dwarf2_evaluate_loc_desc_full (struct type *type, struct frame_info *frame,
2137 const gdb_byte *data, size_t size,
2138 struct dwarf2_per_cu_data *per_cu,
2139 struct type *subobj_type,
2140 LONGEST subobj_byte_offset)
2142 struct value *retval;
2143 struct objfile *objfile = dwarf2_per_cu_objfile (per_cu);
2145 if (subobj_type == NULL)
2148 subobj_byte_offset = 0;
2150 else if (subobj_byte_offset < 0)
2151 invalid_synthetic_pointer ();
2154 return allocate_optimized_out_value (subobj_type);
2156 dwarf_evaluate_loc_desc ctx;
2158 ctx.per_cu = per_cu;
2159 ctx.obj_address = 0;
2161 scoped_value_mark free_values;
2163 ctx.gdbarch = get_objfile_arch (objfile);
2164 ctx.addr_size = dwarf2_per_cu_addr_size (per_cu);
2165 ctx.ref_addr_size = dwarf2_per_cu_ref_addr_size (per_cu);
2166 ctx.offset = dwarf2_per_cu_text_offset (per_cu);
2170 ctx.eval (data, size);
2172 CATCH (ex, RETURN_MASK_ERROR)
2174 if (ex.error == NOT_AVAILABLE_ERROR)
2176 free_values.free_to_mark ();
2177 retval = allocate_value (subobj_type);
2178 mark_value_bytes_unavailable (retval, 0,
2179 TYPE_LENGTH (subobj_type));
2182 else if (ex.error == NO_ENTRY_VALUE_ERROR)
2184 if (entry_values_debug)
2185 exception_print (gdb_stdout, ex);
2186 free_values.free_to_mark ();
2187 return allocate_optimized_out_value (subobj_type);
2190 throw_exception (ex);
2194 if (ctx.pieces.size () > 0)
2196 struct piece_closure *c;
2197 ULONGEST bit_size = 0;
2199 for (dwarf_expr_piece &piece : ctx.pieces)
2200 bit_size += piece.size;
2201 /* Complain if the expression is larger than the size of the
2203 if (bit_size > 8 * TYPE_LENGTH (type))
2204 invalid_synthetic_pointer ();
2206 c = allocate_piece_closure (per_cu, std::move (ctx.pieces), frame);
2207 /* We must clean up the value chain after creating the piece
2208 closure but before allocating the result. */
2209 free_values.free_to_mark ();
2210 retval = allocate_computed_value (subobj_type,
2211 &pieced_value_funcs, c);
2212 set_value_offset (retval, subobj_byte_offset);
2216 switch (ctx.location)
2218 case DWARF_VALUE_REGISTER:
2220 struct gdbarch *arch = get_frame_arch (frame);
2222 = longest_to_int (value_as_long (ctx.fetch (0)));
2223 int gdb_regnum = dwarf_reg_to_regnum_or_error (arch, dwarf_regnum);
2225 if (subobj_byte_offset != 0)
2226 error (_("cannot use offset on synthetic pointer to register"));
2227 free_values.free_to_mark ();
2228 retval = value_from_register (subobj_type, gdb_regnum, frame);
2229 if (value_optimized_out (retval))
2233 /* This means the register has undefined value / was
2234 not saved. As we're computing the location of some
2235 variable etc. in the program, not a value for
2236 inspecting a register ($pc, $sp, etc.), return a
2237 generic optimized out value instead, so that we show
2238 <optimized out> instead of <not saved>. */
2239 tmp = allocate_value (subobj_type);
2240 value_contents_copy (tmp, 0, retval, 0,
2241 TYPE_LENGTH (subobj_type));
2247 case DWARF_VALUE_MEMORY:
2249 struct type *ptr_type;
2250 CORE_ADDR address = ctx.fetch_address (0);
2251 bool in_stack_memory = ctx.fetch_in_stack_memory (0);
2253 /* DW_OP_deref_size (and possibly other operations too) may
2254 create a pointer instead of an address. Ideally, the
2255 pointer to address conversion would be performed as part
2256 of those operations, but the type of the object to
2257 which the address refers is not known at the time of
2258 the operation. Therefore, we do the conversion here
2259 since the type is readily available. */
2261 switch (TYPE_CODE (subobj_type))
2263 case TYPE_CODE_FUNC:
2264 case TYPE_CODE_METHOD:
2265 ptr_type = builtin_type (ctx.gdbarch)->builtin_func_ptr;
2268 ptr_type = builtin_type (ctx.gdbarch)->builtin_data_ptr;
2271 address = value_as_address (value_from_pointer (ptr_type, address));
2273 free_values.free_to_mark ();
2274 retval = value_at_lazy (subobj_type,
2275 address + subobj_byte_offset);
2276 if (in_stack_memory)
2277 set_value_stack (retval, 1);
2281 case DWARF_VALUE_STACK:
2283 struct value *value = ctx.fetch (0);
2284 size_t n = TYPE_LENGTH (value_type (value));
2285 size_t len = TYPE_LENGTH (subobj_type);
2286 size_t max = TYPE_LENGTH (type);
2287 struct gdbarch *objfile_gdbarch = get_objfile_arch (objfile);
2289 if (subobj_byte_offset + len > max)
2290 invalid_synthetic_pointer ();
2292 /* Preserve VALUE because we are going to free values back
2293 to the mark, but we still need the value contents
2295 value_ref_ptr value_holder = value_ref_ptr::new_reference (value);
2296 free_values.free_to_mark ();
2298 retval = allocate_value (subobj_type);
2300 /* The given offset is relative to the actual object. */
2301 if (gdbarch_byte_order (objfile_gdbarch) == BFD_ENDIAN_BIG)
2302 subobj_byte_offset += n - max;
2304 memcpy (value_contents_raw (retval),
2305 value_contents_all (value) + subobj_byte_offset, len);
2309 case DWARF_VALUE_LITERAL:
2312 size_t n = TYPE_LENGTH (subobj_type);
2314 if (subobj_byte_offset + n > ctx.len)
2315 invalid_synthetic_pointer ();
2317 free_values.free_to_mark ();
2318 retval = allocate_value (subobj_type);
2319 contents = value_contents_raw (retval);
2320 memcpy (contents, ctx.data + subobj_byte_offset, n);
2324 case DWARF_VALUE_OPTIMIZED_OUT:
2325 free_values.free_to_mark ();
2326 retval = allocate_optimized_out_value (subobj_type);
2329 /* DWARF_VALUE_IMPLICIT_POINTER was converted to a pieced
2330 operation by execute_stack_op. */
2331 case DWARF_VALUE_IMPLICIT_POINTER:
2332 /* DWARF_VALUE_OPTIMIZED_OUT can't occur in this context --
2333 it can only be encountered when making a piece. */
2335 internal_error (__FILE__, __LINE__, _("invalid location type"));
2339 set_value_initialized (retval, ctx.initialized);
2344 /* The exported interface to dwarf2_evaluate_loc_desc_full; it always
2345 passes 0 as the byte_offset. */
2348 dwarf2_evaluate_loc_desc (struct type *type, struct frame_info *frame,
2349 const gdb_byte *data, size_t size,
2350 struct dwarf2_per_cu_data *per_cu)
2352 return dwarf2_evaluate_loc_desc_full (type, frame, data, size, per_cu,
2356 /* Evaluates a dwarf expression and stores the result in VAL, expecting
2357 that the dwarf expression only produces a single CORE_ADDR. FRAME is the
2358 frame in which the expression is evaluated. ADDR is a context (location of
2359 a variable) and might be needed to evaluate the location expression.
2360 Returns 1 on success, 0 otherwise. */
2363 dwarf2_locexpr_baton_eval (const struct dwarf2_locexpr_baton *dlbaton,
2364 struct frame_info *frame,
2368 struct objfile *objfile;
2370 if (dlbaton == NULL || dlbaton->size == 0)
2373 dwarf_evaluate_loc_desc ctx;
2376 ctx.per_cu = dlbaton->per_cu;
2377 ctx.obj_address = addr;
2379 objfile = dwarf2_per_cu_objfile (dlbaton->per_cu);
2381 ctx.gdbarch = get_objfile_arch (objfile);
2382 ctx.addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
2383 ctx.ref_addr_size = dwarf2_per_cu_ref_addr_size (dlbaton->per_cu);
2384 ctx.offset = dwarf2_per_cu_text_offset (dlbaton->per_cu);
2388 ctx.eval (dlbaton->data, dlbaton->size);
2390 CATCH (ex, RETURN_MASK_ERROR)
2392 if (ex.error == NOT_AVAILABLE_ERROR)
2396 else if (ex.error == NO_ENTRY_VALUE_ERROR)
2398 if (entry_values_debug)
2399 exception_print (gdb_stdout, ex);
2403 throw_exception (ex);
2407 switch (ctx.location)
2409 case DWARF_VALUE_REGISTER:
2410 case DWARF_VALUE_MEMORY:
2411 case DWARF_VALUE_STACK:
2412 *valp = ctx.fetch_address (0);
2413 if (ctx.location == DWARF_VALUE_REGISTER)
2414 *valp = ctx.read_addr_from_reg (*valp);
2416 case DWARF_VALUE_LITERAL:
2417 *valp = extract_signed_integer (ctx.data, ctx.len,
2418 gdbarch_byte_order (ctx.gdbarch));
2420 /* Unsupported dwarf values. */
2421 case DWARF_VALUE_OPTIMIZED_OUT:
2422 case DWARF_VALUE_IMPLICIT_POINTER:
2429 /* See dwarf2loc.h. */
2432 dwarf2_evaluate_property (const struct dynamic_prop *prop,
2433 struct frame_info *frame,
2434 struct property_addr_info *addr_stack,
2440 if (frame == NULL && has_stack_frames ())
2441 frame = get_selected_frame (NULL);
2447 const struct dwarf2_property_baton *baton
2448 = (const struct dwarf2_property_baton *) prop->data.baton;
2450 if (dwarf2_locexpr_baton_eval (&baton->locexpr, frame,
2451 addr_stack ? addr_stack->addr : 0,
2454 if (baton->referenced_type)
2456 struct value *val = value_at (baton->referenced_type, *value);
2458 *value = value_as_address (val);
2467 struct dwarf2_property_baton *baton
2468 = (struct dwarf2_property_baton *) prop->data.baton;
2469 CORE_ADDR pc = get_frame_address_in_block (frame);
2470 const gdb_byte *data;
2474 data = dwarf2_find_location_expression (&baton->loclist, &size, pc);
2477 val = dwarf2_evaluate_loc_desc (baton->referenced_type, frame, data,
2478 size, baton->loclist.per_cu);
2479 if (!value_optimized_out (val))
2481 *value = value_as_address (val);
2489 *value = prop->data.const_val;
2492 case PROP_ADDR_OFFSET:
2494 struct dwarf2_property_baton *baton
2495 = (struct dwarf2_property_baton *) prop->data.baton;
2496 struct property_addr_info *pinfo;
2499 for (pinfo = addr_stack; pinfo != NULL; pinfo = pinfo->next)
2500 if (pinfo->type == baton->referenced_type)
2503 error (_("cannot find reference address for offset property"));
2504 if (pinfo->valaddr != NULL)
2505 val = value_from_contents
2506 (baton->offset_info.type,
2507 pinfo->valaddr + baton->offset_info.offset);
2509 val = value_at (baton->offset_info.type,
2510 pinfo->addr + baton->offset_info.offset);
2511 *value = value_as_address (val);
2519 /* See dwarf2loc.h. */
2522 dwarf2_compile_property_to_c (string_file *stream,
2523 const char *result_name,
2524 struct gdbarch *gdbarch,
2525 unsigned char *registers_used,
2526 const struct dynamic_prop *prop,
2530 struct dwarf2_property_baton *baton
2531 = (struct dwarf2_property_baton *) prop->data.baton;
2532 const gdb_byte *data;
2534 struct dwarf2_per_cu_data *per_cu;
2536 if (prop->kind == PROP_LOCEXPR)
2538 data = baton->locexpr.data;
2539 size = baton->locexpr.size;
2540 per_cu = baton->locexpr.per_cu;
2544 gdb_assert (prop->kind == PROP_LOCLIST);
2546 data = dwarf2_find_location_expression (&baton->loclist, &size, pc);
2547 per_cu = baton->loclist.per_cu;
2550 compile_dwarf_bounds_to_c (stream, result_name, prop, sym, pc,
2551 gdbarch, registers_used,
2552 dwarf2_per_cu_addr_size (per_cu),
2553 data, data + size, per_cu);
2557 /* Helper functions and baton for dwarf2_loc_desc_get_symbol_read_needs. */
2559 class symbol_needs_eval_context : public dwarf_expr_context
2563 enum symbol_needs_kind needs;
2564 struct dwarf2_per_cu_data *per_cu;
2566 /* Reads from registers do require a frame. */
2567 CORE_ADDR read_addr_from_reg (int regnum) override
2569 needs = SYMBOL_NEEDS_FRAME;
2573 /* "get_reg_value" callback: Reads from registers do require a
2576 struct value *get_reg_value (struct type *type, int regnum) override
2578 needs = SYMBOL_NEEDS_FRAME;
2579 return value_zero (type, not_lval);
2582 /* Reads from memory do not require a frame. */
2583 void read_mem (gdb_byte *buf, CORE_ADDR addr, size_t len) override
2585 memset (buf, 0, len);
2588 /* Frame-relative accesses do require a frame. */
2589 void get_frame_base (const gdb_byte **start, size_t *length) override
2591 static gdb_byte lit0 = DW_OP_lit0;
2596 needs = SYMBOL_NEEDS_FRAME;
2599 /* CFA accesses require a frame. */
2600 CORE_ADDR get_frame_cfa () override
2602 needs = SYMBOL_NEEDS_FRAME;
2606 CORE_ADDR get_frame_pc () override
2608 needs = SYMBOL_NEEDS_FRAME;
2612 /* Thread-local accesses require registers, but not a frame. */
2613 CORE_ADDR get_tls_address (CORE_ADDR offset) override
2615 if (needs <= SYMBOL_NEEDS_REGISTERS)
2616 needs = SYMBOL_NEEDS_REGISTERS;
2620 /* Helper interface of per_cu_dwarf_call for
2621 dwarf2_loc_desc_get_symbol_read_needs. */
2623 void dwarf_call (cu_offset die_offset) override
2625 per_cu_dwarf_call (this, die_offset, per_cu);
2628 /* Helper interface of sect_variable_value for
2629 dwarf2_loc_desc_get_symbol_read_needs. */
2631 struct value *dwarf_variable_value (sect_offset sect_off) override
2633 return sect_variable_value (this, sect_off, per_cu);
2636 /* DW_OP_entry_value accesses require a caller, therefore a
2639 void push_dwarf_reg_entry_value (enum call_site_parameter_kind kind,
2640 union call_site_parameter_u kind_u,
2641 int deref_size) override
2643 needs = SYMBOL_NEEDS_FRAME;
2645 /* The expression may require some stub values on DWARF stack. */
2646 push_address (0, 0);
2649 /* DW_OP_GNU_addr_index doesn't require a frame. */
2651 CORE_ADDR get_addr_index (unsigned int index) override
2653 /* Nothing to do. */
2657 /* DW_OP_push_object_address has a frame already passed through. */
2659 CORE_ADDR get_object_address () override
2661 /* Nothing to do. */
2666 /* Compute the correct symbol_needs_kind value for the location
2667 expression at DATA (length SIZE). */
2669 static enum symbol_needs_kind
2670 dwarf2_loc_desc_get_symbol_read_needs (const gdb_byte *data, size_t size,
2671 struct dwarf2_per_cu_data *per_cu)
2674 struct objfile *objfile = dwarf2_per_cu_objfile (per_cu);
2676 scoped_value_mark free_values;
2678 symbol_needs_eval_context ctx;
2680 ctx.needs = SYMBOL_NEEDS_NONE;
2681 ctx.per_cu = per_cu;
2682 ctx.gdbarch = get_objfile_arch (objfile);
2683 ctx.addr_size = dwarf2_per_cu_addr_size (per_cu);
2684 ctx.ref_addr_size = dwarf2_per_cu_ref_addr_size (per_cu);
2685 ctx.offset = dwarf2_per_cu_text_offset (per_cu);
2687 ctx.eval (data, size);
2689 in_reg = ctx.location == DWARF_VALUE_REGISTER;
2691 /* If the location has several pieces, and any of them are in
2692 registers, then we will need a frame to fetch them from. */
2693 for (dwarf_expr_piece &p : ctx.pieces)
2694 if (p.location == DWARF_VALUE_REGISTER)
2698 ctx.needs = SYMBOL_NEEDS_FRAME;
2702 /* A helper function that throws an unimplemented error mentioning a
2703 given DWARF operator. */
2705 static void ATTRIBUTE_NORETURN
2706 unimplemented (unsigned int op)
2708 const char *name = get_DW_OP_name (op);
2711 error (_("DWARF operator %s cannot be translated to an agent expression"),
2714 error (_("Unknown DWARF operator 0x%02x cannot be translated "
2715 "to an agent expression"),
2721 This is basically a wrapper on gdbarch_dwarf2_reg_to_regnum so that we
2722 can issue a complaint, which is better than having every target's
2723 implementation of dwarf2_reg_to_regnum do it. */
2726 dwarf_reg_to_regnum (struct gdbarch *arch, int dwarf_reg)
2728 int reg = gdbarch_dwarf2_reg_to_regnum (arch, dwarf_reg);
2732 complaint (_("bad DWARF register number %d"), dwarf_reg);
2737 /* Subroutine of dwarf_reg_to_regnum_or_error to simplify it.
2738 Throw an error because DWARF_REG is bad. */
2741 throw_bad_regnum_error (ULONGEST dwarf_reg)
2743 /* Still want to print -1 as "-1".
2744 We *could* have int and ULONGEST versions of dwarf2_reg_to_regnum_or_error
2745 but that's overkill for now. */
2746 if ((int) dwarf_reg == dwarf_reg)
2747 error (_("Unable to access DWARF register number %d"), (int) dwarf_reg);
2748 error (_("Unable to access DWARF register number %s"),
2749 pulongest (dwarf_reg));
2752 /* See dwarf2loc.h. */
2755 dwarf_reg_to_regnum_or_error (struct gdbarch *arch, ULONGEST dwarf_reg)
2759 if (dwarf_reg > INT_MAX)
2760 throw_bad_regnum_error (dwarf_reg);
2761 /* Yes, we will end up issuing a complaint and an error if DWARF_REG is
2762 bad, but that's ok. */
2763 reg = dwarf_reg_to_regnum (arch, (int) dwarf_reg);
2765 throw_bad_regnum_error (dwarf_reg);
2769 /* A helper function that emits an access to memory. ARCH is the
2770 target architecture. EXPR is the expression which we are building.
2771 NBITS is the number of bits we want to read. This emits the
2772 opcodes needed to read the memory and then extract the desired
2776 access_memory (struct gdbarch *arch, struct agent_expr *expr, ULONGEST nbits)
2778 ULONGEST nbytes = (nbits + 7) / 8;
2780 gdb_assert (nbytes > 0 && nbytes <= sizeof (LONGEST));
2783 ax_trace_quick (expr, nbytes);
2786 ax_simple (expr, aop_ref8);
2787 else if (nbits <= 16)
2788 ax_simple (expr, aop_ref16);
2789 else if (nbits <= 32)
2790 ax_simple (expr, aop_ref32);
2792 ax_simple (expr, aop_ref64);
2794 /* If we read exactly the number of bytes we wanted, we're done. */
2795 if (8 * nbytes == nbits)
2798 if (gdbarch_bits_big_endian (arch))
2800 /* On a bits-big-endian machine, we want the high-order
2802 ax_const_l (expr, 8 * nbytes - nbits);
2803 ax_simple (expr, aop_rsh_unsigned);
2807 /* On a bits-little-endian box, we want the low-order NBITS. */
2808 ax_zero_ext (expr, nbits);
2812 /* A helper function to return the frame's PC. */
2815 get_ax_pc (void *baton)
2817 struct agent_expr *expr = (struct agent_expr *) baton;
2822 /* Compile a DWARF location expression to an agent expression.
2824 EXPR is the agent expression we are building.
2825 LOC is the agent value we modify.
2826 ARCH is the architecture.
2827 ADDR_SIZE is the size of addresses, in bytes.
2828 OP_PTR is the start of the location expression.
2829 OP_END is one past the last byte of the location expression.
2831 This will throw an exception for various kinds of errors -- for
2832 example, if the expression cannot be compiled, or if the expression
2836 dwarf2_compile_expr_to_ax (struct agent_expr *expr, struct axs_value *loc,
2837 unsigned int addr_size, const gdb_byte *op_ptr,
2838 const gdb_byte *op_end,
2839 struct dwarf2_per_cu_data *per_cu)
2841 gdbarch *arch = expr->gdbarch;
2842 std::vector<int> dw_labels, patches;
2843 const gdb_byte * const base = op_ptr;
2844 const gdb_byte *previous_piece = op_ptr;
2845 enum bfd_endian byte_order = gdbarch_byte_order (arch);
2846 ULONGEST bits_collected = 0;
2847 unsigned int addr_size_bits = 8 * addr_size;
2848 int bits_big_endian = gdbarch_bits_big_endian (arch);
2850 std::vector<int> offsets (op_end - op_ptr, -1);
2852 /* By default we are making an address. */
2853 loc->kind = axs_lvalue_memory;
2855 while (op_ptr < op_end)
2857 enum dwarf_location_atom op = (enum dwarf_location_atom) *op_ptr;
2858 uint64_t uoffset, reg;
2862 offsets[op_ptr - base] = expr->len;
2865 /* Our basic approach to code generation is to map DWARF
2866 operations directly to AX operations. However, there are
2869 First, DWARF works on address-sized units, but AX always uses
2870 LONGEST. For most operations we simply ignore this
2871 difference; instead we generate sign extensions as needed
2872 before division and comparison operations. It would be nice
2873 to omit the sign extensions, but there is no way to determine
2874 the size of the target's LONGEST. (This code uses the size
2875 of the host LONGEST in some cases -- that is a bug but it is
2878 Second, some DWARF operations cannot be translated to AX.
2879 For these we simply fail. See
2880 http://sourceware.org/bugzilla/show_bug.cgi?id=11662. */
2915 ax_const_l (expr, op - DW_OP_lit0);
2919 uoffset = extract_unsigned_integer (op_ptr, addr_size, byte_order);
2920 op_ptr += addr_size;
2921 /* Some versions of GCC emit DW_OP_addr before
2922 DW_OP_GNU_push_tls_address. In this case the value is an
2923 index, not an address. We don't support things like
2924 branching between the address and the TLS op. */
2925 if (op_ptr >= op_end || *op_ptr != DW_OP_GNU_push_tls_address)
2926 uoffset += dwarf2_per_cu_text_offset (per_cu);
2927 ax_const_l (expr, uoffset);
2931 ax_const_l (expr, extract_unsigned_integer (op_ptr, 1, byte_order));
2935 ax_const_l (expr, extract_signed_integer (op_ptr, 1, byte_order));
2939 ax_const_l (expr, extract_unsigned_integer (op_ptr, 2, byte_order));
2943 ax_const_l (expr, extract_signed_integer (op_ptr, 2, byte_order));
2947 ax_const_l (expr, extract_unsigned_integer (op_ptr, 4, byte_order));
2951 ax_const_l (expr, extract_signed_integer (op_ptr, 4, byte_order));
2955 ax_const_l (expr, extract_unsigned_integer (op_ptr, 8, byte_order));
2959 ax_const_l (expr, extract_signed_integer (op_ptr, 8, byte_order));
2963 op_ptr = safe_read_uleb128 (op_ptr, op_end, &uoffset);
2964 ax_const_l (expr, uoffset);
2967 op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
2968 ax_const_l (expr, offset);
3003 dwarf_expr_require_composition (op_ptr, op_end, "DW_OP_regx");
3004 loc->u.reg = dwarf_reg_to_regnum_or_error (arch, op - DW_OP_reg0);
3005 loc->kind = axs_lvalue_register;
3009 op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
3010 dwarf_expr_require_composition (op_ptr, op_end, "DW_OP_regx");
3011 loc->u.reg = dwarf_reg_to_regnum_or_error (arch, reg);
3012 loc->kind = axs_lvalue_register;
3015 case DW_OP_implicit_value:
3019 op_ptr = safe_read_uleb128 (op_ptr, op_end, &len);
3020 if (op_ptr + len > op_end)
3021 error (_("DW_OP_implicit_value: too few bytes available."));
3022 if (len > sizeof (ULONGEST))
3023 error (_("Cannot translate DW_OP_implicit_value of %d bytes"),
3026 ax_const_l (expr, extract_unsigned_integer (op_ptr, len,
3029 dwarf_expr_require_composition (op_ptr, op_end,
3030 "DW_OP_implicit_value");
3032 loc->kind = axs_rvalue;
3036 case DW_OP_stack_value:
3037 dwarf_expr_require_composition (op_ptr, op_end, "DW_OP_stack_value");
3038 loc->kind = axs_rvalue;
3073 op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
3074 i = dwarf_reg_to_regnum_or_error (arch, op - DW_OP_breg0);
3078 ax_const_l (expr, offset);
3079 ax_simple (expr, aop_add);
3084 op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
3085 op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
3086 i = dwarf_reg_to_regnum_or_error (arch, reg);
3090 ax_const_l (expr, offset);
3091 ax_simple (expr, aop_add);
3097 const gdb_byte *datastart;
3099 const struct block *b;
3100 struct symbol *framefunc;
3102 b = block_for_pc (expr->scope);
3105 error (_("No block found for address"));
3107 framefunc = block_linkage_function (b);
3110 error (_("No function found for block"));
3112 func_get_frame_base_dwarf_block (framefunc, expr->scope,
3113 &datastart, &datalen);
3115 op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
3116 dwarf2_compile_expr_to_ax (expr, loc, addr_size, datastart,
3117 datastart + datalen, per_cu);
3118 if (loc->kind == axs_lvalue_register)
3119 require_rvalue (expr, loc);
3123 ax_const_l (expr, offset);
3124 ax_simple (expr, aop_add);
3127 loc->kind = axs_lvalue_memory;
3132 ax_simple (expr, aop_dup);
3136 ax_simple (expr, aop_pop);
3141 ax_pick (expr, offset);
3145 ax_simple (expr, aop_swap);
3153 ax_simple (expr, aop_rot);
3157 case DW_OP_deref_size:
3161 if (op == DW_OP_deref_size)
3166 if (size != 1 && size != 2 && size != 4 && size != 8)
3167 error (_("Unsupported size %d in %s"),
3168 size, get_DW_OP_name (op));
3169 access_memory (arch, expr, size * TARGET_CHAR_BIT);
3174 /* Sign extend the operand. */
3175 ax_ext (expr, addr_size_bits);
3176 ax_simple (expr, aop_dup);
3177 ax_const_l (expr, 0);
3178 ax_simple (expr, aop_less_signed);
3179 ax_simple (expr, aop_log_not);
3180 i = ax_goto (expr, aop_if_goto);
3181 /* We have to emit 0 - X. */
3182 ax_const_l (expr, 0);
3183 ax_simple (expr, aop_swap);
3184 ax_simple (expr, aop_sub);
3185 ax_label (expr, i, expr->len);
3189 /* No need to sign extend here. */
3190 ax_const_l (expr, 0);
3191 ax_simple (expr, aop_swap);
3192 ax_simple (expr, aop_sub);
3196 /* Sign extend the operand. */
3197 ax_ext (expr, addr_size_bits);
3198 ax_simple (expr, aop_bit_not);
3201 case DW_OP_plus_uconst:
3202 op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
3203 /* It would be really weird to emit `DW_OP_plus_uconst 0',
3204 but we micro-optimize anyhow. */
3207 ax_const_l (expr, reg);
3208 ax_simple (expr, aop_add);
3213 ax_simple (expr, aop_bit_and);
3217 /* Sign extend the operands. */
3218 ax_ext (expr, addr_size_bits);
3219 ax_simple (expr, aop_swap);
3220 ax_ext (expr, addr_size_bits);
3221 ax_simple (expr, aop_swap);
3222 ax_simple (expr, aop_div_signed);
3226 ax_simple (expr, aop_sub);
3230 ax_simple (expr, aop_rem_unsigned);
3234 ax_simple (expr, aop_mul);
3238 ax_simple (expr, aop_bit_or);
3242 ax_simple (expr, aop_add);
3246 ax_simple (expr, aop_lsh);
3250 ax_simple (expr, aop_rsh_unsigned);
3254 ax_simple (expr, aop_rsh_signed);
3258 ax_simple (expr, aop_bit_xor);
3262 /* Sign extend the operands. */
3263 ax_ext (expr, addr_size_bits);
3264 ax_simple (expr, aop_swap);
3265 ax_ext (expr, addr_size_bits);
3266 /* Note no swap here: A <= B is !(B < A). */
3267 ax_simple (expr, aop_less_signed);
3268 ax_simple (expr, aop_log_not);
3272 /* Sign extend the operands. */
3273 ax_ext (expr, addr_size_bits);
3274 ax_simple (expr, aop_swap);
3275 ax_ext (expr, addr_size_bits);
3276 ax_simple (expr, aop_swap);
3277 /* A >= B is !(A < B). */
3278 ax_simple (expr, aop_less_signed);
3279 ax_simple (expr, aop_log_not);
3283 /* Sign extend the operands. */
3284 ax_ext (expr, addr_size_bits);
3285 ax_simple (expr, aop_swap);
3286 ax_ext (expr, addr_size_bits);
3287 /* No need for a second swap here. */
3288 ax_simple (expr, aop_equal);
3292 /* Sign extend the operands. */
3293 ax_ext (expr, addr_size_bits);
3294 ax_simple (expr, aop_swap);
3295 ax_ext (expr, addr_size_bits);
3296 ax_simple (expr, aop_swap);
3297 ax_simple (expr, aop_less_signed);
3301 /* Sign extend the operands. */
3302 ax_ext (expr, addr_size_bits);
3303 ax_simple (expr, aop_swap);
3304 ax_ext (expr, addr_size_bits);
3305 /* Note no swap here: A > B is B < A. */
3306 ax_simple (expr, aop_less_signed);
3310 /* Sign extend the operands. */
3311 ax_ext (expr, addr_size_bits);
3312 ax_simple (expr, aop_swap);
3313 ax_ext (expr, addr_size_bits);
3314 /* No need for a swap here. */
3315 ax_simple (expr, aop_equal);
3316 ax_simple (expr, aop_log_not);
3319 case DW_OP_call_frame_cfa:
3322 CORE_ADDR text_offset;
3324 const gdb_byte *cfa_start, *cfa_end;
3326 if (dwarf2_fetch_cfa_info (arch, expr->scope, per_cu,
3328 &text_offset, &cfa_start, &cfa_end))
3331 ax_reg (expr, regnum);
3334 ax_const_l (expr, off);
3335 ax_simple (expr, aop_add);
3340 /* Another expression. */
3341 ax_const_l (expr, text_offset);
3342 dwarf2_compile_expr_to_ax (expr, loc, addr_size, cfa_start,
3346 loc->kind = axs_lvalue_memory;
3350 case DW_OP_GNU_push_tls_address:
3351 case DW_OP_form_tls_address:
3355 case DW_OP_push_object_address:
3360 offset = extract_signed_integer (op_ptr, 2, byte_order);
3362 i = ax_goto (expr, aop_goto);
3363 dw_labels.push_back (op_ptr + offset - base);
3364 patches.push_back (i);
3368 offset = extract_signed_integer (op_ptr, 2, byte_order);
3370 /* Zero extend the operand. */
3371 ax_zero_ext (expr, addr_size_bits);
3372 i = ax_goto (expr, aop_if_goto);
3373 dw_labels.push_back (op_ptr + offset - base);
3374 patches.push_back (i);
3381 case DW_OP_bit_piece:
3385 if (op_ptr - 1 == previous_piece)
3386 error (_("Cannot translate empty pieces to agent expressions"));
3387 previous_piece = op_ptr - 1;
3389 op_ptr = safe_read_uleb128 (op_ptr, op_end, &size);
3390 if (op == DW_OP_piece)
3396 op_ptr = safe_read_uleb128 (op_ptr, op_end, &uoffset);
3398 if (bits_collected + size > 8 * sizeof (LONGEST))
3399 error (_("Expression pieces exceed word size"));
3401 /* Access the bits. */
3404 case axs_lvalue_register:
3405 ax_reg (expr, loc->u.reg);
3408 case axs_lvalue_memory:
3409 /* Offset the pointer, if needed. */
3412 ax_const_l (expr, uoffset / 8);
3413 ax_simple (expr, aop_add);
3416 access_memory (arch, expr, size);
3420 /* For a bits-big-endian target, shift up what we already
3421 have. For a bits-little-endian target, shift up the
3422 new data. Note that there is a potential bug here if
3423 the DWARF expression leaves multiple values on the
3425 if (bits_collected > 0)
3427 if (bits_big_endian)
3429 ax_simple (expr, aop_swap);
3430 ax_const_l (expr, size);
3431 ax_simple (expr, aop_lsh);
3432 /* We don't need a second swap here, because
3433 aop_bit_or is symmetric. */
3437 ax_const_l (expr, size);
3438 ax_simple (expr, aop_lsh);
3440 ax_simple (expr, aop_bit_or);
3443 bits_collected += size;
3444 loc->kind = axs_rvalue;
3448 case DW_OP_GNU_uninit:
3454 struct dwarf2_locexpr_baton block;
3455 int size = (op == DW_OP_call2 ? 2 : 4);
3457 uoffset = extract_unsigned_integer (op_ptr, size, byte_order);
3460 cu_offset cuoffset = (cu_offset) uoffset;
3461 block = dwarf2_fetch_die_loc_cu_off (cuoffset, per_cu,
3464 /* DW_OP_call_ref is currently not supported. */
3465 gdb_assert (block.per_cu == per_cu);
3467 dwarf2_compile_expr_to_ax (expr, loc, addr_size, block.data,
3468 block.data + block.size, per_cu);
3472 case DW_OP_call_ref:
3475 case DW_OP_GNU_variable_value:
3483 /* Patch all the branches we emitted. */
3484 for (int i = 0; i < patches.size (); ++i)
3486 int targ = offsets[dw_labels[i]];
3488 internal_error (__FILE__, __LINE__, _("invalid label"));
3489 ax_label (expr, patches[i], targ);
3494 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
3495 evaluator to calculate the location. */
3496 static struct value *
3497 locexpr_read_variable (struct symbol *symbol, struct frame_info *frame)
3499 struct dwarf2_locexpr_baton *dlbaton
3500 = (struct dwarf2_locexpr_baton *) SYMBOL_LOCATION_BATON (symbol);
3503 val = dwarf2_evaluate_loc_desc (SYMBOL_TYPE (symbol), frame, dlbaton->data,
3504 dlbaton->size, dlbaton->per_cu);
3509 /* Return the value of SYMBOL in FRAME at (callee) FRAME's function
3510 entry. SYMBOL should be a function parameter, otherwise NO_ENTRY_VALUE_ERROR
3513 static struct value *
3514 locexpr_read_variable_at_entry (struct symbol *symbol, struct frame_info *frame)
3516 struct dwarf2_locexpr_baton *dlbaton
3517 = (struct dwarf2_locexpr_baton *) SYMBOL_LOCATION_BATON (symbol);
3519 return value_of_dwarf_block_entry (SYMBOL_TYPE (symbol), frame, dlbaton->data,
3523 /* Implementation of get_symbol_read_needs from
3524 symbol_computed_ops. */
3526 static enum symbol_needs_kind
3527 locexpr_get_symbol_read_needs (struct symbol *symbol)
3529 struct dwarf2_locexpr_baton *dlbaton
3530 = (struct dwarf2_locexpr_baton *) SYMBOL_LOCATION_BATON (symbol);
3532 return dwarf2_loc_desc_get_symbol_read_needs (dlbaton->data, dlbaton->size,
3536 /* Return true if DATA points to the end of a piece. END is one past
3537 the last byte in the expression. */
3540 piece_end_p (const gdb_byte *data, const gdb_byte *end)
3542 return data == end || data[0] == DW_OP_piece || data[0] == DW_OP_bit_piece;
3545 /* Helper for locexpr_describe_location_piece that finds the name of a
3549 locexpr_regname (struct gdbarch *gdbarch, int dwarf_regnum)
3553 /* This doesn't use dwarf_reg_to_regnum_or_error on purpose.
3554 We'd rather print *something* here than throw an error. */
3555 regnum = dwarf_reg_to_regnum (gdbarch, dwarf_regnum);
3556 /* gdbarch_register_name may just return "", return something more
3557 descriptive for bad register numbers. */
3560 /* The text is output as "$bad_register_number".
3561 That is why we use the underscores. */
3562 return _("bad_register_number");
3564 return gdbarch_register_name (gdbarch, regnum);
3567 /* Nicely describe a single piece of a location, returning an updated
3568 position in the bytecode sequence. This function cannot recognize
3569 all locations; if a location is not recognized, it simply returns
3570 DATA. If there is an error during reading, e.g. we run off the end
3571 of the buffer, an error is thrown. */
3573 static const gdb_byte *
3574 locexpr_describe_location_piece (struct symbol *symbol, struct ui_file *stream,
3575 CORE_ADDR addr, struct objfile *objfile,
3576 struct dwarf2_per_cu_data *per_cu,
3577 const gdb_byte *data, const gdb_byte *end,
3578 unsigned int addr_size)
3580 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3583 if (data[0] >= DW_OP_reg0 && data[0] <= DW_OP_reg31)
3585 fprintf_filtered (stream, _("a variable in $%s"),
3586 locexpr_regname (gdbarch, data[0] - DW_OP_reg0));
3589 else if (data[0] == DW_OP_regx)
3593 data = safe_read_uleb128 (data + 1, end, ®);
3594 fprintf_filtered (stream, _("a variable in $%s"),
3595 locexpr_regname (gdbarch, reg));
3597 else if (data[0] == DW_OP_fbreg)
3599 const struct block *b;
3600 struct symbol *framefunc;
3602 int64_t frame_offset;
3603 const gdb_byte *base_data, *new_data, *save_data = data;
3605 int64_t base_offset = 0;
3607 new_data = safe_read_sleb128 (data + 1, end, &frame_offset);
3608 if (!piece_end_p (new_data, end))
3612 b = block_for_pc (addr);
3615 error (_("No block found for address for symbol \"%s\"."),
3616 SYMBOL_PRINT_NAME (symbol));
3618 framefunc = block_linkage_function (b);
3621 error (_("No function found for block for symbol \"%s\"."),
3622 SYMBOL_PRINT_NAME (symbol));
3624 func_get_frame_base_dwarf_block (framefunc, addr, &base_data, &base_size);
3626 if (base_data[0] >= DW_OP_breg0 && base_data[0] <= DW_OP_breg31)
3628 const gdb_byte *buf_end;
3630 frame_reg = base_data[0] - DW_OP_breg0;
3631 buf_end = safe_read_sleb128 (base_data + 1, base_data + base_size,
3633 if (buf_end != base_data + base_size)
3634 error (_("Unexpected opcode after "
3635 "DW_OP_breg%u for symbol \"%s\"."),
3636 frame_reg, SYMBOL_PRINT_NAME (symbol));
3638 else if (base_data[0] >= DW_OP_reg0 && base_data[0] <= DW_OP_reg31)
3640 /* The frame base is just the register, with no offset. */
3641 frame_reg = base_data[0] - DW_OP_reg0;
3646 /* We don't know what to do with the frame base expression,
3647 so we can't trace this variable; give up. */
3651 fprintf_filtered (stream,
3652 _("a variable at frame base reg $%s offset %s+%s"),
3653 locexpr_regname (gdbarch, frame_reg),
3654 plongest (base_offset), plongest (frame_offset));
3656 else if (data[0] >= DW_OP_breg0 && data[0] <= DW_OP_breg31
3657 && piece_end_p (data, end))
3661 data = safe_read_sleb128 (data + 1, end, &offset);
3663 fprintf_filtered (stream,
3664 _("a variable at offset %s from base reg $%s"),
3666 locexpr_regname (gdbarch, data[0] - DW_OP_breg0));
3669 /* The location expression for a TLS variable looks like this (on a
3672 DW_AT_location : 10 byte block: 3 4 0 0 0 0 0 0 0 e0
3673 (DW_OP_addr: 4; DW_OP_GNU_push_tls_address)
3675 0x3 is the encoding for DW_OP_addr, which has an operand as long
3676 as the size of an address on the target machine (here is 8
3677 bytes). Note that more recent version of GCC emit DW_OP_const4u
3678 or DW_OP_const8u, depending on address size, rather than
3679 DW_OP_addr. 0xe0 is the encoding for DW_OP_GNU_push_tls_address.
3680 The operand represents the offset at which the variable is within
3681 the thread local storage. */
3683 else if (data + 1 + addr_size < end
3684 && (data[0] == DW_OP_addr
3685 || (addr_size == 4 && data[0] == DW_OP_const4u)
3686 || (addr_size == 8 && data[0] == DW_OP_const8u))
3687 && (data[1 + addr_size] == DW_OP_GNU_push_tls_address
3688 || data[1 + addr_size] == DW_OP_form_tls_address)
3689 && piece_end_p (data + 2 + addr_size, end))
3692 offset = extract_unsigned_integer (data + 1, addr_size,
3693 gdbarch_byte_order (gdbarch));
3695 fprintf_filtered (stream,
3696 _("a thread-local variable at offset 0x%s "
3697 "in the thread-local storage for `%s'"),
3698 phex_nz (offset, addr_size), objfile_name (objfile));
3700 data += 1 + addr_size + 1;
3703 /* With -gsplit-dwarf a TLS variable can also look like this:
3704 DW_AT_location : 3 byte block: fc 4 e0
3705 (DW_OP_GNU_const_index: 4;
3706 DW_OP_GNU_push_tls_address) */
3707 else if (data + 3 <= end
3708 && data + 1 + (leb128_size = skip_leb128 (data + 1, end)) < end
3709 && data[0] == DW_OP_GNU_const_index
3711 && (data[1 + leb128_size] == DW_OP_GNU_push_tls_address
3712 || data[1 + leb128_size] == DW_OP_form_tls_address)
3713 && piece_end_p (data + 2 + leb128_size, end))
3717 data = safe_read_uleb128 (data + 1, end, &offset);
3718 offset = dwarf2_read_addr_index (per_cu, offset);
3719 fprintf_filtered (stream,
3720 _("a thread-local variable at offset 0x%s "
3721 "in the thread-local storage for `%s'"),
3722 phex_nz (offset, addr_size), objfile_name (objfile));
3726 else if (data[0] >= DW_OP_lit0
3727 && data[0] <= DW_OP_lit31
3729 && data[1] == DW_OP_stack_value)
3731 fprintf_filtered (stream, _("the constant %d"), data[0] - DW_OP_lit0);
3738 /* Disassemble an expression, stopping at the end of a piece or at the
3739 end of the expression. Returns a pointer to the next unread byte
3740 in the input expression. If ALL is nonzero, then this function
3741 will keep going until it reaches the end of the expression.
3742 If there is an error during reading, e.g. we run off the end
3743 of the buffer, an error is thrown. */
3745 static const gdb_byte *
3746 disassemble_dwarf_expression (struct ui_file *stream,
3747 struct gdbarch *arch, unsigned int addr_size,
3748 int offset_size, const gdb_byte *start,
3749 const gdb_byte *data, const gdb_byte *end,
3750 int indent, int all,
3751 struct dwarf2_per_cu_data *per_cu)
3755 || (data[0] != DW_OP_piece && data[0] != DW_OP_bit_piece)))
3757 enum dwarf_location_atom op = (enum dwarf_location_atom) *data++;
3762 name = get_DW_OP_name (op);
3765 error (_("Unrecognized DWARF opcode 0x%02x at %ld"),
3766 op, (long) (data - 1 - start));
3767 fprintf_filtered (stream, " %*ld: %s", indent + 4,
3768 (long) (data - 1 - start), name);
3773 ul = extract_unsigned_integer (data, addr_size,
3774 gdbarch_byte_order (arch));
3776 fprintf_filtered (stream, " 0x%s", phex_nz (ul, addr_size));
3780 ul = extract_unsigned_integer (data, 1, gdbarch_byte_order (arch));
3782 fprintf_filtered (stream, " %s", pulongest (ul));
3785 l = extract_signed_integer (data, 1, gdbarch_byte_order (arch));
3787 fprintf_filtered (stream, " %s", plongest (l));
3790 ul = extract_unsigned_integer (data, 2, gdbarch_byte_order (arch));
3792 fprintf_filtered (stream, " %s", pulongest (ul));
3795 l = extract_signed_integer (data, 2, gdbarch_byte_order (arch));
3797 fprintf_filtered (stream, " %s", plongest (l));
3800 ul = extract_unsigned_integer (data, 4, gdbarch_byte_order (arch));
3802 fprintf_filtered (stream, " %s", pulongest (ul));
3805 l = extract_signed_integer (data, 4, gdbarch_byte_order (arch));
3807 fprintf_filtered (stream, " %s", plongest (l));
3810 ul = extract_unsigned_integer (data, 8, gdbarch_byte_order (arch));
3812 fprintf_filtered (stream, " %s", pulongest (ul));
3815 l = extract_signed_integer (data, 8, gdbarch_byte_order (arch));
3817 fprintf_filtered (stream, " %s", plongest (l));
3820 data = safe_read_uleb128 (data, end, &ul);
3821 fprintf_filtered (stream, " %s", pulongest (ul));
3824 data = safe_read_sleb128 (data, end, &l);
3825 fprintf_filtered (stream, " %s", plongest (l));
3860 fprintf_filtered (stream, " [$%s]",
3861 locexpr_regname (arch, op - DW_OP_reg0));
3865 data = safe_read_uleb128 (data, end, &ul);
3866 fprintf_filtered (stream, " %s [$%s]", pulongest (ul),
3867 locexpr_regname (arch, (int) ul));
3870 case DW_OP_implicit_value:
3871 data = safe_read_uleb128 (data, end, &ul);
3873 fprintf_filtered (stream, " %s", pulongest (ul));
3908 data = safe_read_sleb128 (data, end, &l);
3909 fprintf_filtered (stream, " %s [$%s]", plongest (l),
3910 locexpr_regname (arch, op - DW_OP_breg0));
3914 data = safe_read_uleb128 (data, end, &ul);
3915 data = safe_read_sleb128 (data, end, &l);
3916 fprintf_filtered (stream, " register %s [$%s] offset %s",
3918 locexpr_regname (arch, (int) ul),
3923 data = safe_read_sleb128 (data, end, &l);
3924 fprintf_filtered (stream, " %s", plongest (l));
3927 case DW_OP_xderef_size:
3928 case DW_OP_deref_size:
3930 fprintf_filtered (stream, " %d", *data);
3934 case DW_OP_plus_uconst:
3935 data = safe_read_uleb128 (data, end, &ul);
3936 fprintf_filtered (stream, " %s", pulongest (ul));
3940 l = extract_signed_integer (data, 2, gdbarch_byte_order (arch));
3942 fprintf_filtered (stream, " to %ld",
3943 (long) (data + l - start));
3947 l = extract_signed_integer (data, 2, gdbarch_byte_order (arch));
3949 fprintf_filtered (stream, " %ld",
3950 (long) (data + l - start));
3954 ul = extract_unsigned_integer (data, 2, gdbarch_byte_order (arch));
3956 fprintf_filtered (stream, " offset %s", phex_nz (ul, 2));
3960 ul = extract_unsigned_integer (data, 4, gdbarch_byte_order (arch));
3962 fprintf_filtered (stream, " offset %s", phex_nz (ul, 4));
3965 case DW_OP_call_ref:
3966 ul = extract_unsigned_integer (data, offset_size,
3967 gdbarch_byte_order (arch));
3968 data += offset_size;
3969 fprintf_filtered (stream, " offset %s", phex_nz (ul, offset_size));
3973 data = safe_read_uleb128 (data, end, &ul);
3974 fprintf_filtered (stream, " %s (bytes)", pulongest (ul));
3977 case DW_OP_bit_piece:
3981 data = safe_read_uleb128 (data, end, &ul);
3982 data = safe_read_uleb128 (data, end, &offset);
3983 fprintf_filtered (stream, " size %s offset %s (bits)",
3984 pulongest (ul), pulongest (offset));
3988 case DW_OP_implicit_pointer:
3989 case DW_OP_GNU_implicit_pointer:
3991 ul = extract_unsigned_integer (data, offset_size,
3992 gdbarch_byte_order (arch));
3993 data += offset_size;
3995 data = safe_read_sleb128 (data, end, &l);
3997 fprintf_filtered (stream, " DIE %s offset %s",
3998 phex_nz (ul, offset_size),
4003 case DW_OP_deref_type:
4004 case DW_OP_GNU_deref_type:
4006 int deref_addr_size = *data++;
4009 data = safe_read_uleb128 (data, end, &ul);
4010 cu_offset offset = (cu_offset) ul;
4011 type = dwarf2_get_die_type (offset, per_cu);
4012 fprintf_filtered (stream, "<");
4013 type_print (type, "", stream, -1);
4014 fprintf_filtered (stream, " [0x%s]> %d",
4015 phex_nz (to_underlying (offset), 0),
4020 case DW_OP_const_type:
4021 case DW_OP_GNU_const_type:
4025 data = safe_read_uleb128 (data, end, &ul);
4026 cu_offset type_die = (cu_offset) ul;
4027 type = dwarf2_get_die_type (type_die, per_cu);
4028 fprintf_filtered (stream, "<");
4029 type_print (type, "", stream, -1);
4030 fprintf_filtered (stream, " [0x%s]>",
4031 phex_nz (to_underlying (type_die), 0));
4035 case DW_OP_regval_type:
4036 case DW_OP_GNU_regval_type:
4041 data = safe_read_uleb128 (data, end, ®);
4042 data = safe_read_uleb128 (data, end, &ul);
4043 cu_offset type_die = (cu_offset) ul;
4045 type = dwarf2_get_die_type (type_die, per_cu);
4046 fprintf_filtered (stream, "<");
4047 type_print (type, "", stream, -1);
4048 fprintf_filtered (stream, " [0x%s]> [$%s]",
4049 phex_nz (to_underlying (type_die), 0),
4050 locexpr_regname (arch, reg));
4055 case DW_OP_GNU_convert:
4056 case DW_OP_reinterpret:
4057 case DW_OP_GNU_reinterpret:
4059 data = safe_read_uleb128 (data, end, &ul);
4060 cu_offset type_die = (cu_offset) ul;
4062 if (to_underlying (type_die) == 0)
4063 fprintf_filtered (stream, "<0>");
4068 type = dwarf2_get_die_type (type_die, per_cu);
4069 fprintf_filtered (stream, "<");
4070 type_print (type, "", stream, -1);
4071 fprintf_filtered (stream, " [0x%s]>",
4072 phex_nz (to_underlying (type_die), 0));
4077 case DW_OP_entry_value:
4078 case DW_OP_GNU_entry_value:
4079 data = safe_read_uleb128 (data, end, &ul);
4080 fputc_filtered ('\n', stream);
4081 disassemble_dwarf_expression (stream, arch, addr_size, offset_size,
4082 start, data, data + ul, indent + 2,
4087 case DW_OP_GNU_parameter_ref:
4088 ul = extract_unsigned_integer (data, 4, gdbarch_byte_order (arch));
4090 fprintf_filtered (stream, " offset %s", phex_nz (ul, 4));
4093 case DW_OP_GNU_addr_index:
4094 data = safe_read_uleb128 (data, end, &ul);
4095 ul = dwarf2_read_addr_index (per_cu, ul);
4096 fprintf_filtered (stream, " 0x%s", phex_nz (ul, addr_size));
4098 case DW_OP_GNU_const_index:
4099 data = safe_read_uleb128 (data, end, &ul);
4100 ul = dwarf2_read_addr_index (per_cu, ul);
4101 fprintf_filtered (stream, " %s", pulongest (ul));
4104 case DW_OP_GNU_variable_value:
4105 ul = extract_unsigned_integer (data, offset_size,
4106 gdbarch_byte_order (arch));
4107 data += offset_size;
4108 fprintf_filtered (stream, " offset %s", phex_nz (ul, offset_size));
4112 fprintf_filtered (stream, "\n");
4118 /* Describe a single location, which may in turn consist of multiple
4122 locexpr_describe_location_1 (struct symbol *symbol, CORE_ADDR addr,
4123 struct ui_file *stream,
4124 const gdb_byte *data, size_t size,
4125 struct objfile *objfile, unsigned int addr_size,
4126 int offset_size, struct dwarf2_per_cu_data *per_cu)
4128 const gdb_byte *end = data + size;
4129 int first_piece = 1, bad = 0;
4133 const gdb_byte *here = data;
4134 int disassemble = 1;
4139 fprintf_filtered (stream, _(", and "));
4141 if (!dwarf_always_disassemble)
4143 data = locexpr_describe_location_piece (symbol, stream,
4144 addr, objfile, per_cu,
4145 data, end, addr_size);
4146 /* If we printed anything, or if we have an empty piece,
4147 then don't disassemble. */
4149 || data[0] == DW_OP_piece
4150 || data[0] == DW_OP_bit_piece)
4155 fprintf_filtered (stream, _("a complex DWARF expression:\n"));
4156 data = disassemble_dwarf_expression (stream,
4157 get_objfile_arch (objfile),
4158 addr_size, offset_size, data,
4160 dwarf_always_disassemble,
4166 int empty = data == here;
4169 fprintf_filtered (stream, " ");
4170 if (data[0] == DW_OP_piece)
4174 data = safe_read_uleb128 (data + 1, end, &bytes);
4177 fprintf_filtered (stream, _("an empty %s-byte piece"),
4180 fprintf_filtered (stream, _(" [%s-byte piece]"),
4183 else if (data[0] == DW_OP_bit_piece)
4185 uint64_t bits, offset;
4187 data = safe_read_uleb128 (data + 1, end, &bits);
4188 data = safe_read_uleb128 (data, end, &offset);
4191 fprintf_filtered (stream,
4192 _("an empty %s-bit piece"),
4195 fprintf_filtered (stream,
4196 _(" [%s-bit piece, offset %s bits]"),
4197 pulongest (bits), pulongest (offset));
4207 if (bad || data > end)
4208 error (_("Corrupted DWARF2 expression for \"%s\"."),
4209 SYMBOL_PRINT_NAME (symbol));
4212 /* Print a natural-language description of SYMBOL to STREAM. This
4213 version is for a symbol with a single location. */
4216 locexpr_describe_location (struct symbol *symbol, CORE_ADDR addr,
4217 struct ui_file *stream)
4219 struct dwarf2_locexpr_baton *dlbaton
4220 = (struct dwarf2_locexpr_baton *) SYMBOL_LOCATION_BATON (symbol);
4221 struct objfile *objfile = dwarf2_per_cu_objfile (dlbaton->per_cu);
4222 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4223 int offset_size = dwarf2_per_cu_offset_size (dlbaton->per_cu);
4225 locexpr_describe_location_1 (symbol, addr, stream,
4226 dlbaton->data, dlbaton->size,
4227 objfile, addr_size, offset_size,
4231 /* Describe the location of SYMBOL as an agent value in VALUE, generating
4232 any necessary bytecode in AX. */
4235 locexpr_tracepoint_var_ref (struct symbol *symbol, struct agent_expr *ax,
4236 struct axs_value *value)
4238 struct dwarf2_locexpr_baton *dlbaton
4239 = (struct dwarf2_locexpr_baton *) SYMBOL_LOCATION_BATON (symbol);
4240 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4242 if (dlbaton->size == 0)
4243 value->optimized_out = 1;
4245 dwarf2_compile_expr_to_ax (ax, value, addr_size, dlbaton->data,
4246 dlbaton->data + dlbaton->size, dlbaton->per_cu);
4249 /* symbol_computed_ops 'generate_c_location' method. */
4252 locexpr_generate_c_location (struct symbol *sym, string_file *stream,
4253 struct gdbarch *gdbarch,
4254 unsigned char *registers_used,
4255 CORE_ADDR pc, const char *result_name)
4257 struct dwarf2_locexpr_baton *dlbaton
4258 = (struct dwarf2_locexpr_baton *) SYMBOL_LOCATION_BATON (sym);
4259 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4261 if (dlbaton->size == 0)
4262 error (_("symbol \"%s\" is optimized out"), SYMBOL_NATURAL_NAME (sym));
4264 compile_dwarf_expr_to_c (stream, result_name,
4265 sym, pc, gdbarch, registers_used, addr_size,
4266 dlbaton->data, dlbaton->data + dlbaton->size,
4270 /* The set of location functions used with the DWARF-2 expression
4272 const struct symbol_computed_ops dwarf2_locexpr_funcs = {
4273 locexpr_read_variable,
4274 locexpr_read_variable_at_entry,
4275 locexpr_get_symbol_read_needs,
4276 locexpr_describe_location,
4277 0, /* location_has_loclist */
4278 locexpr_tracepoint_var_ref,
4279 locexpr_generate_c_location
4283 /* Wrapper functions for location lists. These generally find
4284 the appropriate location expression and call something above. */
4286 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
4287 evaluator to calculate the location. */
4288 static struct value *
4289 loclist_read_variable (struct symbol *symbol, struct frame_info *frame)
4291 struct dwarf2_loclist_baton *dlbaton
4292 = (struct dwarf2_loclist_baton *) SYMBOL_LOCATION_BATON (symbol);
4294 const gdb_byte *data;
4296 CORE_ADDR pc = frame ? get_frame_address_in_block (frame) : 0;
4298 data = dwarf2_find_location_expression (dlbaton, &size, pc);
4299 val = dwarf2_evaluate_loc_desc (SYMBOL_TYPE (symbol), frame, data, size,
4305 /* Read variable SYMBOL like loclist_read_variable at (callee) FRAME's function
4306 entry. SYMBOL should be a function parameter, otherwise NO_ENTRY_VALUE_ERROR
4309 Function always returns non-NULL value, it may be marked optimized out if
4310 inferior frame information is not available. It throws NO_ENTRY_VALUE_ERROR
4311 if it cannot resolve the parameter for any reason. */
4313 static struct value *
4314 loclist_read_variable_at_entry (struct symbol *symbol, struct frame_info *frame)
4316 struct dwarf2_loclist_baton *dlbaton
4317 = (struct dwarf2_loclist_baton *) SYMBOL_LOCATION_BATON (symbol);
4318 const gdb_byte *data;
4322 if (frame == NULL || !get_frame_func_if_available (frame, &pc))
4323 return allocate_optimized_out_value (SYMBOL_TYPE (symbol));
4325 data = dwarf2_find_location_expression (dlbaton, &size, pc);
4327 return allocate_optimized_out_value (SYMBOL_TYPE (symbol));
4329 return value_of_dwarf_block_entry (SYMBOL_TYPE (symbol), frame, data, size);
4332 /* Implementation of get_symbol_read_needs from
4333 symbol_computed_ops. */
4335 static enum symbol_needs_kind
4336 loclist_symbol_needs (struct symbol *symbol)
4338 /* If there's a location list, then assume we need to have a frame
4339 to choose the appropriate location expression. With tracking of
4340 global variables this is not necessarily true, but such tracking
4341 is disabled in GCC at the moment until we figure out how to
4344 return SYMBOL_NEEDS_FRAME;
4347 /* Print a natural-language description of SYMBOL to STREAM. This
4348 version applies when there is a list of different locations, each
4349 with a specified address range. */
4352 loclist_describe_location (struct symbol *symbol, CORE_ADDR addr,
4353 struct ui_file *stream)
4355 struct dwarf2_loclist_baton *dlbaton
4356 = (struct dwarf2_loclist_baton *) SYMBOL_LOCATION_BATON (symbol);
4357 const gdb_byte *loc_ptr, *buf_end;
4358 struct objfile *objfile = dwarf2_per_cu_objfile (dlbaton->per_cu);
4359 struct gdbarch *gdbarch = get_objfile_arch (objfile);
4360 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4361 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4362 int offset_size = dwarf2_per_cu_offset_size (dlbaton->per_cu);
4363 int signed_addr_p = bfd_get_sign_extend_vma (objfile->obfd);
4364 /* Adjust base_address for relocatable objects. */
4365 CORE_ADDR base_offset = dwarf2_per_cu_text_offset (dlbaton->per_cu);
4366 CORE_ADDR base_address = dlbaton->base_address + base_offset;
4369 loc_ptr = dlbaton->data;
4370 buf_end = dlbaton->data + dlbaton->size;
4372 fprintf_filtered (stream, _("multi-location:\n"));
4374 /* Iterate through locations until we run out. */
4377 CORE_ADDR low = 0, high = 0; /* init for gcc -Wall */
4379 enum debug_loc_kind kind;
4380 const gdb_byte *new_ptr = NULL; /* init for gcc -Wall */
4382 if (dlbaton->from_dwo)
4383 kind = decode_debug_loc_dwo_addresses (dlbaton->per_cu,
4384 loc_ptr, buf_end, &new_ptr,
4385 &low, &high, byte_order);
4387 kind = decode_debug_loc_addresses (loc_ptr, buf_end, &new_ptr,
4389 byte_order, addr_size,
4394 case DEBUG_LOC_END_OF_LIST:
4397 case DEBUG_LOC_BASE_ADDRESS:
4398 base_address = high + base_offset;
4399 fprintf_filtered (stream, _(" Base address %s"),
4400 paddress (gdbarch, base_address));
4402 case DEBUG_LOC_START_END:
4403 case DEBUG_LOC_START_LENGTH:
4405 case DEBUG_LOC_BUFFER_OVERFLOW:
4406 case DEBUG_LOC_INVALID_ENTRY:
4407 error (_("Corrupted DWARF expression for symbol \"%s\"."),
4408 SYMBOL_PRINT_NAME (symbol));
4410 gdb_assert_not_reached ("bad debug_loc_kind");
4413 /* Otherwise, a location expression entry. */
4414 low += base_address;
4415 high += base_address;
4417 low = gdbarch_adjust_dwarf2_addr (gdbarch, low);
4418 high = gdbarch_adjust_dwarf2_addr (gdbarch, high);
4420 length = extract_unsigned_integer (loc_ptr, 2, byte_order);
4423 /* (It would improve readability to print only the minimum
4424 necessary digits of the second number of the range.) */
4425 fprintf_filtered (stream, _(" Range %s-%s: "),
4426 paddress (gdbarch, low), paddress (gdbarch, high));
4428 /* Now describe this particular location. */
4429 locexpr_describe_location_1 (symbol, low, stream, loc_ptr, length,
4430 objfile, addr_size, offset_size,
4433 fprintf_filtered (stream, "\n");
4439 /* Describe the location of SYMBOL as an agent value in VALUE, generating
4440 any necessary bytecode in AX. */
4442 loclist_tracepoint_var_ref (struct symbol *symbol, struct agent_expr *ax,
4443 struct axs_value *value)
4445 struct dwarf2_loclist_baton *dlbaton
4446 = (struct dwarf2_loclist_baton *) SYMBOL_LOCATION_BATON (symbol);
4447 const gdb_byte *data;
4449 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4451 data = dwarf2_find_location_expression (dlbaton, &size, ax->scope);
4453 value->optimized_out = 1;
4455 dwarf2_compile_expr_to_ax (ax, value, addr_size, data, data + size,
4459 /* symbol_computed_ops 'generate_c_location' method. */
4462 loclist_generate_c_location (struct symbol *sym, string_file *stream,
4463 struct gdbarch *gdbarch,
4464 unsigned char *registers_used,
4465 CORE_ADDR pc, const char *result_name)
4467 struct dwarf2_loclist_baton *dlbaton
4468 = (struct dwarf2_loclist_baton *) SYMBOL_LOCATION_BATON (sym);
4469 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4470 const gdb_byte *data;
4473 data = dwarf2_find_location_expression (dlbaton, &size, pc);
4475 error (_("symbol \"%s\" is optimized out"), SYMBOL_NATURAL_NAME (sym));
4477 compile_dwarf_expr_to_c (stream, result_name,
4478 sym, pc, gdbarch, registers_used, addr_size,
4483 /* The set of location functions used with the DWARF-2 expression
4484 evaluator and location lists. */
4485 const struct symbol_computed_ops dwarf2_loclist_funcs = {
4486 loclist_read_variable,
4487 loclist_read_variable_at_entry,
4488 loclist_symbol_needs,
4489 loclist_describe_location,
4490 1, /* location_has_loclist */
4491 loclist_tracepoint_var_ref,
4492 loclist_generate_c_location
4496 _initialize_dwarf2loc (void)
4498 add_setshow_zuinteger_cmd ("entry-values", class_maintenance,
4499 &entry_values_debug,
4500 _("Set entry values and tail call frames "
4502 _("Show entry values and tail call frames "
4504 _("When non-zero, the process of determining "
4505 "parameter values from function entry point "
4506 "and tail call frames will be printed."),
4508 show_entry_values_debug,
4509 &setdebuglist, &showdebuglist);