1 /* DWARF 2 location expression support for GDB.
3 Copyright (C) 2003, 2005, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 Contributed by Daniel Jacobowitz, MontaVista Software, Inc.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
34 #include "exceptions.h"
38 #include "dwarf2expr.h"
39 #include "dwarf2loc.h"
40 #include "dwarf2-frame.h"
42 #include "gdb_string.h"
43 #include "gdb_assert.h"
45 extern int dwarf2_always_disassemble
;
48 dwarf_expr_frame_base_1 (struct symbol
*framefunc
, CORE_ADDR pc
,
49 const gdb_byte
**start
, size_t *length
);
52 dwarf2_evaluate_loc_desc_full (struct type
*type
, struct frame_info
*frame
,
53 const gdb_byte
*data
, unsigned short size
,
54 struct dwarf2_per_cu_data
*per_cu
,
57 /* A function for dealing with location lists. Given a
58 symbol baton (BATON) and a pc value (PC), find the appropriate
59 location expression, set *LOCEXPR_LENGTH, and return a pointer
60 to the beginning of the expression. Returns NULL on failure.
62 For now, only return the first matching location expression; there
63 can be more than one in the list. */
66 dwarf2_find_location_expression (struct dwarf2_loclist_baton
*baton
,
67 size_t *locexpr_length
, CORE_ADDR pc
)
70 const gdb_byte
*loc_ptr
, *buf_end
;
72 struct objfile
*objfile
= dwarf2_per_cu_objfile (baton
->per_cu
);
73 struct gdbarch
*gdbarch
= get_objfile_arch (objfile
);
74 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
75 unsigned int addr_size
= dwarf2_per_cu_addr_size (baton
->per_cu
);
76 int signed_addr_p
= bfd_get_sign_extend_vma (objfile
->obfd
);
77 CORE_ADDR base_mask
= ~(~(CORE_ADDR
)1 << (addr_size
* 8 - 1));
78 /* Adjust base_address for relocatable objects. */
79 CORE_ADDR base_offset
= dwarf2_per_cu_text_offset (baton
->per_cu
);
80 CORE_ADDR base_address
= baton
->base_address
+ base_offset
;
82 loc_ptr
= baton
->data
;
83 buf_end
= baton
->data
+ baton
->size
;
87 if (buf_end
- loc_ptr
< 2 * addr_size
)
88 error (_("dwarf2_find_location_expression: "
89 "Corrupted DWARF expression."));
92 low
= extract_signed_integer (loc_ptr
, addr_size
, byte_order
);
94 low
= extract_unsigned_integer (loc_ptr
, addr_size
, byte_order
);
98 high
= extract_signed_integer (loc_ptr
, addr_size
, byte_order
);
100 high
= extract_unsigned_integer (loc_ptr
, addr_size
, byte_order
);
101 loc_ptr
+= addr_size
;
103 /* A base-address-selection entry. */
104 if ((low
& base_mask
) == base_mask
)
106 base_address
= high
+ base_offset
;
110 /* An end-of-list entry. */
111 if (low
== 0 && high
== 0)
114 /* Otherwise, a location expression entry. */
116 high
+= base_address
;
118 length
= extract_unsigned_integer (loc_ptr
, 2, byte_order
);
121 if (pc
>= low
&& pc
< high
)
123 *locexpr_length
= length
;
131 /* This is the baton used when performing dwarf2 expression
133 struct dwarf_expr_baton
135 struct frame_info
*frame
;
136 struct dwarf2_per_cu_data
*per_cu
;
139 /* Helper functions for dwarf2_evaluate_loc_desc. */
141 /* Using the frame specified in BATON, return the value of register
142 REGNUM, treated as a pointer. */
144 dwarf_expr_read_reg (void *baton
, int dwarf_regnum
)
146 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
147 struct gdbarch
*gdbarch
= get_frame_arch (debaton
->frame
);
151 regnum
= gdbarch_dwarf2_reg_to_regnum (gdbarch
, dwarf_regnum
);
152 result
= address_from_register (builtin_type (gdbarch
)->builtin_data_ptr
,
153 regnum
, debaton
->frame
);
157 /* Read memory at ADDR (length LEN) into BUF. */
160 dwarf_expr_read_mem (void *baton
, gdb_byte
*buf
, CORE_ADDR addr
, size_t len
)
162 read_memory (addr
, buf
, len
);
165 /* Using the frame specified in BATON, find the location expression
166 describing the frame base. Return a pointer to it in START and
167 its length in LENGTH. */
169 dwarf_expr_frame_base (void *baton
, const gdb_byte
**start
, size_t * length
)
171 /* FIXME: cagney/2003-03-26: This code should be using
172 get_frame_base_address(), and then implement a dwarf2 specific
174 struct symbol
*framefunc
;
175 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
177 /* Use block_linkage_function, which returns a real (not inlined)
178 function, instead of get_frame_function, which may return an
180 framefunc
= block_linkage_function (get_frame_block (debaton
->frame
, NULL
));
182 /* If we found a frame-relative symbol then it was certainly within
183 some function associated with a frame. If we can't find the frame,
184 something has gone wrong. */
185 gdb_assert (framefunc
!= NULL
);
187 dwarf_expr_frame_base_1 (framefunc
,
188 get_frame_address_in_block (debaton
->frame
),
193 dwarf_expr_frame_base_1 (struct symbol
*framefunc
, CORE_ADDR pc
,
194 const gdb_byte
**start
, size_t *length
)
196 if (SYMBOL_LOCATION_BATON (framefunc
) == NULL
)
198 else if (SYMBOL_COMPUTED_OPS (framefunc
) == &dwarf2_loclist_funcs
)
200 struct dwarf2_loclist_baton
*symbaton
;
202 symbaton
= SYMBOL_LOCATION_BATON (framefunc
);
203 *start
= dwarf2_find_location_expression (symbaton
, length
, pc
);
207 struct dwarf2_locexpr_baton
*symbaton
;
209 symbaton
= SYMBOL_LOCATION_BATON (framefunc
);
210 if (symbaton
!= NULL
)
212 *length
= symbaton
->size
;
213 *start
= symbaton
->data
;
220 error (_("Could not find the frame base for \"%s\"."),
221 SYMBOL_NATURAL_NAME (framefunc
));
224 /* Helper function for dwarf2_evaluate_loc_desc. Computes the CFA for
225 the frame in BATON. */
228 dwarf_expr_frame_cfa (void *baton
)
230 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
232 return dwarf2_frame_cfa (debaton
->frame
);
235 /* Helper function for dwarf2_evaluate_loc_desc. Computes the PC for
236 the frame in BATON. */
239 dwarf_expr_frame_pc (void *baton
)
241 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
243 return get_frame_address_in_block (debaton
->frame
);
246 /* Using the objfile specified in BATON, find the address for the
247 current thread's thread-local storage with offset OFFSET. */
249 dwarf_expr_tls_address (void *baton
, CORE_ADDR offset
)
251 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
252 struct objfile
*objfile
= dwarf2_per_cu_objfile (debaton
->per_cu
);
254 return target_translate_tls_address (objfile
, offset
);
257 /* Call DWARF subroutine from DW_AT_location of DIE at DIE_OFFSET in
258 current CU (as is PER_CU). State of the CTX is not affected by the
262 per_cu_dwarf_call (struct dwarf_expr_context
*ctx
, size_t die_offset
,
263 struct dwarf2_per_cu_data
*per_cu
,
264 CORE_ADDR (*get_frame_pc
) (void *baton
),
267 struct dwarf2_locexpr_baton block
;
269 block
= dwarf2_fetch_die_location_block (die_offset
, per_cu
,
270 get_frame_pc
, baton
);
272 /* DW_OP_call_ref is currently not supported. */
273 gdb_assert (block
.per_cu
== per_cu
);
275 dwarf_expr_eval (ctx
, block
.data
, block
.size
);
278 /* Helper interface of per_cu_dwarf_call for dwarf2_evaluate_loc_desc. */
281 dwarf_expr_dwarf_call (struct dwarf_expr_context
*ctx
, size_t die_offset
)
283 struct dwarf_expr_baton
*debaton
= ctx
->baton
;
285 return per_cu_dwarf_call (ctx
, die_offset
, debaton
->per_cu
,
286 ctx
->get_frame_pc
, ctx
->baton
);
291 /* Reference count. */
294 /* The CU from which this closure's expression came. */
295 struct dwarf2_per_cu_data
*per_cu
;
297 /* The number of pieces used to describe this variable. */
300 /* The target address size, used only for DWARF_VALUE_STACK. */
303 /* The pieces themselves. */
304 struct dwarf_expr_piece
*pieces
;
307 /* Allocate a closure for a value formed from separately-described
310 static struct piece_closure
*
311 allocate_piece_closure (struct dwarf2_per_cu_data
*per_cu
,
312 int n_pieces
, struct dwarf_expr_piece
*pieces
,
315 struct piece_closure
*c
= XZALLOC (struct piece_closure
);
319 c
->n_pieces
= n_pieces
;
320 c
->addr_size
= addr_size
;
321 c
->pieces
= XCALLOC (n_pieces
, struct dwarf_expr_piece
);
323 memcpy (c
->pieces
, pieces
, n_pieces
* sizeof (struct dwarf_expr_piece
));
328 /* The lowest-level function to extract bits from a byte buffer.
329 SOURCE is the buffer. It is updated if we read to the end of a
331 SOURCE_OFFSET_BITS is the offset of the first bit to read. It is
332 updated to reflect the number of bits actually read.
333 NBITS is the number of bits we want to read. It is updated to
334 reflect the number of bits actually read. This function may read
336 BITS_BIG_ENDIAN is taken directly from gdbarch.
337 This function returns the extracted bits. */
340 extract_bits_primitive (const gdb_byte
**source
,
341 unsigned int *source_offset_bits
,
342 int *nbits
, int bits_big_endian
)
344 unsigned int avail
, mask
, datum
;
346 gdb_assert (*source_offset_bits
< 8);
348 avail
= 8 - *source_offset_bits
;
352 mask
= (1 << avail
) - 1;
355 datum
>>= 8 - (*source_offset_bits
+ *nbits
);
357 datum
>>= *source_offset_bits
;
361 *source_offset_bits
+= avail
;
362 if (*source_offset_bits
>= 8)
364 *source_offset_bits
-= 8;
371 /* Extract some bits from a source buffer and move forward in the
374 SOURCE is the source buffer. It is updated as bytes are read.
375 SOURCE_OFFSET_BITS is the offset into SOURCE. It is updated as
377 NBITS is the number of bits to read.
378 BITS_BIG_ENDIAN is taken directly from gdbarch.
380 This function returns the bits that were read. */
383 extract_bits (const gdb_byte
**source
, unsigned int *source_offset_bits
,
384 int nbits
, int bits_big_endian
)
388 gdb_assert (nbits
> 0 && nbits
<= 8);
390 datum
= extract_bits_primitive (source
, source_offset_bits
, &nbits
,
396 more
= extract_bits_primitive (source
, source_offset_bits
, &nbits
,
408 /* Write some bits into a buffer and move forward in the buffer.
410 DATUM is the bits to write. The low-order bits of DATUM are used.
411 DEST is the destination buffer. It is updated as bytes are
413 DEST_OFFSET_BITS is the bit offset in DEST at which writing is
415 NBITS is the number of valid bits in DATUM.
416 BITS_BIG_ENDIAN is taken directly from gdbarch. */
419 insert_bits (unsigned int datum
,
420 gdb_byte
*dest
, unsigned int dest_offset_bits
,
421 int nbits
, int bits_big_endian
)
425 gdb_assert (dest_offset_bits
+ nbits
<= 8);
427 mask
= (1 << nbits
) - 1;
430 datum
<<= 8 - (dest_offset_bits
+ nbits
);
431 mask
<<= 8 - (dest_offset_bits
+ nbits
);
435 datum
<<= dest_offset_bits
;
436 mask
<<= dest_offset_bits
;
439 gdb_assert ((datum
& ~mask
) == 0);
441 *dest
= (*dest
& ~mask
) | datum
;
444 /* Copy bits from a source to a destination.
446 DEST is where the bits should be written.
447 DEST_OFFSET_BITS is the bit offset into DEST.
448 SOURCE is the source of bits.
449 SOURCE_OFFSET_BITS is the bit offset into SOURCE.
450 BIT_COUNT is the number of bits to copy.
451 BITS_BIG_ENDIAN is taken directly from gdbarch. */
454 copy_bitwise (gdb_byte
*dest
, unsigned int dest_offset_bits
,
455 const gdb_byte
*source
, unsigned int source_offset_bits
,
456 unsigned int bit_count
,
459 unsigned int dest_avail
;
462 /* Reduce everything to byte-size pieces. */
463 dest
+= dest_offset_bits
/ 8;
464 dest_offset_bits
%= 8;
465 source
+= source_offset_bits
/ 8;
466 source_offset_bits
%= 8;
468 dest_avail
= 8 - dest_offset_bits
% 8;
470 /* See if we can fill the first destination byte. */
471 if (dest_avail
< bit_count
)
473 datum
= extract_bits (&source
, &source_offset_bits
, dest_avail
,
475 insert_bits (datum
, dest
, dest_offset_bits
, dest_avail
, bits_big_endian
);
477 dest_offset_bits
= 0;
478 bit_count
-= dest_avail
;
481 /* Now, either DEST_OFFSET_BITS is byte-aligned, or we have fewer
482 than 8 bits remaining. */
483 gdb_assert (dest_offset_bits
% 8 == 0 || bit_count
< 8);
484 for (; bit_count
>= 8; bit_count
-= 8)
486 datum
= extract_bits (&source
, &source_offset_bits
, 8, bits_big_endian
);
487 *dest
++ = (gdb_byte
) datum
;
490 /* Finally, we may have a few leftover bits. */
491 gdb_assert (bit_count
<= 8 - dest_offset_bits
% 8);
494 datum
= extract_bits (&source
, &source_offset_bits
, bit_count
,
496 insert_bits (datum
, dest
, dest_offset_bits
, bit_count
, bits_big_endian
);
501 read_pieced_value (struct value
*v
)
505 ULONGEST bits_to_skip
;
507 struct piece_closure
*c
508 = (struct piece_closure
*) value_computed_closure (v
);
509 struct frame_info
*frame
= frame_find_by_id (VALUE_FRAME_ID (v
));
511 size_t buffer_size
= 0;
513 struct cleanup
*cleanup
;
515 = gdbarch_bits_big_endian (get_type_arch (value_type (v
)));
517 if (value_type (v
) != value_enclosing_type (v
))
518 internal_error (__FILE__
, __LINE__
,
519 _("Should not be able to create a lazy value with "
520 "an enclosing type"));
522 cleanup
= make_cleanup (free_current_contents
, &buffer
);
524 contents
= value_contents_raw (v
);
525 bits_to_skip
= 8 * value_offset (v
);
526 if (value_bitsize (v
))
528 bits_to_skip
+= value_bitpos (v
);
529 type_len
= value_bitsize (v
);
532 type_len
= 8 * TYPE_LENGTH (value_type (v
));
534 for (i
= 0; i
< c
->n_pieces
&& offset
< type_len
; i
++)
536 struct dwarf_expr_piece
*p
= &c
->pieces
[i
];
537 size_t this_size
, this_size_bits
;
538 long dest_offset_bits
, source_offset_bits
, source_offset
;
539 const gdb_byte
*intermediate_buffer
;
541 /* Compute size, source, and destination offsets for copying, in
543 this_size_bits
= p
->size
;
544 if (bits_to_skip
> 0 && bits_to_skip
>= this_size_bits
)
546 bits_to_skip
-= this_size_bits
;
549 if (this_size_bits
> type_len
- offset
)
550 this_size_bits
= type_len
- offset
;
551 if (bits_to_skip
> 0)
553 dest_offset_bits
= 0;
554 source_offset_bits
= bits_to_skip
;
555 this_size_bits
-= bits_to_skip
;
560 dest_offset_bits
= offset
;
561 source_offset_bits
= 0;
564 this_size
= (this_size_bits
+ source_offset_bits
% 8 + 7) / 8;
565 source_offset
= source_offset_bits
/ 8;
566 if (buffer_size
< this_size
)
568 buffer_size
= this_size
;
569 buffer
= xrealloc (buffer
, buffer_size
);
571 intermediate_buffer
= buffer
;
573 /* Copy from the source to DEST_BUFFER. */
576 case DWARF_VALUE_REGISTER
:
578 struct gdbarch
*arch
= get_frame_arch (frame
);
579 int gdb_regnum
= gdbarch_dwarf2_reg_to_regnum (arch
, p
->v
.value
);
580 int reg_offset
= source_offset
;
582 if (gdbarch_byte_order (arch
) == BFD_ENDIAN_BIG
583 && this_size
< register_size (arch
, gdb_regnum
))
585 /* Big-endian, and we want less than full size. */
586 reg_offset
= register_size (arch
, gdb_regnum
) - this_size
;
587 /* We want the lower-order THIS_SIZE_BITS of the bytes
588 we extract from the register. */
589 source_offset_bits
+= 8 * this_size
- this_size_bits
;
592 if (gdb_regnum
!= -1)
594 get_frame_register_bytes (frame
, gdb_regnum
, reg_offset
,
599 error (_("Unable to access DWARF register number %s"),
600 paddress (arch
, p
->v
.value
));
605 case DWARF_VALUE_MEMORY
:
606 read_value_memory (v
, offset
,
607 p
->v
.mem
.in_stack_memory
,
608 p
->v
.mem
.addr
+ source_offset
,
612 case DWARF_VALUE_STACK
:
614 struct gdbarch
*gdbarch
= get_type_arch (value_type (v
));
615 size_t n
= this_size
;
617 if (n
> c
->addr_size
- source_offset
)
618 n
= (c
->addr_size
>= source_offset
619 ? c
->addr_size
- source_offset
625 else if (source_offset
== 0)
626 store_unsigned_integer (buffer
, n
,
627 gdbarch_byte_order (gdbarch
),
631 gdb_byte bytes
[sizeof (ULONGEST
)];
633 store_unsigned_integer (bytes
, n
+ source_offset
,
634 gdbarch_byte_order (gdbarch
),
636 memcpy (buffer
, bytes
+ source_offset
, n
);
641 case DWARF_VALUE_LITERAL
:
643 size_t n
= this_size
;
645 if (n
> p
->v
.literal
.length
- source_offset
)
646 n
= (p
->v
.literal
.length
>= source_offset
647 ? p
->v
.literal
.length
- source_offset
650 intermediate_buffer
= p
->v
.literal
.data
+ source_offset
;
654 /* These bits show up as zeros -- but do not cause the value
655 to be considered optimized-out. */
656 case DWARF_VALUE_IMPLICIT_POINTER
:
659 case DWARF_VALUE_OPTIMIZED_OUT
:
660 set_value_optimized_out (v
, 1);
664 internal_error (__FILE__
, __LINE__
, _("invalid location type"));
667 if (p
->location
!= DWARF_VALUE_OPTIMIZED_OUT
668 && p
->location
!= DWARF_VALUE_IMPLICIT_POINTER
)
669 copy_bitwise (contents
, dest_offset_bits
,
670 intermediate_buffer
, source_offset_bits
% 8,
671 this_size_bits
, bits_big_endian
);
673 offset
+= this_size_bits
;
676 do_cleanups (cleanup
);
680 write_pieced_value (struct value
*to
, struct value
*from
)
684 ULONGEST bits_to_skip
;
685 const gdb_byte
*contents
;
686 struct piece_closure
*c
687 = (struct piece_closure
*) value_computed_closure (to
);
688 struct frame_info
*frame
= frame_find_by_id (VALUE_FRAME_ID (to
));
690 size_t buffer_size
= 0;
692 struct cleanup
*cleanup
;
694 = gdbarch_bits_big_endian (get_type_arch (value_type (to
)));
698 set_value_optimized_out (to
, 1);
702 cleanup
= make_cleanup (free_current_contents
, &buffer
);
704 contents
= value_contents (from
);
705 bits_to_skip
= 8 * value_offset (to
);
706 if (value_bitsize (to
))
708 bits_to_skip
+= value_bitpos (to
);
709 type_len
= value_bitsize (to
);
712 type_len
= 8 * TYPE_LENGTH (value_type (to
));
714 for (i
= 0; i
< c
->n_pieces
&& offset
< type_len
; i
++)
716 struct dwarf_expr_piece
*p
= &c
->pieces
[i
];
717 size_t this_size_bits
, this_size
;
718 long dest_offset_bits
, source_offset_bits
, dest_offset
, source_offset
;
720 const gdb_byte
*source_buffer
;
722 this_size_bits
= p
->size
;
723 if (bits_to_skip
> 0 && bits_to_skip
>= this_size_bits
)
725 bits_to_skip
-= this_size_bits
;
728 if (this_size_bits
> type_len
- offset
)
729 this_size_bits
= type_len
- offset
;
730 if (bits_to_skip
> 0)
732 dest_offset_bits
= bits_to_skip
;
733 source_offset_bits
= 0;
734 this_size_bits
-= bits_to_skip
;
739 dest_offset_bits
= 0;
740 source_offset_bits
= offset
;
743 this_size
= (this_size_bits
+ source_offset_bits
% 8 + 7) / 8;
744 source_offset
= source_offset_bits
/ 8;
745 dest_offset
= dest_offset_bits
/ 8;
746 if (dest_offset_bits
% 8 == 0 && source_offset_bits
% 8 == 0)
748 source_buffer
= contents
+ source_offset
;
753 if (buffer_size
< this_size
)
755 buffer_size
= this_size
;
756 buffer
= xrealloc (buffer
, buffer_size
);
758 source_buffer
= buffer
;
764 case DWARF_VALUE_REGISTER
:
766 struct gdbarch
*arch
= get_frame_arch (frame
);
767 int gdb_regnum
= gdbarch_dwarf2_reg_to_regnum (arch
, p
->v
.value
);
768 int reg_offset
= dest_offset
;
770 if (gdbarch_byte_order (arch
) == BFD_ENDIAN_BIG
771 && this_size
<= register_size (arch
, gdb_regnum
))
772 /* Big-endian, and we want less than full size. */
773 reg_offset
= register_size (arch
, gdb_regnum
) - this_size
;
775 if (gdb_regnum
!= -1)
779 get_frame_register_bytes (frame
, gdb_regnum
, reg_offset
,
781 copy_bitwise (buffer
, dest_offset_bits
,
782 contents
, source_offset_bits
,
787 put_frame_register_bytes (frame
, gdb_regnum
, reg_offset
,
788 this_size
, source_buffer
);
792 error (_("Unable to write to DWARF register number %s"),
793 paddress (arch
, p
->v
.value
));
797 case DWARF_VALUE_MEMORY
:
800 /* Only the first and last bytes can possibly have any
802 read_memory (p
->v
.mem
.addr
+ dest_offset
, buffer
, 1);
803 read_memory (p
->v
.mem
.addr
+ dest_offset
+ this_size
- 1,
804 buffer
+ this_size
- 1, 1);
805 copy_bitwise (buffer
, dest_offset_bits
,
806 contents
, source_offset_bits
,
811 write_memory (p
->v
.mem
.addr
+ dest_offset
,
812 source_buffer
, this_size
);
815 set_value_optimized_out (to
, 1);
818 offset
+= this_size_bits
;
821 do_cleanups (cleanup
);
824 /* A helper function that checks bit validity in a pieced value.
825 CHECK_FOR indicates the kind of validity checking.
826 DWARF_VALUE_MEMORY means to check whether any bit is valid.
827 DWARF_VALUE_OPTIMIZED_OUT means to check whether any bit is
829 DWARF_VALUE_IMPLICIT_POINTER means to check whether the bits are an
833 check_pieced_value_bits (const struct value
*value
, int bit_offset
,
835 enum dwarf_value_location check_for
)
837 struct piece_closure
*c
838 = (struct piece_closure
*) value_computed_closure (value
);
840 int validity
= (check_for
== DWARF_VALUE_MEMORY
841 || check_for
== DWARF_VALUE_IMPLICIT_POINTER
);
843 bit_offset
+= 8 * value_offset (value
);
844 if (value_bitsize (value
))
845 bit_offset
+= value_bitpos (value
);
847 for (i
= 0; i
< c
->n_pieces
&& bit_length
> 0; i
++)
849 struct dwarf_expr_piece
*p
= &c
->pieces
[i
];
850 size_t this_size_bits
= p
->size
;
854 if (bit_offset
>= this_size_bits
)
856 bit_offset
-= this_size_bits
;
860 bit_length
-= this_size_bits
- bit_offset
;
864 bit_length
-= this_size_bits
;
866 if (check_for
== DWARF_VALUE_IMPLICIT_POINTER
)
868 if (p
->location
!= DWARF_VALUE_IMPLICIT_POINTER
)
871 else if (p
->location
== DWARF_VALUE_OPTIMIZED_OUT
872 || p
->location
== DWARF_VALUE_IMPLICIT_POINTER
)
888 check_pieced_value_validity (const struct value
*value
, int bit_offset
,
891 return check_pieced_value_bits (value
, bit_offset
, bit_length
,
896 check_pieced_value_invalid (const struct value
*value
)
898 return check_pieced_value_bits (value
, 0,
899 8 * TYPE_LENGTH (value_type (value
)),
900 DWARF_VALUE_OPTIMIZED_OUT
);
903 /* An implementation of an lval_funcs method to see whether a value is
904 a synthetic pointer. */
907 check_pieced_synthetic_pointer (const struct value
*value
, int bit_offset
,
910 return check_pieced_value_bits (value
, bit_offset
, bit_length
,
911 DWARF_VALUE_IMPLICIT_POINTER
);
914 /* A wrapper function for get_frame_address_in_block. */
917 get_frame_address_in_block_wrapper (void *baton
)
919 return get_frame_address_in_block (baton
);
922 /* An implementation of an lval_funcs method to indirect through a
923 pointer. This handles the synthetic pointer case when needed. */
925 static struct value
*
926 indirect_pieced_value (struct value
*value
)
928 struct piece_closure
*c
929 = (struct piece_closure
*) value_computed_closure (value
);
931 struct frame_info
*frame
;
932 struct dwarf2_locexpr_baton baton
;
933 int i
, bit_offset
, bit_length
;
934 struct dwarf_expr_piece
*piece
= NULL
;
935 struct value
*result
;
938 type
= value_type (value
);
939 if (TYPE_CODE (type
) != TYPE_CODE_PTR
)
942 bit_length
= 8 * TYPE_LENGTH (type
);
943 bit_offset
= 8 * value_offset (value
);
944 if (value_bitsize (value
))
945 bit_offset
+= value_bitpos (value
);
947 for (i
= 0; i
< c
->n_pieces
&& bit_length
> 0; i
++)
949 struct dwarf_expr_piece
*p
= &c
->pieces
[i
];
950 size_t this_size_bits
= p
->size
;
954 if (bit_offset
>= this_size_bits
)
956 bit_offset
-= this_size_bits
;
960 bit_length
-= this_size_bits
- bit_offset
;
964 bit_length
-= this_size_bits
;
966 if (p
->location
!= DWARF_VALUE_IMPLICIT_POINTER
)
970 error (_("Invalid use of DW_OP_GNU_implicit_pointer"));
976 frame
= get_selected_frame (_("No frame selected."));
977 byte_offset
= value_as_address (value
);
980 baton
= dwarf2_fetch_die_location_block (piece
->v
.ptr
.die
, c
->per_cu
,
981 get_frame_address_in_block_wrapper
,
984 result
= dwarf2_evaluate_loc_desc_full (TYPE_TARGET_TYPE (type
), frame
,
985 baton
.data
, baton
.size
, baton
.per_cu
,
992 copy_pieced_value_closure (const struct value
*v
)
994 struct piece_closure
*c
995 = (struct piece_closure
*) value_computed_closure (v
);
1002 free_pieced_value_closure (struct value
*v
)
1004 struct piece_closure
*c
1005 = (struct piece_closure
*) value_computed_closure (v
);
1015 /* Functions for accessing a variable described by DW_OP_piece. */
1016 static struct lval_funcs pieced_value_funcs
= {
1019 check_pieced_value_validity
,
1020 check_pieced_value_invalid
,
1021 indirect_pieced_value
,
1022 check_pieced_synthetic_pointer
,
1023 copy_pieced_value_closure
,
1024 free_pieced_value_closure
1027 /* Helper function which throws an error if a synthetic pointer is
1031 invalid_synthetic_pointer (void)
1033 error (_("access outside bounds of object "
1034 "referenced via synthetic pointer"));
1037 /* Evaluate a location description, starting at DATA and with length
1038 SIZE, to find the current location of variable of TYPE in the
1039 context of FRAME. BYTE_OFFSET is applied after the contents are
1042 static struct value
*
1043 dwarf2_evaluate_loc_desc_full (struct type
*type
, struct frame_info
*frame
,
1044 const gdb_byte
*data
, unsigned short size
,
1045 struct dwarf2_per_cu_data
*per_cu
,
1046 LONGEST byte_offset
)
1048 struct value
*retval
;
1049 struct dwarf_expr_baton baton
;
1050 struct dwarf_expr_context
*ctx
;
1051 struct cleanup
*old_chain
;
1052 struct objfile
*objfile
= dwarf2_per_cu_objfile (per_cu
);
1054 if (byte_offset
< 0)
1055 invalid_synthetic_pointer ();
1059 retval
= allocate_value (type
);
1060 VALUE_LVAL (retval
) = not_lval
;
1061 set_value_optimized_out (retval
, 1);
1065 baton
.frame
= frame
;
1066 baton
.per_cu
= per_cu
;
1068 ctx
= new_dwarf_expr_context ();
1069 old_chain
= make_cleanup_free_dwarf_expr_context (ctx
);
1071 ctx
->gdbarch
= get_objfile_arch (objfile
);
1072 ctx
->addr_size
= dwarf2_per_cu_addr_size (per_cu
);
1073 ctx
->offset
= dwarf2_per_cu_text_offset (per_cu
);
1074 ctx
->baton
= &baton
;
1075 ctx
->read_reg
= dwarf_expr_read_reg
;
1076 ctx
->read_mem
= dwarf_expr_read_mem
;
1077 ctx
->get_frame_base
= dwarf_expr_frame_base
;
1078 ctx
->get_frame_cfa
= dwarf_expr_frame_cfa
;
1079 ctx
->get_frame_pc
= dwarf_expr_frame_pc
;
1080 ctx
->get_tls_address
= dwarf_expr_tls_address
;
1081 ctx
->dwarf_call
= dwarf_expr_dwarf_call
;
1083 dwarf_expr_eval (ctx
, data
, size
);
1084 if (ctx
->num_pieces
> 0)
1086 struct piece_closure
*c
;
1087 struct frame_id frame_id
= get_frame_id (frame
);
1088 ULONGEST bit_size
= 0;
1091 for (i
= 0; i
< ctx
->num_pieces
; ++i
)
1092 bit_size
+= ctx
->pieces
[i
].size
;
1093 if (8 * (byte_offset
+ TYPE_LENGTH (type
)) > bit_size
)
1094 invalid_synthetic_pointer ();
1096 c
= allocate_piece_closure (per_cu
, ctx
->num_pieces
, ctx
->pieces
,
1098 retval
= allocate_computed_value (type
, &pieced_value_funcs
, c
);
1099 VALUE_FRAME_ID (retval
) = frame_id
;
1100 set_value_offset (retval
, byte_offset
);
1104 switch (ctx
->location
)
1106 case DWARF_VALUE_REGISTER
:
1108 struct gdbarch
*arch
= get_frame_arch (frame
);
1109 ULONGEST dwarf_regnum
= dwarf_expr_fetch (ctx
, 0);
1110 int gdb_regnum
= gdbarch_dwarf2_reg_to_regnum (arch
, dwarf_regnum
);
1112 if (byte_offset
!= 0)
1113 error (_("cannot use offset on synthetic pointer to register"));
1114 if (gdb_regnum
!= -1)
1115 retval
= value_from_register (type
, gdb_regnum
, frame
);
1117 error (_("Unable to access DWARF register number %s"),
1118 paddress (arch
, dwarf_regnum
));
1122 case DWARF_VALUE_MEMORY
:
1124 CORE_ADDR address
= dwarf_expr_fetch_address (ctx
, 0);
1125 int in_stack_memory
= dwarf_expr_fetch_in_stack_memory (ctx
, 0);
1127 retval
= allocate_value_lazy (type
);
1128 VALUE_LVAL (retval
) = lval_memory
;
1129 if (in_stack_memory
)
1130 set_value_stack (retval
, 1);
1131 set_value_address (retval
, address
+ byte_offset
);
1135 case DWARF_VALUE_STACK
:
1137 ULONGEST value
= dwarf_expr_fetch (ctx
, 0);
1138 bfd_byte
*contents
, *tem
;
1139 size_t n
= ctx
->addr_size
;
1141 if (byte_offset
+ TYPE_LENGTH (type
) > n
)
1142 invalid_synthetic_pointer ();
1145 store_unsigned_integer (tem
, n
,
1146 gdbarch_byte_order (ctx
->gdbarch
),
1152 retval
= allocate_value (type
);
1153 contents
= value_contents_raw (retval
);
1154 if (n
> TYPE_LENGTH (type
))
1155 n
= TYPE_LENGTH (type
);
1156 memcpy (contents
, tem
, n
);
1160 case DWARF_VALUE_LITERAL
:
1163 const bfd_byte
*ldata
;
1164 size_t n
= ctx
->len
;
1166 if (byte_offset
+ TYPE_LENGTH (type
) > n
)
1167 invalid_synthetic_pointer ();
1169 retval
= allocate_value (type
);
1170 contents
= value_contents_raw (retval
);
1172 ldata
= ctx
->data
+ byte_offset
;
1175 if (n
> TYPE_LENGTH (type
))
1176 n
= TYPE_LENGTH (type
);
1177 memcpy (contents
, ldata
, n
);
1181 /* DWARF_VALUE_IMPLICIT_POINTER was converted to a pieced
1182 operation by execute_stack_op. */
1183 case DWARF_VALUE_IMPLICIT_POINTER
:
1184 /* DWARF_VALUE_OPTIMIZED_OUT can't occur in this context --
1185 it can only be encountered when making a piece. */
1186 case DWARF_VALUE_OPTIMIZED_OUT
:
1188 internal_error (__FILE__
, __LINE__
, _("invalid location type"));
1192 set_value_initialized (retval
, ctx
->initialized
);
1194 do_cleanups (old_chain
);
1199 /* The exported interface to dwarf2_evaluate_loc_desc_full; it always
1200 passes 0 as the byte_offset. */
1203 dwarf2_evaluate_loc_desc (struct type
*type
, struct frame_info
*frame
,
1204 const gdb_byte
*data
, unsigned short size
,
1205 struct dwarf2_per_cu_data
*per_cu
)
1207 return dwarf2_evaluate_loc_desc_full (type
, frame
, data
, size
, per_cu
, 0);
1211 /* Helper functions and baton for dwarf2_loc_desc_needs_frame. */
1213 struct needs_frame_baton
1216 struct dwarf2_per_cu_data
*per_cu
;
1219 /* Reads from registers do require a frame. */
1221 needs_frame_read_reg (void *baton
, int regnum
)
1223 struct needs_frame_baton
*nf_baton
= baton
;
1225 nf_baton
->needs_frame
= 1;
1229 /* Reads from memory do not require a frame. */
1231 needs_frame_read_mem (void *baton
, gdb_byte
*buf
, CORE_ADDR addr
, size_t len
)
1233 memset (buf
, 0, len
);
1236 /* Frame-relative accesses do require a frame. */
1238 needs_frame_frame_base (void *baton
, const gdb_byte
**start
, size_t * length
)
1240 static gdb_byte lit0
= DW_OP_lit0
;
1241 struct needs_frame_baton
*nf_baton
= baton
;
1246 nf_baton
->needs_frame
= 1;
1249 /* CFA accesses require a frame. */
1252 needs_frame_frame_cfa (void *baton
)
1254 struct needs_frame_baton
*nf_baton
= baton
;
1256 nf_baton
->needs_frame
= 1;
1260 /* Thread-local accesses do require a frame. */
1262 needs_frame_tls_address (void *baton
, CORE_ADDR offset
)
1264 struct needs_frame_baton
*nf_baton
= baton
;
1266 nf_baton
->needs_frame
= 1;
1270 /* Helper interface of per_cu_dwarf_call for dwarf2_loc_desc_needs_frame. */
1273 needs_frame_dwarf_call (struct dwarf_expr_context
*ctx
, size_t die_offset
)
1275 struct needs_frame_baton
*nf_baton
= ctx
->baton
;
1277 return per_cu_dwarf_call (ctx
, die_offset
, nf_baton
->per_cu
,
1278 ctx
->get_frame_pc
, ctx
->baton
);
1281 /* Return non-zero iff the location expression at DATA (length SIZE)
1282 requires a frame to evaluate. */
1285 dwarf2_loc_desc_needs_frame (const gdb_byte
*data
, unsigned short size
,
1286 struct dwarf2_per_cu_data
*per_cu
)
1288 struct needs_frame_baton baton
;
1289 struct dwarf_expr_context
*ctx
;
1291 struct cleanup
*old_chain
;
1292 struct objfile
*objfile
= dwarf2_per_cu_objfile (per_cu
);
1294 baton
.needs_frame
= 0;
1295 baton
.per_cu
= per_cu
;
1297 ctx
= new_dwarf_expr_context ();
1298 old_chain
= make_cleanup_free_dwarf_expr_context (ctx
);
1300 ctx
->gdbarch
= get_objfile_arch (objfile
);
1301 ctx
->addr_size
= dwarf2_per_cu_addr_size (per_cu
);
1302 ctx
->offset
= dwarf2_per_cu_text_offset (per_cu
);
1303 ctx
->baton
= &baton
;
1304 ctx
->read_reg
= needs_frame_read_reg
;
1305 ctx
->read_mem
= needs_frame_read_mem
;
1306 ctx
->get_frame_base
= needs_frame_frame_base
;
1307 ctx
->get_frame_cfa
= needs_frame_frame_cfa
;
1308 ctx
->get_frame_pc
= needs_frame_frame_cfa
;
1309 ctx
->get_tls_address
= needs_frame_tls_address
;
1310 ctx
->dwarf_call
= needs_frame_dwarf_call
;
1312 dwarf_expr_eval (ctx
, data
, size
);
1314 in_reg
= ctx
->location
== DWARF_VALUE_REGISTER
;
1316 if (ctx
->num_pieces
> 0)
1320 /* If the location has several pieces, and any of them are in
1321 registers, then we will need a frame to fetch them from. */
1322 for (i
= 0; i
< ctx
->num_pieces
; i
++)
1323 if (ctx
->pieces
[i
].location
== DWARF_VALUE_REGISTER
)
1327 do_cleanups (old_chain
);
1329 return baton
.needs_frame
|| in_reg
;
1332 /* A helper function that throws an unimplemented error mentioning a
1333 given DWARF operator. */
1336 unimplemented (unsigned int op
)
1338 const char *name
= dwarf_stack_op_name (op
);
1341 error (_("DWARF operator %s cannot be translated to an agent expression"),
1344 error (_("Unknown DWARF operator 0x%02x cannot be translated "
1345 "to an agent expression"),
1349 /* A helper function to convert a DWARF register to an arch register.
1350 ARCH is the architecture.
1351 DWARF_REG is the register.
1352 This will throw an exception if the DWARF register cannot be
1353 translated to an architecture register. */
1356 translate_register (struct gdbarch
*arch
, int dwarf_reg
)
1358 int reg
= gdbarch_dwarf2_reg_to_regnum (arch
, dwarf_reg
);
1360 error (_("Unable to access DWARF register number %d"), dwarf_reg
);
1364 /* A helper function that emits an access to memory. ARCH is the
1365 target architecture. EXPR is the expression which we are building.
1366 NBITS is the number of bits we want to read. This emits the
1367 opcodes needed to read the memory and then extract the desired
1371 access_memory (struct gdbarch
*arch
, struct agent_expr
*expr
, ULONGEST nbits
)
1373 ULONGEST nbytes
= (nbits
+ 7) / 8;
1375 gdb_assert (nbits
> 0 && nbits
<= sizeof (LONGEST
));
1378 ax_trace_quick (expr
, nbytes
);
1381 ax_simple (expr
, aop_ref8
);
1382 else if (nbits
<= 16)
1383 ax_simple (expr
, aop_ref16
);
1384 else if (nbits
<= 32)
1385 ax_simple (expr
, aop_ref32
);
1387 ax_simple (expr
, aop_ref64
);
1389 /* If we read exactly the number of bytes we wanted, we're done. */
1390 if (8 * nbytes
== nbits
)
1393 if (gdbarch_bits_big_endian (arch
))
1395 /* On a bits-big-endian machine, we want the high-order
1397 ax_const_l (expr
, 8 * nbytes
- nbits
);
1398 ax_simple (expr
, aop_rsh_unsigned
);
1402 /* On a bits-little-endian box, we want the low-order NBITS. */
1403 ax_zero_ext (expr
, nbits
);
1407 /* A helper function to return the frame's PC. */
1410 get_ax_pc (void *baton
)
1412 struct agent_expr
*expr
= baton
;
1417 /* Compile a DWARF location expression to an agent expression.
1419 EXPR is the agent expression we are building.
1420 LOC is the agent value we modify.
1421 ARCH is the architecture.
1422 ADDR_SIZE is the size of addresses, in bytes.
1423 OP_PTR is the start of the location expression.
1424 OP_END is one past the last byte of the location expression.
1426 This will throw an exception for various kinds of errors -- for
1427 example, if the expression cannot be compiled, or if the expression
1431 dwarf2_compile_expr_to_ax (struct agent_expr
*expr
, struct axs_value
*loc
,
1432 struct gdbarch
*arch
, unsigned int addr_size
,
1433 const gdb_byte
*op_ptr
, const gdb_byte
*op_end
,
1434 struct dwarf2_per_cu_data
*per_cu
)
1436 struct cleanup
*cleanups
;
1438 VEC(int) *dw_labels
= NULL
, *patches
= NULL
;
1439 const gdb_byte
* const base
= op_ptr
;
1440 const gdb_byte
*previous_piece
= op_ptr
;
1441 enum bfd_endian byte_order
= gdbarch_byte_order (arch
);
1442 ULONGEST bits_collected
= 0;
1443 unsigned int addr_size_bits
= 8 * addr_size
;
1444 int bits_big_endian
= gdbarch_bits_big_endian (arch
);
1446 offsets
= xmalloc ((op_end
- op_ptr
) * sizeof (int));
1447 cleanups
= make_cleanup (xfree
, offsets
);
1449 for (i
= 0; i
< op_end
- op_ptr
; ++i
)
1452 make_cleanup (VEC_cleanup (int), &dw_labels
);
1453 make_cleanup (VEC_cleanup (int), &patches
);
1455 /* By default we are making an address. */
1456 loc
->kind
= axs_lvalue_memory
;
1458 while (op_ptr
< op_end
)
1460 enum dwarf_location_atom op
= *op_ptr
;
1461 ULONGEST uoffset
, reg
;
1465 offsets
[op_ptr
- base
] = expr
->len
;
1468 /* Our basic approach to code generation is to map DWARF
1469 operations directly to AX operations. However, there are
1472 First, DWARF works on address-sized units, but AX always uses
1473 LONGEST. For most operations we simply ignore this
1474 difference; instead we generate sign extensions as needed
1475 before division and comparison operations. It would be nice
1476 to omit the sign extensions, but there is no way to determine
1477 the size of the target's LONGEST. (This code uses the size
1478 of the host LONGEST in some cases -- that is a bug but it is
1481 Second, some DWARF operations cannot be translated to AX.
1482 For these we simply fail. See
1483 http://sourceware.org/bugzilla/show_bug.cgi?id=11662. */
1518 ax_const_l (expr
, op
- DW_OP_lit0
);
1522 uoffset
= extract_unsigned_integer (op_ptr
, addr_size
, byte_order
);
1523 op_ptr
+= addr_size
;
1524 /* Some versions of GCC emit DW_OP_addr before
1525 DW_OP_GNU_push_tls_address. In this case the value is an
1526 index, not an address. We don't support things like
1527 branching between the address and the TLS op. */
1528 if (op_ptr
>= op_end
|| *op_ptr
!= DW_OP_GNU_push_tls_address
)
1529 uoffset
+= dwarf2_per_cu_text_offset (per_cu
);
1530 ax_const_l (expr
, uoffset
);
1534 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, 1, byte_order
));
1538 ax_const_l (expr
, extract_signed_integer (op_ptr
, 1, byte_order
));
1542 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, 2, byte_order
));
1546 ax_const_l (expr
, extract_signed_integer (op_ptr
, 2, byte_order
));
1550 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, 4, byte_order
));
1554 ax_const_l (expr
, extract_signed_integer (op_ptr
, 4, byte_order
));
1558 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, 8, byte_order
));
1562 ax_const_l (expr
, extract_signed_integer (op_ptr
, 8, byte_order
));
1566 op_ptr
= read_uleb128 (op_ptr
, op_end
, &uoffset
);
1567 ax_const_l (expr
, uoffset
);
1570 op_ptr
= read_sleb128 (op_ptr
, op_end
, &offset
);
1571 ax_const_l (expr
, offset
);
1606 dwarf_expr_require_composition (op_ptr
, op_end
, "DW_OP_regx");
1607 loc
->u
.reg
= translate_register (arch
, op
- DW_OP_reg0
);
1608 loc
->kind
= axs_lvalue_register
;
1612 op_ptr
= read_uleb128 (op_ptr
, op_end
, ®
);
1613 dwarf_expr_require_composition (op_ptr
, op_end
, "DW_OP_regx");
1614 loc
->u
.reg
= translate_register (arch
, reg
);
1615 loc
->kind
= axs_lvalue_register
;
1618 case DW_OP_implicit_value
:
1622 op_ptr
= read_uleb128 (op_ptr
, op_end
, &len
);
1623 if (op_ptr
+ len
> op_end
)
1624 error (_("DW_OP_implicit_value: too few bytes available."));
1625 if (len
> sizeof (ULONGEST
))
1626 error (_("Cannot translate DW_OP_implicit_value of %d bytes"),
1629 ax_const_l (expr
, extract_unsigned_integer (op_ptr
, len
,
1632 dwarf_expr_require_composition (op_ptr
, op_end
,
1633 "DW_OP_implicit_value");
1635 loc
->kind
= axs_rvalue
;
1639 case DW_OP_stack_value
:
1640 dwarf_expr_require_composition (op_ptr
, op_end
, "DW_OP_stack_value");
1641 loc
->kind
= axs_rvalue
;
1676 op_ptr
= read_sleb128 (op_ptr
, op_end
, &offset
);
1677 i
= translate_register (arch
, op
- DW_OP_breg0
);
1681 ax_const_l (expr
, offset
);
1682 ax_simple (expr
, aop_add
);
1687 op_ptr
= read_uleb128 (op_ptr
, op_end
, ®
);
1688 op_ptr
= read_sleb128 (op_ptr
, op_end
, &offset
);
1689 i
= translate_register (arch
, reg
);
1693 ax_const_l (expr
, offset
);
1694 ax_simple (expr
, aop_add
);
1700 const gdb_byte
*datastart
;
1702 unsigned int before_stack_len
;
1704 struct symbol
*framefunc
;
1705 LONGEST base_offset
= 0;
1707 b
= block_for_pc (expr
->scope
);
1710 error (_("No block found for address"));
1712 framefunc
= block_linkage_function (b
);
1715 error (_("No function found for block"));
1717 dwarf_expr_frame_base_1 (framefunc
, expr
->scope
,
1718 &datastart
, &datalen
);
1720 op_ptr
= read_sleb128 (op_ptr
, op_end
, &offset
);
1721 dwarf2_compile_expr_to_ax (expr
, loc
, arch
, addr_size
, datastart
,
1722 datastart
+ datalen
, per_cu
);
1726 ax_const_l (expr
, offset
);
1727 ax_simple (expr
, aop_add
);
1730 loc
->kind
= axs_lvalue_memory
;
1735 ax_simple (expr
, aop_dup
);
1739 ax_simple (expr
, aop_pop
);
1744 ax_pick (expr
, offset
);
1748 ax_simple (expr
, aop_swap
);
1756 ax_simple (expr
, aop_rot
);
1760 case DW_OP_deref_size
:
1764 if (op
== DW_OP_deref_size
)
1772 ax_simple (expr
, aop_ref8
);
1775 ax_simple (expr
, aop_ref16
);
1778 ax_simple (expr
, aop_ref32
);
1781 ax_simple (expr
, aop_ref64
);
1784 /* Note that dwarf_stack_op_name will never return
1786 error (_("Unsupported size %d in %s"),
1787 size
, dwarf_stack_op_name (op
));
1793 /* Sign extend the operand. */
1794 ax_ext (expr
, addr_size_bits
);
1795 ax_simple (expr
, aop_dup
);
1796 ax_const_l (expr
, 0);
1797 ax_simple (expr
, aop_less_signed
);
1798 ax_simple (expr
, aop_log_not
);
1799 i
= ax_goto (expr
, aop_if_goto
);
1800 /* We have to emit 0 - X. */
1801 ax_const_l (expr
, 0);
1802 ax_simple (expr
, aop_swap
);
1803 ax_simple (expr
, aop_sub
);
1804 ax_label (expr
, i
, expr
->len
);
1808 /* No need to sign extend here. */
1809 ax_const_l (expr
, 0);
1810 ax_simple (expr
, aop_swap
);
1811 ax_simple (expr
, aop_sub
);
1815 /* Sign extend the operand. */
1816 ax_ext (expr
, addr_size_bits
);
1817 ax_simple (expr
, aop_bit_not
);
1820 case DW_OP_plus_uconst
:
1821 op_ptr
= read_uleb128 (op_ptr
, op_end
, ®
);
1822 /* It would be really weird to emit `DW_OP_plus_uconst 0',
1823 but we micro-optimize anyhow. */
1826 ax_const_l (expr
, reg
);
1827 ax_simple (expr
, aop_add
);
1832 ax_simple (expr
, aop_bit_and
);
1836 /* Sign extend the operands. */
1837 ax_ext (expr
, addr_size_bits
);
1838 ax_simple (expr
, aop_swap
);
1839 ax_ext (expr
, addr_size_bits
);
1840 ax_simple (expr
, aop_swap
);
1841 ax_simple (expr
, aop_div_signed
);
1845 ax_simple (expr
, aop_sub
);
1849 ax_simple (expr
, aop_rem_unsigned
);
1853 ax_simple (expr
, aop_mul
);
1857 ax_simple (expr
, aop_bit_or
);
1861 ax_simple (expr
, aop_add
);
1865 ax_simple (expr
, aop_lsh
);
1869 ax_simple (expr
, aop_rsh_unsigned
);
1873 ax_simple (expr
, aop_rsh_signed
);
1877 ax_simple (expr
, aop_bit_xor
);
1881 /* Sign extend the operands. */
1882 ax_ext (expr
, addr_size_bits
);
1883 ax_simple (expr
, aop_swap
);
1884 ax_ext (expr
, addr_size_bits
);
1885 /* Note no swap here: A <= B is !(B < A). */
1886 ax_simple (expr
, aop_less_signed
);
1887 ax_simple (expr
, aop_log_not
);
1891 /* Sign extend the operands. */
1892 ax_ext (expr
, addr_size_bits
);
1893 ax_simple (expr
, aop_swap
);
1894 ax_ext (expr
, addr_size_bits
);
1895 ax_simple (expr
, aop_swap
);
1896 /* A >= B is !(A < B). */
1897 ax_simple (expr
, aop_less_signed
);
1898 ax_simple (expr
, aop_log_not
);
1902 /* Sign extend the operands. */
1903 ax_ext (expr
, addr_size_bits
);
1904 ax_simple (expr
, aop_swap
);
1905 ax_ext (expr
, addr_size_bits
);
1906 /* No need for a second swap here. */
1907 ax_simple (expr
, aop_equal
);
1911 /* Sign extend the operands. */
1912 ax_ext (expr
, addr_size_bits
);
1913 ax_simple (expr
, aop_swap
);
1914 ax_ext (expr
, addr_size_bits
);
1915 ax_simple (expr
, aop_swap
);
1916 ax_simple (expr
, aop_less_signed
);
1920 /* Sign extend the operands. */
1921 ax_ext (expr
, addr_size_bits
);
1922 ax_simple (expr
, aop_swap
);
1923 ax_ext (expr
, addr_size_bits
);
1924 /* Note no swap here: A > B is B < A. */
1925 ax_simple (expr
, aop_less_signed
);
1929 /* Sign extend the operands. */
1930 ax_ext (expr
, addr_size_bits
);
1931 ax_simple (expr
, aop_swap
);
1932 ax_ext (expr
, addr_size_bits
);
1933 /* No need for a swap here. */
1934 ax_simple (expr
, aop_equal
);
1935 ax_simple (expr
, aop_log_not
);
1938 case DW_OP_call_frame_cfa
:
1939 dwarf2_compile_cfa_to_ax (expr
, loc
, arch
, expr
->scope
, per_cu
);
1940 loc
->kind
= axs_lvalue_memory
;
1943 case DW_OP_GNU_push_tls_address
:
1948 offset
= extract_signed_integer (op_ptr
, 2, byte_order
);
1950 i
= ax_goto (expr
, aop_goto
);
1951 VEC_safe_push (int, dw_labels
, op_ptr
+ offset
- base
);
1952 VEC_safe_push (int, patches
, i
);
1956 offset
= extract_signed_integer (op_ptr
, 2, byte_order
);
1958 /* Zero extend the operand. */
1959 ax_zero_ext (expr
, addr_size_bits
);
1960 i
= ax_goto (expr
, aop_if_goto
);
1961 VEC_safe_push (int, dw_labels
, op_ptr
+ offset
- base
);
1962 VEC_safe_push (int, patches
, i
);
1969 case DW_OP_bit_piece
:
1971 ULONGEST size
, offset
;
1973 if (op_ptr
- 1 == previous_piece
)
1974 error (_("Cannot translate empty pieces to agent expressions"));
1975 previous_piece
= op_ptr
- 1;
1977 op_ptr
= read_uleb128 (op_ptr
, op_end
, &size
);
1978 if (op
== DW_OP_piece
)
1984 op_ptr
= read_uleb128 (op_ptr
, op_end
, &offset
);
1986 if (bits_collected
+ size
> 8 * sizeof (LONGEST
))
1987 error (_("Expression pieces exceed word size"));
1989 /* Access the bits. */
1992 case axs_lvalue_register
:
1993 ax_reg (expr
, loc
->u
.reg
);
1996 case axs_lvalue_memory
:
1997 /* Offset the pointer, if needed. */
2000 ax_const_l (expr
, offset
/ 8);
2001 ax_simple (expr
, aop_add
);
2004 access_memory (arch
, expr
, size
);
2008 /* For a bits-big-endian target, shift up what we already
2009 have. For a bits-little-endian target, shift up the
2010 new data. Note that there is a potential bug here if
2011 the DWARF expression leaves multiple values on the
2013 if (bits_collected
> 0)
2015 if (bits_big_endian
)
2017 ax_simple (expr
, aop_swap
);
2018 ax_const_l (expr
, size
);
2019 ax_simple (expr
, aop_lsh
);
2020 /* We don't need a second swap here, because
2021 aop_bit_or is symmetric. */
2025 ax_const_l (expr
, size
);
2026 ax_simple (expr
, aop_lsh
);
2028 ax_simple (expr
, aop_bit_or
);
2031 bits_collected
+= size
;
2032 loc
->kind
= axs_rvalue
;
2036 case DW_OP_GNU_uninit
:
2042 struct dwarf2_locexpr_baton block
;
2043 int size
= (op
== DW_OP_call2
? 2 : 4);
2045 uoffset
= extract_unsigned_integer (op_ptr
, size
, byte_order
);
2048 block
= dwarf2_fetch_die_location_block (uoffset
, per_cu
,
2051 /* DW_OP_call_ref is currently not supported. */
2052 gdb_assert (block
.per_cu
== per_cu
);
2054 dwarf2_compile_expr_to_ax (expr
, loc
, arch
, addr_size
,
2055 block
.data
, block
.data
+ block
.size
,
2060 case DW_OP_call_ref
:
2068 /* Patch all the branches we emitted. */
2069 for (i
= 0; i
< VEC_length (int, patches
); ++i
)
2071 int targ
= offsets
[VEC_index (int, dw_labels
, i
)];
2073 internal_error (__FILE__
, __LINE__
, _("invalid label"));
2074 ax_label (expr
, VEC_index (int, patches
, i
), targ
);
2077 do_cleanups (cleanups
);
2081 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
2082 evaluator to calculate the location. */
2083 static struct value
*
2084 locexpr_read_variable (struct symbol
*symbol
, struct frame_info
*frame
)
2086 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
2089 val
= dwarf2_evaluate_loc_desc (SYMBOL_TYPE (symbol
), frame
, dlbaton
->data
,
2090 dlbaton
->size
, dlbaton
->per_cu
);
2095 /* Return non-zero iff we need a frame to evaluate SYMBOL. */
2097 locexpr_read_needs_frame (struct symbol
*symbol
)
2099 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
2101 return dwarf2_loc_desc_needs_frame (dlbaton
->data
, dlbaton
->size
,
2105 /* Return true if DATA points to the end of a piece. END is one past
2106 the last byte in the expression. */
2109 piece_end_p (const gdb_byte
*data
, const gdb_byte
*end
)
2111 return data
== end
|| data
[0] == DW_OP_piece
|| data
[0] == DW_OP_bit_piece
;
2114 /* Nicely describe a single piece of a location, returning an updated
2115 position in the bytecode sequence. This function cannot recognize
2116 all locations; if a location is not recognized, it simply returns
2119 static const gdb_byte
*
2120 locexpr_describe_location_piece (struct symbol
*symbol
, struct ui_file
*stream
,
2121 CORE_ADDR addr
, struct objfile
*objfile
,
2122 const gdb_byte
*data
, const gdb_byte
*end
,
2123 unsigned int addr_size
)
2125 struct gdbarch
*gdbarch
= get_objfile_arch (objfile
);
2128 if (data
[0] >= DW_OP_reg0
&& data
[0] <= DW_OP_reg31
)
2130 regno
= gdbarch_dwarf2_reg_to_regnum (gdbarch
, data
[0] - DW_OP_reg0
);
2131 fprintf_filtered (stream
, _("a variable in $%s"),
2132 gdbarch_register_name (gdbarch
, regno
));
2135 else if (data
[0] == DW_OP_regx
)
2139 data
= read_uleb128 (data
+ 1, end
, ®
);
2140 regno
= gdbarch_dwarf2_reg_to_regnum (gdbarch
, reg
);
2141 fprintf_filtered (stream
, _("a variable in $%s"),
2142 gdbarch_register_name (gdbarch
, regno
));
2144 else if (data
[0] == DW_OP_fbreg
)
2147 struct symbol
*framefunc
;
2149 LONGEST frame_offset
;
2150 const gdb_byte
*base_data
, *new_data
, *save_data
= data
;
2152 LONGEST base_offset
= 0;
2154 new_data
= read_sleb128 (data
+ 1, end
, &frame_offset
);
2155 if (!piece_end_p (new_data
, end
))
2159 b
= block_for_pc (addr
);
2162 error (_("No block found for address for symbol \"%s\"."),
2163 SYMBOL_PRINT_NAME (symbol
));
2165 framefunc
= block_linkage_function (b
);
2168 error (_("No function found for block for symbol \"%s\"."),
2169 SYMBOL_PRINT_NAME (symbol
));
2171 dwarf_expr_frame_base_1 (framefunc
, addr
, &base_data
, &base_size
);
2173 if (base_data
[0] >= DW_OP_breg0
&& base_data
[0] <= DW_OP_breg31
)
2175 const gdb_byte
*buf_end
;
2177 frame_reg
= base_data
[0] - DW_OP_breg0
;
2178 buf_end
= read_sleb128 (base_data
+ 1,
2179 base_data
+ base_size
, &base_offset
);
2180 if (buf_end
!= base_data
+ base_size
)
2181 error (_("Unexpected opcode after "
2182 "DW_OP_breg%u for symbol \"%s\"."),
2183 frame_reg
, SYMBOL_PRINT_NAME (symbol
));
2185 else if (base_data
[0] >= DW_OP_reg0
&& base_data
[0] <= DW_OP_reg31
)
2187 /* The frame base is just the register, with no offset. */
2188 frame_reg
= base_data
[0] - DW_OP_reg0
;
2193 /* We don't know what to do with the frame base expression,
2194 so we can't trace this variable; give up. */
2198 regno
= gdbarch_dwarf2_reg_to_regnum (gdbarch
, frame_reg
);
2200 fprintf_filtered (stream
,
2201 _("a variable at frame base reg $%s offset %s+%s"),
2202 gdbarch_register_name (gdbarch
, regno
),
2203 plongest (base_offset
), plongest (frame_offset
));
2205 else if (data
[0] >= DW_OP_breg0
&& data
[0] <= DW_OP_breg31
2206 && piece_end_p (data
, end
))
2210 regno
= gdbarch_dwarf2_reg_to_regnum (gdbarch
, data
[0] - DW_OP_breg0
);
2212 data
= read_sleb128 (data
+ 1, end
, &offset
);
2214 fprintf_filtered (stream
,
2215 _("a variable at offset %s from base reg $%s"),
2217 gdbarch_register_name (gdbarch
, regno
));
2220 /* The location expression for a TLS variable looks like this (on a
2223 DW_AT_location : 10 byte block: 3 4 0 0 0 0 0 0 0 e0
2224 (DW_OP_addr: 4; DW_OP_GNU_push_tls_address)
2226 0x3 is the encoding for DW_OP_addr, which has an operand as long
2227 as the size of an address on the target machine (here is 8
2228 bytes). Note that more recent version of GCC emit DW_OP_const4u
2229 or DW_OP_const8u, depending on address size, rather than
2230 DW_OP_addr. 0xe0 is the encoding for DW_OP_GNU_push_tls_address.
2231 The operand represents the offset at which the variable is within
2232 the thread local storage. */
2234 else if (data
+ 1 + addr_size
< end
2235 && (data
[0] == DW_OP_addr
2236 || (addr_size
== 4 && data
[0] == DW_OP_const4u
)
2237 || (addr_size
== 8 && data
[0] == DW_OP_const8u
))
2238 && data
[1 + addr_size
] == DW_OP_GNU_push_tls_address
2239 && piece_end_p (data
+ 2 + addr_size
, end
))
2242 offset
= extract_unsigned_integer (data
+ 1, addr_size
,
2243 gdbarch_byte_order (gdbarch
));
2245 fprintf_filtered (stream
,
2246 _("a thread-local variable at offset 0x%s "
2247 "in the thread-local storage for `%s'"),
2248 phex_nz (offset
, addr_size
), objfile
->name
);
2250 data
+= 1 + addr_size
+ 1;
2252 else if (data
[0] >= DW_OP_lit0
2253 && data
[0] <= DW_OP_lit31
2255 && data
[1] == DW_OP_stack_value
)
2257 fprintf_filtered (stream
, _("the constant %d"), data
[0] - DW_OP_lit0
);
2264 /* Disassemble an expression, stopping at the end of a piece or at the
2265 end of the expression. Returns a pointer to the next unread byte
2266 in the input expression. If ALL is nonzero, then this function
2267 will keep going until it reaches the end of the expression. */
2269 static const gdb_byte
*
2270 disassemble_dwarf_expression (struct ui_file
*stream
,
2271 struct gdbarch
*arch
, unsigned int addr_size
,
2273 const gdb_byte
*data
, const gdb_byte
*end
,
2276 const gdb_byte
*start
= data
;
2278 fprintf_filtered (stream
, _("a complex DWARF expression:\n"));
2282 || (data
[0] != DW_OP_piece
&& data
[0] != DW_OP_bit_piece
)))
2284 enum dwarf_location_atom op
= *data
++;
2289 name
= dwarf_stack_op_name (op
);
2292 error (_("Unrecognized DWARF opcode 0x%02x at %ld"),
2293 op
, (long) (data
- start
));
2294 fprintf_filtered (stream
, " % 4ld: %s", (long) (data
- start
), name
);
2299 ul
= extract_unsigned_integer (data
, addr_size
,
2300 gdbarch_byte_order (arch
));
2302 fprintf_filtered (stream
, " 0x%s", phex_nz (ul
, addr_size
));
2306 ul
= extract_unsigned_integer (data
, 1, gdbarch_byte_order (arch
));
2308 fprintf_filtered (stream
, " %s", pulongest (ul
));
2311 l
= extract_signed_integer (data
, 1, gdbarch_byte_order (arch
));
2313 fprintf_filtered (stream
, " %s", plongest (l
));
2316 ul
= extract_unsigned_integer (data
, 2, gdbarch_byte_order (arch
));
2318 fprintf_filtered (stream
, " %s", pulongest (ul
));
2321 l
= extract_signed_integer (data
, 2, gdbarch_byte_order (arch
));
2323 fprintf_filtered (stream
, " %s", plongest (l
));
2326 ul
= extract_unsigned_integer (data
, 4, gdbarch_byte_order (arch
));
2328 fprintf_filtered (stream
, " %s", pulongest (ul
));
2331 l
= extract_signed_integer (data
, 4, gdbarch_byte_order (arch
));
2333 fprintf_filtered (stream
, " %s", plongest (l
));
2336 ul
= extract_unsigned_integer (data
, 8, gdbarch_byte_order (arch
));
2338 fprintf_filtered (stream
, " %s", pulongest (ul
));
2341 l
= extract_signed_integer (data
, 8, gdbarch_byte_order (arch
));
2343 fprintf_filtered (stream
, " %s", plongest (l
));
2346 data
= read_uleb128 (data
, end
, &ul
);
2347 fprintf_filtered (stream
, " %s", pulongest (ul
));
2350 data
= read_sleb128 (data
, end
, &l
);
2351 fprintf_filtered (stream
, " %s", plongest (l
));
2386 fprintf_filtered (stream
, " [$%s]",
2387 gdbarch_register_name (arch
, op
- DW_OP_reg0
));
2391 data
= read_uleb128 (data
, end
, &ul
);
2392 fprintf_filtered (stream
, " %s [$%s]", pulongest (ul
),
2393 gdbarch_register_name (arch
, (int) ul
));
2396 case DW_OP_implicit_value
:
2397 data
= read_uleb128 (data
, end
, &ul
);
2399 fprintf_filtered (stream
, " %s", pulongest (ul
));
2434 data
= read_sleb128 (data
, end
, &l
);
2435 fprintf_filtered (stream
, " %s [$%s]", plongest (l
),
2436 gdbarch_register_name (arch
, op
- DW_OP_breg0
));
2440 data
= read_uleb128 (data
, end
, &ul
);
2441 data
= read_sleb128 (data
, end
, &l
);
2442 fprintf_filtered (stream
, " register %s [$%s] offset %s",
2444 gdbarch_register_name (arch
, (int) ul
),
2449 data
= read_sleb128 (data
, end
, &l
);
2450 fprintf_filtered (stream
, " %s", plongest (l
));
2453 case DW_OP_xderef_size
:
2454 case DW_OP_deref_size
:
2456 fprintf_filtered (stream
, " %d", *data
);
2460 case DW_OP_plus_uconst
:
2461 data
= read_uleb128 (data
, end
, &ul
);
2462 fprintf_filtered (stream
, " %s", pulongest (ul
));
2466 l
= extract_signed_integer (data
, 2, gdbarch_byte_order (arch
));
2468 fprintf_filtered (stream
, " to %ld",
2469 (long) (data
+ l
- start
));
2473 l
= extract_signed_integer (data
, 2, gdbarch_byte_order (arch
));
2475 fprintf_filtered (stream
, " %ld",
2476 (long) (data
+ l
- start
));
2480 ul
= extract_unsigned_integer (data
, 2, gdbarch_byte_order (arch
));
2482 fprintf_filtered (stream
, " offset %s", phex_nz (ul
, 2));
2486 ul
= extract_unsigned_integer (data
, 4, gdbarch_byte_order (arch
));
2488 fprintf_filtered (stream
, " offset %s", phex_nz (ul
, 4));
2491 case DW_OP_call_ref
:
2492 ul
= extract_unsigned_integer (data
, offset_size
,
2493 gdbarch_byte_order (arch
));
2494 data
+= offset_size
;
2495 fprintf_filtered (stream
, " offset %s", phex_nz (ul
, offset_size
));
2499 data
= read_uleb128 (data
, end
, &ul
);
2500 fprintf_filtered (stream
, " %s (bytes)", pulongest (ul
));
2503 case DW_OP_bit_piece
:
2507 data
= read_uleb128 (data
, end
, &ul
);
2508 data
= read_uleb128 (data
, end
, &offset
);
2509 fprintf_filtered (stream
, " size %s offset %s (bits)",
2510 pulongest (ul
), pulongest (offset
));
2514 case DW_OP_GNU_implicit_pointer
:
2516 ul
= extract_unsigned_integer (data
, offset_size
,
2517 gdbarch_byte_order (arch
));
2518 data
+= offset_size
;
2520 data
= read_sleb128 (data
, end
, &l
);
2522 fprintf_filtered (stream
, " DIE %s offset %s",
2523 phex_nz (ul
, offset_size
),
2529 fprintf_filtered (stream
, "\n");
2535 /* Describe a single location, which may in turn consist of multiple
2539 locexpr_describe_location_1 (struct symbol
*symbol
, CORE_ADDR addr
,
2540 struct ui_file
*stream
,
2541 const gdb_byte
*data
, int size
,
2542 struct objfile
*objfile
, unsigned int addr_size
,
2545 const gdb_byte
*end
= data
+ size
;
2546 int first_piece
= 1, bad
= 0;
2550 const gdb_byte
*here
= data
;
2551 int disassemble
= 1;
2556 fprintf_filtered (stream
, _(", and "));
2558 if (!dwarf2_always_disassemble
)
2560 data
= locexpr_describe_location_piece (symbol
, stream
,
2562 data
, end
, addr_size
);
2563 /* If we printed anything, or if we have an empty piece,
2564 then don't disassemble. */
2566 || data
[0] == DW_OP_piece
2567 || data
[0] == DW_OP_bit_piece
)
2571 data
= disassemble_dwarf_expression (stream
,
2572 get_objfile_arch (objfile
),
2573 addr_size
, offset_size
, data
, end
,
2574 dwarf2_always_disassemble
);
2578 int empty
= data
== here
;
2581 fprintf_filtered (stream
, " ");
2582 if (data
[0] == DW_OP_piece
)
2586 data
= read_uleb128 (data
+ 1, end
, &bytes
);
2589 fprintf_filtered (stream
, _("an empty %s-byte piece"),
2592 fprintf_filtered (stream
, _(" [%s-byte piece]"),
2595 else if (data
[0] == DW_OP_bit_piece
)
2597 ULONGEST bits
, offset
;
2599 data
= read_uleb128 (data
+ 1, end
, &bits
);
2600 data
= read_uleb128 (data
, end
, &offset
);
2603 fprintf_filtered (stream
,
2604 _("an empty %s-bit piece"),
2607 fprintf_filtered (stream
,
2608 _(" [%s-bit piece, offset %s bits]"),
2609 pulongest (bits
), pulongest (offset
));
2619 if (bad
|| data
> end
)
2620 error (_("Corrupted DWARF2 expression for \"%s\"."),
2621 SYMBOL_PRINT_NAME (symbol
));
2624 /* Print a natural-language description of SYMBOL to STREAM. This
2625 version is for a symbol with a single location. */
2628 locexpr_describe_location (struct symbol
*symbol
, CORE_ADDR addr
,
2629 struct ui_file
*stream
)
2631 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
2632 struct objfile
*objfile
= dwarf2_per_cu_objfile (dlbaton
->per_cu
);
2633 unsigned int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
2634 int offset_size
= dwarf2_per_cu_offset_size (dlbaton
->per_cu
);
2636 locexpr_describe_location_1 (symbol
, addr
, stream
,
2637 dlbaton
->data
, dlbaton
->size
,
2638 objfile
, addr_size
, offset_size
);
2641 /* Describe the location of SYMBOL as an agent value in VALUE, generating
2642 any necessary bytecode in AX. */
2645 locexpr_tracepoint_var_ref (struct symbol
*symbol
, struct gdbarch
*gdbarch
,
2646 struct agent_expr
*ax
, struct axs_value
*value
)
2648 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
2649 unsigned int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
2651 if (dlbaton
->data
== NULL
|| dlbaton
->size
== 0)
2652 value
->optimized_out
= 1;
2654 dwarf2_compile_expr_to_ax (ax
, value
, gdbarch
, addr_size
,
2655 dlbaton
->data
, dlbaton
->data
+ dlbaton
->size
,
2659 /* The set of location functions used with the DWARF-2 expression
2661 const struct symbol_computed_ops dwarf2_locexpr_funcs
= {
2662 locexpr_read_variable
,
2663 locexpr_read_needs_frame
,
2664 locexpr_describe_location
,
2665 locexpr_tracepoint_var_ref
2669 /* Wrapper functions for location lists. These generally find
2670 the appropriate location expression and call something above. */
2672 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
2673 evaluator to calculate the location. */
2674 static struct value
*
2675 loclist_read_variable (struct symbol
*symbol
, struct frame_info
*frame
)
2677 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
2679 const gdb_byte
*data
;
2681 CORE_ADDR pc
= frame
? get_frame_address_in_block (frame
) : 0;
2683 data
= dwarf2_find_location_expression (dlbaton
, &size
, pc
);
2686 val
= allocate_value (SYMBOL_TYPE (symbol
));
2687 VALUE_LVAL (val
) = not_lval
;
2688 set_value_optimized_out (val
, 1);
2691 val
= dwarf2_evaluate_loc_desc (SYMBOL_TYPE (symbol
), frame
, data
, size
,
2697 /* Return non-zero iff we need a frame to evaluate SYMBOL. */
2699 loclist_read_needs_frame (struct symbol
*symbol
)
2701 /* If there's a location list, then assume we need to have a frame
2702 to choose the appropriate location expression. With tracking of
2703 global variables this is not necessarily true, but such tracking
2704 is disabled in GCC at the moment until we figure out how to
2710 /* Print a natural-language description of SYMBOL to STREAM. This
2711 version applies when there is a list of different locations, each
2712 with a specified address range. */
2715 loclist_describe_location (struct symbol
*symbol
, CORE_ADDR addr
,
2716 struct ui_file
*stream
)
2718 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
2719 CORE_ADDR low
, high
;
2720 const gdb_byte
*loc_ptr
, *buf_end
;
2721 int length
, first
= 1;
2722 struct objfile
*objfile
= dwarf2_per_cu_objfile (dlbaton
->per_cu
);
2723 struct gdbarch
*gdbarch
= get_objfile_arch (objfile
);
2724 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2725 unsigned int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
2726 int offset_size
= dwarf2_per_cu_offset_size (dlbaton
->per_cu
);
2727 int signed_addr_p
= bfd_get_sign_extend_vma (objfile
->obfd
);
2728 CORE_ADDR base_mask
= ~(~(CORE_ADDR
)1 << (addr_size
* 8 - 1));
2729 /* Adjust base_address for relocatable objects. */
2730 CORE_ADDR base_offset
= dwarf2_per_cu_text_offset (dlbaton
->per_cu
);
2731 CORE_ADDR base_address
= dlbaton
->base_address
+ base_offset
;
2733 loc_ptr
= dlbaton
->data
;
2734 buf_end
= dlbaton
->data
+ dlbaton
->size
;
2736 fprintf_filtered (stream
, _("multi-location:\n"));
2738 /* Iterate through locations until we run out. */
2741 if (buf_end
- loc_ptr
< 2 * addr_size
)
2742 error (_("Corrupted DWARF expression for symbol \"%s\"."),
2743 SYMBOL_PRINT_NAME (symbol
));
2746 low
= extract_signed_integer (loc_ptr
, addr_size
, byte_order
);
2748 low
= extract_unsigned_integer (loc_ptr
, addr_size
, byte_order
);
2749 loc_ptr
+= addr_size
;
2752 high
= extract_signed_integer (loc_ptr
, addr_size
, byte_order
);
2754 high
= extract_unsigned_integer (loc_ptr
, addr_size
, byte_order
);
2755 loc_ptr
+= addr_size
;
2757 /* A base-address-selection entry. */
2758 if ((low
& base_mask
) == base_mask
)
2760 base_address
= high
+ base_offset
;
2761 fprintf_filtered (stream
, _(" Base address %s"),
2762 paddress (gdbarch
, base_address
));
2766 /* An end-of-list entry. */
2767 if (low
== 0 && high
== 0)
2770 /* Otherwise, a location expression entry. */
2771 low
+= base_address
;
2772 high
+= base_address
;
2774 length
= extract_unsigned_integer (loc_ptr
, 2, byte_order
);
2777 /* (It would improve readability to print only the minimum
2778 necessary digits of the second number of the range.) */
2779 fprintf_filtered (stream
, _(" Range %s-%s: "),
2780 paddress (gdbarch
, low
), paddress (gdbarch
, high
));
2782 /* Now describe this particular location. */
2783 locexpr_describe_location_1 (symbol
, low
, stream
, loc_ptr
, length
,
2784 objfile
, addr_size
, offset_size
);
2786 fprintf_filtered (stream
, "\n");
2792 /* Describe the location of SYMBOL as an agent value in VALUE, generating
2793 any necessary bytecode in AX. */
2795 loclist_tracepoint_var_ref (struct symbol
*symbol
, struct gdbarch
*gdbarch
,
2796 struct agent_expr
*ax
, struct axs_value
*value
)
2798 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
2799 const gdb_byte
*data
;
2801 unsigned int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
2803 data
= dwarf2_find_location_expression (dlbaton
, &size
, ax
->scope
);
2804 if (data
== NULL
|| size
== 0)
2805 value
->optimized_out
= 1;
2807 dwarf2_compile_expr_to_ax (ax
, value
, gdbarch
, addr_size
, data
, data
+ size
,
2811 /* The set of location functions used with the DWARF-2 expression
2812 evaluator and location lists. */
2813 const struct symbol_computed_ops dwarf2_loclist_funcs
= {
2814 loclist_read_variable
,
2815 loclist_read_needs_frame
,
2816 loclist_describe_location
,
2817 loclist_tracepoint_var_ref