1 /* Find a variable's value in memory, for GDB, the GNU debugger.
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2007, 2008, 2009
5 Free Software Foundation, 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/>. */
30 #include "gdb_string.h"
31 #include "gdb_assert.h"
32 #include "floatformat.h"
33 #include "symfile.h" /* for overlay functions */
35 #include "user-regs.h"
39 /* Basic byte-swapping routines. GDB has needed these for a long time...
40 All extract a target-format integer at ADDR which is LEN bytes long. */
42 #if TARGET_CHAR_BIT != 8 || HOST_CHAR_BIT != 8
43 /* 8 bit characters are a pretty safe assumption these days, so we
44 assume it throughout all these swapping routines. If we had to deal with
45 9 bit characters, we would need to make len be in bits and would have
46 to re-write these routines... */
51 extract_signed_integer (const gdb_byte
*addr
, int len
,
52 enum bfd_endian byte_order
)
55 const unsigned char *p
;
56 const unsigned char *startaddr
= addr
;
57 const unsigned char *endaddr
= startaddr
+ len
;
59 if (len
> (int) sizeof (LONGEST
))
61 That operation is not available on integers of more than %d bytes."),
62 (int) sizeof (LONGEST
));
64 /* Start at the most significant end of the integer, and work towards
65 the least significant. */
66 if (byte_order
== BFD_ENDIAN_BIG
)
69 /* Do the sign extension once at the start. */
70 retval
= ((LONGEST
) * p
^ 0x80) - 0x80;
71 for (++p
; p
< endaddr
; ++p
)
72 retval
= (retval
<< 8) | *p
;
77 /* Do the sign extension once at the start. */
78 retval
= ((LONGEST
) * p
^ 0x80) - 0x80;
79 for (--p
; p
>= startaddr
; --p
)
80 retval
= (retval
<< 8) | *p
;
86 extract_unsigned_integer (const gdb_byte
*addr
, int len
,
87 enum bfd_endian byte_order
)
90 const unsigned char *p
;
91 const unsigned char *startaddr
= addr
;
92 const unsigned char *endaddr
= startaddr
+ len
;
94 if (len
> (int) sizeof (ULONGEST
))
96 That operation is not available on integers of more than %d bytes."),
97 (int) sizeof (ULONGEST
));
99 /* Start at the most significant end of the integer, and work towards
100 the least significant. */
102 if (byte_order
== BFD_ENDIAN_BIG
)
104 for (p
= startaddr
; p
< endaddr
; ++p
)
105 retval
= (retval
<< 8) | *p
;
109 for (p
= endaddr
- 1; p
>= startaddr
; --p
)
110 retval
= (retval
<< 8) | *p
;
115 /* Sometimes a long long unsigned integer can be extracted as a
116 LONGEST value. This is done so that we can print these values
117 better. If this integer can be converted to a LONGEST, this
118 function returns 1 and sets *PVAL. Otherwise it returns 0. */
121 extract_long_unsigned_integer (const gdb_byte
*addr
, int orig_len
,
122 enum bfd_endian byte_order
, LONGEST
*pval
)
125 const gdb_byte
*first_addr
;
129 if (byte_order
== BFD_ENDIAN_BIG
)
132 len
> (int) sizeof (LONGEST
) && p
< addr
+ orig_len
;
145 for (p
= addr
+ orig_len
- 1;
146 len
> (int) sizeof (LONGEST
) && p
>= addr
;
156 if (len
<= (int) sizeof (LONGEST
))
158 *pval
= (LONGEST
) extract_unsigned_integer (first_addr
,
168 /* Treat the bytes at BUF as a pointer of type TYPE, and return the
169 address it represents. */
171 extract_typed_address (const gdb_byte
*buf
, struct type
*type
)
173 if (TYPE_CODE (type
) != TYPE_CODE_PTR
174 && TYPE_CODE (type
) != TYPE_CODE_REF
)
175 internal_error (__FILE__
, __LINE__
,
176 _("extract_typed_address: "
177 "type is not a pointer or reference"));
179 return gdbarch_pointer_to_address (get_type_arch (type
), type
, buf
);
184 store_signed_integer (gdb_byte
*addr
, int len
,
185 enum bfd_endian byte_order
, LONGEST val
)
188 gdb_byte
*startaddr
= addr
;
189 gdb_byte
*endaddr
= startaddr
+ len
;
191 /* Start at the least significant end of the integer, and work towards
192 the most significant. */
193 if (byte_order
== BFD_ENDIAN_BIG
)
195 for (p
= endaddr
- 1; p
>= startaddr
; --p
)
203 for (p
= startaddr
; p
< endaddr
; ++p
)
212 store_unsigned_integer (gdb_byte
*addr
, int len
,
213 enum bfd_endian byte_order
, ULONGEST val
)
216 unsigned char *startaddr
= (unsigned char *) addr
;
217 unsigned char *endaddr
= startaddr
+ len
;
219 /* Start at the least significant end of the integer, and work towards
220 the most significant. */
221 if (byte_order
== BFD_ENDIAN_BIG
)
223 for (p
= endaddr
- 1; p
>= startaddr
; --p
)
231 for (p
= startaddr
; p
< endaddr
; ++p
)
239 /* Store the address ADDR as a pointer of type TYPE at BUF, in target
242 store_typed_address (gdb_byte
*buf
, struct type
*type
, CORE_ADDR addr
)
244 if (TYPE_CODE (type
) != TYPE_CODE_PTR
245 && TYPE_CODE (type
) != TYPE_CODE_REF
)
246 internal_error (__FILE__
, __LINE__
,
247 _("store_typed_address: "
248 "type is not a pointer or reference"));
250 gdbarch_address_to_pointer (get_type_arch (type
), type
, buf
, addr
);
255 /* Return a `value' with the contents of (virtual or cooked) register
256 REGNUM as found in the specified FRAME. The register's type is
257 determined by register_type(). */
260 value_of_register (int regnum
, struct frame_info
*frame
)
262 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
265 struct value
*reg_val
;
267 gdb_byte raw_buffer
[MAX_REGISTER_SIZE
];
270 /* User registers lie completely outside of the range of normal
271 registers. Catch them early so that the target never sees them. */
272 if (regnum
>= gdbarch_num_regs (gdbarch
)
273 + gdbarch_num_pseudo_regs (gdbarch
))
274 return value_of_user_reg (regnum
, frame
);
276 frame_register (frame
, regnum
, &optim
, &lval
, &addr
, &realnum
, raw_buffer
);
278 reg_val
= allocate_value (register_type (gdbarch
, regnum
));
280 memcpy (value_contents_raw (reg_val
), raw_buffer
,
281 register_size (gdbarch
, regnum
));
282 VALUE_LVAL (reg_val
) = lval
;
283 set_value_address (reg_val
, addr
);
284 VALUE_REGNUM (reg_val
) = regnum
;
285 set_value_optimized_out (reg_val
, optim
);
286 VALUE_FRAME_ID (reg_val
) = get_frame_id (frame
);
290 /* Return a `value' with the contents of (virtual or cooked) register
291 REGNUM as found in the specified FRAME. The register's type is
292 determined by register_type(). The value is not fetched. */
295 value_of_register_lazy (struct frame_info
*frame
, int regnum
)
297 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
298 struct value
*reg_val
;
300 gdb_assert (regnum
< (gdbarch_num_regs (gdbarch
)
301 + gdbarch_num_pseudo_regs (gdbarch
)));
303 /* We should have a valid (i.e. non-sentinel) frame. */
304 gdb_assert (frame_id_p (get_frame_id (frame
)));
306 reg_val
= allocate_value (register_type (gdbarch
, regnum
));
307 VALUE_LVAL (reg_val
) = lval_register
;
308 VALUE_REGNUM (reg_val
) = regnum
;
309 VALUE_FRAME_ID (reg_val
) = get_frame_id (frame
);
310 set_value_lazy (reg_val
, 1);
314 /* Given a pointer of type TYPE in target form in BUF, return the
315 address it represents. */
317 unsigned_pointer_to_address (struct gdbarch
*gdbarch
,
318 struct type
*type
, const gdb_byte
*buf
)
320 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
321 return extract_unsigned_integer (buf
, TYPE_LENGTH (type
), byte_order
);
325 signed_pointer_to_address (struct gdbarch
*gdbarch
,
326 struct type
*type
, const gdb_byte
*buf
)
328 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
329 return extract_signed_integer (buf
, TYPE_LENGTH (type
), byte_order
);
332 /* Given an address, store it as a pointer of type TYPE in target
335 unsigned_address_to_pointer (struct gdbarch
*gdbarch
, struct type
*type
,
336 gdb_byte
*buf
, CORE_ADDR addr
)
338 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
339 store_unsigned_integer (buf
, TYPE_LENGTH (type
), byte_order
, addr
);
343 address_to_signed_pointer (struct gdbarch
*gdbarch
, struct type
*type
,
344 gdb_byte
*buf
, CORE_ADDR addr
)
346 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
347 store_signed_integer (buf
, TYPE_LENGTH (type
), byte_order
, addr
);
350 /* Will calling read_var_value or locate_var_value on SYM end
351 up caring what frame it is being evaluated relative to? SYM must
354 symbol_read_needs_frame (struct symbol
*sym
)
356 switch (SYMBOL_CLASS (sym
))
358 /* All cases listed explicitly so that gcc -Wall will detect it if
359 we failed to consider one. */
361 /* FIXME: cagney/2004-01-26: It should be possible to
362 unconditionally call the SYMBOL_COMPUTED_OPS method when available.
363 Unfortunately DWARF 2 stores the frame-base (instead of the
364 function) location in a function's symbol. Oops! For the
365 moment enable this when/where applicable. */
366 return SYMBOL_COMPUTED_OPS (sym
)->read_needs_frame (sym
);
371 case LOC_REGPARM_ADDR
:
381 /* Getting the address of a label can be done independently of the block,
382 even if some *uses* of that address wouldn't work so well without
386 case LOC_CONST_BYTES
:
388 case LOC_OPTIMIZED_OUT
:
394 /* Given a struct symbol for a variable,
395 and a stack frame id, read the value of the variable
396 and return a (pointer to a) struct value containing the value.
397 If the variable cannot be found, return a zero pointer. */
400 read_var_value (struct symbol
*var
, struct frame_info
*frame
)
403 struct type
*type
= SYMBOL_TYPE (var
);
407 if (SYMBOL_CLASS (var
) == LOC_COMPUTED
408 || SYMBOL_CLASS (var
) == LOC_REGISTER
)
409 /* These cases do not use V. */
413 v
= allocate_value (type
);
414 VALUE_LVAL (v
) = lval_memory
; /* The most likely possibility. */
417 len
= TYPE_LENGTH (type
);
419 if (symbol_read_needs_frame (var
))
422 switch (SYMBOL_CLASS (var
))
425 /* Put the constant back in target format. */
426 store_signed_integer (value_contents_raw (v
), len
,
427 gdbarch_byte_order (get_type_arch (type
)),
428 (LONGEST
) SYMBOL_VALUE (var
));
429 VALUE_LVAL (v
) = not_lval
;
433 /* Put the constant back in target format. */
434 if (overlay_debugging
)
437 = symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (var
),
438 SYMBOL_OBJ_SECTION (var
));
439 store_typed_address (value_contents_raw (v
), type
, addr
);
442 store_typed_address (value_contents_raw (v
), type
,
443 SYMBOL_VALUE_ADDRESS (var
));
444 VALUE_LVAL (v
) = not_lval
;
447 case LOC_CONST_BYTES
:
449 memcpy (value_contents_raw (v
), SYMBOL_VALUE_BYTES (var
), len
);
450 VALUE_LVAL (v
) = not_lval
;
455 if (overlay_debugging
)
456 addr
= symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (var
),
457 SYMBOL_OBJ_SECTION (var
));
459 addr
= SYMBOL_VALUE_ADDRESS (var
);
463 addr
= get_frame_args_address (frame
);
466 addr
+= SYMBOL_VALUE (var
);
473 argref
= get_frame_args_address (frame
);
476 argref
+= SYMBOL_VALUE (var
);
477 ref
= value_at (lookup_pointer_type (type
), argref
);
478 addr
= value_as_address (ref
);
483 addr
= get_frame_locals_address (frame
);
484 addr
+= SYMBOL_VALUE (var
);
488 error (_("Cannot look up value of a typedef"));
492 if (overlay_debugging
)
493 set_value_address (v
, symbol_overlayed_address
494 (BLOCK_START (SYMBOL_BLOCK_VALUE (var
)), SYMBOL_OBJ_SECTION (var
)));
496 set_value_address (v
, BLOCK_START (SYMBOL_BLOCK_VALUE (var
)));
500 case LOC_REGPARM_ADDR
:
502 int regno
= SYMBOL_REGISTER_OPS (var
)
503 ->register_number (var
, get_frame_arch (frame
));
504 struct value
*regval
;
506 if (SYMBOL_CLASS (var
) == LOC_REGPARM_ADDR
)
508 regval
= value_from_register (lookup_pointer_type (type
),
513 error (_("Value of register variable not available."));
515 addr
= value_as_address (regval
);
516 VALUE_LVAL (v
) = lval_memory
;
520 regval
= value_from_register (type
, regno
, frame
);
523 error (_("Value of register variable not available."));
530 /* FIXME: cagney/2004-01-26: It should be possible to
531 unconditionally call the SYMBOL_COMPUTED_OPS method when available.
532 Unfortunately DWARF 2 stores the frame-base (instead of the
533 function) location in a function's symbol. Oops! For the
534 moment enable this when/where applicable. */
535 return SYMBOL_COMPUTED_OPS (var
)->read_variable (var
, frame
);
539 struct minimal_symbol
*msym
;
540 struct obj_section
*obj_section
;
542 msym
= lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (var
), NULL
, NULL
);
545 if (overlay_debugging
)
546 addr
= symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (msym
),
547 SYMBOL_OBJ_SECTION (msym
));
549 addr
= SYMBOL_VALUE_ADDRESS (msym
);
551 obj_section
= SYMBOL_OBJ_SECTION (msym
);
553 && (obj_section
->the_bfd_section
->flags
& SEC_THREAD_LOCAL
) != 0)
554 addr
= target_translate_tls_address (obj_section
->objfile
, addr
);
558 case LOC_OPTIMIZED_OUT
:
559 VALUE_LVAL (v
) = not_lval
;
560 set_value_optimized_out (v
, 1);
564 error (_("Cannot look up value of a botched symbol."));
568 set_value_address (v
, addr
);
569 set_value_lazy (v
, 1);
573 /* Install default attributes for register values. */
576 default_value_from_register (struct type
*type
, int regnum
,
577 struct frame_info
*frame
)
579 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
580 int len
= TYPE_LENGTH (type
);
581 struct value
*value
= allocate_value (type
);
583 VALUE_LVAL (value
) = lval_register
;
584 VALUE_FRAME_ID (value
) = get_frame_id (frame
);
585 VALUE_REGNUM (value
) = regnum
;
587 /* Any structure stored in more than one register will always be
588 an integral number of registers. Otherwise, you need to do
589 some fiddling with the last register copied here for little
591 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
592 && len
< register_size (gdbarch
, regnum
))
593 /* Big-endian, and we want less than full size. */
594 set_value_offset (value
, register_size (gdbarch
, regnum
) - len
);
596 set_value_offset (value
, 0);
601 /* Return a value of type TYPE, stored in register REGNUM, in frame FRAME. */
604 value_from_register (struct type
*type
, int regnum
, struct frame_info
*frame
)
606 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
607 struct type
*type1
= check_typedef (type
);
610 if (gdbarch_convert_register_p (gdbarch
, regnum
, type1
))
612 /* The ISA/ABI need to something weird when obtaining the
613 specified value from this register. It might need to
614 re-order non-adjacent, starting with REGNUM (see MIPS and
615 i386). It might need to convert the [float] register into
616 the corresponding [integer] type (see Alpha). The assumption
617 is that gdbarch_register_to_value populates the entire value
618 including the location. */
619 v
= allocate_value (type
);
620 VALUE_LVAL (v
) = lval_register
;
621 VALUE_FRAME_ID (v
) = get_frame_id (frame
);
622 VALUE_REGNUM (v
) = regnum
;
623 gdbarch_register_to_value (gdbarch
,
624 frame
, regnum
, type1
, value_contents_raw (v
));
628 int len
= TYPE_LENGTH (type
);
630 /* Construct the value. */
631 v
= gdbarch_value_from_register (gdbarch
, type
, regnum
, frame
);
634 if (!get_frame_register_bytes (frame
, regnum
, value_offset (v
), len
,
635 value_contents_raw (v
)))
636 set_value_optimized_out (v
, 1);
641 /* Return contents of register REGNUM in frame FRAME as address,
642 interpreted as value of type TYPE. Will abort if register
643 value is not available. */
646 address_from_register (struct type
*type
, int regnum
, struct frame_info
*frame
)
651 value
= value_from_register (type
, regnum
, frame
);
654 result
= value_as_address (value
);
655 release_value (value
);
This page took 0.044717 seconds and 4 git commands to generate.