]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/dwarf2loc.c
export dwarf2_reg_to_regnum_or_error
[thirdparty/binutils-gdb.git] / gdb / dwarf2loc.c
1 /* DWARF 2 location expression support for GDB.
2
3 Copyright (C) 2003-2014 Free Software Foundation, Inc.
4
5 Contributed by Daniel Jacobowitz, MontaVista Software, Inc.
6
7 This file is part of GDB.
8
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.
13
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.
18
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/>. */
21
22 #include "defs.h"
23 #include "ui-out.h"
24 #include "value.h"
25 #include "frame.h"
26 #include "gdbcore.h"
27 #include "target.h"
28 #include "inferior.h"
29 #include "ax.h"
30 #include "ax-gdb.h"
31 #include "regcache.h"
32 #include "objfiles.h"
33 #include "block.h"
34 #include "gdbcmd.h"
35
36 #include "dwarf2.h"
37 #include "dwarf2expr.h"
38 #include "dwarf2loc.h"
39 #include "dwarf2-frame.h"
40
41 extern int dwarf2_always_disassemble;
42
43 static const struct dwarf_expr_context_funcs dwarf_expr_ctx_funcs;
44
45 static struct value *dwarf2_evaluate_loc_desc_full (struct type *type,
46 struct frame_info *frame,
47 const gdb_byte *data,
48 size_t size,
49 struct dwarf2_per_cu_data *per_cu,
50 LONGEST byte_offset);
51
52 /* Until these have formal names, we define these here.
53 ref: http://gcc.gnu.org/wiki/DebugFission
54 Each entry in .debug_loc.dwo begins with a byte that describes the entry,
55 and is then followed by data specific to that entry. */
56
57 enum debug_loc_kind
58 {
59 /* Indicates the end of the list of entries. */
60 DEBUG_LOC_END_OF_LIST = 0,
61
62 /* This is followed by an unsigned LEB128 number that is an index into
63 .debug_addr and specifies the base address for all following entries. */
64 DEBUG_LOC_BASE_ADDRESS = 1,
65
66 /* This is followed by two unsigned LEB128 numbers that are indices into
67 .debug_addr and specify the beginning and ending addresses, and then
68 a normal location expression as in .debug_loc. */
69 DEBUG_LOC_START_END = 2,
70
71 /* This is followed by an unsigned LEB128 number that is an index into
72 .debug_addr and specifies the beginning address, and a 4 byte unsigned
73 number that specifies the length, and then a normal location expression
74 as in .debug_loc. */
75 DEBUG_LOC_START_LENGTH = 3,
76
77 /* An internal value indicating there is insufficient data. */
78 DEBUG_LOC_BUFFER_OVERFLOW = -1,
79
80 /* An internal value indicating an invalid kind of entry was found. */
81 DEBUG_LOC_INVALID_ENTRY = -2
82 };
83
84 /* Helper function which throws an error if a synthetic pointer is
85 invalid. */
86
87 static void
88 invalid_synthetic_pointer (void)
89 {
90 error (_("access outside bounds of object "
91 "referenced via synthetic pointer"));
92 }
93
94 /* Decode the addresses in a non-dwo .debug_loc entry.
95 A pointer to the next byte to examine is returned in *NEW_PTR.
96 The encoded low,high addresses are return in *LOW,*HIGH.
97 The result indicates the kind of entry found. */
98
99 static enum debug_loc_kind
100 decode_debug_loc_addresses (const gdb_byte *loc_ptr, const gdb_byte *buf_end,
101 const gdb_byte **new_ptr,
102 CORE_ADDR *low, CORE_ADDR *high,
103 enum bfd_endian byte_order,
104 unsigned int addr_size,
105 int signed_addr_p)
106 {
107 CORE_ADDR base_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
108
109 if (buf_end - loc_ptr < 2 * addr_size)
110 return DEBUG_LOC_BUFFER_OVERFLOW;
111
112 if (signed_addr_p)
113 *low = extract_signed_integer (loc_ptr, addr_size, byte_order);
114 else
115 *low = extract_unsigned_integer (loc_ptr, addr_size, byte_order);
116 loc_ptr += addr_size;
117
118 if (signed_addr_p)
119 *high = extract_signed_integer (loc_ptr, addr_size, byte_order);
120 else
121 *high = extract_unsigned_integer (loc_ptr, addr_size, byte_order);
122 loc_ptr += addr_size;
123
124 *new_ptr = loc_ptr;
125
126 /* A base-address-selection entry. */
127 if ((*low & base_mask) == base_mask)
128 return DEBUG_LOC_BASE_ADDRESS;
129
130 /* An end-of-list entry. */
131 if (*low == 0 && *high == 0)
132 return DEBUG_LOC_END_OF_LIST;
133
134 return DEBUG_LOC_START_END;
135 }
136
137 /* Decode the addresses in .debug_loc.dwo entry.
138 A pointer to the next byte to examine is returned in *NEW_PTR.
139 The encoded low,high addresses are return in *LOW,*HIGH.
140 The result indicates the kind of entry found. */
141
142 static enum debug_loc_kind
143 decode_debug_loc_dwo_addresses (struct dwarf2_per_cu_data *per_cu,
144 const gdb_byte *loc_ptr,
145 const gdb_byte *buf_end,
146 const gdb_byte **new_ptr,
147 CORE_ADDR *low, CORE_ADDR *high,
148 enum bfd_endian byte_order)
149 {
150 uint64_t low_index, high_index;
151
152 if (loc_ptr == buf_end)
153 return DEBUG_LOC_BUFFER_OVERFLOW;
154
155 switch (*loc_ptr++)
156 {
157 case DEBUG_LOC_END_OF_LIST:
158 *new_ptr = loc_ptr;
159 return DEBUG_LOC_END_OF_LIST;
160 case DEBUG_LOC_BASE_ADDRESS:
161 *low = 0;
162 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &high_index);
163 if (loc_ptr == NULL)
164 return DEBUG_LOC_BUFFER_OVERFLOW;
165 *high = dwarf2_read_addr_index (per_cu, high_index);
166 *new_ptr = loc_ptr;
167 return DEBUG_LOC_BASE_ADDRESS;
168 case DEBUG_LOC_START_END:
169 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &low_index);
170 if (loc_ptr == NULL)
171 return DEBUG_LOC_BUFFER_OVERFLOW;
172 *low = dwarf2_read_addr_index (per_cu, low_index);
173 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &high_index);
174 if (loc_ptr == NULL)
175 return DEBUG_LOC_BUFFER_OVERFLOW;
176 *high = dwarf2_read_addr_index (per_cu, high_index);
177 *new_ptr = loc_ptr;
178 return DEBUG_LOC_START_END;
179 case DEBUG_LOC_START_LENGTH:
180 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &low_index);
181 if (loc_ptr == NULL)
182 return DEBUG_LOC_BUFFER_OVERFLOW;
183 *low = dwarf2_read_addr_index (per_cu, low_index);
184 if (loc_ptr + 4 > buf_end)
185 return DEBUG_LOC_BUFFER_OVERFLOW;
186 *high = *low;
187 *high += extract_unsigned_integer (loc_ptr, 4, byte_order);
188 *new_ptr = loc_ptr + 4;
189 return DEBUG_LOC_START_LENGTH;
190 default:
191 return DEBUG_LOC_INVALID_ENTRY;
192 }
193 }
194
195 /* A function for dealing with location lists. Given a
196 symbol baton (BATON) and a pc value (PC), find the appropriate
197 location expression, set *LOCEXPR_LENGTH, and return a pointer
198 to the beginning of the expression. Returns NULL on failure.
199
200 For now, only return the first matching location expression; there
201 can be more than one in the list. */
202
203 const gdb_byte *
204 dwarf2_find_location_expression (struct dwarf2_loclist_baton *baton,
205 size_t *locexpr_length, CORE_ADDR pc)
206 {
207 struct objfile *objfile = dwarf2_per_cu_objfile (baton->per_cu);
208 struct gdbarch *gdbarch = get_objfile_arch (objfile);
209 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
210 unsigned int addr_size = dwarf2_per_cu_addr_size (baton->per_cu);
211 int signed_addr_p = bfd_get_sign_extend_vma (objfile->obfd);
212 /* Adjust base_address for relocatable objects. */
213 CORE_ADDR base_offset = dwarf2_per_cu_text_offset (baton->per_cu);
214 CORE_ADDR base_address = baton->base_address + base_offset;
215 const gdb_byte *loc_ptr, *buf_end;
216
217 loc_ptr = baton->data;
218 buf_end = baton->data + baton->size;
219
220 while (1)
221 {
222 CORE_ADDR low = 0, high = 0; /* init for gcc -Wall */
223 int length;
224 enum debug_loc_kind kind;
225 const gdb_byte *new_ptr = NULL; /* init for gcc -Wall */
226
227 if (baton->from_dwo)
228 kind = decode_debug_loc_dwo_addresses (baton->per_cu,
229 loc_ptr, buf_end, &new_ptr,
230 &low, &high, byte_order);
231 else
232 kind = decode_debug_loc_addresses (loc_ptr, buf_end, &new_ptr,
233 &low, &high,
234 byte_order, addr_size,
235 signed_addr_p);
236 loc_ptr = new_ptr;
237 switch (kind)
238 {
239 case DEBUG_LOC_END_OF_LIST:
240 *locexpr_length = 0;
241 return NULL;
242 case DEBUG_LOC_BASE_ADDRESS:
243 base_address = high + base_offset;
244 continue;
245 case DEBUG_LOC_START_END:
246 case DEBUG_LOC_START_LENGTH:
247 break;
248 case DEBUG_LOC_BUFFER_OVERFLOW:
249 case DEBUG_LOC_INVALID_ENTRY:
250 error (_("dwarf2_find_location_expression: "
251 "Corrupted DWARF expression."));
252 default:
253 gdb_assert_not_reached ("bad debug_loc_kind");
254 }
255
256 /* Otherwise, a location expression entry.
257 If the entry is from a DWO, don't add base address: the entry is
258 from .debug_addr which has absolute addresses. */
259 if (! baton->from_dwo)
260 {
261 low += base_address;
262 high += base_address;
263 }
264
265 length = extract_unsigned_integer (loc_ptr, 2, byte_order);
266 loc_ptr += 2;
267
268 if (low == high && pc == low)
269 {
270 /* This is entry PC record present only at entry point
271 of a function. Verify it is really the function entry point. */
272
273 const struct block *pc_block = block_for_pc (pc);
274 struct symbol *pc_func = NULL;
275
276 if (pc_block)
277 pc_func = block_linkage_function (pc_block);
278
279 if (pc_func && pc == BLOCK_START (SYMBOL_BLOCK_VALUE (pc_func)))
280 {
281 *locexpr_length = length;
282 return loc_ptr;
283 }
284 }
285
286 if (pc >= low && pc < high)
287 {
288 *locexpr_length = length;
289 return loc_ptr;
290 }
291
292 loc_ptr += length;
293 }
294 }
295
296 /* This is the baton used when performing dwarf2 expression
297 evaluation. */
298 struct dwarf_expr_baton
299 {
300 struct frame_info *frame;
301 struct dwarf2_per_cu_data *per_cu;
302 CORE_ADDR obj_address;
303 };
304
305 /* Helper functions for dwarf2_evaluate_loc_desc. */
306
307 /* Using the frame specified in BATON, return the value of register
308 REGNUM, treated as a pointer. */
309 static CORE_ADDR
310 dwarf_expr_read_addr_from_reg (void *baton, int dwarf_regnum)
311 {
312 struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton;
313 struct gdbarch *gdbarch = get_frame_arch (debaton->frame);
314 int regnum = gdbarch_dwarf2_reg_to_regnum (gdbarch, dwarf_regnum);
315
316 return address_from_register (regnum, debaton->frame);
317 }
318
319 /* Implement struct dwarf_expr_context_funcs' "get_reg_value" callback. */
320
321 static struct value *
322 dwarf_expr_get_reg_value (void *baton, struct type *type, int dwarf_regnum)
323 {
324 struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton;
325 struct gdbarch *gdbarch = get_frame_arch (debaton->frame);
326 int regnum = gdbarch_dwarf2_reg_to_regnum (gdbarch, dwarf_regnum);
327
328 return value_from_register (type, regnum, debaton->frame);
329 }
330
331 /* Read memory at ADDR (length LEN) into BUF. */
332
333 static void
334 dwarf_expr_read_mem (void *baton, gdb_byte *buf, CORE_ADDR addr, size_t len)
335 {
336 read_memory (addr, buf, len);
337 }
338
339 /* Using the frame specified in BATON, find the location expression
340 describing the frame base. Return a pointer to it in START and
341 its length in LENGTH. */
342 static void
343 dwarf_expr_frame_base (void *baton, const gdb_byte **start, size_t * length)
344 {
345 /* FIXME: cagney/2003-03-26: This code should be using
346 get_frame_base_address(), and then implement a dwarf2 specific
347 this_base method. */
348 struct symbol *framefunc;
349 struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton;
350 const struct block *bl = get_frame_block (debaton->frame, NULL);
351
352 if (bl == NULL)
353 error (_("frame address is not available."));
354
355 /* Use block_linkage_function, which returns a real (not inlined)
356 function, instead of get_frame_function, which may return an
357 inlined function. */
358 framefunc = block_linkage_function (bl);
359
360 /* If we found a frame-relative symbol then it was certainly within
361 some function associated with a frame. If we can't find the frame,
362 something has gone wrong. */
363 gdb_assert (framefunc != NULL);
364
365 func_get_frame_base_dwarf_block (framefunc,
366 get_frame_address_in_block (debaton->frame),
367 start, length);
368 }
369
370 /* Implement find_frame_base_location method for LOC_BLOCK functions using
371 DWARF expression for its DW_AT_frame_base. */
372
373 static void
374 locexpr_find_frame_base_location (struct symbol *framefunc, CORE_ADDR pc,
375 const gdb_byte **start, size_t *length)
376 {
377 struct dwarf2_locexpr_baton *symbaton = SYMBOL_LOCATION_BATON (framefunc);
378
379 *length = symbaton->size;
380 *start = symbaton->data;
381 }
382
383 /* Vector for inferior functions as represented by LOC_BLOCK, if the inferior
384 function uses DWARF expression for its DW_AT_frame_base. */
385
386 const struct symbol_block_ops dwarf2_block_frame_base_locexpr_funcs =
387 {
388 locexpr_find_frame_base_location
389 };
390
391 /* Implement find_frame_base_location method for LOC_BLOCK functions using
392 DWARF location list for its DW_AT_frame_base. */
393
394 static void
395 loclist_find_frame_base_location (struct symbol *framefunc, CORE_ADDR pc,
396 const gdb_byte **start, size_t *length)
397 {
398 struct dwarf2_loclist_baton *symbaton = SYMBOL_LOCATION_BATON (framefunc);
399
400 *start = dwarf2_find_location_expression (symbaton, length, pc);
401 }
402
403 /* Vector for inferior functions as represented by LOC_BLOCK, if the inferior
404 function uses DWARF location list for its DW_AT_frame_base. */
405
406 const struct symbol_block_ops dwarf2_block_frame_base_loclist_funcs =
407 {
408 loclist_find_frame_base_location
409 };
410
411 /* See dwarf2loc.h. */
412
413 void
414 func_get_frame_base_dwarf_block (struct symbol *framefunc, CORE_ADDR pc,
415 const gdb_byte **start, size_t *length)
416 {
417 if (SYMBOL_BLOCK_OPS (framefunc) != NULL)
418 {
419 const struct symbol_block_ops *ops_block = SYMBOL_BLOCK_OPS (framefunc);
420
421 ops_block->find_frame_base_location (framefunc, pc, start, length);
422 }
423 else
424 *length = 0;
425
426 if (*length == 0)
427 error (_("Could not find the frame base for \"%s\"."),
428 SYMBOL_NATURAL_NAME (framefunc));
429 }
430
431 /* Helper function for dwarf2_evaluate_loc_desc. Computes the CFA for
432 the frame in BATON. */
433
434 static CORE_ADDR
435 dwarf_expr_frame_cfa (void *baton)
436 {
437 struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton;
438
439 return dwarf2_frame_cfa (debaton->frame);
440 }
441
442 /* Helper function for dwarf2_evaluate_loc_desc. Computes the PC for
443 the frame in BATON. */
444
445 static CORE_ADDR
446 dwarf_expr_frame_pc (void *baton)
447 {
448 struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton;
449
450 return get_frame_address_in_block (debaton->frame);
451 }
452
453 /* Using the objfile specified in BATON, find the address for the
454 current thread's thread-local storage with offset OFFSET. */
455 static CORE_ADDR
456 dwarf_expr_tls_address (void *baton, CORE_ADDR offset)
457 {
458 struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton;
459 struct objfile *objfile = dwarf2_per_cu_objfile (debaton->per_cu);
460
461 return target_translate_tls_address (objfile, offset);
462 }
463
464 /* Call DWARF subroutine from DW_AT_location of DIE at DIE_OFFSET in
465 current CU (as is PER_CU). State of the CTX is not affected by the
466 call and return. */
467
468 static void
469 per_cu_dwarf_call (struct dwarf_expr_context *ctx, cu_offset die_offset,
470 struct dwarf2_per_cu_data *per_cu,
471 CORE_ADDR (*get_frame_pc) (void *baton),
472 void *baton)
473 {
474 struct dwarf2_locexpr_baton block;
475
476 block = dwarf2_fetch_die_loc_cu_off (die_offset, per_cu, get_frame_pc, baton);
477
478 /* DW_OP_call_ref is currently not supported. */
479 gdb_assert (block.per_cu == per_cu);
480
481 dwarf_expr_eval (ctx, block.data, block.size);
482 }
483
484 /* Helper interface of per_cu_dwarf_call for dwarf2_evaluate_loc_desc. */
485
486 static void
487 dwarf_expr_dwarf_call (struct dwarf_expr_context *ctx, cu_offset die_offset)
488 {
489 struct dwarf_expr_baton *debaton = ctx->baton;
490
491 per_cu_dwarf_call (ctx, die_offset, debaton->per_cu,
492 ctx->funcs->get_frame_pc, ctx->baton);
493 }
494
495 /* Callback function for dwarf2_evaluate_loc_desc. */
496
497 static struct type *
498 dwarf_expr_get_base_type (struct dwarf_expr_context *ctx,
499 cu_offset die_offset)
500 {
501 struct dwarf_expr_baton *debaton = ctx->baton;
502
503 return dwarf2_get_die_type (die_offset, debaton->per_cu);
504 }
505
506 /* See dwarf2loc.h. */
507
508 unsigned int entry_values_debug = 0;
509
510 /* Helper to set entry_values_debug. */
511
512 static void
513 show_entry_values_debug (struct ui_file *file, int from_tty,
514 struct cmd_list_element *c, const char *value)
515 {
516 fprintf_filtered (file,
517 _("Entry values and tail call frames debugging is %s.\n"),
518 value);
519 }
520
521 /* Find DW_TAG_GNU_call_site's DW_AT_GNU_call_site_target address.
522 CALLER_FRAME (for registers) can be NULL if it is not known. This function
523 always returns valid address or it throws NO_ENTRY_VALUE_ERROR. */
524
525 static CORE_ADDR
526 call_site_to_target_addr (struct gdbarch *call_site_gdbarch,
527 struct call_site *call_site,
528 struct frame_info *caller_frame)
529 {
530 switch (FIELD_LOC_KIND (call_site->target))
531 {
532 case FIELD_LOC_KIND_DWARF_BLOCK:
533 {
534 struct dwarf2_locexpr_baton *dwarf_block;
535 struct value *val;
536 struct type *caller_core_addr_type;
537 struct gdbarch *caller_arch;
538
539 dwarf_block = FIELD_DWARF_BLOCK (call_site->target);
540 if (dwarf_block == NULL)
541 {
542 struct bound_minimal_symbol msym;
543
544 msym = lookup_minimal_symbol_by_pc (call_site->pc - 1);
545 throw_error (NO_ENTRY_VALUE_ERROR,
546 _("DW_AT_GNU_call_site_target is not specified "
547 "at %s in %s"),
548 paddress (call_site_gdbarch, call_site->pc),
549 (msym.minsym == NULL ? "???"
550 : MSYMBOL_PRINT_NAME (msym.minsym)));
551
552 }
553 if (caller_frame == NULL)
554 {
555 struct bound_minimal_symbol msym;
556
557 msym = lookup_minimal_symbol_by_pc (call_site->pc - 1);
558 throw_error (NO_ENTRY_VALUE_ERROR,
559 _("DW_AT_GNU_call_site_target DWARF block resolving "
560 "requires known frame which is currently not "
561 "available at %s in %s"),
562 paddress (call_site_gdbarch, call_site->pc),
563 (msym.minsym == NULL ? "???"
564 : MSYMBOL_PRINT_NAME (msym.minsym)));
565
566 }
567 caller_arch = get_frame_arch (caller_frame);
568 caller_core_addr_type = builtin_type (caller_arch)->builtin_func_ptr;
569 val = dwarf2_evaluate_loc_desc (caller_core_addr_type, caller_frame,
570 dwarf_block->data, dwarf_block->size,
571 dwarf_block->per_cu);
572 /* DW_AT_GNU_call_site_target is a DWARF expression, not a DWARF
573 location. */
574 if (VALUE_LVAL (val) == lval_memory)
575 return value_address (val);
576 else
577 return value_as_address (val);
578 }
579
580 case FIELD_LOC_KIND_PHYSNAME:
581 {
582 const char *physname;
583 struct bound_minimal_symbol msym;
584
585 physname = FIELD_STATIC_PHYSNAME (call_site->target);
586
587 /* Handle both the mangled and demangled PHYSNAME. */
588 msym = lookup_minimal_symbol (physname, NULL, NULL);
589 if (msym.minsym == NULL)
590 {
591 msym = lookup_minimal_symbol_by_pc (call_site->pc - 1);
592 throw_error (NO_ENTRY_VALUE_ERROR,
593 _("Cannot find function \"%s\" for a call site target "
594 "at %s in %s"),
595 physname, paddress (call_site_gdbarch, call_site->pc),
596 (msym.minsym == NULL ? "???"
597 : MSYMBOL_PRINT_NAME (msym.minsym)));
598
599 }
600 return BMSYMBOL_VALUE_ADDRESS (msym);
601 }
602
603 case FIELD_LOC_KIND_PHYSADDR:
604 return FIELD_STATIC_PHYSADDR (call_site->target);
605
606 default:
607 internal_error (__FILE__, __LINE__, _("invalid call site target kind"));
608 }
609 }
610
611 /* Convert function entry point exact address ADDR to the function which is
612 compliant with TAIL_CALL_LIST_COMPLETE condition. Throw
613 NO_ENTRY_VALUE_ERROR otherwise. */
614
615 static struct symbol *
616 func_addr_to_tail_call_list (struct gdbarch *gdbarch, CORE_ADDR addr)
617 {
618 struct symbol *sym = find_pc_function (addr);
619 struct type *type;
620
621 if (sym == NULL || BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) != addr)
622 throw_error (NO_ENTRY_VALUE_ERROR,
623 _("DW_TAG_GNU_call_site resolving failed to find function "
624 "name for address %s"),
625 paddress (gdbarch, addr));
626
627 type = SYMBOL_TYPE (sym);
628 gdb_assert (TYPE_CODE (type) == TYPE_CODE_FUNC);
629 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_FUNC);
630
631 return sym;
632 }
633
634 /* Verify function with entry point exact address ADDR can never call itself
635 via its tail calls (incl. transitively). Throw NO_ENTRY_VALUE_ERROR if it
636 can call itself via tail calls.
637
638 If a funtion can tail call itself its entry value based parameters are
639 unreliable. There is no verification whether the value of some/all
640 parameters is unchanged through the self tail call, we expect if there is
641 a self tail call all the parameters can be modified. */
642
643 static void
644 func_verify_no_selftailcall (struct gdbarch *gdbarch, CORE_ADDR verify_addr)
645 {
646 struct obstack addr_obstack;
647 struct cleanup *old_chain;
648 CORE_ADDR addr;
649
650 /* Track here CORE_ADDRs which were already visited. */
651 htab_t addr_hash;
652
653 /* The verification is completely unordered. Track here function addresses
654 which still need to be iterated. */
655 VEC (CORE_ADDR) *todo = NULL;
656
657 obstack_init (&addr_obstack);
658 old_chain = make_cleanup_obstack_free (&addr_obstack);
659 addr_hash = htab_create_alloc_ex (64, core_addr_hash, core_addr_eq, NULL,
660 &addr_obstack, hashtab_obstack_allocate,
661 NULL);
662 make_cleanup_htab_delete (addr_hash);
663
664 make_cleanup (VEC_cleanup (CORE_ADDR), &todo);
665
666 VEC_safe_push (CORE_ADDR, todo, verify_addr);
667 while (!VEC_empty (CORE_ADDR, todo))
668 {
669 struct symbol *func_sym;
670 struct call_site *call_site;
671
672 addr = VEC_pop (CORE_ADDR, todo);
673
674 func_sym = func_addr_to_tail_call_list (gdbarch, addr);
675
676 for (call_site = TYPE_TAIL_CALL_LIST (SYMBOL_TYPE (func_sym));
677 call_site; call_site = call_site->tail_call_next)
678 {
679 CORE_ADDR target_addr;
680 void **slot;
681
682 /* CALLER_FRAME with registers is not available for tail-call jumped
683 frames. */
684 target_addr = call_site_to_target_addr (gdbarch, call_site, NULL);
685
686 if (target_addr == verify_addr)
687 {
688 struct bound_minimal_symbol msym;
689
690 msym = lookup_minimal_symbol_by_pc (verify_addr);
691 throw_error (NO_ENTRY_VALUE_ERROR,
692 _("DW_OP_GNU_entry_value resolving has found "
693 "function \"%s\" at %s can call itself via tail "
694 "calls"),
695 (msym.minsym == NULL ? "???"
696 : MSYMBOL_PRINT_NAME (msym.minsym)),
697 paddress (gdbarch, verify_addr));
698 }
699
700 slot = htab_find_slot (addr_hash, &target_addr, INSERT);
701 if (*slot == NULL)
702 {
703 *slot = obstack_copy (&addr_obstack, &target_addr,
704 sizeof (target_addr));
705 VEC_safe_push (CORE_ADDR, todo, target_addr);
706 }
707 }
708 }
709
710 do_cleanups (old_chain);
711 }
712
713 /* Print user readable form of CALL_SITE->PC to gdb_stdlog. Used only for
714 ENTRY_VALUES_DEBUG. */
715
716 static void
717 tailcall_dump (struct gdbarch *gdbarch, const struct call_site *call_site)
718 {
719 CORE_ADDR addr = call_site->pc;
720 struct bound_minimal_symbol msym = lookup_minimal_symbol_by_pc (addr - 1);
721
722 fprintf_unfiltered (gdb_stdlog, " %s(%s)", paddress (gdbarch, addr),
723 (msym.minsym == NULL ? "???"
724 : MSYMBOL_PRINT_NAME (msym.minsym)));
725
726 }
727
728 /* vec.h needs single word type name, typedef it. */
729 typedef struct call_site *call_sitep;
730
731 /* Define VEC (call_sitep) functions. */
732 DEF_VEC_P (call_sitep);
733
734 /* Intersect RESULTP with CHAIN to keep RESULTP unambiguous, keep in RESULTP
735 only top callers and bottom callees which are present in both. GDBARCH is
736 used only for ENTRY_VALUES_DEBUG. RESULTP is NULL after return if there are
737 no remaining possibilities to provide unambiguous non-trivial result.
738 RESULTP should point to NULL on the first (initialization) call. Caller is
739 responsible for xfree of any RESULTP data. */
740
741 static void
742 chain_candidate (struct gdbarch *gdbarch, struct call_site_chain **resultp,
743 VEC (call_sitep) *chain)
744 {
745 struct call_site_chain *result = *resultp;
746 long length = VEC_length (call_sitep, chain);
747 int callers, callees, idx;
748
749 if (result == NULL)
750 {
751 /* Create the initial chain containing all the passed PCs. */
752
753 result = xmalloc (sizeof (*result) + sizeof (*result->call_site)
754 * (length - 1));
755 result->length = length;
756 result->callers = result->callees = length;
757 if (!VEC_empty (call_sitep, chain))
758 memcpy (result->call_site, VEC_address (call_sitep, chain),
759 sizeof (*result->call_site) * length);
760 *resultp = result;
761
762 if (entry_values_debug)
763 {
764 fprintf_unfiltered (gdb_stdlog, "tailcall: initial:");
765 for (idx = 0; idx < length; idx++)
766 tailcall_dump (gdbarch, result->call_site[idx]);
767 fputc_unfiltered ('\n', gdb_stdlog);
768 }
769
770 return;
771 }
772
773 if (entry_values_debug)
774 {
775 fprintf_unfiltered (gdb_stdlog, "tailcall: compare:");
776 for (idx = 0; idx < length; idx++)
777 tailcall_dump (gdbarch, VEC_index (call_sitep, chain, idx));
778 fputc_unfiltered ('\n', gdb_stdlog);
779 }
780
781 /* Intersect callers. */
782
783 callers = min (result->callers, length);
784 for (idx = 0; idx < callers; idx++)
785 if (result->call_site[idx] != VEC_index (call_sitep, chain, idx))
786 {
787 result->callers = idx;
788 break;
789 }
790
791 /* Intersect callees. */
792
793 callees = min (result->callees, length);
794 for (idx = 0; idx < callees; idx++)
795 if (result->call_site[result->length - 1 - idx]
796 != VEC_index (call_sitep, chain, length - 1 - idx))
797 {
798 result->callees = idx;
799 break;
800 }
801
802 if (entry_values_debug)
803 {
804 fprintf_unfiltered (gdb_stdlog, "tailcall: reduced:");
805 for (idx = 0; idx < result->callers; idx++)
806 tailcall_dump (gdbarch, result->call_site[idx]);
807 fputs_unfiltered (" |", gdb_stdlog);
808 for (idx = 0; idx < result->callees; idx++)
809 tailcall_dump (gdbarch, result->call_site[result->length
810 - result->callees + idx]);
811 fputc_unfiltered ('\n', gdb_stdlog);
812 }
813
814 if (result->callers == 0 && result->callees == 0)
815 {
816 /* There are no common callers or callees. It could be also a direct
817 call (which has length 0) with ambiguous possibility of an indirect
818 call - CALLERS == CALLEES == 0 is valid during the first allocation
819 but any subsequence processing of such entry means ambiguity. */
820 xfree (result);
821 *resultp = NULL;
822 return;
823 }
824
825 /* See call_site_find_chain_1 why there is no way to reach the bottom callee
826 PC again. In such case there must be two different code paths to reach
827 it, therefore some of the former determined intermediate PCs must differ
828 and the unambiguous chain gets shortened. */
829 gdb_assert (result->callers + result->callees < result->length);
830 }
831
832 /* Create and return call_site_chain for CALLER_PC and CALLEE_PC. All the
833 assumed frames between them use GDBARCH. Use depth first search so we can
834 keep single CHAIN of call_site's back to CALLER_PC. Function recursion
835 would have needless GDB stack overhead. Caller is responsible for xfree of
836 the returned result. Any unreliability results in thrown
837 NO_ENTRY_VALUE_ERROR. */
838
839 static struct call_site_chain *
840 call_site_find_chain_1 (struct gdbarch *gdbarch, CORE_ADDR caller_pc,
841 CORE_ADDR callee_pc)
842 {
843 CORE_ADDR save_callee_pc = callee_pc;
844 struct obstack addr_obstack;
845 struct cleanup *back_to_retval, *back_to_workdata;
846 struct call_site_chain *retval = NULL;
847 struct call_site *call_site;
848
849 /* Mark CALL_SITEs so we do not visit the same ones twice. */
850 htab_t addr_hash;
851
852 /* CHAIN contains only the intermediate CALL_SITEs. Neither CALLER_PC's
853 call_site nor any possible call_site at CALLEE_PC's function is there.
854 Any CALL_SITE in CHAIN will be iterated to its siblings - via
855 TAIL_CALL_NEXT. This is inappropriate for CALLER_PC's call_site. */
856 VEC (call_sitep) *chain = NULL;
857
858 /* We are not interested in the specific PC inside the callee function. */
859 callee_pc = get_pc_function_start (callee_pc);
860 if (callee_pc == 0)
861 throw_error (NO_ENTRY_VALUE_ERROR, _("Unable to find function for PC %s"),
862 paddress (gdbarch, save_callee_pc));
863
864 back_to_retval = make_cleanup (free_current_contents, &retval);
865
866 obstack_init (&addr_obstack);
867 back_to_workdata = make_cleanup_obstack_free (&addr_obstack);
868 addr_hash = htab_create_alloc_ex (64, core_addr_hash, core_addr_eq, NULL,
869 &addr_obstack, hashtab_obstack_allocate,
870 NULL);
871 make_cleanup_htab_delete (addr_hash);
872
873 make_cleanup (VEC_cleanup (call_sitep), &chain);
874
875 /* Do not push CALL_SITE to CHAIN. Push there only the first tail call site
876 at the target's function. All the possible tail call sites in the
877 target's function will get iterated as already pushed into CHAIN via their
878 TAIL_CALL_NEXT. */
879 call_site = call_site_for_pc (gdbarch, caller_pc);
880
881 while (call_site)
882 {
883 CORE_ADDR target_func_addr;
884 struct call_site *target_call_site;
885
886 /* CALLER_FRAME with registers is not available for tail-call jumped
887 frames. */
888 target_func_addr = call_site_to_target_addr (gdbarch, call_site, NULL);
889
890 if (target_func_addr == callee_pc)
891 {
892 chain_candidate (gdbarch, &retval, chain);
893 if (retval == NULL)
894 break;
895
896 /* There is no way to reach CALLEE_PC again as we would prevent
897 entering it twice as being already marked in ADDR_HASH. */
898 target_call_site = NULL;
899 }
900 else
901 {
902 struct symbol *target_func;
903
904 target_func = func_addr_to_tail_call_list (gdbarch, target_func_addr);
905 target_call_site = TYPE_TAIL_CALL_LIST (SYMBOL_TYPE (target_func));
906 }
907
908 do
909 {
910 /* Attempt to visit TARGET_CALL_SITE. */
911
912 if (target_call_site)
913 {
914 void **slot;
915
916 slot = htab_find_slot (addr_hash, &target_call_site->pc, INSERT);
917 if (*slot == NULL)
918 {
919 /* Successfully entered TARGET_CALL_SITE. */
920
921 *slot = &target_call_site->pc;
922 VEC_safe_push (call_sitep, chain, target_call_site);
923 break;
924 }
925 }
926
927 /* Backtrack (without revisiting the originating call_site). Try the
928 callers's sibling; if there isn't any try the callers's callers's
929 sibling etc. */
930
931 target_call_site = NULL;
932 while (!VEC_empty (call_sitep, chain))
933 {
934 call_site = VEC_pop (call_sitep, chain);
935
936 gdb_assert (htab_find_slot (addr_hash, &call_site->pc,
937 NO_INSERT) != NULL);
938 htab_remove_elt (addr_hash, &call_site->pc);
939
940 target_call_site = call_site->tail_call_next;
941 if (target_call_site)
942 break;
943 }
944 }
945 while (target_call_site);
946
947 if (VEC_empty (call_sitep, chain))
948 call_site = NULL;
949 else
950 call_site = VEC_last (call_sitep, chain);
951 }
952
953 if (retval == NULL)
954 {
955 struct bound_minimal_symbol msym_caller, msym_callee;
956
957 msym_caller = lookup_minimal_symbol_by_pc (caller_pc);
958 msym_callee = lookup_minimal_symbol_by_pc (callee_pc);
959 throw_error (NO_ENTRY_VALUE_ERROR,
960 _("There are no unambiguously determinable intermediate "
961 "callers or callees between caller function \"%s\" at %s "
962 "and callee function \"%s\" at %s"),
963 (msym_caller.minsym == NULL
964 ? "???" : MSYMBOL_PRINT_NAME (msym_caller.minsym)),
965 paddress (gdbarch, caller_pc),
966 (msym_callee.minsym == NULL
967 ? "???" : MSYMBOL_PRINT_NAME (msym_callee.minsym)),
968 paddress (gdbarch, callee_pc));
969 }
970
971 do_cleanups (back_to_workdata);
972 discard_cleanups (back_to_retval);
973 return retval;
974 }
975
976 /* Create and return call_site_chain for CALLER_PC and CALLEE_PC. All the
977 assumed frames between them use GDBARCH. If valid call_site_chain cannot be
978 constructed return NULL. Caller is responsible for xfree of the returned
979 result. */
980
981 struct call_site_chain *
982 call_site_find_chain (struct gdbarch *gdbarch, CORE_ADDR caller_pc,
983 CORE_ADDR callee_pc)
984 {
985 volatile struct gdb_exception e;
986 struct call_site_chain *retval = NULL;
987
988 TRY_CATCH (e, RETURN_MASK_ERROR)
989 {
990 retval = call_site_find_chain_1 (gdbarch, caller_pc, callee_pc);
991 }
992 if (e.reason < 0)
993 {
994 if (e.error == NO_ENTRY_VALUE_ERROR)
995 {
996 if (entry_values_debug)
997 exception_print (gdb_stdout, e);
998
999 return NULL;
1000 }
1001 else
1002 throw_exception (e);
1003 }
1004 return retval;
1005 }
1006
1007 /* Return 1 if KIND and KIND_U match PARAMETER. Return 0 otherwise. */
1008
1009 static int
1010 call_site_parameter_matches (struct call_site_parameter *parameter,
1011 enum call_site_parameter_kind kind,
1012 union call_site_parameter_u kind_u)
1013 {
1014 if (kind == parameter->kind)
1015 switch (kind)
1016 {
1017 case CALL_SITE_PARAMETER_DWARF_REG:
1018 return kind_u.dwarf_reg == parameter->u.dwarf_reg;
1019 case CALL_SITE_PARAMETER_FB_OFFSET:
1020 return kind_u.fb_offset == parameter->u.fb_offset;
1021 case CALL_SITE_PARAMETER_PARAM_OFFSET:
1022 return kind_u.param_offset.cu_off == parameter->u.param_offset.cu_off;
1023 }
1024 return 0;
1025 }
1026
1027 /* Fetch call_site_parameter from caller matching KIND and KIND_U.
1028 FRAME is for callee.
1029
1030 Function always returns non-NULL, it throws NO_ENTRY_VALUE_ERROR
1031 otherwise. */
1032
1033 static struct call_site_parameter *
1034 dwarf_expr_reg_to_entry_parameter (struct frame_info *frame,
1035 enum call_site_parameter_kind kind,
1036 union call_site_parameter_u kind_u,
1037 struct dwarf2_per_cu_data **per_cu_return)
1038 {
1039 CORE_ADDR func_addr, caller_pc;
1040 struct gdbarch *gdbarch;
1041 struct frame_info *caller_frame;
1042 struct call_site *call_site;
1043 int iparams;
1044 /* Initialize it just to avoid a GCC false warning. */
1045 struct call_site_parameter *parameter = NULL;
1046 CORE_ADDR target_addr;
1047
1048 while (get_frame_type (frame) == INLINE_FRAME)
1049 {
1050 frame = get_prev_frame (frame);
1051 gdb_assert (frame != NULL);
1052 }
1053
1054 func_addr = get_frame_func (frame);
1055 gdbarch = get_frame_arch (frame);
1056 caller_frame = get_prev_frame (frame);
1057 if (gdbarch != frame_unwind_arch (frame))
1058 {
1059 struct bound_minimal_symbol msym
1060 = lookup_minimal_symbol_by_pc (func_addr);
1061 struct gdbarch *caller_gdbarch = frame_unwind_arch (frame);
1062
1063 throw_error (NO_ENTRY_VALUE_ERROR,
1064 _("DW_OP_GNU_entry_value resolving callee gdbarch %s "
1065 "(of %s (%s)) does not match caller gdbarch %s"),
1066 gdbarch_bfd_arch_info (gdbarch)->printable_name,
1067 paddress (gdbarch, func_addr),
1068 (msym.minsym == NULL ? "???"
1069 : MSYMBOL_PRINT_NAME (msym.minsym)),
1070 gdbarch_bfd_arch_info (caller_gdbarch)->printable_name);
1071 }
1072
1073 if (caller_frame == NULL)
1074 {
1075 struct bound_minimal_symbol msym
1076 = lookup_minimal_symbol_by_pc (func_addr);
1077
1078 throw_error (NO_ENTRY_VALUE_ERROR, _("DW_OP_GNU_entry_value resolving "
1079 "requires caller of %s (%s)"),
1080 paddress (gdbarch, func_addr),
1081 (msym.minsym == NULL ? "???"
1082 : MSYMBOL_PRINT_NAME (msym.minsym)));
1083 }
1084 caller_pc = get_frame_pc (caller_frame);
1085 call_site = call_site_for_pc (gdbarch, caller_pc);
1086
1087 target_addr = call_site_to_target_addr (gdbarch, call_site, caller_frame);
1088 if (target_addr != func_addr)
1089 {
1090 struct minimal_symbol *target_msym, *func_msym;
1091
1092 target_msym = lookup_minimal_symbol_by_pc (target_addr).minsym;
1093 func_msym = lookup_minimal_symbol_by_pc (func_addr).minsym;
1094 throw_error (NO_ENTRY_VALUE_ERROR,
1095 _("DW_OP_GNU_entry_value resolving expects callee %s at %s "
1096 "but the called frame is for %s at %s"),
1097 (target_msym == NULL ? "???"
1098 : MSYMBOL_PRINT_NAME (target_msym)),
1099 paddress (gdbarch, target_addr),
1100 func_msym == NULL ? "???" : MSYMBOL_PRINT_NAME (func_msym),
1101 paddress (gdbarch, func_addr));
1102 }
1103
1104 /* No entry value based parameters would be reliable if this function can
1105 call itself via tail calls. */
1106 func_verify_no_selftailcall (gdbarch, func_addr);
1107
1108 for (iparams = 0; iparams < call_site->parameter_count; iparams++)
1109 {
1110 parameter = &call_site->parameter[iparams];
1111 if (call_site_parameter_matches (parameter, kind, kind_u))
1112 break;
1113 }
1114 if (iparams == call_site->parameter_count)
1115 {
1116 struct minimal_symbol *msym
1117 = lookup_minimal_symbol_by_pc (caller_pc).minsym;
1118
1119 /* DW_TAG_GNU_call_site_parameter will be missing just if GCC could not
1120 determine its value. */
1121 throw_error (NO_ENTRY_VALUE_ERROR, _("Cannot find matching parameter "
1122 "at DW_TAG_GNU_call_site %s at %s"),
1123 paddress (gdbarch, caller_pc),
1124 msym == NULL ? "???" : MSYMBOL_PRINT_NAME (msym));
1125 }
1126
1127 *per_cu_return = call_site->per_cu;
1128 return parameter;
1129 }
1130
1131 /* Return value for PARAMETER matching DEREF_SIZE. If DEREF_SIZE is -1, return
1132 the normal DW_AT_GNU_call_site_value block. Otherwise return the
1133 DW_AT_GNU_call_site_data_value (dereferenced) block.
1134
1135 TYPE and CALLER_FRAME specify how to evaluate the DWARF block into returned
1136 struct value.
1137
1138 Function always returns non-NULL, non-optimized out value. It throws
1139 NO_ENTRY_VALUE_ERROR if it cannot resolve the value for any reason. */
1140
1141 static struct value *
1142 dwarf_entry_parameter_to_value (struct call_site_parameter *parameter,
1143 CORE_ADDR deref_size, struct type *type,
1144 struct frame_info *caller_frame,
1145 struct dwarf2_per_cu_data *per_cu)
1146 {
1147 const gdb_byte *data_src;
1148 gdb_byte *data;
1149 size_t size;
1150
1151 data_src = deref_size == -1 ? parameter->value : parameter->data_value;
1152 size = deref_size == -1 ? parameter->value_size : parameter->data_value_size;
1153
1154 /* DEREF_SIZE size is not verified here. */
1155 if (data_src == NULL)
1156 throw_error (NO_ENTRY_VALUE_ERROR,
1157 _("Cannot resolve DW_AT_GNU_call_site_data_value"));
1158
1159 /* DW_AT_GNU_call_site_value is a DWARF expression, not a DWARF
1160 location. Postprocessing of DWARF_VALUE_MEMORY would lose the type from
1161 DWARF block. */
1162 data = alloca (size + 1);
1163 memcpy (data, data_src, size);
1164 data[size] = DW_OP_stack_value;
1165
1166 return dwarf2_evaluate_loc_desc (type, caller_frame, data, size + 1, per_cu);
1167 }
1168
1169 /* Execute DWARF block of call_site_parameter which matches KIND and KIND_U.
1170 Choose DEREF_SIZE value of that parameter. Search caller of the CTX's
1171 frame. CTX must be of dwarf_expr_ctx_funcs kind.
1172
1173 The CTX caller can be from a different CU - per_cu_dwarf_call implementation
1174 can be more simple as it does not support cross-CU DWARF executions. */
1175
1176 static void
1177 dwarf_expr_push_dwarf_reg_entry_value (struct dwarf_expr_context *ctx,
1178 enum call_site_parameter_kind kind,
1179 union call_site_parameter_u kind_u,
1180 int deref_size)
1181 {
1182 struct dwarf_expr_baton *debaton;
1183 struct frame_info *frame, *caller_frame;
1184 struct dwarf2_per_cu_data *caller_per_cu;
1185 struct dwarf_expr_baton baton_local;
1186 struct dwarf_expr_context saved_ctx;
1187 struct call_site_parameter *parameter;
1188 const gdb_byte *data_src;
1189 size_t size;
1190
1191 gdb_assert (ctx->funcs == &dwarf_expr_ctx_funcs);
1192 debaton = ctx->baton;
1193 frame = debaton->frame;
1194 caller_frame = get_prev_frame (frame);
1195
1196 parameter = dwarf_expr_reg_to_entry_parameter (frame, kind, kind_u,
1197 &caller_per_cu);
1198 data_src = deref_size == -1 ? parameter->value : parameter->data_value;
1199 size = deref_size == -1 ? parameter->value_size : parameter->data_value_size;
1200
1201 /* DEREF_SIZE size is not verified here. */
1202 if (data_src == NULL)
1203 throw_error (NO_ENTRY_VALUE_ERROR,
1204 _("Cannot resolve DW_AT_GNU_call_site_data_value"));
1205
1206 baton_local.frame = caller_frame;
1207 baton_local.per_cu = caller_per_cu;
1208 baton_local.obj_address = 0;
1209
1210 saved_ctx.gdbarch = ctx->gdbarch;
1211 saved_ctx.addr_size = ctx->addr_size;
1212 saved_ctx.offset = ctx->offset;
1213 saved_ctx.baton = ctx->baton;
1214 ctx->gdbarch = get_objfile_arch (dwarf2_per_cu_objfile (baton_local.per_cu));
1215 ctx->addr_size = dwarf2_per_cu_addr_size (baton_local.per_cu);
1216 ctx->offset = dwarf2_per_cu_text_offset (baton_local.per_cu);
1217 ctx->baton = &baton_local;
1218
1219 dwarf_expr_eval (ctx, data_src, size);
1220
1221 ctx->gdbarch = saved_ctx.gdbarch;
1222 ctx->addr_size = saved_ctx.addr_size;
1223 ctx->offset = saved_ctx.offset;
1224 ctx->baton = saved_ctx.baton;
1225 }
1226
1227 /* Callback function for dwarf2_evaluate_loc_desc.
1228 Fetch the address indexed by DW_OP_GNU_addr_index. */
1229
1230 static CORE_ADDR
1231 dwarf_expr_get_addr_index (void *baton, unsigned int index)
1232 {
1233 struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton;
1234
1235 return dwarf2_read_addr_index (debaton->per_cu, index);
1236 }
1237
1238 /* Callback function for get_object_address. Return the address of the VLA
1239 object. */
1240
1241 static CORE_ADDR
1242 dwarf_expr_get_obj_addr (void *baton)
1243 {
1244 struct dwarf_expr_baton *debaton = baton;
1245
1246 gdb_assert (debaton != NULL);
1247
1248 if (debaton->obj_address == 0)
1249 error (_("Location address is not set."));
1250
1251 return debaton->obj_address;
1252 }
1253
1254 /* VALUE must be of type lval_computed with entry_data_value_funcs. Perform
1255 the indirect method on it, that is use its stored target value, the sole
1256 purpose of entry_data_value_funcs.. */
1257
1258 static struct value *
1259 entry_data_value_coerce_ref (const struct value *value)
1260 {
1261 struct type *checked_type = check_typedef (value_type (value));
1262 struct value *target_val;
1263
1264 if (TYPE_CODE (checked_type) != TYPE_CODE_REF)
1265 return NULL;
1266
1267 target_val = value_computed_closure (value);
1268 value_incref (target_val);
1269 return target_val;
1270 }
1271
1272 /* Implement copy_closure. */
1273
1274 static void *
1275 entry_data_value_copy_closure (const struct value *v)
1276 {
1277 struct value *target_val = value_computed_closure (v);
1278
1279 value_incref (target_val);
1280 return target_val;
1281 }
1282
1283 /* Implement free_closure. */
1284
1285 static void
1286 entry_data_value_free_closure (struct value *v)
1287 {
1288 struct value *target_val = value_computed_closure (v);
1289
1290 value_free (target_val);
1291 }
1292
1293 /* Vector for methods for an entry value reference where the referenced value
1294 is stored in the caller. On the first dereference use
1295 DW_AT_GNU_call_site_data_value in the caller. */
1296
1297 static const struct lval_funcs entry_data_value_funcs =
1298 {
1299 NULL, /* read */
1300 NULL, /* write */
1301 NULL, /* indirect */
1302 entry_data_value_coerce_ref,
1303 NULL, /* check_synthetic_pointer */
1304 entry_data_value_copy_closure,
1305 entry_data_value_free_closure
1306 };
1307
1308 /* Read parameter of TYPE at (callee) FRAME's function entry. KIND and KIND_U
1309 are used to match DW_AT_location at the caller's
1310 DW_TAG_GNU_call_site_parameter.
1311
1312 Function always returns non-NULL value. It throws NO_ENTRY_VALUE_ERROR if it
1313 cannot resolve the parameter for any reason. */
1314
1315 static struct value *
1316 value_of_dwarf_reg_entry (struct type *type, struct frame_info *frame,
1317 enum call_site_parameter_kind kind,
1318 union call_site_parameter_u kind_u)
1319 {
1320 struct type *checked_type = check_typedef (type);
1321 struct type *target_type = TYPE_TARGET_TYPE (checked_type);
1322 struct frame_info *caller_frame = get_prev_frame (frame);
1323 struct value *outer_val, *target_val, *val;
1324 struct call_site_parameter *parameter;
1325 struct dwarf2_per_cu_data *caller_per_cu;
1326
1327 parameter = dwarf_expr_reg_to_entry_parameter (frame, kind, kind_u,
1328 &caller_per_cu);
1329
1330 outer_val = dwarf_entry_parameter_to_value (parameter, -1 /* deref_size */,
1331 type, caller_frame,
1332 caller_per_cu);
1333
1334 /* Check if DW_AT_GNU_call_site_data_value cannot be used. If it should be
1335 used and it is not available do not fall back to OUTER_VAL - dereferencing
1336 TYPE_CODE_REF with non-entry data value would give current value - not the
1337 entry value. */
1338
1339 if (TYPE_CODE (checked_type) != TYPE_CODE_REF
1340 || TYPE_TARGET_TYPE (checked_type) == NULL)
1341 return outer_val;
1342
1343 target_val = dwarf_entry_parameter_to_value (parameter,
1344 TYPE_LENGTH (target_type),
1345 target_type, caller_frame,
1346 caller_per_cu);
1347
1348 release_value (target_val);
1349 val = allocate_computed_value (type, &entry_data_value_funcs,
1350 target_val /* closure */);
1351
1352 /* Copy the referencing pointer to the new computed value. */
1353 memcpy (value_contents_raw (val), value_contents_raw (outer_val),
1354 TYPE_LENGTH (checked_type));
1355 set_value_lazy (val, 0);
1356
1357 return val;
1358 }
1359
1360 /* Read parameter of TYPE at (callee) FRAME's function entry. DATA and
1361 SIZE are DWARF block used to match DW_AT_location at the caller's
1362 DW_TAG_GNU_call_site_parameter.
1363
1364 Function always returns non-NULL value. It throws NO_ENTRY_VALUE_ERROR if it
1365 cannot resolve the parameter for any reason. */
1366
1367 static struct value *
1368 value_of_dwarf_block_entry (struct type *type, struct frame_info *frame,
1369 const gdb_byte *block, size_t block_len)
1370 {
1371 union call_site_parameter_u kind_u;
1372
1373 kind_u.dwarf_reg = dwarf_block_to_dwarf_reg (block, block + block_len);
1374 if (kind_u.dwarf_reg != -1)
1375 return value_of_dwarf_reg_entry (type, frame, CALL_SITE_PARAMETER_DWARF_REG,
1376 kind_u);
1377
1378 if (dwarf_block_to_fb_offset (block, block + block_len, &kind_u.fb_offset))
1379 return value_of_dwarf_reg_entry (type, frame, CALL_SITE_PARAMETER_FB_OFFSET,
1380 kind_u);
1381
1382 /* This can normally happen - throw NO_ENTRY_VALUE_ERROR to get the message
1383 suppressed during normal operation. The expression can be arbitrary if
1384 there is no caller-callee entry value binding expected. */
1385 throw_error (NO_ENTRY_VALUE_ERROR,
1386 _("DWARF-2 expression error: DW_OP_GNU_entry_value is supported "
1387 "only for single DW_OP_reg* or for DW_OP_fbreg(*)"));
1388 }
1389
1390 struct piece_closure
1391 {
1392 /* Reference count. */
1393 int refc;
1394
1395 /* The CU from which this closure's expression came. */
1396 struct dwarf2_per_cu_data *per_cu;
1397
1398 /* The number of pieces used to describe this variable. */
1399 int n_pieces;
1400
1401 /* The target address size, used only for DWARF_VALUE_STACK. */
1402 int addr_size;
1403
1404 /* The pieces themselves. */
1405 struct dwarf_expr_piece *pieces;
1406 };
1407
1408 /* Allocate a closure for a value formed from separately-described
1409 PIECES. */
1410
1411 static struct piece_closure *
1412 allocate_piece_closure (struct dwarf2_per_cu_data *per_cu,
1413 int n_pieces, struct dwarf_expr_piece *pieces,
1414 int addr_size)
1415 {
1416 struct piece_closure *c = XCNEW (struct piece_closure);
1417 int i;
1418
1419 c->refc = 1;
1420 c->per_cu = per_cu;
1421 c->n_pieces = n_pieces;
1422 c->addr_size = addr_size;
1423 c->pieces = XCNEWVEC (struct dwarf_expr_piece, n_pieces);
1424
1425 memcpy (c->pieces, pieces, n_pieces * sizeof (struct dwarf_expr_piece));
1426 for (i = 0; i < n_pieces; ++i)
1427 if (c->pieces[i].location == DWARF_VALUE_STACK)
1428 value_incref (c->pieces[i].v.value);
1429
1430 return c;
1431 }
1432
1433 /* The lowest-level function to extract bits from a byte buffer.
1434 SOURCE is the buffer. It is updated if we read to the end of a
1435 byte.
1436 SOURCE_OFFSET_BITS is the offset of the first bit to read. It is
1437 updated to reflect the number of bits actually read.
1438 NBITS is the number of bits we want to read. It is updated to
1439 reflect the number of bits actually read. This function may read
1440 fewer bits.
1441 BITS_BIG_ENDIAN is taken directly from gdbarch.
1442 This function returns the extracted bits. */
1443
1444 static unsigned int
1445 extract_bits_primitive (const gdb_byte **source,
1446 unsigned int *source_offset_bits,
1447 int *nbits, int bits_big_endian)
1448 {
1449 unsigned int avail, mask, datum;
1450
1451 gdb_assert (*source_offset_bits < 8);
1452
1453 avail = 8 - *source_offset_bits;
1454 if (avail > *nbits)
1455 avail = *nbits;
1456
1457 mask = (1 << avail) - 1;
1458 datum = **source;
1459 if (bits_big_endian)
1460 datum >>= 8 - (*source_offset_bits + *nbits);
1461 else
1462 datum >>= *source_offset_bits;
1463 datum &= mask;
1464
1465 *nbits -= avail;
1466 *source_offset_bits += avail;
1467 if (*source_offset_bits >= 8)
1468 {
1469 *source_offset_bits -= 8;
1470 ++*source;
1471 }
1472
1473 return datum;
1474 }
1475
1476 /* Extract some bits from a source buffer and move forward in the
1477 buffer.
1478
1479 SOURCE is the source buffer. It is updated as bytes are read.
1480 SOURCE_OFFSET_BITS is the offset into SOURCE. It is updated as
1481 bits are read.
1482 NBITS is the number of bits to read.
1483 BITS_BIG_ENDIAN is taken directly from gdbarch.
1484
1485 This function returns the bits that were read. */
1486
1487 static unsigned int
1488 extract_bits (const gdb_byte **source, unsigned int *source_offset_bits,
1489 int nbits, int bits_big_endian)
1490 {
1491 unsigned int datum;
1492
1493 gdb_assert (nbits > 0 && nbits <= 8);
1494
1495 datum = extract_bits_primitive (source, source_offset_bits, &nbits,
1496 bits_big_endian);
1497 if (nbits > 0)
1498 {
1499 unsigned int more;
1500
1501 more = extract_bits_primitive (source, source_offset_bits, &nbits,
1502 bits_big_endian);
1503 if (bits_big_endian)
1504 datum <<= nbits;
1505 else
1506 more <<= nbits;
1507 datum |= more;
1508 }
1509
1510 return datum;
1511 }
1512
1513 /* Write some bits into a buffer and move forward in the buffer.
1514
1515 DATUM is the bits to write. The low-order bits of DATUM are used.
1516 DEST is the destination buffer. It is updated as bytes are
1517 written.
1518 DEST_OFFSET_BITS is the bit offset in DEST at which writing is
1519 done.
1520 NBITS is the number of valid bits in DATUM.
1521 BITS_BIG_ENDIAN is taken directly from gdbarch. */
1522
1523 static void
1524 insert_bits (unsigned int datum,
1525 gdb_byte *dest, unsigned int dest_offset_bits,
1526 int nbits, int bits_big_endian)
1527 {
1528 unsigned int mask;
1529
1530 gdb_assert (dest_offset_bits + nbits <= 8);
1531
1532 mask = (1 << nbits) - 1;
1533 if (bits_big_endian)
1534 {
1535 datum <<= 8 - (dest_offset_bits + nbits);
1536 mask <<= 8 - (dest_offset_bits + nbits);
1537 }
1538 else
1539 {
1540 datum <<= dest_offset_bits;
1541 mask <<= dest_offset_bits;
1542 }
1543
1544 gdb_assert ((datum & ~mask) == 0);
1545
1546 *dest = (*dest & ~mask) | datum;
1547 }
1548
1549 /* Copy bits from a source to a destination.
1550
1551 DEST is where the bits should be written.
1552 DEST_OFFSET_BITS is the bit offset into DEST.
1553 SOURCE is the source of bits.
1554 SOURCE_OFFSET_BITS is the bit offset into SOURCE.
1555 BIT_COUNT is the number of bits to copy.
1556 BITS_BIG_ENDIAN is taken directly from gdbarch. */
1557
1558 static void
1559 copy_bitwise (gdb_byte *dest, unsigned int dest_offset_bits,
1560 const gdb_byte *source, unsigned int source_offset_bits,
1561 unsigned int bit_count,
1562 int bits_big_endian)
1563 {
1564 unsigned int dest_avail;
1565 int datum;
1566
1567 /* Reduce everything to byte-size pieces. */
1568 dest += dest_offset_bits / 8;
1569 dest_offset_bits %= 8;
1570 source += source_offset_bits / 8;
1571 source_offset_bits %= 8;
1572
1573 dest_avail = 8 - dest_offset_bits % 8;
1574
1575 /* See if we can fill the first destination byte. */
1576 if (dest_avail < bit_count)
1577 {
1578 datum = extract_bits (&source, &source_offset_bits, dest_avail,
1579 bits_big_endian);
1580 insert_bits (datum, dest, dest_offset_bits, dest_avail, bits_big_endian);
1581 ++dest;
1582 dest_offset_bits = 0;
1583 bit_count -= dest_avail;
1584 }
1585
1586 /* Now, either DEST_OFFSET_BITS is byte-aligned, or we have fewer
1587 than 8 bits remaining. */
1588 gdb_assert (dest_offset_bits % 8 == 0 || bit_count < 8);
1589 for (; bit_count >= 8; bit_count -= 8)
1590 {
1591 datum = extract_bits (&source, &source_offset_bits, 8, bits_big_endian);
1592 *dest++ = (gdb_byte) datum;
1593 }
1594
1595 /* Finally, we may have a few leftover bits. */
1596 gdb_assert (bit_count <= 8 - dest_offset_bits % 8);
1597 if (bit_count > 0)
1598 {
1599 datum = extract_bits (&source, &source_offset_bits, bit_count,
1600 bits_big_endian);
1601 insert_bits (datum, dest, dest_offset_bits, bit_count, bits_big_endian);
1602 }
1603 }
1604
1605 static void
1606 read_pieced_value (struct value *v)
1607 {
1608 int i;
1609 long offset = 0;
1610 ULONGEST bits_to_skip;
1611 gdb_byte *contents;
1612 struct piece_closure *c
1613 = (struct piece_closure *) value_computed_closure (v);
1614 struct frame_info *frame = frame_find_by_id (VALUE_FRAME_ID (v));
1615 size_t type_len;
1616 size_t buffer_size = 0;
1617 gdb_byte *buffer = NULL;
1618 struct cleanup *cleanup;
1619 int bits_big_endian
1620 = gdbarch_bits_big_endian (get_type_arch (value_type (v)));
1621
1622 if (value_type (v) != value_enclosing_type (v))
1623 internal_error (__FILE__, __LINE__,
1624 _("Should not be able to create a lazy value with "
1625 "an enclosing type"));
1626
1627 cleanup = make_cleanup (free_current_contents, &buffer);
1628
1629 contents = value_contents_raw (v);
1630 bits_to_skip = 8 * value_offset (v);
1631 if (value_bitsize (v))
1632 {
1633 bits_to_skip += value_bitpos (v);
1634 type_len = value_bitsize (v);
1635 }
1636 else
1637 type_len = 8 * TYPE_LENGTH (value_type (v));
1638
1639 for (i = 0; i < c->n_pieces && offset < type_len; i++)
1640 {
1641 struct dwarf_expr_piece *p = &c->pieces[i];
1642 size_t this_size, this_size_bits;
1643 long dest_offset_bits, source_offset_bits, source_offset;
1644 const gdb_byte *intermediate_buffer;
1645
1646 /* Compute size, source, and destination offsets for copying, in
1647 bits. */
1648 this_size_bits = p->size;
1649 if (bits_to_skip > 0 && bits_to_skip >= this_size_bits)
1650 {
1651 bits_to_skip -= this_size_bits;
1652 continue;
1653 }
1654 if (bits_to_skip > 0)
1655 {
1656 dest_offset_bits = 0;
1657 source_offset_bits = bits_to_skip;
1658 this_size_bits -= bits_to_skip;
1659 bits_to_skip = 0;
1660 }
1661 else
1662 {
1663 dest_offset_bits = offset;
1664 source_offset_bits = 0;
1665 }
1666 if (this_size_bits > type_len - offset)
1667 this_size_bits = type_len - offset;
1668
1669 this_size = (this_size_bits + source_offset_bits % 8 + 7) / 8;
1670 source_offset = source_offset_bits / 8;
1671 if (buffer_size < this_size)
1672 {
1673 buffer_size = this_size;
1674 buffer = xrealloc (buffer, buffer_size);
1675 }
1676 intermediate_buffer = buffer;
1677
1678 /* Copy from the source to DEST_BUFFER. */
1679 switch (p->location)
1680 {
1681 case DWARF_VALUE_REGISTER:
1682 {
1683 struct gdbarch *arch = get_frame_arch (frame);
1684 int gdb_regnum = gdbarch_dwarf2_reg_to_regnum (arch, p->v.regno);
1685
1686 if (gdb_regnum != -1)
1687 {
1688 int optim, unavail;
1689 int reg_offset = source_offset;
1690
1691 if (gdbarch_byte_order (arch) == BFD_ENDIAN_BIG
1692 && this_size < register_size (arch, gdb_regnum))
1693 {
1694 /* Big-endian, and we want less than full size. */
1695 reg_offset = register_size (arch, gdb_regnum) - this_size;
1696 /* We want the lower-order THIS_SIZE_BITS of the bytes
1697 we extract from the register. */
1698 source_offset_bits += 8 * this_size - this_size_bits;
1699 }
1700
1701 if (!get_frame_register_bytes (frame, gdb_regnum, reg_offset,
1702 this_size, buffer,
1703 &optim, &unavail))
1704 {
1705 /* Just so garbage doesn't ever shine through. */
1706 memset (buffer, 0, this_size);
1707
1708 if (optim)
1709 mark_value_bits_optimized_out (v, offset, this_size_bits);
1710 if (unavail)
1711 mark_value_bits_unavailable (v, offset, this_size_bits);
1712 }
1713 }
1714 else
1715 {
1716 error (_("Unable to access DWARF register number %s"),
1717 paddress (arch, p->v.regno));
1718 }
1719 }
1720 break;
1721
1722 case DWARF_VALUE_MEMORY:
1723 read_value_memory (v, offset,
1724 p->v.mem.in_stack_memory,
1725 p->v.mem.addr + source_offset,
1726 buffer, this_size);
1727 break;
1728
1729 case DWARF_VALUE_STACK:
1730 {
1731 size_t n = this_size;
1732
1733 if (n > c->addr_size - source_offset)
1734 n = (c->addr_size >= source_offset
1735 ? c->addr_size - source_offset
1736 : 0);
1737 if (n == 0)
1738 {
1739 /* Nothing. */
1740 }
1741 else
1742 {
1743 const gdb_byte *val_bytes = value_contents_all (p->v.value);
1744
1745 intermediate_buffer = val_bytes + source_offset;
1746 }
1747 }
1748 break;
1749
1750 case DWARF_VALUE_LITERAL:
1751 {
1752 size_t n = this_size;
1753
1754 if (n > p->v.literal.length - source_offset)
1755 n = (p->v.literal.length >= source_offset
1756 ? p->v.literal.length - source_offset
1757 : 0);
1758 if (n != 0)
1759 intermediate_buffer = p->v.literal.data + source_offset;
1760 }
1761 break;
1762
1763 /* These bits show up as zeros -- but do not cause the value
1764 to be considered optimized-out. */
1765 case DWARF_VALUE_IMPLICIT_POINTER:
1766 break;
1767
1768 case DWARF_VALUE_OPTIMIZED_OUT:
1769 mark_value_bits_optimized_out (v, offset, this_size_bits);
1770 break;
1771
1772 default:
1773 internal_error (__FILE__, __LINE__, _("invalid location type"));
1774 }
1775
1776 if (p->location != DWARF_VALUE_OPTIMIZED_OUT
1777 && p->location != DWARF_VALUE_IMPLICIT_POINTER)
1778 copy_bitwise (contents, dest_offset_bits,
1779 intermediate_buffer, source_offset_bits % 8,
1780 this_size_bits, bits_big_endian);
1781
1782 offset += this_size_bits;
1783 }
1784
1785 do_cleanups (cleanup);
1786 }
1787
1788 static void
1789 write_pieced_value (struct value *to, struct value *from)
1790 {
1791 int i;
1792 long offset = 0;
1793 ULONGEST bits_to_skip;
1794 const gdb_byte *contents;
1795 struct piece_closure *c
1796 = (struct piece_closure *) value_computed_closure (to);
1797 struct frame_info *frame = frame_find_by_id (VALUE_FRAME_ID (to));
1798 size_t type_len;
1799 size_t buffer_size = 0;
1800 gdb_byte *buffer = NULL;
1801 struct cleanup *cleanup;
1802 int bits_big_endian
1803 = gdbarch_bits_big_endian (get_type_arch (value_type (to)));
1804
1805 if (frame == NULL)
1806 {
1807 mark_value_bytes_optimized_out (to, 0, TYPE_LENGTH (value_type (to)));
1808 return;
1809 }
1810
1811 cleanup = make_cleanup (free_current_contents, &buffer);
1812
1813 contents = value_contents (from);
1814 bits_to_skip = 8 * value_offset (to);
1815 if (value_bitsize (to))
1816 {
1817 bits_to_skip += value_bitpos (to);
1818 type_len = value_bitsize (to);
1819 }
1820 else
1821 type_len = 8 * TYPE_LENGTH (value_type (to));
1822
1823 for (i = 0; i < c->n_pieces && offset < type_len; i++)
1824 {
1825 struct dwarf_expr_piece *p = &c->pieces[i];
1826 size_t this_size_bits, this_size;
1827 long dest_offset_bits, source_offset_bits, dest_offset, source_offset;
1828 int need_bitwise;
1829 const gdb_byte *source_buffer;
1830
1831 this_size_bits = p->size;
1832 if (bits_to_skip > 0 && bits_to_skip >= this_size_bits)
1833 {
1834 bits_to_skip -= this_size_bits;
1835 continue;
1836 }
1837 if (this_size_bits > type_len - offset)
1838 this_size_bits = type_len - offset;
1839 if (bits_to_skip > 0)
1840 {
1841 dest_offset_bits = bits_to_skip;
1842 source_offset_bits = 0;
1843 this_size_bits -= bits_to_skip;
1844 bits_to_skip = 0;
1845 }
1846 else
1847 {
1848 dest_offset_bits = 0;
1849 source_offset_bits = offset;
1850 }
1851
1852 this_size = (this_size_bits + source_offset_bits % 8 + 7) / 8;
1853 source_offset = source_offset_bits / 8;
1854 dest_offset = dest_offset_bits / 8;
1855 if (dest_offset_bits % 8 == 0 && source_offset_bits % 8 == 0)
1856 {
1857 source_buffer = contents + source_offset;
1858 need_bitwise = 0;
1859 }
1860 else
1861 {
1862 if (buffer_size < this_size)
1863 {
1864 buffer_size = this_size;
1865 buffer = xrealloc (buffer, buffer_size);
1866 }
1867 source_buffer = buffer;
1868 need_bitwise = 1;
1869 }
1870
1871 switch (p->location)
1872 {
1873 case DWARF_VALUE_REGISTER:
1874 {
1875 struct gdbarch *arch = get_frame_arch (frame);
1876 int gdb_regnum = gdbarch_dwarf2_reg_to_regnum (arch, p->v.regno);
1877
1878 if (gdb_regnum != -1)
1879 {
1880 int reg_offset = dest_offset;
1881
1882 if (gdbarch_byte_order (arch) == BFD_ENDIAN_BIG
1883 && this_size <= register_size (arch, gdb_regnum))
1884 {
1885 /* Big-endian, and we want less than full size. */
1886 reg_offset = register_size (arch, gdb_regnum) - this_size;
1887 }
1888
1889 if (need_bitwise)
1890 {
1891 int optim, unavail;
1892
1893 if (!get_frame_register_bytes (frame, gdb_regnum, reg_offset,
1894 this_size, buffer,
1895 &optim, &unavail))
1896 {
1897 if (optim)
1898 throw_error (OPTIMIZED_OUT_ERROR,
1899 _("Can't do read-modify-write to "
1900 "update bitfield; containing word "
1901 "has been optimized out"));
1902 if (unavail)
1903 throw_error (NOT_AVAILABLE_ERROR,
1904 _("Can't do read-modify-write to update "
1905 "bitfield; containing word "
1906 "is unavailable"));
1907 }
1908 copy_bitwise (buffer, dest_offset_bits,
1909 contents, source_offset_bits,
1910 this_size_bits,
1911 bits_big_endian);
1912 }
1913
1914 put_frame_register_bytes (frame, gdb_regnum, reg_offset,
1915 this_size, source_buffer);
1916 }
1917 else
1918 {
1919 error (_("Unable to write to DWARF register number %s"),
1920 paddress (arch, p->v.regno));
1921 }
1922 }
1923 break;
1924 case DWARF_VALUE_MEMORY:
1925 if (need_bitwise)
1926 {
1927 /* Only the first and last bytes can possibly have any
1928 bits reused. */
1929 read_memory (p->v.mem.addr + dest_offset, buffer, 1);
1930 read_memory (p->v.mem.addr + dest_offset + this_size - 1,
1931 buffer + this_size - 1, 1);
1932 copy_bitwise (buffer, dest_offset_bits,
1933 contents, source_offset_bits,
1934 this_size_bits,
1935 bits_big_endian);
1936 }
1937
1938 write_memory (p->v.mem.addr + dest_offset,
1939 source_buffer, this_size);
1940 break;
1941 default:
1942 mark_value_bytes_optimized_out (to, 0, TYPE_LENGTH (value_type (to)));
1943 break;
1944 }
1945 offset += this_size_bits;
1946 }
1947
1948 do_cleanups (cleanup);
1949 }
1950
1951 /* An implementation of an lval_funcs method to see whether a value is
1952 a synthetic pointer. */
1953
1954 static int
1955 check_pieced_synthetic_pointer (const struct value *value, int bit_offset,
1956 int bit_length)
1957 {
1958 struct piece_closure *c
1959 = (struct piece_closure *) value_computed_closure (value);
1960 int i;
1961
1962 bit_offset += 8 * value_offset (value);
1963 if (value_bitsize (value))
1964 bit_offset += value_bitpos (value);
1965
1966 for (i = 0; i < c->n_pieces && bit_length > 0; i++)
1967 {
1968 struct dwarf_expr_piece *p = &c->pieces[i];
1969 size_t this_size_bits = p->size;
1970
1971 if (bit_offset > 0)
1972 {
1973 if (bit_offset >= this_size_bits)
1974 {
1975 bit_offset -= this_size_bits;
1976 continue;
1977 }
1978
1979 bit_length -= this_size_bits - bit_offset;
1980 bit_offset = 0;
1981 }
1982 else
1983 bit_length -= this_size_bits;
1984
1985 if (p->location != DWARF_VALUE_IMPLICIT_POINTER)
1986 return 0;
1987 }
1988
1989 return 1;
1990 }
1991
1992 /* A wrapper function for get_frame_address_in_block. */
1993
1994 static CORE_ADDR
1995 get_frame_address_in_block_wrapper (void *baton)
1996 {
1997 return get_frame_address_in_block (baton);
1998 }
1999
2000 /* An implementation of an lval_funcs method to indirect through a
2001 pointer. This handles the synthetic pointer case when needed. */
2002
2003 static struct value *
2004 indirect_pieced_value (struct value *value)
2005 {
2006 struct piece_closure *c
2007 = (struct piece_closure *) value_computed_closure (value);
2008 struct type *type;
2009 struct frame_info *frame;
2010 struct dwarf2_locexpr_baton baton;
2011 int i, bit_offset, bit_length;
2012 struct dwarf_expr_piece *piece = NULL;
2013 LONGEST byte_offset;
2014
2015 type = check_typedef (value_type (value));
2016 if (TYPE_CODE (type) != TYPE_CODE_PTR)
2017 return NULL;
2018
2019 bit_length = 8 * TYPE_LENGTH (type);
2020 bit_offset = 8 * value_offset (value);
2021 if (value_bitsize (value))
2022 bit_offset += value_bitpos (value);
2023
2024 for (i = 0; i < c->n_pieces && bit_length > 0; i++)
2025 {
2026 struct dwarf_expr_piece *p = &c->pieces[i];
2027 size_t this_size_bits = p->size;
2028
2029 if (bit_offset > 0)
2030 {
2031 if (bit_offset >= this_size_bits)
2032 {
2033 bit_offset -= this_size_bits;
2034 continue;
2035 }
2036
2037 bit_length -= this_size_bits - bit_offset;
2038 bit_offset = 0;
2039 }
2040 else
2041 bit_length -= this_size_bits;
2042
2043 if (p->location != DWARF_VALUE_IMPLICIT_POINTER)
2044 return NULL;
2045
2046 if (bit_length != 0)
2047 error (_("Invalid use of DW_OP_GNU_implicit_pointer"));
2048
2049 piece = p;
2050 break;
2051 }
2052
2053 frame = get_selected_frame (_("No frame selected."));
2054
2055 /* This is an offset requested by GDB, such as value subscripts.
2056 However, due to how synthetic pointers are implemented, this is
2057 always presented to us as a pointer type. This means we have to
2058 sign-extend it manually as appropriate. */
2059 byte_offset = value_as_address (value);
2060 if (TYPE_LENGTH (value_type (value)) < sizeof (LONGEST))
2061 byte_offset = gdb_sign_extend (byte_offset,
2062 8 * TYPE_LENGTH (value_type (value)));
2063 byte_offset += piece->v.ptr.offset;
2064
2065 gdb_assert (piece);
2066 baton
2067 = dwarf2_fetch_die_loc_sect_off (piece->v.ptr.die, c->per_cu,
2068 get_frame_address_in_block_wrapper,
2069 frame);
2070
2071 if (baton.data != NULL)
2072 return dwarf2_evaluate_loc_desc_full (TYPE_TARGET_TYPE (type), frame,
2073 baton.data, baton.size, baton.per_cu,
2074 byte_offset);
2075
2076 {
2077 struct obstack temp_obstack;
2078 struct cleanup *cleanup;
2079 const gdb_byte *bytes;
2080 LONGEST len;
2081 struct value *result;
2082
2083 obstack_init (&temp_obstack);
2084 cleanup = make_cleanup_obstack_free (&temp_obstack);
2085
2086 bytes = dwarf2_fetch_constant_bytes (piece->v.ptr.die, c->per_cu,
2087 &temp_obstack, &len);
2088 if (bytes == NULL)
2089 result = allocate_optimized_out_value (TYPE_TARGET_TYPE (type));
2090 else
2091 {
2092 if (byte_offset < 0
2093 || byte_offset + TYPE_LENGTH (TYPE_TARGET_TYPE (type)) > len)
2094 invalid_synthetic_pointer ();
2095 bytes += byte_offset;
2096 result = value_from_contents (TYPE_TARGET_TYPE (type), bytes);
2097 }
2098
2099 do_cleanups (cleanup);
2100 return result;
2101 }
2102 }
2103
2104 static void *
2105 copy_pieced_value_closure (const struct value *v)
2106 {
2107 struct piece_closure *c
2108 = (struct piece_closure *) value_computed_closure (v);
2109
2110 ++c->refc;
2111 return c;
2112 }
2113
2114 static void
2115 free_pieced_value_closure (struct value *v)
2116 {
2117 struct piece_closure *c
2118 = (struct piece_closure *) value_computed_closure (v);
2119
2120 --c->refc;
2121 if (c->refc == 0)
2122 {
2123 int i;
2124
2125 for (i = 0; i < c->n_pieces; ++i)
2126 if (c->pieces[i].location == DWARF_VALUE_STACK)
2127 value_free (c->pieces[i].v.value);
2128
2129 xfree (c->pieces);
2130 xfree (c);
2131 }
2132 }
2133
2134 /* Functions for accessing a variable described by DW_OP_piece. */
2135 static const struct lval_funcs pieced_value_funcs = {
2136 read_pieced_value,
2137 write_pieced_value,
2138 indirect_pieced_value,
2139 NULL, /* coerce_ref */
2140 check_pieced_synthetic_pointer,
2141 copy_pieced_value_closure,
2142 free_pieced_value_closure
2143 };
2144
2145 /* Virtual method table for dwarf2_evaluate_loc_desc_full below. */
2146
2147 static const struct dwarf_expr_context_funcs dwarf_expr_ctx_funcs =
2148 {
2149 dwarf_expr_read_addr_from_reg,
2150 dwarf_expr_get_reg_value,
2151 dwarf_expr_read_mem,
2152 dwarf_expr_frame_base,
2153 dwarf_expr_frame_cfa,
2154 dwarf_expr_frame_pc,
2155 dwarf_expr_tls_address,
2156 dwarf_expr_dwarf_call,
2157 dwarf_expr_get_base_type,
2158 dwarf_expr_push_dwarf_reg_entry_value,
2159 dwarf_expr_get_addr_index,
2160 dwarf_expr_get_obj_addr
2161 };
2162
2163 /* Evaluate a location description, starting at DATA and with length
2164 SIZE, to find the current location of variable of TYPE in the
2165 context of FRAME. BYTE_OFFSET is applied after the contents are
2166 computed. */
2167
2168 static struct value *
2169 dwarf2_evaluate_loc_desc_full (struct type *type, struct frame_info *frame,
2170 const gdb_byte *data, size_t size,
2171 struct dwarf2_per_cu_data *per_cu,
2172 LONGEST byte_offset)
2173 {
2174 struct value *retval;
2175 struct dwarf_expr_baton baton;
2176 struct dwarf_expr_context *ctx;
2177 struct cleanup *old_chain, *value_chain;
2178 struct objfile *objfile = dwarf2_per_cu_objfile (per_cu);
2179 volatile struct gdb_exception ex;
2180
2181 if (byte_offset < 0)
2182 invalid_synthetic_pointer ();
2183
2184 if (size == 0)
2185 return allocate_optimized_out_value (type);
2186
2187 baton.frame = frame;
2188 baton.per_cu = per_cu;
2189 baton.obj_address = 0;
2190
2191 ctx = new_dwarf_expr_context ();
2192 old_chain = make_cleanup_free_dwarf_expr_context (ctx);
2193 value_chain = make_cleanup_value_free_to_mark (value_mark ());
2194
2195 ctx->gdbarch = get_objfile_arch (objfile);
2196 ctx->addr_size = dwarf2_per_cu_addr_size (per_cu);
2197 ctx->ref_addr_size = dwarf2_per_cu_ref_addr_size (per_cu);
2198 ctx->offset = dwarf2_per_cu_text_offset (per_cu);
2199 ctx->baton = &baton;
2200 ctx->funcs = &dwarf_expr_ctx_funcs;
2201
2202 TRY_CATCH (ex, RETURN_MASK_ERROR)
2203 {
2204 dwarf_expr_eval (ctx, data, size);
2205 }
2206 if (ex.reason < 0)
2207 {
2208 if (ex.error == NOT_AVAILABLE_ERROR)
2209 {
2210 do_cleanups (old_chain);
2211 retval = allocate_value (type);
2212 mark_value_bytes_unavailable (retval, 0, TYPE_LENGTH (type));
2213 return retval;
2214 }
2215 else if (ex.error == NO_ENTRY_VALUE_ERROR)
2216 {
2217 if (entry_values_debug)
2218 exception_print (gdb_stdout, ex);
2219 do_cleanups (old_chain);
2220 return allocate_optimized_out_value (type);
2221 }
2222 else
2223 throw_exception (ex);
2224 }
2225
2226 if (ctx->num_pieces > 0)
2227 {
2228 struct piece_closure *c;
2229 struct frame_id frame_id = get_frame_id (frame);
2230 ULONGEST bit_size = 0;
2231 int i;
2232
2233 for (i = 0; i < ctx->num_pieces; ++i)
2234 bit_size += ctx->pieces[i].size;
2235 if (8 * (byte_offset + TYPE_LENGTH (type)) > bit_size)
2236 invalid_synthetic_pointer ();
2237
2238 c = allocate_piece_closure (per_cu, ctx->num_pieces, ctx->pieces,
2239 ctx->addr_size);
2240 /* We must clean up the value chain after creating the piece
2241 closure but before allocating the result. */
2242 do_cleanups (value_chain);
2243 retval = allocate_computed_value (type, &pieced_value_funcs, c);
2244 VALUE_FRAME_ID (retval) = frame_id;
2245 set_value_offset (retval, byte_offset);
2246 }
2247 else
2248 {
2249 switch (ctx->location)
2250 {
2251 case DWARF_VALUE_REGISTER:
2252 {
2253 struct gdbarch *arch = get_frame_arch (frame);
2254 int dwarf_regnum
2255 = longest_to_int (value_as_long (dwarf_expr_fetch (ctx, 0)));
2256 int gdb_regnum = gdbarch_dwarf2_reg_to_regnum (arch, dwarf_regnum);
2257
2258 if (byte_offset != 0)
2259 error (_("cannot use offset on synthetic pointer to register"));
2260 do_cleanups (value_chain);
2261 if (gdb_regnum == -1)
2262 error (_("Unable to access DWARF register number %d"),
2263 dwarf_regnum);
2264 retval = value_from_register (type, gdb_regnum, frame);
2265 if (value_optimized_out (retval))
2266 {
2267 struct value *tmp;
2268
2269 /* This means the register has undefined value / was
2270 not saved. As we're computing the location of some
2271 variable etc. in the program, not a value for
2272 inspecting a register ($pc, $sp, etc.), return a
2273 generic optimized out value instead, so that we show
2274 <optimized out> instead of <not saved>. */
2275 do_cleanups (value_chain);
2276 tmp = allocate_value (type);
2277 value_contents_copy (tmp, 0, retval, 0, TYPE_LENGTH (type));
2278 retval = tmp;
2279 }
2280 }
2281 break;
2282
2283 case DWARF_VALUE_MEMORY:
2284 {
2285 CORE_ADDR address = dwarf_expr_fetch_address (ctx, 0);
2286 int in_stack_memory = dwarf_expr_fetch_in_stack_memory (ctx, 0);
2287
2288 do_cleanups (value_chain);
2289 retval = value_at_lazy (type, address + byte_offset);
2290 if (in_stack_memory)
2291 set_value_stack (retval, 1);
2292 }
2293 break;
2294
2295 case DWARF_VALUE_STACK:
2296 {
2297 struct value *value = dwarf_expr_fetch (ctx, 0);
2298 gdb_byte *contents;
2299 const gdb_byte *val_bytes;
2300 size_t n = TYPE_LENGTH (value_type (value));
2301
2302 if (byte_offset + TYPE_LENGTH (type) > n)
2303 invalid_synthetic_pointer ();
2304
2305 val_bytes = value_contents_all (value);
2306 val_bytes += byte_offset;
2307 n -= byte_offset;
2308
2309 /* Preserve VALUE because we are going to free values back
2310 to the mark, but we still need the value contents
2311 below. */
2312 value_incref (value);
2313 do_cleanups (value_chain);
2314 make_cleanup_value_free (value);
2315
2316 retval = allocate_value (type);
2317 contents = value_contents_raw (retval);
2318 if (n > TYPE_LENGTH (type))
2319 {
2320 struct gdbarch *objfile_gdbarch = get_objfile_arch (objfile);
2321
2322 if (gdbarch_byte_order (objfile_gdbarch) == BFD_ENDIAN_BIG)
2323 val_bytes += n - TYPE_LENGTH (type);
2324 n = TYPE_LENGTH (type);
2325 }
2326 memcpy (contents, val_bytes, n);
2327 }
2328 break;
2329
2330 case DWARF_VALUE_LITERAL:
2331 {
2332 bfd_byte *contents;
2333 const bfd_byte *ldata;
2334 size_t n = ctx->len;
2335
2336 if (byte_offset + TYPE_LENGTH (type) > n)
2337 invalid_synthetic_pointer ();
2338
2339 do_cleanups (value_chain);
2340 retval = allocate_value (type);
2341 contents = value_contents_raw (retval);
2342
2343 ldata = ctx->data + byte_offset;
2344 n -= byte_offset;
2345
2346 if (n > TYPE_LENGTH (type))
2347 {
2348 struct gdbarch *objfile_gdbarch = get_objfile_arch (objfile);
2349
2350 if (gdbarch_byte_order (objfile_gdbarch) == BFD_ENDIAN_BIG)
2351 ldata += n - TYPE_LENGTH (type);
2352 n = TYPE_LENGTH (type);
2353 }
2354 memcpy (contents, ldata, n);
2355 }
2356 break;
2357
2358 case DWARF_VALUE_OPTIMIZED_OUT:
2359 do_cleanups (value_chain);
2360 retval = allocate_optimized_out_value (type);
2361 break;
2362
2363 /* DWARF_VALUE_IMPLICIT_POINTER was converted to a pieced
2364 operation by execute_stack_op. */
2365 case DWARF_VALUE_IMPLICIT_POINTER:
2366 /* DWARF_VALUE_OPTIMIZED_OUT can't occur in this context --
2367 it can only be encountered when making a piece. */
2368 default:
2369 internal_error (__FILE__, __LINE__, _("invalid location type"));
2370 }
2371 }
2372
2373 set_value_initialized (retval, ctx->initialized);
2374
2375 do_cleanups (old_chain);
2376
2377 return retval;
2378 }
2379
2380 /* The exported interface to dwarf2_evaluate_loc_desc_full; it always
2381 passes 0 as the byte_offset. */
2382
2383 struct value *
2384 dwarf2_evaluate_loc_desc (struct type *type, struct frame_info *frame,
2385 const gdb_byte *data, size_t size,
2386 struct dwarf2_per_cu_data *per_cu)
2387 {
2388 return dwarf2_evaluate_loc_desc_full (type, frame, data, size, per_cu, 0);
2389 }
2390
2391 /* Evaluates a dwarf expression and stores the result in VAL, expecting
2392 that the dwarf expression only produces a single CORE_ADDR. ADDR is a
2393 context (location of a variable) and might be needed to evaluate the
2394 location expression.
2395 Returns 1 on success, 0 otherwise. */
2396
2397 static int
2398 dwarf2_locexpr_baton_eval (const struct dwarf2_locexpr_baton *dlbaton,
2399 CORE_ADDR addr,
2400 CORE_ADDR *valp)
2401 {
2402 struct dwarf_expr_context *ctx;
2403 struct dwarf_expr_baton baton;
2404 struct objfile *objfile;
2405 struct cleanup *cleanup;
2406
2407 if (dlbaton == NULL || dlbaton->size == 0)
2408 return 0;
2409
2410 ctx = new_dwarf_expr_context ();
2411 cleanup = make_cleanup_free_dwarf_expr_context (ctx);
2412
2413 baton.frame = get_selected_frame (NULL);
2414 baton.per_cu = dlbaton->per_cu;
2415 baton.obj_address = addr;
2416
2417 objfile = dwarf2_per_cu_objfile (dlbaton->per_cu);
2418
2419 ctx->gdbarch = get_objfile_arch (objfile);
2420 ctx->addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
2421 ctx->ref_addr_size = dwarf2_per_cu_ref_addr_size (dlbaton->per_cu);
2422 ctx->offset = dwarf2_per_cu_text_offset (dlbaton->per_cu);
2423 ctx->funcs = &dwarf_expr_ctx_funcs;
2424 ctx->baton = &baton;
2425
2426 dwarf_expr_eval (ctx, dlbaton->data, dlbaton->size);
2427
2428 switch (ctx->location)
2429 {
2430 case DWARF_VALUE_REGISTER:
2431 case DWARF_VALUE_MEMORY:
2432 case DWARF_VALUE_STACK:
2433 *valp = dwarf_expr_fetch_address (ctx, 0);
2434 if (ctx->location == DWARF_VALUE_REGISTER)
2435 *valp = dwarf_expr_read_addr_from_reg (&baton, *valp);
2436 do_cleanups (cleanup);
2437 return 1;
2438 case DWARF_VALUE_LITERAL:
2439 *valp = extract_signed_integer (ctx->data, ctx->len,
2440 gdbarch_byte_order (ctx->gdbarch));
2441 do_cleanups (cleanup);
2442 return 1;
2443 /* Unsupported dwarf values. */
2444 case DWARF_VALUE_OPTIMIZED_OUT:
2445 case DWARF_VALUE_IMPLICIT_POINTER:
2446 break;
2447 }
2448
2449 do_cleanups (cleanup);
2450 return 0;
2451 }
2452
2453 /* See dwarf2loc.h. */
2454
2455 int
2456 dwarf2_evaluate_property (const struct dynamic_prop *prop,
2457 CORE_ADDR address, CORE_ADDR *value)
2458 {
2459 if (prop == NULL)
2460 return 0;
2461
2462 switch (prop->kind)
2463 {
2464 case PROP_LOCEXPR:
2465 {
2466 const struct dwarf2_property_baton *baton = prop->data.baton;
2467
2468 if (dwarf2_locexpr_baton_eval (&baton->locexpr, address, value))
2469 {
2470 if (baton->referenced_type)
2471 {
2472 struct value *val = value_at (baton->referenced_type, *value);
2473
2474 *value = value_as_address (val);
2475 }
2476 return 1;
2477 }
2478 }
2479 break;
2480
2481 case PROP_LOCLIST:
2482 {
2483 struct dwarf2_property_baton *baton = prop->data.baton;
2484 struct frame_info *frame = get_selected_frame (NULL);
2485 CORE_ADDR pc = get_frame_address_in_block (frame);
2486 const gdb_byte *data;
2487 struct value *val;
2488 size_t size;
2489
2490 data = dwarf2_find_location_expression (&baton->loclist, &size, pc);
2491 if (data != NULL)
2492 {
2493 val = dwarf2_evaluate_loc_desc (baton->referenced_type, frame, data,
2494 size, baton->loclist.per_cu);
2495 if (!value_optimized_out (val))
2496 {
2497 *value = value_as_address (val);
2498 return 1;
2499 }
2500 }
2501 }
2502 break;
2503
2504 case PROP_CONST:
2505 *value = prop->data.const_val;
2506 return 1;
2507 }
2508
2509 return 0;
2510 }
2511
2512 \f
2513 /* Helper functions and baton for dwarf2_loc_desc_needs_frame. */
2514
2515 struct needs_frame_baton
2516 {
2517 int needs_frame;
2518 struct dwarf2_per_cu_data *per_cu;
2519 };
2520
2521 /* Reads from registers do require a frame. */
2522 static CORE_ADDR
2523 needs_frame_read_addr_from_reg (void *baton, int regnum)
2524 {
2525 struct needs_frame_baton *nf_baton = baton;
2526
2527 nf_baton->needs_frame = 1;
2528 return 1;
2529 }
2530
2531 /* struct dwarf_expr_context_funcs' "get_reg_value" callback:
2532 Reads from registers do require a frame. */
2533
2534 static struct value *
2535 needs_frame_get_reg_value (void *baton, struct type *type, int regnum)
2536 {
2537 struct needs_frame_baton *nf_baton = baton;
2538
2539 nf_baton->needs_frame = 1;
2540 return value_zero (type, not_lval);
2541 }
2542
2543 /* Reads from memory do not require a frame. */
2544 static void
2545 needs_frame_read_mem (void *baton, gdb_byte *buf, CORE_ADDR addr, size_t len)
2546 {
2547 memset (buf, 0, len);
2548 }
2549
2550 /* Frame-relative accesses do require a frame. */
2551 static void
2552 needs_frame_frame_base (void *baton, const gdb_byte **start, size_t * length)
2553 {
2554 static gdb_byte lit0 = DW_OP_lit0;
2555 struct needs_frame_baton *nf_baton = baton;
2556
2557 *start = &lit0;
2558 *length = 1;
2559
2560 nf_baton->needs_frame = 1;
2561 }
2562
2563 /* CFA accesses require a frame. */
2564
2565 static CORE_ADDR
2566 needs_frame_frame_cfa (void *baton)
2567 {
2568 struct needs_frame_baton *nf_baton = baton;
2569
2570 nf_baton->needs_frame = 1;
2571 return 1;
2572 }
2573
2574 /* Thread-local accesses do require a frame. */
2575 static CORE_ADDR
2576 needs_frame_tls_address (void *baton, CORE_ADDR offset)
2577 {
2578 struct needs_frame_baton *nf_baton = baton;
2579
2580 nf_baton->needs_frame = 1;
2581 return 1;
2582 }
2583
2584 /* Helper interface of per_cu_dwarf_call for dwarf2_loc_desc_needs_frame. */
2585
2586 static void
2587 needs_frame_dwarf_call (struct dwarf_expr_context *ctx, cu_offset die_offset)
2588 {
2589 struct needs_frame_baton *nf_baton = ctx->baton;
2590
2591 per_cu_dwarf_call (ctx, die_offset, nf_baton->per_cu,
2592 ctx->funcs->get_frame_pc, ctx->baton);
2593 }
2594
2595 /* DW_OP_GNU_entry_value accesses require a caller, therefore a frame. */
2596
2597 static void
2598 needs_dwarf_reg_entry_value (struct dwarf_expr_context *ctx,
2599 enum call_site_parameter_kind kind,
2600 union call_site_parameter_u kind_u, int deref_size)
2601 {
2602 struct needs_frame_baton *nf_baton = ctx->baton;
2603
2604 nf_baton->needs_frame = 1;
2605
2606 /* The expression may require some stub values on DWARF stack. */
2607 dwarf_expr_push_address (ctx, 0, 0);
2608 }
2609
2610 /* DW_OP_GNU_addr_index doesn't require a frame. */
2611
2612 static CORE_ADDR
2613 needs_get_addr_index (void *baton, unsigned int index)
2614 {
2615 /* Nothing to do. */
2616 return 1;
2617 }
2618
2619 /* DW_OP_push_object_address has a frame already passed through. */
2620
2621 static CORE_ADDR
2622 needs_get_obj_addr (void *baton)
2623 {
2624 /* Nothing to do. */
2625 return 1;
2626 }
2627
2628 /* Virtual method table for dwarf2_loc_desc_needs_frame below. */
2629
2630 static const struct dwarf_expr_context_funcs needs_frame_ctx_funcs =
2631 {
2632 needs_frame_read_addr_from_reg,
2633 needs_frame_get_reg_value,
2634 needs_frame_read_mem,
2635 needs_frame_frame_base,
2636 needs_frame_frame_cfa,
2637 needs_frame_frame_cfa, /* get_frame_pc */
2638 needs_frame_tls_address,
2639 needs_frame_dwarf_call,
2640 NULL, /* get_base_type */
2641 needs_dwarf_reg_entry_value,
2642 needs_get_addr_index,
2643 needs_get_obj_addr
2644 };
2645
2646 /* Return non-zero iff the location expression at DATA (length SIZE)
2647 requires a frame to evaluate. */
2648
2649 static int
2650 dwarf2_loc_desc_needs_frame (const gdb_byte *data, size_t size,
2651 struct dwarf2_per_cu_data *per_cu)
2652 {
2653 struct needs_frame_baton baton;
2654 struct dwarf_expr_context *ctx;
2655 int in_reg;
2656 struct cleanup *old_chain;
2657 struct objfile *objfile = dwarf2_per_cu_objfile (per_cu);
2658
2659 baton.needs_frame = 0;
2660 baton.per_cu = per_cu;
2661
2662 ctx = new_dwarf_expr_context ();
2663 old_chain = make_cleanup_free_dwarf_expr_context (ctx);
2664 make_cleanup_value_free_to_mark (value_mark ());
2665
2666 ctx->gdbarch = get_objfile_arch (objfile);
2667 ctx->addr_size = dwarf2_per_cu_addr_size (per_cu);
2668 ctx->ref_addr_size = dwarf2_per_cu_ref_addr_size (per_cu);
2669 ctx->offset = dwarf2_per_cu_text_offset (per_cu);
2670 ctx->baton = &baton;
2671 ctx->funcs = &needs_frame_ctx_funcs;
2672
2673 dwarf_expr_eval (ctx, data, size);
2674
2675 in_reg = ctx->location == DWARF_VALUE_REGISTER;
2676
2677 if (ctx->num_pieces > 0)
2678 {
2679 int i;
2680
2681 /* If the location has several pieces, and any of them are in
2682 registers, then we will need a frame to fetch them from. */
2683 for (i = 0; i < ctx->num_pieces; i++)
2684 if (ctx->pieces[i].location == DWARF_VALUE_REGISTER)
2685 in_reg = 1;
2686 }
2687
2688 do_cleanups (old_chain);
2689
2690 return baton.needs_frame || in_reg;
2691 }
2692
2693 /* A helper function that throws an unimplemented error mentioning a
2694 given DWARF operator. */
2695
2696 static void
2697 unimplemented (unsigned int op)
2698 {
2699 const char *name = get_DW_OP_name (op);
2700
2701 if (name)
2702 error (_("DWARF operator %s cannot be translated to an agent expression"),
2703 name);
2704 else
2705 error (_("Unknown DWARF operator 0x%02x cannot be translated "
2706 "to an agent expression"),
2707 op);
2708 }
2709
2710 /* See dwarf2loc.h. */
2711
2712 int
2713 dwarf2_reg_to_regnum_or_error (struct gdbarch *arch, int dwarf_reg)
2714 {
2715 int reg = gdbarch_dwarf2_reg_to_regnum (arch, dwarf_reg);
2716 if (reg == -1)
2717 error (_("Unable to access DWARF register number %d"), dwarf_reg);
2718 return reg;
2719 }
2720
2721 /* A helper function that emits an access to memory. ARCH is the
2722 target architecture. EXPR is the expression which we are building.
2723 NBITS is the number of bits we want to read. This emits the
2724 opcodes needed to read the memory and then extract the desired
2725 bits. */
2726
2727 static void
2728 access_memory (struct gdbarch *arch, struct agent_expr *expr, ULONGEST nbits)
2729 {
2730 ULONGEST nbytes = (nbits + 7) / 8;
2731
2732 gdb_assert (nbytes > 0 && nbytes <= sizeof (LONGEST));
2733
2734 if (expr->tracing)
2735 ax_trace_quick (expr, nbytes);
2736
2737 if (nbits <= 8)
2738 ax_simple (expr, aop_ref8);
2739 else if (nbits <= 16)
2740 ax_simple (expr, aop_ref16);
2741 else if (nbits <= 32)
2742 ax_simple (expr, aop_ref32);
2743 else
2744 ax_simple (expr, aop_ref64);
2745
2746 /* If we read exactly the number of bytes we wanted, we're done. */
2747 if (8 * nbytes == nbits)
2748 return;
2749
2750 if (gdbarch_bits_big_endian (arch))
2751 {
2752 /* On a bits-big-endian machine, we want the high-order
2753 NBITS. */
2754 ax_const_l (expr, 8 * nbytes - nbits);
2755 ax_simple (expr, aop_rsh_unsigned);
2756 }
2757 else
2758 {
2759 /* On a bits-little-endian box, we want the low-order NBITS. */
2760 ax_zero_ext (expr, nbits);
2761 }
2762 }
2763
2764 /* A helper function to return the frame's PC. */
2765
2766 static CORE_ADDR
2767 get_ax_pc (void *baton)
2768 {
2769 struct agent_expr *expr = baton;
2770
2771 return expr->scope;
2772 }
2773
2774 /* Compile a DWARF location expression to an agent expression.
2775
2776 EXPR is the agent expression we are building.
2777 LOC is the agent value we modify.
2778 ARCH is the architecture.
2779 ADDR_SIZE is the size of addresses, in bytes.
2780 OP_PTR is the start of the location expression.
2781 OP_END is one past the last byte of the location expression.
2782
2783 This will throw an exception for various kinds of errors -- for
2784 example, if the expression cannot be compiled, or if the expression
2785 is invalid. */
2786
2787 void
2788 dwarf2_compile_expr_to_ax (struct agent_expr *expr, struct axs_value *loc,
2789 struct gdbarch *arch, unsigned int addr_size,
2790 const gdb_byte *op_ptr, const gdb_byte *op_end,
2791 struct dwarf2_per_cu_data *per_cu)
2792 {
2793 struct cleanup *cleanups;
2794 int i, *offsets;
2795 VEC(int) *dw_labels = NULL, *patches = NULL;
2796 const gdb_byte * const base = op_ptr;
2797 const gdb_byte *previous_piece = op_ptr;
2798 enum bfd_endian byte_order = gdbarch_byte_order (arch);
2799 ULONGEST bits_collected = 0;
2800 unsigned int addr_size_bits = 8 * addr_size;
2801 int bits_big_endian = gdbarch_bits_big_endian (arch);
2802
2803 offsets = xmalloc ((op_end - op_ptr) * sizeof (int));
2804 cleanups = make_cleanup (xfree, offsets);
2805
2806 for (i = 0; i < op_end - op_ptr; ++i)
2807 offsets[i] = -1;
2808
2809 make_cleanup (VEC_cleanup (int), &dw_labels);
2810 make_cleanup (VEC_cleanup (int), &patches);
2811
2812 /* By default we are making an address. */
2813 loc->kind = axs_lvalue_memory;
2814
2815 while (op_ptr < op_end)
2816 {
2817 enum dwarf_location_atom op = *op_ptr;
2818 uint64_t uoffset, reg;
2819 int64_t offset;
2820 int i;
2821
2822 offsets[op_ptr - base] = expr->len;
2823 ++op_ptr;
2824
2825 /* Our basic approach to code generation is to map DWARF
2826 operations directly to AX operations. However, there are
2827 some differences.
2828
2829 First, DWARF works on address-sized units, but AX always uses
2830 LONGEST. For most operations we simply ignore this
2831 difference; instead we generate sign extensions as needed
2832 before division and comparison operations. It would be nice
2833 to omit the sign extensions, but there is no way to determine
2834 the size of the target's LONGEST. (This code uses the size
2835 of the host LONGEST in some cases -- that is a bug but it is
2836 difficult to fix.)
2837
2838 Second, some DWARF operations cannot be translated to AX.
2839 For these we simply fail. See
2840 http://sourceware.org/bugzilla/show_bug.cgi?id=11662. */
2841 switch (op)
2842 {
2843 case DW_OP_lit0:
2844 case DW_OP_lit1:
2845 case DW_OP_lit2:
2846 case DW_OP_lit3:
2847 case DW_OP_lit4:
2848 case DW_OP_lit5:
2849 case DW_OP_lit6:
2850 case DW_OP_lit7:
2851 case DW_OP_lit8:
2852 case DW_OP_lit9:
2853 case DW_OP_lit10:
2854 case DW_OP_lit11:
2855 case DW_OP_lit12:
2856 case DW_OP_lit13:
2857 case DW_OP_lit14:
2858 case DW_OP_lit15:
2859 case DW_OP_lit16:
2860 case DW_OP_lit17:
2861 case DW_OP_lit18:
2862 case DW_OP_lit19:
2863 case DW_OP_lit20:
2864 case DW_OP_lit21:
2865 case DW_OP_lit22:
2866 case DW_OP_lit23:
2867 case DW_OP_lit24:
2868 case DW_OP_lit25:
2869 case DW_OP_lit26:
2870 case DW_OP_lit27:
2871 case DW_OP_lit28:
2872 case DW_OP_lit29:
2873 case DW_OP_lit30:
2874 case DW_OP_lit31:
2875 ax_const_l (expr, op - DW_OP_lit0);
2876 break;
2877
2878 case DW_OP_addr:
2879 uoffset = extract_unsigned_integer (op_ptr, addr_size, byte_order);
2880 op_ptr += addr_size;
2881 /* Some versions of GCC emit DW_OP_addr before
2882 DW_OP_GNU_push_tls_address. In this case the value is an
2883 index, not an address. We don't support things like
2884 branching between the address and the TLS op. */
2885 if (op_ptr >= op_end || *op_ptr != DW_OP_GNU_push_tls_address)
2886 uoffset += dwarf2_per_cu_text_offset (per_cu);
2887 ax_const_l (expr, uoffset);
2888 break;
2889
2890 case DW_OP_const1u:
2891 ax_const_l (expr, extract_unsigned_integer (op_ptr, 1, byte_order));
2892 op_ptr += 1;
2893 break;
2894 case DW_OP_const1s:
2895 ax_const_l (expr, extract_signed_integer (op_ptr, 1, byte_order));
2896 op_ptr += 1;
2897 break;
2898 case DW_OP_const2u:
2899 ax_const_l (expr, extract_unsigned_integer (op_ptr, 2, byte_order));
2900 op_ptr += 2;
2901 break;
2902 case DW_OP_const2s:
2903 ax_const_l (expr, extract_signed_integer (op_ptr, 2, byte_order));
2904 op_ptr += 2;
2905 break;
2906 case DW_OP_const4u:
2907 ax_const_l (expr, extract_unsigned_integer (op_ptr, 4, byte_order));
2908 op_ptr += 4;
2909 break;
2910 case DW_OP_const4s:
2911 ax_const_l (expr, extract_signed_integer (op_ptr, 4, byte_order));
2912 op_ptr += 4;
2913 break;
2914 case DW_OP_const8u:
2915 ax_const_l (expr, extract_unsigned_integer (op_ptr, 8, byte_order));
2916 op_ptr += 8;
2917 break;
2918 case DW_OP_const8s:
2919 ax_const_l (expr, extract_signed_integer (op_ptr, 8, byte_order));
2920 op_ptr += 8;
2921 break;
2922 case DW_OP_constu:
2923 op_ptr = safe_read_uleb128 (op_ptr, op_end, &uoffset);
2924 ax_const_l (expr, uoffset);
2925 break;
2926 case DW_OP_consts:
2927 op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
2928 ax_const_l (expr, offset);
2929 break;
2930
2931 case DW_OP_reg0:
2932 case DW_OP_reg1:
2933 case DW_OP_reg2:
2934 case DW_OP_reg3:
2935 case DW_OP_reg4:
2936 case DW_OP_reg5:
2937 case DW_OP_reg6:
2938 case DW_OP_reg7:
2939 case DW_OP_reg8:
2940 case DW_OP_reg9:
2941 case DW_OP_reg10:
2942 case DW_OP_reg11:
2943 case DW_OP_reg12:
2944 case DW_OP_reg13:
2945 case DW_OP_reg14:
2946 case DW_OP_reg15:
2947 case DW_OP_reg16:
2948 case DW_OP_reg17:
2949 case DW_OP_reg18:
2950 case DW_OP_reg19:
2951 case DW_OP_reg20:
2952 case DW_OP_reg21:
2953 case DW_OP_reg22:
2954 case DW_OP_reg23:
2955 case DW_OP_reg24:
2956 case DW_OP_reg25:
2957 case DW_OP_reg26:
2958 case DW_OP_reg27:
2959 case DW_OP_reg28:
2960 case DW_OP_reg29:
2961 case DW_OP_reg30:
2962 case DW_OP_reg31:
2963 dwarf_expr_require_composition (op_ptr, op_end, "DW_OP_regx");
2964 loc->u.reg = dwarf2_reg_to_regnum_or_error (arch, op - DW_OP_reg0);
2965 loc->kind = axs_lvalue_register;
2966 break;
2967
2968 case DW_OP_regx:
2969 op_ptr = safe_read_uleb128 (op_ptr, op_end, &reg);
2970 dwarf_expr_require_composition (op_ptr, op_end, "DW_OP_regx");
2971 loc->u.reg = dwarf2_reg_to_regnum_or_error (arch, reg);
2972 loc->kind = axs_lvalue_register;
2973 break;
2974
2975 case DW_OP_implicit_value:
2976 {
2977 uint64_t len;
2978
2979 op_ptr = safe_read_uleb128 (op_ptr, op_end, &len);
2980 if (op_ptr + len > op_end)
2981 error (_("DW_OP_implicit_value: too few bytes available."));
2982 if (len > sizeof (ULONGEST))
2983 error (_("Cannot translate DW_OP_implicit_value of %d bytes"),
2984 (int) len);
2985
2986 ax_const_l (expr, extract_unsigned_integer (op_ptr, len,
2987 byte_order));
2988 op_ptr += len;
2989 dwarf_expr_require_composition (op_ptr, op_end,
2990 "DW_OP_implicit_value");
2991
2992 loc->kind = axs_rvalue;
2993 }
2994 break;
2995
2996 case DW_OP_stack_value:
2997 dwarf_expr_require_composition (op_ptr, op_end, "DW_OP_stack_value");
2998 loc->kind = axs_rvalue;
2999 break;
3000
3001 case DW_OP_breg0:
3002 case DW_OP_breg1:
3003 case DW_OP_breg2:
3004 case DW_OP_breg3:
3005 case DW_OP_breg4:
3006 case DW_OP_breg5:
3007 case DW_OP_breg6:
3008 case DW_OP_breg7:
3009 case DW_OP_breg8:
3010 case DW_OP_breg9:
3011 case DW_OP_breg10:
3012 case DW_OP_breg11:
3013 case DW_OP_breg12:
3014 case DW_OP_breg13:
3015 case DW_OP_breg14:
3016 case DW_OP_breg15:
3017 case DW_OP_breg16:
3018 case DW_OP_breg17:
3019 case DW_OP_breg18:
3020 case DW_OP_breg19:
3021 case DW_OP_breg20:
3022 case DW_OP_breg21:
3023 case DW_OP_breg22:
3024 case DW_OP_breg23:
3025 case DW_OP_breg24:
3026 case DW_OP_breg25:
3027 case DW_OP_breg26:
3028 case DW_OP_breg27:
3029 case DW_OP_breg28:
3030 case DW_OP_breg29:
3031 case DW_OP_breg30:
3032 case DW_OP_breg31:
3033 op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
3034 i = dwarf2_reg_to_regnum_or_error (arch, op - DW_OP_breg0);
3035 ax_reg (expr, i);
3036 if (offset != 0)
3037 {
3038 ax_const_l (expr, offset);
3039 ax_simple (expr, aop_add);
3040 }
3041 break;
3042 case DW_OP_bregx:
3043 {
3044 op_ptr = safe_read_uleb128 (op_ptr, op_end, &reg);
3045 op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
3046 i = dwarf2_reg_to_regnum_or_error (arch, reg);
3047 ax_reg (expr, i);
3048 if (offset != 0)
3049 {
3050 ax_const_l (expr, offset);
3051 ax_simple (expr, aop_add);
3052 }
3053 }
3054 break;
3055 case DW_OP_fbreg:
3056 {
3057 const gdb_byte *datastart;
3058 size_t datalen;
3059 const struct block *b;
3060 struct symbol *framefunc;
3061
3062 b = block_for_pc (expr->scope);
3063
3064 if (!b)
3065 error (_("No block found for address"));
3066
3067 framefunc = block_linkage_function (b);
3068
3069 if (!framefunc)
3070 error (_("No function found for block"));
3071
3072 func_get_frame_base_dwarf_block (framefunc, expr->scope,
3073 &datastart, &datalen);
3074
3075 op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
3076 dwarf2_compile_expr_to_ax (expr, loc, arch, addr_size, datastart,
3077 datastart + datalen, per_cu);
3078 if (loc->kind == axs_lvalue_register)
3079 require_rvalue (expr, loc);
3080
3081 if (offset != 0)
3082 {
3083 ax_const_l (expr, offset);
3084 ax_simple (expr, aop_add);
3085 }
3086
3087 loc->kind = axs_lvalue_memory;
3088 }
3089 break;
3090
3091 case DW_OP_dup:
3092 ax_simple (expr, aop_dup);
3093 break;
3094
3095 case DW_OP_drop:
3096 ax_simple (expr, aop_pop);
3097 break;
3098
3099 case DW_OP_pick:
3100 offset = *op_ptr++;
3101 ax_pick (expr, offset);
3102 break;
3103
3104 case DW_OP_swap:
3105 ax_simple (expr, aop_swap);
3106 break;
3107
3108 case DW_OP_over:
3109 ax_pick (expr, 1);
3110 break;
3111
3112 case DW_OP_rot:
3113 ax_simple (expr, aop_rot);
3114 break;
3115
3116 case DW_OP_deref:
3117 case DW_OP_deref_size:
3118 {
3119 int size;
3120
3121 if (op == DW_OP_deref_size)
3122 size = *op_ptr++;
3123 else
3124 size = addr_size;
3125
3126 if (size != 1 && size != 2 && size != 4 && size != 8)
3127 error (_("Unsupported size %d in %s"),
3128 size, get_DW_OP_name (op));
3129 access_memory (arch, expr, size * TARGET_CHAR_BIT);
3130 }
3131 break;
3132
3133 case DW_OP_abs:
3134 /* Sign extend the operand. */
3135 ax_ext (expr, addr_size_bits);
3136 ax_simple (expr, aop_dup);
3137 ax_const_l (expr, 0);
3138 ax_simple (expr, aop_less_signed);
3139 ax_simple (expr, aop_log_not);
3140 i = ax_goto (expr, aop_if_goto);
3141 /* We have to emit 0 - X. */
3142 ax_const_l (expr, 0);
3143 ax_simple (expr, aop_swap);
3144 ax_simple (expr, aop_sub);
3145 ax_label (expr, i, expr->len);
3146 break;
3147
3148 case DW_OP_neg:
3149 /* No need to sign extend here. */
3150 ax_const_l (expr, 0);
3151 ax_simple (expr, aop_swap);
3152 ax_simple (expr, aop_sub);
3153 break;
3154
3155 case DW_OP_not:
3156 /* Sign extend the operand. */
3157 ax_ext (expr, addr_size_bits);
3158 ax_simple (expr, aop_bit_not);
3159 break;
3160
3161 case DW_OP_plus_uconst:
3162 op_ptr = safe_read_uleb128 (op_ptr, op_end, &reg);
3163 /* It would be really weird to emit `DW_OP_plus_uconst 0',
3164 but we micro-optimize anyhow. */
3165 if (reg != 0)
3166 {
3167 ax_const_l (expr, reg);
3168 ax_simple (expr, aop_add);
3169 }
3170 break;
3171
3172 case DW_OP_and:
3173 ax_simple (expr, aop_bit_and);
3174 break;
3175
3176 case DW_OP_div:
3177 /* Sign extend the operands. */
3178 ax_ext (expr, addr_size_bits);
3179 ax_simple (expr, aop_swap);
3180 ax_ext (expr, addr_size_bits);
3181 ax_simple (expr, aop_swap);
3182 ax_simple (expr, aop_div_signed);
3183 break;
3184
3185 case DW_OP_minus:
3186 ax_simple (expr, aop_sub);
3187 break;
3188
3189 case DW_OP_mod:
3190 ax_simple (expr, aop_rem_unsigned);
3191 break;
3192
3193 case DW_OP_mul:
3194 ax_simple (expr, aop_mul);
3195 break;
3196
3197 case DW_OP_or:
3198 ax_simple (expr, aop_bit_or);
3199 break;
3200
3201 case DW_OP_plus:
3202 ax_simple (expr, aop_add);
3203 break;
3204
3205 case DW_OP_shl:
3206 ax_simple (expr, aop_lsh);
3207 break;
3208
3209 case DW_OP_shr:
3210 ax_simple (expr, aop_rsh_unsigned);
3211 break;
3212
3213 case DW_OP_shra:
3214 ax_simple (expr, aop_rsh_signed);
3215 break;
3216
3217 case DW_OP_xor:
3218 ax_simple (expr, aop_bit_xor);
3219 break;
3220
3221 case DW_OP_le:
3222 /* Sign extend the operands. */
3223 ax_ext (expr, addr_size_bits);
3224 ax_simple (expr, aop_swap);
3225 ax_ext (expr, addr_size_bits);
3226 /* Note no swap here: A <= B is !(B < A). */
3227 ax_simple (expr, aop_less_signed);
3228 ax_simple (expr, aop_log_not);
3229 break;
3230
3231 case DW_OP_ge:
3232 /* Sign extend the operands. */
3233 ax_ext (expr, addr_size_bits);
3234 ax_simple (expr, aop_swap);
3235 ax_ext (expr, addr_size_bits);
3236 ax_simple (expr, aop_swap);
3237 /* A >= B is !(A < B). */
3238 ax_simple (expr, aop_less_signed);
3239 ax_simple (expr, aop_log_not);
3240 break;
3241
3242 case DW_OP_eq:
3243 /* Sign extend the operands. */
3244 ax_ext (expr, addr_size_bits);
3245 ax_simple (expr, aop_swap);
3246 ax_ext (expr, addr_size_bits);
3247 /* No need for a second swap here. */
3248 ax_simple (expr, aop_equal);
3249 break;
3250
3251 case DW_OP_lt:
3252 /* Sign extend the operands. */
3253 ax_ext (expr, addr_size_bits);
3254 ax_simple (expr, aop_swap);
3255 ax_ext (expr, addr_size_bits);
3256 ax_simple (expr, aop_swap);
3257 ax_simple (expr, aop_less_signed);
3258 break;
3259
3260 case DW_OP_gt:
3261 /* Sign extend the operands. */
3262 ax_ext (expr, addr_size_bits);
3263 ax_simple (expr, aop_swap);
3264 ax_ext (expr, addr_size_bits);
3265 /* Note no swap here: A > B is B < A. */
3266 ax_simple (expr, aop_less_signed);
3267 break;
3268
3269 case DW_OP_ne:
3270 /* Sign extend the operands. */
3271 ax_ext (expr, addr_size_bits);
3272 ax_simple (expr, aop_swap);
3273 ax_ext (expr, addr_size_bits);
3274 /* No need for a swap here. */
3275 ax_simple (expr, aop_equal);
3276 ax_simple (expr, aop_log_not);
3277 break;
3278
3279 case DW_OP_call_frame_cfa:
3280 {
3281 int regnum;
3282 CORE_ADDR text_offset;
3283 LONGEST off;
3284 const gdb_byte *cfa_start, *cfa_end;
3285
3286 if (dwarf2_fetch_cfa_info (arch, expr->scope, per_cu,
3287 &regnum, &off,
3288 &text_offset, &cfa_start, &cfa_end))
3289 {
3290 /* Register. */
3291 ax_reg (expr, regnum);
3292 if (off != 0)
3293 {
3294 ax_const_l (expr, off);
3295 ax_simple (expr, aop_add);
3296 }
3297 }
3298 else
3299 {
3300 /* Another expression. */
3301 ax_const_l (expr, text_offset);
3302 dwarf2_compile_expr_to_ax (expr, loc, arch, addr_size,
3303 cfa_start, cfa_end, per_cu);
3304 }
3305
3306 loc->kind = axs_lvalue_memory;
3307 }
3308 break;
3309
3310 case DW_OP_GNU_push_tls_address:
3311 unimplemented (op);
3312 break;
3313
3314 case DW_OP_push_object_address:
3315 unimplemented (op);
3316 break;
3317
3318 case DW_OP_skip:
3319 offset = extract_signed_integer (op_ptr, 2, byte_order);
3320 op_ptr += 2;
3321 i = ax_goto (expr, aop_goto);
3322 VEC_safe_push (int, dw_labels, op_ptr + offset - base);
3323 VEC_safe_push (int, patches, i);
3324 break;
3325
3326 case DW_OP_bra:
3327 offset = extract_signed_integer (op_ptr, 2, byte_order);
3328 op_ptr += 2;
3329 /* Zero extend the operand. */
3330 ax_zero_ext (expr, addr_size_bits);
3331 i = ax_goto (expr, aop_if_goto);
3332 VEC_safe_push (int, dw_labels, op_ptr + offset - base);
3333 VEC_safe_push (int, patches, i);
3334 break;
3335
3336 case DW_OP_nop:
3337 break;
3338
3339 case DW_OP_piece:
3340 case DW_OP_bit_piece:
3341 {
3342 uint64_t size, offset;
3343
3344 if (op_ptr - 1 == previous_piece)
3345 error (_("Cannot translate empty pieces to agent expressions"));
3346 previous_piece = op_ptr - 1;
3347
3348 op_ptr = safe_read_uleb128 (op_ptr, op_end, &size);
3349 if (op == DW_OP_piece)
3350 {
3351 size *= 8;
3352 offset = 0;
3353 }
3354 else
3355 op_ptr = safe_read_uleb128 (op_ptr, op_end, &offset);
3356
3357 if (bits_collected + size > 8 * sizeof (LONGEST))
3358 error (_("Expression pieces exceed word size"));
3359
3360 /* Access the bits. */
3361 switch (loc->kind)
3362 {
3363 case axs_lvalue_register:
3364 ax_reg (expr, loc->u.reg);
3365 break;
3366
3367 case axs_lvalue_memory:
3368 /* Offset the pointer, if needed. */
3369 if (offset > 8)
3370 {
3371 ax_const_l (expr, offset / 8);
3372 ax_simple (expr, aop_add);
3373 offset %= 8;
3374 }
3375 access_memory (arch, expr, size);
3376 break;
3377 }
3378
3379 /* For a bits-big-endian target, shift up what we already
3380 have. For a bits-little-endian target, shift up the
3381 new data. Note that there is a potential bug here if
3382 the DWARF expression leaves multiple values on the
3383 stack. */
3384 if (bits_collected > 0)
3385 {
3386 if (bits_big_endian)
3387 {
3388 ax_simple (expr, aop_swap);
3389 ax_const_l (expr, size);
3390 ax_simple (expr, aop_lsh);
3391 /* We don't need a second swap here, because
3392 aop_bit_or is symmetric. */
3393 }
3394 else
3395 {
3396 ax_const_l (expr, size);
3397 ax_simple (expr, aop_lsh);
3398 }
3399 ax_simple (expr, aop_bit_or);
3400 }
3401
3402 bits_collected += size;
3403 loc->kind = axs_rvalue;
3404 }
3405 break;
3406
3407 case DW_OP_GNU_uninit:
3408 unimplemented (op);
3409
3410 case DW_OP_call2:
3411 case DW_OP_call4:
3412 {
3413 struct dwarf2_locexpr_baton block;
3414 int size = (op == DW_OP_call2 ? 2 : 4);
3415 cu_offset offset;
3416
3417 uoffset = extract_unsigned_integer (op_ptr, size, byte_order);
3418 op_ptr += size;
3419
3420 offset.cu_off = uoffset;
3421 block = dwarf2_fetch_die_loc_cu_off (offset, per_cu,
3422 get_ax_pc, expr);
3423
3424 /* DW_OP_call_ref is currently not supported. */
3425 gdb_assert (block.per_cu == per_cu);
3426
3427 dwarf2_compile_expr_to_ax (expr, loc, arch, addr_size,
3428 block.data, block.data + block.size,
3429 per_cu);
3430 }
3431 break;
3432
3433 case DW_OP_call_ref:
3434 unimplemented (op);
3435
3436 default:
3437 unimplemented (op);
3438 }
3439 }
3440
3441 /* Patch all the branches we emitted. */
3442 for (i = 0; i < VEC_length (int, patches); ++i)
3443 {
3444 int targ = offsets[VEC_index (int, dw_labels, i)];
3445 if (targ == -1)
3446 internal_error (__FILE__, __LINE__, _("invalid label"));
3447 ax_label (expr, VEC_index (int, patches, i), targ);
3448 }
3449
3450 do_cleanups (cleanups);
3451 }
3452
3453 \f
3454 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
3455 evaluator to calculate the location. */
3456 static struct value *
3457 locexpr_read_variable (struct symbol *symbol, struct frame_info *frame)
3458 {
3459 struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
3460 struct value *val;
3461
3462 val = dwarf2_evaluate_loc_desc (SYMBOL_TYPE (symbol), frame, dlbaton->data,
3463 dlbaton->size, dlbaton->per_cu);
3464
3465 return val;
3466 }
3467
3468 /* Return the value of SYMBOL in FRAME at (callee) FRAME's function
3469 entry. SYMBOL should be a function parameter, otherwise NO_ENTRY_VALUE_ERROR
3470 will be thrown. */
3471
3472 static struct value *
3473 locexpr_read_variable_at_entry (struct symbol *symbol, struct frame_info *frame)
3474 {
3475 struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
3476
3477 return value_of_dwarf_block_entry (SYMBOL_TYPE (symbol), frame, dlbaton->data,
3478 dlbaton->size);
3479 }
3480
3481 /* Return non-zero iff we need a frame to evaluate SYMBOL. */
3482 static int
3483 locexpr_read_needs_frame (struct symbol *symbol)
3484 {
3485 struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
3486
3487 return dwarf2_loc_desc_needs_frame (dlbaton->data, dlbaton->size,
3488 dlbaton->per_cu);
3489 }
3490
3491 /* Return true if DATA points to the end of a piece. END is one past
3492 the last byte in the expression. */
3493
3494 static int
3495 piece_end_p (const gdb_byte *data, const gdb_byte *end)
3496 {
3497 return data == end || data[0] == DW_OP_piece || data[0] == DW_OP_bit_piece;
3498 }
3499
3500 /* Helper for locexpr_describe_location_piece that finds the name of a
3501 DWARF register. */
3502
3503 static const char *
3504 locexpr_regname (struct gdbarch *gdbarch, int dwarf_regnum)
3505 {
3506 int regnum;
3507
3508 regnum = gdbarch_dwarf2_reg_to_regnum (gdbarch, dwarf_regnum);
3509 return gdbarch_register_name (gdbarch, regnum);
3510 }
3511
3512 /* Nicely describe a single piece of a location, returning an updated
3513 position in the bytecode sequence. This function cannot recognize
3514 all locations; if a location is not recognized, it simply returns
3515 DATA. If there is an error during reading, e.g. we run off the end
3516 of the buffer, an error is thrown. */
3517
3518 static const gdb_byte *
3519 locexpr_describe_location_piece (struct symbol *symbol, struct ui_file *stream,
3520 CORE_ADDR addr, struct objfile *objfile,
3521 struct dwarf2_per_cu_data *per_cu,
3522 const gdb_byte *data, const gdb_byte *end,
3523 unsigned int addr_size)
3524 {
3525 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3526 size_t leb128_size;
3527
3528 if (data[0] >= DW_OP_reg0 && data[0] <= DW_OP_reg31)
3529 {
3530 fprintf_filtered (stream, _("a variable in $%s"),
3531 locexpr_regname (gdbarch, data[0] - DW_OP_reg0));
3532 data += 1;
3533 }
3534 else if (data[0] == DW_OP_regx)
3535 {
3536 uint64_t reg;
3537
3538 data = safe_read_uleb128 (data + 1, end, &reg);
3539 fprintf_filtered (stream, _("a variable in $%s"),
3540 locexpr_regname (gdbarch, reg));
3541 }
3542 else if (data[0] == DW_OP_fbreg)
3543 {
3544 const struct block *b;
3545 struct symbol *framefunc;
3546 int frame_reg = 0;
3547 int64_t frame_offset;
3548 const gdb_byte *base_data, *new_data, *save_data = data;
3549 size_t base_size;
3550 int64_t base_offset = 0;
3551
3552 new_data = safe_read_sleb128 (data + 1, end, &frame_offset);
3553 if (!piece_end_p (new_data, end))
3554 return data;
3555 data = new_data;
3556
3557 b = block_for_pc (addr);
3558
3559 if (!b)
3560 error (_("No block found for address for symbol \"%s\"."),
3561 SYMBOL_PRINT_NAME (symbol));
3562
3563 framefunc = block_linkage_function (b);
3564
3565 if (!framefunc)
3566 error (_("No function found for block for symbol \"%s\"."),
3567 SYMBOL_PRINT_NAME (symbol));
3568
3569 func_get_frame_base_dwarf_block (framefunc, addr, &base_data, &base_size);
3570
3571 if (base_data[0] >= DW_OP_breg0 && base_data[0] <= DW_OP_breg31)
3572 {
3573 const gdb_byte *buf_end;
3574
3575 frame_reg = base_data[0] - DW_OP_breg0;
3576 buf_end = safe_read_sleb128 (base_data + 1, base_data + base_size,
3577 &base_offset);
3578 if (buf_end != base_data + base_size)
3579 error (_("Unexpected opcode after "
3580 "DW_OP_breg%u for symbol \"%s\"."),
3581 frame_reg, SYMBOL_PRINT_NAME (symbol));
3582 }
3583 else if (base_data[0] >= DW_OP_reg0 && base_data[0] <= DW_OP_reg31)
3584 {
3585 /* The frame base is just the register, with no offset. */
3586 frame_reg = base_data[0] - DW_OP_reg0;
3587 base_offset = 0;
3588 }
3589 else
3590 {
3591 /* We don't know what to do with the frame base expression,
3592 so we can't trace this variable; give up. */
3593 return save_data;
3594 }
3595
3596 fprintf_filtered (stream,
3597 _("a variable at frame base reg $%s offset %s+%s"),
3598 locexpr_regname (gdbarch, frame_reg),
3599 plongest (base_offset), plongest (frame_offset));
3600 }
3601 else if (data[0] >= DW_OP_breg0 && data[0] <= DW_OP_breg31
3602 && piece_end_p (data, end))
3603 {
3604 int64_t offset;
3605
3606 data = safe_read_sleb128 (data + 1, end, &offset);
3607
3608 fprintf_filtered (stream,
3609 _("a variable at offset %s from base reg $%s"),
3610 plongest (offset),
3611 locexpr_regname (gdbarch, data[0] - DW_OP_breg0));
3612 }
3613
3614 /* The location expression for a TLS variable looks like this (on a
3615 64-bit LE machine):
3616
3617 DW_AT_location : 10 byte block: 3 4 0 0 0 0 0 0 0 e0
3618 (DW_OP_addr: 4; DW_OP_GNU_push_tls_address)
3619
3620 0x3 is the encoding for DW_OP_addr, which has an operand as long
3621 as the size of an address on the target machine (here is 8
3622 bytes). Note that more recent version of GCC emit DW_OP_const4u
3623 or DW_OP_const8u, depending on address size, rather than
3624 DW_OP_addr. 0xe0 is the encoding for DW_OP_GNU_push_tls_address.
3625 The operand represents the offset at which the variable is within
3626 the thread local storage. */
3627
3628 else if (data + 1 + addr_size < end
3629 && (data[0] == DW_OP_addr
3630 || (addr_size == 4 && data[0] == DW_OP_const4u)
3631 || (addr_size == 8 && data[0] == DW_OP_const8u))
3632 && data[1 + addr_size] == DW_OP_GNU_push_tls_address
3633 && piece_end_p (data + 2 + addr_size, end))
3634 {
3635 ULONGEST offset;
3636 offset = extract_unsigned_integer (data + 1, addr_size,
3637 gdbarch_byte_order (gdbarch));
3638
3639 fprintf_filtered (stream,
3640 _("a thread-local variable at offset 0x%s "
3641 "in the thread-local storage for `%s'"),
3642 phex_nz (offset, addr_size), objfile_name (objfile));
3643
3644 data += 1 + addr_size + 1;
3645 }
3646
3647 /* With -gsplit-dwarf a TLS variable can also look like this:
3648 DW_AT_location : 3 byte block: fc 4 e0
3649 (DW_OP_GNU_const_index: 4;
3650 DW_OP_GNU_push_tls_address) */
3651 else if (data + 3 <= end
3652 && data + 1 + (leb128_size = skip_leb128 (data + 1, end)) < end
3653 && data[0] == DW_OP_GNU_const_index
3654 && leb128_size > 0
3655 && data[1 + leb128_size] == DW_OP_GNU_push_tls_address
3656 && piece_end_p (data + 2 + leb128_size, end))
3657 {
3658 uint64_t offset;
3659
3660 data = safe_read_uleb128 (data + 1, end, &offset);
3661 offset = dwarf2_read_addr_index (per_cu, offset);
3662 fprintf_filtered (stream,
3663 _("a thread-local variable at offset 0x%s "
3664 "in the thread-local storage for `%s'"),
3665 phex_nz (offset, addr_size), objfile_name (objfile));
3666 ++data;
3667 }
3668
3669 else if (data[0] >= DW_OP_lit0
3670 && data[0] <= DW_OP_lit31
3671 && data + 1 < end
3672 && data[1] == DW_OP_stack_value)
3673 {
3674 fprintf_filtered (stream, _("the constant %d"), data[0] - DW_OP_lit0);
3675 data += 2;
3676 }
3677
3678 return data;
3679 }
3680
3681 /* Disassemble an expression, stopping at the end of a piece or at the
3682 end of the expression. Returns a pointer to the next unread byte
3683 in the input expression. If ALL is nonzero, then this function
3684 will keep going until it reaches the end of the expression.
3685 If there is an error during reading, e.g. we run off the end
3686 of the buffer, an error is thrown. */
3687
3688 static const gdb_byte *
3689 disassemble_dwarf_expression (struct ui_file *stream,
3690 struct gdbarch *arch, unsigned int addr_size,
3691 int offset_size, const gdb_byte *start,
3692 const gdb_byte *data, const gdb_byte *end,
3693 int indent, int all,
3694 struct dwarf2_per_cu_data *per_cu)
3695 {
3696 while (data < end
3697 && (all
3698 || (data[0] != DW_OP_piece && data[0] != DW_OP_bit_piece)))
3699 {
3700 enum dwarf_location_atom op = *data++;
3701 uint64_t ul;
3702 int64_t l;
3703 const char *name;
3704
3705 name = get_DW_OP_name (op);
3706
3707 if (!name)
3708 error (_("Unrecognized DWARF opcode 0x%02x at %ld"),
3709 op, (long) (data - 1 - start));
3710 fprintf_filtered (stream, " %*ld: %s", indent + 4,
3711 (long) (data - 1 - start), name);
3712
3713 switch (op)
3714 {
3715 case DW_OP_addr:
3716 ul = extract_unsigned_integer (data, addr_size,
3717 gdbarch_byte_order (arch));
3718 data += addr_size;
3719 fprintf_filtered (stream, " 0x%s", phex_nz (ul, addr_size));
3720 break;
3721
3722 case DW_OP_const1u:
3723 ul = extract_unsigned_integer (data, 1, gdbarch_byte_order (arch));
3724 data += 1;
3725 fprintf_filtered (stream, " %s", pulongest (ul));
3726 break;
3727 case DW_OP_const1s:
3728 l = extract_signed_integer (data, 1, gdbarch_byte_order (arch));
3729 data += 1;
3730 fprintf_filtered (stream, " %s", plongest (l));
3731 break;
3732 case DW_OP_const2u:
3733 ul = extract_unsigned_integer (data, 2, gdbarch_byte_order (arch));
3734 data += 2;
3735 fprintf_filtered (stream, " %s", pulongest (ul));
3736 break;
3737 case DW_OP_const2s:
3738 l = extract_signed_integer (data, 2, gdbarch_byte_order (arch));
3739 data += 2;
3740 fprintf_filtered (stream, " %s", plongest (l));
3741 break;
3742 case DW_OP_const4u:
3743 ul = extract_unsigned_integer (data, 4, gdbarch_byte_order (arch));
3744 data += 4;
3745 fprintf_filtered (stream, " %s", pulongest (ul));
3746 break;
3747 case DW_OP_const4s:
3748 l = extract_signed_integer (data, 4, gdbarch_byte_order (arch));
3749 data += 4;
3750 fprintf_filtered (stream, " %s", plongest (l));
3751 break;
3752 case DW_OP_const8u:
3753 ul = extract_unsigned_integer (data, 8, gdbarch_byte_order (arch));
3754 data += 8;
3755 fprintf_filtered (stream, " %s", pulongest (ul));
3756 break;
3757 case DW_OP_const8s:
3758 l = extract_signed_integer (data, 8, gdbarch_byte_order (arch));
3759 data += 8;
3760 fprintf_filtered (stream, " %s", plongest (l));
3761 break;
3762 case DW_OP_constu:
3763 data = safe_read_uleb128 (data, end, &ul);
3764 fprintf_filtered (stream, " %s", pulongest (ul));
3765 break;
3766 case DW_OP_consts:
3767 data = safe_read_sleb128 (data, end, &l);
3768 fprintf_filtered (stream, " %s", plongest (l));
3769 break;
3770
3771 case DW_OP_reg0:
3772 case DW_OP_reg1:
3773 case DW_OP_reg2:
3774 case DW_OP_reg3:
3775 case DW_OP_reg4:
3776 case DW_OP_reg5:
3777 case DW_OP_reg6:
3778 case DW_OP_reg7:
3779 case DW_OP_reg8:
3780 case DW_OP_reg9:
3781 case DW_OP_reg10:
3782 case DW_OP_reg11:
3783 case DW_OP_reg12:
3784 case DW_OP_reg13:
3785 case DW_OP_reg14:
3786 case DW_OP_reg15:
3787 case DW_OP_reg16:
3788 case DW_OP_reg17:
3789 case DW_OP_reg18:
3790 case DW_OP_reg19:
3791 case DW_OP_reg20:
3792 case DW_OP_reg21:
3793 case DW_OP_reg22:
3794 case DW_OP_reg23:
3795 case DW_OP_reg24:
3796 case DW_OP_reg25:
3797 case DW_OP_reg26:
3798 case DW_OP_reg27:
3799 case DW_OP_reg28:
3800 case DW_OP_reg29:
3801 case DW_OP_reg30:
3802 case DW_OP_reg31:
3803 fprintf_filtered (stream, " [$%s]",
3804 locexpr_regname (arch, op - DW_OP_reg0));
3805 break;
3806
3807 case DW_OP_regx:
3808 data = safe_read_uleb128 (data, end, &ul);
3809 fprintf_filtered (stream, " %s [$%s]", pulongest (ul),
3810 locexpr_regname (arch, (int) ul));
3811 break;
3812
3813 case DW_OP_implicit_value:
3814 data = safe_read_uleb128 (data, end, &ul);
3815 data += ul;
3816 fprintf_filtered (stream, " %s", pulongest (ul));
3817 break;
3818
3819 case DW_OP_breg0:
3820 case DW_OP_breg1:
3821 case DW_OP_breg2:
3822 case DW_OP_breg3:
3823 case DW_OP_breg4:
3824 case DW_OP_breg5:
3825 case DW_OP_breg6:
3826 case DW_OP_breg7:
3827 case DW_OP_breg8:
3828 case DW_OP_breg9:
3829 case DW_OP_breg10:
3830 case DW_OP_breg11:
3831 case DW_OP_breg12:
3832 case DW_OP_breg13:
3833 case DW_OP_breg14:
3834 case DW_OP_breg15:
3835 case DW_OP_breg16:
3836 case DW_OP_breg17:
3837 case DW_OP_breg18:
3838 case DW_OP_breg19:
3839 case DW_OP_breg20:
3840 case DW_OP_breg21:
3841 case DW_OP_breg22:
3842 case DW_OP_breg23:
3843 case DW_OP_breg24:
3844 case DW_OP_breg25:
3845 case DW_OP_breg26:
3846 case DW_OP_breg27:
3847 case DW_OP_breg28:
3848 case DW_OP_breg29:
3849 case DW_OP_breg30:
3850 case DW_OP_breg31:
3851 data = safe_read_sleb128 (data, end, &l);
3852 fprintf_filtered (stream, " %s [$%s]", plongest (l),
3853 locexpr_regname (arch, op - DW_OP_breg0));
3854 break;
3855
3856 case DW_OP_bregx:
3857 data = safe_read_uleb128 (data, end, &ul);
3858 data = safe_read_sleb128 (data, end, &l);
3859 fprintf_filtered (stream, " register %s [$%s] offset %s",
3860 pulongest (ul),
3861 locexpr_regname (arch, (int) ul),
3862 plongest (l));
3863 break;
3864
3865 case DW_OP_fbreg:
3866 data = safe_read_sleb128 (data, end, &l);
3867 fprintf_filtered (stream, " %s", plongest (l));
3868 break;
3869
3870 case DW_OP_xderef_size:
3871 case DW_OP_deref_size:
3872 case DW_OP_pick:
3873 fprintf_filtered (stream, " %d", *data);
3874 ++data;
3875 break;
3876
3877 case DW_OP_plus_uconst:
3878 data = safe_read_uleb128 (data, end, &ul);
3879 fprintf_filtered (stream, " %s", pulongest (ul));
3880 break;
3881
3882 case DW_OP_skip:
3883 l = extract_signed_integer (data, 2, gdbarch_byte_order (arch));
3884 data += 2;
3885 fprintf_filtered (stream, " to %ld",
3886 (long) (data + l - start));
3887 break;
3888
3889 case DW_OP_bra:
3890 l = extract_signed_integer (data, 2, gdbarch_byte_order (arch));
3891 data += 2;
3892 fprintf_filtered (stream, " %ld",
3893 (long) (data + l - start));
3894 break;
3895
3896 case DW_OP_call2:
3897 ul = extract_unsigned_integer (data, 2, gdbarch_byte_order (arch));
3898 data += 2;
3899 fprintf_filtered (stream, " offset %s", phex_nz (ul, 2));
3900 break;
3901
3902 case DW_OP_call4:
3903 ul = extract_unsigned_integer (data, 4, gdbarch_byte_order (arch));
3904 data += 4;
3905 fprintf_filtered (stream, " offset %s", phex_nz (ul, 4));
3906 break;
3907
3908 case DW_OP_call_ref:
3909 ul = extract_unsigned_integer (data, offset_size,
3910 gdbarch_byte_order (arch));
3911 data += offset_size;
3912 fprintf_filtered (stream, " offset %s", phex_nz (ul, offset_size));
3913 break;
3914
3915 case DW_OP_piece:
3916 data = safe_read_uleb128 (data, end, &ul);
3917 fprintf_filtered (stream, " %s (bytes)", pulongest (ul));
3918 break;
3919
3920 case DW_OP_bit_piece:
3921 {
3922 uint64_t offset;
3923
3924 data = safe_read_uleb128 (data, end, &ul);
3925 data = safe_read_uleb128 (data, end, &offset);
3926 fprintf_filtered (stream, " size %s offset %s (bits)",
3927 pulongest (ul), pulongest (offset));
3928 }
3929 break;
3930
3931 case DW_OP_GNU_implicit_pointer:
3932 {
3933 ul = extract_unsigned_integer (data, offset_size,
3934 gdbarch_byte_order (arch));
3935 data += offset_size;
3936
3937 data = safe_read_sleb128 (data, end, &l);
3938
3939 fprintf_filtered (stream, " DIE %s offset %s",
3940 phex_nz (ul, offset_size),
3941 plongest (l));
3942 }
3943 break;
3944
3945 case DW_OP_GNU_deref_type:
3946 {
3947 int addr_size = *data++;
3948 cu_offset offset;
3949 struct type *type;
3950
3951 data = safe_read_uleb128 (data, end, &ul);
3952 offset.cu_off = ul;
3953 type = dwarf2_get_die_type (offset, per_cu);
3954 fprintf_filtered (stream, "<");
3955 type_print (type, "", stream, -1);
3956 fprintf_filtered (stream, " [0x%s]> %d", phex_nz (offset.cu_off, 0),
3957 addr_size);
3958 }
3959 break;
3960
3961 case DW_OP_GNU_const_type:
3962 {
3963 cu_offset type_die;
3964 struct type *type;
3965
3966 data = safe_read_uleb128 (data, end, &ul);
3967 type_die.cu_off = ul;
3968 type = dwarf2_get_die_type (type_die, per_cu);
3969 fprintf_filtered (stream, "<");
3970 type_print (type, "", stream, -1);
3971 fprintf_filtered (stream, " [0x%s]>", phex_nz (type_die.cu_off, 0));
3972 }
3973 break;
3974
3975 case DW_OP_GNU_regval_type:
3976 {
3977 uint64_t reg;
3978 cu_offset type_die;
3979 struct type *type;
3980
3981 data = safe_read_uleb128 (data, end, &reg);
3982 data = safe_read_uleb128 (data, end, &ul);
3983 type_die.cu_off = ul;
3984
3985 type = dwarf2_get_die_type (type_die, per_cu);
3986 fprintf_filtered (stream, "<");
3987 type_print (type, "", stream, -1);
3988 fprintf_filtered (stream, " [0x%s]> [$%s]",
3989 phex_nz (type_die.cu_off, 0),
3990 locexpr_regname (arch, reg));
3991 }
3992 break;
3993
3994 case DW_OP_GNU_convert:
3995 case DW_OP_GNU_reinterpret:
3996 {
3997 cu_offset type_die;
3998
3999 data = safe_read_uleb128 (data, end, &ul);
4000 type_die.cu_off = ul;
4001
4002 if (type_die.cu_off == 0)
4003 fprintf_filtered (stream, "<0>");
4004 else
4005 {
4006 struct type *type;
4007
4008 type = dwarf2_get_die_type (type_die, per_cu);
4009 fprintf_filtered (stream, "<");
4010 type_print (type, "", stream, -1);
4011 fprintf_filtered (stream, " [0x%s]>", phex_nz (type_die.cu_off, 0));
4012 }
4013 }
4014 break;
4015
4016 case DW_OP_GNU_entry_value:
4017 data = safe_read_uleb128 (data, end, &ul);
4018 fputc_filtered ('\n', stream);
4019 disassemble_dwarf_expression (stream, arch, addr_size, offset_size,
4020 start, data, data + ul, indent + 2,
4021 all, per_cu);
4022 data += ul;
4023 continue;
4024
4025 case DW_OP_GNU_parameter_ref:
4026 ul = extract_unsigned_integer (data, 4, gdbarch_byte_order (arch));
4027 data += 4;
4028 fprintf_filtered (stream, " offset %s", phex_nz (ul, 4));
4029 break;
4030
4031 case DW_OP_GNU_addr_index:
4032 data = safe_read_uleb128 (data, end, &ul);
4033 ul = dwarf2_read_addr_index (per_cu, ul);
4034 fprintf_filtered (stream, " 0x%s", phex_nz (ul, addr_size));
4035 break;
4036 case DW_OP_GNU_const_index:
4037 data = safe_read_uleb128 (data, end, &ul);
4038 ul = dwarf2_read_addr_index (per_cu, ul);
4039 fprintf_filtered (stream, " %s", pulongest (ul));
4040 break;
4041 }
4042
4043 fprintf_filtered (stream, "\n");
4044 }
4045
4046 return data;
4047 }
4048
4049 /* Describe a single location, which may in turn consist of multiple
4050 pieces. */
4051
4052 static void
4053 locexpr_describe_location_1 (struct symbol *symbol, CORE_ADDR addr,
4054 struct ui_file *stream,
4055 const gdb_byte *data, size_t size,
4056 struct objfile *objfile, unsigned int addr_size,
4057 int offset_size, struct dwarf2_per_cu_data *per_cu)
4058 {
4059 const gdb_byte *end = data + size;
4060 int first_piece = 1, bad = 0;
4061
4062 while (data < end)
4063 {
4064 const gdb_byte *here = data;
4065 int disassemble = 1;
4066
4067 if (first_piece)
4068 first_piece = 0;
4069 else
4070 fprintf_filtered (stream, _(", and "));
4071
4072 if (!dwarf2_always_disassemble)
4073 {
4074 data = locexpr_describe_location_piece (symbol, stream,
4075 addr, objfile, per_cu,
4076 data, end, addr_size);
4077 /* If we printed anything, or if we have an empty piece,
4078 then don't disassemble. */
4079 if (data != here
4080 || data[0] == DW_OP_piece
4081 || data[0] == DW_OP_bit_piece)
4082 disassemble = 0;
4083 }
4084 if (disassemble)
4085 {
4086 fprintf_filtered (stream, _("a complex DWARF expression:\n"));
4087 data = disassemble_dwarf_expression (stream,
4088 get_objfile_arch (objfile),
4089 addr_size, offset_size, data,
4090 data, end, 0,
4091 dwarf2_always_disassemble,
4092 per_cu);
4093 }
4094
4095 if (data < end)
4096 {
4097 int empty = data == here;
4098
4099 if (disassemble)
4100 fprintf_filtered (stream, " ");
4101 if (data[0] == DW_OP_piece)
4102 {
4103 uint64_t bytes;
4104
4105 data = safe_read_uleb128 (data + 1, end, &bytes);
4106
4107 if (empty)
4108 fprintf_filtered (stream, _("an empty %s-byte piece"),
4109 pulongest (bytes));
4110 else
4111 fprintf_filtered (stream, _(" [%s-byte piece]"),
4112 pulongest (bytes));
4113 }
4114 else if (data[0] == DW_OP_bit_piece)
4115 {
4116 uint64_t bits, offset;
4117
4118 data = safe_read_uleb128 (data + 1, end, &bits);
4119 data = safe_read_uleb128 (data, end, &offset);
4120
4121 if (empty)
4122 fprintf_filtered (stream,
4123 _("an empty %s-bit piece"),
4124 pulongest (bits));
4125 else
4126 fprintf_filtered (stream,
4127 _(" [%s-bit piece, offset %s bits]"),
4128 pulongest (bits), pulongest (offset));
4129 }
4130 else
4131 {
4132 bad = 1;
4133 break;
4134 }
4135 }
4136 }
4137
4138 if (bad || data > end)
4139 error (_("Corrupted DWARF2 expression for \"%s\"."),
4140 SYMBOL_PRINT_NAME (symbol));
4141 }
4142
4143 /* Print a natural-language description of SYMBOL to STREAM. This
4144 version is for a symbol with a single location. */
4145
4146 static void
4147 locexpr_describe_location (struct symbol *symbol, CORE_ADDR addr,
4148 struct ui_file *stream)
4149 {
4150 struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
4151 struct objfile *objfile = dwarf2_per_cu_objfile (dlbaton->per_cu);
4152 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4153 int offset_size = dwarf2_per_cu_offset_size (dlbaton->per_cu);
4154
4155 locexpr_describe_location_1 (symbol, addr, stream,
4156 dlbaton->data, dlbaton->size,
4157 objfile, addr_size, offset_size,
4158 dlbaton->per_cu);
4159 }
4160
4161 /* Describe the location of SYMBOL as an agent value in VALUE, generating
4162 any necessary bytecode in AX. */
4163
4164 static void
4165 locexpr_tracepoint_var_ref (struct symbol *symbol, struct gdbarch *gdbarch,
4166 struct agent_expr *ax, struct axs_value *value)
4167 {
4168 struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
4169 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4170
4171 if (dlbaton->size == 0)
4172 value->optimized_out = 1;
4173 else
4174 dwarf2_compile_expr_to_ax (ax, value, gdbarch, addr_size,
4175 dlbaton->data, dlbaton->data + dlbaton->size,
4176 dlbaton->per_cu);
4177 }
4178
4179 /* The set of location functions used with the DWARF-2 expression
4180 evaluator. */
4181 const struct symbol_computed_ops dwarf2_locexpr_funcs = {
4182 locexpr_read_variable,
4183 locexpr_read_variable_at_entry,
4184 locexpr_read_needs_frame,
4185 locexpr_describe_location,
4186 0, /* location_has_loclist */
4187 locexpr_tracepoint_var_ref
4188 };
4189
4190
4191 /* Wrapper functions for location lists. These generally find
4192 the appropriate location expression and call something above. */
4193
4194 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
4195 evaluator to calculate the location. */
4196 static struct value *
4197 loclist_read_variable (struct symbol *symbol, struct frame_info *frame)
4198 {
4199 struct dwarf2_loclist_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
4200 struct value *val;
4201 const gdb_byte *data;
4202 size_t size;
4203 CORE_ADDR pc = frame ? get_frame_address_in_block (frame) : 0;
4204
4205 data = dwarf2_find_location_expression (dlbaton, &size, pc);
4206 val = dwarf2_evaluate_loc_desc (SYMBOL_TYPE (symbol), frame, data, size,
4207 dlbaton->per_cu);
4208
4209 return val;
4210 }
4211
4212 /* Read variable SYMBOL like loclist_read_variable at (callee) FRAME's function
4213 entry. SYMBOL should be a function parameter, otherwise NO_ENTRY_VALUE_ERROR
4214 will be thrown.
4215
4216 Function always returns non-NULL value, it may be marked optimized out if
4217 inferior frame information is not available. It throws NO_ENTRY_VALUE_ERROR
4218 if it cannot resolve the parameter for any reason. */
4219
4220 static struct value *
4221 loclist_read_variable_at_entry (struct symbol *symbol, struct frame_info *frame)
4222 {
4223 struct dwarf2_loclist_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
4224 const gdb_byte *data;
4225 size_t size;
4226 CORE_ADDR pc;
4227
4228 if (frame == NULL || !get_frame_func_if_available (frame, &pc))
4229 return allocate_optimized_out_value (SYMBOL_TYPE (symbol));
4230
4231 data = dwarf2_find_location_expression (dlbaton, &size, pc);
4232 if (data == NULL)
4233 return allocate_optimized_out_value (SYMBOL_TYPE (symbol));
4234
4235 return value_of_dwarf_block_entry (SYMBOL_TYPE (symbol), frame, data, size);
4236 }
4237
4238 /* Return non-zero iff we need a frame to evaluate SYMBOL. */
4239 static int
4240 loclist_read_needs_frame (struct symbol *symbol)
4241 {
4242 /* If there's a location list, then assume we need to have a frame
4243 to choose the appropriate location expression. With tracking of
4244 global variables this is not necessarily true, but such tracking
4245 is disabled in GCC at the moment until we figure out how to
4246 represent it. */
4247
4248 return 1;
4249 }
4250
4251 /* Print a natural-language description of SYMBOL to STREAM. This
4252 version applies when there is a list of different locations, each
4253 with a specified address range. */
4254
4255 static void
4256 loclist_describe_location (struct symbol *symbol, CORE_ADDR addr,
4257 struct ui_file *stream)
4258 {
4259 struct dwarf2_loclist_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
4260 const gdb_byte *loc_ptr, *buf_end;
4261 struct objfile *objfile = dwarf2_per_cu_objfile (dlbaton->per_cu);
4262 struct gdbarch *gdbarch = get_objfile_arch (objfile);
4263 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4264 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4265 int offset_size = dwarf2_per_cu_offset_size (dlbaton->per_cu);
4266 int signed_addr_p = bfd_get_sign_extend_vma (objfile->obfd);
4267 /* Adjust base_address for relocatable objects. */
4268 CORE_ADDR base_offset = dwarf2_per_cu_text_offset (dlbaton->per_cu);
4269 CORE_ADDR base_address = dlbaton->base_address + base_offset;
4270 int done = 0;
4271
4272 loc_ptr = dlbaton->data;
4273 buf_end = dlbaton->data + dlbaton->size;
4274
4275 fprintf_filtered (stream, _("multi-location:\n"));
4276
4277 /* Iterate through locations until we run out. */
4278 while (!done)
4279 {
4280 CORE_ADDR low = 0, high = 0; /* init for gcc -Wall */
4281 int length;
4282 enum debug_loc_kind kind;
4283 const gdb_byte *new_ptr = NULL; /* init for gcc -Wall */
4284
4285 if (dlbaton->from_dwo)
4286 kind = decode_debug_loc_dwo_addresses (dlbaton->per_cu,
4287 loc_ptr, buf_end, &new_ptr,
4288 &low, &high, byte_order);
4289 else
4290 kind = decode_debug_loc_addresses (loc_ptr, buf_end, &new_ptr,
4291 &low, &high,
4292 byte_order, addr_size,
4293 signed_addr_p);
4294 loc_ptr = new_ptr;
4295 switch (kind)
4296 {
4297 case DEBUG_LOC_END_OF_LIST:
4298 done = 1;
4299 continue;
4300 case DEBUG_LOC_BASE_ADDRESS:
4301 base_address = high + base_offset;
4302 fprintf_filtered (stream, _(" Base address %s"),
4303 paddress (gdbarch, base_address));
4304 continue;
4305 case DEBUG_LOC_START_END:
4306 case DEBUG_LOC_START_LENGTH:
4307 break;
4308 case DEBUG_LOC_BUFFER_OVERFLOW:
4309 case DEBUG_LOC_INVALID_ENTRY:
4310 error (_("Corrupted DWARF expression for symbol \"%s\"."),
4311 SYMBOL_PRINT_NAME (symbol));
4312 default:
4313 gdb_assert_not_reached ("bad debug_loc_kind");
4314 }
4315
4316 /* Otherwise, a location expression entry. */
4317 low += base_address;
4318 high += base_address;
4319
4320 low = gdbarch_adjust_dwarf2_addr (gdbarch, low);
4321 high = gdbarch_adjust_dwarf2_addr (gdbarch, high);
4322
4323 length = extract_unsigned_integer (loc_ptr, 2, byte_order);
4324 loc_ptr += 2;
4325
4326 /* (It would improve readability to print only the minimum
4327 necessary digits of the second number of the range.) */
4328 fprintf_filtered (stream, _(" Range %s-%s: "),
4329 paddress (gdbarch, low), paddress (gdbarch, high));
4330
4331 /* Now describe this particular location. */
4332 locexpr_describe_location_1 (symbol, low, stream, loc_ptr, length,
4333 objfile, addr_size, offset_size,
4334 dlbaton->per_cu);
4335
4336 fprintf_filtered (stream, "\n");
4337
4338 loc_ptr += length;
4339 }
4340 }
4341
4342 /* Describe the location of SYMBOL as an agent value in VALUE, generating
4343 any necessary bytecode in AX. */
4344 static void
4345 loclist_tracepoint_var_ref (struct symbol *symbol, struct gdbarch *gdbarch,
4346 struct agent_expr *ax, struct axs_value *value)
4347 {
4348 struct dwarf2_loclist_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol);
4349 const gdb_byte *data;
4350 size_t size;
4351 unsigned int addr_size = dwarf2_per_cu_addr_size (dlbaton->per_cu);
4352
4353 data = dwarf2_find_location_expression (dlbaton, &size, ax->scope);
4354 if (size == 0)
4355 value->optimized_out = 1;
4356 else
4357 dwarf2_compile_expr_to_ax (ax, value, gdbarch, addr_size, data, data + size,
4358 dlbaton->per_cu);
4359 }
4360
4361 /* The set of location functions used with the DWARF-2 expression
4362 evaluator and location lists. */
4363 const struct symbol_computed_ops dwarf2_loclist_funcs = {
4364 loclist_read_variable,
4365 loclist_read_variable_at_entry,
4366 loclist_read_needs_frame,
4367 loclist_describe_location,
4368 1, /* location_has_loclist */
4369 loclist_tracepoint_var_ref
4370 };
4371
4372 /* Provide a prototype to silence -Wmissing-prototypes. */
4373 extern initialize_file_ftype _initialize_dwarf2loc;
4374
4375 void
4376 _initialize_dwarf2loc (void)
4377 {
4378 add_setshow_zuinteger_cmd ("entry-values", class_maintenance,
4379 &entry_values_debug,
4380 _("Set entry values and tail call frames "
4381 "debugging."),
4382 _("Show entry values and tail call frames "
4383 "debugging."),
4384 _("When non-zero, the process of determining "
4385 "parameter values from function entry point "
4386 "and tail call frames will be printed."),
4387 NULL,
4388 show_entry_values_debug,
4389 &setdebuglist, &showdebuglist);
4390 }