1 /* Low level packing and unpacking of values for GDB, the GNU Debugger.
3 Copyright (C) 1986-2014 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
37 #include "cli/cli-decode.h"
38 #include "exceptions.h"
39 #include "extension.h"
41 #include "tracepoint.h"
43 #include "user-regs.h"
45 /* Prototypes for exported functions. */
47 void _initialize_values (void);
49 /* Definition of a user function. */
50 struct internal_function
52 /* The name of the function. It is a bit odd to have this in the
53 function itself -- the user might use a differently-named
54 convenience variable to hold the function. */
58 internal_function_fn handler;
60 /* User data for the handler. */
64 /* Defines an [OFFSET, OFFSET + LENGTH) range. */
68 /* Lowest offset in the range. */
71 /* Length of the range. */
75 typedef struct range range_s;
79 /* Returns true if the ranges defined by [offset1, offset1+len1) and
80 [offset2, offset2+len2) overlap. */
83 ranges_overlap (int offset1, int len1,
84 int offset2, int len2)
88 l = max (offset1, offset2);
89 h = min (offset1 + len1, offset2 + len2);
93 /* Returns true if the first argument is strictly less than the
94 second, useful for VEC_lower_bound. We keep ranges sorted by
95 offset and coalesce overlapping and contiguous ranges, so this just
96 compares the starting offset. */
99 range_lessthan (const range_s *r1, const range_s *r2)
101 return r1->offset < r2->offset;
104 /* Returns true if RANGES contains any range that overlaps [OFFSET,
108 ranges_contain (VEC(range_s) *ranges, int offset, int length)
113 what.offset = offset;
114 what.length = length;
116 /* We keep ranges sorted by offset and coalesce overlapping and
117 contiguous ranges, so to check if a range list contains a given
118 range, we can do a binary search for the position the given range
119 would be inserted if we only considered the starting OFFSET of
120 ranges. We call that position I. Since we also have LENGTH to
121 care for (this is a range afterall), we need to check if the
122 _previous_ range overlaps the I range. E.g.,
126 |---| |---| |------| ... |--|
131 In the case above, the binary search would return `I=1', meaning,
132 this OFFSET should be inserted at position 1, and the current
133 position 1 should be pushed further (and before 2). But, `0'
136 Then we need to check if the I range overlaps the I range itself.
141 |---| |---| |-------| ... |--|
147 i = VEC_lower_bound (range_s, ranges, &what, range_lessthan);
151 struct range *bef = VEC_index (range_s, ranges, i - 1);
153 if (ranges_overlap (bef->offset, bef->length, offset, length))
157 if (i < VEC_length (range_s, ranges))
159 struct range *r = VEC_index (range_s, ranges, i);
161 if (ranges_overlap (r->offset, r->length, offset, length))
168 static struct cmd_list_element *functionlist;
170 /* Note that the fields in this structure are arranged to save a bit
175 /* Type of value; either not an lval, or one of the various
176 different possible kinds of lval. */
179 /* Is it modifiable? Only relevant if lval != not_lval. */
180 unsigned int modifiable : 1;
182 /* If zero, contents of this value are in the contents field. If
183 nonzero, contents are in inferior. If the lval field is lval_memory,
184 the contents are in inferior memory at location.address plus offset.
185 The lval field may also be lval_register.
187 WARNING: This field is used by the code which handles watchpoints
188 (see breakpoint.c) to decide whether a particular value can be
189 watched by hardware watchpoints. If the lazy flag is set for
190 some member of a value chain, it is assumed that this member of
191 the chain doesn't need to be watched as part of watching the
192 value itself. This is how GDB avoids watching the entire struct
193 or array when the user wants to watch a single struct member or
194 array element. If you ever change the way lazy flag is set and
195 reset, be sure to consider this use as well! */
196 unsigned int lazy : 1;
198 /* If nonzero, this is the value of a variable that does not
199 actually exist in the program. If nonzero, and LVAL is
200 lval_register, this is a register ($pc, $sp, etc., never a
201 program variable) that has not been saved in the frame. All
202 optimized-out values are treated pretty much the same, except
203 registers have a different string representation and related
205 unsigned int optimized_out : 1;
207 /* If value is a variable, is it initialized or not. */
208 unsigned int initialized : 1;
210 /* If value is from the stack. If this is set, read_stack will be
211 used instead of read_memory to enable extra caching. */
212 unsigned int stack : 1;
214 /* If the value has been released. */
215 unsigned int released : 1;
217 /* Register number if the value is from a register. */
220 /* Location of value (if lval). */
223 /* If lval == lval_memory, this is the address in the inferior.
224 If lval == lval_register, this is the byte offset into the
225 registers structure. */
228 /* Pointer to internal variable. */
229 struct internalvar *internalvar;
231 /* Pointer to xmethod worker. */
232 struct xmethod_worker *xm_worker;
234 /* If lval == lval_computed, this is a set of function pointers
235 to use to access and describe the value, and a closure pointer
239 /* Functions to call. */
240 const struct lval_funcs *funcs;
242 /* Closure for those functions to use. */
247 /* Describes offset of a value within lval of a structure in bytes.
248 If lval == lval_memory, this is an offset to the address. If
249 lval == lval_register, this is a further offset from
250 location.address within the registers structure. Note also the
251 member embedded_offset below. */
254 /* Only used for bitfields; number of bits contained in them. */
257 /* Only used for bitfields; position of start of field. For
258 gdbarch_bits_big_endian=0 targets, it is the position of the LSB. For
259 gdbarch_bits_big_endian=1 targets, it is the position of the MSB. */
262 /* The number of references to this value. When a value is created,
263 the value chain holds a reference, so REFERENCE_COUNT is 1. If
264 release_value is called, this value is removed from the chain but
265 the caller of release_value now has a reference to this value.
266 The caller must arrange for a call to value_free later. */
269 /* Only used for bitfields; the containing value. This allows a
270 single read from the target when displaying multiple
272 struct value *parent;
274 /* Frame register value is relative to. This will be described in
275 the lval enum above as "lval_register". */
276 struct frame_id frame_id;
278 /* Type of the value. */
281 /* If a value represents a C++ object, then the `type' field gives
282 the object's compile-time type. If the object actually belongs
283 to some class derived from `type', perhaps with other base
284 classes and additional members, then `type' is just a subobject
285 of the real thing, and the full object is probably larger than
286 `type' would suggest.
288 If `type' is a dynamic class (i.e. one with a vtable), then GDB
289 can actually determine the object's run-time type by looking at
290 the run-time type information in the vtable. When this
291 information is available, we may elect to read in the entire
292 object, for several reasons:
294 - When printing the value, the user would probably rather see the
295 full object, not just the limited portion apparent from the
298 - If `type' has virtual base classes, then even printing `type'
299 alone may require reaching outside the `type' portion of the
300 object to wherever the virtual base class has been stored.
302 When we store the entire object, `enclosing_type' is the run-time
303 type -- the complete object -- and `embedded_offset' is the
304 offset of `type' within that larger type, in bytes. The
305 value_contents() macro takes `embedded_offset' into account, so
306 most GDB code continues to see the `type' portion of the value,
307 just as the inferior would.
309 If `type' is a pointer to an object, then `enclosing_type' is a
310 pointer to the object's run-time type, and `pointed_to_offset' is
311 the offset in bytes from the full object to the pointed-to object
312 -- that is, the value `embedded_offset' would have if we followed
313 the pointer and fetched the complete object. (I don't really see
314 the point. Why not just determine the run-time type when you
315 indirect, and avoid the special case? The contents don't matter
316 until you indirect anyway.)
318 If we're not doing anything fancy, `enclosing_type' is equal to
319 `type', and `embedded_offset' is zero, so everything works
321 struct type *enclosing_type;
323 int pointed_to_offset;
325 /* Values are stored in a chain, so that they can be deleted easily
326 over calls to the inferior. Values assigned to internal
327 variables, put into the value history or exposed to Python are
328 taken off this list. */
331 /* Actual contents of the value. Target byte-order. NULL or not
332 valid if lazy is nonzero. */
335 /* Unavailable ranges in CONTENTS. We mark unavailable ranges,
336 rather than available, since the common and default case is for a
337 value to be available. This is filled in at value read time. The
338 unavailable ranges are tracked in bits. */
339 VEC(range_s) *unavailable;
343 value_bits_available (const struct value *value, int offset, int length)
345 gdb_assert (!value->lazy);
347 return !ranges_contain (value->unavailable, offset, length);
351 value_bytes_available (const struct value *value, int offset, int length)
353 return value_bits_available (value,
354 offset * TARGET_CHAR_BIT,
355 length * TARGET_CHAR_BIT);
359 value_entirely_available (struct value *value)
361 /* We can only tell whether the whole value is available when we try
364 value_fetch_lazy (value);
366 if (VEC_empty (range_s, value->unavailable))
372 value_entirely_unavailable (struct value *value)
374 /* We can only tell whether the whole value is available when we try
377 value_fetch_lazy (value);
379 if (VEC_length (range_s, value->unavailable) == 1)
381 struct range *t = VEC_index (range_s, value->unavailable, 0);
384 && t->length == (TARGET_CHAR_BIT
385 * TYPE_LENGTH (value_enclosing_type (value))))
393 mark_value_bits_unavailable (struct value *value, int offset, int length)
398 /* Insert the range sorted. If there's overlap or the new range
399 would be contiguous with an existing range, merge. */
401 newr.offset = offset;
402 newr.length = length;
404 /* Do a binary search for the position the given range would be
405 inserted if we only considered the starting OFFSET of ranges.
406 Call that position I. Since we also have LENGTH to care for
407 (this is a range afterall), we need to check if the _previous_
408 range overlaps the I range. E.g., calling R the new range:
410 #1 - overlaps with previous
414 |---| |---| |------| ... |--|
419 In the case #1 above, the binary search would return `I=1',
420 meaning, this OFFSET should be inserted at position 1, and the
421 current position 1 should be pushed further (and become 2). But,
422 note that `0' overlaps with R, so we want to merge them.
424 A similar consideration needs to be taken if the new range would
425 be contiguous with the previous range:
427 #2 - contiguous with previous
431 |--| |---| |------| ... |--|
436 If there's no overlap with the previous range, as in:
438 #3 - not overlapping and not contiguous
442 |--| |---| |------| ... |--|
449 #4 - R is the range with lowest offset
453 |--| |---| |------| ... |--|
458 ... we just push the new range to I.
460 All the 4 cases above need to consider that the new range may
461 also overlap several of the ranges that follow, or that R may be
462 contiguous with the following range, and merge. E.g.,
464 #5 - overlapping following ranges
467 |------------------------|
468 |--| |---| |------| ... |--|
477 |--| |---| |------| ... |--|
484 i = VEC_lower_bound (range_s, value->unavailable, &newr, range_lessthan);
487 struct range *bef = VEC_index (range_s, value->unavailable, i - 1);
489 if (ranges_overlap (bef->offset, bef->length, offset, length))
492 ULONGEST l = min (bef->offset, offset);
493 ULONGEST h = max (bef->offset + bef->length, offset + length);
499 else if (offset == bef->offset + bef->length)
502 bef->length += length;
508 VEC_safe_insert (range_s, value->unavailable, i, &newr);
514 VEC_safe_insert (range_s, value->unavailable, i, &newr);
517 /* Check whether the ranges following the one we've just added or
518 touched can be folded in (#5 above). */
519 if (i + 1 < VEC_length (range_s, value->unavailable))
526 /* Get the range we just touched. */
527 t = VEC_index (range_s, value->unavailable, i);
531 for (; VEC_iterate (range_s, value->unavailable, i, r); i++)
532 if (r->offset <= t->offset + t->length)
536 l = min (t->offset, r->offset);
537 h = max (t->offset + t->length, r->offset + r->length);
546 /* If we couldn't merge this one, we won't be able to
547 merge following ones either, since the ranges are
548 always sorted by OFFSET. */
553 VEC_block_remove (range_s, value->unavailable, next, removed);
558 mark_value_bytes_unavailable (struct value *value, int offset, int length)
560 mark_value_bits_unavailable (value,
561 offset * TARGET_CHAR_BIT,
562 length * TARGET_CHAR_BIT);
565 /* Find the first range in RANGES that overlaps the range defined by
566 OFFSET and LENGTH, starting at element POS in the RANGES vector,
567 Returns the index into RANGES where such overlapping range was
568 found, or -1 if none was found. */
571 find_first_range_overlap (VEC(range_s) *ranges, int pos,
572 int offset, int length)
577 for (i = pos; VEC_iterate (range_s, ranges, i, r); i++)
578 if (ranges_overlap (r->offset, r->length, offset, length))
584 /* Compare LENGTH_BITS of memory at PTR1 + OFFSET1_BITS with the memory at
585 PTR2 + OFFSET2_BITS. Return 0 if the memory is the same, otherwise
588 It must always be the case that:
589 OFFSET1_BITS % TARGET_CHAR_BIT == OFFSET2_BITS % TARGET_CHAR_BIT
591 It is assumed that memory can be accessed from:
592 PTR + (OFFSET_BITS / TARGET_CHAR_BIT)
594 PTR + ((OFFSET_BITS + LENGTH_BITS + TARGET_CHAR_BIT - 1)
595 / TARGET_CHAR_BIT) */
597 memcmp_with_bit_offsets (const gdb_byte *ptr1, size_t offset1_bits,
598 const gdb_byte *ptr2, size_t offset2_bits,
601 gdb_assert (offset1_bits % TARGET_CHAR_BIT
602 == offset2_bits % TARGET_CHAR_BIT);
604 if (offset1_bits % TARGET_CHAR_BIT != 0)
607 gdb_byte mask, b1, b2;
609 /* The offset from the base pointers PTR1 and PTR2 is not a complete
610 number of bytes. A number of bits up to either the next exact
611 byte boundary, or LENGTH_BITS (which ever is sooner) will be
613 bits = TARGET_CHAR_BIT - offset1_bits % TARGET_CHAR_BIT;
614 gdb_assert (bits < sizeof (mask) * TARGET_CHAR_BIT);
615 mask = (1 << bits) - 1;
617 if (length_bits < bits)
619 mask &= ~(gdb_byte) ((1 << (bits - length_bits)) - 1);
623 /* Now load the two bytes and mask off the bits we care about. */
624 b1 = *(ptr1 + offset1_bits / TARGET_CHAR_BIT) & mask;
625 b2 = *(ptr2 + offset2_bits / TARGET_CHAR_BIT) & mask;
630 /* Now update the length and offsets to take account of the bits
631 we've just compared. */
633 offset1_bits += bits;
634 offset2_bits += bits;
637 if (length_bits % TARGET_CHAR_BIT != 0)
641 gdb_byte mask, b1, b2;
643 /* The length is not an exact number of bytes. After the previous
644 IF.. block then the offsets are byte aligned, or the
645 length is zero (in which case this code is not reached). Compare
646 a number of bits at the end of the region, starting from an exact
648 bits = length_bits % TARGET_CHAR_BIT;
649 o1 = offset1_bits + length_bits - bits;
650 o2 = offset2_bits + length_bits - bits;
652 gdb_assert (bits < sizeof (mask) * TARGET_CHAR_BIT);
653 mask = ((1 << bits) - 1) << (TARGET_CHAR_BIT - bits);
655 gdb_assert (o1 % TARGET_CHAR_BIT == 0);
656 gdb_assert (o2 % TARGET_CHAR_BIT == 0);
658 b1 = *(ptr1 + o1 / TARGET_CHAR_BIT) & mask;
659 b2 = *(ptr2 + o2 / TARGET_CHAR_BIT) & mask;
669 /* We've now taken care of any stray "bits" at the start, or end of
670 the region to compare, the remainder can be covered with a simple
672 gdb_assert (offset1_bits % TARGET_CHAR_BIT == 0);
673 gdb_assert (offset2_bits % TARGET_CHAR_BIT == 0);
674 gdb_assert (length_bits % TARGET_CHAR_BIT == 0);
676 return memcmp (ptr1 + offset1_bits / TARGET_CHAR_BIT,
677 ptr2 + offset2_bits / TARGET_CHAR_BIT,
678 length_bits / TARGET_CHAR_BIT);
681 /* Length is zero, regions match. */
685 /* Helper function for value_available_contents_eq. The only difference is
686 that this function is bit rather than byte based.
688 Compare LENGTH bits of VAL1's contents starting at OFFSET1 bits with
689 LENGTH bits of VAL2's contents starting at OFFSET2 bits. Return true
690 if the available bits match. */
693 value_available_contents_bits_eq (const struct value *val1, int offset1,
694 const struct value *val2, int offset2,
697 int idx1 = 0, idx2 = 0;
699 /* See function description in value.h. */
700 gdb_assert (!val1->lazy && !val2->lazy);
708 idx1 = find_first_range_overlap (val1->unavailable, idx1,
710 idx2 = find_first_range_overlap (val2->unavailable, idx2,
713 /* The usual case is for both values to be completely available. */
714 if (idx1 == -1 && idx2 == -1)
715 return (memcmp_with_bit_offsets (val1->contents, offset1,
716 val2->contents, offset2,
718 /* The contents only match equal if the available set matches as
720 else if (idx1 == -1 || idx2 == -1)
723 gdb_assert (idx1 != -1 && idx2 != -1);
725 r1 = VEC_index (range_s, val1->unavailable, idx1);
726 r2 = VEC_index (range_s, val2->unavailable, idx2);
728 /* Get the unavailable windows intersected by the incoming
729 ranges. The first and last ranges that overlap the argument
730 range may be wider than said incoming arguments ranges. */
731 l1 = max (offset1, r1->offset);
732 h1 = min (offset1 + length, r1->offset + r1->length);
734 l2 = max (offset2, r2->offset);
735 h2 = min (offset2 + length, r2->offset + r2->length);
737 /* Make them relative to the respective start offsets, so we can
738 compare them for equality. */
745 /* Different availability, no match. */
746 if (l1 != l2 || h1 != h2)
749 /* Compare the _available_ contents. */
750 if (memcmp_with_bit_offsets (val1->contents, offset1,
751 val2->contents, offset2, l1) != 0)
763 value_available_contents_eq (const struct value *val1, int offset1,
764 const struct value *val2, int offset2,
767 return value_available_contents_bits_eq (val1, offset1 * TARGET_CHAR_BIT,
768 val2, offset2 * TARGET_CHAR_BIT,
769 length * TARGET_CHAR_BIT);
772 /* Prototypes for local functions. */
774 static void show_values (char *, int);
776 static void show_convenience (char *, int);
779 /* The value-history records all the values printed
780 by print commands during this session. Each chunk
781 records 60 consecutive values. The first chunk on
782 the chain records the most recent values.
783 The total number of values is in value_history_count. */
785 #define VALUE_HISTORY_CHUNK 60
787 struct value_history_chunk
789 struct value_history_chunk *next;
790 struct value *values[VALUE_HISTORY_CHUNK];
793 /* Chain of chunks now in use. */
795 static struct value_history_chunk *value_history_chain;
797 static int value_history_count; /* Abs number of last entry stored. */
800 /* List of all value objects currently allocated
801 (except for those released by calls to release_value)
802 This is so they can be freed after each command. */
804 static struct value *all_values;
806 /* Allocate a lazy value for type TYPE. Its actual content is
807 "lazily" allocated too: the content field of the return value is
808 NULL; it will be allocated when it is fetched from the target. */
811 allocate_value_lazy (struct type *type)
815 /* Call check_typedef on our type to make sure that, if TYPE
816 is a TYPE_CODE_TYPEDEF, its length is set to the length
817 of the target type instead of zero. However, we do not
818 replace the typedef type by the target type, because we want
819 to keep the typedef in order to be able to set the VAL's type
820 description correctly. */
821 check_typedef (type);
823 val = (struct value *) xzalloc (sizeof (struct value));
824 val->contents = NULL;
825 val->next = all_values;
828 val->enclosing_type = type;
829 VALUE_LVAL (val) = not_lval;
830 val->location.address = 0;
831 VALUE_FRAME_ID (val) = null_frame_id;
835 VALUE_REGNUM (val) = -1;
837 val->optimized_out = 0;
838 val->embedded_offset = 0;
839 val->pointed_to_offset = 0;
841 val->initialized = 1; /* Default to initialized. */
843 /* Values start out on the all_values chain. */
844 val->reference_count = 1;
849 /* Allocate the contents of VAL if it has not been allocated yet. */
852 allocate_value_contents (struct value *val)
855 val->contents = (gdb_byte *) xzalloc (TYPE_LENGTH (val->enclosing_type));
858 /* Allocate a value and its contents for type TYPE. */
861 allocate_value (struct type *type)
863 struct value *val = allocate_value_lazy (type);
865 allocate_value_contents (val);
870 /* Allocate a value that has the correct length
871 for COUNT repetitions of type TYPE. */
874 allocate_repeat_value (struct type *type, int count)
876 int low_bound = current_language->string_lower_bound; /* ??? */
877 /* FIXME-type-allocation: need a way to free this type when we are
879 struct type *array_type
880 = lookup_array_range_type (type, low_bound, count + low_bound - 1);
882 return allocate_value (array_type);
886 allocate_computed_value (struct type *type,
887 const struct lval_funcs *funcs,
890 struct value *v = allocate_value_lazy (type);
892 VALUE_LVAL (v) = lval_computed;
893 v->location.computed.funcs = funcs;
894 v->location.computed.closure = closure;
899 /* Allocate NOT_LVAL value for type TYPE being OPTIMIZED_OUT. */
902 allocate_optimized_out_value (struct type *type)
904 struct value *retval = allocate_value_lazy (type);
906 set_value_optimized_out (retval, 1);
907 /* FIXME: we should be able to avoid allocating the value's contents
908 buffer, but value_available_contents_bits_eq can't handle
910 /* set_value_lazy (retval, 0); */
914 /* Accessor methods. */
917 value_next (struct value *value)
923 value_type (const struct value *value)
928 deprecated_set_value_type (struct value *value, struct type *type)
934 value_offset (const struct value *value)
936 return value->offset;
939 set_value_offset (struct value *value, int offset)
941 value->offset = offset;
945 value_bitpos (const struct value *value)
947 return value->bitpos;
950 set_value_bitpos (struct value *value, int bit)
956 value_bitsize (const struct value *value)
958 return value->bitsize;
961 set_value_bitsize (struct value *value, int bit)
963 value->bitsize = bit;
967 value_parent (struct value *value)
969 return value->parent;
975 set_value_parent (struct value *value, struct value *parent)
977 struct value *old = value->parent;
979 value->parent = parent;
981 value_incref (parent);
986 value_contents_raw (struct value *value)
988 allocate_value_contents (value);
989 return value->contents + value->embedded_offset;
993 value_contents_all_raw (struct value *value)
995 allocate_value_contents (value);
996 return value->contents;
1000 value_enclosing_type (struct value *value)
1002 return value->enclosing_type;
1005 /* Look at value.h for description. */
1008 value_actual_type (struct value *value, int resolve_simple_types,
1009 int *real_type_found)
1011 struct value_print_options opts;
1012 struct type *result;
1014 get_user_print_options (&opts);
1016 if (real_type_found)
1017 *real_type_found = 0;
1018 result = value_type (value);
1019 if (opts.objectprint)
1021 /* If result's target type is TYPE_CODE_STRUCT, proceed to
1022 fetch its rtti type. */
1023 if ((TYPE_CODE (result) == TYPE_CODE_PTR
1024 || TYPE_CODE (result) == TYPE_CODE_REF)
1025 && TYPE_CODE (check_typedef (TYPE_TARGET_TYPE (result)))
1026 == TYPE_CODE_STRUCT)
1028 struct type *real_type;
1030 real_type = value_rtti_indirect_type (value, NULL, NULL, NULL);
1033 if (real_type_found)
1034 *real_type_found = 1;
1038 else if (resolve_simple_types)
1040 if (real_type_found)
1041 *real_type_found = 1;
1042 result = value_enclosing_type (value);
1050 error_value_optimized_out (void)
1052 error (_("value has been optimized out"));
1056 require_not_optimized_out (const struct value *value)
1058 if (value->optimized_out)
1060 if (value->lval == lval_register)
1061 error (_("register has not been saved in frame"));
1063 error_value_optimized_out ();
1068 require_available (const struct value *value)
1070 if (!VEC_empty (range_s, value->unavailable))
1071 throw_error (NOT_AVAILABLE_ERROR, _("value is not available"));
1075 value_contents_for_printing (struct value *value)
1078 value_fetch_lazy (value);
1079 return value->contents;
1083 value_contents_for_printing_const (const struct value *value)
1085 gdb_assert (!value->lazy);
1086 return value->contents;
1090 value_contents_all (struct value *value)
1092 const gdb_byte *result = value_contents_for_printing (value);
1093 require_not_optimized_out (value);
1094 require_available (value);
1098 /* Copy LENGTH bytes of SRC value's (all) contents
1099 (value_contents_all) starting at SRC_OFFSET, into DST value's (all)
1100 contents, starting at DST_OFFSET. If unavailable contents are
1101 being copied from SRC, the corresponding DST contents are marked
1102 unavailable accordingly. Neither DST nor SRC may be lazy
1105 It is assumed the contents of DST in the [DST_OFFSET,
1106 DST_OFFSET+LENGTH) range are wholly available. */
1109 value_contents_copy_raw (struct value *dst, int dst_offset,
1110 struct value *src, int src_offset, int length)
1114 int src_bit_offset, dst_bit_offset, bit_length;
1116 /* A lazy DST would make that this copy operation useless, since as
1117 soon as DST's contents were un-lazied (by a later value_contents
1118 call, say), the contents would be overwritten. A lazy SRC would
1119 mean we'd be copying garbage. */
1120 gdb_assert (!dst->lazy && !src->lazy);
1122 /* The overwritten DST range gets unavailability ORed in, not
1123 replaced. Make sure to remember to implement replacing if it
1124 turns out actually necessary. */
1125 gdb_assert (value_bytes_available (dst, dst_offset, length));
1127 /* Copy the data. */
1128 memcpy (value_contents_all_raw (dst) + dst_offset,
1129 value_contents_all_raw (src) + src_offset,
1132 /* Copy the meta-data, adjusted. */
1133 src_bit_offset = src_offset * TARGET_CHAR_BIT;
1134 dst_bit_offset = dst_offset * TARGET_CHAR_BIT;
1135 bit_length = length * TARGET_CHAR_BIT;
1136 for (i = 0; VEC_iterate (range_s, src->unavailable, i, r); i++)
1140 l = max (r->offset, src_bit_offset);
1141 h = min (r->offset + r->length, src_bit_offset + bit_length);
1144 mark_value_bits_unavailable (dst,
1145 dst_bit_offset + (l - src_bit_offset),
1150 /* Copy LENGTH bytes of SRC value's (all) contents
1151 (value_contents_all) starting at SRC_OFFSET byte, into DST value's
1152 (all) contents, starting at DST_OFFSET. If unavailable contents
1153 are being copied from SRC, the corresponding DST contents are
1154 marked unavailable accordingly. DST must not be lazy. If SRC is
1155 lazy, it will be fetched now. If SRC is not valid (is optimized
1156 out), an error is thrown.
1158 It is assumed the contents of DST in the [DST_OFFSET,
1159 DST_OFFSET+LENGTH) range are wholly available. */
1162 value_contents_copy (struct value *dst, int dst_offset,
1163 struct value *src, int src_offset, int length)
1165 require_not_optimized_out (src);
1168 value_fetch_lazy (src);
1170 value_contents_copy_raw (dst, dst_offset, src, src_offset, length);
1174 value_lazy (struct value *value)
1180 set_value_lazy (struct value *value, int val)
1186 value_stack (struct value *value)
1188 return value->stack;
1192 set_value_stack (struct value *value, int val)
1198 value_contents (struct value *value)
1200 const gdb_byte *result = value_contents_writeable (value);
1201 require_not_optimized_out (value);
1202 require_available (value);
1207 value_contents_writeable (struct value *value)
1210 value_fetch_lazy (value);
1211 return value_contents_raw (value);
1215 value_optimized_out (struct value *value)
1217 /* We can only know if a value is optimized out once we have tried to
1219 if (!value->optimized_out && value->lazy)
1220 value_fetch_lazy (value);
1222 return value->optimized_out;
1226 value_optimized_out_const (const struct value *value)
1228 return value->optimized_out;
1232 set_value_optimized_out (struct value *value, int val)
1234 value->optimized_out = val;
1238 value_entirely_optimized_out (const struct value *value)
1240 if (!value->optimized_out)
1242 if (value->lval != lval_computed
1243 || !value->location.computed.funcs->check_any_valid)
1245 return !value->location.computed.funcs->check_any_valid (value);
1249 value_bits_valid (const struct value *value, int offset, int length)
1251 if (!value->optimized_out)
1253 if (value->lval != lval_computed
1254 || !value->location.computed.funcs->check_validity)
1256 return value->location.computed.funcs->check_validity (value, offset,
1261 value_bits_synthetic_pointer (const struct value *value,
1262 int offset, int length)
1264 if (value->lval != lval_computed
1265 || !value->location.computed.funcs->check_synthetic_pointer)
1267 return value->location.computed.funcs->check_synthetic_pointer (value,
1273 value_embedded_offset (struct value *value)
1275 return value->embedded_offset;
1279 set_value_embedded_offset (struct value *value, int val)
1281 value->embedded_offset = val;
1285 value_pointed_to_offset (struct value *value)
1287 return value->pointed_to_offset;
1291 set_value_pointed_to_offset (struct value *value, int val)
1293 value->pointed_to_offset = val;
1296 const struct lval_funcs *
1297 value_computed_funcs (const struct value *v)
1299 gdb_assert (value_lval_const (v) == lval_computed);
1301 return v->location.computed.funcs;
1305 value_computed_closure (const struct value *v)
1307 gdb_assert (v->lval == lval_computed);
1309 return v->location.computed.closure;
1313 deprecated_value_lval_hack (struct value *value)
1315 return &value->lval;
1319 value_lval_const (const struct value *value)
1325 value_address (const struct value *value)
1327 if (value->lval == lval_internalvar
1328 || value->lval == lval_internalvar_component
1329 || value->lval == lval_xcallable)
1331 if (value->parent != NULL)
1332 return value_address (value->parent) + value->offset;
1334 return value->location.address + value->offset;
1338 value_raw_address (struct value *value)
1340 if (value->lval == lval_internalvar
1341 || value->lval == lval_internalvar_component
1342 || value->lval == lval_xcallable)
1344 return value->location.address;
1348 set_value_address (struct value *value, CORE_ADDR addr)
1350 gdb_assert (value->lval != lval_internalvar
1351 && value->lval != lval_internalvar_component
1352 && value->lval != lval_xcallable);
1353 value->location.address = addr;
1356 struct internalvar **
1357 deprecated_value_internalvar_hack (struct value *value)
1359 return &value->location.internalvar;
1363 deprecated_value_frame_id_hack (struct value *value)
1365 return &value->frame_id;
1369 deprecated_value_regnum_hack (struct value *value)
1371 return &value->regnum;
1375 deprecated_value_modifiable (struct value *value)
1377 return value->modifiable;
1380 /* Return a mark in the value chain. All values allocated after the
1381 mark is obtained (except for those released) are subject to being freed
1382 if a subsequent value_free_to_mark is passed the mark. */
1389 /* Take a reference to VAL. VAL will not be deallocated until all
1390 references are released. */
1393 value_incref (struct value *val)
1395 val->reference_count++;
1398 /* Release a reference to VAL, which was acquired with value_incref.
1399 This function is also called to deallocate values from the value
1403 value_free (struct value *val)
1407 gdb_assert (val->reference_count > 0);
1408 val->reference_count--;
1409 if (val->reference_count > 0)
1412 /* If there's an associated parent value, drop our reference to
1414 if (val->parent != NULL)
1415 value_free (val->parent);
1417 if (VALUE_LVAL (val) == lval_computed)
1419 const struct lval_funcs *funcs = val->location.computed.funcs;
1421 if (funcs->free_closure)
1422 funcs->free_closure (val);
1424 else if (VALUE_LVAL (val) == lval_xcallable)
1425 free_xmethod_worker (val->location.xm_worker);
1427 xfree (val->contents);
1428 VEC_free (range_s, val->unavailable);
1433 /* Free all values allocated since MARK was obtained by value_mark
1434 (except for those released). */
1436 value_free_to_mark (struct value *mark)
1441 for (val = all_values; val && val != mark; val = next)
1450 /* Free all the values that have been allocated (except for those released).
1451 Call after each command, successful or not.
1452 In practice this is called before each command, which is sufficient. */
1455 free_all_values (void)
1460 for (val = all_values; val; val = next)
1470 /* Frees all the elements in a chain of values. */
1473 free_value_chain (struct value *v)
1479 next = value_next (v);
1484 /* Remove VAL from the chain all_values
1485 so it will not be freed automatically. */
1488 release_value (struct value *val)
1492 if (all_values == val)
1494 all_values = val->next;
1500 for (v = all_values; v; v = v->next)
1504 v->next = val->next;
1512 /* If the value is not already released, release it.
1513 If the value is already released, increment its reference count.
1514 That is, this function ensures that the value is released from the
1515 value chain and that the caller owns a reference to it. */
1518 release_value_or_incref (struct value *val)
1523 release_value (val);
1526 /* Release all values up to mark */
1528 value_release_to_mark (struct value *mark)
1533 for (val = next = all_values; next; next = next->next)
1535 if (next->next == mark)
1537 all_values = next->next;
1547 /* Return a copy of the value ARG.
1548 It contains the same contents, for same memory address,
1549 but it's a different block of storage. */
1552 value_copy (struct value *arg)
1554 struct type *encl_type = value_enclosing_type (arg);
1557 if (value_lazy (arg))
1558 val = allocate_value_lazy (encl_type);
1560 val = allocate_value (encl_type);
1561 val->type = arg->type;
1562 VALUE_LVAL (val) = VALUE_LVAL (arg);
1563 val->location = arg->location;
1564 val->offset = arg->offset;
1565 val->bitpos = arg->bitpos;
1566 val->bitsize = arg->bitsize;
1567 VALUE_FRAME_ID (val) = VALUE_FRAME_ID (arg);
1568 VALUE_REGNUM (val) = VALUE_REGNUM (arg);
1569 val->lazy = arg->lazy;
1570 val->optimized_out = arg->optimized_out;
1571 val->embedded_offset = value_embedded_offset (arg);
1572 val->pointed_to_offset = arg->pointed_to_offset;
1573 val->modifiable = arg->modifiable;
1574 if (!value_lazy (val))
1576 memcpy (value_contents_all_raw (val), value_contents_all_raw (arg),
1577 TYPE_LENGTH (value_enclosing_type (arg)));
1580 val->unavailable = VEC_copy (range_s, arg->unavailable);
1581 set_value_parent (val, arg->parent);
1582 if (VALUE_LVAL (val) == lval_computed)
1584 const struct lval_funcs *funcs = val->location.computed.funcs;
1586 if (funcs->copy_closure)
1587 val->location.computed.closure = funcs->copy_closure (val);
1592 /* Return a version of ARG that is non-lvalue. */
1595 value_non_lval (struct value *arg)
1597 if (VALUE_LVAL (arg) != not_lval)
1599 struct type *enc_type = value_enclosing_type (arg);
1600 struct value *val = allocate_value (enc_type);
1602 memcpy (value_contents_all_raw (val), value_contents_all (arg),
1603 TYPE_LENGTH (enc_type));
1604 val->type = arg->type;
1605 set_value_embedded_offset (val, value_embedded_offset (arg));
1606 set_value_pointed_to_offset (val, value_pointed_to_offset (arg));
1613 set_value_component_location (struct value *component,
1614 const struct value *whole)
1616 gdb_assert (whole->lval != lval_xcallable);
1618 if (whole->lval == lval_internalvar)
1619 VALUE_LVAL (component) = lval_internalvar_component;
1621 VALUE_LVAL (component) = whole->lval;
1623 component->location = whole->location;
1624 if (whole->lval == lval_computed)
1626 const struct lval_funcs *funcs = whole->location.computed.funcs;
1628 if (funcs->copy_closure)
1629 component->location.computed.closure = funcs->copy_closure (whole);
1634 /* Access to the value history. */
1636 /* Record a new value in the value history.
1637 Returns the absolute history index of the entry. */
1640 record_latest_value (struct value *val)
1644 /* We don't want this value to have anything to do with the inferior anymore.
1645 In particular, "set $1 = 50" should not affect the variable from which
1646 the value was taken, and fast watchpoints should be able to assume that
1647 a value on the value history never changes. */
1648 if (value_lazy (val))
1649 value_fetch_lazy (val);
1650 /* We preserve VALUE_LVAL so that the user can find out where it was fetched
1651 from. This is a bit dubious, because then *&$1 does not just return $1
1652 but the current contents of that location. c'est la vie... */
1653 val->modifiable = 0;
1655 /* The value may have already been released, in which case we're adding a
1656 new reference for its entry in the history. That is why we call
1657 release_value_or_incref here instead of release_value. */
1658 release_value_or_incref (val);
1660 /* Here we treat value_history_count as origin-zero
1661 and applying to the value being stored now. */
1663 i = value_history_count % VALUE_HISTORY_CHUNK;
1666 struct value_history_chunk *new
1667 = (struct value_history_chunk *)
1669 xmalloc (sizeof (struct value_history_chunk));
1670 memset (new->values, 0, sizeof new->values);
1671 new->next = value_history_chain;
1672 value_history_chain = new;
1675 value_history_chain->values[i] = val;
1677 /* Now we regard value_history_count as origin-one
1678 and applying to the value just stored. */
1680 return ++value_history_count;
1683 /* Return a copy of the value in the history with sequence number NUM. */
1686 access_value_history (int num)
1688 struct value_history_chunk *chunk;
1693 absnum += value_history_count;
1698 error (_("The history is empty."));
1700 error (_("There is only one value in the history."));
1702 error (_("History does not go back to $$%d."), -num);
1704 if (absnum > value_history_count)
1705 error (_("History has not yet reached $%d."), absnum);
1709 /* Now absnum is always absolute and origin zero. */
1711 chunk = value_history_chain;
1712 for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK
1713 - absnum / VALUE_HISTORY_CHUNK;
1715 chunk = chunk->next;
1717 return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
1721 show_values (char *num_exp, int from_tty)
1729 /* "show values +" should print from the stored position.
1730 "show values <exp>" should print around value number <exp>. */
1731 if (num_exp[0] != '+' || num_exp[1] != '\0')
1732 num = parse_and_eval_long (num_exp) - 5;
1736 /* "show values" means print the last 10 values. */
1737 num = value_history_count - 9;
1743 for (i = num; i < num + 10 && i <= value_history_count; i++)
1745 struct value_print_options opts;
1747 val = access_value_history (i);
1748 printf_filtered (("$%d = "), i);
1749 get_user_print_options (&opts);
1750 value_print (val, gdb_stdout, &opts);
1751 printf_filtered (("\n"));
1754 /* The next "show values +" should start after what we just printed. */
1757 /* Hitting just return after this command should do the same thing as
1758 "show values +". If num_exp is null, this is unnecessary, since
1759 "show values +" is not useful after "show values". */
1760 if (from_tty && num_exp)
1767 /* Internal variables. These are variables within the debugger
1768 that hold values assigned by debugger commands.
1769 The user refers to them with a '$' prefix
1770 that does not appear in the variable names stored internally. */
1774 struct internalvar *next;
1777 /* We support various different kinds of content of an internal variable.
1778 enum internalvar_kind specifies the kind, and union internalvar_data
1779 provides the data associated with this particular kind. */
1781 enum internalvar_kind
1783 /* The internal variable is empty. */
1786 /* The value of the internal variable is provided directly as
1787 a GDB value object. */
1790 /* A fresh value is computed via a call-back routine on every
1791 access to the internal variable. */
1792 INTERNALVAR_MAKE_VALUE,
1794 /* The internal variable holds a GDB internal convenience function. */
1795 INTERNALVAR_FUNCTION,
1797 /* The variable holds an integer value. */
1798 INTERNALVAR_INTEGER,
1800 /* The variable holds a GDB-provided string. */
1805 union internalvar_data
1807 /* A value object used with INTERNALVAR_VALUE. */
1808 struct value *value;
1810 /* The call-back routine used with INTERNALVAR_MAKE_VALUE. */
1813 /* The functions to call. */
1814 const struct internalvar_funcs *functions;
1816 /* The function's user-data. */
1820 /* The internal function used with INTERNALVAR_FUNCTION. */
1823 struct internal_function *function;
1824 /* True if this is the canonical name for the function. */
1828 /* An integer value used with INTERNALVAR_INTEGER. */
1831 /* If type is non-NULL, it will be used as the type to generate
1832 a value for this internal variable. If type is NULL, a default
1833 integer type for the architecture is used. */
1838 /* A string value used with INTERNALVAR_STRING. */
1843 static struct internalvar *internalvars;
1845 /* If the variable does not already exist create it and give it the
1846 value given. If no value is given then the default is zero. */
1848 init_if_undefined_command (char* args, int from_tty)
1850 struct internalvar* intvar;
1852 /* Parse the expression - this is taken from set_command(). */
1853 struct expression *expr = parse_expression (args);
1854 register struct cleanup *old_chain =
1855 make_cleanup (free_current_contents, &expr);
1857 /* Validate the expression.
1858 Was the expression an assignment?
1859 Or even an expression at all? */
1860 if (expr->nelts == 0 || expr->elts[0].opcode != BINOP_ASSIGN)
1861 error (_("Init-if-undefined requires an assignment expression."));
1863 /* Extract the variable from the parsed expression.
1864 In the case of an assign the lvalue will be in elts[1] and elts[2]. */
1865 if (expr->elts[1].opcode != OP_INTERNALVAR)
1866 error (_("The first parameter to init-if-undefined "
1867 "should be a GDB variable."));
1868 intvar = expr->elts[2].internalvar;
1870 /* Only evaluate the expression if the lvalue is void.
1871 This may still fail if the expresssion is invalid. */
1872 if (intvar->kind == INTERNALVAR_VOID)
1873 evaluate_expression (expr);
1875 do_cleanups (old_chain);
1879 /* Look up an internal variable with name NAME. NAME should not
1880 normally include a dollar sign.
1882 If the specified internal variable does not exist,
1883 the return value is NULL. */
1885 struct internalvar *
1886 lookup_only_internalvar (const char *name)
1888 struct internalvar *var;
1890 for (var = internalvars; var; var = var->next)
1891 if (strcmp (var->name, name) == 0)
1897 /* Complete NAME by comparing it to the names of internal variables.
1898 Returns a vector of newly allocated strings, or NULL if no matches
1902 complete_internalvar (const char *name)
1904 VEC (char_ptr) *result = NULL;
1905 struct internalvar *var;
1908 len = strlen (name);
1910 for (var = internalvars; var; var = var->next)
1911 if (strncmp (var->name, name, len) == 0)
1913 char *r = xstrdup (var->name);
1915 VEC_safe_push (char_ptr, result, r);
1921 /* Create an internal variable with name NAME and with a void value.
1922 NAME should not normally include a dollar sign. */
1924 struct internalvar *
1925 create_internalvar (const char *name)
1927 struct internalvar *var;
1929 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
1930 var->name = concat (name, (char *)NULL);
1931 var->kind = INTERNALVAR_VOID;
1932 var->next = internalvars;
1937 /* Create an internal variable with name NAME and register FUN as the
1938 function that value_of_internalvar uses to create a value whenever
1939 this variable is referenced. NAME should not normally include a
1940 dollar sign. DATA is passed uninterpreted to FUN when it is
1941 called. CLEANUP, if not NULL, is called when the internal variable
1942 is destroyed. It is passed DATA as its only argument. */
1944 struct internalvar *
1945 create_internalvar_type_lazy (const char *name,
1946 const struct internalvar_funcs *funcs,
1949 struct internalvar *var = create_internalvar (name);
1951 var->kind = INTERNALVAR_MAKE_VALUE;
1952 var->u.make_value.functions = funcs;
1953 var->u.make_value.data = data;
1957 /* See documentation in value.h. */
1960 compile_internalvar_to_ax (struct internalvar *var,
1961 struct agent_expr *expr,
1962 struct axs_value *value)
1964 if (var->kind != INTERNALVAR_MAKE_VALUE
1965 || var->u.make_value.functions->compile_to_ax == NULL)
1968 var->u.make_value.functions->compile_to_ax (var, expr, value,
1969 var->u.make_value.data);
1973 /* Look up an internal variable with name NAME. NAME should not
1974 normally include a dollar sign.
1976 If the specified internal variable does not exist,
1977 one is created, with a void value. */
1979 struct internalvar *
1980 lookup_internalvar (const char *name)
1982 struct internalvar *var;
1984 var = lookup_only_internalvar (name);
1988 return create_internalvar (name);
1991 /* Return current value of internal variable VAR. For variables that
1992 are not inherently typed, use a value type appropriate for GDBARCH. */
1995 value_of_internalvar (struct gdbarch *gdbarch, struct internalvar *var)
1998 struct trace_state_variable *tsv;
2000 /* If there is a trace state variable of the same name, assume that
2001 is what we really want to see. */
2002 tsv = find_trace_state_variable (var->name);
2005 tsv->value_known = target_get_trace_state_variable_value (tsv->number,
2007 if (tsv->value_known)
2008 val = value_from_longest (builtin_type (gdbarch)->builtin_int64,
2011 val = allocate_value (builtin_type (gdbarch)->builtin_void);
2017 case INTERNALVAR_VOID:
2018 val = allocate_value (builtin_type (gdbarch)->builtin_void);
2021 case INTERNALVAR_FUNCTION:
2022 val = allocate_value (builtin_type (gdbarch)->internal_fn);
2025 case INTERNALVAR_INTEGER:
2026 if (!var->u.integer.type)
2027 val = value_from_longest (builtin_type (gdbarch)->builtin_int,
2028 var->u.integer.val);
2030 val = value_from_longest (var->u.integer.type, var->u.integer.val);
2033 case INTERNALVAR_STRING:
2034 val = value_cstring (var->u.string, strlen (var->u.string),
2035 builtin_type (gdbarch)->builtin_char);
2038 case INTERNALVAR_VALUE:
2039 val = value_copy (var->u.value);
2040 if (value_lazy (val))
2041 value_fetch_lazy (val);
2044 case INTERNALVAR_MAKE_VALUE:
2045 val = (*var->u.make_value.functions->make_value) (gdbarch, var,
2046 var->u.make_value.data);
2050 internal_error (__FILE__, __LINE__, _("bad kind"));
2053 /* Change the VALUE_LVAL to lval_internalvar so that future operations
2054 on this value go back to affect the original internal variable.
2056 Do not do this for INTERNALVAR_MAKE_VALUE variables, as those have
2057 no underlying modifyable state in the internal variable.
2059 Likewise, if the variable's value is a computed lvalue, we want
2060 references to it to produce another computed lvalue, where
2061 references and assignments actually operate through the
2062 computed value's functions.
2064 This means that internal variables with computed values
2065 behave a little differently from other internal variables:
2066 assignments to them don't just replace the previous value
2067 altogether. At the moment, this seems like the behavior we
2070 if (var->kind != INTERNALVAR_MAKE_VALUE
2071 && val->lval != lval_computed)
2073 VALUE_LVAL (val) = lval_internalvar;
2074 VALUE_INTERNALVAR (val) = var;
2081 get_internalvar_integer (struct internalvar *var, LONGEST *result)
2083 if (var->kind == INTERNALVAR_INTEGER)
2085 *result = var->u.integer.val;
2089 if (var->kind == INTERNALVAR_VALUE)
2091 struct type *type = check_typedef (value_type (var->u.value));
2093 if (TYPE_CODE (type) == TYPE_CODE_INT)
2095 *result = value_as_long (var->u.value);
2104 get_internalvar_function (struct internalvar *var,
2105 struct internal_function **result)
2109 case INTERNALVAR_FUNCTION:
2110 *result = var->u.fn.function;
2119 set_internalvar_component (struct internalvar *var, int offset, int bitpos,
2120 int bitsize, struct value *newval)
2126 case INTERNALVAR_VALUE:
2127 addr = value_contents_writeable (var->u.value);
2130 modify_field (value_type (var->u.value), addr + offset,
2131 value_as_long (newval), bitpos, bitsize);
2133 memcpy (addr + offset, value_contents (newval),
2134 TYPE_LENGTH (value_type (newval)));
2138 /* We can never get a component of any other kind. */
2139 internal_error (__FILE__, __LINE__, _("set_internalvar_component"));
2144 set_internalvar (struct internalvar *var, struct value *val)
2146 enum internalvar_kind new_kind;
2147 union internalvar_data new_data = { 0 };
2149 if (var->kind == INTERNALVAR_FUNCTION && var->u.fn.canonical)
2150 error (_("Cannot overwrite convenience function %s"), var->name);
2152 /* Prepare new contents. */
2153 switch (TYPE_CODE (check_typedef (value_type (val))))
2155 case TYPE_CODE_VOID:
2156 new_kind = INTERNALVAR_VOID;
2159 case TYPE_CODE_INTERNAL_FUNCTION:
2160 gdb_assert (VALUE_LVAL (val) == lval_internalvar);
2161 new_kind = INTERNALVAR_FUNCTION;
2162 get_internalvar_function (VALUE_INTERNALVAR (val),
2163 &new_data.fn.function);
2164 /* Copies created here are never canonical. */
2168 new_kind = INTERNALVAR_VALUE;
2169 new_data.value = value_copy (val);
2170 new_data.value->modifiable = 1;
2172 /* Force the value to be fetched from the target now, to avoid problems
2173 later when this internalvar is referenced and the target is gone or
2175 if (value_lazy (new_data.value))
2176 value_fetch_lazy (new_data.value);
2178 /* Release the value from the value chain to prevent it from being
2179 deleted by free_all_values. From here on this function should not
2180 call error () until new_data is installed into the var->u to avoid
2182 release_value (new_data.value);
2186 /* Clean up old contents. */
2187 clear_internalvar (var);
2190 var->kind = new_kind;
2192 /* End code which must not call error(). */
2196 set_internalvar_integer (struct internalvar *var, LONGEST l)
2198 /* Clean up old contents. */
2199 clear_internalvar (var);
2201 var->kind = INTERNALVAR_INTEGER;
2202 var->u.integer.type = NULL;
2203 var->u.integer.val = l;
2207 set_internalvar_string (struct internalvar *var, const char *string)
2209 /* Clean up old contents. */
2210 clear_internalvar (var);
2212 var->kind = INTERNALVAR_STRING;
2213 var->u.string = xstrdup (string);
2217 set_internalvar_function (struct internalvar *var, struct internal_function *f)
2219 /* Clean up old contents. */
2220 clear_internalvar (var);
2222 var->kind = INTERNALVAR_FUNCTION;
2223 var->u.fn.function = f;
2224 var->u.fn.canonical = 1;
2225 /* Variables installed here are always the canonical version. */
2229 clear_internalvar (struct internalvar *var)
2231 /* Clean up old contents. */
2234 case INTERNALVAR_VALUE:
2235 value_free (var->u.value);
2238 case INTERNALVAR_STRING:
2239 xfree (var->u.string);
2242 case INTERNALVAR_MAKE_VALUE:
2243 if (var->u.make_value.functions->destroy != NULL)
2244 var->u.make_value.functions->destroy (var->u.make_value.data);
2251 /* Reset to void kind. */
2252 var->kind = INTERNALVAR_VOID;
2256 internalvar_name (struct internalvar *var)
2261 static struct internal_function *
2262 create_internal_function (const char *name,
2263 internal_function_fn handler, void *cookie)
2265 struct internal_function *ifn = XNEW (struct internal_function);
2267 ifn->name = xstrdup (name);
2268 ifn->handler = handler;
2269 ifn->cookie = cookie;
2274 value_internal_function_name (struct value *val)
2276 struct internal_function *ifn;
2279 gdb_assert (VALUE_LVAL (val) == lval_internalvar);
2280 result = get_internalvar_function (VALUE_INTERNALVAR (val), &ifn);
2281 gdb_assert (result);
2287 call_internal_function (struct gdbarch *gdbarch,
2288 const struct language_defn *language,
2289 struct value *func, int argc, struct value **argv)
2291 struct internal_function *ifn;
2294 gdb_assert (VALUE_LVAL (func) == lval_internalvar);
2295 result = get_internalvar_function (VALUE_INTERNALVAR (func), &ifn);
2296 gdb_assert (result);
2298 return (*ifn->handler) (gdbarch, language, ifn->cookie, argc, argv);
2301 /* The 'function' command. This does nothing -- it is just a
2302 placeholder to let "help function NAME" work. This is also used as
2303 the implementation of the sub-command that is created when
2304 registering an internal function. */
2306 function_command (char *command, int from_tty)
2311 /* Clean up if an internal function's command is destroyed. */
2313 function_destroyer (struct cmd_list_element *self, void *ignore)
2315 xfree ((char *) self->name);
2316 xfree ((char *) self->doc);
2319 /* Add a new internal function. NAME is the name of the function; DOC
2320 is a documentation string describing the function. HANDLER is
2321 called when the function is invoked. COOKIE is an arbitrary
2322 pointer which is passed to HANDLER and is intended for "user
2325 add_internal_function (const char *name, const char *doc,
2326 internal_function_fn handler, void *cookie)
2328 struct cmd_list_element *cmd;
2329 struct internal_function *ifn;
2330 struct internalvar *var = lookup_internalvar (name);
2332 ifn = create_internal_function (name, handler, cookie);
2333 set_internalvar_function (var, ifn);
2335 cmd = add_cmd (xstrdup (name), no_class, function_command, (char *) doc,
2337 cmd->destroyer = function_destroyer;
2340 /* Update VALUE before discarding OBJFILE. COPIED_TYPES is used to
2341 prevent cycles / duplicates. */
2344 preserve_one_value (struct value *value, struct objfile *objfile,
2345 htab_t copied_types)
2347 if (TYPE_OBJFILE (value->type) == objfile)
2348 value->type = copy_type_recursive (objfile, value->type, copied_types);
2350 if (TYPE_OBJFILE (value->enclosing_type) == objfile)
2351 value->enclosing_type = copy_type_recursive (objfile,
2352 value->enclosing_type,
2356 /* Likewise for internal variable VAR. */
2359 preserve_one_internalvar (struct internalvar *var, struct objfile *objfile,
2360 htab_t copied_types)
2364 case INTERNALVAR_INTEGER:
2365 if (var->u.integer.type && TYPE_OBJFILE (var->u.integer.type) == objfile)
2367 = copy_type_recursive (objfile, var->u.integer.type, copied_types);
2370 case INTERNALVAR_VALUE:
2371 preserve_one_value (var->u.value, objfile, copied_types);
2376 /* Update the internal variables and value history when OBJFILE is
2377 discarded; we must copy the types out of the objfile. New global types
2378 will be created for every convenience variable which currently points to
2379 this objfile's types, and the convenience variables will be adjusted to
2380 use the new global types. */
2383 preserve_values (struct objfile *objfile)
2385 htab_t copied_types;
2386 struct value_history_chunk *cur;
2387 struct internalvar *var;
2390 /* Create the hash table. We allocate on the objfile's obstack, since
2391 it is soon to be deleted. */
2392 copied_types = create_copied_types_hash (objfile);
2394 for (cur = value_history_chain; cur; cur = cur->next)
2395 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
2397 preserve_one_value (cur->values[i], objfile, copied_types);
2399 for (var = internalvars; var; var = var->next)
2400 preserve_one_internalvar (var, objfile, copied_types);
2402 preserve_ext_lang_values (objfile, copied_types);
2404 htab_delete (copied_types);
2408 show_convenience (char *ignore, int from_tty)
2410 struct gdbarch *gdbarch = get_current_arch ();
2411 struct internalvar *var;
2413 struct value_print_options opts;
2415 get_user_print_options (&opts);
2416 for (var = internalvars; var; var = var->next)
2418 volatile struct gdb_exception ex;
2424 printf_filtered (("$%s = "), var->name);
2426 TRY_CATCH (ex, RETURN_MASK_ERROR)
2430 val = value_of_internalvar (gdbarch, var);
2431 value_print (val, gdb_stdout, &opts);
2434 fprintf_filtered (gdb_stdout, _("<error: %s>"), ex.message);
2435 printf_filtered (("\n"));
2439 /* This text does not mention convenience functions on purpose.
2440 The user can't create them except via Python, and if Python support
2441 is installed this message will never be printed ($_streq will
2443 printf_unfiltered (_("No debugger convenience variables now defined.\n"
2444 "Convenience variables have "
2445 "names starting with \"$\";\n"
2446 "use \"set\" as in \"set "
2447 "$foo = 5\" to define them.\n"));
2451 /* Return the TYPE_CODE_XMETHOD value corresponding to WORKER. */
2454 value_of_xmethod (struct xmethod_worker *worker)
2456 if (worker->value == NULL)
2460 v = allocate_value (builtin_type (target_gdbarch ())->xmethod);
2461 v->lval = lval_xcallable;
2462 v->location.xm_worker = worker;
2467 return worker->value;
2470 /* Call the xmethod corresponding to the TYPE_CODE_XMETHOD value METHOD. */
2473 call_xmethod (struct value *method, int argc, struct value **argv)
2475 gdb_assert (TYPE_CODE (value_type (method)) == TYPE_CODE_XMETHOD
2476 && method->lval == lval_xcallable && argc > 0);
2478 return invoke_xmethod (method->location.xm_worker,
2479 argv[0], argv + 1, argc - 1);
2482 /* Extract a value as a C number (either long or double).
2483 Knows how to convert fixed values to double, or
2484 floating values to long.
2485 Does not deallocate the value. */
2488 value_as_long (struct value *val)
2490 /* This coerces arrays and functions, which is necessary (e.g.
2491 in disassemble_command). It also dereferences references, which
2492 I suspect is the most logical thing to do. */
2493 val = coerce_array (val);
2494 return unpack_long (value_type (val), value_contents (val));
2498 value_as_double (struct value *val)
2503 foo = unpack_double (value_type (val), value_contents (val), &inv);
2505 error (_("Invalid floating value found in program."));
2509 /* Extract a value as a C pointer. Does not deallocate the value.
2510 Note that val's type may not actually be a pointer; value_as_long
2511 handles all the cases. */
2513 value_as_address (struct value *val)
2515 struct gdbarch *gdbarch = get_type_arch (value_type (val));
2517 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2518 whether we want this to be true eventually. */
2520 /* gdbarch_addr_bits_remove is wrong if we are being called for a
2521 non-address (e.g. argument to "signal", "info break", etc.), or
2522 for pointers to char, in which the low bits *are* significant. */
2523 return gdbarch_addr_bits_remove (gdbarch, value_as_long (val));
2526 /* There are several targets (IA-64, PowerPC, and others) which
2527 don't represent pointers to functions as simply the address of
2528 the function's entry point. For example, on the IA-64, a
2529 function pointer points to a two-word descriptor, generated by
2530 the linker, which contains the function's entry point, and the
2531 value the IA-64 "global pointer" register should have --- to
2532 support position-independent code. The linker generates
2533 descriptors only for those functions whose addresses are taken.
2535 On such targets, it's difficult for GDB to convert an arbitrary
2536 function address into a function pointer; it has to either find
2537 an existing descriptor for that function, or call malloc and
2538 build its own. On some targets, it is impossible for GDB to
2539 build a descriptor at all: the descriptor must contain a jump
2540 instruction; data memory cannot be executed; and code memory
2543 Upon entry to this function, if VAL is a value of type `function'
2544 (that is, TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC), then
2545 value_address (val) is the address of the function. This is what
2546 you'll get if you evaluate an expression like `main'. The call
2547 to COERCE_ARRAY below actually does all the usual unary
2548 conversions, which includes converting values of type `function'
2549 to `pointer to function'. This is the challenging conversion
2550 discussed above. Then, `unpack_long' will convert that pointer
2551 back into an address.
2553 So, suppose the user types `disassemble foo' on an architecture
2554 with a strange function pointer representation, on which GDB
2555 cannot build its own descriptors, and suppose further that `foo'
2556 has no linker-built descriptor. The address->pointer conversion
2557 will signal an error and prevent the command from running, even
2558 though the next step would have been to convert the pointer
2559 directly back into the same address.
2561 The following shortcut avoids this whole mess. If VAL is a
2562 function, just return its address directly. */
2563 if (TYPE_CODE (value_type (val)) == TYPE_CODE_FUNC
2564 || TYPE_CODE (value_type (val)) == TYPE_CODE_METHOD)
2565 return value_address (val);
2567 val = coerce_array (val);
2569 /* Some architectures (e.g. Harvard), map instruction and data
2570 addresses onto a single large unified address space. For
2571 instance: An architecture may consider a large integer in the
2572 range 0x10000000 .. 0x1000ffff to already represent a data
2573 addresses (hence not need a pointer to address conversion) while
2574 a small integer would still need to be converted integer to
2575 pointer to address. Just assume such architectures handle all
2576 integer conversions in a single function. */
2580 I think INTEGER_TO_ADDRESS is a good idea as proposed --- but we
2581 must admonish GDB hackers to make sure its behavior matches the
2582 compiler's, whenever possible.
2584 In general, I think GDB should evaluate expressions the same way
2585 the compiler does. When the user copies an expression out of
2586 their source code and hands it to a `print' command, they should
2587 get the same value the compiler would have computed. Any
2588 deviation from this rule can cause major confusion and annoyance,
2589 and needs to be justified carefully. In other words, GDB doesn't
2590 really have the freedom to do these conversions in clever and
2593 AndrewC pointed out that users aren't complaining about how GDB
2594 casts integers to pointers; they are complaining that they can't
2595 take an address from a disassembly listing and give it to `x/i'.
2596 This is certainly important.
2598 Adding an architecture method like integer_to_address() certainly
2599 makes it possible for GDB to "get it right" in all circumstances
2600 --- the target has complete control over how things get done, so
2601 people can Do The Right Thing for their target without breaking
2602 anyone else. The standard doesn't specify how integers get
2603 converted to pointers; usually, the ABI doesn't either, but
2604 ABI-specific code is a more reasonable place to handle it. */
2606 if (TYPE_CODE (value_type (val)) != TYPE_CODE_PTR
2607 && TYPE_CODE (value_type (val)) != TYPE_CODE_REF
2608 && gdbarch_integer_to_address_p (gdbarch))
2609 return gdbarch_integer_to_address (gdbarch, value_type (val),
2610 value_contents (val));
2612 return unpack_long (value_type (val), value_contents (val));
2616 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
2617 as a long, or as a double, assuming the raw data is described
2618 by type TYPE. Knows how to convert different sizes of values
2619 and can convert between fixed and floating point. We don't assume
2620 any alignment for the raw data. Return value is in host byte order.
2622 If you want functions and arrays to be coerced to pointers, and
2623 references to be dereferenced, call value_as_long() instead.
2625 C++: It is assumed that the front-end has taken care of
2626 all matters concerning pointers to members. A pointer
2627 to member which reaches here is considered to be equivalent
2628 to an INT (or some size). After all, it is only an offset. */
2631 unpack_long (struct type *type, const gdb_byte *valaddr)
2633 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
2634 enum type_code code = TYPE_CODE (type);
2635 int len = TYPE_LENGTH (type);
2636 int nosign = TYPE_UNSIGNED (type);
2640 case TYPE_CODE_TYPEDEF:
2641 return unpack_long (check_typedef (type), valaddr);
2642 case TYPE_CODE_ENUM:
2643 case TYPE_CODE_FLAGS:
2644 case TYPE_CODE_BOOL:
2646 case TYPE_CODE_CHAR:
2647 case TYPE_CODE_RANGE:
2648 case TYPE_CODE_MEMBERPTR:
2650 return extract_unsigned_integer (valaddr, len, byte_order);
2652 return extract_signed_integer (valaddr, len, byte_order);
2655 return extract_typed_floating (valaddr, type);
2657 case TYPE_CODE_DECFLOAT:
2658 /* libdecnumber has a function to convert from decimal to integer, but
2659 it doesn't work when the decimal number has a fractional part. */
2660 return decimal_to_doublest (valaddr, len, byte_order);
2664 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2665 whether we want this to be true eventually. */
2666 return extract_typed_address (valaddr, type);
2669 error (_("Value can't be converted to integer."));
2671 return 0; /* Placate lint. */
2674 /* Return a double value from the specified type and address.
2675 INVP points to an int which is set to 0 for valid value,
2676 1 for invalid value (bad float format). In either case,
2677 the returned double is OK to use. Argument is in target
2678 format, result is in host format. */
2681 unpack_double (struct type *type, const gdb_byte *valaddr, int *invp)
2683 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
2684 enum type_code code;
2688 *invp = 0; /* Assume valid. */
2689 CHECK_TYPEDEF (type);
2690 code = TYPE_CODE (type);
2691 len = TYPE_LENGTH (type);
2692 nosign = TYPE_UNSIGNED (type);
2693 if (code == TYPE_CODE_FLT)
2695 /* NOTE: cagney/2002-02-19: There was a test here to see if the
2696 floating-point value was valid (using the macro
2697 INVALID_FLOAT). That test/macro have been removed.
2699 It turns out that only the VAX defined this macro and then
2700 only in a non-portable way. Fixing the portability problem
2701 wouldn't help since the VAX floating-point code is also badly
2702 bit-rotten. The target needs to add definitions for the
2703 methods gdbarch_float_format and gdbarch_double_format - these
2704 exactly describe the target floating-point format. The
2705 problem here is that the corresponding floatformat_vax_f and
2706 floatformat_vax_d values these methods should be set to are
2707 also not defined either. Oops!
2709 Hopefully someone will add both the missing floatformat
2710 definitions and the new cases for floatformat_is_valid (). */
2712 if (!floatformat_is_valid (floatformat_from_type (type), valaddr))
2718 return extract_typed_floating (valaddr, type);
2720 else if (code == TYPE_CODE_DECFLOAT)
2721 return decimal_to_doublest (valaddr, len, byte_order);
2724 /* Unsigned -- be sure we compensate for signed LONGEST. */
2725 return (ULONGEST) unpack_long (type, valaddr);
2729 /* Signed -- we are OK with unpack_long. */
2730 return unpack_long (type, valaddr);
2734 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
2735 as a CORE_ADDR, assuming the raw data is described by type TYPE.
2736 We don't assume any alignment for the raw data. Return value is in
2739 If you want functions and arrays to be coerced to pointers, and
2740 references to be dereferenced, call value_as_address() instead.
2742 C++: It is assumed that the front-end has taken care of
2743 all matters concerning pointers to members. A pointer
2744 to member which reaches here is considered to be equivalent
2745 to an INT (or some size). After all, it is only an offset. */
2748 unpack_pointer (struct type *type, const gdb_byte *valaddr)
2750 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2751 whether we want this to be true eventually. */
2752 return unpack_long (type, valaddr);
2756 /* Get the value of the FIELDNO'th field (which must be static) of
2760 value_static_field (struct type *type, int fieldno)
2762 struct value *retval;
2764 switch (TYPE_FIELD_LOC_KIND (type, fieldno))
2766 case FIELD_LOC_KIND_PHYSADDR:
2767 retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
2768 TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
2770 case FIELD_LOC_KIND_PHYSNAME:
2772 const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
2773 /* TYPE_FIELD_NAME (type, fieldno); */
2774 struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
2778 /* With some compilers, e.g. HP aCC, static data members are
2779 reported as non-debuggable symbols. */
2780 struct bound_minimal_symbol msym
2781 = lookup_minimal_symbol (phys_name, NULL, NULL);
2784 return allocate_optimized_out_value (type);
2787 retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
2788 BMSYMBOL_VALUE_ADDRESS (msym));
2792 retval = value_of_variable (sym, NULL);
2796 gdb_assert_not_reached ("unexpected field location kind");
2802 /* Change the enclosing type of a value object VAL to NEW_ENCL_TYPE.
2803 You have to be careful here, since the size of the data area for the value
2804 is set by the length of the enclosing type. So if NEW_ENCL_TYPE is bigger
2805 than the old enclosing type, you have to allocate more space for the
2809 set_value_enclosing_type (struct value *val, struct type *new_encl_type)
2811 if (TYPE_LENGTH (new_encl_type) > TYPE_LENGTH (value_enclosing_type (val)))
2813 (gdb_byte *) xrealloc (val->contents, TYPE_LENGTH (new_encl_type));
2815 val->enclosing_type = new_encl_type;
2818 /* Given a value ARG1 (offset by OFFSET bytes)
2819 of a struct or union type ARG_TYPE,
2820 extract and return the value of one of its (non-static) fields.
2821 FIELDNO says which field. */
2824 value_primitive_field (struct value *arg1, int offset,
2825 int fieldno, struct type *arg_type)
2830 CHECK_TYPEDEF (arg_type);
2831 type = TYPE_FIELD_TYPE (arg_type, fieldno);
2833 /* Call check_typedef on our type to make sure that, if TYPE
2834 is a TYPE_CODE_TYPEDEF, its length is set to the length
2835 of the target type instead of zero. However, we do not
2836 replace the typedef type by the target type, because we want
2837 to keep the typedef in order to be able to print the type
2838 description correctly. */
2839 check_typedef (type);
2841 if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
2843 /* Handle packed fields.
2845 Create a new value for the bitfield, with bitpos and bitsize
2846 set. If possible, arrange offset and bitpos so that we can
2847 do a single aligned read of the size of the containing type.
2848 Otherwise, adjust offset to the byte containing the first
2849 bit. Assume that the address, offset, and embedded offset
2850 are sufficiently aligned. */
2852 int bitpos = TYPE_FIELD_BITPOS (arg_type, fieldno);
2853 int container_bitsize = TYPE_LENGTH (type) * 8;
2855 if (arg1->optimized_out)
2856 v = allocate_optimized_out_value (type);
2859 v = allocate_value_lazy (type);
2860 v->bitsize = TYPE_FIELD_BITSIZE (arg_type, fieldno);
2861 if ((bitpos % container_bitsize) + v->bitsize <= container_bitsize
2862 && TYPE_LENGTH (type) <= (int) sizeof (LONGEST))
2863 v->bitpos = bitpos % container_bitsize;
2865 v->bitpos = bitpos % 8;
2866 v->offset = (value_embedded_offset (arg1)
2868 + (bitpos - v->bitpos) / 8);
2869 set_value_parent (v, arg1);
2870 if (!value_lazy (arg1))
2871 value_fetch_lazy (v);
2874 else if (fieldno < TYPE_N_BASECLASSES (arg_type))
2876 /* This field is actually a base subobject, so preserve the
2877 entire object's contents for later references to virtual
2881 /* Lazy register values with offsets are not supported. */
2882 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
2883 value_fetch_lazy (arg1);
2885 /* The optimized_out flag is only set correctly once a lazy value is
2886 loaded, having just loaded some lazy values we should check the
2887 optimized out case now. */
2888 if (arg1->optimized_out)
2889 v = allocate_optimized_out_value (type);
2892 /* We special case virtual inheritance here because this
2893 requires access to the contents, which we would rather avoid
2894 for references to ordinary fields of unavailable values. */
2895 if (BASETYPE_VIA_VIRTUAL (arg_type, fieldno))
2896 boffset = baseclass_offset (arg_type, fieldno,
2897 value_contents (arg1),
2898 value_embedded_offset (arg1),
2899 value_address (arg1),
2902 boffset = TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
2904 if (value_lazy (arg1))
2905 v = allocate_value_lazy (value_enclosing_type (arg1));
2908 v = allocate_value (value_enclosing_type (arg1));
2909 value_contents_copy_raw (v, 0, arg1, 0,
2910 TYPE_LENGTH (value_enclosing_type (arg1)));
2913 v->offset = value_offset (arg1);
2914 v->embedded_offset = offset + value_embedded_offset (arg1) + boffset;
2919 /* Plain old data member */
2920 offset += TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
2922 /* Lazy register values with offsets are not supported. */
2923 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
2924 value_fetch_lazy (arg1);
2926 /* The optimized_out flag is only set correctly once a lazy value is
2927 loaded, having just loaded some lazy values we should check for
2928 the optimized out case now. */
2929 if (arg1->optimized_out)
2930 v = allocate_optimized_out_value (type);
2931 else if (value_lazy (arg1))
2932 v = allocate_value_lazy (type);
2935 v = allocate_value (type);
2936 value_contents_copy_raw (v, value_embedded_offset (v),
2937 arg1, value_embedded_offset (arg1) + offset,
2938 TYPE_LENGTH (type));
2940 v->offset = (value_offset (arg1) + offset
2941 + value_embedded_offset (arg1));
2943 set_value_component_location (v, arg1);
2944 VALUE_REGNUM (v) = VALUE_REGNUM (arg1);
2945 VALUE_FRAME_ID (v) = VALUE_FRAME_ID (arg1);
2949 /* Given a value ARG1 of a struct or union type,
2950 extract and return the value of one of its (non-static) fields.
2951 FIELDNO says which field. */
2954 value_field (struct value *arg1, int fieldno)
2956 return value_primitive_field (arg1, 0, fieldno, value_type (arg1));
2959 /* Return a non-virtual function as a value.
2960 F is the list of member functions which contains the desired method.
2961 J is an index into F which provides the desired method.
2963 We only use the symbol for its address, so be happy with either a
2964 full symbol or a minimal symbol. */
2967 value_fn_field (struct value **arg1p, struct fn_field *f,
2968 int j, struct type *type,
2972 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
2973 const char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
2975 struct bound_minimal_symbol msym;
2977 sym = lookup_symbol (physname, 0, VAR_DOMAIN, 0);
2980 memset (&msym, 0, sizeof (msym));
2984 gdb_assert (sym == NULL);
2985 msym = lookup_bound_minimal_symbol (physname);
2986 if (msym.minsym == NULL)
2990 v = allocate_value (ftype);
2993 set_value_address (v, BLOCK_START (SYMBOL_BLOCK_VALUE (sym)));
2997 /* The minimal symbol might point to a function descriptor;
2998 resolve it to the actual code address instead. */
2999 struct objfile *objfile = msym.objfile;
3000 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3002 set_value_address (v,
3003 gdbarch_convert_from_func_ptr_addr
3004 (gdbarch, BMSYMBOL_VALUE_ADDRESS (msym), ¤t_target));
3009 if (type != value_type (*arg1p))
3010 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
3011 value_addr (*arg1p)));
3013 /* Move the `this' pointer according to the offset.
3014 VALUE_OFFSET (*arg1p) += offset; */
3022 /* Helper function for both unpack_value_bits_as_long and
3023 unpack_bits_as_long. See those functions for more details on the
3024 interface; the only difference is that this function accepts either
3025 a NULL or a non-NULL ORIGINAL_VALUE. */
3028 unpack_value_bits_as_long_1 (struct type *field_type, const gdb_byte *valaddr,
3029 int embedded_offset, int bitpos, int bitsize,
3030 const struct value *original_value,
3033 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (field_type));
3040 /* Read the minimum number of bytes required; there may not be
3041 enough bytes to read an entire ULONGEST. */
3042 CHECK_TYPEDEF (field_type);
3044 bytes_read = ((bitpos % 8) + bitsize + 7) / 8;
3046 bytes_read = TYPE_LENGTH (field_type);
3048 read_offset = bitpos / 8;
3050 if (original_value != NULL
3051 && !value_bits_available (original_value, embedded_offset + bitpos,
3055 val = extract_unsigned_integer (valaddr + embedded_offset + read_offset,
3056 bytes_read, byte_order);
3058 /* Extract bits. See comment above. */
3060 if (gdbarch_bits_big_endian (get_type_arch (field_type)))
3061 lsbcount = (bytes_read * 8 - bitpos % 8 - bitsize);
3063 lsbcount = (bitpos % 8);
3066 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
3067 If the field is signed, and is negative, then sign extend. */
3069 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
3071 valmask = (((ULONGEST) 1) << bitsize) - 1;
3073 if (!TYPE_UNSIGNED (field_type))
3075 if (val & (valmask ^ (valmask >> 1)))
3086 /* Unpack a bitfield of the specified FIELD_TYPE, from the object at
3087 VALADDR + EMBEDDED_OFFSET, and store the result in *RESULT.
3088 VALADDR points to the contents of ORIGINAL_VALUE, which must not be
3089 NULL. The bitfield starts at BITPOS bits and contains BITSIZE
3092 Returns false if the value contents are unavailable, otherwise
3093 returns true, indicating a valid value has been stored in *RESULT.
3095 Extracting bits depends on endianness of the machine. Compute the
3096 number of least significant bits to discard. For big endian machines,
3097 we compute the total number of bits in the anonymous object, subtract
3098 off the bit count from the MSB of the object to the MSB of the
3099 bitfield, then the size of the bitfield, which leaves the LSB discard
3100 count. For little endian machines, the discard count is simply the
3101 number of bits from the LSB of the anonymous object to the LSB of the
3104 If the field is signed, we also do sign extension. */
3107 unpack_value_bits_as_long (struct type *field_type, const gdb_byte *valaddr,
3108 int embedded_offset, int bitpos, int bitsize,
3109 const struct value *original_value,
3112 gdb_assert (original_value != NULL);
3114 return unpack_value_bits_as_long_1 (field_type, valaddr, embedded_offset,
3115 bitpos, bitsize, original_value, result);
3119 /* Unpack a field FIELDNO of the specified TYPE, from the object at
3120 VALADDR + EMBEDDED_OFFSET. VALADDR points to the contents of
3121 ORIGINAL_VALUE. See unpack_value_bits_as_long for more
3125 unpack_value_field_as_long_1 (struct type *type, const gdb_byte *valaddr,
3126 int embedded_offset, int fieldno,
3127 const struct value *val, LONGEST *result)
3129 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
3130 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
3131 struct type *field_type = TYPE_FIELD_TYPE (type, fieldno);
3133 return unpack_value_bits_as_long_1 (field_type, valaddr, embedded_offset,
3134 bitpos, bitsize, val,
3138 /* Unpack a field FIELDNO of the specified TYPE, from the object at
3139 VALADDR + EMBEDDED_OFFSET. VALADDR points to the contents of
3140 ORIGINAL_VALUE, which must not be NULL. See
3141 unpack_value_bits_as_long for more details. */
3144 unpack_value_field_as_long (struct type *type, const gdb_byte *valaddr,
3145 int embedded_offset, int fieldno,
3146 const struct value *val, LONGEST *result)
3148 gdb_assert (val != NULL);
3150 return unpack_value_field_as_long_1 (type, valaddr, embedded_offset,
3151 fieldno, val, result);
3154 /* Unpack a field FIELDNO of the specified TYPE, from the anonymous
3155 object at VALADDR. See unpack_value_bits_as_long for more details.
3156 This function differs from unpack_value_field_as_long in that it
3157 operates without a struct value object. */
3160 unpack_field_as_long (struct type *type, const gdb_byte *valaddr, int fieldno)
3164 unpack_value_field_as_long_1 (type, valaddr, 0, fieldno, NULL, &result);
3168 /* Return a new value with type TYPE, which is FIELDNO field of the
3169 object at VALADDR + EMBEDDEDOFFSET. VALADDR points to the contents
3170 of VAL. If the VAL's contents required to extract the bitfield
3171 from are unavailable, the new value is correspondingly marked as
3175 value_field_bitfield (struct type *type, int fieldno,
3176 const gdb_byte *valaddr,
3177 int embedded_offset, const struct value *val)
3181 if (!unpack_value_field_as_long (type, valaddr, embedded_offset, fieldno,
3184 struct type *field_type = TYPE_FIELD_TYPE (type, fieldno);
3185 struct value *retval = allocate_value (field_type);
3186 mark_value_bytes_unavailable (retval, 0, TYPE_LENGTH (field_type));
3191 return value_from_longest (TYPE_FIELD_TYPE (type, fieldno), l);
3195 /* Modify the value of a bitfield. ADDR points to a block of memory in
3196 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
3197 is the desired value of the field, in host byte order. BITPOS and BITSIZE
3198 indicate which bits (in target bit order) comprise the bitfield.
3199 Requires 0 < BITSIZE <= lbits, 0 <= BITPOS % 8 + BITSIZE <= lbits, and
3200 0 <= BITPOS, where lbits is the size of a LONGEST in bits. */
3203 modify_field (struct type *type, gdb_byte *addr,
3204 LONGEST fieldval, int bitpos, int bitsize)
3206 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
3208 ULONGEST mask = (ULONGEST) -1 >> (8 * sizeof (ULONGEST) - bitsize);
3211 /* Normalize BITPOS. */
3215 /* If a negative fieldval fits in the field in question, chop
3216 off the sign extension bits. */
3217 if ((~fieldval & ~(mask >> 1)) == 0)
3220 /* Warn if value is too big to fit in the field in question. */
3221 if (0 != (fieldval & ~mask))
3223 /* FIXME: would like to include fieldval in the message, but
3224 we don't have a sprintf_longest. */
3225 warning (_("Value does not fit in %d bits."), bitsize);
3227 /* Truncate it, otherwise adjoining fields may be corrupted. */
3231 /* Ensure no bytes outside of the modified ones get accessed as it may cause
3232 false valgrind reports. */
3234 bytesize = (bitpos + bitsize + 7) / 8;
3235 oword = extract_unsigned_integer (addr, bytesize, byte_order);
3237 /* Shifting for bit field depends on endianness of the target machine. */
3238 if (gdbarch_bits_big_endian (get_type_arch (type)))
3239 bitpos = bytesize * 8 - bitpos - bitsize;
3241 oword &= ~(mask << bitpos);
3242 oword |= fieldval << bitpos;
3244 store_unsigned_integer (addr, bytesize, byte_order, oword);
3247 /* Pack NUM into BUF using a target format of TYPE. */
3250 pack_long (gdb_byte *buf, struct type *type, LONGEST num)
3252 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
3255 type = check_typedef (type);
3256 len = TYPE_LENGTH (type);
3258 switch (TYPE_CODE (type))
3261 case TYPE_CODE_CHAR:
3262 case TYPE_CODE_ENUM:
3263 case TYPE_CODE_FLAGS:
3264 case TYPE_CODE_BOOL:
3265 case TYPE_CODE_RANGE:
3266 case TYPE_CODE_MEMBERPTR:
3267 store_signed_integer (buf, len, byte_order, num);
3272 store_typed_address (buf, type, (CORE_ADDR) num);
3276 error (_("Unexpected type (%d) encountered for integer constant."),
3282 /* Pack NUM into BUF using a target format of TYPE. */
3285 pack_unsigned_long (gdb_byte *buf, struct type *type, ULONGEST num)
3288 enum bfd_endian byte_order;
3290 type = check_typedef (type);
3291 len = TYPE_LENGTH (type);
3292 byte_order = gdbarch_byte_order (get_type_arch (type));
3294 switch (TYPE_CODE (type))
3297 case TYPE_CODE_CHAR:
3298 case TYPE_CODE_ENUM:
3299 case TYPE_CODE_FLAGS:
3300 case TYPE_CODE_BOOL:
3301 case TYPE_CODE_RANGE:
3302 case TYPE_CODE_MEMBERPTR:
3303 store_unsigned_integer (buf, len, byte_order, num);
3308 store_typed_address (buf, type, (CORE_ADDR) num);
3312 error (_("Unexpected type (%d) encountered "
3313 "for unsigned integer constant."),
3319 /* Convert C numbers into newly allocated values. */
3322 value_from_longest (struct type *type, LONGEST num)
3324 struct value *val = allocate_value (type);
3326 pack_long (value_contents_raw (val), type, num);
3331 /* Convert C unsigned numbers into newly allocated values. */
3334 value_from_ulongest (struct type *type, ULONGEST num)
3336 struct value *val = allocate_value (type);
3338 pack_unsigned_long (value_contents_raw (val), type, num);
3344 /* Create a value representing a pointer of type TYPE to the address
3348 value_from_pointer (struct type *type, CORE_ADDR addr)
3350 struct value *val = allocate_value (type);
3352 store_typed_address (value_contents_raw (val),
3353 check_typedef (type), addr);
3358 /* Create a value of type TYPE whose contents come from VALADDR, if it
3359 is non-null, and whose memory address (in the inferior) is
3360 ADDRESS. The type of the created value may differ from the passed
3361 type TYPE. Make sure to retrieve values new type after this call.
3362 Note that TYPE is not passed through resolve_dynamic_type; this is
3363 a special API intended for use only by Ada. */
3366 value_from_contents_and_address_unresolved (struct type *type,
3367 const gdb_byte *valaddr,
3372 if (valaddr == NULL)
3373 v = allocate_value_lazy (type);
3375 v = value_from_contents (type, valaddr);
3376 set_value_address (v, address);
3377 VALUE_LVAL (v) = lval_memory;
3381 /* Create a value of type TYPE whose contents come from VALADDR, if it
3382 is non-null, and whose memory address (in the inferior) is
3383 ADDRESS. The type of the created value may differ from the passed
3384 type TYPE. Make sure to retrieve values new type after this call. */
3387 value_from_contents_and_address (struct type *type,
3388 const gdb_byte *valaddr,
3391 struct type *resolved_type = resolve_dynamic_type (type, address);
3394 if (valaddr == NULL)
3395 v = allocate_value_lazy (resolved_type);
3397 v = value_from_contents (resolved_type, valaddr);
3398 if (TYPE_DATA_LOCATION (resolved_type) != NULL
3399 && TYPE_DATA_LOCATION_KIND (resolved_type) == PROP_CONST)
3400 address = TYPE_DATA_LOCATION_ADDR (resolved_type);
3401 set_value_address (v, address);
3402 VALUE_LVAL (v) = lval_memory;
3406 /* Create a value of type TYPE holding the contents CONTENTS.
3407 The new value is `not_lval'. */
3410 value_from_contents (struct type *type, const gdb_byte *contents)
3412 struct value *result;
3414 result = allocate_value (type);
3415 memcpy (value_contents_raw (result), contents, TYPE_LENGTH (type));
3420 value_from_double (struct type *type, DOUBLEST num)
3422 struct value *val = allocate_value (type);
3423 struct type *base_type = check_typedef (type);
3424 enum type_code code = TYPE_CODE (base_type);
3426 if (code == TYPE_CODE_FLT)
3428 store_typed_floating (value_contents_raw (val), base_type, num);
3431 error (_("Unexpected type encountered for floating constant."));
3437 value_from_decfloat (struct type *type, const gdb_byte *dec)
3439 struct value *val = allocate_value (type);
3441 memcpy (value_contents_raw (val), dec, TYPE_LENGTH (type));
3445 /* Extract a value from the history file. Input will be of the form
3446 $digits or $$digits. See block comment above 'write_dollar_variable'
3450 value_from_history_ref (const char *h, const char **endp)
3462 /* Find length of numeral string. */
3463 for (; isdigit (h[len]); len++)
3466 /* Make sure numeral string is not part of an identifier. */
3467 if (h[len] == '_' || isalpha (h[len]))
3470 /* Now collect the index value. */
3475 /* For some bizarre reason, "$$" is equivalent to "$$1",
3476 rather than to "$$0" as it ought to be! */
3484 index = -strtol (&h[2], &local_end, 10);
3492 /* "$" is equivalent to "$0". */
3500 index = strtol (&h[1], &local_end, 10);
3505 return access_value_history (index);
3509 coerce_ref_if_computed (const struct value *arg)
3511 const struct lval_funcs *funcs;
3513 if (TYPE_CODE (check_typedef (value_type (arg))) != TYPE_CODE_REF)
3516 if (value_lval_const (arg) != lval_computed)
3519 funcs = value_computed_funcs (arg);
3520 if (funcs->coerce_ref == NULL)
3523 return funcs->coerce_ref (arg);
3526 /* Look at value.h for description. */
3529 readjust_indirect_value_type (struct value *value, struct type *enc_type,
3530 struct type *original_type,
3531 struct value *original_value)
3533 /* Re-adjust type. */
3534 deprecated_set_value_type (value, TYPE_TARGET_TYPE (original_type));
3536 /* Add embedding info. */
3537 set_value_enclosing_type (value, enc_type);
3538 set_value_embedded_offset (value, value_pointed_to_offset (original_value));
3540 /* We may be pointing to an object of some derived type. */
3541 return value_full_object (value, NULL, 0, 0, 0);
3545 coerce_ref (struct value *arg)
3547 struct type *value_type_arg_tmp = check_typedef (value_type (arg));
3548 struct value *retval;
3549 struct type *enc_type;
3551 retval = coerce_ref_if_computed (arg);
3555 if (TYPE_CODE (value_type_arg_tmp) != TYPE_CODE_REF)
3558 enc_type = check_typedef (value_enclosing_type (arg));
3559 enc_type = TYPE_TARGET_TYPE (enc_type);
3561 retval = value_at_lazy (enc_type,
3562 unpack_pointer (value_type (arg),
3563 value_contents (arg)));
3564 enc_type = value_type (retval);
3565 return readjust_indirect_value_type (retval, enc_type,
3566 value_type_arg_tmp, arg);
3570 coerce_array (struct value *arg)
3574 arg = coerce_ref (arg);
3575 type = check_typedef (value_type (arg));
3577 switch (TYPE_CODE (type))
3579 case TYPE_CODE_ARRAY:
3580 if (!TYPE_VECTOR (type) && current_language->c_style_arrays)
3581 arg = value_coerce_array (arg);
3583 case TYPE_CODE_FUNC:
3584 arg = value_coerce_function (arg);
3591 /* Return the return value convention that will be used for the
3594 enum return_value_convention
3595 struct_return_convention (struct gdbarch *gdbarch,
3596 struct value *function, struct type *value_type)
3598 enum type_code code = TYPE_CODE (value_type);
3600 if (code == TYPE_CODE_ERROR)
3601 error (_("Function return type unknown."));
3603 /* Probe the architecture for the return-value convention. */
3604 return gdbarch_return_value (gdbarch, function, value_type,
3608 /* Return true if the function returning the specified type is using
3609 the convention of returning structures in memory (passing in the
3610 address as a hidden first parameter). */
3613 using_struct_return (struct gdbarch *gdbarch,
3614 struct value *function, struct type *value_type)
3616 if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
3617 /* A void return value is never in memory. See also corresponding
3618 code in "print_return_value". */
3621 return (struct_return_convention (gdbarch, function, value_type)
3622 != RETURN_VALUE_REGISTER_CONVENTION);
3625 /* Set the initialized field in a value struct. */
3628 set_value_initialized (struct value *val, int status)
3630 val->initialized = status;
3633 /* Return the initialized field in a value struct. */
3636 value_initialized (struct value *val)
3638 return val->initialized;
3641 /* Called only from the value_contents and value_contents_all()
3642 macros, if the current data for a variable needs to be loaded into
3643 value_contents(VAL). Fetches the data from the user's process, and
3644 clears the lazy flag to indicate that the data in the buffer is
3647 If the value is zero-length, we avoid calling read_memory, which
3648 would abort. We mark the value as fetched anyway -- all 0 bytes of
3651 This function returns a value because it is used in the
3652 value_contents macro as part of an expression, where a void would
3653 not work. The value is ignored. */
3656 value_fetch_lazy (struct value *val)
3658 gdb_assert (value_lazy (val));
3659 allocate_value_contents (val);
3660 if (value_bitsize (val))
3662 /* To read a lazy bitfield, read the entire enclosing value. This
3663 prevents reading the same block of (possibly volatile) memory once
3664 per bitfield. It would be even better to read only the containing
3665 word, but we have no way to record that just specific bits of a
3666 value have been fetched. */
3667 struct type *type = check_typedef (value_type (val));
3668 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
3669 struct value *parent = value_parent (val);
3670 LONGEST offset = value_offset (val);
3673 if (value_lazy (parent))
3674 value_fetch_lazy (parent);
3676 if (!value_bits_valid (parent,
3677 TARGET_CHAR_BIT * offset + value_bitpos (val),
3678 value_bitsize (val)))
3679 set_value_optimized_out (val, 1);
3680 else if (!unpack_value_bits_as_long (value_type (val),
3681 value_contents_for_printing (parent),
3684 value_bitsize (val), parent, &num))
3685 mark_value_bytes_unavailable (val,
3686 value_embedded_offset (val),
3687 TYPE_LENGTH (type));
3689 store_signed_integer (value_contents_raw (val), TYPE_LENGTH (type),
3692 else if (VALUE_LVAL (val) == lval_memory)
3694 CORE_ADDR addr = value_address (val);
3695 struct type *type = check_typedef (value_enclosing_type (val));
3697 if (TYPE_LENGTH (type))
3698 read_value_memory (val, 0, value_stack (val),
3699 addr, value_contents_all_raw (val),
3700 TYPE_LENGTH (type));
3702 else if (VALUE_LVAL (val) == lval_register)
3704 struct frame_info *frame;
3706 struct type *type = check_typedef (value_type (val));
3707 struct value *new_val = val, *mark = value_mark ();
3709 /* Offsets are not supported here; lazy register values must
3710 refer to the entire register. */
3711 gdb_assert (value_offset (val) == 0);
3713 while (VALUE_LVAL (new_val) == lval_register && value_lazy (new_val))
3715 struct frame_id frame_id = VALUE_FRAME_ID (new_val);
3717 frame = frame_find_by_id (frame_id);
3718 regnum = VALUE_REGNUM (new_val);
3720 gdb_assert (frame != NULL);
3722 /* Convertible register routines are used for multi-register
3723 values and for interpretation in different types
3724 (e.g. float or int from a double register). Lazy
3725 register values should have the register's natural type,
3726 so they do not apply. */
3727 gdb_assert (!gdbarch_convert_register_p (get_frame_arch (frame),
3730 new_val = get_frame_register_value (frame, regnum);
3732 /* If we get another lazy lval_register value, it means the
3733 register is found by reading it from the next frame.
3734 get_frame_register_value should never return a value with
3735 the frame id pointing to FRAME. If it does, it means we
3736 either have two consecutive frames with the same frame id
3737 in the frame chain, or some code is trying to unwind
3738 behind get_prev_frame's back (e.g., a frame unwind
3739 sniffer trying to unwind), bypassing its validations. In
3740 any case, it should always be an internal error to end up
3741 in this situation. */
3742 if (VALUE_LVAL (new_val) == lval_register
3743 && value_lazy (new_val)
3744 && frame_id_eq (VALUE_FRAME_ID (new_val), frame_id))
3745 internal_error (__FILE__, __LINE__,
3746 _("infinite loop while fetching a register"));
3749 /* If it's still lazy (for instance, a saved register on the
3750 stack), fetch it. */
3751 if (value_lazy (new_val))
3752 value_fetch_lazy (new_val);
3754 /* If the register was not saved, mark it optimized out. */
3755 if (value_optimized_out (new_val))
3756 set_value_optimized_out (val, 1);
3759 set_value_lazy (val, 0);
3760 value_contents_copy (val, value_embedded_offset (val),
3761 new_val, value_embedded_offset (new_val),
3762 TYPE_LENGTH (type));
3767 struct gdbarch *gdbarch;
3768 frame = frame_find_by_id (VALUE_FRAME_ID (val));
3769 regnum = VALUE_REGNUM (val);
3770 gdbarch = get_frame_arch (frame);
3772 fprintf_unfiltered (gdb_stdlog,
3773 "{ value_fetch_lazy "
3774 "(frame=%d,regnum=%d(%s),...) ",
3775 frame_relative_level (frame), regnum,
3776 user_reg_map_regnum_to_name (gdbarch, regnum));
3778 fprintf_unfiltered (gdb_stdlog, "->");
3779 if (value_optimized_out (new_val))
3781 fprintf_unfiltered (gdb_stdlog, " ");
3782 val_print_optimized_out (new_val, gdb_stdlog);
3787 const gdb_byte *buf = value_contents (new_val);
3789 if (VALUE_LVAL (new_val) == lval_register)
3790 fprintf_unfiltered (gdb_stdlog, " register=%d",
3791 VALUE_REGNUM (new_val));
3792 else if (VALUE_LVAL (new_val) == lval_memory)
3793 fprintf_unfiltered (gdb_stdlog, " address=%s",
3795 value_address (new_val)));
3797 fprintf_unfiltered (gdb_stdlog, " computed");
3799 fprintf_unfiltered (gdb_stdlog, " bytes=");
3800 fprintf_unfiltered (gdb_stdlog, "[");
3801 for (i = 0; i < register_size (gdbarch, regnum); i++)
3802 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3803 fprintf_unfiltered (gdb_stdlog, "]");
3806 fprintf_unfiltered (gdb_stdlog, " }\n");
3809 /* Dispose of the intermediate values. This prevents
3810 watchpoints from trying to watch the saved frame pointer. */
3811 value_free_to_mark (mark);
3813 else if (VALUE_LVAL (val) == lval_computed
3814 && value_computed_funcs (val)->read != NULL)
3815 value_computed_funcs (val)->read (val);
3816 /* Don't call value_optimized_out on val, doing so would result in a
3817 recursive call back to value_fetch_lazy, instead check the
3818 optimized_out flag directly. */
3819 else if (val->optimized_out)
3820 /* Keep it optimized out. */;
3822 internal_error (__FILE__, __LINE__, _("Unexpected lazy value type."));
3824 set_value_lazy (val, 0);
3828 /* Implementation of the convenience function $_isvoid. */
3830 static struct value *
3831 isvoid_internal_fn (struct gdbarch *gdbarch,
3832 const struct language_defn *language,
3833 void *cookie, int argc, struct value **argv)
3838 error (_("You must provide one argument for $_isvoid."));
3840 ret = TYPE_CODE (value_type (argv[0])) == TYPE_CODE_VOID;
3842 return value_from_longest (builtin_type (gdbarch)->builtin_int, ret);
3846 _initialize_values (void)
3848 add_cmd ("convenience", no_class, show_convenience, _("\
3849 Debugger convenience (\"$foo\") variables and functions.\n\
3850 Convenience variables are created when you assign them values;\n\
3851 thus, \"set $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\
3853 A few convenience variables are given values automatically:\n\
3854 \"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
3855 \"$__\" holds the contents of the last address examined with \"x\"."
3858 Convenience functions are defined via the Python API."
3861 add_alias_cmd ("conv", "convenience", no_class, 1, &showlist);
3863 add_cmd ("values", no_set_class, show_values, _("\
3864 Elements of value history around item number IDX (or last ten)."),
3867 add_com ("init-if-undefined", class_vars, init_if_undefined_command, _("\
3868 Initialize a convenience variable if necessary.\n\
3869 init-if-undefined VARIABLE = EXPRESSION\n\
3870 Set an internal VARIABLE to the result of the EXPRESSION if it does not\n\
3871 exist or does not contain a value. The EXPRESSION is not evaluated if the\n\
3872 VARIABLE is already initialized."));
3874 add_prefix_cmd ("function", no_class, function_command, _("\
3875 Placeholder command for showing help on convenience functions."),
3876 &functionlist, "function ", 0, &cmdlist);
3878 add_internal_function ("_isvoid", _("\
3879 Check whether an expression is void.\n\
3880 Usage: $_isvoid (expression)\n\
3881 Return 1 if the expression is void, zero otherwise."),
3882 isvoid_internal_fn, NULL);