2009-02-06 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / value.c
CommitLineData
c906108c 1/* Low level packing and unpacking of values for GDB, the GNU Debugger.
1bac305b 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
0fb0cc75
JB
4 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5 2009 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
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.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
23#include "gdb_string.h"
24#include "symtab.h"
25#include "gdbtypes.h"
26#include "value.h"
27#include "gdbcore.h"
c906108c
SS
28#include "command.h"
29#include "gdbcmd.h"
30#include "target.h"
31#include "language.h"
c906108c 32#include "demangle.h"
d16aafd8 33#include "doublest.h"
5ae326fa 34#include "gdb_assert.h"
36160dc4 35#include "regcache.h"
fe898f56 36#include "block.h"
27bc4d80 37#include "dfp.h"
bccdca4a 38#include "objfiles.h"
79a45b7d 39#include "valprint.h"
c906108c 40
a08702d6
TJB
41#include "python/python.h"
42
c906108c
SS
43/* Prototypes for exported functions. */
44
a14ed312 45void _initialize_values (void);
c906108c 46
91294c83
AC
47struct value
48{
49 /* Type of value; either not an lval, or one of the various
50 different possible kinds of lval. */
51 enum lval_type lval;
52
53 /* Is it modifiable? Only relevant if lval != not_lval. */
54 int modifiable;
55
56 /* Location of value (if lval). */
57 union
58 {
59 /* If lval == lval_memory, this is the address in the inferior.
60 If lval == lval_register, this is the byte offset into the
61 registers structure. */
62 CORE_ADDR address;
63
64 /* Pointer to internal variable. */
65 struct internalvar *internalvar;
5f5233d4
PA
66
67 /* If lval == lval_computed, this is a set of function pointers
68 to use to access and describe the value, and a closure pointer
69 for them to use. */
70 struct
71 {
72 struct lval_funcs *funcs; /* Functions to call. */
73 void *closure; /* Closure for those functions to use. */
74 } computed;
91294c83
AC
75 } location;
76
77 /* Describes offset of a value within lval of a structure in bytes.
78 If lval == lval_memory, this is an offset to the address. If
79 lval == lval_register, this is a further offset from
80 location.address within the registers structure. Note also the
81 member embedded_offset below. */
82 int offset;
83
84 /* Only used for bitfields; number of bits contained in them. */
85 int bitsize;
86
87 /* Only used for bitfields; position of start of field. For
32c9a795
MD
88 gdbarch_bits_big_endian=0 targets, it is the position of the LSB. For
89 gdbarch_bits_big_endian=1 targets, it is the position of the MSB. */
91294c83
AC
90 int bitpos;
91
92 /* Frame register value is relative to. This will be described in
93 the lval enum above as "lval_register". */
94 struct frame_id frame_id;
95
96 /* Type of the value. */
97 struct type *type;
98
99 /* If a value represents a C++ object, then the `type' field gives
100 the object's compile-time type. If the object actually belongs
101 to some class derived from `type', perhaps with other base
102 classes and additional members, then `type' is just a subobject
103 of the real thing, and the full object is probably larger than
104 `type' would suggest.
105
106 If `type' is a dynamic class (i.e. one with a vtable), then GDB
107 can actually determine the object's run-time type by looking at
108 the run-time type information in the vtable. When this
109 information is available, we may elect to read in the entire
110 object, for several reasons:
111
112 - When printing the value, the user would probably rather see the
113 full object, not just the limited portion apparent from the
114 compile-time type.
115
116 - If `type' has virtual base classes, then even printing `type'
117 alone may require reaching outside the `type' portion of the
118 object to wherever the virtual base class has been stored.
119
120 When we store the entire object, `enclosing_type' is the run-time
121 type -- the complete object -- and `embedded_offset' is the
122 offset of `type' within that larger type, in bytes. The
123 value_contents() macro takes `embedded_offset' into account, so
124 most GDB code continues to see the `type' portion of the value,
125 just as the inferior would.
126
127 If `type' is a pointer to an object, then `enclosing_type' is a
128 pointer to the object's run-time type, and `pointed_to_offset' is
129 the offset in bytes from the full object to the pointed-to object
130 -- that is, the value `embedded_offset' would have if we followed
131 the pointer and fetched the complete object. (I don't really see
132 the point. Why not just determine the run-time type when you
133 indirect, and avoid the special case? The contents don't matter
134 until you indirect anyway.)
135
136 If we're not doing anything fancy, `enclosing_type' is equal to
137 `type', and `embedded_offset' is zero, so everything works
138 normally. */
139 struct type *enclosing_type;
140 int embedded_offset;
141 int pointed_to_offset;
142
143 /* Values are stored in a chain, so that they can be deleted easily
144 over calls to the inferior. Values assigned to internal
a08702d6
TJB
145 variables, put into the value history or exposed to Python are
146 taken off this list. */
91294c83
AC
147 struct value *next;
148
149 /* Register number if the value is from a register. */
150 short regnum;
151
152 /* If zero, contents of this value are in the contents field. If
9214ee5f
DJ
153 nonzero, contents are in inferior. If the lval field is lval_memory,
154 the contents are in inferior memory at location.address plus offset.
155 The lval field may also be lval_register.
91294c83
AC
156
157 WARNING: This field is used by the code which handles watchpoints
158 (see breakpoint.c) to decide whether a particular value can be
159 watched by hardware watchpoints. If the lazy flag is set for
160 some member of a value chain, it is assumed that this member of
161 the chain doesn't need to be watched as part of watching the
162 value itself. This is how GDB avoids watching the entire struct
163 or array when the user wants to watch a single struct member or
164 array element. If you ever change the way lazy flag is set and
165 reset, be sure to consider this use as well! */
166 char lazy;
167
168 /* If nonzero, this is the value of a variable which does not
169 actually exist in the program. */
170 char optimized_out;
171
42be36b3
CT
172 /* If value is a variable, is it initialized or not. */
173 int initialized;
174
3e3d7139
JG
175 /* Actual contents of the value. Target byte-order. NULL or not
176 valid if lazy is nonzero. */
177 gdb_byte *contents;
91294c83
AC
178};
179
c906108c
SS
180/* Prototypes for local functions. */
181
a14ed312 182static void show_values (char *, int);
c906108c 183
a14ed312 184static void show_convenience (char *, int);
c906108c 185
c906108c
SS
186
187/* The value-history records all the values printed
188 by print commands during this session. Each chunk
189 records 60 consecutive values. The first chunk on
190 the chain records the most recent values.
191 The total number of values is in value_history_count. */
192
193#define VALUE_HISTORY_CHUNK 60
194
195struct value_history_chunk
c5aa993b
JM
196 {
197 struct value_history_chunk *next;
f23631e4 198 struct value *values[VALUE_HISTORY_CHUNK];
c5aa993b 199 };
c906108c
SS
200
201/* Chain of chunks now in use. */
202
203static struct value_history_chunk *value_history_chain;
204
205static int value_history_count; /* Abs number of last entry stored */
206\f
207/* List of all value objects currently allocated
208 (except for those released by calls to release_value)
209 This is so they can be freed after each command. */
210
f23631e4 211static struct value *all_values;
c906108c 212
3e3d7139
JG
213/* Allocate a lazy value for type TYPE. Its actual content is
214 "lazily" allocated too: the content field of the return value is
215 NULL; it will be allocated when it is fetched from the target. */
c906108c 216
f23631e4 217struct value *
3e3d7139 218allocate_value_lazy (struct type *type)
c906108c 219{
f23631e4 220 struct value *val;
c906108c
SS
221 struct type *atype = check_typedef (type);
222
3e3d7139
JG
223 val = (struct value *) xzalloc (sizeof (struct value));
224 val->contents = NULL;
df407dfe 225 val->next = all_values;
c906108c 226 all_values = val;
df407dfe 227 val->type = type;
4754a64e 228 val->enclosing_type = type;
c906108c
SS
229 VALUE_LVAL (val) = not_lval;
230 VALUE_ADDRESS (val) = 0;
1df6926e 231 VALUE_FRAME_ID (val) = null_frame_id;
df407dfe
AC
232 val->offset = 0;
233 val->bitpos = 0;
234 val->bitsize = 0;
9ee8fc9d 235 VALUE_REGNUM (val) = -1;
3e3d7139 236 val->lazy = 1;
feb13ab0 237 val->optimized_out = 0;
13c3b5f5 238 val->embedded_offset = 0;
b44d461b 239 val->pointed_to_offset = 0;
c906108c 240 val->modifiable = 1;
42be36b3 241 val->initialized = 1; /* Default to initialized. */
c906108c
SS
242 return val;
243}
244
3e3d7139
JG
245/* Allocate the contents of VAL if it has not been allocated yet. */
246
247void
248allocate_value_contents (struct value *val)
249{
250 if (!val->contents)
251 val->contents = (gdb_byte *) xzalloc (TYPE_LENGTH (val->enclosing_type));
252}
253
254/* Allocate a value and its contents for type TYPE. */
255
256struct value *
257allocate_value (struct type *type)
258{
259 struct value *val = allocate_value_lazy (type);
260 allocate_value_contents (val);
261 val->lazy = 0;
262 return val;
263}
264
c906108c 265/* Allocate a value that has the correct length
938f5214 266 for COUNT repetitions of type TYPE. */
c906108c 267
f23631e4 268struct value *
fba45db2 269allocate_repeat_value (struct type *type, int count)
c906108c 270{
c5aa993b 271 int low_bound = current_language->string_lower_bound; /* ??? */
c906108c
SS
272 /* FIXME-type-allocation: need a way to free this type when we are
273 done with it. */
274 struct type *range_type
6d84d3d8 275 = create_range_type ((struct type *) NULL, builtin_type_int32,
c5aa993b 276 low_bound, count + low_bound - 1);
c906108c
SS
277 /* FIXME-type-allocation: need a way to free this type when we are
278 done with it. */
279 return allocate_value (create_array_type ((struct type *) NULL,
280 type, range_type));
281}
282
a08702d6
TJB
283/* Needed if another module needs to maintain its on list of values. */
284void
285value_prepend_to_list (struct value **head, struct value *val)
286{
287 val->next = *head;
288 *head = val;
289}
290
291/* Needed if another module needs to maintain its on list of values. */
292void
293value_remove_from_list (struct value **head, struct value *val)
294{
295 struct value *prev;
296
297 if (*head == val)
298 *head = (*head)->next;
299 else
300 for (prev = *head; prev->next; prev = prev->next)
301 if (prev->next == val)
302 {
303 prev->next = val->next;
304 break;
305 }
306}
307
5f5233d4
PA
308struct value *
309allocate_computed_value (struct type *type,
310 struct lval_funcs *funcs,
311 void *closure)
312{
313 struct value *v = allocate_value (type);
314 VALUE_LVAL (v) = lval_computed;
315 v->location.computed.funcs = funcs;
316 v->location.computed.closure = closure;
317 set_value_lazy (v, 1);
318
319 return v;
320}
321
df407dfe
AC
322/* Accessor methods. */
323
17cf0ecd
AC
324struct value *
325value_next (struct value *value)
326{
327 return value->next;
328}
329
df407dfe
AC
330struct type *
331value_type (struct value *value)
332{
333 return value->type;
334}
04624583
AC
335void
336deprecated_set_value_type (struct value *value, struct type *type)
337{
338 value->type = type;
339}
df407dfe
AC
340
341int
342value_offset (struct value *value)
343{
344 return value->offset;
345}
f5cf64a7
AC
346void
347set_value_offset (struct value *value, int offset)
348{
349 value->offset = offset;
350}
df407dfe
AC
351
352int
353value_bitpos (struct value *value)
354{
355 return value->bitpos;
356}
9bbda503
AC
357void
358set_value_bitpos (struct value *value, int bit)
359{
360 value->bitpos = bit;
361}
df407dfe
AC
362
363int
364value_bitsize (struct value *value)
365{
366 return value->bitsize;
367}
9bbda503
AC
368void
369set_value_bitsize (struct value *value, int bit)
370{
371 value->bitsize = bit;
372}
df407dfe 373
fc1a4b47 374gdb_byte *
990a07ab
AC
375value_contents_raw (struct value *value)
376{
3e3d7139
JG
377 allocate_value_contents (value);
378 return value->contents + value->embedded_offset;
990a07ab
AC
379}
380
fc1a4b47 381gdb_byte *
990a07ab
AC
382value_contents_all_raw (struct value *value)
383{
3e3d7139
JG
384 allocate_value_contents (value);
385 return value->contents;
990a07ab
AC
386}
387
4754a64e
AC
388struct type *
389value_enclosing_type (struct value *value)
390{
391 return value->enclosing_type;
392}
393
fc1a4b47 394const gdb_byte *
46615f07
AC
395value_contents_all (struct value *value)
396{
397 if (value->lazy)
398 value_fetch_lazy (value);
3e3d7139 399 return value->contents;
46615f07
AC
400}
401
d69fe07e
AC
402int
403value_lazy (struct value *value)
404{
405 return value->lazy;
406}
407
dfa52d88
AC
408void
409set_value_lazy (struct value *value, int val)
410{
411 value->lazy = val;
412}
413
fc1a4b47 414const gdb_byte *
0fd88904
AC
415value_contents (struct value *value)
416{
417 return value_contents_writeable (value);
418}
419
fc1a4b47 420gdb_byte *
0fd88904
AC
421value_contents_writeable (struct value *value)
422{
423 if (value->lazy)
424 value_fetch_lazy (value);
fc0c53a0 425 return value_contents_raw (value);
0fd88904
AC
426}
427
a6c442d8
MK
428/* Return non-zero if VAL1 and VAL2 have the same contents. Note that
429 this function is different from value_equal; in C the operator ==
430 can return 0 even if the two values being compared are equal. */
431
432int
433value_contents_equal (struct value *val1, struct value *val2)
434{
435 struct type *type1;
436 struct type *type2;
437 int len;
438
439 type1 = check_typedef (value_type (val1));
440 type2 = check_typedef (value_type (val2));
441 len = TYPE_LENGTH (type1);
442 if (len != TYPE_LENGTH (type2))
443 return 0;
444
445 return (memcmp (value_contents (val1), value_contents (val2), len) == 0);
446}
447
feb13ab0
AC
448int
449value_optimized_out (struct value *value)
450{
451 return value->optimized_out;
452}
453
454void
455set_value_optimized_out (struct value *value, int val)
456{
457 value->optimized_out = val;
458}
13c3b5f5
AC
459
460int
461value_embedded_offset (struct value *value)
462{
463 return value->embedded_offset;
464}
465
466void
467set_value_embedded_offset (struct value *value, int val)
468{
469 value->embedded_offset = val;
470}
b44d461b
AC
471
472int
473value_pointed_to_offset (struct value *value)
474{
475 return value->pointed_to_offset;
476}
477
478void
479set_value_pointed_to_offset (struct value *value, int val)
480{
481 value->pointed_to_offset = val;
482}
13bb5560 483
5f5233d4
PA
484struct lval_funcs *
485value_computed_funcs (struct value *v)
486{
487 gdb_assert (VALUE_LVAL (v) == lval_computed);
488
489 return v->location.computed.funcs;
490}
491
492void *
493value_computed_closure (struct value *v)
494{
495 gdb_assert (VALUE_LVAL (v) == lval_computed);
496
497 return v->location.computed.closure;
498}
499
13bb5560
AC
500enum lval_type *
501deprecated_value_lval_hack (struct value *value)
502{
503 return &value->lval;
504}
505
506CORE_ADDR *
507deprecated_value_address_hack (struct value *value)
508{
509 return &value->location.address;
510}
511
512struct internalvar **
513deprecated_value_internalvar_hack (struct value *value)
514{
515 return &value->location.internalvar;
516}
517
518struct frame_id *
519deprecated_value_frame_id_hack (struct value *value)
520{
521 return &value->frame_id;
522}
523
524short *
525deprecated_value_regnum_hack (struct value *value)
526{
527 return &value->regnum;
528}
88e3b34b
AC
529
530int
531deprecated_value_modifiable (struct value *value)
532{
533 return value->modifiable;
534}
535void
536deprecated_set_value_modifiable (struct value *value, int modifiable)
537{
538 value->modifiable = modifiable;
539}
990a07ab 540\f
c906108c
SS
541/* Return a mark in the value chain. All values allocated after the
542 mark is obtained (except for those released) are subject to being freed
543 if a subsequent value_free_to_mark is passed the mark. */
f23631e4 544struct value *
fba45db2 545value_mark (void)
c906108c
SS
546{
547 return all_values;
548}
549
3e3d7139
JG
550void
551value_free (struct value *val)
552{
553 if (val)
5f5233d4
PA
554 {
555 if (VALUE_LVAL (val) == lval_computed)
556 {
557 struct lval_funcs *funcs = val->location.computed.funcs;
558
559 if (funcs->free_closure)
560 funcs->free_closure (val);
561 }
562
563 xfree (val->contents);
564 }
3e3d7139
JG
565 xfree (val);
566}
567
c906108c
SS
568/* Free all values allocated since MARK was obtained by value_mark
569 (except for those released). */
570void
f23631e4 571value_free_to_mark (struct value *mark)
c906108c 572{
f23631e4
AC
573 struct value *val;
574 struct value *next;
c906108c
SS
575
576 for (val = all_values; val && val != mark; val = next)
577 {
df407dfe 578 next = val->next;
c906108c
SS
579 value_free (val);
580 }
581 all_values = val;
582}
583
584/* Free all the values that have been allocated (except for those released).
585 Called after each command, successful or not. */
586
587void
fba45db2 588free_all_values (void)
c906108c 589{
f23631e4
AC
590 struct value *val;
591 struct value *next;
c906108c
SS
592
593 for (val = all_values; val; val = next)
594 {
df407dfe 595 next = val->next;
c906108c
SS
596 value_free (val);
597 }
598
599 all_values = 0;
600}
601
602/* Remove VAL from the chain all_values
603 so it will not be freed automatically. */
604
605void
f23631e4 606release_value (struct value *val)
c906108c 607{
f23631e4 608 struct value *v;
c906108c
SS
609
610 if (all_values == val)
611 {
612 all_values = val->next;
613 return;
614 }
615
616 for (v = all_values; v; v = v->next)
617 {
618 if (v->next == val)
619 {
620 v->next = val->next;
621 break;
622 }
623 }
624}
625
626/* Release all values up to mark */
f23631e4
AC
627struct value *
628value_release_to_mark (struct value *mark)
c906108c 629{
f23631e4
AC
630 struct value *val;
631 struct value *next;
c906108c 632
df407dfe
AC
633 for (val = next = all_values; next; next = next->next)
634 if (next->next == mark)
c906108c 635 {
df407dfe
AC
636 all_values = next->next;
637 next->next = NULL;
c906108c
SS
638 return val;
639 }
640 all_values = 0;
641 return val;
642}
643
644/* Return a copy of the value ARG.
645 It contains the same contents, for same memory address,
646 but it's a different block of storage. */
647
f23631e4
AC
648struct value *
649value_copy (struct value *arg)
c906108c 650{
4754a64e 651 struct type *encl_type = value_enclosing_type (arg);
3e3d7139
JG
652 struct value *val;
653
654 if (value_lazy (arg))
655 val = allocate_value_lazy (encl_type);
656 else
657 val = allocate_value (encl_type);
df407dfe 658 val->type = arg->type;
c906108c 659 VALUE_LVAL (val) = VALUE_LVAL (arg);
6f7c8fc2 660 val->location = arg->location;
df407dfe
AC
661 val->offset = arg->offset;
662 val->bitpos = arg->bitpos;
663 val->bitsize = arg->bitsize;
1df6926e 664 VALUE_FRAME_ID (val) = VALUE_FRAME_ID (arg);
9ee8fc9d 665 VALUE_REGNUM (val) = VALUE_REGNUM (arg);
d69fe07e 666 val->lazy = arg->lazy;
feb13ab0 667 val->optimized_out = arg->optimized_out;
13c3b5f5 668 val->embedded_offset = value_embedded_offset (arg);
b44d461b 669 val->pointed_to_offset = arg->pointed_to_offset;
c906108c 670 val->modifiable = arg->modifiable;
d69fe07e 671 if (!value_lazy (val))
c906108c 672 {
990a07ab 673 memcpy (value_contents_all_raw (val), value_contents_all_raw (arg),
4754a64e 674 TYPE_LENGTH (value_enclosing_type (arg)));
c906108c
SS
675
676 }
5f5233d4
PA
677 if (VALUE_LVAL (val) == lval_computed)
678 {
679 struct lval_funcs *funcs = val->location.computed.funcs;
680
681 if (funcs->copy_closure)
682 val->location.computed.closure = funcs->copy_closure (val);
683 }
c906108c
SS
684 return val;
685}
74bcbdf3
PA
686
687void
688set_value_component_location (struct value *component, struct value *whole)
689{
690 if (VALUE_LVAL (whole) == lval_internalvar)
691 VALUE_LVAL (component) = lval_internalvar_component;
692 else
693 VALUE_LVAL (component) = VALUE_LVAL (whole);
5f5233d4 694
74bcbdf3 695 component->location = whole->location;
5f5233d4
PA
696 if (VALUE_LVAL (whole) == lval_computed)
697 {
698 struct lval_funcs *funcs = whole->location.computed.funcs;
699
700 if (funcs->copy_closure)
701 component->location.computed.closure = funcs->copy_closure (whole);
702 }
74bcbdf3
PA
703}
704
c906108c
SS
705\f
706/* Access to the value history. */
707
708/* Record a new value in the value history.
709 Returns the absolute history index of the entry.
710 Result of -1 indicates the value was not saved; otherwise it is the
711 value history index of this new item. */
712
713int
f23631e4 714record_latest_value (struct value *val)
c906108c
SS
715{
716 int i;
717
718 /* We don't want this value to have anything to do with the inferior anymore.
719 In particular, "set $1 = 50" should not affect the variable from which
720 the value was taken, and fast watchpoints should be able to assume that
721 a value on the value history never changes. */
d69fe07e 722 if (value_lazy (val))
c906108c
SS
723 value_fetch_lazy (val);
724 /* We preserve VALUE_LVAL so that the user can find out where it was fetched
725 from. This is a bit dubious, because then *&$1 does not just return $1
726 but the current contents of that location. c'est la vie... */
727 val->modifiable = 0;
728 release_value (val);
729
730 /* Here we treat value_history_count as origin-zero
731 and applying to the value being stored now. */
732
733 i = value_history_count % VALUE_HISTORY_CHUNK;
734 if (i == 0)
735 {
f23631e4 736 struct value_history_chunk *new
c5aa993b
JM
737 = (struct value_history_chunk *)
738 xmalloc (sizeof (struct value_history_chunk));
c906108c
SS
739 memset (new->values, 0, sizeof new->values);
740 new->next = value_history_chain;
741 value_history_chain = new;
742 }
743
744 value_history_chain->values[i] = val;
745
746 /* Now we regard value_history_count as origin-one
747 and applying to the value just stored. */
748
749 return ++value_history_count;
750}
751
752/* Return a copy of the value in the history with sequence number NUM. */
753
f23631e4 754struct value *
fba45db2 755access_value_history (int num)
c906108c 756{
f23631e4 757 struct value_history_chunk *chunk;
52f0bd74
AC
758 int i;
759 int absnum = num;
c906108c
SS
760
761 if (absnum <= 0)
762 absnum += value_history_count;
763
764 if (absnum <= 0)
765 {
766 if (num == 0)
8a3fe4f8 767 error (_("The history is empty."));
c906108c 768 else if (num == 1)
8a3fe4f8 769 error (_("There is only one value in the history."));
c906108c 770 else
8a3fe4f8 771 error (_("History does not go back to $$%d."), -num);
c906108c
SS
772 }
773 if (absnum > value_history_count)
8a3fe4f8 774 error (_("History has not yet reached $%d."), absnum);
c906108c
SS
775
776 absnum--;
777
778 /* Now absnum is always absolute and origin zero. */
779
780 chunk = value_history_chain;
781 for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK - absnum / VALUE_HISTORY_CHUNK;
782 i > 0; i--)
783 chunk = chunk->next;
784
785 return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
786}
787
c906108c 788static void
fba45db2 789show_values (char *num_exp, int from_tty)
c906108c 790{
52f0bd74 791 int i;
f23631e4 792 struct value *val;
c906108c
SS
793 static int num = 1;
794
795 if (num_exp)
796 {
f132ba9d
TJB
797 /* "show values +" should print from the stored position.
798 "show values <exp>" should print around value number <exp>. */
c906108c 799 if (num_exp[0] != '+' || num_exp[1] != '\0')
bb518678 800 num = parse_and_eval_long (num_exp) - 5;
c906108c
SS
801 }
802 else
803 {
f132ba9d 804 /* "show values" means print the last 10 values. */
c906108c
SS
805 num = value_history_count - 9;
806 }
807
808 if (num <= 0)
809 num = 1;
810
811 for (i = num; i < num + 10 && i <= value_history_count; i++)
812 {
79a45b7d 813 struct value_print_options opts;
c906108c 814 val = access_value_history (i);
a3f17187 815 printf_filtered (("$%d = "), i);
79a45b7d
TT
816 get_user_print_options (&opts);
817 value_print (val, gdb_stdout, &opts);
a3f17187 818 printf_filtered (("\n"));
c906108c
SS
819 }
820
f132ba9d 821 /* The next "show values +" should start after what we just printed. */
c906108c
SS
822 num += 10;
823
824 /* Hitting just return after this command should do the same thing as
f132ba9d
TJB
825 "show values +". If num_exp is null, this is unnecessary, since
826 "show values +" is not useful after "show values". */
c906108c
SS
827 if (from_tty && num_exp)
828 {
829 num_exp[0] = '+';
830 num_exp[1] = '\0';
831 }
832}
833\f
834/* Internal variables. These are variables within the debugger
835 that hold values assigned by debugger commands.
836 The user refers to them with a '$' prefix
837 that does not appear in the variable names stored internally. */
838
839static struct internalvar *internalvars;
840
53e5f3cf
AS
841/* If the variable does not already exist create it and give it the value given.
842 If no value is given then the default is zero. */
843static void
844init_if_undefined_command (char* args, int from_tty)
845{
846 struct internalvar* intvar;
847
848 /* Parse the expression - this is taken from set_command(). */
849 struct expression *expr = parse_expression (args);
850 register struct cleanup *old_chain =
851 make_cleanup (free_current_contents, &expr);
852
853 /* Validate the expression.
854 Was the expression an assignment?
855 Or even an expression at all? */
856 if (expr->nelts == 0 || expr->elts[0].opcode != BINOP_ASSIGN)
857 error (_("Init-if-undefined requires an assignment expression."));
858
859 /* Extract the variable from the parsed expression.
860 In the case of an assign the lvalue will be in elts[1] and elts[2]. */
861 if (expr->elts[1].opcode != OP_INTERNALVAR)
862 error (_("The first parameter to init-if-undefined should be a GDB variable."));
863 intvar = expr->elts[2].internalvar;
864
865 /* Only evaluate the expression if the lvalue is void.
866 This may still fail if the expresssion is invalid. */
867 if (TYPE_CODE (value_type (intvar->value)) == TYPE_CODE_VOID)
868 evaluate_expression (expr);
869
870 do_cleanups (old_chain);
871}
872
873
c906108c
SS
874/* Look up an internal variable with name NAME. NAME should not
875 normally include a dollar sign.
876
877 If the specified internal variable does not exist,
c4a3d09a 878 the return value is NULL. */
c906108c
SS
879
880struct internalvar *
c4a3d09a 881lookup_only_internalvar (char *name)
c906108c 882{
52f0bd74 883 struct internalvar *var;
c906108c
SS
884
885 for (var = internalvars; var; var = var->next)
5cb316ef 886 if (strcmp (var->name, name) == 0)
c906108c
SS
887 return var;
888
c4a3d09a
MF
889 return NULL;
890}
891
892
893/* Create an internal variable with name NAME and with a void value.
894 NAME should not normally include a dollar sign. */
895
896struct internalvar *
897create_internalvar (char *name)
898{
899 struct internalvar *var;
c906108c 900 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
1754f103 901 var->name = concat (name, (char *)NULL);
c906108c 902 var->value = allocate_value (builtin_type_void);
0d20ae72 903 var->endian = gdbarch_byte_order (current_gdbarch);
4aa995e1 904 var->make_value = NULL;
c906108c
SS
905 release_value (var->value);
906 var->next = internalvars;
907 internalvars = var;
908 return var;
909}
910
4aa995e1
PA
911/* Create an internal variable with name NAME and register FUN as the
912 function that value_of_internalvar uses to create a value whenever
913 this variable is referenced. NAME should not normally include a
914 dollar sign. */
915
916struct internalvar *
917create_internalvar_type_lazy (char *name, internalvar_make_value fun)
918{
919 struct internalvar *var;
920 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
921 var->name = concat (name, (char *)NULL);
922 var->value = NULL;
923 var->make_value = fun;
924 var->endian = gdbarch_byte_order (current_gdbarch);
925 var->next = internalvars;
926 internalvars = var;
927 return var;
928}
c4a3d09a
MF
929
930/* Look up an internal variable with name NAME. NAME should not
931 normally include a dollar sign.
932
933 If the specified internal variable does not exist,
934 one is created, with a void value. */
935
936struct internalvar *
937lookup_internalvar (char *name)
938{
939 struct internalvar *var;
940
941 var = lookup_only_internalvar (name);
942 if (var)
943 return var;
944
945 return create_internalvar (name);
946}
947
f23631e4 948struct value *
fba45db2 949value_of_internalvar (struct internalvar *var)
c906108c 950{
f23631e4 951 struct value *val;
d3c139e9
AS
952 int i, j;
953 gdb_byte temp;
c906108c 954
4aa995e1
PA
955 if (var->make_value != NULL)
956 val = (*var->make_value) (var);
5f5233d4
PA
957 else
958 {
4aa995e1
PA
959 val = value_copy (var->value);
960 if (value_lazy (val))
961 value_fetch_lazy (val);
962
963 /* If the variable's value is a computed lvalue, we want
964 references to it to produce another computed lvalue, where
965 referencces and assignments actually operate through the
966 computed value's functions.
967
968 This means that internal variables with computed values
969 behave a little differently from other internal variables:
970 assignments to them don't just replace the previous value
971 altogether. At the moment, this seems like the behavior we
972 want. */
973 if (var->value->lval == lval_computed)
974 VALUE_LVAL (val) = lval_computed;
975 else
976 {
977 VALUE_LVAL (val) = lval_internalvar;
978 VALUE_INTERNALVAR (val) = var;
979 }
5f5233d4 980 }
d3c139e9
AS
981
982 /* Values are always stored in the target's byte order. When connected to a
983 target this will most likely always be correct, so there's normally no
984 need to worry about it.
985
986 However, internal variables can be set up before the target endian is
987 known and so may become out of date. Fix it up before anybody sees.
988
989 Internal variables usually hold simple scalar values, and we can
990 correct those. More complex values (e.g. structures and floating
991 point types) are left alone, because they would be too complicated
992 to correct. */
993
0d20ae72 994 if (var->endian != gdbarch_byte_order (current_gdbarch))
d3c139e9
AS
995 {
996 gdb_byte *array = value_contents_raw (val);
997 struct type *type = check_typedef (value_enclosing_type (val));
998 switch (TYPE_CODE (type))
999 {
1000 case TYPE_CODE_INT:
1001 case TYPE_CODE_PTR:
1002 /* Reverse the bytes. */
1003 for (i = 0, j = TYPE_LENGTH (type) - 1; i < j; i++, j--)
1004 {
1005 temp = array[j];
1006 array[j] = array[i];
1007 array[i] = temp;
1008 }
1009 break;
1010 }
1011 }
1012
c906108c
SS
1013 return val;
1014}
1015
1016void
fba45db2 1017set_internalvar_component (struct internalvar *var, int offset, int bitpos,
f23631e4 1018 int bitsize, struct value *newval)
c906108c 1019{
fc1a4b47 1020 gdb_byte *addr = value_contents_writeable (var->value) + offset;
c906108c 1021
c906108c
SS
1022 if (bitsize)
1023 modify_field (addr, value_as_long (newval),
1024 bitpos, bitsize);
1025 else
0fd88904 1026 memcpy (addr, value_contents (newval), TYPE_LENGTH (value_type (newval)));
c906108c
SS
1027}
1028
1029void
f23631e4 1030set_internalvar (struct internalvar *var, struct value *val)
c906108c 1031{
f23631e4 1032 struct value *newval;
c906108c 1033
c906108c
SS
1034 newval = value_copy (val);
1035 newval->modifiable = 1;
1036
1037 /* Force the value to be fetched from the target now, to avoid problems
1038 later when this internalvar is referenced and the target is gone or
1039 has changed. */
d69fe07e 1040 if (value_lazy (newval))
c906108c
SS
1041 value_fetch_lazy (newval);
1042
1043 /* Begin code which must not call error(). If var->value points to
1044 something free'd, an error() obviously leaves a dangling pointer.
1045 But we also get a danling pointer if var->value points to
1046 something in the value chain (i.e., before release_value is
1047 called), because after the error free_all_values will get called before
1048 long. */
170ce852 1049 value_free (var->value);
c906108c 1050 var->value = newval;
0d20ae72 1051 var->endian = gdbarch_byte_order (current_gdbarch);
c906108c
SS
1052 release_value (newval);
1053 /* End code which must not call error(). */
1054}
1055
1056char *
fba45db2 1057internalvar_name (struct internalvar *var)
c906108c
SS
1058{
1059 return var->name;
1060}
1061
ae5a43e0
DJ
1062/* Update VALUE before discarding OBJFILE. COPIED_TYPES is used to
1063 prevent cycles / duplicates. */
1064
1065static void
1066preserve_one_value (struct value *value, struct objfile *objfile,
1067 htab_t copied_types)
1068{
1069 if (TYPE_OBJFILE (value->type) == objfile)
1070 value->type = copy_type_recursive (objfile, value->type, copied_types);
1071
1072 if (TYPE_OBJFILE (value->enclosing_type) == objfile)
1073 value->enclosing_type = copy_type_recursive (objfile,
1074 value->enclosing_type,
1075 copied_types);
1076}
1077
1078/* Update the internal variables and value history when OBJFILE is
1079 discarded; we must copy the types out of the objfile. New global types
1080 will be created for every convenience variable which currently points to
1081 this objfile's types, and the convenience variables will be adjusted to
1082 use the new global types. */
c906108c
SS
1083
1084void
ae5a43e0 1085preserve_values (struct objfile *objfile)
c906108c 1086{
ae5a43e0
DJ
1087 htab_t copied_types;
1088 struct value_history_chunk *cur;
52f0bd74 1089 struct internalvar *var;
a08702d6 1090 struct value *val;
ae5a43e0 1091 int i;
c906108c 1092
ae5a43e0
DJ
1093 /* Create the hash table. We allocate on the objfile's obstack, since
1094 it is soon to be deleted. */
1095 copied_types = create_copied_types_hash (objfile);
1096
1097 for (cur = value_history_chain; cur; cur = cur->next)
1098 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
1099 if (cur->values[i])
1100 preserve_one_value (cur->values[i], objfile, copied_types);
1101
1102 for (var = internalvars; var; var = var->next)
4aa995e1
PA
1103 if (var->value)
1104 preserve_one_value (var->value, objfile, copied_types);
ae5a43e0 1105
a08702d6
TJB
1106 for (val = values_in_python; val; val = val->next)
1107 preserve_one_value (val, objfile, copied_types);
1108
ae5a43e0 1109 htab_delete (copied_types);
c906108c
SS
1110}
1111
1112static void
fba45db2 1113show_convenience (char *ignore, int from_tty)
c906108c 1114{
52f0bd74 1115 struct internalvar *var;
c906108c 1116 int varseen = 0;
79a45b7d 1117 struct value_print_options opts;
c906108c 1118
79a45b7d 1119 get_user_print_options (&opts);
c906108c
SS
1120 for (var = internalvars; var; var = var->next)
1121 {
c906108c
SS
1122 if (!varseen)
1123 {
1124 varseen = 1;
1125 }
a3f17187 1126 printf_filtered (("$%s = "), var->name);
d3c139e9 1127 value_print (value_of_internalvar (var), gdb_stdout,
79a45b7d 1128 &opts);
a3f17187 1129 printf_filtered (("\n"));
c906108c
SS
1130 }
1131 if (!varseen)
a3f17187
AC
1132 printf_unfiltered (_("\
1133No debugger convenience variables now defined.\n\
c906108c 1134Convenience variables have names starting with \"$\";\n\
a3f17187 1135use \"set\" as in \"set $foo = 5\" to define them.\n"));
c906108c
SS
1136}
1137\f
1138/* Extract a value as a C number (either long or double).
1139 Knows how to convert fixed values to double, or
1140 floating values to long.
1141 Does not deallocate the value. */
1142
1143LONGEST
f23631e4 1144value_as_long (struct value *val)
c906108c
SS
1145{
1146 /* This coerces arrays and functions, which is necessary (e.g.
1147 in disassemble_command). It also dereferences references, which
1148 I suspect is the most logical thing to do. */
994b9211 1149 val = coerce_array (val);
0fd88904 1150 return unpack_long (value_type (val), value_contents (val));
c906108c
SS
1151}
1152
1153DOUBLEST
f23631e4 1154value_as_double (struct value *val)
c906108c
SS
1155{
1156 DOUBLEST foo;
1157 int inv;
c5aa993b 1158
0fd88904 1159 foo = unpack_double (value_type (val), value_contents (val), &inv);
c906108c 1160 if (inv)
8a3fe4f8 1161 error (_("Invalid floating value found in program."));
c906108c
SS
1162 return foo;
1163}
4ef30785 1164
4478b372
JB
1165/* Extract a value as a C pointer. Does not deallocate the value.
1166 Note that val's type may not actually be a pointer; value_as_long
1167 handles all the cases. */
c906108c 1168CORE_ADDR
f23631e4 1169value_as_address (struct value *val)
c906108c
SS
1170{
1171 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
1172 whether we want this to be true eventually. */
1173#if 0
bf6ae464 1174 /* gdbarch_addr_bits_remove is wrong if we are being called for a
c906108c
SS
1175 non-address (e.g. argument to "signal", "info break", etc.), or
1176 for pointers to char, in which the low bits *are* significant. */
bf6ae464 1177 return gdbarch_addr_bits_remove (current_gdbarch, value_as_long (val));
c906108c 1178#else
f312f057
JB
1179
1180 /* There are several targets (IA-64, PowerPC, and others) which
1181 don't represent pointers to functions as simply the address of
1182 the function's entry point. For example, on the IA-64, a
1183 function pointer points to a two-word descriptor, generated by
1184 the linker, which contains the function's entry point, and the
1185 value the IA-64 "global pointer" register should have --- to
1186 support position-independent code. The linker generates
1187 descriptors only for those functions whose addresses are taken.
1188
1189 On such targets, it's difficult for GDB to convert an arbitrary
1190 function address into a function pointer; it has to either find
1191 an existing descriptor for that function, or call malloc and
1192 build its own. On some targets, it is impossible for GDB to
1193 build a descriptor at all: the descriptor must contain a jump
1194 instruction; data memory cannot be executed; and code memory
1195 cannot be modified.
1196
1197 Upon entry to this function, if VAL is a value of type `function'
1198 (that is, TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC), then
1199 VALUE_ADDRESS (val) is the address of the function. This is what
1200 you'll get if you evaluate an expression like `main'. The call
1201 to COERCE_ARRAY below actually does all the usual unary
1202 conversions, which includes converting values of type `function'
1203 to `pointer to function'. This is the challenging conversion
1204 discussed above. Then, `unpack_long' will convert that pointer
1205 back into an address.
1206
1207 So, suppose the user types `disassemble foo' on an architecture
1208 with a strange function pointer representation, on which GDB
1209 cannot build its own descriptors, and suppose further that `foo'
1210 has no linker-built descriptor. The address->pointer conversion
1211 will signal an error and prevent the command from running, even
1212 though the next step would have been to convert the pointer
1213 directly back into the same address.
1214
1215 The following shortcut avoids this whole mess. If VAL is a
1216 function, just return its address directly. */
df407dfe
AC
1217 if (TYPE_CODE (value_type (val)) == TYPE_CODE_FUNC
1218 || TYPE_CODE (value_type (val)) == TYPE_CODE_METHOD)
f312f057
JB
1219 return VALUE_ADDRESS (val);
1220
994b9211 1221 val = coerce_array (val);
fc0c74b1
AC
1222
1223 /* Some architectures (e.g. Harvard), map instruction and data
1224 addresses onto a single large unified address space. For
1225 instance: An architecture may consider a large integer in the
1226 range 0x10000000 .. 0x1000ffff to already represent a data
1227 addresses (hence not need a pointer to address conversion) while
1228 a small integer would still need to be converted integer to
1229 pointer to address. Just assume such architectures handle all
1230 integer conversions in a single function. */
1231
1232 /* JimB writes:
1233
1234 I think INTEGER_TO_ADDRESS is a good idea as proposed --- but we
1235 must admonish GDB hackers to make sure its behavior matches the
1236 compiler's, whenever possible.
1237
1238 In general, I think GDB should evaluate expressions the same way
1239 the compiler does. When the user copies an expression out of
1240 their source code and hands it to a `print' command, they should
1241 get the same value the compiler would have computed. Any
1242 deviation from this rule can cause major confusion and annoyance,
1243 and needs to be justified carefully. In other words, GDB doesn't
1244 really have the freedom to do these conversions in clever and
1245 useful ways.
1246
1247 AndrewC pointed out that users aren't complaining about how GDB
1248 casts integers to pointers; they are complaining that they can't
1249 take an address from a disassembly listing and give it to `x/i'.
1250 This is certainly important.
1251
79dd2d24 1252 Adding an architecture method like integer_to_address() certainly
fc0c74b1
AC
1253 makes it possible for GDB to "get it right" in all circumstances
1254 --- the target has complete control over how things get done, so
1255 people can Do The Right Thing for their target without breaking
1256 anyone else. The standard doesn't specify how integers get
1257 converted to pointers; usually, the ABI doesn't either, but
1258 ABI-specific code is a more reasonable place to handle it. */
1259
df407dfe
AC
1260 if (TYPE_CODE (value_type (val)) != TYPE_CODE_PTR
1261 && TYPE_CODE (value_type (val)) != TYPE_CODE_REF
79dd2d24
AC
1262 && gdbarch_integer_to_address_p (current_gdbarch))
1263 return gdbarch_integer_to_address (current_gdbarch, value_type (val),
0fd88904 1264 value_contents (val));
fc0c74b1 1265
0fd88904 1266 return unpack_long (value_type (val), value_contents (val));
c906108c
SS
1267#endif
1268}
1269\f
1270/* Unpack raw data (copied from debugee, target byte order) at VALADDR
1271 as a long, or as a double, assuming the raw data is described
1272 by type TYPE. Knows how to convert different sizes of values
1273 and can convert between fixed and floating point. We don't assume
1274 any alignment for the raw data. Return value is in host byte order.
1275
1276 If you want functions and arrays to be coerced to pointers, and
1277 references to be dereferenced, call value_as_long() instead.
1278
1279 C++: It is assumed that the front-end has taken care of
1280 all matters concerning pointers to members. A pointer
1281 to member which reaches here is considered to be equivalent
1282 to an INT (or some size). After all, it is only an offset. */
1283
1284LONGEST
fc1a4b47 1285unpack_long (struct type *type, const gdb_byte *valaddr)
c906108c 1286{
52f0bd74
AC
1287 enum type_code code = TYPE_CODE (type);
1288 int len = TYPE_LENGTH (type);
1289 int nosign = TYPE_UNSIGNED (type);
c906108c 1290
c906108c
SS
1291 switch (code)
1292 {
1293 case TYPE_CODE_TYPEDEF:
1294 return unpack_long (check_typedef (type), valaddr);
1295 case TYPE_CODE_ENUM:
4f2aea11 1296 case TYPE_CODE_FLAGS:
c906108c
SS
1297 case TYPE_CODE_BOOL:
1298 case TYPE_CODE_INT:
1299 case TYPE_CODE_CHAR:
1300 case TYPE_CODE_RANGE:
0d5de010 1301 case TYPE_CODE_MEMBERPTR:
c906108c
SS
1302 if (nosign)
1303 return extract_unsigned_integer (valaddr, len);
1304 else
1305 return extract_signed_integer (valaddr, len);
1306
1307 case TYPE_CODE_FLT:
96d2f608 1308 return extract_typed_floating (valaddr, type);
c906108c 1309
4ef30785
TJB
1310 case TYPE_CODE_DECFLOAT:
1311 /* libdecnumber has a function to convert from decimal to integer, but
1312 it doesn't work when the decimal number has a fractional part. */
ba759613 1313 return decimal_to_doublest (valaddr, len);
4ef30785 1314
c906108c
SS
1315 case TYPE_CODE_PTR:
1316 case TYPE_CODE_REF:
1317 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
c5aa993b 1318 whether we want this to be true eventually. */
4478b372 1319 return extract_typed_address (valaddr, type);
c906108c 1320
c906108c 1321 default:
8a3fe4f8 1322 error (_("Value can't be converted to integer."));
c906108c 1323 }
c5aa993b 1324 return 0; /* Placate lint. */
c906108c
SS
1325}
1326
1327/* Return a double value from the specified type and address.
1328 INVP points to an int which is set to 0 for valid value,
1329 1 for invalid value (bad float format). In either case,
1330 the returned double is OK to use. Argument is in target
1331 format, result is in host format. */
1332
1333DOUBLEST
fc1a4b47 1334unpack_double (struct type *type, const gdb_byte *valaddr, int *invp)
c906108c
SS
1335{
1336 enum type_code code;
1337 int len;
1338 int nosign;
1339
1340 *invp = 0; /* Assume valid. */
1341 CHECK_TYPEDEF (type);
1342 code = TYPE_CODE (type);
1343 len = TYPE_LENGTH (type);
1344 nosign = TYPE_UNSIGNED (type);
1345 if (code == TYPE_CODE_FLT)
1346 {
75bc7ddf
AC
1347 /* NOTE: cagney/2002-02-19: There was a test here to see if the
1348 floating-point value was valid (using the macro
1349 INVALID_FLOAT). That test/macro have been removed.
1350
1351 It turns out that only the VAX defined this macro and then
1352 only in a non-portable way. Fixing the portability problem
1353 wouldn't help since the VAX floating-point code is also badly
1354 bit-rotten. The target needs to add definitions for the
ea06eb3d 1355 methods gdbarch_float_format and gdbarch_double_format - these
75bc7ddf
AC
1356 exactly describe the target floating-point format. The
1357 problem here is that the corresponding floatformat_vax_f and
1358 floatformat_vax_d values these methods should be set to are
1359 also not defined either. Oops!
1360
1361 Hopefully someone will add both the missing floatformat
ac79b88b
DJ
1362 definitions and the new cases for floatformat_is_valid (). */
1363
1364 if (!floatformat_is_valid (floatformat_from_type (type), valaddr))
1365 {
1366 *invp = 1;
1367 return 0.0;
1368 }
1369
96d2f608 1370 return extract_typed_floating (valaddr, type);
c906108c 1371 }
4ef30785 1372 else if (code == TYPE_CODE_DECFLOAT)
ba759613 1373 return decimal_to_doublest (valaddr, len);
c906108c
SS
1374 else if (nosign)
1375 {
1376 /* Unsigned -- be sure we compensate for signed LONGEST. */
c906108c 1377 return (ULONGEST) unpack_long (type, valaddr);
c906108c
SS
1378 }
1379 else
1380 {
1381 /* Signed -- we are OK with unpack_long. */
1382 return unpack_long (type, valaddr);
1383 }
1384}
1385
1386/* Unpack raw data (copied from debugee, target byte order) at VALADDR
1387 as a CORE_ADDR, assuming the raw data is described by type TYPE.
1388 We don't assume any alignment for the raw data. Return value is in
1389 host byte order.
1390
1391 If you want functions and arrays to be coerced to pointers, and
1aa20aa8 1392 references to be dereferenced, call value_as_address() instead.
c906108c
SS
1393
1394 C++: It is assumed that the front-end has taken care of
1395 all matters concerning pointers to members. A pointer
1396 to member which reaches here is considered to be equivalent
1397 to an INT (or some size). After all, it is only an offset. */
1398
1399CORE_ADDR
fc1a4b47 1400unpack_pointer (struct type *type, const gdb_byte *valaddr)
c906108c
SS
1401{
1402 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
1403 whether we want this to be true eventually. */
1404 return unpack_long (type, valaddr);
1405}
4478b372 1406
c906108c 1407\f
2c2738a0
DC
1408/* Get the value of the FIELDN'th field (which must be static) of
1409 TYPE. Return NULL if the field doesn't exist or has been
1410 optimized out. */
c906108c 1411
f23631e4 1412struct value *
fba45db2 1413value_static_field (struct type *type, int fieldno)
c906108c 1414{
948e66d9
DJ
1415 struct value *retval;
1416
d6a843b5 1417 if (TYPE_FIELD_LOC_KIND (type, fieldno) == FIELD_LOC_KIND_PHYSADDR)
c906108c 1418 {
948e66d9 1419 retval = value_at (TYPE_FIELD_TYPE (type, fieldno),
00a4c844 1420 TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
c906108c
SS
1421 }
1422 else
1423 {
1424 char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
2570f2b7 1425 struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
948e66d9 1426 if (sym == NULL)
c906108c
SS
1427 {
1428 /* With some compilers, e.g. HP aCC, static data members are reported
c5aa993b
JM
1429 as non-debuggable symbols */
1430 struct minimal_symbol *msym = lookup_minimal_symbol (phys_name, NULL, NULL);
c906108c
SS
1431 if (!msym)
1432 return NULL;
1433 else
c5aa993b 1434 {
948e66d9 1435 retval = value_at (TYPE_FIELD_TYPE (type, fieldno),
00a4c844 1436 SYMBOL_VALUE_ADDRESS (msym));
c906108c
SS
1437 }
1438 }
1439 else
1440 {
948e66d9
DJ
1441 /* SYM should never have a SYMBOL_CLASS which will require
1442 read_var_value to use the FRAME parameter. */
1443 if (symbol_read_needs_frame (sym))
8a3fe4f8
AC
1444 warning (_("static field's value depends on the current "
1445 "frame - bad debug info?"));
948e66d9 1446 retval = read_var_value (sym, NULL);
2b127877 1447 }
948e66d9
DJ
1448 if (retval && VALUE_LVAL (retval) == lval_memory)
1449 SET_FIELD_PHYSADDR (TYPE_FIELD (type, fieldno),
1450 VALUE_ADDRESS (retval));
c906108c 1451 }
948e66d9 1452 return retval;
c906108c
SS
1453}
1454
2b127877
DB
1455/* Change the enclosing type of a value object VAL to NEW_ENCL_TYPE.
1456 You have to be careful here, since the size of the data area for the value
1457 is set by the length of the enclosing type. So if NEW_ENCL_TYPE is bigger
1458 than the old enclosing type, you have to allocate more space for the data.
1459 The return value is a pointer to the new version of this value structure. */
1460
f23631e4
AC
1461struct value *
1462value_change_enclosing_type (struct value *val, struct type *new_encl_type)
2b127877 1463{
3e3d7139
JG
1464 if (TYPE_LENGTH (new_encl_type) > TYPE_LENGTH (value_enclosing_type (val)))
1465 val->contents =
1466 (gdb_byte *) xrealloc (val->contents, TYPE_LENGTH (new_encl_type));
1467
1468 val->enclosing_type = new_encl_type;
1469 return val;
2b127877
DB
1470}
1471
c906108c
SS
1472/* Given a value ARG1 (offset by OFFSET bytes)
1473 of a struct or union type ARG_TYPE,
1474 extract and return the value of one of its (non-static) fields.
1475 FIELDNO says which field. */
1476
f23631e4
AC
1477struct value *
1478value_primitive_field (struct value *arg1, int offset,
aa1ee363 1479 int fieldno, struct type *arg_type)
c906108c 1480{
f23631e4 1481 struct value *v;
52f0bd74 1482 struct type *type;
c906108c
SS
1483
1484 CHECK_TYPEDEF (arg_type);
1485 type = TYPE_FIELD_TYPE (arg_type, fieldno);
1486
1487 /* Handle packed fields */
1488
1489 if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
1490 {
1491 v = value_from_longest (type,
1492 unpack_field_as_long (arg_type,
0fd88904 1493 value_contents (arg1)
c5aa993b 1494 + offset,
c906108c 1495 fieldno));
df407dfe
AC
1496 v->bitpos = TYPE_FIELD_BITPOS (arg_type, fieldno) % 8;
1497 v->bitsize = TYPE_FIELD_BITSIZE (arg_type, fieldno);
1498 v->offset = value_offset (arg1) + offset
2e70b7b9 1499 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
c906108c
SS
1500 }
1501 else if (fieldno < TYPE_N_BASECLASSES (arg_type))
1502 {
1503 /* This field is actually a base subobject, so preserve the
1504 entire object's contents for later references to virtual
1505 bases, etc. */
a4e2ee12
DJ
1506
1507 /* Lazy register values with offsets are not supported. */
1508 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
1509 value_fetch_lazy (arg1);
1510
1511 if (value_lazy (arg1))
3e3d7139 1512 v = allocate_value_lazy (value_enclosing_type (arg1));
c906108c 1513 else
3e3d7139
JG
1514 {
1515 v = allocate_value (value_enclosing_type (arg1));
1516 memcpy (value_contents_all_raw (v), value_contents_all_raw (arg1),
1517 TYPE_LENGTH (value_enclosing_type (arg1)));
1518 }
1519 v->type = type;
df407dfe 1520 v->offset = value_offset (arg1);
13c3b5f5
AC
1521 v->embedded_offset = (offset + value_embedded_offset (arg1)
1522 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8);
c906108c
SS
1523 }
1524 else
1525 {
1526 /* Plain old data member */
1527 offset += TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
a4e2ee12
DJ
1528
1529 /* Lazy register values with offsets are not supported. */
1530 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
1531 value_fetch_lazy (arg1);
1532
1533 if (value_lazy (arg1))
3e3d7139 1534 v = allocate_value_lazy (type);
c906108c 1535 else
3e3d7139
JG
1536 {
1537 v = allocate_value (type);
1538 memcpy (value_contents_raw (v),
1539 value_contents_raw (arg1) + offset,
1540 TYPE_LENGTH (type));
1541 }
df407dfe 1542 v->offset = (value_offset (arg1) + offset
13c3b5f5 1543 + value_embedded_offset (arg1));
c906108c 1544 }
74bcbdf3 1545 set_value_component_location (v, arg1);
9ee8fc9d 1546 VALUE_REGNUM (v) = VALUE_REGNUM (arg1);
0c16dd26 1547 VALUE_FRAME_ID (v) = VALUE_FRAME_ID (arg1);
c906108c
SS
1548 return v;
1549}
1550
1551/* Given a value ARG1 of a struct or union type,
1552 extract and return the value of one of its (non-static) fields.
1553 FIELDNO says which field. */
1554
f23631e4 1555struct value *
aa1ee363 1556value_field (struct value *arg1, int fieldno)
c906108c 1557{
df407dfe 1558 return value_primitive_field (arg1, 0, fieldno, value_type (arg1));
c906108c
SS
1559}
1560
1561/* Return a non-virtual function as a value.
1562 F is the list of member functions which contains the desired method.
0478d61c
FF
1563 J is an index into F which provides the desired method.
1564
1565 We only use the symbol for its address, so be happy with either a
1566 full symbol or a minimal symbol.
1567 */
c906108c 1568
f23631e4
AC
1569struct value *
1570value_fn_field (struct value **arg1p, struct fn_field *f, int j, struct type *type,
fba45db2 1571 int offset)
c906108c 1572{
f23631e4 1573 struct value *v;
52f0bd74 1574 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
0478d61c 1575 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
c906108c 1576 struct symbol *sym;
0478d61c 1577 struct minimal_symbol *msym;
c906108c 1578
2570f2b7 1579 sym = lookup_symbol (physname, 0, VAR_DOMAIN, 0);
5ae326fa 1580 if (sym != NULL)
0478d61c 1581 {
5ae326fa
AC
1582 msym = NULL;
1583 }
1584 else
1585 {
1586 gdb_assert (sym == NULL);
0478d61c 1587 msym = lookup_minimal_symbol (physname, NULL, NULL);
5ae326fa
AC
1588 if (msym == NULL)
1589 return NULL;
0478d61c
FF
1590 }
1591
c906108c 1592 v = allocate_value (ftype);
0478d61c
FF
1593 if (sym)
1594 {
1595 VALUE_ADDRESS (v) = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
1596 }
1597 else
1598 {
bccdca4a
UW
1599 /* The minimal symbol might point to a function descriptor;
1600 resolve it to the actual code address instead. */
1601 struct objfile *objfile = msymbol_objfile (msym);
1602 struct gdbarch *gdbarch = get_objfile_arch (objfile);
1603
1604 VALUE_ADDRESS (v)
1605 = gdbarch_convert_from_func_ptr_addr
1606 (gdbarch, SYMBOL_VALUE_ADDRESS (msym), &current_target);
0478d61c 1607 }
c906108c
SS
1608
1609 if (arg1p)
c5aa993b 1610 {
df407dfe 1611 if (type != value_type (*arg1p))
c5aa993b
JM
1612 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
1613 value_addr (*arg1p)));
1614
070ad9f0 1615 /* Move the `this' pointer according to the offset.
c5aa993b
JM
1616 VALUE_OFFSET (*arg1p) += offset;
1617 */
c906108c
SS
1618 }
1619
1620 return v;
1621}
1622
c906108c
SS
1623\f
1624/* Unpack a field FIELDNO of the specified TYPE, from the anonymous object at
1625 VALADDR.
1626
1627 Extracting bits depends on endianness of the machine. Compute the
1628 number of least significant bits to discard. For big endian machines,
1629 we compute the total number of bits in the anonymous object, subtract
1630 off the bit count from the MSB of the object to the MSB of the
1631 bitfield, then the size of the bitfield, which leaves the LSB discard
1632 count. For little endian machines, the discard count is simply the
1633 number of bits from the LSB of the anonymous object to the LSB of the
1634 bitfield.
1635
1636 If the field is signed, we also do sign extension. */
1637
1638LONGEST
fc1a4b47 1639unpack_field_as_long (struct type *type, const gdb_byte *valaddr, int fieldno)
c906108c
SS
1640{
1641 ULONGEST val;
1642 ULONGEST valmask;
1643 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
1644 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
1645 int lsbcount;
1646 struct type *field_type;
1647
1648 val = extract_unsigned_integer (valaddr + bitpos / 8, sizeof (val));
1649 field_type = TYPE_FIELD_TYPE (type, fieldno);
1650 CHECK_TYPEDEF (field_type);
1651
1652 /* Extract bits. See comment above. */
1653
32c9a795 1654 if (gdbarch_bits_big_endian (current_gdbarch))
c906108c
SS
1655 lsbcount = (sizeof val * 8 - bitpos % 8 - bitsize);
1656 else
1657 lsbcount = (bitpos % 8);
1658 val >>= lsbcount;
1659
1660 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
1661 If the field is signed, and is negative, then sign extend. */
1662
1663 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
1664 {
1665 valmask = (((ULONGEST) 1) << bitsize) - 1;
1666 val &= valmask;
1667 if (!TYPE_UNSIGNED (field_type))
1668 {
1669 if (val & (valmask ^ (valmask >> 1)))
1670 {
1671 val |= ~valmask;
1672 }
1673 }
1674 }
1675 return (val);
1676}
1677
1678/* Modify the value of a bitfield. ADDR points to a block of memory in
1679 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
1680 is the desired value of the field, in host byte order. BITPOS and BITSIZE
f4e88c8e
PH
1681 indicate which bits (in target bit order) comprise the bitfield.
1682 Requires 0 < BITSIZE <= lbits, 0 <= BITPOS+BITSIZE <= lbits, and
1683 0 <= BITPOS, where lbits is the size of a LONGEST in bits. */
c906108c
SS
1684
1685void
fc1a4b47 1686modify_field (gdb_byte *addr, LONGEST fieldval, int bitpos, int bitsize)
c906108c 1687{
f4e88c8e
PH
1688 ULONGEST oword;
1689 ULONGEST mask = (ULONGEST) -1 >> (8 * sizeof (ULONGEST) - bitsize);
c906108c
SS
1690
1691 /* If a negative fieldval fits in the field in question, chop
1692 off the sign extension bits. */
f4e88c8e
PH
1693 if ((~fieldval & ~(mask >> 1)) == 0)
1694 fieldval &= mask;
c906108c
SS
1695
1696 /* Warn if value is too big to fit in the field in question. */
f4e88c8e 1697 if (0 != (fieldval & ~mask))
c906108c
SS
1698 {
1699 /* FIXME: would like to include fieldval in the message, but
c5aa993b 1700 we don't have a sprintf_longest. */
8a3fe4f8 1701 warning (_("Value does not fit in %d bits."), bitsize);
c906108c
SS
1702
1703 /* Truncate it, otherwise adjoining fields may be corrupted. */
f4e88c8e 1704 fieldval &= mask;
c906108c
SS
1705 }
1706
f4e88c8e 1707 oword = extract_unsigned_integer (addr, sizeof oword);
c906108c
SS
1708
1709 /* Shifting for bit field depends on endianness of the target machine. */
32c9a795 1710 if (gdbarch_bits_big_endian (current_gdbarch))
c906108c
SS
1711 bitpos = sizeof (oword) * 8 - bitpos - bitsize;
1712
f4e88c8e 1713 oword &= ~(mask << bitpos);
c906108c
SS
1714 oword |= fieldval << bitpos;
1715
f4e88c8e 1716 store_unsigned_integer (addr, sizeof oword, oword);
c906108c
SS
1717}
1718\f
14d06750 1719/* Pack NUM into BUF using a target format of TYPE. */
c906108c 1720
14d06750
DJ
1721void
1722pack_long (gdb_byte *buf, struct type *type, LONGEST num)
c906108c 1723{
52f0bd74 1724 int len;
14d06750
DJ
1725
1726 type = check_typedef (type);
c906108c
SS
1727 len = TYPE_LENGTH (type);
1728
14d06750 1729 switch (TYPE_CODE (type))
c906108c 1730 {
c906108c
SS
1731 case TYPE_CODE_INT:
1732 case TYPE_CODE_CHAR:
1733 case TYPE_CODE_ENUM:
4f2aea11 1734 case TYPE_CODE_FLAGS:
c906108c
SS
1735 case TYPE_CODE_BOOL:
1736 case TYPE_CODE_RANGE:
0d5de010 1737 case TYPE_CODE_MEMBERPTR:
14d06750 1738 store_signed_integer (buf, len, num);
c906108c 1739 break;
c5aa993b 1740
c906108c
SS
1741 case TYPE_CODE_REF:
1742 case TYPE_CODE_PTR:
14d06750 1743 store_typed_address (buf, type, (CORE_ADDR) num);
c906108c 1744 break;
c5aa993b 1745
c906108c 1746 default:
14d06750
DJ
1747 error (_("Unexpected type (%d) encountered for integer constant."),
1748 TYPE_CODE (type));
c906108c 1749 }
14d06750
DJ
1750}
1751
1752
1753/* Convert C numbers into newly allocated values. */
1754
1755struct value *
1756value_from_longest (struct type *type, LONGEST num)
1757{
1758 struct value *val = allocate_value (type);
1759
1760 pack_long (value_contents_raw (val), type, num);
1761
c906108c
SS
1762 return val;
1763}
1764
4478b372
JB
1765
1766/* Create a value representing a pointer of type TYPE to the address
1767 ADDR. */
f23631e4 1768struct value *
4478b372
JB
1769value_from_pointer (struct type *type, CORE_ADDR addr)
1770{
f23631e4 1771 struct value *val = allocate_value (type);
990a07ab 1772 store_typed_address (value_contents_raw (val), type, addr);
4478b372
JB
1773 return val;
1774}
1775
1776
0f71a2f6 1777/* Create a value for a string constant to be stored locally
070ad9f0 1778 (not in the inferior's memory space, but in GDB memory).
0f71a2f6
JM
1779 This is analogous to value_from_longest, which also does not
1780 use inferior memory. String shall NOT contain embedded nulls. */
1781
f23631e4 1782struct value *
fba45db2 1783value_from_string (char *ptr)
0f71a2f6 1784{
f23631e4 1785 struct value *val;
c5aa993b 1786 int len = strlen (ptr);
0f71a2f6 1787 int lowbound = current_language->string_lower_bound;
f290d38e
AC
1788 struct type *string_char_type;
1789 struct type *rangetype;
1790 struct type *stringtype;
1791
1792 rangetype = create_range_type ((struct type *) NULL,
6d84d3d8 1793 builtin_type_int32,
f290d38e
AC
1794 lowbound, len + lowbound - 1);
1795 string_char_type = language_string_char_type (current_language,
1796 current_gdbarch);
1797 stringtype = create_array_type ((struct type *) NULL,
1798 string_char_type,
1799 rangetype);
0f71a2f6 1800 val = allocate_value (stringtype);
990a07ab 1801 memcpy (value_contents_raw (val), ptr, len);
0f71a2f6
JM
1802 return val;
1803}
1804
8acb6b92
TT
1805/* Create a value of type TYPE whose contents come from VALADDR, if it
1806 is non-null, and whose memory address (in the inferior) is
1807 ADDRESS. */
1808
1809struct value *
1810value_from_contents_and_address (struct type *type,
1811 const gdb_byte *valaddr,
1812 CORE_ADDR address)
1813{
1814 struct value *v = allocate_value (type);
1815 if (valaddr == NULL)
1816 set_value_lazy (v, 1);
1817 else
1818 memcpy (value_contents_raw (v), valaddr, TYPE_LENGTH (type));
1819 VALUE_ADDRESS (v) = address;
33d502b4 1820 VALUE_LVAL (v) = lval_memory;
8acb6b92
TT
1821 return v;
1822}
1823
f23631e4 1824struct value *
fba45db2 1825value_from_double (struct type *type, DOUBLEST num)
c906108c 1826{
f23631e4 1827 struct value *val = allocate_value (type);
c906108c 1828 struct type *base_type = check_typedef (type);
52f0bd74
AC
1829 enum type_code code = TYPE_CODE (base_type);
1830 int len = TYPE_LENGTH (base_type);
c906108c
SS
1831
1832 if (code == TYPE_CODE_FLT)
1833 {
990a07ab 1834 store_typed_floating (value_contents_raw (val), base_type, num);
c906108c
SS
1835 }
1836 else
8a3fe4f8 1837 error (_("Unexpected type encountered for floating constant."));
c906108c
SS
1838
1839 return val;
1840}
994b9211 1841
27bc4d80 1842struct value *
4ef30785 1843value_from_decfloat (struct type *type, const gdb_byte *dec)
27bc4d80
TJB
1844{
1845 struct value *val = allocate_value (type);
27bc4d80 1846
4ef30785 1847 memcpy (value_contents_raw (val), dec, TYPE_LENGTH (type));
27bc4d80 1848
27bc4d80
TJB
1849 return val;
1850}
1851
994b9211
AC
1852struct value *
1853coerce_ref (struct value *arg)
1854{
df407dfe 1855 struct type *value_type_arg_tmp = check_typedef (value_type (arg));
994b9211
AC
1856 if (TYPE_CODE (value_type_arg_tmp) == TYPE_CODE_REF)
1857 arg = value_at_lazy (TYPE_TARGET_TYPE (value_type_arg_tmp),
df407dfe 1858 unpack_pointer (value_type (arg),
0fd88904 1859 value_contents (arg)));
994b9211
AC
1860 return arg;
1861}
1862
1863struct value *
1864coerce_array (struct value *arg)
1865{
f3134b88
TT
1866 struct type *type;
1867
994b9211 1868 arg = coerce_ref (arg);
f3134b88
TT
1869 type = check_typedef (value_type (arg));
1870
1871 switch (TYPE_CODE (type))
1872 {
1873 case TYPE_CODE_ARRAY:
1874 if (current_language->c_style_arrays)
1875 arg = value_coerce_array (arg);
1876 break;
1877 case TYPE_CODE_FUNC:
1878 arg = value_coerce_function (arg);
1879 break;
1880 }
994b9211
AC
1881 return arg;
1882}
c906108c 1883\f
c906108c 1884
48436ce6
AC
1885/* Return true if the function returning the specified type is using
1886 the convention of returning structures in memory (passing in the
82585c72 1887 address as a hidden first parameter). */
c906108c
SS
1888
1889int
c055b101 1890using_struct_return (struct type *func_type, struct type *value_type)
c906108c 1891{
52f0bd74 1892 enum type_code code = TYPE_CODE (value_type);
c906108c
SS
1893
1894 if (code == TYPE_CODE_ERROR)
8a3fe4f8 1895 error (_("Function return type unknown."));
c906108c 1896
667e784f
AC
1897 if (code == TYPE_CODE_VOID)
1898 /* A void return value is never in memory. See also corresponding
44e5158b 1899 code in "print_return_value". */
667e784f
AC
1900 return 0;
1901
92ad9cd9 1902 /* Probe the architecture for the return-value convention. */
c055b101 1903 return (gdbarch_return_value (current_gdbarch, func_type, value_type,
92ad9cd9 1904 NULL, NULL, NULL)
31db7b6c 1905 != RETURN_VALUE_REGISTER_CONVENTION);
c906108c
SS
1906}
1907
42be36b3
CT
1908/* Set the initialized field in a value struct. */
1909
1910void
1911set_value_initialized (struct value *val, int status)
1912{
1913 val->initialized = status;
1914}
1915
1916/* Return the initialized field in a value struct. */
1917
1918int
1919value_initialized (struct value *val)
1920{
1921 return val->initialized;
1922}
1923
c906108c 1924void
fba45db2 1925_initialize_values (void)
c906108c 1926{
1a966eab
AC
1927 add_cmd ("convenience", no_class, show_convenience, _("\
1928Debugger convenience (\"$foo\") variables.\n\
c906108c 1929These variables are created when you assign them values;\n\
1a966eab
AC
1930thus, \"print $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\
1931\n\
c906108c
SS
1932A few convenience variables are given values automatically:\n\
1933\"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
1a966eab 1934\"$__\" holds the contents of the last address examined with \"x\"."),
c906108c
SS
1935 &showlist);
1936
1937 add_cmd ("values", no_class, show_values,
1a966eab 1938 _("Elements of value history around item number IDX (or last ten)."),
c906108c 1939 &showlist);
53e5f3cf
AS
1940
1941 add_com ("init-if-undefined", class_vars, init_if_undefined_command, _("\
1942Initialize a convenience variable if necessary.\n\
1943init-if-undefined VARIABLE = EXPRESSION\n\
1944Set an internal VARIABLE to the result of the EXPRESSION if it does not\n\
1945exist or does not contain a value. The EXPRESSION is not evaluated if the\n\
1946VARIABLE is already initialized."));
c906108c 1947}
This page took 2.289315 seconds and 4 git commands to generate.