DWARF: handle non-local references in nested functions
[deliverable/binutils-gdb.git] / gdb / findvar.c
CommitLineData
c906108c 1/* Find a variable's value in memory, for GDB, the GNU debugger.
1bac305b 2
32d0add0 3 Copyright (C) 1986-2015 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
21#include "symtab.h"
22#include "gdbtypes.h"
23#include "frame.h"
24#include "value.h"
25#include "gdbcore.h"
26#include "inferior.h"
27#include "target.h"
c906108c 28#include "floatformat.h"
c5aa993b 29#include "symfile.h" /* for overlay functions */
4e052eda 30#include "regcache.h"
eb8bc282 31#include "user-regs.h"
fe898f56 32#include "block.h"
e0740f77 33#include "objfiles.h"
a5ee536b 34#include "language.h"
63e43d3a 35#include "dwarf2loc.h"
c906108c 36
9659616a
MS
37/* Basic byte-swapping routines. All 'extract' functions return a
38 host-format integer from a target-format integer at ADDR which is
39 LEN bytes long. */
c906108c
SS
40
41#if TARGET_CHAR_BIT != 8 || HOST_CHAR_BIT != 8
42 /* 8 bit characters are a pretty safe assumption these days, so we
43 assume it throughout all these swapping routines. If we had to deal with
44 9 bit characters, we would need to make len be in bits and would have
45 to re-write these routines... */
c5aa993b 46you lose
c906108c
SS
47#endif
48
a9ac8f51 49LONGEST
e17a4113
UW
50extract_signed_integer (const gdb_byte *addr, int len,
51 enum bfd_endian byte_order)
c906108c
SS
52{
53 LONGEST retval;
37611a2b
AC
54 const unsigned char *p;
55 const unsigned char *startaddr = addr;
56 const unsigned char *endaddr = startaddr + len;
c906108c
SS
57
58 if (len > (int) sizeof (LONGEST))
8a3fe4f8
AC
59 error (_("\
60That operation is not available on integers of more than %d bytes."),
baa6f10b 61 (int) sizeof (LONGEST));
c906108c
SS
62
63 /* Start at the most significant end of the integer, and work towards
64 the least significant. */
e17a4113 65 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
66 {
67 p = startaddr;
68 /* Do the sign extension once at the start. */
c5aa993b 69 retval = ((LONGEST) * p ^ 0x80) - 0x80;
c906108c
SS
70 for (++p; p < endaddr; ++p)
71 retval = (retval << 8) | *p;
72 }
73 else
74 {
75 p = endaddr - 1;
76 /* Do the sign extension once at the start. */
c5aa993b 77 retval = ((LONGEST) * p ^ 0x80) - 0x80;
c906108c
SS
78 for (--p; p >= startaddr; --p)
79 retval = (retval << 8) | *p;
80 }
81 return retval;
82}
83
84ULONGEST
e17a4113
UW
85extract_unsigned_integer (const gdb_byte *addr, int len,
86 enum bfd_endian byte_order)
c906108c
SS
87{
88 ULONGEST retval;
37611a2b
AC
89 const unsigned char *p;
90 const unsigned char *startaddr = addr;
91 const unsigned char *endaddr = startaddr + len;
c906108c
SS
92
93 if (len > (int) sizeof (ULONGEST))
8a3fe4f8
AC
94 error (_("\
95That operation is not available on integers of more than %d bytes."),
baa6f10b 96 (int) sizeof (ULONGEST));
c906108c
SS
97
98 /* Start at the most significant end of the integer, and work towards
99 the least significant. */
100 retval = 0;
e17a4113 101 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
102 {
103 for (p = startaddr; p < endaddr; ++p)
104 retval = (retval << 8) | *p;
105 }
106 else
107 {
108 for (p = endaddr - 1; p >= startaddr; --p)
109 retval = (retval << 8) | *p;
110 }
111 return retval;
112}
113
114/* Sometimes a long long unsigned integer can be extracted as a
115 LONGEST value. This is done so that we can print these values
116 better. If this integer can be converted to a LONGEST, this
117 function returns 1 and sets *PVAL. Otherwise it returns 0. */
118
119int
0d509538 120extract_long_unsigned_integer (const gdb_byte *addr, int orig_len,
e17a4113 121 enum bfd_endian byte_order, LONGEST *pval)
c906108c 122{
0d509538
AC
123 const gdb_byte *p;
124 const gdb_byte *first_addr;
c906108c
SS
125 int len;
126
127 len = orig_len;
e17a4113 128 if (byte_order == BFD_ENDIAN_BIG)
c906108c 129 {
0d509538
AC
130 for (p = addr;
131 len > (int) sizeof (LONGEST) && p < addr + orig_len;
c906108c
SS
132 p++)
133 {
134 if (*p == 0)
135 len--;
136 else
137 break;
138 }
139 first_addr = p;
140 }
141 else
142 {
0d509538
AC
143 first_addr = addr;
144 for (p = addr + orig_len - 1;
145 len > (int) sizeof (LONGEST) && p >= addr;
c906108c
SS
146 p--)
147 {
148 if (*p == 0)
149 len--;
150 else
151 break;
152 }
153 }
154
155 if (len <= (int) sizeof (LONGEST))
156 {
157 *pval = (LONGEST) extract_unsigned_integer (first_addr,
e17a4113
UW
158 sizeof (LONGEST),
159 byte_order);
c906108c
SS
160 return 1;
161 }
162
163 return 0;
164}
165
4478b372 166
4478b372
JB
167/* Treat the bytes at BUF as a pointer of type TYPE, and return the
168 address it represents. */
169CORE_ADDR
0d509538 170extract_typed_address (const gdb_byte *buf, struct type *type)
4478b372
JB
171{
172 if (TYPE_CODE (type) != TYPE_CODE_PTR
173 && TYPE_CODE (type) != TYPE_CODE_REF)
8e65ff28 174 internal_error (__FILE__, __LINE__,
e2e0b3e5
AC
175 _("extract_typed_address: "
176 "type is not a pointer or reference"));
4478b372 177
50810684 178 return gdbarch_pointer_to_address (get_type_arch (type), type, buf);
4478b372
JB
179}
180
9659616a
MS
181/* All 'store' functions accept a host-format integer and store a
182 target-format integer at ADDR which is LEN bytes long. */
4478b372 183
c906108c 184void
e17a4113
UW
185store_signed_integer (gdb_byte *addr, int len,
186 enum bfd_endian byte_order, LONGEST val)
c906108c 187{
0d509538
AC
188 gdb_byte *p;
189 gdb_byte *startaddr = addr;
190 gdb_byte *endaddr = startaddr + len;
c906108c
SS
191
192 /* Start at the least significant end of the integer, and work towards
193 the most significant. */
e17a4113 194 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
195 {
196 for (p = endaddr - 1; p >= startaddr; --p)
197 {
198 *p = val & 0xff;
199 val >>= 8;
200 }
201 }
202 else
203 {
204 for (p = startaddr; p < endaddr; ++p)
205 {
206 *p = val & 0xff;
207 val >>= 8;
208 }
209 }
210}
211
212void
e17a4113
UW
213store_unsigned_integer (gdb_byte *addr, int len,
214 enum bfd_endian byte_order, ULONGEST val)
c906108c
SS
215{
216 unsigned char *p;
c5aa993b 217 unsigned char *startaddr = (unsigned char *) addr;
c906108c
SS
218 unsigned char *endaddr = startaddr + len;
219
220 /* Start at the least significant end of the integer, and work towards
221 the most significant. */
e17a4113 222 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
223 {
224 for (p = endaddr - 1; p >= startaddr; --p)
225 {
226 *p = val & 0xff;
227 val >>= 8;
228 }
229 }
230 else
231 {
232 for (p = startaddr; p < endaddr; ++p)
233 {
234 *p = val & 0xff;
235 val >>= 8;
236 }
237 }
238}
239
4478b372
JB
240/* Store the address ADDR as a pointer of type TYPE at BUF, in target
241 form. */
242void
0d509538 243store_typed_address (gdb_byte *buf, struct type *type, CORE_ADDR addr)
4478b372
JB
244{
245 if (TYPE_CODE (type) != TYPE_CODE_PTR
246 && TYPE_CODE (type) != TYPE_CODE_REF)
8e65ff28 247 internal_error (__FILE__, __LINE__,
e2e0b3e5
AC
248 _("store_typed_address: "
249 "type is not a pointer or reference"));
4478b372 250
50810684 251 gdbarch_address_to_pointer (get_type_arch (type), type, buf, addr);
4478b372
JB
252}
253
254
255
376c9600
AC
256/* Return a `value' with the contents of (virtual or cooked) register
257 REGNUM as found in the specified FRAME. The register's type is
9c5ea4d9 258 determined by register_type(). */
c906108c 259
3d6d86c6 260struct value *
376c9600 261value_of_register (int regnum, struct frame_info *frame)
c906108c 262{
e9e45075 263 struct gdbarch *gdbarch = get_frame_arch (frame);
3d6d86c6 264 struct value *reg_val;
c906108c 265
9564ee9f 266 /* User registers lie completely outside of the range of normal
0406ec40 267 registers. Catch them early so that the target never sees them. */
e9e45075
UW
268 if (regnum >= gdbarch_num_regs (gdbarch)
269 + gdbarch_num_pseudo_regs (gdbarch))
eb8bc282 270 return value_of_user_reg (regnum, frame);
0406ec40 271
d5b495b4
PA
272 reg_val = value_of_register_lazy (frame, regnum);
273 value_fetch_lazy (reg_val);
c906108c
SS
274 return reg_val;
275}
4478b372 276
9214ee5f
DJ
277/* Return a `value' with the contents of (virtual or cooked) register
278 REGNUM as found in the specified FRAME. The register's type is
279 determined by register_type(). The value is not fetched. */
280
281struct value *
282value_of_register_lazy (struct frame_info *frame, int regnum)
283{
284 struct gdbarch *gdbarch = get_frame_arch (frame);
285 struct value *reg_val;
286
287 gdb_assert (regnum < (gdbarch_num_regs (gdbarch)
288 + gdbarch_num_pseudo_regs (gdbarch)));
289
290 /* We should have a valid (i.e. non-sentinel) frame. */
291 gdb_assert (frame_id_p (get_frame_id (frame)));
292
41e8491f 293 reg_val = allocate_value_lazy (register_type (gdbarch, regnum));
9214ee5f
DJ
294 VALUE_LVAL (reg_val) = lval_register;
295 VALUE_REGNUM (reg_val) = regnum;
296 VALUE_FRAME_ID (reg_val) = get_frame_id (frame);
9214ee5f
DJ
297 return reg_val;
298}
299
4478b372
JB
300/* Given a pointer of type TYPE in target form in BUF, return the
301 address it represents. */
302CORE_ADDR
9898f801
UW
303unsigned_pointer_to_address (struct gdbarch *gdbarch,
304 struct type *type, const gdb_byte *buf)
4478b372 305{
e17a4113 306 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bb9bcb69 307
e17a4113 308 return extract_unsigned_integer (buf, TYPE_LENGTH (type), byte_order);
4478b372
JB
309}
310
ac2e2ef7 311CORE_ADDR
9898f801
UW
312signed_pointer_to_address (struct gdbarch *gdbarch,
313 struct type *type, const gdb_byte *buf)
ac2e2ef7 314{
e17a4113 315 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bb9bcb69 316
e17a4113 317 return extract_signed_integer (buf, TYPE_LENGTH (type), byte_order);
ac2e2ef7 318}
4478b372
JB
319
320/* Given an address, store it as a pointer of type TYPE in target
321 format in BUF. */
322void
9898f801
UW
323unsigned_address_to_pointer (struct gdbarch *gdbarch, struct type *type,
324 gdb_byte *buf, CORE_ADDR addr)
4478b372 325{
e17a4113 326 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bb9bcb69 327
e17a4113 328 store_unsigned_integer (buf, TYPE_LENGTH (type), byte_order, addr);
4478b372
JB
329}
330
ac2e2ef7 331void
9898f801
UW
332address_to_signed_pointer (struct gdbarch *gdbarch, struct type *type,
333 gdb_byte *buf, CORE_ADDR addr)
ac2e2ef7 334{
e17a4113 335 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bb9bcb69 336
e17a4113 337 store_signed_integer (buf, TYPE_LENGTH (type), byte_order, addr);
ac2e2ef7 338}
c906108c
SS
339\f
340/* Will calling read_var_value or locate_var_value on SYM end
341 up caring what frame it is being evaluated relative to? SYM must
342 be non-NULL. */
343int
fba45db2 344symbol_read_needs_frame (struct symbol *sym)
c906108c 345{
24d6c2a0
TT
346 if (SYMBOL_COMPUTED_OPS (sym) != NULL)
347 return SYMBOL_COMPUTED_OPS (sym)->read_needs_frame (sym);
348
c906108c
SS
349 switch (SYMBOL_CLASS (sym))
350 {
351 /* All cases listed explicitly so that gcc -Wall will detect it if
c5aa993b 352 we failed to consider one. */
4c2df51b 353 case LOC_COMPUTED:
24d6c2a0 354 gdb_assert_not_reached (_("LOC_COMPUTED variable missing a method"));
4c2df51b 355
c906108c
SS
356 case LOC_REGISTER:
357 case LOC_ARG:
358 case LOC_REF_ARG:
c906108c
SS
359 case LOC_REGPARM_ADDR:
360 case LOC_LOCAL:
c906108c
SS
361 return 1;
362
363 case LOC_UNDEF:
364 case LOC_CONST:
365 case LOC_STATIC:
c906108c
SS
366 case LOC_TYPEDEF:
367
368 case LOC_LABEL:
369 /* Getting the address of a label can be done independently of the block,
c5aa993b
JM
370 even if some *uses* of that address wouldn't work so well without
371 the right frame. */
c906108c
SS
372
373 case LOC_BLOCK:
374 case LOC_CONST_BYTES:
375 case LOC_UNRESOLVED:
376 case LOC_OPTIMIZED_OUT:
377 return 0;
378 }
379 return 1;
380}
381
19630284
JB
382/* Private data to be used with minsym_lookup_iterator_cb. */
383
384struct minsym_lookup_data
385{
386 /* The name of the minimal symbol we are searching for. */
387 const char *name;
388
389 /* The field where the callback should store the minimal symbol
390 if found. It should be initialized to NULL before the search
391 is started. */
3b7344d5 392 struct bound_minimal_symbol result;
19630284
JB
393};
394
395/* A callback function for gdbarch_iterate_over_objfiles_in_search_order.
396 It searches by name for a minimal symbol within the given OBJFILE.
397 The arguments are passed via CB_DATA, which in reality is a pointer
398 to struct minsym_lookup_data. */
399
400static int
401minsym_lookup_iterator_cb (struct objfile *objfile, void *cb_data)
402{
403 struct minsym_lookup_data *data = (struct minsym_lookup_data *) cb_data;
404
3b7344d5 405 gdb_assert (data->result.minsym == NULL);
19630284
JB
406
407 data->result = lookup_minimal_symbol (data->name, NULL, objfile);
408
409 /* The iterator should stop iff a match was found. */
3b7344d5 410 return (data->result.minsym != NULL);
19630284
JB
411}
412
63e43d3a
PMR
413/* Given static link expression and the frame it lives in, look for the frame
414 the static links points to and return it. Return NULL if we could not find
415 such a frame. */
416
417static struct frame_info *
418follow_static_link (struct frame_info *frame,
419 const struct dynamic_prop *static_link)
420{
421 CORE_ADDR upper_frame_base;
422
423 if (!dwarf2_evaluate_property (static_link, frame, NULL, &upper_frame_base))
424 return NULL;
425
426 /* Now climb up the stack frame until we reach the frame we are interested
427 in. */
428 for (; frame != NULL; frame = get_prev_frame (frame))
429 {
430 struct symbol *framefunc = get_frame_function (frame);
431
432 /* Stacks can be quite deep: give the user a chance to stop this. */
433 QUIT;
434
435 /* If we don't know how to compute FRAME's base address, don't give up:
436 maybe the frame we are looking for is upper in the stace frame. */
437 if (framefunc != NULL
438 && SYMBOL_BLOCK_OPS (framefunc)->get_frame_base != NULL
439 && (SYMBOL_BLOCK_OPS (framefunc)->get_frame_base (framefunc, frame)
440 == upper_frame_base))
441 break;
442 }
443
444 return frame;
445}
446
447/* Assuming VAR is a symbol that can be reached from FRAME thanks to lexical
448 rules, look for the frame that is actually hosting VAR and return it. If,
449 for some reason, we found no such frame, return NULL.
450
451 This kind of computation is necessary to correctly handle lexically nested
452 functions.
453
454 Note that in some cases, we know what scope VAR comes from but we cannot
455 reach the specific frame that hosts the instance of VAR we are looking for.
456 For backward compatibility purposes (with old compilers), we then look for
457 the first frame that can host it. */
458
459static struct frame_info *
460get_hosting_frame (struct symbol *var, const struct block *var_block,
461 struct frame_info *frame)
462{
463 const struct block *frame_block = NULL;
464
465 if (!symbol_read_needs_frame (var))
466 return NULL;
467
468 /* Some symbols for local variables have no block: this happens when they are
469 not produced by a debug information reader, for instance when GDB creates
470 synthetic symbols. Without block information, we must assume they are
471 local to FRAME. In this case, there is nothing to do. */
472 else if (var_block == NULL)
473 return frame;
474
475 /* We currently assume that all symbols with a location list need a frame.
476 This is true in practice because selecting the location description
477 requires to compute the CFA, hence requires a frame. However we have
478 tests that embed global/static symbols with null location lists.
479 We want to get <optimized out> instead of <frame required> when evaluating
480 them so return a frame instead of raising an error. */
481 else if (var_block == block_global_block (var_block)
482 || var_block == block_static_block (var_block))
483 return frame;
484
485 /* We have to handle the "my_func::my_local_var" notation. This requires us
486 to look for upper frames when we find no block for the current frame: here
487 and below, handle when frame_block == NULL. */
488 if (frame != NULL)
489 frame_block = get_frame_block (frame, NULL);
490
491 /* Climb up the call stack until reaching the frame we are looking for. */
492 while (frame != NULL && frame_block != var_block)
493 {
494 /* Stacks can be quite deep: give the user a chance to stop this. */
495 QUIT;
496
497 if (frame_block == NULL)
498 {
499 frame = get_prev_frame (frame);
500 if (frame == NULL)
501 break;
502 frame_block = get_frame_block (frame, NULL);
503 }
504
505 /* If we failed to find the proper frame, fallback to the heuristic
506 method below. */
507 else if (frame_block == block_global_block (frame_block))
508 {
509 frame = NULL;
510 break;
511 }
512
513 /* Assuming we have a block for this frame: if we are at the function
514 level, the immediate upper lexical block is in an outer function:
515 follow the static link. */
516 else if (BLOCK_FUNCTION (frame_block))
517 {
518 const struct dynamic_prop *static_link
519 = block_static_link (frame_block);
520 int could_climb_up = 0;
521
522 if (static_link != NULL)
523 {
524 frame = follow_static_link (frame, static_link);
525 if (frame != NULL)
526 {
527 frame_block = get_frame_block (frame, NULL);
528 could_climb_up = frame_block != NULL;
529 }
530 }
531 if (!could_climb_up)
532 {
533 frame = NULL;
534 break;
535 }
536 }
537
538 else
539 /* We must be in some function nested lexical block. Just get the
540 outer block: both must share the same frame. */
541 frame_block = BLOCK_SUPERBLOCK (frame_block);
542 }
543
544 /* Old compilers may not provide a static link, or they may provide an
545 invalid one. For such cases, fallback on the old way to evaluate
546 non-local references: just climb up the call stack and pick the first
547 frame that contains the variable we are looking for. */
548 if (frame == NULL)
549 {
550 frame = block_innermost_frame (var_block);
551 if (frame == NULL)
552 {
553 if (BLOCK_FUNCTION (var_block)
554 && !block_inlined_p (var_block)
555 && SYMBOL_PRINT_NAME (BLOCK_FUNCTION (var_block)))
556 error (_("No frame is currently executing in block %s."),
557 SYMBOL_PRINT_NAME (BLOCK_FUNCTION (var_block)));
558 else
559 error (_("No frame is currently executing in specified"
560 " block"));
561 }
562 }
563
564 return frame;
565}
566
a5ee536b
JB
567/* A default implementation for the "la_read_var_value" hook in
568 the language vector which should work in most situations. */
c906108c 569
3d6d86c6 570struct value *
63e43d3a
PMR
571default_read_var_value (struct symbol *var, const struct block *var_block,
572 struct frame_info *frame)
c906108c 573{
52f0bd74 574 struct value *v;
c906108c
SS
575 struct type *type = SYMBOL_TYPE (var);
576 CORE_ADDR addr;
c906108c 577
41e8491f
JK
578 /* Call check_typedef on our type to make sure that, if TYPE is
579 a TYPE_CODE_TYPEDEF, its length is set to the length of the target type
580 instead of zero. However, we do not replace the typedef type by the
581 target type, because we want to keep the typedef in order to be able to
582 set the returned value type description correctly. */
583 check_typedef (type);
c906108c 584
61212c0f 585 if (symbol_read_needs_frame (var))
63e43d3a
PMR
586 gdb_assert (frame != NULL);
587
588 if (frame != NULL)
589 frame = get_hosting_frame (var, var_block, frame);
c906108c 590
24d6c2a0
TT
591 if (SYMBOL_COMPUTED_OPS (var) != NULL)
592 return SYMBOL_COMPUTED_OPS (var)->read_variable (var, frame);
593
c906108c
SS
594 switch (SYMBOL_CLASS (var))
595 {
596 case LOC_CONST:
1612e0c0
SA
597 if (is_dynamic_type (type))
598 {
599 /* Value is a constant byte-sequence and needs no memory access. */
c3345124 600 type = resolve_dynamic_type (type, NULL, /* Unused address. */ 0);
1612e0c0
SA
601 }
602 /* Put the constant back in target format. */
41e8491f 603 v = allocate_value (type);
744a8059 604 store_signed_integer (value_contents_raw (v), TYPE_LENGTH (type),
e17a4113 605 gdbarch_byte_order (get_type_arch (type)),
c906108c
SS
606 (LONGEST) SYMBOL_VALUE (var));
607 VALUE_LVAL (v) = not_lval;
608 return v;
609
610 case LOC_LABEL:
611 /* Put the constant back in target format. */
41e8491f 612 v = allocate_value (type);
c906108c 613 if (overlay_debugging)
4478b372
JB
614 {
615 CORE_ADDR addr
616 = symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (var),
08be3fe3 617 SYMBOL_OBJ_SECTION (symbol_objfile (var),
e27d198c 618 var));
bb9bcb69 619
990a07ab 620 store_typed_address (value_contents_raw (v), type, addr);
4478b372 621 }
c906108c 622 else
990a07ab 623 store_typed_address (value_contents_raw (v), type,
4478b372 624 SYMBOL_VALUE_ADDRESS (var));
c906108c
SS
625 VALUE_LVAL (v) = not_lval;
626 return v;
627
628 case LOC_CONST_BYTES:
1612e0c0
SA
629 if (is_dynamic_type (type))
630 {
631 /* Value is a constant byte-sequence and needs no memory access. */
c3345124 632 type = resolve_dynamic_type (type, NULL, /* Unused address. */ 0);
1612e0c0 633 }
41e8491f 634 v = allocate_value (type);
744a8059
SP
635 memcpy (value_contents_raw (v), SYMBOL_VALUE_BYTES (var),
636 TYPE_LENGTH (type));
bb9bcb69
MS
637 VALUE_LVAL (v) = not_lval;
638 return v;
c906108c
SS
639
640 case LOC_STATIC:
641 if (overlay_debugging)
642 addr = symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (var),
08be3fe3 643 SYMBOL_OBJ_SECTION (symbol_objfile (var),
e27d198c 644 var));
c906108c
SS
645 else
646 addr = SYMBOL_VALUE_ADDRESS (var);
647 break;
648
c906108c 649 case LOC_ARG:
da62e633 650 addr = get_frame_args_address (frame);
c906108c 651 if (!addr)
8afd712c
JK
652 error (_("Unknown argument list address for `%s'."),
653 SYMBOL_PRINT_NAME (var));
c906108c
SS
654 addr += SYMBOL_VALUE (var);
655 break;
656
657 case LOC_REF_ARG:
f76febae
AC
658 {
659 struct value *ref;
660 CORE_ADDR argref;
bb9bcb69 661
da62e633 662 argref = get_frame_args_address (frame);
f76febae 663 if (!argref)
8afd712c
JK
664 error (_("Unknown argument list address for `%s'."),
665 SYMBOL_PRINT_NAME (var));
f76febae 666 argref += SYMBOL_VALUE (var);
00a4c844 667 ref = value_at (lookup_pointer_type (type), argref);
1aa20aa8 668 addr = value_as_address (ref);
f76febae
AC
669 break;
670 }
c906108c
SS
671
672 case LOC_LOCAL:
da62e633 673 addr = get_frame_locals_address (frame);
c906108c
SS
674 addr += SYMBOL_VALUE (var);
675 break;
676
c906108c 677 case LOC_TYPEDEF:
8afd712c
JK
678 error (_("Cannot look up value of a typedef `%s'."),
679 SYMBOL_PRINT_NAME (var));
c906108c
SS
680 break;
681
682 case LOC_BLOCK:
683 if (overlay_debugging)
41e8491f 684 addr = symbol_overlayed_address
08be3fe3
DE
685 (BLOCK_START (SYMBOL_BLOCK_VALUE (var)),
686 SYMBOL_OBJ_SECTION (symbol_objfile (var), var));
c906108c 687 else
41e8491f
JK
688 addr = BLOCK_START (SYMBOL_BLOCK_VALUE (var));
689 break;
c906108c
SS
690
691 case LOC_REGISTER:
c906108c
SS
692 case LOC_REGPARM_ADDR:
693 {
768a979c
UW
694 int regno = SYMBOL_REGISTER_OPS (var)
695 ->register_number (var, get_frame_arch (frame));
3d6d86c6 696 struct value *regval;
c906108c 697
c906108c
SS
698 if (SYMBOL_CLASS (var) == LOC_REGPARM_ADDR)
699 {
700 regval = value_from_register (lookup_pointer_type (type),
c5aa993b 701 regno,
c906108c
SS
702 frame);
703
704 if (regval == NULL)
8afd712c
JK
705 error (_("Value of register variable not available for `%s'."),
706 SYMBOL_PRINT_NAME (var));
c906108c 707
1aa20aa8 708 addr = value_as_address (regval);
c906108c
SS
709 }
710 else
711 {
712 regval = value_from_register (type, regno, frame);
713
714 if (regval == NULL)
8afd712c
JK
715 error (_("Value of register variable not available for `%s'."),
716 SYMBOL_PRINT_NAME (var));
c906108c
SS
717 return regval;
718 }
719 }
720 break;
721
4c2df51b 722 case LOC_COMPUTED:
24d6c2a0 723 gdb_assert_not_reached (_("LOC_COMPUTED variable missing a method"));
4c2df51b 724
c906108c
SS
725 case LOC_UNRESOLVED:
726 {
19630284 727 struct minsym_lookup_data lookup_data;
c906108c 728 struct minimal_symbol *msym;
e0740f77 729 struct obj_section *obj_section;
c906108c 730
19630284
JB
731 memset (&lookup_data, 0, sizeof (lookup_data));
732 lookup_data.name = SYMBOL_LINKAGE_NAME (var);
733
734 gdbarch_iterate_over_objfiles_in_search_order
08be3fe3 735 (symbol_arch (var),
19630284 736 minsym_lookup_iterator_cb, &lookup_data,
08be3fe3 737 symbol_objfile (var));
3b7344d5 738 msym = lookup_data.result.minsym;
19630284 739
c906108c 740 if (msym == NULL)
8afd712c 741 error (_("No global symbol \"%s\"."), SYMBOL_LINKAGE_NAME (var));
c906108c 742 if (overlay_debugging)
77e371c0 743 addr = symbol_overlayed_address (BMSYMBOL_VALUE_ADDRESS (lookup_data.result),
3b7344d5 744 MSYMBOL_OBJ_SECTION (lookup_data.result.objfile,
efd66ac6 745 msym));
c906108c 746 else
77e371c0 747 addr = BMSYMBOL_VALUE_ADDRESS (lookup_data.result);
e0740f77 748
3b7344d5 749 obj_section = MSYMBOL_OBJ_SECTION (lookup_data.result.objfile, msym);
e0740f77
JK
750 if (obj_section
751 && (obj_section->the_bfd_section->flags & SEC_THREAD_LOCAL) != 0)
752 addr = target_translate_tls_address (obj_section->objfile, addr);
c906108c
SS
753 }
754 break;
755
756 case LOC_OPTIMIZED_OUT:
a7035dbb 757 return allocate_optimized_out_value (type);
c906108c
SS
758
759 default:
8afd712c
JK
760 error (_("Cannot look up value of a botched symbol `%s'."),
761 SYMBOL_PRINT_NAME (var));
c906108c
SS
762 break;
763 }
764
08039c9e 765 v = value_at_lazy (type, addr);
c906108c
SS
766 return v;
767}
768
a5ee536b
JB
769/* Calls VAR's language la_read_var_value hook with the given arguments. */
770
771struct value *
63e43d3a
PMR
772read_var_value (struct symbol *var, const struct block *var_block,
773 struct frame_info *frame)
a5ee536b
JB
774{
775 const struct language_defn *lang = language_def (SYMBOL_LANGUAGE (var));
776
777 gdb_assert (lang != NULL);
778 gdb_assert (lang->la_read_var_value != NULL);
779
63e43d3a 780 return lang->la_read_var_value (var, var_block, frame);
a5ee536b
JB
781}
782
9acbedc0
UW
783/* Install default attributes for register values. */
784
785struct value *
2ed3c037
UW
786default_value_from_register (struct gdbarch *gdbarch, struct type *type,
787 int regnum, struct frame_id frame_id)
9acbedc0 788{
9acbedc0
UW
789 int len = TYPE_LENGTH (type);
790 struct value *value = allocate_value (type);
791
792 VALUE_LVAL (value) = lval_register;
2ed3c037 793 VALUE_FRAME_ID (value) = frame_id;
9acbedc0
UW
794 VALUE_REGNUM (value) = regnum;
795
796 /* Any structure stored in more than one register will always be
797 an integral number of registers. Otherwise, you need to do
798 some fiddling with the last register copied here for little
799 endian machines. */
e9e45075 800 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG
9acbedc0
UW
801 && len < register_size (gdbarch, regnum))
802 /* Big-endian, and we want less than full size. */
803 set_value_offset (value, register_size (gdbarch, regnum) - len);
804 else
805 set_value_offset (value, 0);
806
807 return value;
808}
809
b56d6f31
JB
810/* VALUE must be an lval_register value. If regnum is the value's
811 associated register number, and len the length of the values type,
812 read one or more registers in FRAME, starting with register REGNUM,
2603f7ee
AB
813 until we've read LEN bytes.
814
815 If any of the registers we try to read are optimized out, then mark the
816 complete resulting value as optimized out. */
b56d6f31
JB
817
818void
819read_frame_register_value (struct value *value, struct frame_info *frame)
820{
01efb936 821 struct gdbarch *gdbarch = get_frame_arch (frame);
b56d6f31 822 int offset = 0;
01efb936 823 int reg_offset = value_offset (value);
b56d6f31 824 int regnum = VALUE_REGNUM (value);
3ae385af 825 int len = type_length_units (check_typedef (value_type (value)));
b56d6f31
JB
826
827 gdb_assert (VALUE_LVAL (value) == lval_register);
828
01efb936
UW
829 /* Skip registers wholly inside of REG_OFFSET. */
830 while (reg_offset >= register_size (gdbarch, regnum))
831 {
832 reg_offset -= register_size (gdbarch, regnum);
833 regnum++;
834 }
835
836 /* Copy the data. */
837 while (len > 0)
b56d6f31
JB
838 {
839 struct value *regval = get_frame_register_value (frame, regnum);
3ae385af 840 int reg_len = type_length_units (value_type (regval)) - reg_offset;
b56d6f31 841
22355c90
JB
842 /* If the register length is larger than the number of bytes
843 remaining to copy, then only copy the appropriate bytes. */
01efb936
UW
844 if (reg_len > len)
845 reg_len = len;
22355c90 846
01efb936 847 value_contents_copy (value, offset, regval, reg_offset, reg_len);
b56d6f31
JB
848
849 offset += reg_len;
01efb936
UW
850 len -= reg_len;
851 reg_offset = 0;
b56d6f31
JB
852 regnum++;
853 }
854}
855
00fa51f6 856/* Return a value of type TYPE, stored in register REGNUM, in frame FRAME. */
c906108c 857
3d6d86c6 858struct value *
fba45db2 859value_from_register (struct type *type, int regnum, struct frame_info *frame)
c906108c 860{
ff2e87ac 861 struct gdbarch *gdbarch = get_frame_arch (frame);
9acbedc0
UW
862 struct type *type1 = check_typedef (type);
863 struct value *v;
864
e9e45075 865 if (gdbarch_convert_register_p (gdbarch, regnum, type1))
ff2e87ac 866 {
3543a589
TT
867 int optim, unavail, ok;
868
ff2e87ac
AC
869 /* The ISA/ABI need to something weird when obtaining the
870 specified value from this register. It might need to
871 re-order non-adjacent, starting with REGNUM (see MIPS and
872 i386). It might need to convert the [float] register into
873 the corresponding [integer] type (see Alpha). The assumption
c1afe53d 874 is that gdbarch_register_to_value populates the entire value
ff2e87ac 875 including the location. */
9acbedc0
UW
876 v = allocate_value (type);
877 VALUE_LVAL (v) = lval_register;
878 VALUE_FRAME_ID (v) = get_frame_id (frame);
879 VALUE_REGNUM (v) = regnum;
8dccd430
PA
880 ok = gdbarch_register_to_value (gdbarch, frame, regnum, type1,
881 value_contents_raw (v), &optim,
882 &unavail);
3543a589
TT
883
884 if (!ok)
885 {
886 if (optim)
9a0dc9e3 887 mark_value_bytes_optimized_out (v, 0, TYPE_LENGTH (type));
3543a589
TT
888 if (unavail)
889 mark_value_bytes_unavailable (v, 0, TYPE_LENGTH (type));
890 }
ff2e87ac
AC
891 }
892 else
c906108c 893 {
9acbedc0 894 /* Construct the value. */
2ed3c037
UW
895 v = gdbarch_value_from_register (gdbarch, type,
896 regnum, get_frame_id (frame));
00fa51f6
UW
897
898 /* Get the data. */
b56d6f31 899 read_frame_register_value (v, frame);
c906108c 900 }
8dccd430 901
c906108c
SS
902 return v;
903}
ff2e87ac 904
2ed3c037
UW
905/* Return contents of register REGNUM in frame FRAME as address.
906 Will abort if register value is not available. */
0b2b0195
UW
907
908CORE_ADDR
2ed3c037 909address_from_register (int regnum, struct frame_info *frame)
0b2b0195 910{
2ed3c037
UW
911 struct gdbarch *gdbarch = get_frame_arch (frame);
912 struct type *type = builtin_type (gdbarch)->builtin_data_ptr;
0b2b0195
UW
913 struct value *value;
914 CORE_ADDR result;
915
2ed3c037
UW
916 /* This routine may be called during early unwinding, at a time
917 where the ID of FRAME is not yet known. Calling value_from_register
918 would therefore abort in get_frame_id. However, since we only need
919 a temporary value that is never used as lvalue, we actually do not
920 really need to set its VALUE_FRAME_ID. Therefore, we re-implement
eeef931a 921 the core of value_from_register, but use the null_frame_id. */
2ed3c037 922
eeef931a
UW
923 /* Some targets require a special conversion routine even for plain
924 pointer types. Avoid constructing a value object in those cases. */
925 if (gdbarch_convert_register_p (gdbarch, regnum, type))
926 {
927 gdb_byte *buf = alloca (TYPE_LENGTH (type));
928 int optim, unavail, ok;
929
930 ok = gdbarch_register_to_value (gdbarch, frame, regnum, type,
931 buf, &optim, &unavail);
932 if (!ok)
933 {
934 /* This function is used while computing a location expression.
935 Complain about the value being optimized out, rather than
936 letting value_as_address complain about some random register
937 the expression depends on not being saved. */
938 error_value_optimized_out ();
939 }
940
941 return unpack_long (type, buf);
942 }
2ed3c037
UW
943
944 value = gdbarch_value_from_register (gdbarch, type, regnum, null_frame_id);
945 read_frame_register_value (value, frame);
0b2b0195 946
901461f8
PA
947 if (value_optimized_out (value))
948 {
949 /* This function is used while computing a location expression.
950 Complain about the value being optimized out, rather than
951 letting value_as_address complain about some random register
952 the expression depends on not being saved. */
953 error_value_optimized_out ();
954 }
955
0b2b0195
UW
956 result = value_as_address (value);
957 release_value (value);
958 value_free (value);
959
960 return result;
961}
b56d6f31 962
This page took 1.179452 seconds and 4 git commands to generate.