* c-valprint.c (print_function_pointer_address): Move...
[deliverable/binutils-gdb.git] / gdb / findvar.c
CommitLineData
c906108c 1/* Find a variable's value in memory, for GDB, the GNU debugger.
1bac305b 2
0b302171
JB
3 Copyright (C) 1986-2001, 2003-2005, 2007-2012 Free Software
4 Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#include "defs.h"
22#include "symtab.h"
23#include "gdbtypes.h"
24#include "frame.h"
25#include "value.h"
26#include "gdbcore.h"
27#include "inferior.h"
28#include "target.h"
29#include "gdb_string.h"
14e534aa 30#include "gdb_assert.h"
c906108c 31#include "floatformat.h"
c5aa993b 32#include "symfile.h" /* for overlay functions */
4e052eda 33#include "regcache.h"
eb8bc282 34#include "user-regs.h"
fe898f56 35#include "block.h"
e0740f77 36#include "objfiles.h"
c906108c 37
9659616a
MS
38/* Basic byte-swapping routines. All 'extract' functions return a
39 host-format integer from a target-format integer at ADDR which is
40 LEN bytes long. */
c906108c
SS
41
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... */
c5aa993b 47you lose
c906108c
SS
48#endif
49
a9ac8f51 50LONGEST
e17a4113
UW
51extract_signed_integer (const gdb_byte *addr, int len,
52 enum bfd_endian byte_order)
c906108c
SS
53{
54 LONGEST retval;
37611a2b
AC
55 const unsigned char *p;
56 const unsigned char *startaddr = addr;
57 const unsigned char *endaddr = startaddr + len;
c906108c
SS
58
59 if (len > (int) sizeof (LONGEST))
8a3fe4f8
AC
60 error (_("\
61That operation is not available on integers of more than %d bytes."),
baa6f10b 62 (int) sizeof (LONGEST));
c906108c
SS
63
64 /* Start at the most significant end of the integer, and work towards
65 the least significant. */
e17a4113 66 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
67 {
68 p = startaddr;
69 /* Do the sign extension once at the start. */
c5aa993b 70 retval = ((LONGEST) * p ^ 0x80) - 0x80;
c906108c
SS
71 for (++p; p < endaddr; ++p)
72 retval = (retval << 8) | *p;
73 }
74 else
75 {
76 p = endaddr - 1;
77 /* Do the sign extension once at the start. */
c5aa993b 78 retval = ((LONGEST) * p ^ 0x80) - 0x80;
c906108c
SS
79 for (--p; p >= startaddr; --p)
80 retval = (retval << 8) | *p;
81 }
82 return retval;
83}
84
85ULONGEST
e17a4113
UW
86extract_unsigned_integer (const gdb_byte *addr, int len,
87 enum bfd_endian byte_order)
c906108c
SS
88{
89 ULONGEST retval;
37611a2b
AC
90 const unsigned char *p;
91 const unsigned char *startaddr = addr;
92 const unsigned char *endaddr = startaddr + len;
c906108c
SS
93
94 if (len > (int) sizeof (ULONGEST))
8a3fe4f8
AC
95 error (_("\
96That operation is not available on integers of more than %d bytes."),
baa6f10b 97 (int) sizeof (ULONGEST));
c906108c
SS
98
99 /* Start at the most significant end of the integer, and work towards
100 the least significant. */
101 retval = 0;
e17a4113 102 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
103 {
104 for (p = startaddr; p < endaddr; ++p)
105 retval = (retval << 8) | *p;
106 }
107 else
108 {
109 for (p = endaddr - 1; p >= startaddr; --p)
110 retval = (retval << 8) | *p;
111 }
112 return retval;
113}
114
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. */
119
120int
0d509538 121extract_long_unsigned_integer (const gdb_byte *addr, int orig_len,
e17a4113 122 enum bfd_endian byte_order, LONGEST *pval)
c906108c 123{
0d509538
AC
124 const gdb_byte *p;
125 const gdb_byte *first_addr;
c906108c
SS
126 int len;
127
128 len = orig_len;
e17a4113 129 if (byte_order == BFD_ENDIAN_BIG)
c906108c 130 {
0d509538
AC
131 for (p = addr;
132 len > (int) sizeof (LONGEST) && p < addr + orig_len;
c906108c
SS
133 p++)
134 {
135 if (*p == 0)
136 len--;
137 else
138 break;
139 }
140 first_addr = p;
141 }
142 else
143 {
0d509538
AC
144 first_addr = addr;
145 for (p = addr + orig_len - 1;
146 len > (int) sizeof (LONGEST) && p >= addr;
c906108c
SS
147 p--)
148 {
149 if (*p == 0)
150 len--;
151 else
152 break;
153 }
154 }
155
156 if (len <= (int) sizeof (LONGEST))
157 {
158 *pval = (LONGEST) extract_unsigned_integer (first_addr,
e17a4113
UW
159 sizeof (LONGEST),
160 byte_order);
c906108c
SS
161 return 1;
162 }
163
164 return 0;
165}
166
4478b372 167
4478b372
JB
168/* Treat the bytes at BUF as a pointer of type TYPE, and return the
169 address it represents. */
170CORE_ADDR
0d509538 171extract_typed_address (const gdb_byte *buf, struct type *type)
4478b372
JB
172{
173 if (TYPE_CODE (type) != TYPE_CODE_PTR
174 && TYPE_CODE (type) != TYPE_CODE_REF)
8e65ff28 175 internal_error (__FILE__, __LINE__,
e2e0b3e5
AC
176 _("extract_typed_address: "
177 "type is not a pointer or reference"));
4478b372 178
50810684 179 return gdbarch_pointer_to_address (get_type_arch (type), type, buf);
4478b372
JB
180}
181
9659616a
MS
182/* All 'store' functions accept a host-format integer and store a
183 target-format integer at ADDR which is LEN bytes long. */
4478b372 184
c906108c 185void
e17a4113
UW
186store_signed_integer (gdb_byte *addr, int len,
187 enum bfd_endian byte_order, LONGEST val)
c906108c 188{
0d509538
AC
189 gdb_byte *p;
190 gdb_byte *startaddr = addr;
191 gdb_byte *endaddr = startaddr + len;
c906108c
SS
192
193 /* Start at the least significant end of the integer, and work towards
194 the most significant. */
e17a4113 195 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
196 {
197 for (p = endaddr - 1; p >= startaddr; --p)
198 {
199 *p = val & 0xff;
200 val >>= 8;
201 }
202 }
203 else
204 {
205 for (p = startaddr; p < endaddr; ++p)
206 {
207 *p = val & 0xff;
208 val >>= 8;
209 }
210 }
211}
212
213void
e17a4113
UW
214store_unsigned_integer (gdb_byte *addr, int len,
215 enum bfd_endian byte_order, ULONGEST val)
c906108c
SS
216{
217 unsigned char *p;
c5aa993b 218 unsigned char *startaddr = (unsigned char *) addr;
c906108c
SS
219 unsigned char *endaddr = startaddr + len;
220
221 /* Start at the least significant end of the integer, and work towards
222 the most significant. */
e17a4113 223 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
224 {
225 for (p = endaddr - 1; p >= startaddr; --p)
226 {
227 *p = val & 0xff;
228 val >>= 8;
229 }
230 }
231 else
232 {
233 for (p = startaddr; p < endaddr; ++p)
234 {
235 *p = val & 0xff;
236 val >>= 8;
237 }
238 }
239}
240
4478b372
JB
241/* Store the address ADDR as a pointer of type TYPE at BUF, in target
242 form. */
243void
0d509538 244store_typed_address (gdb_byte *buf, struct type *type, CORE_ADDR addr)
4478b372
JB
245{
246 if (TYPE_CODE (type) != TYPE_CODE_PTR
247 && TYPE_CODE (type) != TYPE_CODE_REF)
8e65ff28 248 internal_error (__FILE__, __LINE__,
e2e0b3e5
AC
249 _("store_typed_address: "
250 "type is not a pointer or reference"));
4478b372 251
50810684 252 gdbarch_address_to_pointer (get_type_arch (type), type, buf, addr);
4478b372
JB
253}
254
255
256
376c9600
AC
257/* Return a `value' with the contents of (virtual or cooked) register
258 REGNUM as found in the specified FRAME. The register's type is
9c5ea4d9 259 determined by register_type(). */
c906108c 260
3d6d86c6 261struct value *
376c9600 262value_of_register (int regnum, struct frame_info *frame)
c906108c 263{
e9e45075 264 struct gdbarch *gdbarch = get_frame_arch (frame);
c906108c
SS
265 CORE_ADDR addr;
266 int optim;
0fdb4f18 267 int unavail;
3d6d86c6 268 struct value *reg_val;
ac2adee5 269 int realnum;
10c42a71 270 gdb_byte raw_buffer[MAX_REGISTER_SIZE];
c906108c
SS
271 enum lval_type lval;
272
9564ee9f 273 /* User registers lie completely outside of the range of normal
0406ec40 274 registers. Catch them early so that the target never sees them. */
e9e45075
UW
275 if (regnum >= gdbarch_num_regs (gdbarch)
276 + gdbarch_num_pseudo_regs (gdbarch))
eb8bc282 277 return value_of_user_reg (regnum, frame);
0406ec40 278
0fdb4f18
PA
279 frame_register (frame, regnum, &optim, &unavail,
280 &lval, &addr, &realnum, raw_buffer);
c906108c 281
e9e45075 282 reg_val = allocate_value (register_type (gdbarch, regnum));
c906108c 283
0fdb4f18
PA
284 if (!optim && !unavail)
285 memcpy (value_contents_raw (reg_val), raw_buffer,
286 register_size (gdbarch, regnum));
287 else
288 memset (value_contents_raw (reg_val), 0,
289 register_size (gdbarch, regnum));
290
c906108c 291 VALUE_LVAL (reg_val) = lval;
42ae5230 292 set_value_address (reg_val, addr);
9ee8fc9d 293 VALUE_REGNUM (reg_val) = regnum;
feb13ab0 294 set_value_optimized_out (reg_val, optim);
0fdb4f18
PA
295 if (unavail)
296 mark_value_bytes_unavailable (reg_val, 0, register_size (gdbarch, regnum));
0c16dd26 297 VALUE_FRAME_ID (reg_val) = get_frame_id (frame);
c906108c
SS
298 return reg_val;
299}
4478b372 300
9214ee5f
DJ
301/* Return a `value' with the contents of (virtual or cooked) register
302 REGNUM as found in the specified FRAME. The register's type is
303 determined by register_type(). The value is not fetched. */
304
305struct value *
306value_of_register_lazy (struct frame_info *frame, int regnum)
307{
308 struct gdbarch *gdbarch = get_frame_arch (frame);
309 struct value *reg_val;
310
311 gdb_assert (regnum < (gdbarch_num_regs (gdbarch)
312 + gdbarch_num_pseudo_regs (gdbarch)));
313
314 /* We should have a valid (i.e. non-sentinel) frame. */
315 gdb_assert (frame_id_p (get_frame_id (frame)));
316
41e8491f 317 reg_val = allocate_value_lazy (register_type (gdbarch, regnum));
9214ee5f
DJ
318 VALUE_LVAL (reg_val) = lval_register;
319 VALUE_REGNUM (reg_val) = regnum;
320 VALUE_FRAME_ID (reg_val) = get_frame_id (frame);
9214ee5f
DJ
321 return reg_val;
322}
323
4478b372
JB
324/* Given a pointer of type TYPE in target form in BUF, return the
325 address it represents. */
326CORE_ADDR
9898f801
UW
327unsigned_pointer_to_address (struct gdbarch *gdbarch,
328 struct type *type, const gdb_byte *buf)
4478b372 329{
e17a4113 330 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bb9bcb69 331
e17a4113 332 return extract_unsigned_integer (buf, TYPE_LENGTH (type), byte_order);
4478b372
JB
333}
334
ac2e2ef7 335CORE_ADDR
9898f801
UW
336signed_pointer_to_address (struct gdbarch *gdbarch,
337 struct type *type, const gdb_byte *buf)
ac2e2ef7 338{
e17a4113 339 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bb9bcb69 340
e17a4113 341 return extract_signed_integer (buf, TYPE_LENGTH (type), byte_order);
ac2e2ef7 342}
4478b372
JB
343
344/* Given an address, store it as a pointer of type TYPE in target
345 format in BUF. */
346void
9898f801
UW
347unsigned_address_to_pointer (struct gdbarch *gdbarch, struct type *type,
348 gdb_byte *buf, CORE_ADDR addr)
4478b372 349{
e17a4113 350 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bb9bcb69 351
e17a4113 352 store_unsigned_integer (buf, TYPE_LENGTH (type), byte_order, addr);
4478b372
JB
353}
354
ac2e2ef7 355void
9898f801
UW
356address_to_signed_pointer (struct gdbarch *gdbarch, struct type *type,
357 gdb_byte *buf, CORE_ADDR addr)
ac2e2ef7 358{
e17a4113 359 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bb9bcb69 360
e17a4113 361 store_signed_integer (buf, TYPE_LENGTH (type), byte_order, addr);
ac2e2ef7 362}
c906108c
SS
363\f
364/* Will calling read_var_value or locate_var_value on SYM end
365 up caring what frame it is being evaluated relative to? SYM must
366 be non-NULL. */
367int
fba45db2 368symbol_read_needs_frame (struct symbol *sym)
c906108c
SS
369{
370 switch (SYMBOL_CLASS (sym))
371 {
372 /* All cases listed explicitly so that gcc -Wall will detect it if
c5aa993b 373 we failed to consider one. */
4c2df51b 374 case LOC_COMPUTED:
a67af2b9 375 /* FIXME: cagney/2004-01-26: It should be possible to
768a979c 376 unconditionally call the SYMBOL_COMPUTED_OPS method when available.
d3efc286 377 Unfortunately DWARF 2 stores the frame-base (instead of the
a67af2b9
AC
378 function) location in a function's symbol. Oops! For the
379 moment enable this when/where applicable. */
768a979c 380 return SYMBOL_COMPUTED_OPS (sym)->read_needs_frame (sym);
4c2df51b 381
c906108c
SS
382 case LOC_REGISTER:
383 case LOC_ARG:
384 case LOC_REF_ARG:
c906108c
SS
385 case LOC_REGPARM_ADDR:
386 case LOC_LOCAL:
c906108c
SS
387 return 1;
388
389 case LOC_UNDEF:
390 case LOC_CONST:
391 case LOC_STATIC:
c906108c
SS
392 case LOC_TYPEDEF:
393
394 case LOC_LABEL:
395 /* Getting the address of a label can be done independently of the block,
c5aa993b
JM
396 even if some *uses* of that address wouldn't work so well without
397 the right frame. */
c906108c
SS
398
399 case LOC_BLOCK:
400 case LOC_CONST_BYTES:
401 case LOC_UNRESOLVED:
402 case LOC_OPTIMIZED_OUT:
403 return 0;
404 }
405 return 1;
406}
407
408/* Given a struct symbol for a variable,
409 and a stack frame id, read the value of the variable
0963b4bd 410 and return a (pointer to a) struct value containing the value.
8afd712c 411 If the variable cannot be found, throw error. */
c906108c 412
3d6d86c6 413struct value *
aa1ee363 414read_var_value (struct symbol *var, struct frame_info *frame)
c906108c 415{
52f0bd74 416 struct value *v;
c906108c
SS
417 struct type *type = SYMBOL_TYPE (var);
418 CORE_ADDR addr;
52f0bd74 419 int len;
c906108c 420
41e8491f
JK
421 /* Call check_typedef on our type to make sure that, if TYPE is
422 a TYPE_CODE_TYPEDEF, its length is set to the length of the target type
423 instead of zero. However, we do not replace the typedef type by the
424 target type, because we want to keep the typedef in order to be able to
425 set the returned value type description correctly. */
426 check_typedef (type);
c906108c
SS
427
428 len = TYPE_LENGTH (type);
429
61212c0f
UW
430 if (symbol_read_needs_frame (var))
431 gdb_assert (frame);
c906108c
SS
432
433 switch (SYMBOL_CLASS (var))
434 {
435 case LOC_CONST:
436 /* Put the constant back in target format. */
41e8491f 437 v = allocate_value (type);
990a07ab 438 store_signed_integer (value_contents_raw (v), len,
e17a4113 439 gdbarch_byte_order (get_type_arch (type)),
c906108c
SS
440 (LONGEST) SYMBOL_VALUE (var));
441 VALUE_LVAL (v) = not_lval;
442 return v;
443
444 case LOC_LABEL:
445 /* Put the constant back in target format. */
41e8491f 446 v = allocate_value (type);
c906108c 447 if (overlay_debugging)
4478b372
JB
448 {
449 CORE_ADDR addr
450 = symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (var),
714835d5 451 SYMBOL_OBJ_SECTION (var));
bb9bcb69 452
990a07ab 453 store_typed_address (value_contents_raw (v), type, addr);
4478b372 454 }
c906108c 455 else
990a07ab 456 store_typed_address (value_contents_raw (v), type,
4478b372 457 SYMBOL_VALUE_ADDRESS (var));
c906108c
SS
458 VALUE_LVAL (v) = not_lval;
459 return v;
460
461 case LOC_CONST_BYTES:
41e8491f 462 v = allocate_value (type);
bb9bcb69
MS
463 memcpy (value_contents_raw (v), SYMBOL_VALUE_BYTES (var), len);
464 VALUE_LVAL (v) = not_lval;
465 return v;
c906108c
SS
466
467 case LOC_STATIC:
41e8491f 468 v = allocate_value_lazy (type);
c906108c
SS
469 if (overlay_debugging)
470 addr = symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (var),
714835d5 471 SYMBOL_OBJ_SECTION (var));
c906108c
SS
472 else
473 addr = SYMBOL_VALUE_ADDRESS (var);
474 break;
475
c906108c 476 case LOC_ARG:
da62e633 477 addr = get_frame_args_address (frame);
c906108c 478 if (!addr)
8afd712c
JK
479 error (_("Unknown argument list address for `%s'."),
480 SYMBOL_PRINT_NAME (var));
c906108c 481 addr += SYMBOL_VALUE (var);
41e8491f 482 v = allocate_value_lazy (type);
c906108c
SS
483 break;
484
485 case LOC_REF_ARG:
f76febae
AC
486 {
487 struct value *ref;
488 CORE_ADDR argref;
bb9bcb69 489
da62e633 490 argref = get_frame_args_address (frame);
f76febae 491 if (!argref)
8afd712c
JK
492 error (_("Unknown argument list address for `%s'."),
493 SYMBOL_PRINT_NAME (var));
f76febae 494 argref += SYMBOL_VALUE (var);
00a4c844 495 ref = value_at (lookup_pointer_type (type), argref);
1aa20aa8 496 addr = value_as_address (ref);
41e8491f 497 v = allocate_value_lazy (type);
f76febae
AC
498 break;
499 }
c906108c
SS
500
501 case LOC_LOCAL:
da62e633 502 addr = get_frame_locals_address (frame);
c906108c 503 addr += SYMBOL_VALUE (var);
41e8491f 504 v = allocate_value_lazy (type);
c906108c
SS
505 break;
506
c906108c 507 case LOC_TYPEDEF:
8afd712c
JK
508 error (_("Cannot look up value of a typedef `%s'."),
509 SYMBOL_PRINT_NAME (var));
c906108c
SS
510 break;
511
512 case LOC_BLOCK:
41e8491f 513 v = allocate_value_lazy (type);
c906108c 514 if (overlay_debugging)
41e8491f
JK
515 addr = symbol_overlayed_address
516 (BLOCK_START (SYMBOL_BLOCK_VALUE (var)), SYMBOL_OBJ_SECTION (var));
c906108c 517 else
41e8491f
JK
518 addr = BLOCK_START (SYMBOL_BLOCK_VALUE (var));
519 break;
c906108c
SS
520
521 case LOC_REGISTER:
c906108c
SS
522 case LOC_REGPARM_ADDR:
523 {
768a979c
UW
524 int regno = SYMBOL_REGISTER_OPS (var)
525 ->register_number (var, get_frame_arch (frame));
3d6d86c6 526 struct value *regval;
c906108c 527
c906108c
SS
528 if (SYMBOL_CLASS (var) == LOC_REGPARM_ADDR)
529 {
530 regval = value_from_register (lookup_pointer_type (type),
c5aa993b 531 regno,
c906108c
SS
532 frame);
533
534 if (regval == NULL)
8afd712c
JK
535 error (_("Value of register variable not available for `%s'."),
536 SYMBOL_PRINT_NAME (var));
c906108c 537
1aa20aa8 538 addr = value_as_address (regval);
41e8491f 539 v = allocate_value_lazy (type);
c906108c
SS
540 }
541 else
542 {
543 regval = value_from_register (type, regno, frame);
544
545 if (regval == NULL)
8afd712c
JK
546 error (_("Value of register variable not available for `%s'."),
547 SYMBOL_PRINT_NAME (var));
c906108c
SS
548 return regval;
549 }
550 }
551 break;
552
4c2df51b 553 case LOC_COMPUTED:
a67af2b9 554 /* FIXME: cagney/2004-01-26: It should be possible to
768a979c 555 unconditionally call the SYMBOL_COMPUTED_OPS method when available.
d3efc286 556 Unfortunately DWARF 2 stores the frame-base (instead of the
a67af2b9
AC
557 function) location in a function's symbol. Oops! For the
558 moment enable this when/where applicable. */
768a979c 559 return SYMBOL_COMPUTED_OPS (var)->read_variable (var, frame);
4c2df51b 560
c906108c
SS
561 case LOC_UNRESOLVED:
562 {
563 struct minimal_symbol *msym;
e0740f77 564 struct obj_section *obj_section;
c906108c 565
3567439c 566 msym = lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (var), NULL, NULL);
c906108c 567 if (msym == NULL)
8afd712c 568 error (_("No global symbol \"%s\"."), SYMBOL_LINKAGE_NAME (var));
c906108c
SS
569 if (overlay_debugging)
570 addr = symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (msym),
714835d5 571 SYMBOL_OBJ_SECTION (msym));
c906108c
SS
572 else
573 addr = SYMBOL_VALUE_ADDRESS (msym);
e0740f77
JK
574
575 obj_section = SYMBOL_OBJ_SECTION (msym);
576 if (obj_section
577 && (obj_section->the_bfd_section->flags & SEC_THREAD_LOCAL) != 0)
578 addr = target_translate_tls_address (obj_section->objfile, addr);
41e8491f 579 v = allocate_value_lazy (type);
c906108c
SS
580 }
581 break;
582
583 case LOC_OPTIMIZED_OUT:
a7035dbb 584 return allocate_optimized_out_value (type);
c906108c
SS
585
586 default:
8afd712c
JK
587 error (_("Cannot look up value of a botched symbol `%s'."),
588 SYMBOL_PRINT_NAME (var));
c906108c
SS
589 break;
590 }
591
41e8491f 592 VALUE_LVAL (v) = lval_memory;
42ae5230 593 set_value_address (v, addr);
c906108c
SS
594 return v;
595}
596
9acbedc0
UW
597/* Install default attributes for register values. */
598
599struct value *
600default_value_from_register (struct type *type, int regnum,
601 struct frame_info *frame)
602{
603 struct gdbarch *gdbarch = get_frame_arch (frame);
604 int len = TYPE_LENGTH (type);
605 struct value *value = allocate_value (type);
606
607 VALUE_LVAL (value) = lval_register;
608 VALUE_FRAME_ID (value) = get_frame_id (frame);
609 VALUE_REGNUM (value) = regnum;
610
611 /* Any structure stored in more than one register will always be
612 an integral number of registers. Otherwise, you need to do
613 some fiddling with the last register copied here for little
614 endian machines. */
e9e45075 615 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG
9acbedc0
UW
616 && len < register_size (gdbarch, regnum))
617 /* Big-endian, and we want less than full size. */
618 set_value_offset (value, register_size (gdbarch, regnum) - len);
619 else
620 set_value_offset (value, 0);
621
622 return value;
623}
624
b56d6f31
JB
625/* VALUE must be an lval_register value. If regnum is the value's
626 associated register number, and len the length of the values type,
627 read one or more registers in FRAME, starting with register REGNUM,
628 until we've read LEN bytes. */
629
630void
631read_frame_register_value (struct value *value, struct frame_info *frame)
632{
01efb936 633 struct gdbarch *gdbarch = get_frame_arch (frame);
b56d6f31 634 int offset = 0;
01efb936 635 int reg_offset = value_offset (value);
b56d6f31 636 int regnum = VALUE_REGNUM (value);
01efb936 637 int len = TYPE_LENGTH (check_typedef (value_type (value)));
b56d6f31
JB
638
639 gdb_assert (VALUE_LVAL (value) == lval_register);
640
01efb936
UW
641 /* Skip registers wholly inside of REG_OFFSET. */
642 while (reg_offset >= register_size (gdbarch, regnum))
643 {
644 reg_offset -= register_size (gdbarch, regnum);
645 regnum++;
646 }
647
648 /* Copy the data. */
649 while (len > 0)
b56d6f31
JB
650 {
651 struct value *regval = get_frame_register_value (frame, regnum);
01efb936 652 int reg_len = TYPE_LENGTH (value_type (regval)) - reg_offset;
b56d6f31 653
22355c90
JB
654 /* If the register length is larger than the number of bytes
655 remaining to copy, then only copy the appropriate bytes. */
01efb936
UW
656 if (reg_len > len)
657 reg_len = len;
22355c90 658
01efb936 659 value_contents_copy (value, offset, regval, reg_offset, reg_len);
b56d6f31
JB
660
661 offset += reg_len;
01efb936
UW
662 len -= reg_len;
663 reg_offset = 0;
b56d6f31
JB
664 regnum++;
665 }
666}
667
00fa51f6 668/* Return a value of type TYPE, stored in register REGNUM, in frame FRAME. */
c906108c 669
3d6d86c6 670struct value *
fba45db2 671value_from_register (struct type *type, int regnum, struct frame_info *frame)
c906108c 672{
ff2e87ac 673 struct gdbarch *gdbarch = get_frame_arch (frame);
9acbedc0
UW
674 struct type *type1 = check_typedef (type);
675 struct value *v;
676
e9e45075 677 if (gdbarch_convert_register_p (gdbarch, regnum, type1))
ff2e87ac 678 {
3543a589
TT
679 int optim, unavail, ok;
680
ff2e87ac
AC
681 /* The ISA/ABI need to something weird when obtaining the
682 specified value from this register. It might need to
683 re-order non-adjacent, starting with REGNUM (see MIPS and
684 i386). It might need to convert the [float] register into
685 the corresponding [integer] type (see Alpha). The assumption
c1afe53d 686 is that gdbarch_register_to_value populates the entire value
ff2e87ac 687 including the location. */
9acbedc0
UW
688 v = allocate_value (type);
689 VALUE_LVAL (v) = lval_register;
690 VALUE_FRAME_ID (v) = get_frame_id (frame);
691 VALUE_REGNUM (v) = regnum;
8dccd430
PA
692 ok = gdbarch_register_to_value (gdbarch, frame, regnum, type1,
693 value_contents_raw (v), &optim,
694 &unavail);
3543a589
TT
695
696 if (!ok)
697 {
698 if (optim)
699 set_value_optimized_out (v, 1);
700 if (unavail)
701 mark_value_bytes_unavailable (v, 0, TYPE_LENGTH (type));
702 }
ff2e87ac
AC
703 }
704 else
c906108c 705 {
9acbedc0
UW
706 /* Construct the value. */
707 v = gdbarch_value_from_register (gdbarch, type, regnum, frame);
00fa51f6
UW
708
709 /* Get the data. */
b56d6f31 710 read_frame_register_value (v, frame);
c906108c 711 }
8dccd430 712
c906108c
SS
713 return v;
714}
ff2e87ac 715
0b2b0195
UW
716/* Return contents of register REGNUM in frame FRAME as address,
717 interpreted as value of type TYPE. Will abort if register
718 value is not available. */
719
720CORE_ADDR
721address_from_register (struct type *type, int regnum, struct frame_info *frame)
722{
723 struct value *value;
724 CORE_ADDR result;
725
726 value = value_from_register (type, regnum, frame);
727 gdb_assert (value);
728
729 result = value_as_address (value);
730 release_value (value);
731 value_free (value);
732
733 return result;
734}
b56d6f31 735
This page took 1.224658 seconds and 4 git commands to generate.