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