1 /* Low level packing and unpacking of values for GDB, the GNU Debugger.
3 Copyright (C) 1986-2000, 2002-2012 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"
22 #include "gdb_string.h"
33 #include "gdb_assert.h"
39 #include "cli/cli-decode.h"
40 #include "exceptions.h"
41 #include "python/python.h"
43 #include "tracepoint.h"
46 /* Prototypes for exported functions. */
48 void _initialize_values (void);
50 /* Definition of a user function. */
51 struct internal_function
53 /* The name of the function. It is a bit odd to have this in the
54 function itself -- the user might use a differently-named
55 convenience variable to hold the function. */
59 internal_function_fn handler;
61 /* User data for the handler. */
65 /* Defines an [OFFSET, OFFSET + LENGTH) range. */
69 /* Lowest offset in the range. */
72 /* Length of the range. */
76 typedef struct range range_s;
80 /* Returns true if the ranges defined by [offset1, offset1+len1) and
81 [offset2, offset2+len2) overlap. */
84 ranges_overlap (int offset1, int len1,
85 int offset2, int len2)
89 l = max (offset1, offset2);
90 h = min (offset1 + len1, offset2 + len2);
94 /* Returns true if the first argument is strictly less than the
95 second, useful for VEC_lower_bound. We keep ranges sorted by
96 offset and coalesce overlapping and contiguous ranges, so this just
97 compares the starting offset. */
100 range_lessthan (const range_s *r1, const range_s *r2)
102 return r1->offset < r2->offset;
105 /* Returns true if RANGES contains any range that overlaps [OFFSET,
109 ranges_contain (VEC(range_s) *ranges, int offset, int length)
114 what.offset = offset;
115 what.length = length;
117 /* We keep ranges sorted by offset and coalesce overlapping and
118 contiguous ranges, so to check if a range list contains a given
119 range, we can do a binary search for the position the given range
120 would be inserted if we only considered the starting OFFSET of
121 ranges. We call that position I. Since we also have LENGTH to
122 care for (this is a range afterall), we need to check if the
123 _previous_ range overlaps the I range. E.g.,
127 |---| |---| |------| ... |--|
132 In the case above, the binary search would return `I=1', meaning,
133 this OFFSET should be inserted at position 1, and the current
134 position 1 should be pushed further (and before 2). But, `0'
137 Then we need to check if the I range overlaps the I range itself.
142 |---| |---| |-------| ... |--|
148 i = VEC_lower_bound (range_s, ranges, &what, range_lessthan);
152 struct range *bef = VEC_index (range_s, ranges, i - 1);
154 if (ranges_overlap (bef->offset, bef->length, offset, length))
158 if (i < VEC_length (range_s, ranges))
160 struct range *r = VEC_index (range_s, ranges, i);
162 if (ranges_overlap (r->offset, r->length, offset, length))
169 static struct cmd_list_element *functionlist;
171 /* Note that the fields in this structure are arranged to save a bit
176 /* Type of value; either not an lval, or one of the various
177 different possible kinds of lval. */
180 /* Is it modifiable? Only relevant if lval != not_lval. */
181 unsigned int modifiable : 1;
183 /* If zero, contents of this value are in the contents field. If
184 nonzero, contents are in inferior. If the lval field is lval_memory,
185 the contents are in inferior memory at location.address plus offset.
186 The lval field may also be lval_register.
188 WARNING: This field is used by the code which handles watchpoints
189 (see breakpoint.c) to decide whether a particular value can be
190 watched by hardware watchpoints. If the lazy flag is set for
191 some member of a value chain, it is assumed that this member of
192 the chain doesn't need to be watched as part of watching the
193 value itself. This is how GDB avoids watching the entire struct
194 or array when the user wants to watch a single struct member or
195 array element. If you ever change the way lazy flag is set and
196 reset, be sure to consider this use as well! */
197 unsigned int lazy : 1;
199 /* If nonzero, this is the value of a variable which does not
200 actually exist in the program. */
201 unsigned int optimized_out : 1;
203 /* If value is a variable, is it initialized or not. */
204 unsigned int initialized : 1;
206 /* If value is from the stack. If this is set, read_stack will be
207 used instead of read_memory to enable extra caching. */
208 unsigned int stack : 1;
210 /* If the value has been released. */
211 unsigned int released : 1;
213 /* Location of value (if lval). */
216 /* If lval == lval_memory, this is the address in the inferior.
217 If lval == lval_register, this is the byte offset into the
218 registers structure. */
221 /* Pointer to internal variable. */
222 struct internalvar *internalvar;
224 /* If lval == lval_computed, this is a set of function pointers
225 to use to access and describe the value, and a closure pointer
229 /* Functions to call. */
230 const struct lval_funcs *funcs;
232 /* Closure for those functions to use. */
237 /* Describes offset of a value within lval of a structure in bytes.
238 If lval == lval_memory, this is an offset to the address. If
239 lval == lval_register, this is a further offset from
240 location.address within the registers structure. Note also the
241 member embedded_offset below. */
244 /* Only used for bitfields; number of bits contained in them. */
247 /* Only used for bitfields; position of start of field. For
248 gdbarch_bits_big_endian=0 targets, it is the position of the LSB. For
249 gdbarch_bits_big_endian=1 targets, it is the position of the MSB. */
252 /* The number of references to this value. When a value is created,
253 the value chain holds a reference, so REFERENCE_COUNT is 1. If
254 release_value is called, this value is removed from the chain but
255 the caller of release_value now has a reference to this value.
256 The caller must arrange for a call to value_free later. */
259 /* Only used for bitfields; the containing value. This allows a
260 single read from the target when displaying multiple
262 struct value *parent;
264 /* Frame register value is relative to. This will be described in
265 the lval enum above as "lval_register". */
266 struct frame_id frame_id;
268 /* Type of the value. */
271 /* If a value represents a C++ object, then the `type' field gives
272 the object's compile-time type. If the object actually belongs
273 to some class derived from `type', perhaps with other base
274 classes and additional members, then `type' is just a subobject
275 of the real thing, and the full object is probably larger than
276 `type' would suggest.
278 If `type' is a dynamic class (i.e. one with a vtable), then GDB
279 can actually determine the object's run-time type by looking at
280 the run-time type information in the vtable. When this
281 information is available, we may elect to read in the entire
282 object, for several reasons:
284 - When printing the value, the user would probably rather see the
285 full object, not just the limited portion apparent from the
288 - If `type' has virtual base classes, then even printing `type'
289 alone may require reaching outside the `type' portion of the
290 object to wherever the virtual base class has been stored.
292 When we store the entire object, `enclosing_type' is the run-time
293 type -- the complete object -- and `embedded_offset' is the
294 offset of `type' within that larger type, in bytes. The
295 value_contents() macro takes `embedded_offset' into account, so
296 most GDB code continues to see the `type' portion of the value,
297 just as the inferior would.
299 If `type' is a pointer to an object, then `enclosing_type' is a
300 pointer to the object's run-time type, and `pointed_to_offset' is
301 the offset in bytes from the full object to the pointed-to object
302 -- that is, the value `embedded_offset' would have if we followed
303 the pointer and fetched the complete object. (I don't really see
304 the point. Why not just determine the run-time type when you
305 indirect, and avoid the special case? The contents don't matter
306 until you indirect anyway.)
308 If we're not doing anything fancy, `enclosing_type' is equal to
309 `type', and `embedded_offset' is zero, so everything works
311 struct type *enclosing_type;
313 int pointed_to_offset;
315 /* Values are stored in a chain, so that they can be deleted easily
316 over calls to the inferior. Values assigned to internal
317 variables, put into the value history or exposed to Python are
318 taken off this list. */
321 /* Register number if the value is from a register. */
324 /* Actual contents of the value. Target byte-order. NULL or not
325 valid if lazy is nonzero. */
328 /* Unavailable ranges in CONTENTS. We mark unavailable ranges,
329 rather than available, since the common and default case is for a
330 value to be available. This is filled in at value read time. */
331 VEC(range_s) *unavailable;
335 value_bytes_available (const struct value *value, int offset, int length)
337 gdb_assert (!value->lazy);
339 return !ranges_contain (value->unavailable, offset, length);
343 value_entirely_available (struct value *value)
345 /* We can only tell whether the whole value is available when we try
348 value_fetch_lazy (value);
350 if (VEC_empty (range_s, value->unavailable))
356 mark_value_bytes_unavailable (struct value *value, int offset, int length)
361 /* Insert the range sorted. If there's overlap or the new range
362 would be contiguous with an existing range, merge. */
364 newr.offset = offset;
365 newr.length = length;
367 /* Do a binary search for the position the given range would be
368 inserted if we only considered the starting OFFSET of ranges.
369 Call that position I. Since we also have LENGTH to care for
370 (this is a range afterall), we need to check if the _previous_
371 range overlaps the I range. E.g., calling R the new range:
373 #1 - overlaps with previous
377 |---| |---| |------| ... |--|
382 In the case #1 above, the binary search would return `I=1',
383 meaning, this OFFSET should be inserted at position 1, and the
384 current position 1 should be pushed further (and become 2). But,
385 note that `0' overlaps with R, so we want to merge them.
387 A similar consideration needs to be taken if the new range would
388 be contiguous with the previous range:
390 #2 - contiguous with previous
394 |--| |---| |------| ... |--|
399 If there's no overlap with the previous range, as in:
401 #3 - not overlapping and not contiguous
405 |--| |---| |------| ... |--|
412 #4 - R is the range with lowest offset
416 |--| |---| |------| ... |--|
421 ... we just push the new range to I.
423 All the 4 cases above need to consider that the new range may
424 also overlap several of the ranges that follow, or that R may be
425 contiguous with the following range, and merge. E.g.,
427 #5 - overlapping following ranges
430 |------------------------|
431 |--| |---| |------| ... |--|
440 |--| |---| |------| ... |--|
447 i = VEC_lower_bound (range_s, value->unavailable, &newr, range_lessthan);
450 struct range *bef = VEC_index (range_s, value->unavailable, i - 1);
452 if (ranges_overlap (bef->offset, bef->length, offset, length))
455 ULONGEST l = min (bef->offset, offset);
456 ULONGEST h = max (bef->offset + bef->length, offset + length);
462 else if (offset == bef->offset + bef->length)
465 bef->length += length;
471 VEC_safe_insert (range_s, value->unavailable, i, &newr);
477 VEC_safe_insert (range_s, value->unavailable, i, &newr);
480 /* Check whether the ranges following the one we've just added or
481 touched can be folded in (#5 above). */
482 if (i + 1 < VEC_length (range_s, value->unavailable))
489 /* Get the range we just touched. */
490 t = VEC_index (range_s, value->unavailable, i);
494 for (; VEC_iterate (range_s, value->unavailable, i, r); i++)
495 if (r->offset <= t->offset + t->length)
499 l = min (t->offset, r->offset);
500 h = max (t->offset + t->length, r->offset + r->length);
509 /* If we couldn't merge this one, we won't be able to
510 merge following ones either, since the ranges are
511 always sorted by OFFSET. */
516 VEC_block_remove (range_s, value->unavailable, next, removed);
520 /* Find the first range in RANGES that overlaps the range defined by
521 OFFSET and LENGTH, starting at element POS in the RANGES vector,
522 Returns the index into RANGES where such overlapping range was
523 found, or -1 if none was found. */
526 find_first_range_overlap (VEC(range_s) *ranges, int pos,
527 int offset, int length)
532 for (i = pos; VEC_iterate (range_s, ranges, i, r); i++)
533 if (ranges_overlap (r->offset, r->length, offset, length))
540 value_available_contents_eq (const struct value *val1, int offset1,
541 const struct value *val2, int offset2,
544 int idx1 = 0, idx2 = 0;
546 /* This routine is used by printing routines, where we should
547 already have read the value. Note that we only know whether a
548 value chunk is available if we've tried to read it. */
549 gdb_assert (!val1->lazy && !val2->lazy);
557 idx1 = find_first_range_overlap (val1->unavailable, idx1,
559 idx2 = find_first_range_overlap (val2->unavailable, idx2,
562 /* The usual case is for both values to be completely available. */
563 if (idx1 == -1 && idx2 == -1)
564 return (memcmp (val1->contents + offset1,
565 val2->contents + offset2,
567 /* The contents only match equal if the available set matches as
569 else if (idx1 == -1 || idx2 == -1)
572 gdb_assert (idx1 != -1 && idx2 != -1);
574 r1 = VEC_index (range_s, val1->unavailable, idx1);
575 r2 = VEC_index (range_s, val2->unavailable, idx2);
577 /* Get the unavailable windows intersected by the incoming
578 ranges. The first and last ranges that overlap the argument
579 range may be wider than said incoming arguments ranges. */
580 l1 = max (offset1, r1->offset);
581 h1 = min (offset1 + length, r1->offset + r1->length);
583 l2 = max (offset2, r2->offset);
584 h2 = min (offset2 + length, r2->offset + r2->length);
586 /* Make them relative to the respective start offsets, so we can
587 compare them for equality. */
594 /* Different availability, no match. */
595 if (l1 != l2 || h1 != h2)
598 /* Compare the _available_ contents. */
599 if (memcmp (val1->contents + offset1,
600 val2->contents + offset2,
612 /* Prototypes for local functions. */
614 static void show_values (char *, int);
616 static void show_convenience (char *, int);
619 /* The value-history records all the values printed
620 by print commands during this session. Each chunk
621 records 60 consecutive values. The first chunk on
622 the chain records the most recent values.
623 The total number of values is in value_history_count. */
625 #define VALUE_HISTORY_CHUNK 60
627 struct value_history_chunk
629 struct value_history_chunk *next;
630 struct value *values[VALUE_HISTORY_CHUNK];
633 /* Chain of chunks now in use. */
635 static struct value_history_chunk *value_history_chain;
637 static int value_history_count; /* Abs number of last entry stored. */
640 /* List of all value objects currently allocated
641 (except for those released by calls to release_value)
642 This is so they can be freed after each command. */
644 static struct value *all_values;
646 /* Allocate a lazy value for type TYPE. Its actual content is
647 "lazily" allocated too: the content field of the return value is
648 NULL; it will be allocated when it is fetched from the target. */
651 allocate_value_lazy (struct type *type)
655 /* Call check_typedef on our type to make sure that, if TYPE
656 is a TYPE_CODE_TYPEDEF, its length is set to the length
657 of the target type instead of zero. However, we do not
658 replace the typedef type by the target type, because we want
659 to keep the typedef in order to be able to set the VAL's type
660 description correctly. */
661 check_typedef (type);
663 val = (struct value *) xzalloc (sizeof (struct value));
664 val->contents = NULL;
665 val->next = all_values;
668 val->enclosing_type = type;
669 VALUE_LVAL (val) = not_lval;
670 val->location.address = 0;
671 VALUE_FRAME_ID (val) = null_frame_id;
675 VALUE_REGNUM (val) = -1;
677 val->optimized_out = 0;
678 val->embedded_offset = 0;
679 val->pointed_to_offset = 0;
681 val->initialized = 1; /* Default to initialized. */
683 /* Values start out on the all_values chain. */
684 val->reference_count = 1;
689 /* Allocate the contents of VAL if it has not been allocated yet. */
692 allocate_value_contents (struct value *val)
695 val->contents = (gdb_byte *) xzalloc (TYPE_LENGTH (val->enclosing_type));
698 /* Allocate a value and its contents for type TYPE. */
701 allocate_value (struct type *type)
703 struct value *val = allocate_value_lazy (type);
705 allocate_value_contents (val);
710 /* Allocate a value that has the correct length
711 for COUNT repetitions of type TYPE. */
714 allocate_repeat_value (struct type *type, int count)
716 int low_bound = current_language->string_lower_bound; /* ??? */
717 /* FIXME-type-allocation: need a way to free this type when we are
719 struct type *array_type
720 = lookup_array_range_type (type, low_bound, count + low_bound - 1);
722 return allocate_value (array_type);
726 allocate_computed_value (struct type *type,
727 const struct lval_funcs *funcs,
730 struct value *v = allocate_value_lazy (type);
732 VALUE_LVAL (v) = lval_computed;
733 v->location.computed.funcs = funcs;
734 v->location.computed.closure = closure;
739 /* Allocate NOT_LVAL value for type TYPE being OPTIMIZED_OUT. */
742 allocate_optimized_out_value (struct type *type)
744 struct value *retval = allocate_value_lazy (type);
746 set_value_optimized_out (retval, 1);
751 /* Accessor methods. */
754 value_next (struct value *value)
760 value_type (const struct value *value)
765 deprecated_set_value_type (struct value *value, struct type *type)
771 value_offset (const struct value *value)
773 return value->offset;
776 set_value_offset (struct value *value, int offset)
778 value->offset = offset;
782 value_bitpos (const struct value *value)
784 return value->bitpos;
787 set_value_bitpos (struct value *value, int bit)
793 value_bitsize (const struct value *value)
795 return value->bitsize;
798 set_value_bitsize (struct value *value, int bit)
800 value->bitsize = bit;
804 value_parent (struct value *value)
806 return value->parent;
812 set_value_parent (struct value *value, struct value *parent)
814 value->parent = parent;
818 value_contents_raw (struct value *value)
820 allocate_value_contents (value);
821 return value->contents + value->embedded_offset;
825 value_contents_all_raw (struct value *value)
827 allocate_value_contents (value);
828 return value->contents;
832 value_enclosing_type (struct value *value)
834 return value->enclosing_type;
837 /* Look at value.h for description. */
840 value_actual_type (struct value *value, int resolve_simple_types,
841 int *real_type_found)
843 struct value_print_options opts;
846 get_user_print_options (&opts);
849 *real_type_found = 0;
850 result = value_type (value);
851 if (opts.objectprint)
853 if (TYPE_CODE (result) == TYPE_CODE_PTR
854 || TYPE_CODE (result) == TYPE_CODE_REF)
856 struct type *real_type;
858 real_type = value_rtti_indirect_type (value, NULL, NULL, NULL);
862 *real_type_found = 1;
866 else if (resolve_simple_types)
869 *real_type_found = 1;
870 result = value_enclosing_type (value);
878 require_not_optimized_out (const struct value *value)
880 if (value->optimized_out)
881 error (_("value has been optimized out"));
885 require_available (const struct value *value)
887 if (!VEC_empty (range_s, value->unavailable))
888 throw_error (NOT_AVAILABLE_ERROR, _("value is not available"));
892 value_contents_for_printing (struct value *value)
895 value_fetch_lazy (value);
896 return value->contents;
900 value_contents_for_printing_const (const struct value *value)
902 gdb_assert (!value->lazy);
903 return value->contents;
907 value_contents_all (struct value *value)
909 const gdb_byte *result = value_contents_for_printing (value);
910 require_not_optimized_out (value);
911 require_available (value);
915 /* Copy LENGTH bytes of SRC value's (all) contents
916 (value_contents_all) starting at SRC_OFFSET, into DST value's (all)
917 contents, starting at DST_OFFSET. If unavailable contents are
918 being copied from SRC, the corresponding DST contents are marked
919 unavailable accordingly. Neither DST nor SRC may be lazy
922 It is assumed the contents of DST in the [DST_OFFSET,
923 DST_OFFSET+LENGTH) range are wholly available. */
926 value_contents_copy_raw (struct value *dst, int dst_offset,
927 struct value *src, int src_offset, int length)
932 /* A lazy DST would make that this copy operation useless, since as
933 soon as DST's contents were un-lazied (by a later value_contents
934 call, say), the contents would be overwritten. A lazy SRC would
935 mean we'd be copying garbage. */
936 gdb_assert (!dst->lazy && !src->lazy);
938 /* The overwritten DST range gets unavailability ORed in, not
939 replaced. Make sure to remember to implement replacing if it
940 turns out actually necessary. */
941 gdb_assert (value_bytes_available (dst, dst_offset, length));
944 memcpy (value_contents_all_raw (dst) + dst_offset,
945 value_contents_all_raw (src) + src_offset,
948 /* Copy the meta-data, adjusted. */
949 for (i = 0; VEC_iterate (range_s, src->unavailable, i, r); i++)
953 l = max (r->offset, src_offset);
954 h = min (r->offset + r->length, src_offset + length);
957 mark_value_bytes_unavailable (dst,
958 dst_offset + (l - src_offset),
963 /* Copy LENGTH bytes of SRC value's (all) contents
964 (value_contents_all) starting at SRC_OFFSET byte, into DST value's
965 (all) contents, starting at DST_OFFSET. If unavailable contents
966 are being copied from SRC, the corresponding DST contents are
967 marked unavailable accordingly. DST must not be lazy. If SRC is
968 lazy, it will be fetched now. If SRC is not valid (is optimized
969 out), an error is thrown.
971 It is assumed the contents of DST in the [DST_OFFSET,
972 DST_OFFSET+LENGTH) range are wholly available. */
975 value_contents_copy (struct value *dst, int dst_offset,
976 struct value *src, int src_offset, int length)
978 require_not_optimized_out (src);
981 value_fetch_lazy (src);
983 value_contents_copy_raw (dst, dst_offset, src, src_offset, length);
987 value_lazy (struct value *value)
993 set_value_lazy (struct value *value, int val)
999 value_stack (struct value *value)
1001 return value->stack;
1005 set_value_stack (struct value *value, int val)
1011 value_contents (struct value *value)
1013 const gdb_byte *result = value_contents_writeable (value);
1014 require_not_optimized_out (value);
1015 require_available (value);
1020 value_contents_writeable (struct value *value)
1023 value_fetch_lazy (value);
1024 return value_contents_raw (value);
1027 /* Return non-zero if VAL1 and VAL2 have the same contents. Note that
1028 this function is different from value_equal; in C the operator ==
1029 can return 0 even if the two values being compared are equal. */
1032 value_contents_equal (struct value *val1, struct value *val2)
1038 type1 = check_typedef (value_type (val1));
1039 type2 = check_typedef (value_type (val2));
1040 len = TYPE_LENGTH (type1);
1041 if (len != TYPE_LENGTH (type2))
1044 return (memcmp (value_contents (val1), value_contents (val2), len) == 0);
1048 value_optimized_out (struct value *value)
1050 return value->optimized_out;
1054 set_value_optimized_out (struct value *value, int val)
1056 value->optimized_out = val;
1060 value_entirely_optimized_out (const struct value *value)
1062 if (!value->optimized_out)
1064 if (value->lval != lval_computed
1065 || !value->location.computed.funcs->check_any_valid)
1067 return !value->location.computed.funcs->check_any_valid (value);
1071 value_bits_valid (const struct value *value, int offset, int length)
1073 if (!value->optimized_out)
1075 if (value->lval != lval_computed
1076 || !value->location.computed.funcs->check_validity)
1078 return value->location.computed.funcs->check_validity (value, offset,
1083 value_bits_synthetic_pointer (const struct value *value,
1084 int offset, int length)
1086 if (value->lval != lval_computed
1087 || !value->location.computed.funcs->check_synthetic_pointer)
1089 return value->location.computed.funcs->check_synthetic_pointer (value,
1095 value_embedded_offset (struct value *value)
1097 return value->embedded_offset;
1101 set_value_embedded_offset (struct value *value, int val)
1103 value->embedded_offset = val;
1107 value_pointed_to_offset (struct value *value)
1109 return value->pointed_to_offset;
1113 set_value_pointed_to_offset (struct value *value, int val)
1115 value->pointed_to_offset = val;
1118 const struct lval_funcs *
1119 value_computed_funcs (const struct value *v)
1121 gdb_assert (value_lval_const (v) == lval_computed);
1123 return v->location.computed.funcs;
1127 value_computed_closure (const struct value *v)
1129 gdb_assert (v->lval == lval_computed);
1131 return v->location.computed.closure;
1135 deprecated_value_lval_hack (struct value *value)
1137 return &value->lval;
1141 value_lval_const (const struct value *value)
1147 value_address (const struct value *value)
1149 if (value->lval == lval_internalvar
1150 || value->lval == lval_internalvar_component)
1152 if (value->parent != NULL)
1153 return value_address (value->parent) + value->offset;
1155 return value->location.address + value->offset;
1159 value_raw_address (struct value *value)
1161 if (value->lval == lval_internalvar
1162 || value->lval == lval_internalvar_component)
1164 return value->location.address;
1168 set_value_address (struct value *value, CORE_ADDR addr)
1170 gdb_assert (value->lval != lval_internalvar
1171 && value->lval != lval_internalvar_component);
1172 value->location.address = addr;
1175 struct internalvar **
1176 deprecated_value_internalvar_hack (struct value *value)
1178 return &value->location.internalvar;
1182 deprecated_value_frame_id_hack (struct value *value)
1184 return &value->frame_id;
1188 deprecated_value_regnum_hack (struct value *value)
1190 return &value->regnum;
1194 deprecated_value_modifiable (struct value *value)
1196 return value->modifiable;
1199 deprecated_set_value_modifiable (struct value *value, int modifiable)
1201 value->modifiable = modifiable;
1204 /* Return a mark in the value chain. All values allocated after the
1205 mark is obtained (except for those released) are subject to being freed
1206 if a subsequent value_free_to_mark is passed the mark. */
1213 /* Take a reference to VAL. VAL will not be deallocated until all
1214 references are released. */
1217 value_incref (struct value *val)
1219 val->reference_count++;
1222 /* Release a reference to VAL, which was acquired with value_incref.
1223 This function is also called to deallocate values from the value
1227 value_free (struct value *val)
1231 gdb_assert (val->reference_count > 0);
1232 val->reference_count--;
1233 if (val->reference_count > 0)
1236 /* If there's an associated parent value, drop our reference to
1238 if (val->parent != NULL)
1239 value_free (val->parent);
1241 if (VALUE_LVAL (val) == lval_computed)
1243 const struct lval_funcs *funcs = val->location.computed.funcs;
1245 if (funcs->free_closure)
1246 funcs->free_closure (val);
1249 xfree (val->contents);
1250 VEC_free (range_s, val->unavailable);
1255 /* Free all values allocated since MARK was obtained by value_mark
1256 (except for those released). */
1258 value_free_to_mark (struct value *mark)
1263 for (val = all_values; val && val != mark; val = next)
1272 /* Free all the values that have been allocated (except for those released).
1273 Call after each command, successful or not.
1274 In practice this is called before each command, which is sufficient. */
1277 free_all_values (void)
1282 for (val = all_values; val; val = next)
1292 /* Frees all the elements in a chain of values. */
1295 free_value_chain (struct value *v)
1301 next = value_next (v);
1306 /* Remove VAL from the chain all_values
1307 so it will not be freed automatically. */
1310 release_value (struct value *val)
1314 if (all_values == val)
1316 all_values = val->next;
1322 for (v = all_values; v; v = v->next)
1326 v->next = val->next;
1334 /* If the value is not already released, release it.
1335 If the value is already released, increment its reference count.
1336 That is, this function ensures that the value is released from the
1337 value chain and that the caller owns a reference to it. */
1340 release_value_or_incref (struct value *val)
1345 release_value (val);
1348 /* Release all values up to mark */
1350 value_release_to_mark (struct value *mark)
1355 for (val = next = all_values; next; next = next->next)
1357 if (next->next == mark)
1359 all_values = next->next;
1369 /* Return a copy of the value ARG.
1370 It contains the same contents, for same memory address,
1371 but it's a different block of storage. */
1374 value_copy (struct value *arg)
1376 struct type *encl_type = value_enclosing_type (arg);
1379 if (value_lazy (arg))
1380 val = allocate_value_lazy (encl_type);
1382 val = allocate_value (encl_type);
1383 val->type = arg->type;
1384 VALUE_LVAL (val) = VALUE_LVAL (arg);
1385 val->location = arg->location;
1386 val->offset = arg->offset;
1387 val->bitpos = arg->bitpos;
1388 val->bitsize = arg->bitsize;
1389 VALUE_FRAME_ID (val) = VALUE_FRAME_ID (arg);
1390 VALUE_REGNUM (val) = VALUE_REGNUM (arg);
1391 val->lazy = arg->lazy;
1392 val->optimized_out = arg->optimized_out;
1393 val->embedded_offset = value_embedded_offset (arg);
1394 val->pointed_to_offset = arg->pointed_to_offset;
1395 val->modifiable = arg->modifiable;
1396 if (!value_lazy (val))
1398 memcpy (value_contents_all_raw (val), value_contents_all_raw (arg),
1399 TYPE_LENGTH (value_enclosing_type (arg)));
1402 val->unavailable = VEC_copy (range_s, arg->unavailable);
1403 val->parent = arg->parent;
1405 value_incref (val->parent);
1406 if (VALUE_LVAL (val) == lval_computed)
1408 const struct lval_funcs *funcs = val->location.computed.funcs;
1410 if (funcs->copy_closure)
1411 val->location.computed.closure = funcs->copy_closure (val);
1416 /* Return a version of ARG that is non-lvalue. */
1419 value_non_lval (struct value *arg)
1421 if (VALUE_LVAL (arg) != not_lval)
1423 struct type *enc_type = value_enclosing_type (arg);
1424 struct value *val = allocate_value (enc_type);
1426 memcpy (value_contents_all_raw (val), value_contents_all (arg),
1427 TYPE_LENGTH (enc_type));
1428 val->type = arg->type;
1429 set_value_embedded_offset (val, value_embedded_offset (arg));
1430 set_value_pointed_to_offset (val, value_pointed_to_offset (arg));
1437 set_value_component_location (struct value *component,
1438 const struct value *whole)
1440 if (whole->lval == lval_internalvar)
1441 VALUE_LVAL (component) = lval_internalvar_component;
1443 VALUE_LVAL (component) = whole->lval;
1445 component->location = whole->location;
1446 if (whole->lval == lval_computed)
1448 const struct lval_funcs *funcs = whole->location.computed.funcs;
1450 if (funcs->copy_closure)
1451 component->location.computed.closure = funcs->copy_closure (whole);
1456 /* Access to the value history. */
1458 /* Record a new value in the value history.
1459 Returns the absolute history index of the entry.
1460 Result of -1 indicates the value was not saved; otherwise it is the
1461 value history index of this new item. */
1464 record_latest_value (struct value *val)
1468 /* We don't want this value to have anything to do with the inferior anymore.
1469 In particular, "set $1 = 50" should not affect the variable from which
1470 the value was taken, and fast watchpoints should be able to assume that
1471 a value on the value history never changes. */
1472 if (value_lazy (val))
1473 value_fetch_lazy (val);
1474 /* We preserve VALUE_LVAL so that the user can find out where it was fetched
1475 from. This is a bit dubious, because then *&$1 does not just return $1
1476 but the current contents of that location. c'est la vie... */
1477 val->modifiable = 0;
1478 release_value (val);
1480 /* Here we treat value_history_count as origin-zero
1481 and applying to the value being stored now. */
1483 i = value_history_count % VALUE_HISTORY_CHUNK;
1486 struct value_history_chunk *new
1487 = (struct value_history_chunk *)
1489 xmalloc (sizeof (struct value_history_chunk));
1490 memset (new->values, 0, sizeof new->values);
1491 new->next = value_history_chain;
1492 value_history_chain = new;
1495 value_history_chain->values[i] = val;
1497 /* Now we regard value_history_count as origin-one
1498 and applying to the value just stored. */
1500 return ++value_history_count;
1503 /* Return a copy of the value in the history with sequence number NUM. */
1506 access_value_history (int num)
1508 struct value_history_chunk *chunk;
1513 absnum += value_history_count;
1518 error (_("The history is empty."));
1520 error (_("There is only one value in the history."));
1522 error (_("History does not go back to $$%d."), -num);
1524 if (absnum > value_history_count)
1525 error (_("History has not yet reached $%d."), absnum);
1529 /* Now absnum is always absolute and origin zero. */
1531 chunk = value_history_chain;
1532 for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK
1533 - absnum / VALUE_HISTORY_CHUNK;
1535 chunk = chunk->next;
1537 return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
1541 show_values (char *num_exp, int from_tty)
1549 /* "show values +" should print from the stored position.
1550 "show values <exp>" should print around value number <exp>. */
1551 if (num_exp[0] != '+' || num_exp[1] != '\0')
1552 num = parse_and_eval_long (num_exp) - 5;
1556 /* "show values" means print the last 10 values. */
1557 num = value_history_count - 9;
1563 for (i = num; i < num + 10 && i <= value_history_count; i++)
1565 struct value_print_options opts;
1567 val = access_value_history (i);
1568 printf_filtered (("$%d = "), i);
1569 get_user_print_options (&opts);
1570 value_print (val, gdb_stdout, &opts);
1571 printf_filtered (("\n"));
1574 /* The next "show values +" should start after what we just printed. */
1577 /* Hitting just return after this command should do the same thing as
1578 "show values +". If num_exp is null, this is unnecessary, since
1579 "show values +" is not useful after "show values". */
1580 if (from_tty && num_exp)
1587 /* Internal variables. These are variables within the debugger
1588 that hold values assigned by debugger commands.
1589 The user refers to them with a '$' prefix
1590 that does not appear in the variable names stored internally. */
1594 struct internalvar *next;
1597 /* We support various different kinds of content of an internal variable.
1598 enum internalvar_kind specifies the kind, and union internalvar_data
1599 provides the data associated with this particular kind. */
1601 enum internalvar_kind
1603 /* The internal variable is empty. */
1606 /* The value of the internal variable is provided directly as
1607 a GDB value object. */
1610 /* A fresh value is computed via a call-back routine on every
1611 access to the internal variable. */
1612 INTERNALVAR_MAKE_VALUE,
1614 /* The internal variable holds a GDB internal convenience function. */
1615 INTERNALVAR_FUNCTION,
1617 /* The variable holds an integer value. */
1618 INTERNALVAR_INTEGER,
1620 /* The variable holds a GDB-provided string. */
1625 union internalvar_data
1627 /* A value object used with INTERNALVAR_VALUE. */
1628 struct value *value;
1630 /* The call-back routine used with INTERNALVAR_MAKE_VALUE. */
1633 /* The functions to call. */
1634 const struct internalvar_funcs *functions;
1636 /* The function's user-data. */
1640 /* The internal function used with INTERNALVAR_FUNCTION. */
1643 struct internal_function *function;
1644 /* True if this is the canonical name for the function. */
1648 /* An integer value used with INTERNALVAR_INTEGER. */
1651 /* If type is non-NULL, it will be used as the type to generate
1652 a value for this internal variable. If type is NULL, a default
1653 integer type for the architecture is used. */
1658 /* A string value used with INTERNALVAR_STRING. */
1663 static struct internalvar *internalvars;
1665 /* If the variable does not already exist create it and give it the
1666 value given. If no value is given then the default is zero. */
1668 init_if_undefined_command (char* args, int from_tty)
1670 struct internalvar* intvar;
1672 /* Parse the expression - this is taken from set_command(). */
1673 struct expression *expr = parse_expression (args);
1674 register struct cleanup *old_chain =
1675 make_cleanup (free_current_contents, &expr);
1677 /* Validate the expression.
1678 Was the expression an assignment?
1679 Or even an expression at all? */
1680 if (expr->nelts == 0 || expr->elts[0].opcode != BINOP_ASSIGN)
1681 error (_("Init-if-undefined requires an assignment expression."));
1683 /* Extract the variable from the parsed expression.
1684 In the case of an assign the lvalue will be in elts[1] and elts[2]. */
1685 if (expr->elts[1].opcode != OP_INTERNALVAR)
1686 error (_("The first parameter to init-if-undefined "
1687 "should be a GDB variable."));
1688 intvar = expr->elts[2].internalvar;
1690 /* Only evaluate the expression if the lvalue is void.
1691 This may still fail if the expresssion is invalid. */
1692 if (intvar->kind == INTERNALVAR_VOID)
1693 evaluate_expression (expr);
1695 do_cleanups (old_chain);
1699 /* Look up an internal variable with name NAME. NAME should not
1700 normally include a dollar sign.
1702 If the specified internal variable does not exist,
1703 the return value is NULL. */
1705 struct internalvar *
1706 lookup_only_internalvar (const char *name)
1708 struct internalvar *var;
1710 for (var = internalvars; var; var = var->next)
1711 if (strcmp (var->name, name) == 0)
1718 /* Create an internal variable with name NAME and with a void value.
1719 NAME should not normally include a dollar sign. */
1721 struct internalvar *
1722 create_internalvar (const char *name)
1724 struct internalvar *var;
1726 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
1727 var->name = concat (name, (char *)NULL);
1728 var->kind = INTERNALVAR_VOID;
1729 var->next = internalvars;
1734 /* Create an internal variable with name NAME and register FUN as the
1735 function that value_of_internalvar uses to create a value whenever
1736 this variable is referenced. NAME should not normally include a
1737 dollar sign. DATA is passed uninterpreted to FUN when it is
1738 called. CLEANUP, if not NULL, is called when the internal variable
1739 is destroyed. It is passed DATA as its only argument. */
1741 struct internalvar *
1742 create_internalvar_type_lazy (const char *name,
1743 const struct internalvar_funcs *funcs,
1746 struct internalvar *var = create_internalvar (name);
1748 var->kind = INTERNALVAR_MAKE_VALUE;
1749 var->u.make_value.functions = funcs;
1750 var->u.make_value.data = data;
1754 /* See documentation in value.h. */
1757 compile_internalvar_to_ax (struct internalvar *var,
1758 struct agent_expr *expr,
1759 struct axs_value *value)
1761 if (var->kind != INTERNALVAR_MAKE_VALUE
1762 || var->u.make_value.functions->compile_to_ax == NULL)
1765 var->u.make_value.functions->compile_to_ax (var, expr, value,
1766 var->u.make_value.data);
1770 /* Look up an internal variable with name NAME. NAME should not
1771 normally include a dollar sign.
1773 If the specified internal variable does not exist,
1774 one is created, with a void value. */
1776 struct internalvar *
1777 lookup_internalvar (const char *name)
1779 struct internalvar *var;
1781 var = lookup_only_internalvar (name);
1785 return create_internalvar (name);
1788 /* Return current value of internal variable VAR. For variables that
1789 are not inherently typed, use a value type appropriate for GDBARCH. */
1792 value_of_internalvar (struct gdbarch *gdbarch, struct internalvar *var)
1795 struct trace_state_variable *tsv;
1797 /* If there is a trace state variable of the same name, assume that
1798 is what we really want to see. */
1799 tsv = find_trace_state_variable (var->name);
1802 tsv->value_known = target_get_trace_state_variable_value (tsv->number,
1804 if (tsv->value_known)
1805 val = value_from_longest (builtin_type (gdbarch)->builtin_int64,
1808 val = allocate_value (builtin_type (gdbarch)->builtin_void);
1814 case INTERNALVAR_VOID:
1815 val = allocate_value (builtin_type (gdbarch)->builtin_void);
1818 case INTERNALVAR_FUNCTION:
1819 val = allocate_value (builtin_type (gdbarch)->internal_fn);
1822 case INTERNALVAR_INTEGER:
1823 if (!var->u.integer.type)
1824 val = value_from_longest (builtin_type (gdbarch)->builtin_int,
1825 var->u.integer.val);
1827 val = value_from_longest (var->u.integer.type, var->u.integer.val);
1830 case INTERNALVAR_STRING:
1831 val = value_cstring (var->u.string, strlen (var->u.string),
1832 builtin_type (gdbarch)->builtin_char);
1835 case INTERNALVAR_VALUE:
1836 val = value_copy (var->u.value);
1837 if (value_lazy (val))
1838 value_fetch_lazy (val);
1841 case INTERNALVAR_MAKE_VALUE:
1842 val = (*var->u.make_value.functions->make_value) (gdbarch, var,
1843 var->u.make_value.data);
1847 internal_error (__FILE__, __LINE__, _("bad kind"));
1850 /* Change the VALUE_LVAL to lval_internalvar so that future operations
1851 on this value go back to affect the original internal variable.
1853 Do not do this for INTERNALVAR_MAKE_VALUE variables, as those have
1854 no underlying modifyable state in the internal variable.
1856 Likewise, if the variable's value is a computed lvalue, we want
1857 references to it to produce another computed lvalue, where
1858 references and assignments actually operate through the
1859 computed value's functions.
1861 This means that internal variables with computed values
1862 behave a little differently from other internal variables:
1863 assignments to them don't just replace the previous value
1864 altogether. At the moment, this seems like the behavior we
1867 if (var->kind != INTERNALVAR_MAKE_VALUE
1868 && val->lval != lval_computed)
1870 VALUE_LVAL (val) = lval_internalvar;
1871 VALUE_INTERNALVAR (val) = var;
1878 get_internalvar_integer (struct internalvar *var, LONGEST *result)
1880 if (var->kind == INTERNALVAR_INTEGER)
1882 *result = var->u.integer.val;
1886 if (var->kind == INTERNALVAR_VALUE)
1888 struct type *type = check_typedef (value_type (var->u.value));
1890 if (TYPE_CODE (type) == TYPE_CODE_INT)
1892 *result = value_as_long (var->u.value);
1901 get_internalvar_function (struct internalvar *var,
1902 struct internal_function **result)
1906 case INTERNALVAR_FUNCTION:
1907 *result = var->u.fn.function;
1916 set_internalvar_component (struct internalvar *var, int offset, int bitpos,
1917 int bitsize, struct value *newval)
1923 case INTERNALVAR_VALUE:
1924 addr = value_contents_writeable (var->u.value);
1927 modify_field (value_type (var->u.value), addr + offset,
1928 value_as_long (newval), bitpos, bitsize);
1930 memcpy (addr + offset, value_contents (newval),
1931 TYPE_LENGTH (value_type (newval)));
1935 /* We can never get a component of any other kind. */
1936 internal_error (__FILE__, __LINE__, _("set_internalvar_component"));
1941 set_internalvar (struct internalvar *var, struct value *val)
1943 enum internalvar_kind new_kind;
1944 union internalvar_data new_data = { 0 };
1946 if (var->kind == INTERNALVAR_FUNCTION && var->u.fn.canonical)
1947 error (_("Cannot overwrite convenience function %s"), var->name);
1949 /* Prepare new contents. */
1950 switch (TYPE_CODE (check_typedef (value_type (val))))
1952 case TYPE_CODE_VOID:
1953 new_kind = INTERNALVAR_VOID;
1956 case TYPE_CODE_INTERNAL_FUNCTION:
1957 gdb_assert (VALUE_LVAL (val) == lval_internalvar);
1958 new_kind = INTERNALVAR_FUNCTION;
1959 get_internalvar_function (VALUE_INTERNALVAR (val),
1960 &new_data.fn.function);
1961 /* Copies created here are never canonical. */
1965 new_kind = INTERNALVAR_VALUE;
1966 new_data.value = value_copy (val);
1967 new_data.value->modifiable = 1;
1969 /* Force the value to be fetched from the target now, to avoid problems
1970 later when this internalvar is referenced and the target is gone or
1972 if (value_lazy (new_data.value))
1973 value_fetch_lazy (new_data.value);
1975 /* Release the value from the value chain to prevent it from being
1976 deleted by free_all_values. From here on this function should not
1977 call error () until new_data is installed into the var->u to avoid
1979 release_value (new_data.value);
1983 /* Clean up old contents. */
1984 clear_internalvar (var);
1987 var->kind = new_kind;
1989 /* End code which must not call error(). */
1993 set_internalvar_integer (struct internalvar *var, LONGEST l)
1995 /* Clean up old contents. */
1996 clear_internalvar (var);
1998 var->kind = INTERNALVAR_INTEGER;
1999 var->u.integer.type = NULL;
2000 var->u.integer.val = l;
2004 set_internalvar_string (struct internalvar *var, const char *string)
2006 /* Clean up old contents. */
2007 clear_internalvar (var);
2009 var->kind = INTERNALVAR_STRING;
2010 var->u.string = xstrdup (string);
2014 set_internalvar_function (struct internalvar *var, struct internal_function *f)
2016 /* Clean up old contents. */
2017 clear_internalvar (var);
2019 var->kind = INTERNALVAR_FUNCTION;
2020 var->u.fn.function = f;
2021 var->u.fn.canonical = 1;
2022 /* Variables installed here are always the canonical version. */
2026 clear_internalvar (struct internalvar *var)
2028 /* Clean up old contents. */
2031 case INTERNALVAR_VALUE:
2032 value_free (var->u.value);
2035 case INTERNALVAR_STRING:
2036 xfree (var->u.string);
2039 case INTERNALVAR_MAKE_VALUE:
2040 if (var->u.make_value.functions->destroy != NULL)
2041 var->u.make_value.functions->destroy (var->u.make_value.data);
2048 /* Reset to void kind. */
2049 var->kind = INTERNALVAR_VOID;
2053 internalvar_name (struct internalvar *var)
2058 static struct internal_function *
2059 create_internal_function (const char *name,
2060 internal_function_fn handler, void *cookie)
2062 struct internal_function *ifn = XNEW (struct internal_function);
2064 ifn->name = xstrdup (name);
2065 ifn->handler = handler;
2066 ifn->cookie = cookie;
2071 value_internal_function_name (struct value *val)
2073 struct internal_function *ifn;
2076 gdb_assert (VALUE_LVAL (val) == lval_internalvar);
2077 result = get_internalvar_function (VALUE_INTERNALVAR (val), &ifn);
2078 gdb_assert (result);
2084 call_internal_function (struct gdbarch *gdbarch,
2085 const struct language_defn *language,
2086 struct value *func, int argc, struct value **argv)
2088 struct internal_function *ifn;
2091 gdb_assert (VALUE_LVAL (func) == lval_internalvar);
2092 result = get_internalvar_function (VALUE_INTERNALVAR (func), &ifn);
2093 gdb_assert (result);
2095 return (*ifn->handler) (gdbarch, language, ifn->cookie, argc, argv);
2098 /* The 'function' command. This does nothing -- it is just a
2099 placeholder to let "help function NAME" work. This is also used as
2100 the implementation of the sub-command that is created when
2101 registering an internal function. */
2103 function_command (char *command, int from_tty)
2108 /* Clean up if an internal function's command is destroyed. */
2110 function_destroyer (struct cmd_list_element *self, void *ignore)
2116 /* Add a new internal function. NAME is the name of the function; DOC
2117 is a documentation string describing the function. HANDLER is
2118 called when the function is invoked. COOKIE is an arbitrary
2119 pointer which is passed to HANDLER and is intended for "user
2122 add_internal_function (const char *name, const char *doc,
2123 internal_function_fn handler, void *cookie)
2125 struct cmd_list_element *cmd;
2126 struct internal_function *ifn;
2127 struct internalvar *var = lookup_internalvar (name);
2129 ifn = create_internal_function (name, handler, cookie);
2130 set_internalvar_function (var, ifn);
2132 cmd = add_cmd (xstrdup (name), no_class, function_command, (char *) doc,
2134 cmd->destroyer = function_destroyer;
2137 /* Update VALUE before discarding OBJFILE. COPIED_TYPES is used to
2138 prevent cycles / duplicates. */
2141 preserve_one_value (struct value *value, struct objfile *objfile,
2142 htab_t copied_types)
2144 if (TYPE_OBJFILE (value->type) == objfile)
2145 value->type = copy_type_recursive (objfile, value->type, copied_types);
2147 if (TYPE_OBJFILE (value->enclosing_type) == objfile)
2148 value->enclosing_type = copy_type_recursive (objfile,
2149 value->enclosing_type,
2153 /* Likewise for internal variable VAR. */
2156 preserve_one_internalvar (struct internalvar *var, struct objfile *objfile,
2157 htab_t copied_types)
2161 case INTERNALVAR_INTEGER:
2162 if (var->u.integer.type && TYPE_OBJFILE (var->u.integer.type) == objfile)
2164 = copy_type_recursive (objfile, var->u.integer.type, copied_types);
2167 case INTERNALVAR_VALUE:
2168 preserve_one_value (var->u.value, objfile, copied_types);
2173 /* Update the internal variables and value history when OBJFILE is
2174 discarded; we must copy the types out of the objfile. New global types
2175 will be created for every convenience variable which currently points to
2176 this objfile's types, and the convenience variables will be adjusted to
2177 use the new global types. */
2180 preserve_values (struct objfile *objfile)
2182 htab_t copied_types;
2183 struct value_history_chunk *cur;
2184 struct internalvar *var;
2187 /* Create the hash table. We allocate on the objfile's obstack, since
2188 it is soon to be deleted. */
2189 copied_types = create_copied_types_hash (objfile);
2191 for (cur = value_history_chain; cur; cur = cur->next)
2192 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
2194 preserve_one_value (cur->values[i], objfile, copied_types);
2196 for (var = internalvars; var; var = var->next)
2197 preserve_one_internalvar (var, objfile, copied_types);
2199 preserve_python_values (objfile, copied_types);
2201 htab_delete (copied_types);
2205 show_convenience (char *ignore, int from_tty)
2207 struct gdbarch *gdbarch = get_current_arch ();
2208 struct internalvar *var;
2210 struct value_print_options opts;
2212 get_user_print_options (&opts);
2213 for (var = internalvars; var; var = var->next)
2215 volatile struct gdb_exception ex;
2221 printf_filtered (("$%s = "), var->name);
2223 TRY_CATCH (ex, RETURN_MASK_ERROR)
2227 val = value_of_internalvar (gdbarch, var);
2228 value_print (val, gdb_stdout, &opts);
2231 fprintf_filtered (gdb_stdout, _("<error: %s>"), ex.message);
2232 printf_filtered (("\n"));
2235 printf_unfiltered (_("No debugger convenience variables now defined.\n"
2236 "Convenience variables have "
2237 "names starting with \"$\";\n"
2238 "use \"set\" as in \"set "
2239 "$foo = 5\" to define them.\n"));
2242 /* Extract a value as a C number (either long or double).
2243 Knows how to convert fixed values to double, or
2244 floating values to long.
2245 Does not deallocate the value. */
2248 value_as_long (struct value *val)
2250 /* This coerces arrays and functions, which is necessary (e.g.
2251 in disassemble_command). It also dereferences references, which
2252 I suspect is the most logical thing to do. */
2253 val = coerce_array (val);
2254 return unpack_long (value_type (val), value_contents (val));
2258 value_as_double (struct value *val)
2263 foo = unpack_double (value_type (val), value_contents (val), &inv);
2265 error (_("Invalid floating value found in program."));
2269 /* Extract a value as a C pointer. Does not deallocate the value.
2270 Note that val's type may not actually be a pointer; value_as_long
2271 handles all the cases. */
2273 value_as_address (struct value *val)
2275 struct gdbarch *gdbarch = get_type_arch (value_type (val));
2277 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2278 whether we want this to be true eventually. */
2280 /* gdbarch_addr_bits_remove is wrong if we are being called for a
2281 non-address (e.g. argument to "signal", "info break", etc.), or
2282 for pointers to char, in which the low bits *are* significant. */
2283 return gdbarch_addr_bits_remove (gdbarch, value_as_long (val));
2286 /* There are several targets (IA-64, PowerPC, and others) which
2287 don't represent pointers to functions as simply the address of
2288 the function's entry point. For example, on the IA-64, a
2289 function pointer points to a two-word descriptor, generated by
2290 the linker, which contains the function's entry point, and the
2291 value the IA-64 "global pointer" register should have --- to
2292 support position-independent code. The linker generates
2293 descriptors only for those functions whose addresses are taken.
2295 On such targets, it's difficult for GDB to convert an arbitrary
2296 function address into a function pointer; it has to either find
2297 an existing descriptor for that function, or call malloc and
2298 build its own. On some targets, it is impossible for GDB to
2299 build a descriptor at all: the descriptor must contain a jump
2300 instruction; data memory cannot be executed; and code memory
2303 Upon entry to this function, if VAL is a value of type `function'
2304 (that is, TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC), then
2305 value_address (val) is the address of the function. This is what
2306 you'll get if you evaluate an expression like `main'. The call
2307 to COERCE_ARRAY below actually does all the usual unary
2308 conversions, which includes converting values of type `function'
2309 to `pointer to function'. This is the challenging conversion
2310 discussed above. Then, `unpack_long' will convert that pointer
2311 back into an address.
2313 So, suppose the user types `disassemble foo' on an architecture
2314 with a strange function pointer representation, on which GDB
2315 cannot build its own descriptors, and suppose further that `foo'
2316 has no linker-built descriptor. The address->pointer conversion
2317 will signal an error and prevent the command from running, even
2318 though the next step would have been to convert the pointer
2319 directly back into the same address.
2321 The following shortcut avoids this whole mess. If VAL is a
2322 function, just return its address directly. */
2323 if (TYPE_CODE (value_type (val)) == TYPE_CODE_FUNC
2324 || TYPE_CODE (value_type (val)) == TYPE_CODE_METHOD)
2325 return value_address (val);
2327 val = coerce_array (val);
2329 /* Some architectures (e.g. Harvard), map instruction and data
2330 addresses onto a single large unified address space. For
2331 instance: An architecture may consider a large integer in the
2332 range 0x10000000 .. 0x1000ffff to already represent a data
2333 addresses (hence not need a pointer to address conversion) while
2334 a small integer would still need to be converted integer to
2335 pointer to address. Just assume such architectures handle all
2336 integer conversions in a single function. */
2340 I think INTEGER_TO_ADDRESS is a good idea as proposed --- but we
2341 must admonish GDB hackers to make sure its behavior matches the
2342 compiler's, whenever possible.
2344 In general, I think GDB should evaluate expressions the same way
2345 the compiler does. When the user copies an expression out of
2346 their source code and hands it to a `print' command, they should
2347 get the same value the compiler would have computed. Any
2348 deviation from this rule can cause major confusion and annoyance,
2349 and needs to be justified carefully. In other words, GDB doesn't
2350 really have the freedom to do these conversions in clever and
2353 AndrewC pointed out that users aren't complaining about how GDB
2354 casts integers to pointers; they are complaining that they can't
2355 take an address from a disassembly listing and give it to `x/i'.
2356 This is certainly important.
2358 Adding an architecture method like integer_to_address() certainly
2359 makes it possible for GDB to "get it right" in all circumstances
2360 --- the target has complete control over how things get done, so
2361 people can Do The Right Thing for their target without breaking
2362 anyone else. The standard doesn't specify how integers get
2363 converted to pointers; usually, the ABI doesn't either, but
2364 ABI-specific code is a more reasonable place to handle it. */
2366 if (TYPE_CODE (value_type (val)) != TYPE_CODE_PTR
2367 && TYPE_CODE (value_type (val)) != TYPE_CODE_REF
2368 && gdbarch_integer_to_address_p (gdbarch))
2369 return gdbarch_integer_to_address (gdbarch, value_type (val),
2370 value_contents (val));
2372 return unpack_long (value_type (val), value_contents (val));
2376 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
2377 as a long, or as a double, assuming the raw data is described
2378 by type TYPE. Knows how to convert different sizes of values
2379 and can convert between fixed and floating point. We don't assume
2380 any alignment for the raw data. Return value is in host byte order.
2382 If you want functions and arrays to be coerced to pointers, and
2383 references to be dereferenced, call value_as_long() instead.
2385 C++: It is assumed that the front-end has taken care of
2386 all matters concerning pointers to members. A pointer
2387 to member which reaches here is considered to be equivalent
2388 to an INT (or some size). After all, it is only an offset. */
2391 unpack_long (struct type *type, const gdb_byte *valaddr)
2393 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
2394 enum type_code code = TYPE_CODE (type);
2395 int len = TYPE_LENGTH (type);
2396 int nosign = TYPE_UNSIGNED (type);
2400 case TYPE_CODE_TYPEDEF:
2401 return unpack_long (check_typedef (type), valaddr);
2402 case TYPE_CODE_ENUM:
2403 case TYPE_CODE_FLAGS:
2404 case TYPE_CODE_BOOL:
2406 case TYPE_CODE_CHAR:
2407 case TYPE_CODE_RANGE:
2408 case TYPE_CODE_MEMBERPTR:
2410 return extract_unsigned_integer (valaddr, len, byte_order);
2412 return extract_signed_integer (valaddr, len, byte_order);
2415 return extract_typed_floating (valaddr, type);
2417 case TYPE_CODE_DECFLOAT:
2418 /* libdecnumber has a function to convert from decimal to integer, but
2419 it doesn't work when the decimal number has a fractional part. */
2420 return decimal_to_doublest (valaddr, len, byte_order);
2424 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2425 whether we want this to be true eventually. */
2426 return extract_typed_address (valaddr, type);
2429 error (_("Value can't be converted to integer."));
2431 return 0; /* Placate lint. */
2434 /* Return a double value from the specified type and address.
2435 INVP points to an int which is set to 0 for valid value,
2436 1 for invalid value (bad float format). In either case,
2437 the returned double is OK to use. Argument is in target
2438 format, result is in host format. */
2441 unpack_double (struct type *type, const gdb_byte *valaddr, int *invp)
2443 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
2444 enum type_code code;
2448 *invp = 0; /* Assume valid. */
2449 CHECK_TYPEDEF (type);
2450 code = TYPE_CODE (type);
2451 len = TYPE_LENGTH (type);
2452 nosign = TYPE_UNSIGNED (type);
2453 if (code == TYPE_CODE_FLT)
2455 /* NOTE: cagney/2002-02-19: There was a test here to see if the
2456 floating-point value was valid (using the macro
2457 INVALID_FLOAT). That test/macro have been removed.
2459 It turns out that only the VAX defined this macro and then
2460 only in a non-portable way. Fixing the portability problem
2461 wouldn't help since the VAX floating-point code is also badly
2462 bit-rotten. The target needs to add definitions for the
2463 methods gdbarch_float_format and gdbarch_double_format - these
2464 exactly describe the target floating-point format. The
2465 problem here is that the corresponding floatformat_vax_f and
2466 floatformat_vax_d values these methods should be set to are
2467 also not defined either. Oops!
2469 Hopefully someone will add both the missing floatformat
2470 definitions and the new cases for floatformat_is_valid (). */
2472 if (!floatformat_is_valid (floatformat_from_type (type), valaddr))
2478 return extract_typed_floating (valaddr, type);
2480 else if (code == TYPE_CODE_DECFLOAT)
2481 return decimal_to_doublest (valaddr, len, byte_order);
2484 /* Unsigned -- be sure we compensate for signed LONGEST. */
2485 return (ULONGEST) unpack_long (type, valaddr);
2489 /* Signed -- we are OK with unpack_long. */
2490 return unpack_long (type, valaddr);
2494 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
2495 as a CORE_ADDR, assuming the raw data is described by type TYPE.
2496 We don't assume any alignment for the raw data. Return value is in
2499 If you want functions and arrays to be coerced to pointers, and
2500 references to be dereferenced, call value_as_address() instead.
2502 C++: It is assumed that the front-end has taken care of
2503 all matters concerning pointers to members. A pointer
2504 to member which reaches here is considered to be equivalent
2505 to an INT (or some size). After all, it is only an offset. */
2508 unpack_pointer (struct type *type, const gdb_byte *valaddr)
2510 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2511 whether we want this to be true eventually. */
2512 return unpack_long (type, valaddr);
2516 /* Get the value of the FIELDNO'th field (which must be static) of
2517 TYPE. Return NULL if the field doesn't exist or has been
2521 value_static_field (struct type *type, int fieldno)
2523 struct value *retval;
2525 switch (TYPE_FIELD_LOC_KIND (type, fieldno))
2527 case FIELD_LOC_KIND_PHYSADDR:
2528 retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
2529 TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
2531 case FIELD_LOC_KIND_PHYSNAME:
2533 const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
2534 /* TYPE_FIELD_NAME (type, fieldno); */
2535 struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
2539 /* With some compilers, e.g. HP aCC, static data members are
2540 reported as non-debuggable symbols. */
2541 struct minimal_symbol *msym = lookup_minimal_symbol (phys_name,
2548 retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
2549 SYMBOL_VALUE_ADDRESS (msym));
2553 retval = value_of_variable (sym, NULL);
2557 gdb_assert_not_reached ("unexpected field location kind");
2563 /* Change the enclosing type of a value object VAL to NEW_ENCL_TYPE.
2564 You have to be careful here, since the size of the data area for the value
2565 is set by the length of the enclosing type. So if NEW_ENCL_TYPE is bigger
2566 than the old enclosing type, you have to allocate more space for the
2570 set_value_enclosing_type (struct value *val, struct type *new_encl_type)
2572 if (TYPE_LENGTH (new_encl_type) > TYPE_LENGTH (value_enclosing_type (val)))
2574 (gdb_byte *) xrealloc (val->contents, TYPE_LENGTH (new_encl_type));
2576 val->enclosing_type = new_encl_type;
2579 /* Given a value ARG1 (offset by OFFSET bytes)
2580 of a struct or union type ARG_TYPE,
2581 extract and return the value of one of its (non-static) fields.
2582 FIELDNO says which field. */
2585 value_primitive_field (struct value *arg1, int offset,
2586 int fieldno, struct type *arg_type)
2591 CHECK_TYPEDEF (arg_type);
2592 type = TYPE_FIELD_TYPE (arg_type, fieldno);
2594 /* Call check_typedef on our type to make sure that, if TYPE
2595 is a TYPE_CODE_TYPEDEF, its length is set to the length
2596 of the target type instead of zero. However, we do not
2597 replace the typedef type by the target type, because we want
2598 to keep the typedef in order to be able to print the type
2599 description correctly. */
2600 check_typedef (type);
2602 if (value_optimized_out (arg1))
2603 v = allocate_optimized_out_value (type);
2604 else if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
2606 /* Handle packed fields.
2608 Create a new value for the bitfield, with bitpos and bitsize
2609 set. If possible, arrange offset and bitpos so that we can
2610 do a single aligned read of the size of the containing type.
2611 Otherwise, adjust offset to the byte containing the first
2612 bit. Assume that the address, offset, and embedded offset
2613 are sufficiently aligned. */
2615 int bitpos = TYPE_FIELD_BITPOS (arg_type, fieldno);
2616 int container_bitsize = TYPE_LENGTH (type) * 8;
2618 v = allocate_value_lazy (type);
2619 v->bitsize = TYPE_FIELD_BITSIZE (arg_type, fieldno);
2620 if ((bitpos % container_bitsize) + v->bitsize <= container_bitsize
2621 && TYPE_LENGTH (type) <= (int) sizeof (LONGEST))
2622 v->bitpos = bitpos % container_bitsize;
2624 v->bitpos = bitpos % 8;
2625 v->offset = (value_embedded_offset (arg1)
2627 + (bitpos - v->bitpos) / 8);
2629 value_incref (v->parent);
2630 if (!value_lazy (arg1))
2631 value_fetch_lazy (v);
2633 else if (fieldno < TYPE_N_BASECLASSES (arg_type))
2635 /* This field is actually a base subobject, so preserve the
2636 entire object's contents for later references to virtual
2640 /* Lazy register values with offsets are not supported. */
2641 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
2642 value_fetch_lazy (arg1);
2644 /* We special case virtual inheritance here because this
2645 requires access to the contents, which we would rather avoid
2646 for references to ordinary fields of unavailable values. */
2647 if (BASETYPE_VIA_VIRTUAL (arg_type, fieldno))
2648 boffset = baseclass_offset (arg_type, fieldno,
2649 value_contents (arg1),
2650 value_embedded_offset (arg1),
2651 value_address (arg1),
2654 boffset = TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
2656 if (value_lazy (arg1))
2657 v = allocate_value_lazy (value_enclosing_type (arg1));
2660 v = allocate_value (value_enclosing_type (arg1));
2661 value_contents_copy_raw (v, 0, arg1, 0,
2662 TYPE_LENGTH (value_enclosing_type (arg1)));
2665 v->offset = value_offset (arg1);
2666 v->embedded_offset = offset + value_embedded_offset (arg1) + boffset;
2670 /* Plain old data member */
2671 offset += TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
2673 /* Lazy register values with offsets are not supported. */
2674 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
2675 value_fetch_lazy (arg1);
2677 if (value_lazy (arg1))
2678 v = allocate_value_lazy (type);
2681 v = allocate_value (type);
2682 value_contents_copy_raw (v, value_embedded_offset (v),
2683 arg1, value_embedded_offset (arg1) + offset,
2684 TYPE_LENGTH (type));
2686 v->offset = (value_offset (arg1) + offset
2687 + value_embedded_offset (arg1));
2689 set_value_component_location (v, arg1);
2690 VALUE_REGNUM (v) = VALUE_REGNUM (arg1);
2691 VALUE_FRAME_ID (v) = VALUE_FRAME_ID (arg1);
2695 /* Given a value ARG1 of a struct or union type,
2696 extract and return the value of one of its (non-static) fields.
2697 FIELDNO says which field. */
2700 value_field (struct value *arg1, int fieldno)
2702 return value_primitive_field (arg1, 0, fieldno, value_type (arg1));
2705 /* Return a non-virtual function as a value.
2706 F is the list of member functions which contains the desired method.
2707 J is an index into F which provides the desired method.
2709 We only use the symbol for its address, so be happy with either a
2710 full symbol or a minimal symbol. */
2713 value_fn_field (struct value **arg1p, struct fn_field *f,
2714 int j, struct type *type,
2718 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
2719 const char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
2721 struct minimal_symbol *msym;
2723 sym = lookup_symbol (physname, 0, VAR_DOMAIN, 0);
2730 gdb_assert (sym == NULL);
2731 msym = lookup_minimal_symbol (physname, NULL, NULL);
2736 v = allocate_value (ftype);
2739 set_value_address (v, BLOCK_START (SYMBOL_BLOCK_VALUE (sym)));
2743 /* The minimal symbol might point to a function descriptor;
2744 resolve it to the actual code address instead. */
2745 struct objfile *objfile = msymbol_objfile (msym);
2746 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2748 set_value_address (v,
2749 gdbarch_convert_from_func_ptr_addr
2750 (gdbarch, SYMBOL_VALUE_ADDRESS (msym), ¤t_target));
2755 if (type != value_type (*arg1p))
2756 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
2757 value_addr (*arg1p)));
2759 /* Move the `this' pointer according to the offset.
2760 VALUE_OFFSET (*arg1p) += offset; */
2768 /* Helper function for both unpack_value_bits_as_long and
2769 unpack_bits_as_long. See those functions for more details on the
2770 interface; the only difference is that this function accepts either
2771 a NULL or a non-NULL ORIGINAL_VALUE. */
2774 unpack_value_bits_as_long_1 (struct type *field_type, const gdb_byte *valaddr,
2775 int embedded_offset, int bitpos, int bitsize,
2776 const struct value *original_value,
2779 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (field_type));
2786 /* Read the minimum number of bytes required; there may not be
2787 enough bytes to read an entire ULONGEST. */
2788 CHECK_TYPEDEF (field_type);
2790 bytes_read = ((bitpos % 8) + bitsize + 7) / 8;
2792 bytes_read = TYPE_LENGTH (field_type);
2794 read_offset = bitpos / 8;
2796 if (original_value != NULL
2797 && !value_bytes_available (original_value, embedded_offset + read_offset,
2801 val = extract_unsigned_integer (valaddr + embedded_offset + read_offset,
2802 bytes_read, byte_order);
2804 /* Extract bits. See comment above. */
2806 if (gdbarch_bits_big_endian (get_type_arch (field_type)))
2807 lsbcount = (bytes_read * 8 - bitpos % 8 - bitsize);
2809 lsbcount = (bitpos % 8);
2812 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
2813 If the field is signed, and is negative, then sign extend. */
2815 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
2817 valmask = (((ULONGEST) 1) << bitsize) - 1;
2819 if (!TYPE_UNSIGNED (field_type))
2821 if (val & (valmask ^ (valmask >> 1)))
2832 /* Unpack a bitfield of the specified FIELD_TYPE, from the object at
2833 VALADDR + EMBEDDED_OFFSET, and store the result in *RESULT.
2834 VALADDR points to the contents of ORIGINAL_VALUE, which must not be
2835 NULL. The bitfield starts at BITPOS bits and contains BITSIZE
2838 Returns false if the value contents are unavailable, otherwise
2839 returns true, indicating a valid value has been stored in *RESULT.
2841 Extracting bits depends on endianness of the machine. Compute the
2842 number of least significant bits to discard. For big endian machines,
2843 we compute the total number of bits in the anonymous object, subtract
2844 off the bit count from the MSB of the object to the MSB of the
2845 bitfield, then the size of the bitfield, which leaves the LSB discard
2846 count. For little endian machines, the discard count is simply the
2847 number of bits from the LSB of the anonymous object to the LSB of the
2850 If the field is signed, we also do sign extension. */
2853 unpack_value_bits_as_long (struct type *field_type, const gdb_byte *valaddr,
2854 int embedded_offset, int bitpos, int bitsize,
2855 const struct value *original_value,
2858 gdb_assert (original_value != NULL);
2860 return unpack_value_bits_as_long_1 (field_type, valaddr, embedded_offset,
2861 bitpos, bitsize, original_value, result);
2865 /* Unpack a field FIELDNO of the specified TYPE, from the object at
2866 VALADDR + EMBEDDED_OFFSET. VALADDR points to the contents of
2867 ORIGINAL_VALUE. See unpack_value_bits_as_long for more
2871 unpack_value_field_as_long_1 (struct type *type, const gdb_byte *valaddr,
2872 int embedded_offset, int fieldno,
2873 const struct value *val, LONGEST *result)
2875 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
2876 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
2877 struct type *field_type = TYPE_FIELD_TYPE (type, fieldno);
2879 return unpack_value_bits_as_long_1 (field_type, valaddr, embedded_offset,
2880 bitpos, bitsize, val,
2884 /* Unpack a field FIELDNO of the specified TYPE, from the object at
2885 VALADDR + EMBEDDED_OFFSET. VALADDR points to the contents of
2886 ORIGINAL_VALUE, which must not be NULL. See
2887 unpack_value_bits_as_long for more details. */
2890 unpack_value_field_as_long (struct type *type, const gdb_byte *valaddr,
2891 int embedded_offset, int fieldno,
2892 const struct value *val, LONGEST *result)
2894 gdb_assert (val != NULL);
2896 return unpack_value_field_as_long_1 (type, valaddr, embedded_offset,
2897 fieldno, val, result);
2900 /* Unpack a field FIELDNO of the specified TYPE, from the anonymous
2901 object at VALADDR. See unpack_value_bits_as_long for more details.
2902 This function differs from unpack_value_field_as_long in that it
2903 operates without a struct value object. */
2906 unpack_field_as_long (struct type *type, const gdb_byte *valaddr, int fieldno)
2910 unpack_value_field_as_long_1 (type, valaddr, 0, fieldno, NULL, &result);
2914 /* Return a new value with type TYPE, which is FIELDNO field of the
2915 object at VALADDR + EMBEDDEDOFFSET. VALADDR points to the contents
2916 of VAL. If the VAL's contents required to extract the bitfield
2917 from are unavailable, the new value is correspondingly marked as
2921 value_field_bitfield (struct type *type, int fieldno,
2922 const gdb_byte *valaddr,
2923 int embedded_offset, const struct value *val)
2927 if (!unpack_value_field_as_long (type, valaddr, embedded_offset, fieldno,
2930 struct type *field_type = TYPE_FIELD_TYPE (type, fieldno);
2931 struct value *retval = allocate_value (field_type);
2932 mark_value_bytes_unavailable (retval, 0, TYPE_LENGTH (field_type));
2937 return value_from_longest (TYPE_FIELD_TYPE (type, fieldno), l);
2941 /* Modify the value of a bitfield. ADDR points to a block of memory in
2942 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
2943 is the desired value of the field, in host byte order. BITPOS and BITSIZE
2944 indicate which bits (in target bit order) comprise the bitfield.
2945 Requires 0 < BITSIZE <= lbits, 0 <= BITPOS % 8 + BITSIZE <= lbits, and
2946 0 <= BITPOS, where lbits is the size of a LONGEST in bits. */
2949 modify_field (struct type *type, gdb_byte *addr,
2950 LONGEST fieldval, int bitpos, int bitsize)
2952 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
2954 ULONGEST mask = (ULONGEST) -1 >> (8 * sizeof (ULONGEST) - bitsize);
2957 /* Normalize BITPOS. */
2961 /* If a negative fieldval fits in the field in question, chop
2962 off the sign extension bits. */
2963 if ((~fieldval & ~(mask >> 1)) == 0)
2966 /* Warn if value is too big to fit in the field in question. */
2967 if (0 != (fieldval & ~mask))
2969 /* FIXME: would like to include fieldval in the message, but
2970 we don't have a sprintf_longest. */
2971 warning (_("Value does not fit in %d bits."), bitsize);
2973 /* Truncate it, otherwise adjoining fields may be corrupted. */
2977 /* Ensure no bytes outside of the modified ones get accessed as it may cause
2978 false valgrind reports. */
2980 bytesize = (bitpos + bitsize + 7) / 8;
2981 oword = extract_unsigned_integer (addr, bytesize, byte_order);
2983 /* Shifting for bit field depends on endianness of the target machine. */
2984 if (gdbarch_bits_big_endian (get_type_arch (type)))
2985 bitpos = bytesize * 8 - bitpos - bitsize;
2987 oword &= ~(mask << bitpos);
2988 oword |= fieldval << bitpos;
2990 store_unsigned_integer (addr, bytesize, byte_order, oword);
2993 /* Pack NUM into BUF using a target format of TYPE. */
2996 pack_long (gdb_byte *buf, struct type *type, LONGEST num)
2998 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
3001 type = check_typedef (type);
3002 len = TYPE_LENGTH (type);
3004 switch (TYPE_CODE (type))
3007 case TYPE_CODE_CHAR:
3008 case TYPE_CODE_ENUM:
3009 case TYPE_CODE_FLAGS:
3010 case TYPE_CODE_BOOL:
3011 case TYPE_CODE_RANGE:
3012 case TYPE_CODE_MEMBERPTR:
3013 store_signed_integer (buf, len, byte_order, num);
3018 store_typed_address (buf, type, (CORE_ADDR) num);
3022 error (_("Unexpected type (%d) encountered for integer constant."),
3028 /* Pack NUM into BUF using a target format of TYPE. */
3031 pack_unsigned_long (gdb_byte *buf, struct type *type, ULONGEST num)
3034 enum bfd_endian byte_order;
3036 type = check_typedef (type);
3037 len = TYPE_LENGTH (type);
3038 byte_order = gdbarch_byte_order (get_type_arch (type));
3040 switch (TYPE_CODE (type))
3043 case TYPE_CODE_CHAR:
3044 case TYPE_CODE_ENUM:
3045 case TYPE_CODE_FLAGS:
3046 case TYPE_CODE_BOOL:
3047 case TYPE_CODE_RANGE:
3048 case TYPE_CODE_MEMBERPTR:
3049 store_unsigned_integer (buf, len, byte_order, num);
3054 store_typed_address (buf, type, (CORE_ADDR) num);
3058 error (_("Unexpected type (%d) encountered "
3059 "for unsigned integer constant."),
3065 /* Convert C numbers into newly allocated values. */
3068 value_from_longest (struct type *type, LONGEST num)
3070 struct value *val = allocate_value (type);
3072 pack_long (value_contents_raw (val), type, num);
3077 /* Convert C unsigned numbers into newly allocated values. */
3080 value_from_ulongest (struct type *type, ULONGEST num)
3082 struct value *val = allocate_value (type);
3084 pack_unsigned_long (value_contents_raw (val), type, num);
3090 /* Create a value representing a pointer of type TYPE to the address
3093 value_from_pointer (struct type *type, CORE_ADDR addr)
3095 struct value *val = allocate_value (type);
3097 store_typed_address (value_contents_raw (val), check_typedef (type), addr);
3102 /* Create a value of type TYPE whose contents come from VALADDR, if it
3103 is non-null, and whose memory address (in the inferior) is
3107 value_from_contents_and_address (struct type *type,
3108 const gdb_byte *valaddr,
3113 if (valaddr == NULL)
3114 v = allocate_value_lazy (type);
3117 v = allocate_value (type);
3118 memcpy (value_contents_raw (v), valaddr, TYPE_LENGTH (type));
3120 set_value_address (v, address);
3121 VALUE_LVAL (v) = lval_memory;
3125 /* Create a value of type TYPE holding the contents CONTENTS.
3126 The new value is `not_lval'. */
3129 value_from_contents (struct type *type, const gdb_byte *contents)
3131 struct value *result;
3133 result = allocate_value (type);
3134 memcpy (value_contents_raw (result), contents, TYPE_LENGTH (type));
3139 value_from_double (struct type *type, DOUBLEST num)
3141 struct value *val = allocate_value (type);
3142 struct type *base_type = check_typedef (type);
3143 enum type_code code = TYPE_CODE (base_type);
3145 if (code == TYPE_CODE_FLT)
3147 store_typed_floating (value_contents_raw (val), base_type, num);
3150 error (_("Unexpected type encountered for floating constant."));
3156 value_from_decfloat (struct type *type, const gdb_byte *dec)
3158 struct value *val = allocate_value (type);
3160 memcpy (value_contents_raw (val), dec, TYPE_LENGTH (type));
3164 /* Extract a value from the history file. Input will be of the form
3165 $digits or $$digits. See block comment above 'write_dollar_variable'
3169 value_from_history_ref (char *h, char **endp)
3181 /* Find length of numeral string. */
3182 for (; isdigit (h[len]); len++)
3185 /* Make sure numeral string is not part of an identifier. */
3186 if (h[len] == '_' || isalpha (h[len]))
3189 /* Now collect the index value. */
3194 /* For some bizarre reason, "$$" is equivalent to "$$1",
3195 rather than to "$$0" as it ought to be! */
3200 index = -strtol (&h[2], endp, 10);
3206 /* "$" is equivalent to "$0". */
3211 index = strtol (&h[1], endp, 10);
3214 return access_value_history (index);
3218 coerce_ref_if_computed (const struct value *arg)
3220 const struct lval_funcs *funcs;
3222 if (TYPE_CODE (check_typedef (value_type (arg))) != TYPE_CODE_REF)
3225 if (value_lval_const (arg) != lval_computed)
3228 funcs = value_computed_funcs (arg);
3229 if (funcs->coerce_ref == NULL)
3232 return funcs->coerce_ref (arg);
3235 /* Look at value.h for description. */
3238 readjust_indirect_value_type (struct value *value, struct type *enc_type,
3239 struct type *original_type,
3240 struct value *original_value)
3242 /* Re-adjust type. */
3243 deprecated_set_value_type (value, TYPE_TARGET_TYPE (original_type));
3245 /* Add embedding info. */
3246 set_value_enclosing_type (value, enc_type);
3247 set_value_embedded_offset (value, value_pointed_to_offset (original_value));
3249 /* We may be pointing to an object of some derived type. */
3250 return value_full_object (value, NULL, 0, 0, 0);
3254 coerce_ref (struct value *arg)
3256 struct type *value_type_arg_tmp = check_typedef (value_type (arg));
3257 struct value *retval;
3258 struct type *enc_type;
3260 retval = coerce_ref_if_computed (arg);
3264 if (TYPE_CODE (value_type_arg_tmp) != TYPE_CODE_REF)
3267 enc_type = check_typedef (value_enclosing_type (arg));
3268 enc_type = TYPE_TARGET_TYPE (enc_type);
3270 retval = value_at_lazy (enc_type,
3271 unpack_pointer (value_type (arg),
3272 value_contents (arg)));
3273 return readjust_indirect_value_type (retval, enc_type,
3274 value_type_arg_tmp, arg);
3278 coerce_array (struct value *arg)
3282 arg = coerce_ref (arg);
3283 type = check_typedef (value_type (arg));
3285 switch (TYPE_CODE (type))
3287 case TYPE_CODE_ARRAY:
3288 if (!TYPE_VECTOR (type) && current_language->c_style_arrays)
3289 arg = value_coerce_array (arg);
3291 case TYPE_CODE_FUNC:
3292 arg = value_coerce_function (arg);
3299 /* Return true if the function returning the specified type is using
3300 the convention of returning structures in memory (passing in the
3301 address as a hidden first parameter). */
3304 using_struct_return (struct gdbarch *gdbarch,
3305 struct value *function, struct type *value_type)
3307 enum type_code code = TYPE_CODE (value_type);
3309 if (code == TYPE_CODE_ERROR)
3310 error (_("Function return type unknown."));
3312 if (code == TYPE_CODE_VOID)
3313 /* A void return value is never in memory. See also corresponding
3314 code in "print_return_value". */
3317 /* Probe the architecture for the return-value convention. */
3318 return (gdbarch_return_value (gdbarch, function, value_type,
3320 != RETURN_VALUE_REGISTER_CONVENTION);
3323 /* Set the initialized field in a value struct. */
3326 set_value_initialized (struct value *val, int status)
3328 val->initialized = status;
3331 /* Return the initialized field in a value struct. */
3334 value_initialized (struct value *val)
3336 return val->initialized;
3340 _initialize_values (void)
3342 add_cmd ("convenience", no_class, show_convenience, _("\
3343 Debugger convenience (\"$foo\") variables.\n\
3344 These variables are created when you assign them values;\n\
3345 thus, \"print $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\
3347 A few convenience variables are given values automatically:\n\
3348 \"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
3349 \"$__\" holds the contents of the last address examined with \"x\"."),
3352 add_cmd ("values", no_set_class, show_values, _("\
3353 Elements of value history around item number IDX (or last ten)."),
3356 add_com ("init-if-undefined", class_vars, init_if_undefined_command, _("\
3357 Initialize a convenience variable if necessary.\n\
3358 init-if-undefined VARIABLE = EXPRESSION\n\
3359 Set an internal VARIABLE to the result of the EXPRESSION if it does not\n\
3360 exist or does not contain a value. The EXPRESSION is not evaluated if the\n\
3361 VARIABLE is already initialized."));
3363 add_prefix_cmd ("function", no_class, function_command, _("\
3364 Placeholder command for showing help on convenience functions."),
3365 &functionlist, "function ", 0, &cmdlist);