]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/value.c
gdb:
[thirdparty/binutils-gdb.git] / gdb / value.c
CommitLineData
c906108c 1/* Low level packing and unpacking of values for GDB, the GNU Debugger.
1bac305b 2
c5a57081 3 Copyright (C) 1986-2000, 2002-2012 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
e17c207e 21#include "arch-utils.h"
c906108c
SS
22#include "gdb_string.h"
23#include "symtab.h"
24#include "gdbtypes.h"
25#include "value.h"
26#include "gdbcore.h"
c906108c
SS
27#include "command.h"
28#include "gdbcmd.h"
29#include "target.h"
30#include "language.h"
c906108c 31#include "demangle.h"
d16aafd8 32#include "doublest.h"
5ae326fa 33#include "gdb_assert.h"
36160dc4 34#include "regcache.h"
fe898f56 35#include "block.h"
27bc4d80 36#include "dfp.h"
bccdca4a 37#include "objfiles.h"
79a45b7d 38#include "valprint.h"
bc3b79fd 39#include "cli/cli-decode.h"
8af8e3bc 40#include "exceptions.h"
a08702d6 41#include "python/python.h"
3bd0f5ef 42#include <ctype.h>
0914bcdb 43#include "tracepoint.h"
be335936 44#include "cp-abi.h"
0914bcdb 45
581e13c1 46/* Prototypes for exported functions. */
c906108c 47
a14ed312 48void _initialize_values (void);
c906108c 49
bc3b79fd
TJB
50/* Definition of a user function. */
51struct internal_function
52{
53 /* The name of the function. It is a bit odd to have this in the
54 function itself -- the user might use a differently-named
55 convenience variable to hold the function. */
56 char *name;
57
58 /* The handler. */
59 internal_function_fn handler;
60
61 /* User data for the handler. */
62 void *cookie;
63};
64
4e07d55f
PA
65/* Defines an [OFFSET, OFFSET + LENGTH) range. */
66
67struct range
68{
69 /* Lowest offset in the range. */
70 int offset;
71
72 /* Length of the range. */
73 int length;
74};
75
76typedef struct range range_s;
77
78DEF_VEC_O(range_s);
79
80/* Returns true if the ranges defined by [offset1, offset1+len1) and
81 [offset2, offset2+len2) overlap. */
82
83static int
84ranges_overlap (int offset1, int len1,
85 int offset2, int len2)
86{
87 ULONGEST h, l;
88
89 l = max (offset1, offset2);
90 h = min (offset1 + len1, offset2 + len2);
91 return (l < h);
92}
93
94/* Returns true if the first argument is strictly less than the
95 second, useful for VEC_lower_bound. We keep ranges sorted by
96 offset and coalesce overlapping and contiguous ranges, so this just
97 compares the starting offset. */
98
99static int
100range_lessthan (const range_s *r1, const range_s *r2)
101{
102 return r1->offset < r2->offset;
103}
104
105/* Returns true if RANGES contains any range that overlaps [OFFSET,
106 OFFSET+LENGTH). */
107
108static int
109ranges_contain (VEC(range_s) *ranges, int offset, int length)
110{
111 range_s what;
112 int i;
113
114 what.offset = offset;
115 what.length = length;
116
117 /* We keep ranges sorted by offset and coalesce overlapping and
118 contiguous ranges, so to check if a range list contains a given
119 range, we can do a binary search for the position the given range
120 would be inserted if we only considered the starting OFFSET of
121 ranges. We call that position I. Since we also have LENGTH to
122 care for (this is a range afterall), we need to check if the
123 _previous_ range overlaps the I range. E.g.,
124
125 R
126 |---|
127 |---| |---| |------| ... |--|
128 0 1 2 N
129
130 I=1
131
132 In the case above, the binary search would return `I=1', meaning,
133 this OFFSET should be inserted at position 1, and the current
134 position 1 should be pushed further (and before 2). But, `0'
135 overlaps with R.
136
137 Then we need to check if the I range overlaps the I range itself.
138 E.g.,
139
140 R
141 |---|
142 |---| |---| |-------| ... |--|
143 0 1 2 N
144
145 I=1
146 */
147
148 i = VEC_lower_bound (range_s, ranges, &what, range_lessthan);
149
150 if (i > 0)
151 {
152 struct range *bef = VEC_index (range_s, ranges, i - 1);
153
154 if (ranges_overlap (bef->offset, bef->length, offset, length))
155 return 1;
156 }
157
158 if (i < VEC_length (range_s, ranges))
159 {
160 struct range *r = VEC_index (range_s, ranges, i);
161
162 if (ranges_overlap (r->offset, r->length, offset, length))
163 return 1;
164 }
165
166 return 0;
167}
168
bc3b79fd
TJB
169static struct cmd_list_element *functionlist;
170
87784a47
TT
171/* Note that the fields in this structure are arranged to save a bit
172 of memory. */
173
91294c83
AC
174struct value
175{
176 /* Type of value; either not an lval, or one of the various
177 different possible kinds of lval. */
178 enum lval_type lval;
179
180 /* Is it modifiable? Only relevant if lval != not_lval. */
87784a47
TT
181 unsigned int modifiable : 1;
182
183 /* If zero, contents of this value are in the contents field. If
184 nonzero, contents are in inferior. If the lval field is lval_memory,
185 the contents are in inferior memory at location.address plus offset.
186 The lval field may also be lval_register.
187
188 WARNING: This field is used by the code which handles watchpoints
189 (see breakpoint.c) to decide whether a particular value can be
190 watched by hardware watchpoints. If the lazy flag is set for
191 some member of a value chain, it is assumed that this member of
192 the chain doesn't need to be watched as part of watching the
193 value itself. This is how GDB avoids watching the entire struct
194 or array when the user wants to watch a single struct member or
195 array element. If you ever change the way lazy flag is set and
196 reset, be sure to consider this use as well! */
197 unsigned int lazy : 1;
198
199 /* If nonzero, this is the value of a variable which does not
200 actually exist in the program. */
201 unsigned int optimized_out : 1;
202
203 /* If value is a variable, is it initialized or not. */
204 unsigned int initialized : 1;
205
206 /* If value is from the stack. If this is set, read_stack will be
207 used instead of read_memory to enable extra caching. */
208 unsigned int stack : 1;
91294c83 209
e848a8a5
TT
210 /* If the value has been released. */
211 unsigned int released : 1;
212
91294c83
AC
213 /* Location of value (if lval). */
214 union
215 {
216 /* If lval == lval_memory, this is the address in the inferior.
217 If lval == lval_register, this is the byte offset into the
218 registers structure. */
219 CORE_ADDR address;
220
221 /* Pointer to internal variable. */
222 struct internalvar *internalvar;
5f5233d4
PA
223
224 /* If lval == lval_computed, this is a set of function pointers
225 to use to access and describe the value, and a closure pointer
226 for them to use. */
227 struct
228 {
c8f2448a
JK
229 /* Functions to call. */
230 const struct lval_funcs *funcs;
231
232 /* Closure for those functions to use. */
233 void *closure;
5f5233d4 234 } computed;
91294c83
AC
235 } location;
236
237 /* Describes offset of a value within lval of a structure in bytes.
238 If lval == lval_memory, this is an offset to the address. If
239 lval == lval_register, this is a further offset from
240 location.address within the registers structure. Note also the
241 member embedded_offset below. */
242 int offset;
243
244 /* Only used for bitfields; number of bits contained in them. */
245 int bitsize;
246
247 /* Only used for bitfields; position of start of field. For
32c9a795 248 gdbarch_bits_big_endian=0 targets, it is the position of the LSB. For
581e13c1 249 gdbarch_bits_big_endian=1 targets, it is the position of the MSB. */
91294c83
AC
250 int bitpos;
251
87784a47
TT
252 /* The number of references to this value. When a value is created,
253 the value chain holds a reference, so REFERENCE_COUNT is 1. If
254 release_value is called, this value is removed from the chain but
255 the caller of release_value now has a reference to this value.
256 The caller must arrange for a call to value_free later. */
257 int reference_count;
258
4ea48cc1
DJ
259 /* Only used for bitfields; the containing value. This allows a
260 single read from the target when displaying multiple
261 bitfields. */
262 struct value *parent;
263
91294c83
AC
264 /* Frame register value is relative to. This will be described in
265 the lval enum above as "lval_register". */
266 struct frame_id frame_id;
267
268 /* Type of the value. */
269 struct type *type;
270
271 /* If a value represents a C++ object, then the `type' field gives
272 the object's compile-time type. If the object actually belongs
273 to some class derived from `type', perhaps with other base
274 classes and additional members, then `type' is just a subobject
275 of the real thing, and the full object is probably larger than
276 `type' would suggest.
277
278 If `type' is a dynamic class (i.e. one with a vtable), then GDB
279 can actually determine the object's run-time type by looking at
280 the run-time type information in the vtable. When this
281 information is available, we may elect to read in the entire
282 object, for several reasons:
283
284 - When printing the value, the user would probably rather see the
285 full object, not just the limited portion apparent from the
286 compile-time type.
287
288 - If `type' has virtual base classes, then even printing `type'
289 alone may require reaching outside the `type' portion of the
290 object to wherever the virtual base class has been stored.
291
292 When we store the entire object, `enclosing_type' is the run-time
293 type -- the complete object -- and `embedded_offset' is the
294 offset of `type' within that larger type, in bytes. The
295 value_contents() macro takes `embedded_offset' into account, so
296 most GDB code continues to see the `type' portion of the value,
297 just as the inferior would.
298
299 If `type' is a pointer to an object, then `enclosing_type' is a
300 pointer to the object's run-time type, and `pointed_to_offset' is
301 the offset in bytes from the full object to the pointed-to object
302 -- that is, the value `embedded_offset' would have if we followed
303 the pointer and fetched the complete object. (I don't really see
304 the point. Why not just determine the run-time type when you
305 indirect, and avoid the special case? The contents don't matter
306 until you indirect anyway.)
307
308 If we're not doing anything fancy, `enclosing_type' is equal to
309 `type', and `embedded_offset' is zero, so everything works
310 normally. */
311 struct type *enclosing_type;
312 int embedded_offset;
313 int pointed_to_offset;
314
315 /* Values are stored in a chain, so that they can be deleted easily
316 over calls to the inferior. Values assigned to internal
a08702d6
TJB
317 variables, put into the value history or exposed to Python are
318 taken off this list. */
91294c83
AC
319 struct value *next;
320
321 /* Register number if the value is from a register. */
322 short regnum;
323
3e3d7139
JG
324 /* Actual contents of the value. Target byte-order. NULL or not
325 valid if lazy is nonzero. */
326 gdb_byte *contents;
828d3400 327
4e07d55f
PA
328 /* Unavailable ranges in CONTENTS. We mark unavailable ranges,
329 rather than available, since the common and default case is for a
330 value to be available. This is filled in at value read time. */
331 VEC(range_s) *unavailable;
91294c83
AC
332};
333
4e07d55f
PA
334int
335value_bytes_available (const struct value *value, int offset, int length)
336{
337 gdb_assert (!value->lazy);
338
339 return !ranges_contain (value->unavailable, offset, length);
340}
341
ec0a52e1
PA
342int
343value_entirely_available (struct value *value)
344{
345 /* We can only tell whether the whole value is available when we try
346 to read it. */
347 if (value->lazy)
348 value_fetch_lazy (value);
349
350 if (VEC_empty (range_s, value->unavailable))
351 return 1;
352 return 0;
353}
354
4e07d55f
PA
355void
356mark_value_bytes_unavailable (struct value *value, int offset, int length)
357{
358 range_s newr;
359 int i;
360
361 /* Insert the range sorted. If there's overlap or the new range
362 would be contiguous with an existing range, merge. */
363
364 newr.offset = offset;
365 newr.length = length;
366
367 /* Do a binary search for the position the given range would be
368 inserted if we only considered the starting OFFSET of ranges.
369 Call that position I. Since we also have LENGTH to care for
370 (this is a range afterall), we need to check if the _previous_
371 range overlaps the I range. E.g., calling R the new range:
372
373 #1 - overlaps with previous
374
375 R
376 |-...-|
377 |---| |---| |------| ... |--|
378 0 1 2 N
379
380 I=1
381
382 In the case #1 above, the binary search would return `I=1',
383 meaning, this OFFSET should be inserted at position 1, and the
384 current position 1 should be pushed further (and become 2). But,
385 note that `0' overlaps with R, so we want to merge them.
386
387 A similar consideration needs to be taken if the new range would
388 be contiguous with the previous range:
389
390 #2 - contiguous with previous
391
392 R
393 |-...-|
394 |--| |---| |------| ... |--|
395 0 1 2 N
396
397 I=1
398
399 If there's no overlap with the previous range, as in:
400
401 #3 - not overlapping and not contiguous
402
403 R
404 |-...-|
405 |--| |---| |------| ... |--|
406 0 1 2 N
407
408 I=1
409
410 or if I is 0:
411
412 #4 - R is the range with lowest offset
413
414 R
415 |-...-|
416 |--| |---| |------| ... |--|
417 0 1 2 N
418
419 I=0
420
421 ... we just push the new range to I.
422
423 All the 4 cases above need to consider that the new range may
424 also overlap several of the ranges that follow, or that R may be
425 contiguous with the following range, and merge. E.g.,
426
427 #5 - overlapping following ranges
428
429 R
430 |------------------------|
431 |--| |---| |------| ... |--|
432 0 1 2 N
433
434 I=0
435
436 or:
437
438 R
439 |-------|
440 |--| |---| |------| ... |--|
441 0 1 2 N
442
443 I=1
444
445 */
446
447 i = VEC_lower_bound (range_s, value->unavailable, &newr, range_lessthan);
448 if (i > 0)
449 {
6bfc80c7 450 struct range *bef = VEC_index (range_s, value->unavailable, i - 1);
4e07d55f
PA
451
452 if (ranges_overlap (bef->offset, bef->length, offset, length))
453 {
454 /* #1 */
455 ULONGEST l = min (bef->offset, offset);
456 ULONGEST h = max (bef->offset + bef->length, offset + length);
457
458 bef->offset = l;
459 bef->length = h - l;
460 i--;
461 }
462 else if (offset == bef->offset + bef->length)
463 {
464 /* #2 */
465 bef->length += length;
466 i--;
467 }
468 else
469 {
470 /* #3 */
471 VEC_safe_insert (range_s, value->unavailable, i, &newr);
472 }
473 }
474 else
475 {
476 /* #4 */
477 VEC_safe_insert (range_s, value->unavailable, i, &newr);
478 }
479
480 /* Check whether the ranges following the one we've just added or
481 touched can be folded in (#5 above). */
482 if (i + 1 < VEC_length (range_s, value->unavailable))
483 {
484 struct range *t;
485 struct range *r;
486 int removed = 0;
487 int next = i + 1;
488
489 /* Get the range we just touched. */
490 t = VEC_index (range_s, value->unavailable, i);
491 removed = 0;
492
493 i = next;
494 for (; VEC_iterate (range_s, value->unavailable, i, r); i++)
495 if (r->offset <= t->offset + t->length)
496 {
497 ULONGEST l, h;
498
499 l = min (t->offset, r->offset);
500 h = max (t->offset + t->length, r->offset + r->length);
501
502 t->offset = l;
503 t->length = h - l;
504
505 removed++;
506 }
507 else
508 {
509 /* If we couldn't merge this one, we won't be able to
510 merge following ones either, since the ranges are
511 always sorted by OFFSET. */
512 break;
513 }
514
515 if (removed != 0)
516 VEC_block_remove (range_s, value->unavailable, next, removed);
517 }
518}
519
c8c1c22f
PA
520/* Find the first range in RANGES that overlaps the range defined by
521 OFFSET and LENGTH, starting at element POS in the RANGES vector,
522 Returns the index into RANGES where such overlapping range was
523 found, or -1 if none was found. */
524
525static int
526find_first_range_overlap (VEC(range_s) *ranges, int pos,
527 int offset, int length)
528{
529 range_s *r;
530 int i;
531
532 for (i = pos; VEC_iterate (range_s, ranges, i, r); i++)
533 if (ranges_overlap (r->offset, r->length, offset, length))
534 return i;
535
536 return -1;
537}
538
539int
540value_available_contents_eq (const struct value *val1, int offset1,
541 const struct value *val2, int offset2,
542 int length)
543{
c8c1c22f 544 int idx1 = 0, idx2 = 0;
c8c1c22f
PA
545
546 /* This routine is used by printing routines, where we should
547 already have read the value. Note that we only know whether a
548 value chunk is available if we've tried to read it. */
549 gdb_assert (!val1->lazy && !val2->lazy);
550
c8c1c22f
PA
551 while (length > 0)
552 {
553 range_s *r1, *r2;
554 ULONGEST l1, h1;
555 ULONGEST l2, h2;
556
557 idx1 = find_first_range_overlap (val1->unavailable, idx1,
558 offset1, length);
559 idx2 = find_first_range_overlap (val2->unavailable, idx2,
560 offset2, length);
561
562 /* The usual case is for both values to be completely available. */
563 if (idx1 == -1 && idx2 == -1)
cd24cfaa
PA
564 return (memcmp (val1->contents + offset1,
565 val2->contents + offset2,
566 length) == 0);
c8c1c22f
PA
567 /* The contents only match equal if the available set matches as
568 well. */
569 else if (idx1 == -1 || idx2 == -1)
570 return 0;
571
572 gdb_assert (idx1 != -1 && idx2 != -1);
573
574 r1 = VEC_index (range_s, val1->unavailable, idx1);
575 r2 = VEC_index (range_s, val2->unavailable, idx2);
576
577 /* Get the unavailable windows intersected by the incoming
578 ranges. The first and last ranges that overlap the argument
579 range may be wider than said incoming arguments ranges. */
580 l1 = max (offset1, r1->offset);
581 h1 = min (offset1 + length, r1->offset + r1->length);
582
583 l2 = max (offset2, r2->offset);
584 h2 = min (offset2 + length, r2->offset + r2->length);
585
586 /* Make them relative to the respective start offsets, so we can
587 compare them for equality. */
588 l1 -= offset1;
589 h1 -= offset1;
590
591 l2 -= offset2;
592 h2 -= offset2;
593
594 /* Different availability, no match. */
595 if (l1 != l2 || h1 != h2)
596 return 0;
597
598 /* Compare the _available_ contents. */
cd24cfaa
PA
599 if (memcmp (val1->contents + offset1,
600 val2->contents + offset2,
601 l1) != 0)
c8c1c22f
PA
602 return 0;
603
c8c1c22f
PA
604 length -= h1;
605 offset1 += h1;
606 offset2 += h1;
607 }
608
609 return 1;
610}
611
581e13c1 612/* Prototypes for local functions. */
c906108c 613
a14ed312 614static void show_values (char *, int);
c906108c 615
a14ed312 616static void show_convenience (char *, int);
c906108c 617
c906108c
SS
618
619/* The value-history records all the values printed
620 by print commands during this session. Each chunk
621 records 60 consecutive values. The first chunk on
622 the chain records the most recent values.
623 The total number of values is in value_history_count. */
624
625#define VALUE_HISTORY_CHUNK 60
626
627struct value_history_chunk
c5aa993b
JM
628 {
629 struct value_history_chunk *next;
f23631e4 630 struct value *values[VALUE_HISTORY_CHUNK];
c5aa993b 631 };
c906108c
SS
632
633/* Chain of chunks now in use. */
634
635static struct value_history_chunk *value_history_chain;
636
581e13c1 637static int value_history_count; /* Abs number of last entry stored. */
bc3b79fd 638
c906108c
SS
639\f
640/* List of all value objects currently allocated
641 (except for those released by calls to release_value)
642 This is so they can be freed after each command. */
643
f23631e4 644static struct value *all_values;
c906108c 645
3e3d7139
JG
646/* Allocate a lazy value for type TYPE. Its actual content is
647 "lazily" allocated too: the content field of the return value is
648 NULL; it will be allocated when it is fetched from the target. */
c906108c 649
f23631e4 650struct value *
3e3d7139 651allocate_value_lazy (struct type *type)
c906108c 652{
f23631e4 653 struct value *val;
c54eabfa
JK
654
655 /* Call check_typedef on our type to make sure that, if TYPE
656 is a TYPE_CODE_TYPEDEF, its length is set to the length
657 of the target type instead of zero. However, we do not
658 replace the typedef type by the target type, because we want
659 to keep the typedef in order to be able to set the VAL's type
660 description correctly. */
661 check_typedef (type);
c906108c 662
3e3d7139
JG
663 val = (struct value *) xzalloc (sizeof (struct value));
664 val->contents = NULL;
df407dfe 665 val->next = all_values;
c906108c 666 all_values = val;
df407dfe 667 val->type = type;
4754a64e 668 val->enclosing_type = type;
c906108c 669 VALUE_LVAL (val) = not_lval;
42ae5230 670 val->location.address = 0;
1df6926e 671 VALUE_FRAME_ID (val) = null_frame_id;
df407dfe
AC
672 val->offset = 0;
673 val->bitpos = 0;
674 val->bitsize = 0;
9ee8fc9d 675 VALUE_REGNUM (val) = -1;
3e3d7139 676 val->lazy = 1;
feb13ab0 677 val->optimized_out = 0;
13c3b5f5 678 val->embedded_offset = 0;
b44d461b 679 val->pointed_to_offset = 0;
c906108c 680 val->modifiable = 1;
42be36b3 681 val->initialized = 1; /* Default to initialized. */
828d3400
DJ
682
683 /* Values start out on the all_values chain. */
684 val->reference_count = 1;
685
c906108c
SS
686 return val;
687}
688
3e3d7139
JG
689/* Allocate the contents of VAL if it has not been allocated yet. */
690
691void
692allocate_value_contents (struct value *val)
693{
694 if (!val->contents)
695 val->contents = (gdb_byte *) xzalloc (TYPE_LENGTH (val->enclosing_type));
696}
697
698/* Allocate a value and its contents for type TYPE. */
699
700struct value *
701allocate_value (struct type *type)
702{
703 struct value *val = allocate_value_lazy (type);
a109c7c1 704
3e3d7139
JG
705 allocate_value_contents (val);
706 val->lazy = 0;
707 return val;
708}
709
c906108c 710/* Allocate a value that has the correct length
938f5214 711 for COUNT repetitions of type TYPE. */
c906108c 712
f23631e4 713struct value *
fba45db2 714allocate_repeat_value (struct type *type, int count)
c906108c 715{
c5aa993b 716 int low_bound = current_language->string_lower_bound; /* ??? */
c906108c
SS
717 /* FIXME-type-allocation: need a way to free this type when we are
718 done with it. */
e3506a9f
UW
719 struct type *array_type
720 = lookup_array_range_type (type, low_bound, count + low_bound - 1);
a109c7c1 721
e3506a9f 722 return allocate_value (array_type);
c906108c
SS
723}
724
5f5233d4
PA
725struct value *
726allocate_computed_value (struct type *type,
c8f2448a 727 const struct lval_funcs *funcs,
5f5233d4
PA
728 void *closure)
729{
41e8491f 730 struct value *v = allocate_value_lazy (type);
a109c7c1 731
5f5233d4
PA
732 VALUE_LVAL (v) = lval_computed;
733 v->location.computed.funcs = funcs;
734 v->location.computed.closure = closure;
5f5233d4
PA
735
736 return v;
737}
738
a7035dbb
JK
739/* Allocate NOT_LVAL value for type TYPE being OPTIMIZED_OUT. */
740
741struct value *
742allocate_optimized_out_value (struct type *type)
743{
744 struct value *retval = allocate_value_lazy (type);
745
746 set_value_optimized_out (retval, 1);
747
748 return retval;
749}
750
df407dfe
AC
751/* Accessor methods. */
752
17cf0ecd
AC
753struct value *
754value_next (struct value *value)
755{
756 return value->next;
757}
758
df407dfe 759struct type *
0e03807e 760value_type (const struct value *value)
df407dfe
AC
761{
762 return value->type;
763}
04624583
AC
764void
765deprecated_set_value_type (struct value *value, struct type *type)
766{
767 value->type = type;
768}
df407dfe
AC
769
770int
0e03807e 771value_offset (const struct value *value)
df407dfe
AC
772{
773 return value->offset;
774}
f5cf64a7
AC
775void
776set_value_offset (struct value *value, int offset)
777{
778 value->offset = offset;
779}
df407dfe
AC
780
781int
0e03807e 782value_bitpos (const struct value *value)
df407dfe
AC
783{
784 return value->bitpos;
785}
9bbda503
AC
786void
787set_value_bitpos (struct value *value, int bit)
788{
789 value->bitpos = bit;
790}
df407dfe
AC
791
792int
0e03807e 793value_bitsize (const struct value *value)
df407dfe
AC
794{
795 return value->bitsize;
796}
9bbda503
AC
797void
798set_value_bitsize (struct value *value, int bit)
799{
800 value->bitsize = bit;
801}
df407dfe 802
4ea48cc1
DJ
803struct value *
804value_parent (struct value *value)
805{
806 return value->parent;
807}
808
fc1a4b47 809gdb_byte *
990a07ab
AC
810value_contents_raw (struct value *value)
811{
3e3d7139
JG
812 allocate_value_contents (value);
813 return value->contents + value->embedded_offset;
990a07ab
AC
814}
815
fc1a4b47 816gdb_byte *
990a07ab
AC
817value_contents_all_raw (struct value *value)
818{
3e3d7139
JG
819 allocate_value_contents (value);
820 return value->contents;
990a07ab
AC
821}
822
4754a64e
AC
823struct type *
824value_enclosing_type (struct value *value)
825{
826 return value->enclosing_type;
827}
828
0e03807e 829static void
4e07d55f 830require_not_optimized_out (const struct value *value)
0e03807e
TT
831{
832 if (value->optimized_out)
833 error (_("value has been optimized out"));
834}
835
4e07d55f
PA
836static void
837require_available (const struct value *value)
838{
839 if (!VEC_empty (range_s, value->unavailable))
8af8e3bc 840 throw_error (NOT_AVAILABLE_ERROR, _("value is not available"));
4e07d55f
PA
841}
842
fc1a4b47 843const gdb_byte *
0e03807e 844value_contents_for_printing (struct value *value)
46615f07
AC
845{
846 if (value->lazy)
847 value_fetch_lazy (value);
3e3d7139 848 return value->contents;
46615f07
AC
849}
850
de4127a3
PA
851const gdb_byte *
852value_contents_for_printing_const (const struct value *value)
853{
854 gdb_assert (!value->lazy);
855 return value->contents;
856}
857
0e03807e
TT
858const gdb_byte *
859value_contents_all (struct value *value)
860{
861 const gdb_byte *result = value_contents_for_printing (value);
862 require_not_optimized_out (value);
4e07d55f 863 require_available (value);
0e03807e
TT
864 return result;
865}
866
29976f3f
PA
867/* Copy LENGTH bytes of SRC value's (all) contents
868 (value_contents_all) starting at SRC_OFFSET, into DST value's (all)
869 contents, starting at DST_OFFSET. If unavailable contents are
870 being copied from SRC, the corresponding DST contents are marked
871 unavailable accordingly. Neither DST nor SRC may be lazy
872 values.
873
874 It is assumed the contents of DST in the [DST_OFFSET,
875 DST_OFFSET+LENGTH) range are wholly available. */
39d37385
PA
876
877void
878value_contents_copy_raw (struct value *dst, int dst_offset,
879 struct value *src, int src_offset, int length)
880{
881 range_s *r;
882 int i;
883
884 /* A lazy DST would make that this copy operation useless, since as
885 soon as DST's contents were un-lazied (by a later value_contents
886 call, say), the contents would be overwritten. A lazy SRC would
887 mean we'd be copying garbage. */
888 gdb_assert (!dst->lazy && !src->lazy);
889
29976f3f
PA
890 /* The overwritten DST range gets unavailability ORed in, not
891 replaced. Make sure to remember to implement replacing if it
892 turns out actually necessary. */
893 gdb_assert (value_bytes_available (dst, dst_offset, length));
894
39d37385
PA
895 /* Copy the data. */
896 memcpy (value_contents_all_raw (dst) + dst_offset,
897 value_contents_all_raw (src) + src_offset,
898 length);
899
900 /* Copy the meta-data, adjusted. */
901 for (i = 0; VEC_iterate (range_s, src->unavailable, i, r); i++)
902 {
903 ULONGEST h, l;
904
905 l = max (r->offset, src_offset);
906 h = min (r->offset + r->length, src_offset + length);
907
908 if (l < h)
909 mark_value_bytes_unavailable (dst,
910 dst_offset + (l - src_offset),
911 h - l);
912 }
913}
914
29976f3f
PA
915/* Copy LENGTH bytes of SRC value's (all) contents
916 (value_contents_all) starting at SRC_OFFSET byte, into DST value's
917 (all) contents, starting at DST_OFFSET. If unavailable contents
918 are being copied from SRC, the corresponding DST contents are
919 marked unavailable accordingly. DST must not be lazy. If SRC is
920 lazy, it will be fetched now. If SRC is not valid (is optimized
921 out), an error is thrown.
922
923 It is assumed the contents of DST in the [DST_OFFSET,
924 DST_OFFSET+LENGTH) range are wholly available. */
39d37385
PA
925
926void
927value_contents_copy (struct value *dst, int dst_offset,
928 struct value *src, int src_offset, int length)
929{
930 require_not_optimized_out (src);
931
932 if (src->lazy)
933 value_fetch_lazy (src);
934
935 value_contents_copy_raw (dst, dst_offset, src, src_offset, length);
936}
937
d69fe07e
AC
938int
939value_lazy (struct value *value)
940{
941 return value->lazy;
942}
943
dfa52d88
AC
944void
945set_value_lazy (struct value *value, int val)
946{
947 value->lazy = val;
948}
949
4e5d721f
DE
950int
951value_stack (struct value *value)
952{
953 return value->stack;
954}
955
956void
957set_value_stack (struct value *value, int val)
958{
959 value->stack = val;
960}
961
fc1a4b47 962const gdb_byte *
0fd88904
AC
963value_contents (struct value *value)
964{
0e03807e
TT
965 const gdb_byte *result = value_contents_writeable (value);
966 require_not_optimized_out (value);
4e07d55f 967 require_available (value);
0e03807e 968 return result;
0fd88904
AC
969}
970
fc1a4b47 971gdb_byte *
0fd88904
AC
972value_contents_writeable (struct value *value)
973{
974 if (value->lazy)
975 value_fetch_lazy (value);
fc0c53a0 976 return value_contents_raw (value);
0fd88904
AC
977}
978
a6c442d8
MK
979/* Return non-zero if VAL1 and VAL2 have the same contents. Note that
980 this function is different from value_equal; in C the operator ==
981 can return 0 even if the two values being compared are equal. */
982
983int
984value_contents_equal (struct value *val1, struct value *val2)
985{
986 struct type *type1;
987 struct type *type2;
988 int len;
989
990 type1 = check_typedef (value_type (val1));
991 type2 = check_typedef (value_type (val2));
992 len = TYPE_LENGTH (type1);
993 if (len != TYPE_LENGTH (type2))
994 return 0;
995
996 return (memcmp (value_contents (val1), value_contents (val2), len) == 0);
997}
998
feb13ab0
AC
999int
1000value_optimized_out (struct value *value)
1001{
1002 return value->optimized_out;
1003}
1004
1005void
1006set_value_optimized_out (struct value *value, int val)
1007{
1008 value->optimized_out = val;
1009}
13c3b5f5 1010
0e03807e
TT
1011int
1012value_entirely_optimized_out (const struct value *value)
1013{
1014 if (!value->optimized_out)
1015 return 0;
1016 if (value->lval != lval_computed
ba19bb4d 1017 || !value->location.computed.funcs->check_any_valid)
0e03807e 1018 return 1;
b65c7efe 1019 return !value->location.computed.funcs->check_any_valid (value);
0e03807e
TT
1020}
1021
1022int
1023value_bits_valid (const struct value *value, int offset, int length)
1024{
e7303042 1025 if (!value->optimized_out)
0e03807e
TT
1026 return 1;
1027 if (value->lval != lval_computed
1028 || !value->location.computed.funcs->check_validity)
1029 return 0;
1030 return value->location.computed.funcs->check_validity (value, offset,
1031 length);
1032}
1033
8cf6f0b1
TT
1034int
1035value_bits_synthetic_pointer (const struct value *value,
1036 int offset, int length)
1037{
e7303042 1038 if (value->lval != lval_computed
8cf6f0b1
TT
1039 || !value->location.computed.funcs->check_synthetic_pointer)
1040 return 0;
1041 return value->location.computed.funcs->check_synthetic_pointer (value,
1042 offset,
1043 length);
1044}
1045
13c3b5f5
AC
1046int
1047value_embedded_offset (struct value *value)
1048{
1049 return value->embedded_offset;
1050}
1051
1052void
1053set_value_embedded_offset (struct value *value, int val)
1054{
1055 value->embedded_offset = val;
1056}
b44d461b
AC
1057
1058int
1059value_pointed_to_offset (struct value *value)
1060{
1061 return value->pointed_to_offset;
1062}
1063
1064void
1065set_value_pointed_to_offset (struct value *value, int val)
1066{
1067 value->pointed_to_offset = val;
1068}
13bb5560 1069
c8f2448a 1070const struct lval_funcs *
a471c594 1071value_computed_funcs (const struct value *v)
5f5233d4 1072{
a471c594 1073 gdb_assert (value_lval_const (v) == lval_computed);
5f5233d4
PA
1074
1075 return v->location.computed.funcs;
1076}
1077
1078void *
0e03807e 1079value_computed_closure (const struct value *v)
5f5233d4 1080{
0e03807e 1081 gdb_assert (v->lval == lval_computed);
5f5233d4
PA
1082
1083 return v->location.computed.closure;
1084}
1085
13bb5560
AC
1086enum lval_type *
1087deprecated_value_lval_hack (struct value *value)
1088{
1089 return &value->lval;
1090}
1091
a471c594
JK
1092enum lval_type
1093value_lval_const (const struct value *value)
1094{
1095 return value->lval;
1096}
1097
42ae5230 1098CORE_ADDR
de4127a3 1099value_address (const struct value *value)
42ae5230
TT
1100{
1101 if (value->lval == lval_internalvar
1102 || value->lval == lval_internalvar_component)
1103 return 0;
1104 return value->location.address + value->offset;
1105}
1106
1107CORE_ADDR
1108value_raw_address (struct value *value)
1109{
1110 if (value->lval == lval_internalvar
1111 || value->lval == lval_internalvar_component)
1112 return 0;
1113 return value->location.address;
1114}
1115
1116void
1117set_value_address (struct value *value, CORE_ADDR addr)
13bb5560 1118{
42ae5230
TT
1119 gdb_assert (value->lval != lval_internalvar
1120 && value->lval != lval_internalvar_component);
1121 value->location.address = addr;
13bb5560
AC
1122}
1123
1124struct internalvar **
1125deprecated_value_internalvar_hack (struct value *value)
1126{
1127 return &value->location.internalvar;
1128}
1129
1130struct frame_id *
1131deprecated_value_frame_id_hack (struct value *value)
1132{
1133 return &value->frame_id;
1134}
1135
1136short *
1137deprecated_value_regnum_hack (struct value *value)
1138{
1139 return &value->regnum;
1140}
88e3b34b
AC
1141
1142int
1143deprecated_value_modifiable (struct value *value)
1144{
1145 return value->modifiable;
1146}
1147void
1148deprecated_set_value_modifiable (struct value *value, int modifiable)
1149{
1150 value->modifiable = modifiable;
1151}
990a07ab 1152\f
c906108c
SS
1153/* Return a mark in the value chain. All values allocated after the
1154 mark is obtained (except for those released) are subject to being freed
1155 if a subsequent value_free_to_mark is passed the mark. */
f23631e4 1156struct value *
fba45db2 1157value_mark (void)
c906108c
SS
1158{
1159 return all_values;
1160}
1161
828d3400
DJ
1162/* Take a reference to VAL. VAL will not be deallocated until all
1163 references are released. */
1164
1165void
1166value_incref (struct value *val)
1167{
1168 val->reference_count++;
1169}
1170
1171/* Release a reference to VAL, which was acquired with value_incref.
1172 This function is also called to deallocate values from the value
1173 chain. */
1174
3e3d7139
JG
1175void
1176value_free (struct value *val)
1177{
1178 if (val)
5f5233d4 1179 {
828d3400
DJ
1180 gdb_assert (val->reference_count > 0);
1181 val->reference_count--;
1182 if (val->reference_count > 0)
1183 return;
1184
4ea48cc1
DJ
1185 /* If there's an associated parent value, drop our reference to
1186 it. */
1187 if (val->parent != NULL)
1188 value_free (val->parent);
1189
5f5233d4
PA
1190 if (VALUE_LVAL (val) == lval_computed)
1191 {
c8f2448a 1192 const struct lval_funcs *funcs = val->location.computed.funcs;
5f5233d4
PA
1193
1194 if (funcs->free_closure)
1195 funcs->free_closure (val);
1196 }
1197
1198 xfree (val->contents);
4e07d55f 1199 VEC_free (range_s, val->unavailable);
5f5233d4 1200 }
3e3d7139
JG
1201 xfree (val);
1202}
1203
c906108c
SS
1204/* Free all values allocated since MARK was obtained by value_mark
1205 (except for those released). */
1206void
f23631e4 1207value_free_to_mark (struct value *mark)
c906108c 1208{
f23631e4
AC
1209 struct value *val;
1210 struct value *next;
c906108c
SS
1211
1212 for (val = all_values; val && val != mark; val = next)
1213 {
df407dfe 1214 next = val->next;
e848a8a5 1215 val->released = 1;
c906108c
SS
1216 value_free (val);
1217 }
1218 all_values = val;
1219}
1220
1221/* Free all the values that have been allocated (except for those released).
725e88af
DE
1222 Call after each command, successful or not.
1223 In practice this is called before each command, which is sufficient. */
c906108c
SS
1224
1225void
fba45db2 1226free_all_values (void)
c906108c 1227{
f23631e4
AC
1228 struct value *val;
1229 struct value *next;
c906108c
SS
1230
1231 for (val = all_values; val; val = next)
1232 {
df407dfe 1233 next = val->next;
e848a8a5 1234 val->released = 1;
c906108c
SS
1235 value_free (val);
1236 }
1237
1238 all_values = 0;
1239}
1240
0cf6dd15
TJB
1241/* Frees all the elements in a chain of values. */
1242
1243void
1244free_value_chain (struct value *v)
1245{
1246 struct value *next;
1247
1248 for (; v; v = next)
1249 {
1250 next = value_next (v);
1251 value_free (v);
1252 }
1253}
1254
c906108c
SS
1255/* Remove VAL from the chain all_values
1256 so it will not be freed automatically. */
1257
1258void
f23631e4 1259release_value (struct value *val)
c906108c 1260{
f23631e4 1261 struct value *v;
c906108c
SS
1262
1263 if (all_values == val)
1264 {
1265 all_values = val->next;
06a64a0b 1266 val->next = NULL;
e848a8a5 1267 val->released = 1;
c906108c
SS
1268 return;
1269 }
1270
1271 for (v = all_values; v; v = v->next)
1272 {
1273 if (v->next == val)
1274 {
1275 v->next = val->next;
06a64a0b 1276 val->next = NULL;
e848a8a5 1277 val->released = 1;
c906108c
SS
1278 break;
1279 }
1280 }
1281}
1282
e848a8a5
TT
1283/* If the value is not already released, release it.
1284 If the value is already released, increment its reference count.
1285 That is, this function ensures that the value is released from the
1286 value chain and that the caller owns a reference to it. */
1287
1288void
1289release_value_or_incref (struct value *val)
1290{
1291 if (val->released)
1292 value_incref (val);
1293 else
1294 release_value (val);
1295}
1296
c906108c 1297/* Release all values up to mark */
f23631e4
AC
1298struct value *
1299value_release_to_mark (struct value *mark)
c906108c 1300{
f23631e4
AC
1301 struct value *val;
1302 struct value *next;
c906108c 1303
df407dfe 1304 for (val = next = all_values; next; next = next->next)
e848a8a5
TT
1305 {
1306 if (next->next == mark)
1307 {
1308 all_values = next->next;
1309 next->next = NULL;
1310 return val;
1311 }
1312 next->released = 1;
1313 }
c906108c
SS
1314 all_values = 0;
1315 return val;
1316}
1317
1318/* Return a copy of the value ARG.
1319 It contains the same contents, for same memory address,
1320 but it's a different block of storage. */
1321
f23631e4
AC
1322struct value *
1323value_copy (struct value *arg)
c906108c 1324{
4754a64e 1325 struct type *encl_type = value_enclosing_type (arg);
3e3d7139
JG
1326 struct value *val;
1327
1328 if (value_lazy (arg))
1329 val = allocate_value_lazy (encl_type);
1330 else
1331 val = allocate_value (encl_type);
df407dfe 1332 val->type = arg->type;
c906108c 1333 VALUE_LVAL (val) = VALUE_LVAL (arg);
6f7c8fc2 1334 val->location = arg->location;
df407dfe
AC
1335 val->offset = arg->offset;
1336 val->bitpos = arg->bitpos;
1337 val->bitsize = arg->bitsize;
1df6926e 1338 VALUE_FRAME_ID (val) = VALUE_FRAME_ID (arg);
9ee8fc9d 1339 VALUE_REGNUM (val) = VALUE_REGNUM (arg);
d69fe07e 1340 val->lazy = arg->lazy;
feb13ab0 1341 val->optimized_out = arg->optimized_out;
13c3b5f5 1342 val->embedded_offset = value_embedded_offset (arg);
b44d461b 1343 val->pointed_to_offset = arg->pointed_to_offset;
c906108c 1344 val->modifiable = arg->modifiable;
d69fe07e 1345 if (!value_lazy (val))
c906108c 1346 {
990a07ab 1347 memcpy (value_contents_all_raw (val), value_contents_all_raw (arg),
4754a64e 1348 TYPE_LENGTH (value_enclosing_type (arg)));
c906108c
SS
1349
1350 }
4e07d55f 1351 val->unavailable = VEC_copy (range_s, arg->unavailable);
4ea48cc1
DJ
1352 val->parent = arg->parent;
1353 if (val->parent)
1354 value_incref (val->parent);
5f5233d4
PA
1355 if (VALUE_LVAL (val) == lval_computed)
1356 {
c8f2448a 1357 const struct lval_funcs *funcs = val->location.computed.funcs;
5f5233d4
PA
1358
1359 if (funcs->copy_closure)
1360 val->location.computed.closure = funcs->copy_closure (val);
1361 }
c906108c
SS
1362 return val;
1363}
74bcbdf3 1364
c37f7098
KW
1365/* Return a version of ARG that is non-lvalue. */
1366
1367struct value *
1368value_non_lval (struct value *arg)
1369{
1370 if (VALUE_LVAL (arg) != not_lval)
1371 {
1372 struct type *enc_type = value_enclosing_type (arg);
1373 struct value *val = allocate_value (enc_type);
1374
1375 memcpy (value_contents_all_raw (val), value_contents_all (arg),
1376 TYPE_LENGTH (enc_type));
1377 val->type = arg->type;
1378 set_value_embedded_offset (val, value_embedded_offset (arg));
1379 set_value_pointed_to_offset (val, value_pointed_to_offset (arg));
1380 return val;
1381 }
1382 return arg;
1383}
1384
74bcbdf3 1385void
0e03807e
TT
1386set_value_component_location (struct value *component,
1387 const struct value *whole)
74bcbdf3 1388{
0e03807e 1389 if (whole->lval == lval_internalvar)
74bcbdf3
PA
1390 VALUE_LVAL (component) = lval_internalvar_component;
1391 else
0e03807e 1392 VALUE_LVAL (component) = whole->lval;
5f5233d4 1393
74bcbdf3 1394 component->location = whole->location;
0e03807e 1395 if (whole->lval == lval_computed)
5f5233d4 1396 {
c8f2448a 1397 const struct lval_funcs *funcs = whole->location.computed.funcs;
5f5233d4
PA
1398
1399 if (funcs->copy_closure)
1400 component->location.computed.closure = funcs->copy_closure (whole);
1401 }
74bcbdf3
PA
1402}
1403
c906108c
SS
1404\f
1405/* Access to the value history. */
1406
1407/* Record a new value in the value history.
1408 Returns the absolute history index of the entry.
1409 Result of -1 indicates the value was not saved; otherwise it is the
1410 value history index of this new item. */
1411
1412int
f23631e4 1413record_latest_value (struct value *val)
c906108c
SS
1414{
1415 int i;
1416
1417 /* We don't want this value to have anything to do with the inferior anymore.
1418 In particular, "set $1 = 50" should not affect the variable from which
1419 the value was taken, and fast watchpoints should be able to assume that
1420 a value on the value history never changes. */
d69fe07e 1421 if (value_lazy (val))
c906108c
SS
1422 value_fetch_lazy (val);
1423 /* We preserve VALUE_LVAL so that the user can find out where it was fetched
1424 from. This is a bit dubious, because then *&$1 does not just return $1
1425 but the current contents of that location. c'est la vie... */
1426 val->modifiable = 0;
1427 release_value (val);
1428
1429 /* Here we treat value_history_count as origin-zero
1430 and applying to the value being stored now. */
1431
1432 i = value_history_count % VALUE_HISTORY_CHUNK;
1433 if (i == 0)
1434 {
f23631e4 1435 struct value_history_chunk *new
a109c7c1
MS
1436 = (struct value_history_chunk *)
1437
c5aa993b 1438 xmalloc (sizeof (struct value_history_chunk));
c906108c
SS
1439 memset (new->values, 0, sizeof new->values);
1440 new->next = value_history_chain;
1441 value_history_chain = new;
1442 }
1443
1444 value_history_chain->values[i] = val;
1445
1446 /* Now we regard value_history_count as origin-one
1447 and applying to the value just stored. */
1448
1449 return ++value_history_count;
1450}
1451
1452/* Return a copy of the value in the history with sequence number NUM. */
1453
f23631e4 1454struct value *
fba45db2 1455access_value_history (int num)
c906108c 1456{
f23631e4 1457 struct value_history_chunk *chunk;
52f0bd74
AC
1458 int i;
1459 int absnum = num;
c906108c
SS
1460
1461 if (absnum <= 0)
1462 absnum += value_history_count;
1463
1464 if (absnum <= 0)
1465 {
1466 if (num == 0)
8a3fe4f8 1467 error (_("The history is empty."));
c906108c 1468 else if (num == 1)
8a3fe4f8 1469 error (_("There is only one value in the history."));
c906108c 1470 else
8a3fe4f8 1471 error (_("History does not go back to $$%d."), -num);
c906108c
SS
1472 }
1473 if (absnum > value_history_count)
8a3fe4f8 1474 error (_("History has not yet reached $%d."), absnum);
c906108c
SS
1475
1476 absnum--;
1477
1478 /* Now absnum is always absolute and origin zero. */
1479
1480 chunk = value_history_chain;
3e43a32a
MS
1481 for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK
1482 - absnum / VALUE_HISTORY_CHUNK;
c906108c
SS
1483 i > 0; i--)
1484 chunk = chunk->next;
1485
1486 return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
1487}
1488
c906108c 1489static void
fba45db2 1490show_values (char *num_exp, int from_tty)
c906108c 1491{
52f0bd74 1492 int i;
f23631e4 1493 struct value *val;
c906108c
SS
1494 static int num = 1;
1495
1496 if (num_exp)
1497 {
f132ba9d
TJB
1498 /* "show values +" should print from the stored position.
1499 "show values <exp>" should print around value number <exp>. */
c906108c 1500 if (num_exp[0] != '+' || num_exp[1] != '\0')
bb518678 1501 num = parse_and_eval_long (num_exp) - 5;
c906108c
SS
1502 }
1503 else
1504 {
f132ba9d 1505 /* "show values" means print the last 10 values. */
c906108c
SS
1506 num = value_history_count - 9;
1507 }
1508
1509 if (num <= 0)
1510 num = 1;
1511
1512 for (i = num; i < num + 10 && i <= value_history_count; i++)
1513 {
79a45b7d 1514 struct value_print_options opts;
a109c7c1 1515
c906108c 1516 val = access_value_history (i);
a3f17187 1517 printf_filtered (("$%d = "), i);
79a45b7d
TT
1518 get_user_print_options (&opts);
1519 value_print (val, gdb_stdout, &opts);
a3f17187 1520 printf_filtered (("\n"));
c906108c
SS
1521 }
1522
f132ba9d 1523 /* The next "show values +" should start after what we just printed. */
c906108c
SS
1524 num += 10;
1525
1526 /* Hitting just return after this command should do the same thing as
f132ba9d
TJB
1527 "show values +". If num_exp is null, this is unnecessary, since
1528 "show values +" is not useful after "show values". */
c906108c
SS
1529 if (from_tty && num_exp)
1530 {
1531 num_exp[0] = '+';
1532 num_exp[1] = '\0';
1533 }
1534}
1535\f
1536/* Internal variables. These are variables within the debugger
1537 that hold values assigned by debugger commands.
1538 The user refers to them with a '$' prefix
1539 that does not appear in the variable names stored internally. */
1540
4fa62494
UW
1541struct internalvar
1542{
1543 struct internalvar *next;
1544 char *name;
4fa62494 1545
78267919
UW
1546 /* We support various different kinds of content of an internal variable.
1547 enum internalvar_kind specifies the kind, and union internalvar_data
1548 provides the data associated with this particular kind. */
1549
1550 enum internalvar_kind
1551 {
1552 /* The internal variable is empty. */
1553 INTERNALVAR_VOID,
1554
1555 /* The value of the internal variable is provided directly as
1556 a GDB value object. */
1557 INTERNALVAR_VALUE,
1558
1559 /* A fresh value is computed via a call-back routine on every
1560 access to the internal variable. */
1561 INTERNALVAR_MAKE_VALUE,
4fa62494 1562
78267919
UW
1563 /* The internal variable holds a GDB internal convenience function. */
1564 INTERNALVAR_FUNCTION,
1565
cab0c772
UW
1566 /* The variable holds an integer value. */
1567 INTERNALVAR_INTEGER,
1568
78267919
UW
1569 /* The variable holds a GDB-provided string. */
1570 INTERNALVAR_STRING,
1571
1572 } kind;
4fa62494 1573
4fa62494
UW
1574 union internalvar_data
1575 {
78267919
UW
1576 /* A value object used with INTERNALVAR_VALUE. */
1577 struct value *value;
1578
1579 /* The call-back routine used with INTERNALVAR_MAKE_VALUE. */
1580 internalvar_make_value make_value;
1581
1582 /* The internal function used with INTERNALVAR_FUNCTION. */
1583 struct
1584 {
1585 struct internal_function *function;
1586 /* True if this is the canonical name for the function. */
1587 int canonical;
1588 } fn;
1589
cab0c772 1590 /* An integer value used with INTERNALVAR_INTEGER. */
78267919
UW
1591 struct
1592 {
1593 /* If type is non-NULL, it will be used as the type to generate
1594 a value for this internal variable. If type is NULL, a default
1595 integer type for the architecture is used. */
1596 struct type *type;
cab0c772
UW
1597 LONGEST val;
1598 } integer;
1599
78267919
UW
1600 /* A string value used with INTERNALVAR_STRING. */
1601 char *string;
4fa62494
UW
1602 } u;
1603};
1604
c906108c
SS
1605static struct internalvar *internalvars;
1606
3e43a32a
MS
1607/* If the variable does not already exist create it and give it the
1608 value given. If no value is given then the default is zero. */
53e5f3cf
AS
1609static void
1610init_if_undefined_command (char* args, int from_tty)
1611{
1612 struct internalvar* intvar;
1613
1614 /* Parse the expression - this is taken from set_command(). */
1615 struct expression *expr = parse_expression (args);
1616 register struct cleanup *old_chain =
1617 make_cleanup (free_current_contents, &expr);
1618
1619 /* Validate the expression.
1620 Was the expression an assignment?
1621 Or even an expression at all? */
1622 if (expr->nelts == 0 || expr->elts[0].opcode != BINOP_ASSIGN)
1623 error (_("Init-if-undefined requires an assignment expression."));
1624
1625 /* Extract the variable from the parsed expression.
1626 In the case of an assign the lvalue will be in elts[1] and elts[2]. */
1627 if (expr->elts[1].opcode != OP_INTERNALVAR)
3e43a32a
MS
1628 error (_("The first parameter to init-if-undefined "
1629 "should be a GDB variable."));
53e5f3cf
AS
1630 intvar = expr->elts[2].internalvar;
1631
1632 /* Only evaluate the expression if the lvalue is void.
1633 This may still fail if the expresssion is invalid. */
78267919 1634 if (intvar->kind == INTERNALVAR_VOID)
53e5f3cf
AS
1635 evaluate_expression (expr);
1636
1637 do_cleanups (old_chain);
1638}
1639
1640
c906108c
SS
1641/* Look up an internal variable with name NAME. NAME should not
1642 normally include a dollar sign.
1643
1644 If the specified internal variable does not exist,
c4a3d09a 1645 the return value is NULL. */
c906108c
SS
1646
1647struct internalvar *
bc3b79fd 1648lookup_only_internalvar (const char *name)
c906108c 1649{
52f0bd74 1650 struct internalvar *var;
c906108c
SS
1651
1652 for (var = internalvars; var; var = var->next)
5cb316ef 1653 if (strcmp (var->name, name) == 0)
c906108c
SS
1654 return var;
1655
c4a3d09a
MF
1656 return NULL;
1657}
1658
1659
1660/* Create an internal variable with name NAME and with a void value.
1661 NAME should not normally include a dollar sign. */
1662
1663struct internalvar *
bc3b79fd 1664create_internalvar (const char *name)
c4a3d09a
MF
1665{
1666 struct internalvar *var;
a109c7c1 1667
c906108c 1668 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
1754f103 1669 var->name = concat (name, (char *)NULL);
78267919 1670 var->kind = INTERNALVAR_VOID;
c906108c
SS
1671 var->next = internalvars;
1672 internalvars = var;
1673 return var;
1674}
1675
4aa995e1
PA
1676/* Create an internal variable with name NAME and register FUN as the
1677 function that value_of_internalvar uses to create a value whenever
1678 this variable is referenced. NAME should not normally include a
1679 dollar sign. */
1680
1681struct internalvar *
1682create_internalvar_type_lazy (char *name, internalvar_make_value fun)
1683{
4fa62494 1684 struct internalvar *var = create_internalvar (name);
a109c7c1 1685
78267919
UW
1686 var->kind = INTERNALVAR_MAKE_VALUE;
1687 var->u.make_value = fun;
4aa995e1
PA
1688 return var;
1689}
c4a3d09a
MF
1690
1691/* Look up an internal variable with name NAME. NAME should not
1692 normally include a dollar sign.
1693
1694 If the specified internal variable does not exist,
1695 one is created, with a void value. */
1696
1697struct internalvar *
bc3b79fd 1698lookup_internalvar (const char *name)
c4a3d09a
MF
1699{
1700 struct internalvar *var;
1701
1702 var = lookup_only_internalvar (name);
1703 if (var)
1704 return var;
1705
1706 return create_internalvar (name);
1707}
1708
78267919
UW
1709/* Return current value of internal variable VAR. For variables that
1710 are not inherently typed, use a value type appropriate for GDBARCH. */
1711
f23631e4 1712struct value *
78267919 1713value_of_internalvar (struct gdbarch *gdbarch, struct internalvar *var)
c906108c 1714{
f23631e4 1715 struct value *val;
0914bcdb
SS
1716 struct trace_state_variable *tsv;
1717
1718 /* If there is a trace state variable of the same name, assume that
1719 is what we really want to see. */
1720 tsv = find_trace_state_variable (var->name);
1721 if (tsv)
1722 {
1723 tsv->value_known = target_get_trace_state_variable_value (tsv->number,
1724 &(tsv->value));
1725 if (tsv->value_known)
1726 val = value_from_longest (builtin_type (gdbarch)->builtin_int64,
1727 tsv->value);
1728 else
1729 val = allocate_value (builtin_type (gdbarch)->builtin_void);
1730 return val;
1731 }
c906108c 1732
78267919 1733 switch (var->kind)
5f5233d4 1734 {
78267919
UW
1735 case INTERNALVAR_VOID:
1736 val = allocate_value (builtin_type (gdbarch)->builtin_void);
1737 break;
4fa62494 1738
78267919
UW
1739 case INTERNALVAR_FUNCTION:
1740 val = allocate_value (builtin_type (gdbarch)->internal_fn);
1741 break;
4fa62494 1742
cab0c772
UW
1743 case INTERNALVAR_INTEGER:
1744 if (!var->u.integer.type)
78267919 1745 val = value_from_longest (builtin_type (gdbarch)->builtin_int,
cab0c772 1746 var->u.integer.val);
78267919 1747 else
cab0c772
UW
1748 val = value_from_longest (var->u.integer.type, var->u.integer.val);
1749 break;
1750
78267919
UW
1751 case INTERNALVAR_STRING:
1752 val = value_cstring (var->u.string, strlen (var->u.string),
1753 builtin_type (gdbarch)->builtin_char);
1754 break;
4fa62494 1755
78267919
UW
1756 case INTERNALVAR_VALUE:
1757 val = value_copy (var->u.value);
4aa995e1
PA
1758 if (value_lazy (val))
1759 value_fetch_lazy (val);
78267919 1760 break;
4aa995e1 1761
78267919
UW
1762 case INTERNALVAR_MAKE_VALUE:
1763 val = (*var->u.make_value) (gdbarch, var);
1764 break;
1765
1766 default:
9b20d036 1767 internal_error (__FILE__, __LINE__, _("bad kind"));
78267919
UW
1768 }
1769
1770 /* Change the VALUE_LVAL to lval_internalvar so that future operations
1771 on this value go back to affect the original internal variable.
1772
1773 Do not do this for INTERNALVAR_MAKE_VALUE variables, as those have
1774 no underlying modifyable state in the internal variable.
1775
1776 Likewise, if the variable's value is a computed lvalue, we want
1777 references to it to produce another computed lvalue, where
1778 references and assignments actually operate through the
1779 computed value's functions.
1780
1781 This means that internal variables with computed values
1782 behave a little differently from other internal variables:
1783 assignments to them don't just replace the previous value
1784 altogether. At the moment, this seems like the behavior we
1785 want. */
1786
1787 if (var->kind != INTERNALVAR_MAKE_VALUE
1788 && val->lval != lval_computed)
1789 {
1790 VALUE_LVAL (val) = lval_internalvar;
1791 VALUE_INTERNALVAR (val) = var;
5f5233d4 1792 }
d3c139e9 1793
4fa62494
UW
1794 return val;
1795}
d3c139e9 1796
4fa62494
UW
1797int
1798get_internalvar_integer (struct internalvar *var, LONGEST *result)
1799{
3158c6ed 1800 if (var->kind == INTERNALVAR_INTEGER)
4fa62494 1801 {
cab0c772
UW
1802 *result = var->u.integer.val;
1803 return 1;
3158c6ed 1804 }
d3c139e9 1805
3158c6ed
PA
1806 if (var->kind == INTERNALVAR_VALUE)
1807 {
1808 struct type *type = check_typedef (value_type (var->u.value));
1809
1810 if (TYPE_CODE (type) == TYPE_CODE_INT)
1811 {
1812 *result = value_as_long (var->u.value);
1813 return 1;
1814 }
4fa62494 1815 }
3158c6ed
PA
1816
1817 return 0;
4fa62494 1818}
d3c139e9 1819
4fa62494
UW
1820static int
1821get_internalvar_function (struct internalvar *var,
1822 struct internal_function **result)
1823{
78267919 1824 switch (var->kind)
d3c139e9 1825 {
78267919
UW
1826 case INTERNALVAR_FUNCTION:
1827 *result = var->u.fn.function;
4fa62494 1828 return 1;
d3c139e9 1829
4fa62494
UW
1830 default:
1831 return 0;
1832 }
c906108c
SS
1833}
1834
1835void
fba45db2 1836set_internalvar_component (struct internalvar *var, int offset, int bitpos,
f23631e4 1837 int bitsize, struct value *newval)
c906108c 1838{
4fa62494 1839 gdb_byte *addr;
c906108c 1840
78267919 1841 switch (var->kind)
4fa62494 1842 {
78267919
UW
1843 case INTERNALVAR_VALUE:
1844 addr = value_contents_writeable (var->u.value);
4fa62494
UW
1845
1846 if (bitsize)
50810684 1847 modify_field (value_type (var->u.value), addr + offset,
4fa62494
UW
1848 value_as_long (newval), bitpos, bitsize);
1849 else
1850 memcpy (addr + offset, value_contents (newval),
1851 TYPE_LENGTH (value_type (newval)));
1852 break;
78267919
UW
1853
1854 default:
1855 /* We can never get a component of any other kind. */
9b20d036 1856 internal_error (__FILE__, __LINE__, _("set_internalvar_component"));
4fa62494 1857 }
c906108c
SS
1858}
1859
1860void
f23631e4 1861set_internalvar (struct internalvar *var, struct value *val)
c906108c 1862{
78267919 1863 enum internalvar_kind new_kind;
4fa62494 1864 union internalvar_data new_data = { 0 };
c906108c 1865
78267919 1866 if (var->kind == INTERNALVAR_FUNCTION && var->u.fn.canonical)
bc3b79fd
TJB
1867 error (_("Cannot overwrite convenience function %s"), var->name);
1868
4fa62494 1869 /* Prepare new contents. */
78267919 1870 switch (TYPE_CODE (check_typedef (value_type (val))))
4fa62494
UW
1871 {
1872 case TYPE_CODE_VOID:
78267919 1873 new_kind = INTERNALVAR_VOID;
4fa62494
UW
1874 break;
1875
1876 case TYPE_CODE_INTERNAL_FUNCTION:
1877 gdb_assert (VALUE_LVAL (val) == lval_internalvar);
78267919
UW
1878 new_kind = INTERNALVAR_FUNCTION;
1879 get_internalvar_function (VALUE_INTERNALVAR (val),
1880 &new_data.fn.function);
1881 /* Copies created here are never canonical. */
4fa62494
UW
1882 break;
1883
4fa62494 1884 default:
78267919
UW
1885 new_kind = INTERNALVAR_VALUE;
1886 new_data.value = value_copy (val);
1887 new_data.value->modifiable = 1;
4fa62494
UW
1888
1889 /* Force the value to be fetched from the target now, to avoid problems
1890 later when this internalvar is referenced and the target is gone or
1891 has changed. */
78267919
UW
1892 if (value_lazy (new_data.value))
1893 value_fetch_lazy (new_data.value);
4fa62494
UW
1894
1895 /* Release the value from the value chain to prevent it from being
1896 deleted by free_all_values. From here on this function should not
1897 call error () until new_data is installed into the var->u to avoid
1898 leaking memory. */
78267919 1899 release_value (new_data.value);
4fa62494
UW
1900 break;
1901 }
1902
1903 /* Clean up old contents. */
1904 clear_internalvar (var);
1905
1906 /* Switch over. */
78267919 1907 var->kind = new_kind;
4fa62494 1908 var->u = new_data;
c906108c
SS
1909 /* End code which must not call error(). */
1910}
1911
4fa62494
UW
1912void
1913set_internalvar_integer (struct internalvar *var, LONGEST l)
1914{
1915 /* Clean up old contents. */
1916 clear_internalvar (var);
1917
cab0c772
UW
1918 var->kind = INTERNALVAR_INTEGER;
1919 var->u.integer.type = NULL;
1920 var->u.integer.val = l;
78267919
UW
1921}
1922
1923void
1924set_internalvar_string (struct internalvar *var, const char *string)
1925{
1926 /* Clean up old contents. */
1927 clear_internalvar (var);
1928
1929 var->kind = INTERNALVAR_STRING;
1930 var->u.string = xstrdup (string);
4fa62494
UW
1931}
1932
1933static void
1934set_internalvar_function (struct internalvar *var, struct internal_function *f)
1935{
1936 /* Clean up old contents. */
1937 clear_internalvar (var);
1938
78267919
UW
1939 var->kind = INTERNALVAR_FUNCTION;
1940 var->u.fn.function = f;
1941 var->u.fn.canonical = 1;
1942 /* Variables installed here are always the canonical version. */
4fa62494
UW
1943}
1944
1945void
1946clear_internalvar (struct internalvar *var)
1947{
1948 /* Clean up old contents. */
78267919 1949 switch (var->kind)
4fa62494 1950 {
78267919
UW
1951 case INTERNALVAR_VALUE:
1952 value_free (var->u.value);
1953 break;
1954
1955 case INTERNALVAR_STRING:
1956 xfree (var->u.string);
4fa62494
UW
1957 break;
1958
1959 default:
4fa62494
UW
1960 break;
1961 }
1962
78267919
UW
1963 /* Reset to void kind. */
1964 var->kind = INTERNALVAR_VOID;
4fa62494
UW
1965}
1966
c906108c 1967char *
fba45db2 1968internalvar_name (struct internalvar *var)
c906108c
SS
1969{
1970 return var->name;
1971}
1972
4fa62494
UW
1973static struct internal_function *
1974create_internal_function (const char *name,
1975 internal_function_fn handler, void *cookie)
bc3b79fd 1976{
bc3b79fd 1977 struct internal_function *ifn = XNEW (struct internal_function);
a109c7c1 1978
bc3b79fd
TJB
1979 ifn->name = xstrdup (name);
1980 ifn->handler = handler;
1981 ifn->cookie = cookie;
4fa62494 1982 return ifn;
bc3b79fd
TJB
1983}
1984
1985char *
1986value_internal_function_name (struct value *val)
1987{
4fa62494
UW
1988 struct internal_function *ifn;
1989 int result;
1990
1991 gdb_assert (VALUE_LVAL (val) == lval_internalvar);
1992 result = get_internalvar_function (VALUE_INTERNALVAR (val), &ifn);
1993 gdb_assert (result);
1994
bc3b79fd
TJB
1995 return ifn->name;
1996}
1997
1998struct value *
d452c4bc
UW
1999call_internal_function (struct gdbarch *gdbarch,
2000 const struct language_defn *language,
2001 struct value *func, int argc, struct value **argv)
bc3b79fd 2002{
4fa62494
UW
2003 struct internal_function *ifn;
2004 int result;
2005
2006 gdb_assert (VALUE_LVAL (func) == lval_internalvar);
2007 result = get_internalvar_function (VALUE_INTERNALVAR (func), &ifn);
2008 gdb_assert (result);
2009
d452c4bc 2010 return (*ifn->handler) (gdbarch, language, ifn->cookie, argc, argv);
bc3b79fd
TJB
2011}
2012
2013/* The 'function' command. This does nothing -- it is just a
2014 placeholder to let "help function NAME" work. This is also used as
2015 the implementation of the sub-command that is created when
2016 registering an internal function. */
2017static void
2018function_command (char *command, int from_tty)
2019{
2020 /* Do nothing. */
2021}
2022
2023/* Clean up if an internal function's command is destroyed. */
2024static void
2025function_destroyer (struct cmd_list_element *self, void *ignore)
2026{
2027 xfree (self->name);
2028 xfree (self->doc);
2029}
2030
2031/* Add a new internal function. NAME is the name of the function; DOC
2032 is a documentation string describing the function. HANDLER is
2033 called when the function is invoked. COOKIE is an arbitrary
2034 pointer which is passed to HANDLER and is intended for "user
2035 data". */
2036void
2037add_internal_function (const char *name, const char *doc,
2038 internal_function_fn handler, void *cookie)
2039{
2040 struct cmd_list_element *cmd;
4fa62494 2041 struct internal_function *ifn;
bc3b79fd 2042 struct internalvar *var = lookup_internalvar (name);
4fa62494
UW
2043
2044 ifn = create_internal_function (name, handler, cookie);
2045 set_internalvar_function (var, ifn);
bc3b79fd
TJB
2046
2047 cmd = add_cmd (xstrdup (name), no_class, function_command, (char *) doc,
2048 &functionlist);
2049 cmd->destroyer = function_destroyer;
2050}
2051
ae5a43e0
DJ
2052/* Update VALUE before discarding OBJFILE. COPIED_TYPES is used to
2053 prevent cycles / duplicates. */
2054
4e7a5ef5 2055void
ae5a43e0
DJ
2056preserve_one_value (struct value *value, struct objfile *objfile,
2057 htab_t copied_types)
2058{
2059 if (TYPE_OBJFILE (value->type) == objfile)
2060 value->type = copy_type_recursive (objfile, value->type, copied_types);
2061
2062 if (TYPE_OBJFILE (value->enclosing_type) == objfile)
2063 value->enclosing_type = copy_type_recursive (objfile,
2064 value->enclosing_type,
2065 copied_types);
2066}
2067
78267919
UW
2068/* Likewise for internal variable VAR. */
2069
2070static void
2071preserve_one_internalvar (struct internalvar *var, struct objfile *objfile,
2072 htab_t copied_types)
2073{
2074 switch (var->kind)
2075 {
cab0c772
UW
2076 case INTERNALVAR_INTEGER:
2077 if (var->u.integer.type && TYPE_OBJFILE (var->u.integer.type) == objfile)
2078 var->u.integer.type
2079 = copy_type_recursive (objfile, var->u.integer.type, copied_types);
2080 break;
2081
78267919
UW
2082 case INTERNALVAR_VALUE:
2083 preserve_one_value (var->u.value, objfile, copied_types);
2084 break;
2085 }
2086}
2087
ae5a43e0
DJ
2088/* Update the internal variables and value history when OBJFILE is
2089 discarded; we must copy the types out of the objfile. New global types
2090 will be created for every convenience variable which currently points to
2091 this objfile's types, and the convenience variables will be adjusted to
2092 use the new global types. */
c906108c
SS
2093
2094void
ae5a43e0 2095preserve_values (struct objfile *objfile)
c906108c 2096{
ae5a43e0
DJ
2097 htab_t copied_types;
2098 struct value_history_chunk *cur;
52f0bd74 2099 struct internalvar *var;
ae5a43e0 2100 int i;
c906108c 2101
ae5a43e0
DJ
2102 /* Create the hash table. We allocate on the objfile's obstack, since
2103 it is soon to be deleted. */
2104 copied_types = create_copied_types_hash (objfile);
2105
2106 for (cur = value_history_chain; cur; cur = cur->next)
2107 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
2108 if (cur->values[i])
2109 preserve_one_value (cur->values[i], objfile, copied_types);
2110
2111 for (var = internalvars; var; var = var->next)
78267919 2112 preserve_one_internalvar (var, objfile, copied_types);
ae5a43e0 2113
4e7a5ef5 2114 preserve_python_values (objfile, copied_types);
a08702d6 2115
ae5a43e0 2116 htab_delete (copied_types);
c906108c
SS
2117}
2118
2119static void
fba45db2 2120show_convenience (char *ignore, int from_tty)
c906108c 2121{
e17c207e 2122 struct gdbarch *gdbarch = get_current_arch ();
52f0bd74 2123 struct internalvar *var;
c906108c 2124 int varseen = 0;
79a45b7d 2125 struct value_print_options opts;
c906108c 2126
79a45b7d 2127 get_user_print_options (&opts);
c906108c
SS
2128 for (var = internalvars; var; var = var->next)
2129 {
c709acd1
PA
2130 volatile struct gdb_exception ex;
2131
c906108c
SS
2132 if (!varseen)
2133 {
2134 varseen = 1;
2135 }
a3f17187 2136 printf_filtered (("$%s = "), var->name);
c709acd1
PA
2137
2138 TRY_CATCH (ex, RETURN_MASK_ERROR)
2139 {
2140 struct value *val;
2141
2142 val = value_of_internalvar (gdbarch, var);
2143 value_print (val, gdb_stdout, &opts);
2144 }
2145 if (ex.reason < 0)
2146 fprintf_filtered (gdb_stdout, _("<error: %s>"), ex.message);
a3f17187 2147 printf_filtered (("\n"));
c906108c
SS
2148 }
2149 if (!varseen)
3e43a32a
MS
2150 printf_unfiltered (_("No debugger convenience variables now defined.\n"
2151 "Convenience variables have "
2152 "names starting with \"$\";\n"
2153 "use \"set\" as in \"set "
2154 "$foo = 5\" to define them.\n"));
c906108c
SS
2155}
2156\f
2157/* Extract a value as a C number (either long or double).
2158 Knows how to convert fixed values to double, or
2159 floating values to long.
2160 Does not deallocate the value. */
2161
2162LONGEST
f23631e4 2163value_as_long (struct value *val)
c906108c
SS
2164{
2165 /* This coerces arrays and functions, which is necessary (e.g.
2166 in disassemble_command). It also dereferences references, which
2167 I suspect is the most logical thing to do. */
994b9211 2168 val = coerce_array (val);
0fd88904 2169 return unpack_long (value_type (val), value_contents (val));
c906108c
SS
2170}
2171
2172DOUBLEST
f23631e4 2173value_as_double (struct value *val)
c906108c
SS
2174{
2175 DOUBLEST foo;
2176 int inv;
c5aa993b 2177
0fd88904 2178 foo = unpack_double (value_type (val), value_contents (val), &inv);
c906108c 2179 if (inv)
8a3fe4f8 2180 error (_("Invalid floating value found in program."));
c906108c
SS
2181 return foo;
2182}
4ef30785 2183
581e13c1 2184/* Extract a value as a C pointer. Does not deallocate the value.
4478b372
JB
2185 Note that val's type may not actually be a pointer; value_as_long
2186 handles all the cases. */
c906108c 2187CORE_ADDR
f23631e4 2188value_as_address (struct value *val)
c906108c 2189{
50810684
UW
2190 struct gdbarch *gdbarch = get_type_arch (value_type (val));
2191
c906108c
SS
2192 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2193 whether we want this to be true eventually. */
2194#if 0
bf6ae464 2195 /* gdbarch_addr_bits_remove is wrong if we are being called for a
c906108c
SS
2196 non-address (e.g. argument to "signal", "info break", etc.), or
2197 for pointers to char, in which the low bits *are* significant. */
50810684 2198 return gdbarch_addr_bits_remove (gdbarch, value_as_long (val));
c906108c 2199#else
f312f057
JB
2200
2201 /* There are several targets (IA-64, PowerPC, and others) which
2202 don't represent pointers to functions as simply the address of
2203 the function's entry point. For example, on the IA-64, a
2204 function pointer points to a two-word descriptor, generated by
2205 the linker, which contains the function's entry point, and the
2206 value the IA-64 "global pointer" register should have --- to
2207 support position-independent code. The linker generates
2208 descriptors only for those functions whose addresses are taken.
2209
2210 On such targets, it's difficult for GDB to convert an arbitrary
2211 function address into a function pointer; it has to either find
2212 an existing descriptor for that function, or call malloc and
2213 build its own. On some targets, it is impossible for GDB to
2214 build a descriptor at all: the descriptor must contain a jump
2215 instruction; data memory cannot be executed; and code memory
2216 cannot be modified.
2217
2218 Upon entry to this function, if VAL is a value of type `function'
2219 (that is, TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC), then
42ae5230 2220 value_address (val) is the address of the function. This is what
f312f057
JB
2221 you'll get if you evaluate an expression like `main'. The call
2222 to COERCE_ARRAY below actually does all the usual unary
2223 conversions, which includes converting values of type `function'
2224 to `pointer to function'. This is the challenging conversion
2225 discussed above. Then, `unpack_long' will convert that pointer
2226 back into an address.
2227
2228 So, suppose the user types `disassemble foo' on an architecture
2229 with a strange function pointer representation, on which GDB
2230 cannot build its own descriptors, and suppose further that `foo'
2231 has no linker-built descriptor. The address->pointer conversion
2232 will signal an error and prevent the command from running, even
2233 though the next step would have been to convert the pointer
2234 directly back into the same address.
2235
2236 The following shortcut avoids this whole mess. If VAL is a
2237 function, just return its address directly. */
df407dfe
AC
2238 if (TYPE_CODE (value_type (val)) == TYPE_CODE_FUNC
2239 || TYPE_CODE (value_type (val)) == TYPE_CODE_METHOD)
42ae5230 2240 return value_address (val);
f312f057 2241
994b9211 2242 val = coerce_array (val);
fc0c74b1
AC
2243
2244 /* Some architectures (e.g. Harvard), map instruction and data
2245 addresses onto a single large unified address space. For
2246 instance: An architecture may consider a large integer in the
2247 range 0x10000000 .. 0x1000ffff to already represent a data
2248 addresses (hence not need a pointer to address conversion) while
2249 a small integer would still need to be converted integer to
2250 pointer to address. Just assume such architectures handle all
2251 integer conversions in a single function. */
2252
2253 /* JimB writes:
2254
2255 I think INTEGER_TO_ADDRESS is a good idea as proposed --- but we
2256 must admonish GDB hackers to make sure its behavior matches the
2257 compiler's, whenever possible.
2258
2259 In general, I think GDB should evaluate expressions the same way
2260 the compiler does. When the user copies an expression out of
2261 their source code and hands it to a `print' command, they should
2262 get the same value the compiler would have computed. Any
2263 deviation from this rule can cause major confusion and annoyance,
2264 and needs to be justified carefully. In other words, GDB doesn't
2265 really have the freedom to do these conversions in clever and
2266 useful ways.
2267
2268 AndrewC pointed out that users aren't complaining about how GDB
2269 casts integers to pointers; they are complaining that they can't
2270 take an address from a disassembly listing and give it to `x/i'.
2271 This is certainly important.
2272
79dd2d24 2273 Adding an architecture method like integer_to_address() certainly
fc0c74b1
AC
2274 makes it possible for GDB to "get it right" in all circumstances
2275 --- the target has complete control over how things get done, so
2276 people can Do The Right Thing for their target without breaking
2277 anyone else. The standard doesn't specify how integers get
2278 converted to pointers; usually, the ABI doesn't either, but
2279 ABI-specific code is a more reasonable place to handle it. */
2280
df407dfe
AC
2281 if (TYPE_CODE (value_type (val)) != TYPE_CODE_PTR
2282 && TYPE_CODE (value_type (val)) != TYPE_CODE_REF
50810684
UW
2283 && gdbarch_integer_to_address_p (gdbarch))
2284 return gdbarch_integer_to_address (gdbarch, value_type (val),
0fd88904 2285 value_contents (val));
fc0c74b1 2286
0fd88904 2287 return unpack_long (value_type (val), value_contents (val));
c906108c
SS
2288#endif
2289}
2290\f
2291/* Unpack raw data (copied from debugee, target byte order) at VALADDR
2292 as a long, or as a double, assuming the raw data is described
2293 by type TYPE. Knows how to convert different sizes of values
2294 and can convert between fixed and floating point. We don't assume
2295 any alignment for the raw data. Return value is in host byte order.
2296
2297 If you want functions and arrays to be coerced to pointers, and
2298 references to be dereferenced, call value_as_long() instead.
2299
2300 C++: It is assumed that the front-end has taken care of
2301 all matters concerning pointers to members. A pointer
2302 to member which reaches here is considered to be equivalent
2303 to an INT (or some size). After all, it is only an offset. */
2304
2305LONGEST
fc1a4b47 2306unpack_long (struct type *type, const gdb_byte *valaddr)
c906108c 2307{
e17a4113 2308 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
52f0bd74
AC
2309 enum type_code code = TYPE_CODE (type);
2310 int len = TYPE_LENGTH (type);
2311 int nosign = TYPE_UNSIGNED (type);
c906108c 2312
c906108c
SS
2313 switch (code)
2314 {
2315 case TYPE_CODE_TYPEDEF:
2316 return unpack_long (check_typedef (type), valaddr);
2317 case TYPE_CODE_ENUM:
4f2aea11 2318 case TYPE_CODE_FLAGS:
c906108c
SS
2319 case TYPE_CODE_BOOL:
2320 case TYPE_CODE_INT:
2321 case TYPE_CODE_CHAR:
2322 case TYPE_CODE_RANGE:
0d5de010 2323 case TYPE_CODE_MEMBERPTR:
c906108c 2324 if (nosign)
e17a4113 2325 return extract_unsigned_integer (valaddr, len, byte_order);
c906108c 2326 else
e17a4113 2327 return extract_signed_integer (valaddr, len, byte_order);
c906108c
SS
2328
2329 case TYPE_CODE_FLT:
96d2f608 2330 return extract_typed_floating (valaddr, type);
c906108c 2331
4ef30785
TJB
2332 case TYPE_CODE_DECFLOAT:
2333 /* libdecnumber has a function to convert from decimal to integer, but
2334 it doesn't work when the decimal number has a fractional part. */
e17a4113 2335 return decimal_to_doublest (valaddr, len, byte_order);
4ef30785 2336
c906108c
SS
2337 case TYPE_CODE_PTR:
2338 case TYPE_CODE_REF:
2339 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
c5aa993b 2340 whether we want this to be true eventually. */
4478b372 2341 return extract_typed_address (valaddr, type);
c906108c 2342
c906108c 2343 default:
8a3fe4f8 2344 error (_("Value can't be converted to integer."));
c906108c 2345 }
c5aa993b 2346 return 0; /* Placate lint. */
c906108c
SS
2347}
2348
2349/* Return a double value from the specified type and address.
2350 INVP points to an int which is set to 0 for valid value,
2351 1 for invalid value (bad float format). In either case,
2352 the returned double is OK to use. Argument is in target
2353 format, result is in host format. */
2354
2355DOUBLEST
fc1a4b47 2356unpack_double (struct type *type, const gdb_byte *valaddr, int *invp)
c906108c 2357{
e17a4113 2358 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
c906108c
SS
2359 enum type_code code;
2360 int len;
2361 int nosign;
2362
581e13c1 2363 *invp = 0; /* Assume valid. */
c906108c
SS
2364 CHECK_TYPEDEF (type);
2365 code = TYPE_CODE (type);
2366 len = TYPE_LENGTH (type);
2367 nosign = TYPE_UNSIGNED (type);
2368 if (code == TYPE_CODE_FLT)
2369 {
75bc7ddf
AC
2370 /* NOTE: cagney/2002-02-19: There was a test here to see if the
2371 floating-point value was valid (using the macro
2372 INVALID_FLOAT). That test/macro have been removed.
2373
2374 It turns out that only the VAX defined this macro and then
2375 only in a non-portable way. Fixing the portability problem
2376 wouldn't help since the VAX floating-point code is also badly
2377 bit-rotten. The target needs to add definitions for the
ea06eb3d 2378 methods gdbarch_float_format and gdbarch_double_format - these
75bc7ddf
AC
2379 exactly describe the target floating-point format. The
2380 problem here is that the corresponding floatformat_vax_f and
2381 floatformat_vax_d values these methods should be set to are
2382 also not defined either. Oops!
2383
2384 Hopefully someone will add both the missing floatformat
ac79b88b
DJ
2385 definitions and the new cases for floatformat_is_valid (). */
2386
2387 if (!floatformat_is_valid (floatformat_from_type (type), valaddr))
2388 {
2389 *invp = 1;
2390 return 0.0;
2391 }
2392
96d2f608 2393 return extract_typed_floating (valaddr, type);
c906108c 2394 }
4ef30785 2395 else if (code == TYPE_CODE_DECFLOAT)
e17a4113 2396 return decimal_to_doublest (valaddr, len, byte_order);
c906108c
SS
2397 else if (nosign)
2398 {
2399 /* Unsigned -- be sure we compensate for signed LONGEST. */
c906108c 2400 return (ULONGEST) unpack_long (type, valaddr);
c906108c
SS
2401 }
2402 else
2403 {
2404 /* Signed -- we are OK with unpack_long. */
2405 return unpack_long (type, valaddr);
2406 }
2407}
2408
2409/* Unpack raw data (copied from debugee, target byte order) at VALADDR
2410 as a CORE_ADDR, assuming the raw data is described by type TYPE.
2411 We don't assume any alignment for the raw data. Return value is in
2412 host byte order.
2413
2414 If you want functions and arrays to be coerced to pointers, and
1aa20aa8 2415 references to be dereferenced, call value_as_address() instead.
c906108c
SS
2416
2417 C++: It is assumed that the front-end has taken care of
2418 all matters concerning pointers to members. A pointer
2419 to member which reaches here is considered to be equivalent
2420 to an INT (or some size). After all, it is only an offset. */
2421
2422CORE_ADDR
fc1a4b47 2423unpack_pointer (struct type *type, const gdb_byte *valaddr)
c906108c
SS
2424{
2425 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2426 whether we want this to be true eventually. */
2427 return unpack_long (type, valaddr);
2428}
4478b372 2429
c906108c 2430\f
1596cb5d 2431/* Get the value of the FIELDNO'th field (which must be static) of
2c2738a0 2432 TYPE. Return NULL if the field doesn't exist or has been
581e13c1 2433 optimized out. */
c906108c 2434
f23631e4 2435struct value *
fba45db2 2436value_static_field (struct type *type, int fieldno)
c906108c 2437{
948e66d9
DJ
2438 struct value *retval;
2439
1596cb5d 2440 switch (TYPE_FIELD_LOC_KIND (type, fieldno))
c906108c 2441 {
1596cb5d 2442 case FIELD_LOC_KIND_PHYSADDR:
52e9fde8
SS
2443 retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
2444 TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
1596cb5d
DE
2445 break;
2446 case FIELD_LOC_KIND_PHYSNAME:
c906108c 2447 {
ff355380 2448 const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
581e13c1 2449 /* TYPE_FIELD_NAME (type, fieldno); */
2570f2b7 2450 struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
94af9270 2451
948e66d9 2452 if (sym == NULL)
c906108c 2453 {
a109c7c1 2454 /* With some compilers, e.g. HP aCC, static data members are
581e13c1 2455 reported as non-debuggable symbols. */
a109c7c1
MS
2456 struct minimal_symbol *msym = lookup_minimal_symbol (phys_name,
2457 NULL, NULL);
2458
c906108c
SS
2459 if (!msym)
2460 return NULL;
2461 else
c5aa993b 2462 {
52e9fde8
SS
2463 retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
2464 SYMBOL_VALUE_ADDRESS (msym));
c906108c
SS
2465 }
2466 }
2467 else
515ed532 2468 retval = value_of_variable (sym, NULL);
1596cb5d 2469 break;
c906108c 2470 }
1596cb5d 2471 default:
f3574227 2472 gdb_assert_not_reached ("unexpected field location kind");
1596cb5d
DE
2473 }
2474
948e66d9 2475 return retval;
c906108c
SS
2476}
2477
4dfea560
DE
2478/* Change the enclosing type of a value object VAL to NEW_ENCL_TYPE.
2479 You have to be careful here, since the size of the data area for the value
2480 is set by the length of the enclosing type. So if NEW_ENCL_TYPE is bigger
2481 than the old enclosing type, you have to allocate more space for the
2482 data. */
2b127877 2483
4dfea560
DE
2484void
2485set_value_enclosing_type (struct value *val, struct type *new_encl_type)
2b127877 2486{
3e3d7139
JG
2487 if (TYPE_LENGTH (new_encl_type) > TYPE_LENGTH (value_enclosing_type (val)))
2488 val->contents =
2489 (gdb_byte *) xrealloc (val->contents, TYPE_LENGTH (new_encl_type));
2490
2491 val->enclosing_type = new_encl_type;
2b127877
DB
2492}
2493
c906108c
SS
2494/* Given a value ARG1 (offset by OFFSET bytes)
2495 of a struct or union type ARG_TYPE,
2496 extract and return the value of one of its (non-static) fields.
581e13c1 2497 FIELDNO says which field. */
c906108c 2498
f23631e4
AC
2499struct value *
2500value_primitive_field (struct value *arg1, int offset,
aa1ee363 2501 int fieldno, struct type *arg_type)
c906108c 2502{
f23631e4 2503 struct value *v;
52f0bd74 2504 struct type *type;
c906108c
SS
2505
2506 CHECK_TYPEDEF (arg_type);
2507 type = TYPE_FIELD_TYPE (arg_type, fieldno);
c54eabfa
JK
2508
2509 /* Call check_typedef on our type to make sure that, if TYPE
2510 is a TYPE_CODE_TYPEDEF, its length is set to the length
2511 of the target type instead of zero. However, we do not
2512 replace the typedef type by the target type, because we want
2513 to keep the typedef in order to be able to print the type
2514 description correctly. */
2515 check_typedef (type);
c906108c 2516
22c05d8a
JK
2517 if (value_optimized_out (arg1))
2518 v = allocate_optimized_out_value (type);
2519 else if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
c906108c 2520 {
22c05d8a
JK
2521 /* Handle packed fields.
2522
2523 Create a new value for the bitfield, with bitpos and bitsize
4ea48cc1
DJ
2524 set. If possible, arrange offset and bitpos so that we can
2525 do a single aligned read of the size of the containing type.
2526 Otherwise, adjust offset to the byte containing the first
2527 bit. Assume that the address, offset, and embedded offset
2528 are sufficiently aligned. */
22c05d8a 2529
4ea48cc1
DJ
2530 int bitpos = TYPE_FIELD_BITPOS (arg_type, fieldno);
2531 int container_bitsize = TYPE_LENGTH (type) * 8;
2532
2533 v = allocate_value_lazy (type);
df407dfe 2534 v->bitsize = TYPE_FIELD_BITSIZE (arg_type, fieldno);
4ea48cc1
DJ
2535 if ((bitpos % container_bitsize) + v->bitsize <= container_bitsize
2536 && TYPE_LENGTH (type) <= (int) sizeof (LONGEST))
2537 v->bitpos = bitpos % container_bitsize;
2538 else
2539 v->bitpos = bitpos % 8;
38f12cfc
TT
2540 v->offset = (value_embedded_offset (arg1)
2541 + offset
2542 + (bitpos - v->bitpos) / 8);
4ea48cc1
DJ
2543 v->parent = arg1;
2544 value_incref (v->parent);
2545 if (!value_lazy (arg1))
2546 value_fetch_lazy (v);
c906108c
SS
2547 }
2548 else if (fieldno < TYPE_N_BASECLASSES (arg_type))
2549 {
2550 /* This field is actually a base subobject, so preserve the
39d37385
PA
2551 entire object's contents for later references to virtual
2552 bases, etc. */
be335936 2553 int boffset;
a4e2ee12
DJ
2554
2555 /* Lazy register values with offsets are not supported. */
2556 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
2557 value_fetch_lazy (arg1);
2558
9f9f1f31
TT
2559 /* We special case virtual inheritance here because this
2560 requires access to the contents, which we would rather avoid
2561 for references to ordinary fields of unavailable values. */
2562 if (BASETYPE_VIA_VIRTUAL (arg_type, fieldno))
2563 boffset = baseclass_offset (arg_type, fieldno,
2564 value_contents (arg1),
2565 value_embedded_offset (arg1),
2566 value_address (arg1),
2567 arg1);
2568 else
2569 boffset = TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
be335936 2570
a4e2ee12 2571 if (value_lazy (arg1))
3e3d7139 2572 v = allocate_value_lazy (value_enclosing_type (arg1));
c906108c 2573 else
3e3d7139
JG
2574 {
2575 v = allocate_value (value_enclosing_type (arg1));
39d37385
PA
2576 value_contents_copy_raw (v, 0, arg1, 0,
2577 TYPE_LENGTH (value_enclosing_type (arg1)));
3e3d7139
JG
2578 }
2579 v->type = type;
df407dfe 2580 v->offset = value_offset (arg1);
be335936 2581 v->embedded_offset = offset + value_embedded_offset (arg1) + boffset;
c906108c
SS
2582 }
2583 else
2584 {
2585 /* Plain old data member */
2586 offset += TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
a4e2ee12
DJ
2587
2588 /* Lazy register values with offsets are not supported. */
2589 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
2590 value_fetch_lazy (arg1);
2591
2592 if (value_lazy (arg1))
3e3d7139 2593 v = allocate_value_lazy (type);
c906108c 2594 else
3e3d7139
JG
2595 {
2596 v = allocate_value (type);
39d37385
PA
2597 value_contents_copy_raw (v, value_embedded_offset (v),
2598 arg1, value_embedded_offset (arg1) + offset,
2599 TYPE_LENGTH (type));
3e3d7139 2600 }
df407dfe 2601 v->offset = (value_offset (arg1) + offset
13c3b5f5 2602 + value_embedded_offset (arg1));
c906108c 2603 }
74bcbdf3 2604 set_value_component_location (v, arg1);
9ee8fc9d 2605 VALUE_REGNUM (v) = VALUE_REGNUM (arg1);
0c16dd26 2606 VALUE_FRAME_ID (v) = VALUE_FRAME_ID (arg1);
c906108c
SS
2607 return v;
2608}
2609
2610/* Given a value ARG1 of a struct or union type,
2611 extract and return the value of one of its (non-static) fields.
581e13c1 2612 FIELDNO says which field. */
c906108c 2613
f23631e4 2614struct value *
aa1ee363 2615value_field (struct value *arg1, int fieldno)
c906108c 2616{
df407dfe 2617 return value_primitive_field (arg1, 0, fieldno, value_type (arg1));
c906108c
SS
2618}
2619
2620/* Return a non-virtual function as a value.
2621 F is the list of member functions which contains the desired method.
0478d61c
FF
2622 J is an index into F which provides the desired method.
2623
2624 We only use the symbol for its address, so be happy with either a
581e13c1 2625 full symbol or a minimal symbol. */
c906108c 2626
f23631e4 2627struct value *
3e43a32a
MS
2628value_fn_field (struct value **arg1p, struct fn_field *f,
2629 int j, struct type *type,
fba45db2 2630 int offset)
c906108c 2631{
f23631e4 2632 struct value *v;
52f0bd74 2633 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
1d06ead6 2634 const char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
c906108c 2635 struct symbol *sym;
0478d61c 2636 struct minimal_symbol *msym;
c906108c 2637
2570f2b7 2638 sym = lookup_symbol (physname, 0, VAR_DOMAIN, 0);
5ae326fa 2639 if (sym != NULL)
0478d61c 2640 {
5ae326fa
AC
2641 msym = NULL;
2642 }
2643 else
2644 {
2645 gdb_assert (sym == NULL);
0478d61c 2646 msym = lookup_minimal_symbol (physname, NULL, NULL);
5ae326fa
AC
2647 if (msym == NULL)
2648 return NULL;
0478d61c
FF
2649 }
2650
c906108c 2651 v = allocate_value (ftype);
0478d61c
FF
2652 if (sym)
2653 {
42ae5230 2654 set_value_address (v, BLOCK_START (SYMBOL_BLOCK_VALUE (sym)));
0478d61c
FF
2655 }
2656 else
2657 {
bccdca4a
UW
2658 /* The minimal symbol might point to a function descriptor;
2659 resolve it to the actual code address instead. */
2660 struct objfile *objfile = msymbol_objfile (msym);
2661 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2662
42ae5230
TT
2663 set_value_address (v,
2664 gdbarch_convert_from_func_ptr_addr
2665 (gdbarch, SYMBOL_VALUE_ADDRESS (msym), &current_target));
0478d61c 2666 }
c906108c
SS
2667
2668 if (arg1p)
c5aa993b 2669 {
df407dfe 2670 if (type != value_type (*arg1p))
c5aa993b
JM
2671 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
2672 value_addr (*arg1p)));
2673
070ad9f0 2674 /* Move the `this' pointer according to the offset.
581e13c1 2675 VALUE_OFFSET (*arg1p) += offset; */
c906108c
SS
2676 }
2677
2678 return v;
2679}
2680
c906108c 2681\f
c906108c 2682
5467c6c8
PA
2683/* Helper function for both unpack_value_bits_as_long and
2684 unpack_bits_as_long. See those functions for more details on the
2685 interface; the only difference is that this function accepts either
2686 a NULL or a non-NULL ORIGINAL_VALUE. */
c906108c 2687
5467c6c8
PA
2688static int
2689unpack_value_bits_as_long_1 (struct type *field_type, const gdb_byte *valaddr,
2690 int embedded_offset, int bitpos, int bitsize,
2691 const struct value *original_value,
2692 LONGEST *result)
c906108c 2693{
4ea48cc1 2694 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (field_type));
c906108c
SS
2695 ULONGEST val;
2696 ULONGEST valmask;
c906108c 2697 int lsbcount;
4a76eae5 2698 int bytes_read;
5467c6c8 2699 int read_offset;
c906108c 2700
4a76eae5
DJ
2701 /* Read the minimum number of bytes required; there may not be
2702 enough bytes to read an entire ULONGEST. */
c906108c 2703 CHECK_TYPEDEF (field_type);
4a76eae5
DJ
2704 if (bitsize)
2705 bytes_read = ((bitpos % 8) + bitsize + 7) / 8;
2706 else
2707 bytes_read = TYPE_LENGTH (field_type);
2708
5467c6c8
PA
2709 read_offset = bitpos / 8;
2710
2711 if (original_value != NULL
2712 && !value_bytes_available (original_value, embedded_offset + read_offset,
2713 bytes_read))
2714 return 0;
2715
2716 val = extract_unsigned_integer (valaddr + embedded_offset + read_offset,
4a76eae5 2717 bytes_read, byte_order);
c906108c 2718
581e13c1 2719 /* Extract bits. See comment above. */
c906108c 2720
4ea48cc1 2721 if (gdbarch_bits_big_endian (get_type_arch (field_type)))
4a76eae5 2722 lsbcount = (bytes_read * 8 - bitpos % 8 - bitsize);
c906108c
SS
2723 else
2724 lsbcount = (bitpos % 8);
2725 val >>= lsbcount;
2726
2727 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
581e13c1 2728 If the field is signed, and is negative, then sign extend. */
c906108c
SS
2729
2730 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
2731 {
2732 valmask = (((ULONGEST) 1) << bitsize) - 1;
2733 val &= valmask;
2734 if (!TYPE_UNSIGNED (field_type))
2735 {
2736 if (val & (valmask ^ (valmask >> 1)))
2737 {
2738 val |= ~valmask;
2739 }
2740 }
2741 }
5467c6c8
PA
2742
2743 *result = val;
2744 return 1;
c906108c
SS
2745}
2746
5467c6c8
PA
2747/* Unpack a bitfield of the specified FIELD_TYPE, from the object at
2748 VALADDR + EMBEDDED_OFFSET, and store the result in *RESULT.
2749 VALADDR points to the contents of ORIGINAL_VALUE, which must not be
2750 NULL. The bitfield starts at BITPOS bits and contains BITSIZE
2751 bits.
4ea48cc1 2752
5467c6c8
PA
2753 Returns false if the value contents are unavailable, otherwise
2754 returns true, indicating a valid value has been stored in *RESULT.
2755
2756 Extracting bits depends on endianness of the machine. Compute the
2757 number of least significant bits to discard. For big endian machines,
2758 we compute the total number of bits in the anonymous object, subtract
2759 off the bit count from the MSB of the object to the MSB of the
2760 bitfield, then the size of the bitfield, which leaves the LSB discard
2761 count. For little endian machines, the discard count is simply the
2762 number of bits from the LSB of the anonymous object to the LSB of the
2763 bitfield.
2764
2765 If the field is signed, we also do sign extension. */
2766
2767int
2768unpack_value_bits_as_long (struct type *field_type, const gdb_byte *valaddr,
2769 int embedded_offset, int bitpos, int bitsize,
2770 const struct value *original_value,
2771 LONGEST *result)
2772{
2773 gdb_assert (original_value != NULL);
2774
2775 return unpack_value_bits_as_long_1 (field_type, valaddr, embedded_offset,
2776 bitpos, bitsize, original_value, result);
2777
2778}
2779
2780/* Unpack a field FIELDNO of the specified TYPE, from the object at
2781 VALADDR + EMBEDDED_OFFSET. VALADDR points to the contents of
2782 ORIGINAL_VALUE. See unpack_value_bits_as_long for more
2783 details. */
2784
2785static int
2786unpack_value_field_as_long_1 (struct type *type, const gdb_byte *valaddr,
2787 int embedded_offset, int fieldno,
2788 const struct value *val, LONGEST *result)
4ea48cc1
DJ
2789{
2790 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
2791 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
2792 struct type *field_type = TYPE_FIELD_TYPE (type, fieldno);
2793
5467c6c8
PA
2794 return unpack_value_bits_as_long_1 (field_type, valaddr, embedded_offset,
2795 bitpos, bitsize, val,
2796 result);
2797}
2798
2799/* Unpack a field FIELDNO of the specified TYPE, from the object at
2800 VALADDR + EMBEDDED_OFFSET. VALADDR points to the contents of
2801 ORIGINAL_VALUE, which must not be NULL. See
2802 unpack_value_bits_as_long for more details. */
2803
2804int
2805unpack_value_field_as_long (struct type *type, const gdb_byte *valaddr,
2806 int embedded_offset, int fieldno,
2807 const struct value *val, LONGEST *result)
2808{
2809 gdb_assert (val != NULL);
2810
2811 return unpack_value_field_as_long_1 (type, valaddr, embedded_offset,
2812 fieldno, val, result);
2813}
2814
2815/* Unpack a field FIELDNO of the specified TYPE, from the anonymous
2816 object at VALADDR. See unpack_value_bits_as_long for more details.
2817 This function differs from unpack_value_field_as_long in that it
2818 operates without a struct value object. */
2819
2820LONGEST
2821unpack_field_as_long (struct type *type, const gdb_byte *valaddr, int fieldno)
2822{
2823 LONGEST result;
2824
2825 unpack_value_field_as_long_1 (type, valaddr, 0, fieldno, NULL, &result);
2826 return result;
2827}
2828
2829/* Return a new value with type TYPE, which is FIELDNO field of the
2830 object at VALADDR + EMBEDDEDOFFSET. VALADDR points to the contents
2831 of VAL. If the VAL's contents required to extract the bitfield
2832 from are unavailable, the new value is correspondingly marked as
2833 unavailable. */
2834
2835struct value *
2836value_field_bitfield (struct type *type, int fieldno,
2837 const gdb_byte *valaddr,
2838 int embedded_offset, const struct value *val)
2839{
2840 LONGEST l;
2841
2842 if (!unpack_value_field_as_long (type, valaddr, embedded_offset, fieldno,
2843 val, &l))
2844 {
2845 struct type *field_type = TYPE_FIELD_TYPE (type, fieldno);
2846 struct value *retval = allocate_value (field_type);
2847 mark_value_bytes_unavailable (retval, 0, TYPE_LENGTH (field_type));
2848 return retval;
2849 }
2850 else
2851 {
2852 return value_from_longest (TYPE_FIELD_TYPE (type, fieldno), l);
2853 }
4ea48cc1
DJ
2854}
2855
c906108c
SS
2856/* Modify the value of a bitfield. ADDR points to a block of memory in
2857 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
2858 is the desired value of the field, in host byte order. BITPOS and BITSIZE
581e13c1 2859 indicate which bits (in target bit order) comprise the bitfield.
19f220c3 2860 Requires 0 < BITSIZE <= lbits, 0 <= BITPOS % 8 + BITSIZE <= lbits, and
f4e88c8e 2861 0 <= BITPOS, where lbits is the size of a LONGEST in bits. */
c906108c
SS
2862
2863void
50810684
UW
2864modify_field (struct type *type, gdb_byte *addr,
2865 LONGEST fieldval, int bitpos, int bitsize)
c906108c 2866{
e17a4113 2867 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
f4e88c8e
PH
2868 ULONGEST oword;
2869 ULONGEST mask = (ULONGEST) -1 >> (8 * sizeof (ULONGEST) - bitsize);
19f220c3
JK
2870 int bytesize;
2871
2872 /* Normalize BITPOS. */
2873 addr += bitpos / 8;
2874 bitpos %= 8;
c906108c
SS
2875
2876 /* If a negative fieldval fits in the field in question, chop
2877 off the sign extension bits. */
f4e88c8e
PH
2878 if ((~fieldval & ~(mask >> 1)) == 0)
2879 fieldval &= mask;
c906108c
SS
2880
2881 /* Warn if value is too big to fit in the field in question. */
f4e88c8e 2882 if (0 != (fieldval & ~mask))
c906108c
SS
2883 {
2884 /* FIXME: would like to include fieldval in the message, but
c5aa993b 2885 we don't have a sprintf_longest. */
8a3fe4f8 2886 warning (_("Value does not fit in %d bits."), bitsize);
c906108c
SS
2887
2888 /* Truncate it, otherwise adjoining fields may be corrupted. */
f4e88c8e 2889 fieldval &= mask;
c906108c
SS
2890 }
2891
19f220c3
JK
2892 /* Ensure no bytes outside of the modified ones get accessed as it may cause
2893 false valgrind reports. */
2894
2895 bytesize = (bitpos + bitsize + 7) / 8;
2896 oword = extract_unsigned_integer (addr, bytesize, byte_order);
c906108c
SS
2897
2898 /* Shifting for bit field depends on endianness of the target machine. */
50810684 2899 if (gdbarch_bits_big_endian (get_type_arch (type)))
19f220c3 2900 bitpos = bytesize * 8 - bitpos - bitsize;
c906108c 2901
f4e88c8e 2902 oword &= ~(mask << bitpos);
c906108c
SS
2903 oword |= fieldval << bitpos;
2904
19f220c3 2905 store_unsigned_integer (addr, bytesize, byte_order, oword);
c906108c
SS
2906}
2907\f
14d06750 2908/* Pack NUM into BUF using a target format of TYPE. */
c906108c 2909
14d06750
DJ
2910void
2911pack_long (gdb_byte *buf, struct type *type, LONGEST num)
c906108c 2912{
e17a4113 2913 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
52f0bd74 2914 int len;
14d06750
DJ
2915
2916 type = check_typedef (type);
c906108c
SS
2917 len = TYPE_LENGTH (type);
2918
14d06750 2919 switch (TYPE_CODE (type))
c906108c 2920 {
c906108c
SS
2921 case TYPE_CODE_INT:
2922 case TYPE_CODE_CHAR:
2923 case TYPE_CODE_ENUM:
4f2aea11 2924 case TYPE_CODE_FLAGS:
c906108c
SS
2925 case TYPE_CODE_BOOL:
2926 case TYPE_CODE_RANGE:
0d5de010 2927 case TYPE_CODE_MEMBERPTR:
e17a4113 2928 store_signed_integer (buf, len, byte_order, num);
c906108c 2929 break;
c5aa993b 2930
c906108c
SS
2931 case TYPE_CODE_REF:
2932 case TYPE_CODE_PTR:
14d06750 2933 store_typed_address (buf, type, (CORE_ADDR) num);
c906108c 2934 break;
c5aa993b 2935
c906108c 2936 default:
14d06750
DJ
2937 error (_("Unexpected type (%d) encountered for integer constant."),
2938 TYPE_CODE (type));
c906108c 2939 }
14d06750
DJ
2940}
2941
2942
595939de
PM
2943/* Pack NUM into BUF using a target format of TYPE. */
2944
70221824 2945static void
595939de
PM
2946pack_unsigned_long (gdb_byte *buf, struct type *type, ULONGEST num)
2947{
2948 int len;
2949 enum bfd_endian byte_order;
2950
2951 type = check_typedef (type);
2952 len = TYPE_LENGTH (type);
2953 byte_order = gdbarch_byte_order (get_type_arch (type));
2954
2955 switch (TYPE_CODE (type))
2956 {
2957 case TYPE_CODE_INT:
2958 case TYPE_CODE_CHAR:
2959 case TYPE_CODE_ENUM:
2960 case TYPE_CODE_FLAGS:
2961 case TYPE_CODE_BOOL:
2962 case TYPE_CODE_RANGE:
2963 case TYPE_CODE_MEMBERPTR:
2964 store_unsigned_integer (buf, len, byte_order, num);
2965 break;
2966
2967 case TYPE_CODE_REF:
2968 case TYPE_CODE_PTR:
2969 store_typed_address (buf, type, (CORE_ADDR) num);
2970 break;
2971
2972 default:
3e43a32a
MS
2973 error (_("Unexpected type (%d) encountered "
2974 "for unsigned integer constant."),
595939de
PM
2975 TYPE_CODE (type));
2976 }
2977}
2978
2979
14d06750
DJ
2980/* Convert C numbers into newly allocated values. */
2981
2982struct value *
2983value_from_longest (struct type *type, LONGEST num)
2984{
2985 struct value *val = allocate_value (type);
2986
2987 pack_long (value_contents_raw (val), type, num);
c906108c
SS
2988 return val;
2989}
2990
4478b372 2991
595939de
PM
2992/* Convert C unsigned numbers into newly allocated values. */
2993
2994struct value *
2995value_from_ulongest (struct type *type, ULONGEST num)
2996{
2997 struct value *val = allocate_value (type);
2998
2999 pack_unsigned_long (value_contents_raw (val), type, num);
3000
3001 return val;
3002}
3003
3004
4478b372
JB
3005/* Create a value representing a pointer of type TYPE to the address
3006 ADDR. */
f23631e4 3007struct value *
4478b372
JB
3008value_from_pointer (struct type *type, CORE_ADDR addr)
3009{
f23631e4 3010 struct value *val = allocate_value (type);
a109c7c1 3011
cab0c772 3012 store_typed_address (value_contents_raw (val), check_typedef (type), addr);
4478b372
JB
3013 return val;
3014}
3015
3016
8acb6b92
TT
3017/* Create a value of type TYPE whose contents come from VALADDR, if it
3018 is non-null, and whose memory address (in the inferior) is
3019 ADDRESS. */
3020
3021struct value *
3022value_from_contents_and_address (struct type *type,
3023 const gdb_byte *valaddr,
3024 CORE_ADDR address)
3025{
41e8491f 3026 struct value *v;
a109c7c1 3027
8acb6b92 3028 if (valaddr == NULL)
41e8491f 3029 v = allocate_value_lazy (type);
8acb6b92 3030 else
41e8491f
JK
3031 {
3032 v = allocate_value (type);
3033 memcpy (value_contents_raw (v), valaddr, TYPE_LENGTH (type));
3034 }
42ae5230 3035 set_value_address (v, address);
33d502b4 3036 VALUE_LVAL (v) = lval_memory;
8acb6b92
TT
3037 return v;
3038}
3039
8a9b8146
TT
3040/* Create a value of type TYPE holding the contents CONTENTS.
3041 The new value is `not_lval'. */
3042
3043struct value *
3044value_from_contents (struct type *type, const gdb_byte *contents)
3045{
3046 struct value *result;
3047
3048 result = allocate_value (type);
3049 memcpy (value_contents_raw (result), contents, TYPE_LENGTH (type));
3050 return result;
3051}
3052
f23631e4 3053struct value *
fba45db2 3054value_from_double (struct type *type, DOUBLEST num)
c906108c 3055{
f23631e4 3056 struct value *val = allocate_value (type);
c906108c 3057 struct type *base_type = check_typedef (type);
52f0bd74 3058 enum type_code code = TYPE_CODE (base_type);
c906108c
SS
3059
3060 if (code == TYPE_CODE_FLT)
3061 {
990a07ab 3062 store_typed_floating (value_contents_raw (val), base_type, num);
c906108c
SS
3063 }
3064 else
8a3fe4f8 3065 error (_("Unexpected type encountered for floating constant."));
c906108c
SS
3066
3067 return val;
3068}
994b9211 3069
27bc4d80 3070struct value *
4ef30785 3071value_from_decfloat (struct type *type, const gdb_byte *dec)
27bc4d80
TJB
3072{
3073 struct value *val = allocate_value (type);
27bc4d80 3074
4ef30785 3075 memcpy (value_contents_raw (val), dec, TYPE_LENGTH (type));
27bc4d80
TJB
3076 return val;
3077}
3078
3bd0f5ef
MS
3079/* Extract a value from the history file. Input will be of the form
3080 $digits or $$digits. See block comment above 'write_dollar_variable'
3081 for details. */
3082
3083struct value *
3084value_from_history_ref (char *h, char **endp)
3085{
3086 int index, len;
3087
3088 if (h[0] == '$')
3089 len = 1;
3090 else
3091 return NULL;
3092
3093 if (h[1] == '$')
3094 len = 2;
3095
3096 /* Find length of numeral string. */
3097 for (; isdigit (h[len]); len++)
3098 ;
3099
3100 /* Make sure numeral string is not part of an identifier. */
3101 if (h[len] == '_' || isalpha (h[len]))
3102 return NULL;
3103
3104 /* Now collect the index value. */
3105 if (h[1] == '$')
3106 {
3107 if (len == 2)
3108 {
3109 /* For some bizarre reason, "$$" is equivalent to "$$1",
3110 rather than to "$$0" as it ought to be! */
3111 index = -1;
3112 *endp += len;
3113 }
3114 else
3115 index = -strtol (&h[2], endp, 10);
3116 }
3117 else
3118 {
3119 if (len == 1)
3120 {
3121 /* "$" is equivalent to "$0". */
3122 index = 0;
3123 *endp += len;
3124 }
3125 else
3126 index = strtol (&h[1], endp, 10);
3127 }
3128
3129 return access_value_history (index);
3130}
3131
a471c594
JK
3132struct value *
3133coerce_ref_if_computed (const struct value *arg)
3134{
3135 const struct lval_funcs *funcs;
3136
3137 if (TYPE_CODE (check_typedef (value_type (arg))) != TYPE_CODE_REF)
3138 return NULL;
3139
3140 if (value_lval_const (arg) != lval_computed)
3141 return NULL;
3142
3143 funcs = value_computed_funcs (arg);
3144 if (funcs->coerce_ref == NULL)
3145 return NULL;
3146
3147 return funcs->coerce_ref (arg);
3148}
3149
dfcee124
AG
3150/* Look at value.h for description. */
3151
3152struct value *
3153readjust_indirect_value_type (struct value *value, struct type *enc_type,
3154 struct type *original_type,
3155 struct value *original_value)
3156{
3157 /* Re-adjust type. */
3158 deprecated_set_value_type (value, TYPE_TARGET_TYPE (original_type));
3159
3160 /* Add embedding info. */
3161 set_value_enclosing_type (value, enc_type);
3162 set_value_embedded_offset (value, value_pointed_to_offset (original_value));
3163
3164 /* We may be pointing to an object of some derived type. */
3165 return value_full_object (value, NULL, 0, 0, 0);
3166}
3167
994b9211
AC
3168struct value *
3169coerce_ref (struct value *arg)
3170{
df407dfe 3171 struct type *value_type_arg_tmp = check_typedef (value_type (arg));
a471c594 3172 struct value *retval;
dfcee124 3173 struct type *enc_type;
a109c7c1 3174
a471c594
JK
3175 retval = coerce_ref_if_computed (arg);
3176 if (retval)
3177 return retval;
3178
3179 if (TYPE_CODE (value_type_arg_tmp) != TYPE_CODE_REF)
3180 return arg;
3181
dfcee124
AG
3182 enc_type = check_typedef (value_enclosing_type (arg));
3183 enc_type = TYPE_TARGET_TYPE (enc_type);
3184
3185 retval = value_at_lazy (enc_type,
3186 unpack_pointer (value_type (arg),
3187 value_contents (arg)));
3188 return readjust_indirect_value_type (retval, enc_type,
3189 value_type_arg_tmp, arg);
994b9211
AC
3190}
3191
3192struct value *
3193coerce_array (struct value *arg)
3194{
f3134b88
TT
3195 struct type *type;
3196
994b9211 3197 arg = coerce_ref (arg);
f3134b88
TT
3198 type = check_typedef (value_type (arg));
3199
3200 switch (TYPE_CODE (type))
3201 {
3202 case TYPE_CODE_ARRAY:
7346b668 3203 if (!TYPE_VECTOR (type) && current_language->c_style_arrays)
f3134b88
TT
3204 arg = value_coerce_array (arg);
3205 break;
3206 case TYPE_CODE_FUNC:
3207 arg = value_coerce_function (arg);
3208 break;
3209 }
994b9211
AC
3210 return arg;
3211}
c906108c 3212\f
c906108c 3213
48436ce6
AC
3214/* Return true if the function returning the specified type is using
3215 the convention of returning structures in memory (passing in the
82585c72 3216 address as a hidden first parameter). */
c906108c
SS
3217
3218int
d80b854b
UW
3219using_struct_return (struct gdbarch *gdbarch,
3220 struct type *func_type, struct type *value_type)
c906108c 3221{
52f0bd74 3222 enum type_code code = TYPE_CODE (value_type);
c906108c
SS
3223
3224 if (code == TYPE_CODE_ERROR)
8a3fe4f8 3225 error (_("Function return type unknown."));
c906108c 3226
667e784f
AC
3227 if (code == TYPE_CODE_VOID)
3228 /* A void return value is never in memory. See also corresponding
44e5158b 3229 code in "print_return_value". */
667e784f
AC
3230 return 0;
3231
92ad9cd9 3232 /* Probe the architecture for the return-value convention. */
d80b854b 3233 return (gdbarch_return_value (gdbarch, func_type, value_type,
92ad9cd9 3234 NULL, NULL, NULL)
31db7b6c 3235 != RETURN_VALUE_REGISTER_CONVENTION);
c906108c
SS
3236}
3237
42be36b3
CT
3238/* Set the initialized field in a value struct. */
3239
3240void
3241set_value_initialized (struct value *val, int status)
3242{
3243 val->initialized = status;
3244}
3245
3246/* Return the initialized field in a value struct. */
3247
3248int
3249value_initialized (struct value *val)
3250{
3251 return val->initialized;
3252}
3253
c906108c 3254void
fba45db2 3255_initialize_values (void)
c906108c 3256{
1a966eab
AC
3257 add_cmd ("convenience", no_class, show_convenience, _("\
3258Debugger convenience (\"$foo\") variables.\n\
c906108c 3259These variables are created when you assign them values;\n\
1a966eab
AC
3260thus, \"print $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\
3261\n\
c906108c
SS
3262A few convenience variables are given values automatically:\n\
3263\"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
1a966eab 3264\"$__\" holds the contents of the last address examined with \"x\"."),
c906108c
SS
3265 &showlist);
3266
db5f229b 3267 add_cmd ("values", no_set_class, show_values, _("\
3e43a32a 3268Elements of value history around item number IDX (or last ten)."),
c906108c 3269 &showlist);
53e5f3cf
AS
3270
3271 add_com ("init-if-undefined", class_vars, init_if_undefined_command, _("\
3272Initialize a convenience variable if necessary.\n\
3273init-if-undefined VARIABLE = EXPRESSION\n\
3274Set an internal VARIABLE to the result of the EXPRESSION if it does not\n\
3275exist or does not contain a value. The EXPRESSION is not evaluated if the\n\
3276VARIABLE is already initialized."));
bc3b79fd
TJB
3277
3278 add_prefix_cmd ("function", no_class, function_command, _("\
3279Placeholder command for showing help on convenience functions."),
3280 &functionlist, "function ", 0, &cmdlist);
c906108c 3281}