1 /* DWARF 2 location expression support for GDB.
3 Copyright (C) 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
5 Contributed by Daniel Jacobowitz, MontaVista Software, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
33 #include "exceptions.h"
35 #include "elf/dwarf2.h"
36 #include "dwarf2expr.h"
37 #include "dwarf2loc.h"
39 #include "gdb_string.h"
40 #include "gdb_assert.h"
42 /* A helper function for dealing with location lists. Given a
43 symbol baton (BATON) and a pc value (PC), find the appropriate
44 location expression, set *LOCEXPR_LENGTH, and return a pointer
45 to the beginning of the expression. Returns NULL on failure.
47 For now, only return the first matching location expression; there
48 can be more than one in the list. */
51 find_location_expression (struct dwarf2_loclist_baton
*baton
,
52 size_t *locexpr_length
, CORE_ADDR pc
)
55 gdb_byte
*loc_ptr
, *buf_end
;
57 struct objfile
*objfile
= dwarf2_per_cu_objfile (baton
->per_cu
);
58 unsigned int addr_size
= dwarf2_per_cu_addr_size (baton
->per_cu
);
59 CORE_ADDR base_mask
= ~(~(CORE_ADDR
)1 << (addr_size
* 8 - 1));
60 /* Adjust base_address for relocatable objects. */
61 CORE_ADDR base_offset
= ANOFFSET (objfile
->section_offsets
,
62 SECT_OFF_TEXT (objfile
));
63 CORE_ADDR base_address
= baton
->base_address
+ base_offset
;
65 loc_ptr
= baton
->data
;
66 buf_end
= baton
->data
+ baton
->size
;
70 low
= dwarf2_read_address (loc_ptr
, buf_end
, addr_size
);
72 high
= dwarf2_read_address (loc_ptr
, buf_end
, addr_size
);
75 /* An end-of-list entry. */
76 if (low
== 0 && high
== 0)
79 /* A base-address-selection entry. */
80 if ((low
& base_mask
) == base_mask
)
86 /* Otherwise, a location expression entry. */
90 length
= extract_unsigned_integer (loc_ptr
, 2);
93 if (pc
>= low
&& pc
< high
)
95 *locexpr_length
= length
;
103 /* This is the baton used when performing dwarf2 expression
105 struct dwarf_expr_baton
107 struct frame_info
*frame
;
108 struct objfile
*objfile
;
111 /* Helper functions for dwarf2_evaluate_loc_desc. */
113 /* Using the frame specified in BATON, return the value of register
114 REGNUM, treated as a pointer. */
116 dwarf_expr_read_reg (void *baton
, int dwarf_regnum
)
118 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
119 struct gdbarch
*gdbarch
= get_frame_arch (debaton
->frame
);
123 regnum
= gdbarch_dwarf2_reg_to_regnum (gdbarch
, dwarf_regnum
);
124 result
= address_from_register (builtin_type (gdbarch
)->builtin_data_ptr
,
125 regnum
, debaton
->frame
);
129 /* Read memory at ADDR (length LEN) into BUF. */
132 dwarf_expr_read_mem (void *baton
, gdb_byte
*buf
, CORE_ADDR addr
, size_t len
)
134 read_memory (addr
, buf
, len
);
137 /* Using the frame specified in BATON, find the location expression
138 describing the frame base. Return a pointer to it in START and
139 its length in LENGTH. */
141 dwarf_expr_frame_base (void *baton
, gdb_byte
**start
, size_t * length
)
143 /* FIXME: cagney/2003-03-26: This code should be using
144 get_frame_base_address(), and then implement a dwarf2 specific
146 struct symbol
*framefunc
;
147 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
149 framefunc
= get_frame_function (debaton
->frame
);
151 /* If we found a frame-relative symbol then it was certainly within
152 some function associated with a frame. If we can't find the frame,
153 something has gone wrong. */
154 gdb_assert (framefunc
!= NULL
);
156 if (SYMBOL_OPS (framefunc
) == &dwarf2_loclist_funcs
)
158 struct dwarf2_loclist_baton
*symbaton
;
159 struct frame_info
*frame
= debaton
->frame
;
161 symbaton
= SYMBOL_LOCATION_BATON (framefunc
);
162 *start
= find_location_expression (symbaton
, length
,
163 get_frame_address_in_block (frame
));
167 struct dwarf2_locexpr_baton
*symbaton
;
168 symbaton
= SYMBOL_LOCATION_BATON (framefunc
);
169 if (symbaton
!= NULL
)
171 *length
= symbaton
->size
;
172 *start
= symbaton
->data
;
179 error (_("Could not find the frame base for \"%s\"."),
180 SYMBOL_NATURAL_NAME (framefunc
));
183 /* Using the objfile specified in BATON, find the address for the
184 current thread's thread-local storage with offset OFFSET. */
186 dwarf_expr_tls_address (void *baton
, CORE_ADDR offset
)
188 struct dwarf_expr_baton
*debaton
= (struct dwarf_expr_baton
*) baton
;
190 return target_translate_tls_address (debaton
->objfile
, offset
);
193 /* Evaluate a location description, starting at DATA and with length
194 SIZE, to find the current location of variable VAR in the context
196 static struct value
*
197 dwarf2_evaluate_loc_desc (struct symbol
*var
, struct frame_info
*frame
,
198 gdb_byte
*data
, unsigned short size
,
199 struct dwarf2_per_cu_data
*per_cu
)
201 struct gdbarch
*arch
= get_frame_arch (frame
);
202 struct value
*retval
;
203 struct dwarf_expr_baton baton
;
204 struct dwarf_expr_context
*ctx
;
208 retval
= allocate_value (SYMBOL_TYPE (var
));
209 VALUE_LVAL (retval
) = not_lval
;
210 set_value_optimized_out (retval
, 1);
215 baton
.objfile
= dwarf2_per_cu_objfile (per_cu
);
217 ctx
= new_dwarf_expr_context ();
218 ctx
->addr_size
= dwarf2_per_cu_addr_size (per_cu
);
220 ctx
->read_reg
= dwarf_expr_read_reg
;
221 ctx
->read_mem
= dwarf_expr_read_mem
;
222 ctx
->get_frame_base
= dwarf_expr_frame_base
;
223 ctx
->get_tls_address
= dwarf_expr_tls_address
;
225 dwarf_expr_eval (ctx
, data
, size
);
226 if (ctx
->num_pieces
> 0)
232 retval
= allocate_value (SYMBOL_TYPE (var
));
233 contents
= value_contents_raw (retval
);
234 for (i
= 0; i
< ctx
->num_pieces
; i
++)
236 struct dwarf_expr_piece
*p
= &ctx
->pieces
[i
];
239 bfd_byte regval
[MAX_REGISTER_SIZE
];
240 int gdb_regnum
= gdbarch_dwarf2_reg_to_regnum
242 get_frame_register (frame
, gdb_regnum
, regval
);
243 memcpy (contents
+ offset
, regval
, p
->size
);
245 else /* In memory? */
247 read_memory (p
->value
, contents
+ offset
, p
->size
);
252 else if (ctx
->in_reg
)
254 CORE_ADDR dwarf_regnum
= dwarf_expr_fetch (ctx
, 0);
255 int gdb_regnum
= gdbarch_dwarf2_reg_to_regnum
256 (arch
, dwarf_regnum
);
257 retval
= value_from_register (SYMBOL_TYPE (var
), gdb_regnum
, frame
);
261 CORE_ADDR address
= dwarf_expr_fetch (ctx
, 0);
263 retval
= allocate_value (SYMBOL_TYPE (var
));
264 VALUE_LVAL (retval
) = lval_memory
;
265 set_value_lazy (retval
, 1);
266 VALUE_ADDRESS (retval
) = address
;
269 set_value_initialized (retval
, ctx
->initialized
);
271 free_dwarf_expr_context (ctx
);
280 /* Helper functions and baton for dwarf2_loc_desc_needs_frame. */
282 struct needs_frame_baton
287 /* Reads from registers do require a frame. */
289 needs_frame_read_reg (void *baton
, int regnum
)
291 struct needs_frame_baton
*nf_baton
= baton
;
292 nf_baton
->needs_frame
= 1;
296 /* Reads from memory do not require a frame. */
298 needs_frame_read_mem (void *baton
, gdb_byte
*buf
, CORE_ADDR addr
, size_t len
)
300 memset (buf
, 0, len
);
303 /* Frame-relative accesses do require a frame. */
305 needs_frame_frame_base (void *baton
, gdb_byte
**start
, size_t * length
)
307 static gdb_byte lit0
= DW_OP_lit0
;
308 struct needs_frame_baton
*nf_baton
= baton
;
313 nf_baton
->needs_frame
= 1;
316 /* Thread-local accesses do require a frame. */
318 needs_frame_tls_address (void *baton
, CORE_ADDR offset
)
320 struct needs_frame_baton
*nf_baton
= baton
;
321 nf_baton
->needs_frame
= 1;
325 /* Return non-zero iff the location expression at DATA (length SIZE)
326 requires a frame to evaluate. */
329 dwarf2_loc_desc_needs_frame (gdb_byte
*data
, unsigned short size
,
330 struct dwarf2_per_cu_data
*per_cu
)
332 struct needs_frame_baton baton
;
333 struct dwarf_expr_context
*ctx
;
336 baton
.needs_frame
= 0;
338 ctx
= new_dwarf_expr_context ();
339 ctx
->addr_size
= dwarf2_per_cu_addr_size (per_cu
);
341 ctx
->read_reg
= needs_frame_read_reg
;
342 ctx
->read_mem
= needs_frame_read_mem
;
343 ctx
->get_frame_base
= needs_frame_frame_base
;
344 ctx
->get_tls_address
= needs_frame_tls_address
;
346 dwarf_expr_eval (ctx
, data
, size
);
348 in_reg
= ctx
->in_reg
;
350 if (ctx
->num_pieces
> 0)
354 /* If the location has several pieces, and any of them are in
355 registers, then we will need a frame to fetch them from. */
356 for (i
= 0; i
< ctx
->num_pieces
; i
++)
357 if (ctx
->pieces
[i
].in_reg
)
361 free_dwarf_expr_context (ctx
);
363 return baton
.needs_frame
|| in_reg
;
367 dwarf2_tracepoint_var_ref (struct symbol
*symbol
, struct agent_expr
*ax
,
368 struct axs_value
*value
, gdb_byte
*data
,
372 error (_("Symbol \"%s\" has been optimized out."),
373 SYMBOL_PRINT_NAME (symbol
));
376 && data
[0] >= DW_OP_reg0
377 && data
[0] <= DW_OP_reg31
)
379 value
->kind
= axs_lvalue_register
;
380 value
->u
.reg
= data
[0] - DW_OP_reg0
;
382 else if (data
[0] == DW_OP_regx
)
385 read_uleb128 (data
+ 1, data
+ size
, ®
);
386 value
->kind
= axs_lvalue_register
;
389 else if (data
[0] == DW_OP_fbreg
)
391 /* And this is worse than just minimal; we should honor the frame base
394 LONGEST frame_offset
;
397 buf_end
= read_sleb128 (data
+ 1, data
+ size
, &frame_offset
);
398 if (buf_end
!= data
+ size
)
399 error (_("Unexpected opcode after DW_OP_fbreg for symbol \"%s\"."),
400 SYMBOL_PRINT_NAME (symbol
));
402 gdbarch_virtual_frame_pointer (current_gdbarch
,
403 ax
->scope
, &frame_reg
, &frame_offset
);
404 ax_reg (ax
, frame_reg
);
405 ax_const_l (ax
, frame_offset
);
406 ax_simple (ax
, aop_add
);
408 value
->kind
= axs_lvalue_memory
;
410 else if (data
[0] >= DW_OP_breg0
411 && data
[0] <= DW_OP_breg31
)
417 reg
= data
[0] - DW_OP_breg0
;
418 buf_end
= read_sleb128 (data
+ 1, data
+ size
, &offset
);
419 if (buf_end
!= data
+ size
)
420 error (_("Unexpected opcode after DW_OP_breg%u for symbol \"%s\"."),
421 reg
, SYMBOL_PRINT_NAME (symbol
));
424 ax_const_l (ax
, offset
);
425 ax_simple (ax
, aop_add
);
427 value
->kind
= axs_lvalue_memory
;
430 error (_("Unsupported DWARF opcode 0x%x in the location of \"%s\"."),
431 data
[0], SYMBOL_PRINT_NAME (symbol
));
434 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
435 evaluator to calculate the location. */
436 static struct value
*
437 locexpr_read_variable (struct symbol
*symbol
, struct frame_info
*frame
)
439 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
441 val
= dwarf2_evaluate_loc_desc (symbol
, frame
, dlbaton
->data
, dlbaton
->size
,
447 /* Return non-zero iff we need a frame to evaluate SYMBOL. */
449 locexpr_read_needs_frame (struct symbol
*symbol
)
451 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
452 return dwarf2_loc_desc_needs_frame (dlbaton
->data
, dlbaton
->size
,
456 /* Print a natural-language description of SYMBOL to STREAM. */
458 locexpr_describe_location (struct symbol
*symbol
, struct ui_file
*stream
)
460 /* FIXME: be more extensive. */
461 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
462 int addr_size
= dwarf2_per_cu_addr_size (dlbaton
->per_cu
);
464 if (dlbaton
->size
== 1
465 && dlbaton
->data
[0] >= DW_OP_reg0
466 && dlbaton
->data
[0] <= DW_OP_reg31
)
468 struct objfile
*objfile
= dwarf2_per_cu_objfile (dlbaton
->per_cu
);
469 struct gdbarch
*gdbarch
= get_objfile_arch (objfile
);
470 int regno
= gdbarch_dwarf2_reg_to_regnum (gdbarch
,
471 dlbaton
->data
[0] - DW_OP_reg0
);
472 fprintf_filtered (stream
,
473 "a variable in register %s",
474 gdbarch_register_name (gdbarch
, regno
));
478 /* The location expression for a TLS variable looks like this (on a
481 DW_AT_location : 10 byte block: 3 4 0 0 0 0 0 0 0 e0
482 (DW_OP_addr: 4; DW_OP_GNU_push_tls_address)
484 0x3 is the encoding for DW_OP_addr, which has an operand as long
485 as the size of an address on the target machine (here is 8
486 bytes). 0xe0 is the encoding for DW_OP_GNU_push_tls_address.
487 The operand represents the offset at which the variable is within
488 the thread local storage. */
490 if (dlbaton
->size
> 1
491 && dlbaton
->data
[dlbaton
->size
- 1] == DW_OP_GNU_push_tls_address
)
492 if (dlbaton
->data
[0] == DW_OP_addr
)
494 struct objfile
*objfile
= dwarf2_per_cu_objfile (dlbaton
->per_cu
);
495 CORE_ADDR offset
= dwarf2_read_address (&dlbaton
->data
[1],
496 &dlbaton
->data
[dlbaton
->size
- 1],
498 fprintf_filtered (stream
,
499 "a thread-local variable at offset %s in the "
500 "thread-local storage for `%s'",
501 paddr_nz (offset
), objfile
->name
);
506 fprintf_filtered (stream
,
507 "a variable with complex or multiple locations (DWARF2)");
512 /* Describe the location of SYMBOL as an agent value in VALUE, generating
513 any necessary bytecode in AX.
515 NOTE drow/2003-02-26: This function is extremely minimal, because
516 doing it correctly is extremely complicated and there is no
517 publicly available stub with tracepoint support for me to test
518 against. When there is one this function should be revisited. */
521 locexpr_tracepoint_var_ref (struct symbol
* symbol
, struct agent_expr
* ax
,
522 struct axs_value
* value
)
524 struct dwarf2_locexpr_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
526 dwarf2_tracepoint_var_ref (symbol
, ax
, value
, dlbaton
->data
, dlbaton
->size
);
529 /* The set of location functions used with the DWARF-2 expression
531 const struct symbol_ops dwarf2_locexpr_funcs
= {
532 locexpr_read_variable
,
533 locexpr_read_needs_frame
,
534 locexpr_describe_location
,
535 locexpr_tracepoint_var_ref
539 /* Wrapper functions for location lists. These generally find
540 the appropriate location expression and call something above. */
542 /* Return the value of SYMBOL in FRAME using the DWARF-2 expression
543 evaluator to calculate the location. */
544 static struct value
*
545 loclist_read_variable (struct symbol
*symbol
, struct frame_info
*frame
)
547 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
552 data
= find_location_expression (dlbaton
, &size
,
553 frame
? get_frame_address_in_block (frame
)
557 val
= allocate_value (SYMBOL_TYPE (symbol
));
558 VALUE_LVAL (val
) = not_lval
;
559 set_value_optimized_out (val
, 1);
562 val
= dwarf2_evaluate_loc_desc (symbol
, frame
, data
, size
,
568 /* Return non-zero iff we need a frame to evaluate SYMBOL. */
570 loclist_read_needs_frame (struct symbol
*symbol
)
572 /* If there's a location list, then assume we need to have a frame
573 to choose the appropriate location expression. With tracking of
574 global variables this is not necessarily true, but such tracking
575 is disabled in GCC at the moment until we figure out how to
581 /* Print a natural-language description of SYMBOL to STREAM. */
583 loclist_describe_location (struct symbol
*symbol
, struct ui_file
*stream
)
585 /* FIXME: Could print the entire list of locations. */
586 fprintf_filtered (stream
, "a variable with multiple locations");
590 /* Describe the location of SYMBOL as an agent value in VALUE, generating
591 any necessary bytecode in AX. */
593 loclist_tracepoint_var_ref (struct symbol
* symbol
, struct agent_expr
* ax
,
594 struct axs_value
* value
)
596 struct dwarf2_loclist_baton
*dlbaton
= SYMBOL_LOCATION_BATON (symbol
);
600 data
= find_location_expression (dlbaton
, &size
, ax
->scope
);
602 error (_("Variable \"%s\" is not available."), SYMBOL_NATURAL_NAME (symbol
));
604 dwarf2_tracepoint_var_ref (symbol
, ax
, value
, data
, size
);
607 /* The set of location functions used with the DWARF-2 expression
608 evaluator and location lists. */
609 const struct symbol_ops dwarf2_loclist_funcs
= {
610 loclist_read_variable
,
611 loclist_read_needs_frame
,
612 loclist_describe_location
,
613 loclist_tracepoint_var_ref