nm: Add --quiet to suppress "no symbols" diagnostic
[binutils-gdb.git] / gdb / value.c
blobbddf9a47923a0c1e845f94668c959a11569d8464
1 /* Low level packing and unpacking of values for GDB, the GNU Debugger.
3 Copyright (C) 1986-2021 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/>. */
20 #include "defs.h"
21 #include "arch-utils.h"
22 #include "symtab.h"
23 #include "gdbtypes.h"
24 #include "value.h"
25 #include "gdbcore.h"
26 #include "command.h"
27 #include "gdbcmd.h"
28 #include "target.h"
29 #include "language.h"
30 #include "demangle.h"
31 #include "regcache.h"
32 #include "block.h"
33 #include "target-float.h"
34 #include "objfiles.h"
35 #include "valprint.h"
36 #include "cli/cli-decode.h"
37 #include "extension.h"
38 #include <ctype.h>
39 #include "tracepoint.h"
40 #include "cp-abi.h"
41 #include "user-regs.h"
42 #include <algorithm>
43 #include "completer.h"
44 #include "gdbsupport/selftest.h"
45 #include "gdbsupport/array-view.h"
46 #include "cli/cli-style.h"
48 /* Definition of a user function. */
49 struct internal_function
51 /* The name of the function. It is a bit odd to have this in the
52 function itself -- the user might use a differently-named
53 convenience variable to hold the function. */
54 char *name;
56 /* The handler. */
57 internal_function_fn handler;
59 /* User data for the handler. */
60 void *cookie;
63 /* Defines an [OFFSET, OFFSET + LENGTH) range. */
65 struct range
67 /* Lowest offset in the range. */
68 LONGEST offset;
70 /* Length of the range. */
71 LONGEST length;
73 /* Returns true if THIS is strictly less than OTHER, useful for
74 searching. We keep ranges sorted by offset and coalesce
75 overlapping and contiguous ranges, so this just compares the
76 starting offset. */
78 bool operator< (const range &other) const
80 return offset < other.offset;
83 /* Returns true if THIS is equal to OTHER. */
84 bool operator== (const range &other) const
86 return offset == other.offset && length == other.length;
90 /* Returns true if the ranges defined by [offset1, offset1+len1) and
91 [offset2, offset2+len2) overlap. */
93 static int
94 ranges_overlap (LONGEST offset1, LONGEST len1,
95 LONGEST offset2, LONGEST len2)
97 ULONGEST h, l;
99 l = std::max (offset1, offset2);
100 h = std::min (offset1 + len1, offset2 + len2);
101 return (l < h);
104 /* Returns true if RANGES contains any range that overlaps [OFFSET,
105 OFFSET+LENGTH). */
107 static int
108 ranges_contain (const std::vector<range> &ranges, LONGEST offset,
109 LONGEST length)
111 range what;
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.,
125 |---|
126 |---| |---| |------| ... |--|
127 0 1 2 N
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'
134 overlaps with R.
136 Then we need to check if the I range overlaps the I range itself.
137 E.g.,
140 |---|
141 |---| |---| |-------| ... |--|
142 0 1 2 N
148 auto i = std::lower_bound (ranges.begin (), ranges.end (), what);
150 if (i > ranges.begin ())
152 const struct range &bef = *(i - 1);
154 if (ranges_overlap (bef.offset, bef.length, offset, length))
155 return 1;
158 if (i < ranges.end ())
160 const struct range &r = *i;
162 if (ranges_overlap (r.offset, r.length, offset, length))
163 return 1;
166 return 0;
169 static struct cmd_list_element *functionlist;
171 /* Note that the fields in this structure are arranged to save a bit
172 of memory. */
174 struct value
176 explicit value (struct type *type_)
177 : modifiable (1),
178 lazy (1),
179 initialized (1),
180 stack (0),
181 type (type_),
182 enclosing_type (type_)
186 ~value ()
188 if (VALUE_LVAL (this) == lval_computed)
190 const struct lval_funcs *funcs = location.computed.funcs;
192 if (funcs->free_closure)
193 funcs->free_closure (this);
195 else if (VALUE_LVAL (this) == lval_xcallable)
196 delete location.xm_worker;
199 DISABLE_COPY_AND_ASSIGN (value);
201 /* Type of value; either not an lval, or one of the various
202 different possible kinds of lval. */
203 enum lval_type lval = not_lval;
205 /* Is it modifiable? Only relevant if lval != not_lval. */
206 unsigned int modifiable : 1;
208 /* If zero, contents of this value are in the contents field. If
209 nonzero, contents are in inferior. If the lval field is lval_memory,
210 the contents are in inferior memory at location.address plus offset.
211 The lval field may also be lval_register.
213 WARNING: This field is used by the code which handles watchpoints
214 (see breakpoint.c) to decide whether a particular value can be
215 watched by hardware watchpoints. If the lazy flag is set for
216 some member of a value chain, it is assumed that this member of
217 the chain doesn't need to be watched as part of watching the
218 value itself. This is how GDB avoids watching the entire struct
219 or array when the user wants to watch a single struct member or
220 array element. If you ever change the way lazy flag is set and
221 reset, be sure to consider this use as well! */
222 unsigned int lazy : 1;
224 /* If value is a variable, is it initialized or not. */
225 unsigned int initialized : 1;
227 /* If value is from the stack. If this is set, read_stack will be
228 used instead of read_memory to enable extra caching. */
229 unsigned int stack : 1;
231 /* Location of value (if lval). */
232 union
234 /* If lval == lval_memory, this is the address in the inferior */
235 CORE_ADDR address;
237 /*If lval == lval_register, the value is from a register. */
238 struct
240 /* Register number. */
241 int regnum;
242 /* Frame ID of "next" frame to which a register value is relative.
243 If the register value is found relative to frame F, then the
244 frame id of F->next will be stored in next_frame_id. */
245 struct frame_id next_frame_id;
246 } reg;
248 /* Pointer to internal variable. */
249 struct internalvar *internalvar;
251 /* Pointer to xmethod worker. */
252 struct xmethod_worker *xm_worker;
254 /* If lval == lval_computed, this is a set of function pointers
255 to use to access and describe the value, and a closure pointer
256 for them to use. */
257 struct
259 /* Functions to call. */
260 const struct lval_funcs *funcs;
262 /* Closure for those functions to use. */
263 void *closure;
264 } computed;
265 } location {};
267 /* Describes offset of a value within lval of a structure in target
268 addressable memory units. Note also the member embedded_offset
269 below. */
270 LONGEST offset = 0;
272 /* Only used for bitfields; number of bits contained in them. */
273 LONGEST bitsize = 0;
275 /* Only used for bitfields; position of start of field. For
276 little-endian targets, it is the position of the LSB. For
277 big-endian targets, it is the position of the MSB. */
278 LONGEST bitpos = 0;
280 /* The number of references to this value. When a value is created,
281 the value chain holds a reference, so REFERENCE_COUNT is 1. If
282 release_value is called, this value is removed from the chain but
283 the caller of release_value now has a reference to this value.
284 The caller must arrange for a call to value_free later. */
285 int reference_count = 1;
287 /* Only used for bitfields; the containing value. This allows a
288 single read from the target when displaying multiple
289 bitfields. */
290 value_ref_ptr parent;
292 /* Type of the value. */
293 struct type *type;
295 /* If a value represents a C++ object, then the `type' field gives
296 the object's compile-time type. If the object actually belongs
297 to some class derived from `type', perhaps with other base
298 classes and additional members, then `type' is just a subobject
299 of the real thing, and the full object is probably larger than
300 `type' would suggest.
302 If `type' is a dynamic class (i.e. one with a vtable), then GDB
303 can actually determine the object's run-time type by looking at
304 the run-time type information in the vtable. When this
305 information is available, we may elect to read in the entire
306 object, for several reasons:
308 - When printing the value, the user would probably rather see the
309 full object, not just the limited portion apparent from the
310 compile-time type.
312 - If `type' has virtual base classes, then even printing `type'
313 alone may require reaching outside the `type' portion of the
314 object to wherever the virtual base class has been stored.
316 When we store the entire object, `enclosing_type' is the run-time
317 type -- the complete object -- and `embedded_offset' is the
318 offset of `type' within that larger type, in target addressable memory
319 units. The value_contents() macro takes `embedded_offset' into account,
320 so most GDB code continues to see the `type' portion of the value, just
321 as the inferior would.
323 If `type' is a pointer to an object, then `enclosing_type' is a
324 pointer to the object's run-time type, and `pointed_to_offset' is
325 the offset in target addressable memory units from the full object
326 to the pointed-to object -- that is, the value `embedded_offset' would
327 have if we followed the pointer and fetched the complete object.
328 (I don't really see the point. Why not just determine the
329 run-time type when you indirect, and avoid the special case? The
330 contents don't matter until you indirect anyway.)
332 If we're not doing anything fancy, `enclosing_type' is equal to
333 `type', and `embedded_offset' is zero, so everything works
334 normally. */
335 struct type *enclosing_type;
336 LONGEST embedded_offset = 0;
337 LONGEST pointed_to_offset = 0;
339 /* Actual contents of the value. Target byte-order. NULL or not
340 valid if lazy is nonzero. */
341 gdb::unique_xmalloc_ptr<gdb_byte> contents;
343 /* Unavailable ranges in CONTENTS. We mark unavailable ranges,
344 rather than available, since the common and default case is for a
345 value to be available. This is filled in at value read time.
346 The unavailable ranges are tracked in bits. Note that a contents
347 bit that has been optimized out doesn't really exist in the
348 program, so it can't be marked unavailable either. */
349 std::vector<range> unavailable;
351 /* Likewise, but for optimized out contents (a chunk of the value of
352 a variable that does not actually exist in the program). If LVAL
353 is lval_register, this is a register ($pc, $sp, etc., never a
354 program variable) that has not been saved in the frame. Not
355 saved registers and optimized-out program variables values are
356 treated pretty much the same, except not-saved registers have a
357 different string representation and related error strings. */
358 std::vector<range> optimized_out;
361 /* See value.h. */
363 struct gdbarch *
364 get_value_arch (const struct value *value)
366 return value_type (value)->arch ();
370 value_bits_available (const struct value *value, LONGEST offset, LONGEST length)
372 gdb_assert (!value->lazy);
374 return !ranges_contain (value->unavailable, offset, length);
378 value_bytes_available (const struct value *value,
379 LONGEST offset, LONGEST length)
381 return value_bits_available (value,
382 offset * TARGET_CHAR_BIT,
383 length * TARGET_CHAR_BIT);
387 value_bits_any_optimized_out (const struct value *value, int bit_offset, int bit_length)
389 gdb_assert (!value->lazy);
391 return ranges_contain (value->optimized_out, bit_offset, bit_length);
395 value_entirely_available (struct value *value)
397 /* We can only tell whether the whole value is available when we try
398 to read it. */
399 if (value->lazy)
400 value_fetch_lazy (value);
402 if (value->unavailable.empty ())
403 return 1;
404 return 0;
407 /* Returns true if VALUE is entirely covered by RANGES. If the value
408 is lazy, it'll be read now. Note that RANGE is a pointer to
409 pointer because reading the value might change *RANGE. */
411 static int
412 value_entirely_covered_by_range_vector (struct value *value,
413 const std::vector<range> &ranges)
415 /* We can only tell whether the whole value is optimized out /
416 unavailable when we try to read it. */
417 if (value->lazy)
418 value_fetch_lazy (value);
420 if (ranges.size () == 1)
422 const struct range &t = ranges[0];
424 if (t.offset == 0
425 && t.length == (TARGET_CHAR_BIT
426 * TYPE_LENGTH (value_enclosing_type (value))))
427 return 1;
430 return 0;
434 value_entirely_unavailable (struct value *value)
436 return value_entirely_covered_by_range_vector (value, value->unavailable);
440 value_entirely_optimized_out (struct value *value)
442 return value_entirely_covered_by_range_vector (value, value->optimized_out);
445 /* Insert into the vector pointed to by VECTORP the bit range starting of
446 OFFSET bits, and extending for the next LENGTH bits. */
448 static void
449 insert_into_bit_range_vector (std::vector<range> *vectorp,
450 LONGEST offset, LONGEST length)
452 range newr;
454 /* Insert the range sorted. If there's overlap or the new range
455 would be contiguous with an existing range, merge. */
457 newr.offset = offset;
458 newr.length = length;
460 /* Do a binary search for the position the given range would be
461 inserted if we only considered the starting OFFSET of ranges.
462 Call that position I. Since we also have LENGTH to care for
463 (this is a range afterall), we need to check if the _previous_
464 range overlaps the I range. E.g., calling R the new range:
466 #1 - overlaps with previous
469 |-...-|
470 |---| |---| |------| ... |--|
471 0 1 2 N
475 In the case #1 above, the binary search would return `I=1',
476 meaning, this OFFSET should be inserted at position 1, and the
477 current position 1 should be pushed further (and become 2). But,
478 note that `0' overlaps with R, so we want to merge them.
480 A similar consideration needs to be taken if the new range would
481 be contiguous with the previous range:
483 #2 - contiguous with previous
486 |-...-|
487 |--| |---| |------| ... |--|
488 0 1 2 N
492 If there's no overlap with the previous range, as in:
494 #3 - not overlapping and not contiguous
497 |-...-|
498 |--| |---| |------| ... |--|
499 0 1 2 N
503 or if I is 0:
505 #4 - R is the range with lowest offset
508 |-...-|
509 |--| |---| |------| ... |--|
510 0 1 2 N
514 ... we just push the new range to I.
516 All the 4 cases above need to consider that the new range may
517 also overlap several of the ranges that follow, or that R may be
518 contiguous with the following range, and merge. E.g.,
520 #5 - overlapping following ranges
523 |------------------------|
524 |--| |---| |------| ... |--|
525 0 1 2 N
532 |-------|
533 |--| |---| |------| ... |--|
534 0 1 2 N
540 auto i = std::lower_bound (vectorp->begin (), vectorp->end (), newr);
541 if (i > vectorp->begin ())
543 struct range &bef = *(i - 1);
545 if (ranges_overlap (bef.offset, bef.length, offset, length))
547 /* #1 */
548 ULONGEST l = std::min (bef.offset, offset);
549 ULONGEST h = std::max (bef.offset + bef.length, offset + length);
551 bef.offset = l;
552 bef.length = h - l;
553 i--;
555 else if (offset == bef.offset + bef.length)
557 /* #2 */
558 bef.length += length;
559 i--;
561 else
563 /* #3 */
564 i = vectorp->insert (i, newr);
567 else
569 /* #4 */
570 i = vectorp->insert (i, newr);
573 /* Check whether the ranges following the one we've just added or
574 touched can be folded in (#5 above). */
575 if (i != vectorp->end () && i + 1 < vectorp->end ())
577 int removed = 0;
578 auto next = i + 1;
580 /* Get the range we just touched. */
581 struct range &t = *i;
582 removed = 0;
584 i = next;
585 for (; i < vectorp->end (); i++)
587 struct range &r = *i;
588 if (r.offset <= t.offset + t.length)
590 ULONGEST l, h;
592 l = std::min (t.offset, r.offset);
593 h = std::max (t.offset + t.length, r.offset + r.length);
595 t.offset = l;
596 t.length = h - l;
598 removed++;
600 else
602 /* If we couldn't merge this one, we won't be able to
603 merge following ones either, since the ranges are
604 always sorted by OFFSET. */
605 break;
609 if (removed != 0)
610 vectorp->erase (next, next + removed);
614 void
615 mark_value_bits_unavailable (struct value *value,
616 LONGEST offset, LONGEST length)
618 insert_into_bit_range_vector (&value->unavailable, offset, length);
621 void
622 mark_value_bytes_unavailable (struct value *value,
623 LONGEST offset, LONGEST length)
625 mark_value_bits_unavailable (value,
626 offset * TARGET_CHAR_BIT,
627 length * TARGET_CHAR_BIT);
630 /* Find the first range in RANGES that overlaps the range defined by
631 OFFSET and LENGTH, starting at element POS in the RANGES vector,
632 Returns the index into RANGES where such overlapping range was
633 found, or -1 if none was found. */
635 static int
636 find_first_range_overlap (const std::vector<range> *ranges, int pos,
637 LONGEST offset, LONGEST length)
639 int i;
641 for (i = pos; i < ranges->size (); i++)
643 const range &r = (*ranges)[i];
644 if (ranges_overlap (r.offset, r.length, offset, length))
645 return i;
648 return -1;
651 /* Compare LENGTH_BITS of memory at PTR1 + OFFSET1_BITS with the memory at
652 PTR2 + OFFSET2_BITS. Return 0 if the memory is the same, otherwise
653 return non-zero.
655 It must always be the case that:
656 OFFSET1_BITS % TARGET_CHAR_BIT == OFFSET2_BITS % TARGET_CHAR_BIT
658 It is assumed that memory can be accessed from:
659 PTR + (OFFSET_BITS / TARGET_CHAR_BIT)
661 PTR + ((OFFSET_BITS + LENGTH_BITS + TARGET_CHAR_BIT - 1)
662 / TARGET_CHAR_BIT) */
663 static int
664 memcmp_with_bit_offsets (const gdb_byte *ptr1, size_t offset1_bits,
665 const gdb_byte *ptr2, size_t offset2_bits,
666 size_t length_bits)
668 gdb_assert (offset1_bits % TARGET_CHAR_BIT
669 == offset2_bits % TARGET_CHAR_BIT);
671 if (offset1_bits % TARGET_CHAR_BIT != 0)
673 size_t bits;
674 gdb_byte mask, b1, b2;
676 /* The offset from the base pointers PTR1 and PTR2 is not a complete
677 number of bytes. A number of bits up to either the next exact
678 byte boundary, or LENGTH_BITS (which ever is sooner) will be
679 compared. */
680 bits = TARGET_CHAR_BIT - offset1_bits % TARGET_CHAR_BIT;
681 gdb_assert (bits < sizeof (mask) * TARGET_CHAR_BIT);
682 mask = (1 << bits) - 1;
684 if (length_bits < bits)
686 mask &= ~(gdb_byte) ((1 << (bits - length_bits)) - 1);
687 bits = length_bits;
690 /* Now load the two bytes and mask off the bits we care about. */
691 b1 = *(ptr1 + offset1_bits / TARGET_CHAR_BIT) & mask;
692 b2 = *(ptr2 + offset2_bits / TARGET_CHAR_BIT) & mask;
694 if (b1 != b2)
695 return 1;
697 /* Now update the length and offsets to take account of the bits
698 we've just compared. */
699 length_bits -= bits;
700 offset1_bits += bits;
701 offset2_bits += bits;
704 if (length_bits % TARGET_CHAR_BIT != 0)
706 size_t bits;
707 size_t o1, o2;
708 gdb_byte mask, b1, b2;
710 /* The length is not an exact number of bytes. After the previous
711 IF.. block then the offsets are byte aligned, or the
712 length is zero (in which case this code is not reached). Compare
713 a number of bits at the end of the region, starting from an exact
714 byte boundary. */
715 bits = length_bits % TARGET_CHAR_BIT;
716 o1 = offset1_bits + length_bits - bits;
717 o2 = offset2_bits + length_bits - bits;
719 gdb_assert (bits < sizeof (mask) * TARGET_CHAR_BIT);
720 mask = ((1 << bits) - 1) << (TARGET_CHAR_BIT - bits);
722 gdb_assert (o1 % TARGET_CHAR_BIT == 0);
723 gdb_assert (o2 % TARGET_CHAR_BIT == 0);
725 b1 = *(ptr1 + o1 / TARGET_CHAR_BIT) & mask;
726 b2 = *(ptr2 + o2 / TARGET_CHAR_BIT) & mask;
728 if (b1 != b2)
729 return 1;
731 length_bits -= bits;
734 if (length_bits > 0)
736 /* We've now taken care of any stray "bits" at the start, or end of
737 the region to compare, the remainder can be covered with a simple
738 memcmp. */
739 gdb_assert (offset1_bits % TARGET_CHAR_BIT == 0);
740 gdb_assert (offset2_bits % TARGET_CHAR_BIT == 0);
741 gdb_assert (length_bits % TARGET_CHAR_BIT == 0);
743 return memcmp (ptr1 + offset1_bits / TARGET_CHAR_BIT,
744 ptr2 + offset2_bits / TARGET_CHAR_BIT,
745 length_bits / TARGET_CHAR_BIT);
748 /* Length is zero, regions match. */
749 return 0;
752 /* Helper struct for find_first_range_overlap_and_match and
753 value_contents_bits_eq. Keep track of which slot of a given ranges
754 vector have we last looked at. */
756 struct ranges_and_idx
758 /* The ranges. */
759 const std::vector<range> *ranges;
761 /* The range we've last found in RANGES. Given ranges are sorted,
762 we can start the next lookup here. */
763 int idx;
766 /* Helper function for value_contents_bits_eq. Compare LENGTH bits of
767 RP1's ranges starting at OFFSET1 bits with LENGTH bits of RP2's
768 ranges starting at OFFSET2 bits. Return true if the ranges match
769 and fill in *L and *H with the overlapping window relative to
770 (both) OFFSET1 or OFFSET2. */
772 static int
773 find_first_range_overlap_and_match (struct ranges_and_idx *rp1,
774 struct ranges_and_idx *rp2,
775 LONGEST offset1, LONGEST offset2,
776 LONGEST length, ULONGEST *l, ULONGEST *h)
778 rp1->idx = find_first_range_overlap (rp1->ranges, rp1->idx,
779 offset1, length);
780 rp2->idx = find_first_range_overlap (rp2->ranges, rp2->idx,
781 offset2, length);
783 if (rp1->idx == -1 && rp2->idx == -1)
785 *l = length;
786 *h = length;
787 return 1;
789 else if (rp1->idx == -1 || rp2->idx == -1)
790 return 0;
791 else
793 const range *r1, *r2;
794 ULONGEST l1, h1;
795 ULONGEST l2, h2;
797 r1 = &(*rp1->ranges)[rp1->idx];
798 r2 = &(*rp2->ranges)[rp2->idx];
800 /* Get the unavailable windows intersected by the incoming
801 ranges. The first and last ranges that overlap the argument
802 range may be wider than said incoming arguments ranges. */
803 l1 = std::max (offset1, r1->offset);
804 h1 = std::min (offset1 + length, r1->offset + r1->length);
806 l2 = std::max (offset2, r2->offset);
807 h2 = std::min (offset2 + length, offset2 + r2->length);
809 /* Make them relative to the respective start offsets, so we can
810 compare them for equality. */
811 l1 -= offset1;
812 h1 -= offset1;
814 l2 -= offset2;
815 h2 -= offset2;
817 /* Different ranges, no match. */
818 if (l1 != l2 || h1 != h2)
819 return 0;
821 *h = h1;
822 *l = l1;
823 return 1;
827 /* Helper function for value_contents_eq. The only difference is that
828 this function is bit rather than byte based.
830 Compare LENGTH bits of VAL1's contents starting at OFFSET1 bits
831 with LENGTH bits of VAL2's contents starting at OFFSET2 bits.
832 Return true if the available bits match. */
834 static bool
835 value_contents_bits_eq (const struct value *val1, int offset1,
836 const struct value *val2, int offset2,
837 int length)
839 /* Each array element corresponds to a ranges source (unavailable,
840 optimized out). '1' is for VAL1, '2' for VAL2. */
841 struct ranges_and_idx rp1[2], rp2[2];
843 /* See function description in value.h. */
844 gdb_assert (!val1->lazy && !val2->lazy);
846 /* We shouldn't be trying to compare past the end of the values. */
847 gdb_assert (offset1 + length
848 <= TYPE_LENGTH (val1->enclosing_type) * TARGET_CHAR_BIT);
849 gdb_assert (offset2 + length
850 <= TYPE_LENGTH (val2->enclosing_type) * TARGET_CHAR_BIT);
852 memset (&rp1, 0, sizeof (rp1));
853 memset (&rp2, 0, sizeof (rp2));
854 rp1[0].ranges = &val1->unavailable;
855 rp2[0].ranges = &val2->unavailable;
856 rp1[1].ranges = &val1->optimized_out;
857 rp2[1].ranges = &val2->optimized_out;
859 while (length > 0)
861 ULONGEST l = 0, h = 0; /* init for gcc -Wall */
862 int i;
864 for (i = 0; i < 2; i++)
866 ULONGEST l_tmp, h_tmp;
868 /* The contents only match equal if the invalid/unavailable
869 contents ranges match as well. */
870 if (!find_first_range_overlap_and_match (&rp1[i], &rp2[i],
871 offset1, offset2, length,
872 &l_tmp, &h_tmp))
873 return false;
875 /* We're interested in the lowest/first range found. */
876 if (i == 0 || l_tmp < l)
878 l = l_tmp;
879 h = h_tmp;
883 /* Compare the available/valid contents. */
884 if (memcmp_with_bit_offsets (val1->contents.get (), offset1,
885 val2->contents.get (), offset2, l) != 0)
886 return false;
888 length -= h;
889 offset1 += h;
890 offset2 += h;
893 return true;
896 bool
897 value_contents_eq (const struct value *val1, LONGEST offset1,
898 const struct value *val2, LONGEST offset2,
899 LONGEST length)
901 return value_contents_bits_eq (val1, offset1 * TARGET_CHAR_BIT,
902 val2, offset2 * TARGET_CHAR_BIT,
903 length * TARGET_CHAR_BIT);
907 /* The value-history records all the values printed by print commands
908 during this session. */
910 static std::vector<value_ref_ptr> value_history;
913 /* List of all value objects currently allocated
914 (except for those released by calls to release_value)
915 This is so they can be freed after each command. */
917 static std::vector<value_ref_ptr> all_values;
919 /* Allocate a lazy value for type TYPE. Its actual content is
920 "lazily" allocated too: the content field of the return value is
921 NULL; it will be allocated when it is fetched from the target. */
923 struct value *
924 allocate_value_lazy (struct type *type)
926 struct value *val;
928 /* Call check_typedef on our type to make sure that, if TYPE
929 is a TYPE_CODE_TYPEDEF, its length is set to the length
930 of the target type instead of zero. However, we do not
931 replace the typedef type by the target type, because we want
932 to keep the typedef in order to be able to set the VAL's type
933 description correctly. */
934 check_typedef (type);
936 val = new struct value (type);
938 /* Values start out on the all_values chain. */
939 all_values.emplace_back (val);
941 return val;
944 /* The maximum size, in bytes, that GDB will try to allocate for a value.
945 The initial value of 64k was not selected for any specific reason, it is
946 just a reasonable starting point. */
948 static int max_value_size = 65536; /* 64k bytes */
950 /* It is critical that the MAX_VALUE_SIZE is at least as big as the size of
951 LONGEST, otherwise GDB will not be able to parse integer values from the
952 CLI; for example if the MAX_VALUE_SIZE could be set to 1 then GDB would
953 be unable to parse "set max-value-size 2".
955 As we want a consistent GDB experience across hosts with different sizes
956 of LONGEST, this arbitrary minimum value was selected, so long as this
957 is bigger than LONGEST on all GDB supported hosts we're fine. */
959 #define MIN_VALUE_FOR_MAX_VALUE_SIZE 16
960 gdb_static_assert (sizeof (LONGEST) <= MIN_VALUE_FOR_MAX_VALUE_SIZE);
962 /* Implement the "set max-value-size" command. */
964 static void
965 set_max_value_size (const char *args, int from_tty,
966 struct cmd_list_element *c)
968 gdb_assert (max_value_size == -1 || max_value_size >= 0);
970 if (max_value_size > -1 && max_value_size < MIN_VALUE_FOR_MAX_VALUE_SIZE)
972 max_value_size = MIN_VALUE_FOR_MAX_VALUE_SIZE;
973 error (_("max-value-size set too low, increasing to %d bytes"),
974 max_value_size);
978 /* Implement the "show max-value-size" command. */
980 static void
981 show_max_value_size (struct ui_file *file, int from_tty,
982 struct cmd_list_element *c, const char *value)
984 if (max_value_size == -1)
985 fprintf_filtered (file, _("Maximum value size is unlimited.\n"));
986 else
987 fprintf_filtered (file, _("Maximum value size is %d bytes.\n"),
988 max_value_size);
991 /* Called before we attempt to allocate or reallocate a buffer for the
992 contents of a value. TYPE is the type of the value for which we are
993 allocating the buffer. If the buffer is too large (based on the user
994 controllable setting) then throw an error. If this function returns
995 then we should attempt to allocate the buffer. */
997 static void
998 check_type_length_before_alloc (const struct type *type)
1000 ULONGEST length = TYPE_LENGTH (type);
1002 if (max_value_size > -1 && length > max_value_size)
1004 if (type->name () != NULL)
1005 error (_("value of type `%s' requires %s bytes, which is more "
1006 "than max-value-size"), type->name (), pulongest (length));
1007 else
1008 error (_("value requires %s bytes, which is more than "
1009 "max-value-size"), pulongest (length));
1013 /* Allocate the contents of VAL if it has not been allocated yet. */
1015 static void
1016 allocate_value_contents (struct value *val)
1018 if (!val->contents)
1020 check_type_length_before_alloc (val->enclosing_type);
1021 val->contents.reset
1022 ((gdb_byte *) xzalloc (TYPE_LENGTH (val->enclosing_type)));
1026 /* Allocate a value and its contents for type TYPE. */
1028 struct value *
1029 allocate_value (struct type *type)
1031 struct value *val = allocate_value_lazy (type);
1033 allocate_value_contents (val);
1034 val->lazy = 0;
1035 return val;
1038 /* Allocate a value that has the correct length
1039 for COUNT repetitions of type TYPE. */
1041 struct value *
1042 allocate_repeat_value (struct type *type, int count)
1044 /* Despite the fact that we are really creating an array of TYPE here, we
1045 use the string lower bound as the array lower bound. This seems to
1046 work fine for now. */
1047 int low_bound = current_language->string_lower_bound ();
1048 /* FIXME-type-allocation: need a way to free this type when we are
1049 done with it. */
1050 struct type *array_type
1051 = lookup_array_range_type (type, low_bound, count + low_bound - 1);
1053 return allocate_value (array_type);
1056 struct value *
1057 allocate_computed_value (struct type *type,
1058 const struct lval_funcs *funcs,
1059 void *closure)
1061 struct value *v = allocate_value_lazy (type);
1063 VALUE_LVAL (v) = lval_computed;
1064 v->location.computed.funcs = funcs;
1065 v->location.computed.closure = closure;
1067 return v;
1070 /* Allocate NOT_LVAL value for type TYPE being OPTIMIZED_OUT. */
1072 struct value *
1073 allocate_optimized_out_value (struct type *type)
1075 struct value *retval = allocate_value_lazy (type);
1077 mark_value_bytes_optimized_out (retval, 0, TYPE_LENGTH (type));
1078 set_value_lazy (retval, 0);
1079 return retval;
1082 /* Accessor methods. */
1084 struct type *
1085 value_type (const struct value *value)
1087 return value->type;
1089 void
1090 deprecated_set_value_type (struct value *value, struct type *type)
1092 value->type = type;
1095 LONGEST
1096 value_offset (const struct value *value)
1098 return value->offset;
1100 void
1101 set_value_offset (struct value *value, LONGEST offset)
1103 value->offset = offset;
1106 LONGEST
1107 value_bitpos (const struct value *value)
1109 return value->bitpos;
1111 void
1112 set_value_bitpos (struct value *value, LONGEST bit)
1114 value->bitpos = bit;
1117 LONGEST
1118 value_bitsize (const struct value *value)
1120 return value->bitsize;
1122 void
1123 set_value_bitsize (struct value *value, LONGEST bit)
1125 value->bitsize = bit;
1128 struct value *
1129 value_parent (const struct value *value)
1131 return value->parent.get ();
1134 /* See value.h. */
1136 void
1137 set_value_parent (struct value *value, struct value *parent)
1139 value->parent = value_ref_ptr::new_reference (parent);
1142 gdb_byte *
1143 value_contents_raw (struct value *value)
1145 struct gdbarch *arch = get_value_arch (value);
1146 int unit_size = gdbarch_addressable_memory_unit_size (arch);
1148 allocate_value_contents (value);
1149 return value->contents.get () + value->embedded_offset * unit_size;
1152 gdb_byte *
1153 value_contents_all_raw (struct value *value)
1155 allocate_value_contents (value);
1156 return value->contents.get ();
1159 struct type *
1160 value_enclosing_type (const struct value *value)
1162 return value->enclosing_type;
1165 /* Look at value.h for description. */
1167 struct type *
1168 value_actual_type (struct value *value, int resolve_simple_types,
1169 int *real_type_found)
1171 struct value_print_options opts;
1172 struct type *result;
1174 get_user_print_options (&opts);
1176 if (real_type_found)
1177 *real_type_found = 0;
1178 result = value_type (value);
1179 if (opts.objectprint)
1181 /* If result's target type is TYPE_CODE_STRUCT, proceed to
1182 fetch its rtti type. */
1183 if ((result->code () == TYPE_CODE_PTR || TYPE_IS_REFERENCE (result))
1184 && (check_typedef (TYPE_TARGET_TYPE (result))->code ()
1185 == TYPE_CODE_STRUCT)
1186 && !value_optimized_out (value))
1188 struct type *real_type;
1190 real_type = value_rtti_indirect_type (value, NULL, NULL, NULL);
1191 if (real_type)
1193 if (real_type_found)
1194 *real_type_found = 1;
1195 result = real_type;
1198 else if (resolve_simple_types)
1200 if (real_type_found)
1201 *real_type_found = 1;
1202 result = value_enclosing_type (value);
1206 return result;
1209 void
1210 error_value_optimized_out (void)
1212 error (_("value has been optimized out"));
1215 static void
1216 require_not_optimized_out (const struct value *value)
1218 if (!value->optimized_out.empty ())
1220 if (value->lval == lval_register)
1221 error (_("register has not been saved in frame"));
1222 else
1223 error_value_optimized_out ();
1227 static void
1228 require_available (const struct value *value)
1230 if (!value->unavailable.empty ())
1231 throw_error (NOT_AVAILABLE_ERROR, _("value is not available"));
1234 const gdb_byte *
1235 value_contents_for_printing (struct value *value)
1237 if (value->lazy)
1238 value_fetch_lazy (value);
1239 return value->contents.get ();
1242 const gdb_byte *
1243 value_contents_for_printing_const (const struct value *value)
1245 gdb_assert (!value->lazy);
1246 return value->contents.get ();
1249 const gdb_byte *
1250 value_contents_all (struct value *value)
1252 const gdb_byte *result = value_contents_for_printing (value);
1253 require_not_optimized_out (value);
1254 require_available (value);
1255 return result;
1258 /* Copy ranges in SRC_RANGE that overlap [SRC_BIT_OFFSET,
1259 SRC_BIT_OFFSET+BIT_LENGTH) ranges into *DST_RANGE, adjusted. */
1261 static void
1262 ranges_copy_adjusted (std::vector<range> *dst_range, int dst_bit_offset,
1263 const std::vector<range> &src_range, int src_bit_offset,
1264 int bit_length)
1266 for (const range &r : src_range)
1268 ULONGEST h, l;
1270 l = std::max (r.offset, (LONGEST) src_bit_offset);
1271 h = std::min (r.offset + r.length,
1272 (LONGEST) src_bit_offset + bit_length);
1274 if (l < h)
1275 insert_into_bit_range_vector (dst_range,
1276 dst_bit_offset + (l - src_bit_offset),
1277 h - l);
1281 /* Copy the ranges metadata in SRC that overlaps [SRC_BIT_OFFSET,
1282 SRC_BIT_OFFSET+BIT_LENGTH) into DST, adjusted. */
1284 static void
1285 value_ranges_copy_adjusted (struct value *dst, int dst_bit_offset,
1286 const struct value *src, int src_bit_offset,
1287 int bit_length)
1289 ranges_copy_adjusted (&dst->unavailable, dst_bit_offset,
1290 src->unavailable, src_bit_offset,
1291 bit_length);
1292 ranges_copy_adjusted (&dst->optimized_out, dst_bit_offset,
1293 src->optimized_out, src_bit_offset,
1294 bit_length);
1297 /* Copy LENGTH target addressable memory units of SRC value's (all) contents
1298 (value_contents_all) starting at SRC_OFFSET, into DST value's (all)
1299 contents, starting at DST_OFFSET. If unavailable contents are
1300 being copied from SRC, the corresponding DST contents are marked
1301 unavailable accordingly. Neither DST nor SRC may be lazy
1302 values.
1304 It is assumed the contents of DST in the [DST_OFFSET,
1305 DST_OFFSET+LENGTH) range are wholly available. */
1307 static void
1308 value_contents_copy_raw (struct value *dst, LONGEST dst_offset,
1309 struct value *src, LONGEST src_offset, LONGEST length)
1311 LONGEST src_bit_offset, dst_bit_offset, bit_length;
1312 struct gdbarch *arch = get_value_arch (src);
1313 int unit_size = gdbarch_addressable_memory_unit_size (arch);
1315 /* A lazy DST would make that this copy operation useless, since as
1316 soon as DST's contents were un-lazied (by a later value_contents
1317 call, say), the contents would be overwritten. A lazy SRC would
1318 mean we'd be copying garbage. */
1319 gdb_assert (!dst->lazy && !src->lazy);
1321 /* The overwritten DST range gets unavailability ORed in, not
1322 replaced. Make sure to remember to implement replacing if it
1323 turns out actually necessary. */
1324 gdb_assert (value_bytes_available (dst, dst_offset, length));
1325 gdb_assert (!value_bits_any_optimized_out (dst,
1326 TARGET_CHAR_BIT * dst_offset,
1327 TARGET_CHAR_BIT * length));
1329 /* Copy the data. */
1330 memcpy (value_contents_all_raw (dst) + dst_offset * unit_size,
1331 value_contents_all_raw (src) + src_offset * unit_size,
1332 length * unit_size);
1334 /* Copy the meta-data, adjusted. */
1335 src_bit_offset = src_offset * unit_size * HOST_CHAR_BIT;
1336 dst_bit_offset = dst_offset * unit_size * HOST_CHAR_BIT;
1337 bit_length = length * unit_size * HOST_CHAR_BIT;
1339 value_ranges_copy_adjusted (dst, dst_bit_offset,
1340 src, src_bit_offset,
1341 bit_length);
1344 /* Copy LENGTH bytes of SRC value's (all) contents
1345 (value_contents_all) starting at SRC_OFFSET byte, into DST value's
1346 (all) contents, starting at DST_OFFSET. If unavailable contents
1347 are being copied from SRC, the corresponding DST contents are
1348 marked unavailable accordingly. DST must not be lazy. If SRC is
1349 lazy, it will be fetched now.
1351 It is assumed the contents of DST in the [DST_OFFSET,
1352 DST_OFFSET+LENGTH) range are wholly available. */
1354 void
1355 value_contents_copy (struct value *dst, LONGEST dst_offset,
1356 struct value *src, LONGEST src_offset, LONGEST length)
1358 if (src->lazy)
1359 value_fetch_lazy (src);
1361 value_contents_copy_raw (dst, dst_offset, src, src_offset, length);
1365 value_lazy (const struct value *value)
1367 return value->lazy;
1370 void
1371 set_value_lazy (struct value *value, int val)
1373 value->lazy = val;
1377 value_stack (const struct value *value)
1379 return value->stack;
1382 void
1383 set_value_stack (struct value *value, int val)
1385 value->stack = val;
1388 const gdb_byte *
1389 value_contents (struct value *value)
1391 const gdb_byte *result = value_contents_writeable (value);
1392 require_not_optimized_out (value);
1393 require_available (value);
1394 return result;
1397 gdb_byte *
1398 value_contents_writeable (struct value *value)
1400 if (value->lazy)
1401 value_fetch_lazy (value);
1402 return value_contents_raw (value);
1406 value_optimized_out (struct value *value)
1408 /* We can only know if a value is optimized out once we have tried to
1409 fetch it. */
1410 if (value->optimized_out.empty () && value->lazy)
1414 value_fetch_lazy (value);
1416 catch (const gdb_exception_error &ex)
1418 switch (ex.error)
1420 case MEMORY_ERROR:
1421 case OPTIMIZED_OUT_ERROR:
1422 case NOT_AVAILABLE_ERROR:
1423 /* These can normally happen when we try to access an
1424 optimized out or unavailable register, either in a
1425 physical register or spilled to memory. */
1426 break;
1427 default:
1428 throw;
1433 return !value->optimized_out.empty ();
1436 /* Mark contents of VALUE as optimized out, starting at OFFSET bytes, and
1437 the following LENGTH bytes. */
1439 void
1440 mark_value_bytes_optimized_out (struct value *value, int offset, int length)
1442 mark_value_bits_optimized_out (value,
1443 offset * TARGET_CHAR_BIT,
1444 length * TARGET_CHAR_BIT);
1447 /* See value.h. */
1449 void
1450 mark_value_bits_optimized_out (struct value *value,
1451 LONGEST offset, LONGEST length)
1453 insert_into_bit_range_vector (&value->optimized_out, offset, length);
1457 value_bits_synthetic_pointer (const struct value *value,
1458 LONGEST offset, LONGEST length)
1460 if (value->lval != lval_computed
1461 || !value->location.computed.funcs->check_synthetic_pointer)
1462 return 0;
1463 return value->location.computed.funcs->check_synthetic_pointer (value,
1464 offset,
1465 length);
1468 LONGEST
1469 value_embedded_offset (const struct value *value)
1471 return value->embedded_offset;
1474 void
1475 set_value_embedded_offset (struct value *value, LONGEST val)
1477 value->embedded_offset = val;
1480 LONGEST
1481 value_pointed_to_offset (const struct value *value)
1483 return value->pointed_to_offset;
1486 void
1487 set_value_pointed_to_offset (struct value *value, LONGEST val)
1489 value->pointed_to_offset = val;
1492 const struct lval_funcs *
1493 value_computed_funcs (const struct value *v)
1495 gdb_assert (value_lval_const (v) == lval_computed);
1497 return v->location.computed.funcs;
1500 void *
1501 value_computed_closure (const struct value *v)
1503 gdb_assert (v->lval == lval_computed);
1505 return v->location.computed.closure;
1508 enum lval_type *
1509 deprecated_value_lval_hack (struct value *value)
1511 return &value->lval;
1514 enum lval_type
1515 value_lval_const (const struct value *value)
1517 return value->lval;
1520 CORE_ADDR
1521 value_address (const struct value *value)
1523 if (value->lval != lval_memory)
1524 return 0;
1525 if (value->parent != NULL)
1526 return value_address (value->parent.get ()) + value->offset;
1527 if (NULL != TYPE_DATA_LOCATION (value_type (value)))
1529 gdb_assert (PROP_CONST == TYPE_DATA_LOCATION_KIND (value_type (value)));
1530 return TYPE_DATA_LOCATION_ADDR (value_type (value));
1533 return value->location.address + value->offset;
1536 CORE_ADDR
1537 value_raw_address (const struct value *value)
1539 if (value->lval != lval_memory)
1540 return 0;
1541 return value->location.address;
1544 void
1545 set_value_address (struct value *value, CORE_ADDR addr)
1547 gdb_assert (value->lval == lval_memory);
1548 value->location.address = addr;
1551 struct internalvar **
1552 deprecated_value_internalvar_hack (struct value *value)
1554 return &value->location.internalvar;
1557 struct frame_id *
1558 deprecated_value_next_frame_id_hack (struct value *value)
1560 gdb_assert (value->lval == lval_register);
1561 return &value->location.reg.next_frame_id;
1564 int *
1565 deprecated_value_regnum_hack (struct value *value)
1567 gdb_assert (value->lval == lval_register);
1568 return &value->location.reg.regnum;
1572 deprecated_value_modifiable (const struct value *value)
1574 return value->modifiable;
1577 /* Return a mark in the value chain. All values allocated after the
1578 mark is obtained (except for those released) are subject to being freed
1579 if a subsequent value_free_to_mark is passed the mark. */
1580 struct value *
1581 value_mark (void)
1583 if (all_values.empty ())
1584 return nullptr;
1585 return all_values.back ().get ();
1588 /* See value.h. */
1590 void
1591 value_incref (struct value *val)
1593 val->reference_count++;
1596 /* Release a reference to VAL, which was acquired with value_incref.
1597 This function is also called to deallocate values from the value
1598 chain. */
1600 void
1601 value_decref (struct value *val)
1603 if (val != nullptr)
1605 gdb_assert (val->reference_count > 0);
1606 val->reference_count--;
1607 if (val->reference_count == 0)
1608 delete val;
1612 /* Free all values allocated since MARK was obtained by value_mark
1613 (except for those released). */
1614 void
1615 value_free_to_mark (const struct value *mark)
1617 auto iter = std::find (all_values.begin (), all_values.end (), mark);
1618 if (iter == all_values.end ())
1619 all_values.clear ();
1620 else
1621 all_values.erase (iter + 1, all_values.end ());
1624 /* Remove VAL from the chain all_values
1625 so it will not be freed automatically. */
1627 value_ref_ptr
1628 release_value (struct value *val)
1630 if (val == nullptr)
1631 return value_ref_ptr ();
1633 std::vector<value_ref_ptr>::reverse_iterator iter;
1634 for (iter = all_values.rbegin (); iter != all_values.rend (); ++iter)
1636 if (*iter == val)
1638 value_ref_ptr result = *iter;
1639 all_values.erase (iter.base () - 1);
1640 return result;
1644 /* We must always return an owned reference. Normally this happens
1645 because we transfer the reference from the value chain, but in
1646 this case the value was not on the chain. */
1647 return value_ref_ptr::new_reference (val);
1650 /* See value.h. */
1652 std::vector<value_ref_ptr>
1653 value_release_to_mark (const struct value *mark)
1655 std::vector<value_ref_ptr> result;
1657 auto iter = std::find (all_values.begin (), all_values.end (), mark);
1658 if (iter == all_values.end ())
1659 std::swap (result, all_values);
1660 else
1662 std::move (iter + 1, all_values.end (), std::back_inserter (result));
1663 all_values.erase (iter + 1, all_values.end ());
1665 std::reverse (result.begin (), result.end ());
1666 return result;
1669 /* Return a copy of the value ARG.
1670 It contains the same contents, for same memory address,
1671 but it's a different block of storage. */
1673 struct value *
1674 value_copy (struct value *arg)
1676 struct type *encl_type = value_enclosing_type (arg);
1677 struct value *val;
1679 if (value_lazy (arg))
1680 val = allocate_value_lazy (encl_type);
1681 else
1682 val = allocate_value (encl_type);
1683 val->type = arg->type;
1684 VALUE_LVAL (val) = VALUE_LVAL (arg);
1685 val->location = arg->location;
1686 val->offset = arg->offset;
1687 val->bitpos = arg->bitpos;
1688 val->bitsize = arg->bitsize;
1689 val->lazy = arg->lazy;
1690 val->embedded_offset = value_embedded_offset (arg);
1691 val->pointed_to_offset = arg->pointed_to_offset;
1692 val->modifiable = arg->modifiable;
1693 if (!value_lazy (val))
1695 memcpy (value_contents_all_raw (val), value_contents_all_raw (arg),
1696 TYPE_LENGTH (value_enclosing_type (arg)));
1699 val->unavailable = arg->unavailable;
1700 val->optimized_out = arg->optimized_out;
1701 val->parent = arg->parent;
1702 if (VALUE_LVAL (val) == lval_computed)
1704 const struct lval_funcs *funcs = val->location.computed.funcs;
1706 if (funcs->copy_closure)
1707 val->location.computed.closure = funcs->copy_closure (val);
1709 return val;
1712 /* Return a "const" and/or "volatile" qualified version of the value V.
1713 If CNST is true, then the returned value will be qualified with
1714 "const".
1715 if VOLTL is true, then the returned value will be qualified with
1716 "volatile". */
1718 struct value *
1719 make_cv_value (int cnst, int voltl, struct value *v)
1721 struct type *val_type = value_type (v);
1722 struct type *enclosing_type = value_enclosing_type (v);
1723 struct value *cv_val = value_copy (v);
1725 deprecated_set_value_type (cv_val,
1726 make_cv_type (cnst, voltl, val_type, NULL));
1727 set_value_enclosing_type (cv_val,
1728 make_cv_type (cnst, voltl, enclosing_type, NULL));
1730 return cv_val;
1733 /* Return a version of ARG that is non-lvalue. */
1735 struct value *
1736 value_non_lval (struct value *arg)
1738 if (VALUE_LVAL (arg) != not_lval)
1740 struct type *enc_type = value_enclosing_type (arg);
1741 struct value *val = allocate_value (enc_type);
1743 memcpy (value_contents_all_raw (val), value_contents_all (arg),
1744 TYPE_LENGTH (enc_type));
1745 val->type = arg->type;
1746 set_value_embedded_offset (val, value_embedded_offset (arg));
1747 set_value_pointed_to_offset (val, value_pointed_to_offset (arg));
1748 return val;
1750 return arg;
1753 /* Write contents of V at ADDR and set its lval type to be LVAL_MEMORY. */
1755 void
1756 value_force_lval (struct value *v, CORE_ADDR addr)
1758 gdb_assert (VALUE_LVAL (v) == not_lval);
1760 write_memory (addr, value_contents_raw (v), TYPE_LENGTH (value_type (v)));
1761 v->lval = lval_memory;
1762 v->location.address = addr;
1765 void
1766 set_value_component_location (struct value *component,
1767 const struct value *whole)
1769 struct type *type;
1771 gdb_assert (whole->lval != lval_xcallable);
1773 if (whole->lval == lval_internalvar)
1774 VALUE_LVAL (component) = lval_internalvar_component;
1775 else
1776 VALUE_LVAL (component) = whole->lval;
1778 component->location = whole->location;
1779 if (whole->lval == lval_computed)
1781 const struct lval_funcs *funcs = whole->location.computed.funcs;
1783 if (funcs->copy_closure)
1784 component->location.computed.closure = funcs->copy_closure (whole);
1787 /* If the WHOLE value has a dynamically resolved location property then
1788 update the address of the COMPONENT. */
1789 type = value_type (whole);
1790 if (NULL != TYPE_DATA_LOCATION (type)
1791 && TYPE_DATA_LOCATION_KIND (type) == PROP_CONST)
1792 set_value_address (component, TYPE_DATA_LOCATION_ADDR (type));
1794 /* Similarly, if the COMPONENT value has a dynamically resolved location
1795 property then update its address. */
1796 type = value_type (component);
1797 if (NULL != TYPE_DATA_LOCATION (type)
1798 && TYPE_DATA_LOCATION_KIND (type) == PROP_CONST)
1800 /* If the COMPONENT has a dynamic location, and is an
1801 lval_internalvar_component, then we change it to a lval_memory.
1803 Usually a component of an internalvar is created non-lazy, and has
1804 its content immediately copied from the parent internalvar.
1805 However, for components with a dynamic location, the content of
1806 the component is not contained within the parent, but is instead
1807 accessed indirectly. Further, the component will be created as a
1808 lazy value.
1810 By changing the type of the component to lval_memory we ensure
1811 that value_fetch_lazy can successfully load the component.
1813 This solution isn't ideal, but a real fix would require values to
1814 carry around both the parent value contents, and the contents of
1815 any dynamic fields within the parent. This is a substantial
1816 change to how values work in GDB. */
1817 if (VALUE_LVAL (component) == lval_internalvar_component)
1819 gdb_assert (value_lazy (component));
1820 VALUE_LVAL (component) = lval_memory;
1822 else
1823 gdb_assert (VALUE_LVAL (component) == lval_memory);
1824 set_value_address (component, TYPE_DATA_LOCATION_ADDR (type));
1828 /* Access to the value history. */
1830 /* Record a new value in the value history.
1831 Returns the absolute history index of the entry. */
1834 record_latest_value (struct value *val)
1836 /* We don't want this value to have anything to do with the inferior anymore.
1837 In particular, "set $1 = 50" should not affect the variable from which
1838 the value was taken, and fast watchpoints should be able to assume that
1839 a value on the value history never changes. */
1840 if (value_lazy (val))
1841 value_fetch_lazy (val);
1842 /* We preserve VALUE_LVAL so that the user can find out where it was fetched
1843 from. This is a bit dubious, because then *&$1 does not just return $1
1844 but the current contents of that location. c'est la vie... */
1845 val->modifiable = 0;
1847 value_history.push_back (release_value (val));
1849 return value_history.size ();
1852 /* Return a copy of the value in the history with sequence number NUM. */
1854 struct value *
1855 access_value_history (int num)
1857 int absnum = num;
1859 if (absnum <= 0)
1860 absnum += value_history.size ();
1862 if (absnum <= 0)
1864 if (num == 0)
1865 error (_("The history is empty."));
1866 else if (num == 1)
1867 error (_("There is only one value in the history."));
1868 else
1869 error (_("History does not go back to $$%d."), -num);
1871 if (absnum > value_history.size ())
1872 error (_("History has not yet reached $%d."), absnum);
1874 absnum--;
1876 return value_copy (value_history[absnum].get ());
1879 static void
1880 show_values (const char *num_exp, int from_tty)
1882 int i;
1883 struct value *val;
1884 static int num = 1;
1886 if (num_exp)
1888 /* "show values +" should print from the stored position.
1889 "show values <exp>" should print around value number <exp>. */
1890 if (num_exp[0] != '+' || num_exp[1] != '\0')
1891 num = parse_and_eval_long (num_exp) - 5;
1893 else
1895 /* "show values" means print the last 10 values. */
1896 num = value_history.size () - 9;
1899 if (num <= 0)
1900 num = 1;
1902 for (i = num; i < num + 10 && i <= value_history.size (); i++)
1904 struct value_print_options opts;
1906 val = access_value_history (i);
1907 printf_filtered (("$%d = "), i);
1908 get_user_print_options (&opts);
1909 value_print (val, gdb_stdout, &opts);
1910 printf_filtered (("\n"));
1913 /* The next "show values +" should start after what we just printed. */
1914 num += 10;
1916 /* Hitting just return after this command should do the same thing as
1917 "show values +". If num_exp is null, this is unnecessary, since
1918 "show values +" is not useful after "show values". */
1919 if (from_tty && num_exp)
1920 set_repeat_arguments ("+");
1923 enum internalvar_kind
1925 /* The internal variable is empty. */
1926 INTERNALVAR_VOID,
1928 /* The value of the internal variable is provided directly as
1929 a GDB value object. */
1930 INTERNALVAR_VALUE,
1932 /* A fresh value is computed via a call-back routine on every
1933 access to the internal variable. */
1934 INTERNALVAR_MAKE_VALUE,
1936 /* The internal variable holds a GDB internal convenience function. */
1937 INTERNALVAR_FUNCTION,
1939 /* The variable holds an integer value. */
1940 INTERNALVAR_INTEGER,
1942 /* The variable holds a GDB-provided string. */
1943 INTERNALVAR_STRING,
1946 union internalvar_data
1948 /* A value object used with INTERNALVAR_VALUE. */
1949 struct value *value;
1951 /* The call-back routine used with INTERNALVAR_MAKE_VALUE. */
1952 struct
1954 /* The functions to call. */
1955 const struct internalvar_funcs *functions;
1957 /* The function's user-data. */
1958 void *data;
1959 } make_value;
1961 /* The internal function used with INTERNALVAR_FUNCTION. */
1962 struct
1964 struct internal_function *function;
1965 /* True if this is the canonical name for the function. */
1966 int canonical;
1967 } fn;
1969 /* An integer value used with INTERNALVAR_INTEGER. */
1970 struct
1972 /* If type is non-NULL, it will be used as the type to generate
1973 a value for this internal variable. If type is NULL, a default
1974 integer type for the architecture is used. */
1975 struct type *type;
1976 LONGEST val;
1977 } integer;
1979 /* A string value used with INTERNALVAR_STRING. */
1980 char *string;
1983 /* Internal variables. These are variables within the debugger
1984 that hold values assigned by debugger commands.
1985 The user refers to them with a '$' prefix
1986 that does not appear in the variable names stored internally. */
1988 struct internalvar
1990 struct internalvar *next;
1991 char *name;
1993 /* We support various different kinds of content of an internal variable.
1994 enum internalvar_kind specifies the kind, and union internalvar_data
1995 provides the data associated with this particular kind. */
1997 enum internalvar_kind kind;
1999 union internalvar_data u;
2002 static struct internalvar *internalvars;
2004 /* If the variable does not already exist create it and give it the
2005 value given. If no value is given then the default is zero. */
2006 static void
2007 init_if_undefined_command (const char* args, int from_tty)
2009 struct internalvar* intvar;
2011 /* Parse the expression - this is taken from set_command(). */
2012 expression_up expr = parse_expression (args);
2014 /* Validate the expression.
2015 Was the expression an assignment?
2016 Or even an expression at all? */
2017 if (expr->nelts == 0 || expr->first_opcode () != BINOP_ASSIGN)
2018 error (_("Init-if-undefined requires an assignment expression."));
2020 /* Extract the variable from the parsed expression.
2021 In the case of an assign the lvalue will be in elts[1] and elts[2]. */
2022 if (expr->elts[1].opcode != OP_INTERNALVAR)
2023 error (_("The first parameter to init-if-undefined "
2024 "should be a GDB variable."));
2025 intvar = expr->elts[2].internalvar;
2027 /* Only evaluate the expression if the lvalue is void.
2028 This may still fail if the expression is invalid. */
2029 if (intvar->kind == INTERNALVAR_VOID)
2030 evaluate_expression (expr.get ());
2034 /* Look up an internal variable with name NAME. NAME should not
2035 normally include a dollar sign.
2037 If the specified internal variable does not exist,
2038 the return value is NULL. */
2040 struct internalvar *
2041 lookup_only_internalvar (const char *name)
2043 struct internalvar *var;
2045 for (var = internalvars; var; var = var->next)
2046 if (strcmp (var->name, name) == 0)
2047 return var;
2049 return NULL;
2052 /* Complete NAME by comparing it to the names of internal
2053 variables. */
2055 void
2056 complete_internalvar (completion_tracker &tracker, const char *name)
2058 struct internalvar *var;
2059 int len;
2061 len = strlen (name);
2063 for (var = internalvars; var; var = var->next)
2064 if (strncmp (var->name, name, len) == 0)
2065 tracker.add_completion (make_unique_xstrdup (var->name));
2068 /* Create an internal variable with name NAME and with a void value.
2069 NAME should not normally include a dollar sign. */
2071 struct internalvar *
2072 create_internalvar (const char *name)
2074 struct internalvar *var = XNEW (struct internalvar);
2076 var->name = xstrdup (name);
2077 var->kind = INTERNALVAR_VOID;
2078 var->next = internalvars;
2079 internalvars = var;
2080 return var;
2083 /* Create an internal variable with name NAME and register FUN as the
2084 function that value_of_internalvar uses to create a value whenever
2085 this variable is referenced. NAME should not normally include a
2086 dollar sign. DATA is passed uninterpreted to FUN when it is
2087 called. CLEANUP, if not NULL, is called when the internal variable
2088 is destroyed. It is passed DATA as its only argument. */
2090 struct internalvar *
2091 create_internalvar_type_lazy (const char *name,
2092 const struct internalvar_funcs *funcs,
2093 void *data)
2095 struct internalvar *var = create_internalvar (name);
2097 var->kind = INTERNALVAR_MAKE_VALUE;
2098 var->u.make_value.functions = funcs;
2099 var->u.make_value.data = data;
2100 return var;
2103 /* See documentation in value.h. */
2106 compile_internalvar_to_ax (struct internalvar *var,
2107 struct agent_expr *expr,
2108 struct axs_value *value)
2110 if (var->kind != INTERNALVAR_MAKE_VALUE
2111 || var->u.make_value.functions->compile_to_ax == NULL)
2112 return 0;
2114 var->u.make_value.functions->compile_to_ax (var, expr, value,
2115 var->u.make_value.data);
2116 return 1;
2119 /* Look up an internal variable with name NAME. NAME should not
2120 normally include a dollar sign.
2122 If the specified internal variable does not exist,
2123 one is created, with a void value. */
2125 struct internalvar *
2126 lookup_internalvar (const char *name)
2128 struct internalvar *var;
2130 var = lookup_only_internalvar (name);
2131 if (var)
2132 return var;
2134 return create_internalvar (name);
2137 /* Return current value of internal variable VAR. For variables that
2138 are not inherently typed, use a value type appropriate for GDBARCH. */
2140 struct value *
2141 value_of_internalvar (struct gdbarch *gdbarch, struct internalvar *var)
2143 struct value *val;
2144 struct trace_state_variable *tsv;
2146 /* If there is a trace state variable of the same name, assume that
2147 is what we really want to see. */
2148 tsv = find_trace_state_variable (var->name);
2149 if (tsv)
2151 tsv->value_known = target_get_trace_state_variable_value (tsv->number,
2152 &(tsv->value));
2153 if (tsv->value_known)
2154 val = value_from_longest (builtin_type (gdbarch)->builtin_int64,
2155 tsv->value);
2156 else
2157 val = allocate_value (builtin_type (gdbarch)->builtin_void);
2158 return val;
2161 switch (var->kind)
2163 case INTERNALVAR_VOID:
2164 val = allocate_value (builtin_type (gdbarch)->builtin_void);
2165 break;
2167 case INTERNALVAR_FUNCTION:
2168 val = allocate_value (builtin_type (gdbarch)->internal_fn);
2169 break;
2171 case INTERNALVAR_INTEGER:
2172 if (!var->u.integer.type)
2173 val = value_from_longest (builtin_type (gdbarch)->builtin_int,
2174 var->u.integer.val);
2175 else
2176 val = value_from_longest (var->u.integer.type, var->u.integer.val);
2177 break;
2179 case INTERNALVAR_STRING:
2180 val = value_cstring (var->u.string, strlen (var->u.string),
2181 builtin_type (gdbarch)->builtin_char);
2182 break;
2184 case INTERNALVAR_VALUE:
2185 val = value_copy (var->u.value);
2186 if (value_lazy (val))
2187 value_fetch_lazy (val);
2188 break;
2190 case INTERNALVAR_MAKE_VALUE:
2191 val = (*var->u.make_value.functions->make_value) (gdbarch, var,
2192 var->u.make_value.data);
2193 break;
2195 default:
2196 internal_error (__FILE__, __LINE__, _("bad kind"));
2199 /* Change the VALUE_LVAL to lval_internalvar so that future operations
2200 on this value go back to affect the original internal variable.
2202 Do not do this for INTERNALVAR_MAKE_VALUE variables, as those have
2203 no underlying modifiable state in the internal variable.
2205 Likewise, if the variable's value is a computed lvalue, we want
2206 references to it to produce another computed lvalue, where
2207 references and assignments actually operate through the
2208 computed value's functions.
2210 This means that internal variables with computed values
2211 behave a little differently from other internal variables:
2212 assignments to them don't just replace the previous value
2213 altogether. At the moment, this seems like the behavior we
2214 want. */
2216 if (var->kind != INTERNALVAR_MAKE_VALUE
2217 && val->lval != lval_computed)
2219 VALUE_LVAL (val) = lval_internalvar;
2220 VALUE_INTERNALVAR (val) = var;
2223 return val;
2227 get_internalvar_integer (struct internalvar *var, LONGEST *result)
2229 if (var->kind == INTERNALVAR_INTEGER)
2231 *result = var->u.integer.val;
2232 return 1;
2235 if (var->kind == INTERNALVAR_VALUE)
2237 struct type *type = check_typedef (value_type (var->u.value));
2239 if (type->code () == TYPE_CODE_INT)
2241 *result = value_as_long (var->u.value);
2242 return 1;
2246 return 0;
2249 static int
2250 get_internalvar_function (struct internalvar *var,
2251 struct internal_function **result)
2253 switch (var->kind)
2255 case INTERNALVAR_FUNCTION:
2256 *result = var->u.fn.function;
2257 return 1;
2259 default:
2260 return 0;
2264 void
2265 set_internalvar_component (struct internalvar *var,
2266 LONGEST offset, LONGEST bitpos,
2267 LONGEST bitsize, struct value *newval)
2269 gdb_byte *addr;
2270 struct gdbarch *arch;
2271 int unit_size;
2273 switch (var->kind)
2275 case INTERNALVAR_VALUE:
2276 addr = value_contents_writeable (var->u.value);
2277 arch = get_value_arch (var->u.value);
2278 unit_size = gdbarch_addressable_memory_unit_size (arch);
2280 if (bitsize)
2281 modify_field (value_type (var->u.value), addr + offset,
2282 value_as_long (newval), bitpos, bitsize);
2283 else
2284 memcpy (addr + offset * unit_size, value_contents (newval),
2285 TYPE_LENGTH (value_type (newval)));
2286 break;
2288 default:
2289 /* We can never get a component of any other kind. */
2290 internal_error (__FILE__, __LINE__, _("set_internalvar_component"));
2294 void
2295 set_internalvar (struct internalvar *var, struct value *val)
2297 enum internalvar_kind new_kind;
2298 union internalvar_data new_data = { 0 };
2300 if (var->kind == INTERNALVAR_FUNCTION && var->u.fn.canonical)
2301 error (_("Cannot overwrite convenience function %s"), var->name);
2303 /* Prepare new contents. */
2304 switch (check_typedef (value_type (val))->code ())
2306 case TYPE_CODE_VOID:
2307 new_kind = INTERNALVAR_VOID;
2308 break;
2310 case TYPE_CODE_INTERNAL_FUNCTION:
2311 gdb_assert (VALUE_LVAL (val) == lval_internalvar);
2312 new_kind = INTERNALVAR_FUNCTION;
2313 get_internalvar_function (VALUE_INTERNALVAR (val),
2314 &new_data.fn.function);
2315 /* Copies created here are never canonical. */
2316 break;
2318 default:
2319 new_kind = INTERNALVAR_VALUE;
2320 struct value *copy = value_copy (val);
2321 copy->modifiable = 1;
2323 /* Force the value to be fetched from the target now, to avoid problems
2324 later when this internalvar is referenced and the target is gone or
2325 has changed. */
2326 if (value_lazy (copy))
2327 value_fetch_lazy (copy);
2329 /* Release the value from the value chain to prevent it from being
2330 deleted by free_all_values. From here on this function should not
2331 call error () until new_data is installed into the var->u to avoid
2332 leaking memory. */
2333 new_data.value = release_value (copy).release ();
2335 /* Internal variables which are created from values with a dynamic
2336 location don't need the location property of the origin anymore.
2337 The resolved dynamic location is used prior then any other address
2338 when accessing the value.
2339 If we keep it, we would still refer to the origin value.
2340 Remove the location property in case it exist. */
2341 value_type (new_data.value)->remove_dyn_prop (DYN_PROP_DATA_LOCATION);
2343 break;
2346 /* Clean up old contents. */
2347 clear_internalvar (var);
2349 /* Switch over. */
2350 var->kind = new_kind;
2351 var->u = new_data;
2352 /* End code which must not call error(). */
2355 void
2356 set_internalvar_integer (struct internalvar *var, LONGEST l)
2358 /* Clean up old contents. */
2359 clear_internalvar (var);
2361 var->kind = INTERNALVAR_INTEGER;
2362 var->u.integer.type = NULL;
2363 var->u.integer.val = l;
2366 void
2367 set_internalvar_string (struct internalvar *var, const char *string)
2369 /* Clean up old contents. */
2370 clear_internalvar (var);
2372 var->kind = INTERNALVAR_STRING;
2373 var->u.string = xstrdup (string);
2376 static void
2377 set_internalvar_function (struct internalvar *var, struct internal_function *f)
2379 /* Clean up old contents. */
2380 clear_internalvar (var);
2382 var->kind = INTERNALVAR_FUNCTION;
2383 var->u.fn.function = f;
2384 var->u.fn.canonical = 1;
2385 /* Variables installed here are always the canonical version. */
2388 void
2389 clear_internalvar (struct internalvar *var)
2391 /* Clean up old contents. */
2392 switch (var->kind)
2394 case INTERNALVAR_VALUE:
2395 value_decref (var->u.value);
2396 break;
2398 case INTERNALVAR_STRING:
2399 xfree (var->u.string);
2400 break;
2402 case INTERNALVAR_MAKE_VALUE:
2403 if (var->u.make_value.functions->destroy != NULL)
2404 var->u.make_value.functions->destroy (var->u.make_value.data);
2405 break;
2407 default:
2408 break;
2411 /* Reset to void kind. */
2412 var->kind = INTERNALVAR_VOID;
2415 const char *
2416 internalvar_name (const struct internalvar *var)
2418 return var->name;
2421 static struct internal_function *
2422 create_internal_function (const char *name,
2423 internal_function_fn handler, void *cookie)
2425 struct internal_function *ifn = XNEW (struct internal_function);
2427 ifn->name = xstrdup (name);
2428 ifn->handler = handler;
2429 ifn->cookie = cookie;
2430 return ifn;
2433 const char *
2434 value_internal_function_name (struct value *val)
2436 struct internal_function *ifn;
2437 int result;
2439 gdb_assert (VALUE_LVAL (val) == lval_internalvar);
2440 result = get_internalvar_function (VALUE_INTERNALVAR (val), &ifn);
2441 gdb_assert (result);
2443 return ifn->name;
2446 struct value *
2447 call_internal_function (struct gdbarch *gdbarch,
2448 const struct language_defn *language,
2449 struct value *func, int argc, struct value **argv)
2451 struct internal_function *ifn;
2452 int result;
2454 gdb_assert (VALUE_LVAL (func) == lval_internalvar);
2455 result = get_internalvar_function (VALUE_INTERNALVAR (func), &ifn);
2456 gdb_assert (result);
2458 return (*ifn->handler) (gdbarch, language, ifn->cookie, argc, argv);
2461 /* The 'function' command. This does nothing -- it is just a
2462 placeholder to let "help function NAME" work. This is also used as
2463 the implementation of the sub-command that is created when
2464 registering an internal function. */
2465 static void
2466 function_command (const char *command, int from_tty)
2468 /* Do nothing. */
2471 /* Helper function that does the work for add_internal_function. */
2473 static struct cmd_list_element *
2474 do_add_internal_function (const char *name, const char *doc,
2475 internal_function_fn handler, void *cookie)
2477 struct internal_function *ifn;
2478 struct internalvar *var = lookup_internalvar (name);
2480 ifn = create_internal_function (name, handler, cookie);
2481 set_internalvar_function (var, ifn);
2483 return add_cmd (name, no_class, function_command, doc, &functionlist);
2486 /* See value.h. */
2488 void
2489 add_internal_function (const char *name, const char *doc,
2490 internal_function_fn handler, void *cookie)
2492 do_add_internal_function (name, doc, handler, cookie);
2495 /* See value.h. */
2497 void
2498 add_internal_function (gdb::unique_xmalloc_ptr<char> &&name,
2499 gdb::unique_xmalloc_ptr<char> &&doc,
2500 internal_function_fn handler, void *cookie)
2502 struct cmd_list_element *cmd
2503 = do_add_internal_function (name.get (), doc.get (), handler, cookie);
2504 doc.release ();
2505 cmd->doc_allocated = 1;
2506 name.release ();
2507 cmd->name_allocated = 1;
2510 /* Update VALUE before discarding OBJFILE. COPIED_TYPES is used to
2511 prevent cycles / duplicates. */
2513 void
2514 preserve_one_value (struct value *value, struct objfile *objfile,
2515 htab_t copied_types)
2517 if (value->type->objfile_owner () == objfile)
2518 value->type = copy_type_recursive (objfile, value->type, copied_types);
2520 if (value->enclosing_type->objfile_owner () == objfile)
2521 value->enclosing_type = copy_type_recursive (objfile,
2522 value->enclosing_type,
2523 copied_types);
2526 /* Likewise for internal variable VAR. */
2528 static void
2529 preserve_one_internalvar (struct internalvar *var, struct objfile *objfile,
2530 htab_t copied_types)
2532 switch (var->kind)
2534 case INTERNALVAR_INTEGER:
2535 if (var->u.integer.type
2536 && var->u.integer.type->objfile_owner () == objfile)
2537 var->u.integer.type
2538 = copy_type_recursive (objfile, var->u.integer.type, copied_types);
2539 break;
2541 case INTERNALVAR_VALUE:
2542 preserve_one_value (var->u.value, objfile, copied_types);
2543 break;
2547 /* Update the internal variables and value history when OBJFILE is
2548 discarded; we must copy the types out of the objfile. New global types
2549 will be created for every convenience variable which currently points to
2550 this objfile's types, and the convenience variables will be adjusted to
2551 use the new global types. */
2553 void
2554 preserve_values (struct objfile *objfile)
2556 struct internalvar *var;
2558 /* Create the hash table. We allocate on the objfile's obstack, since
2559 it is soon to be deleted. */
2560 htab_up copied_types = create_copied_types_hash (objfile);
2562 for (const value_ref_ptr &item : value_history)
2563 preserve_one_value (item.get (), objfile, copied_types.get ());
2565 for (var = internalvars; var; var = var->next)
2566 preserve_one_internalvar (var, objfile, copied_types.get ());
2568 preserve_ext_lang_values (objfile, copied_types.get ());
2571 static void
2572 show_convenience (const char *ignore, int from_tty)
2574 struct gdbarch *gdbarch = get_current_arch ();
2575 struct internalvar *var;
2576 int varseen = 0;
2577 struct value_print_options opts;
2579 get_user_print_options (&opts);
2580 for (var = internalvars; var; var = var->next)
2583 if (!varseen)
2585 varseen = 1;
2587 printf_filtered (("$%s = "), var->name);
2591 struct value *val;
2593 val = value_of_internalvar (gdbarch, var);
2594 value_print (val, gdb_stdout, &opts);
2596 catch (const gdb_exception_error &ex)
2598 fprintf_styled (gdb_stdout, metadata_style.style (),
2599 _("<error: %s>"), ex.what ());
2602 printf_filtered (("\n"));
2604 if (!varseen)
2606 /* This text does not mention convenience functions on purpose.
2607 The user can't create them except via Python, and if Python support
2608 is installed this message will never be printed ($_streq will
2609 exist). */
2610 printf_unfiltered (_("No debugger convenience variables now defined.\n"
2611 "Convenience variables have "
2612 "names starting with \"$\";\n"
2613 "use \"set\" as in \"set "
2614 "$foo = 5\" to define them.\n"));
2619 /* See value.h. */
2621 struct value *
2622 value_from_xmethod (xmethod_worker_up &&worker)
2624 struct value *v;
2626 v = allocate_value (builtin_type (target_gdbarch ())->xmethod);
2627 v->lval = lval_xcallable;
2628 v->location.xm_worker = worker.release ();
2629 v->modifiable = 0;
2631 return v;
2634 /* Return the type of the result of TYPE_CODE_XMETHOD value METHOD. */
2636 struct type *
2637 result_type_of_xmethod (struct value *method, gdb::array_view<value *> argv)
2639 gdb_assert (value_type (method)->code () == TYPE_CODE_XMETHOD
2640 && method->lval == lval_xcallable && !argv.empty ());
2642 return method->location.xm_worker->get_result_type (argv[0], argv.slice (1));
2645 /* Call the xmethod corresponding to the TYPE_CODE_XMETHOD value METHOD. */
2647 struct value *
2648 call_xmethod (struct value *method, gdb::array_view<value *> argv)
2650 gdb_assert (value_type (method)->code () == TYPE_CODE_XMETHOD
2651 && method->lval == lval_xcallable && !argv.empty ());
2653 return method->location.xm_worker->invoke (argv[0], argv.slice (1));
2656 /* Extract a value as a C number (either long or double).
2657 Knows how to convert fixed values to double, or
2658 floating values to long.
2659 Does not deallocate the value. */
2661 LONGEST
2662 value_as_long (struct value *val)
2664 /* This coerces arrays and functions, which is necessary (e.g.
2665 in disassemble_command). It also dereferences references, which
2666 I suspect is the most logical thing to do. */
2667 val = coerce_array (val);
2668 return unpack_long (value_type (val), value_contents (val));
2671 /* Extract a value as a C pointer. Does not deallocate the value.
2672 Note that val's type may not actually be a pointer; value_as_long
2673 handles all the cases. */
2674 CORE_ADDR
2675 value_as_address (struct value *val)
2677 struct gdbarch *gdbarch = value_type (val)->arch ();
2679 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2680 whether we want this to be true eventually. */
2681 #if 0
2682 /* gdbarch_addr_bits_remove is wrong if we are being called for a
2683 non-address (e.g. argument to "signal", "info break", etc.), or
2684 for pointers to char, in which the low bits *are* significant. */
2685 return gdbarch_addr_bits_remove (gdbarch, value_as_long (val));
2686 #else
2688 /* There are several targets (IA-64, PowerPC, and others) which
2689 don't represent pointers to functions as simply the address of
2690 the function's entry point. For example, on the IA-64, a
2691 function pointer points to a two-word descriptor, generated by
2692 the linker, which contains the function's entry point, and the
2693 value the IA-64 "global pointer" register should have --- to
2694 support position-independent code. The linker generates
2695 descriptors only for those functions whose addresses are taken.
2697 On such targets, it's difficult for GDB to convert an arbitrary
2698 function address into a function pointer; it has to either find
2699 an existing descriptor for that function, or call malloc and
2700 build its own. On some targets, it is impossible for GDB to
2701 build a descriptor at all: the descriptor must contain a jump
2702 instruction; data memory cannot be executed; and code memory
2703 cannot be modified.
2705 Upon entry to this function, if VAL is a value of type `function'
2706 (that is, TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC), then
2707 value_address (val) is the address of the function. This is what
2708 you'll get if you evaluate an expression like `main'. The call
2709 to COERCE_ARRAY below actually does all the usual unary
2710 conversions, which includes converting values of type `function'
2711 to `pointer to function'. This is the challenging conversion
2712 discussed above. Then, `unpack_long' will convert that pointer
2713 back into an address.
2715 So, suppose the user types `disassemble foo' on an architecture
2716 with a strange function pointer representation, on which GDB
2717 cannot build its own descriptors, and suppose further that `foo'
2718 has no linker-built descriptor. The address->pointer conversion
2719 will signal an error and prevent the command from running, even
2720 though the next step would have been to convert the pointer
2721 directly back into the same address.
2723 The following shortcut avoids this whole mess. If VAL is a
2724 function, just return its address directly. */
2725 if (value_type (val)->code () == TYPE_CODE_FUNC
2726 || value_type (val)->code () == TYPE_CODE_METHOD)
2727 return value_address (val);
2729 val = coerce_array (val);
2731 /* Some architectures (e.g. Harvard), map instruction and data
2732 addresses onto a single large unified address space. For
2733 instance: An architecture may consider a large integer in the
2734 range 0x10000000 .. 0x1000ffff to already represent a data
2735 addresses (hence not need a pointer to address conversion) while
2736 a small integer would still need to be converted integer to
2737 pointer to address. Just assume such architectures handle all
2738 integer conversions in a single function. */
2740 /* JimB writes:
2742 I think INTEGER_TO_ADDRESS is a good idea as proposed --- but we
2743 must admonish GDB hackers to make sure its behavior matches the
2744 compiler's, whenever possible.
2746 In general, I think GDB should evaluate expressions the same way
2747 the compiler does. When the user copies an expression out of
2748 their source code and hands it to a `print' command, they should
2749 get the same value the compiler would have computed. Any
2750 deviation from this rule can cause major confusion and annoyance,
2751 and needs to be justified carefully. In other words, GDB doesn't
2752 really have the freedom to do these conversions in clever and
2753 useful ways.
2755 AndrewC pointed out that users aren't complaining about how GDB
2756 casts integers to pointers; they are complaining that they can't
2757 take an address from a disassembly listing and give it to `x/i'.
2758 This is certainly important.
2760 Adding an architecture method like integer_to_address() certainly
2761 makes it possible for GDB to "get it right" in all circumstances
2762 --- the target has complete control over how things get done, so
2763 people can Do The Right Thing for their target without breaking
2764 anyone else. The standard doesn't specify how integers get
2765 converted to pointers; usually, the ABI doesn't either, but
2766 ABI-specific code is a more reasonable place to handle it. */
2768 if (value_type (val)->code () != TYPE_CODE_PTR
2769 && !TYPE_IS_REFERENCE (value_type (val))
2770 && gdbarch_integer_to_address_p (gdbarch))
2771 return gdbarch_integer_to_address (gdbarch, value_type (val),
2772 value_contents (val));
2774 return unpack_long (value_type (val), value_contents (val));
2775 #endif
2778 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
2779 as a long, or as a double, assuming the raw data is described
2780 by type TYPE. Knows how to convert different sizes of values
2781 and can convert between fixed and floating point. We don't assume
2782 any alignment for the raw data. Return value is in host byte order.
2784 If you want functions and arrays to be coerced to pointers, and
2785 references to be dereferenced, call value_as_long() instead.
2787 C++: It is assumed that the front-end has taken care of
2788 all matters concerning pointers to members. A pointer
2789 to member which reaches here is considered to be equivalent
2790 to an INT (or some size). After all, it is only an offset. */
2792 LONGEST
2793 unpack_long (struct type *type, const gdb_byte *valaddr)
2795 if (is_fixed_point_type (type))
2796 type = type->fixed_point_type_base_type ();
2798 enum bfd_endian byte_order = type_byte_order (type);
2799 enum type_code code = type->code ();
2800 int len = TYPE_LENGTH (type);
2801 int nosign = type->is_unsigned ();
2803 switch (code)
2805 case TYPE_CODE_TYPEDEF:
2806 return unpack_long (check_typedef (type), valaddr);
2807 case TYPE_CODE_ENUM:
2808 case TYPE_CODE_FLAGS:
2809 case TYPE_CODE_BOOL:
2810 case TYPE_CODE_INT:
2811 case TYPE_CODE_CHAR:
2812 case TYPE_CODE_RANGE:
2813 case TYPE_CODE_MEMBERPTR:
2815 LONGEST result;
2817 if (type->bit_size_differs_p ())
2819 unsigned bit_off = type->bit_offset ();
2820 unsigned bit_size = type->bit_size ();
2821 if (bit_size == 0)
2823 /* unpack_bits_as_long doesn't handle this case the
2824 way we'd like, so handle it here. */
2825 result = 0;
2827 else
2828 result = unpack_bits_as_long (type, valaddr, bit_off, bit_size);
2830 else
2832 if (nosign)
2833 result = extract_unsigned_integer (valaddr, len, byte_order);
2834 else
2835 result = extract_signed_integer (valaddr, len, byte_order);
2837 if (code == TYPE_CODE_RANGE)
2838 result += type->bounds ()->bias;
2839 return result;
2842 case TYPE_CODE_FLT:
2843 case TYPE_CODE_DECFLOAT:
2844 return target_float_to_longest (valaddr, type);
2846 case TYPE_CODE_FIXED_POINT:
2848 gdb_mpq vq;
2849 vq.read_fixed_point (gdb::make_array_view (valaddr, len),
2850 byte_order, nosign,
2851 type->fixed_point_scaling_factor ());
2853 gdb_mpz vz;
2854 mpz_tdiv_q (vz.val, mpq_numref (vq.val), mpq_denref (vq.val));
2855 return vz.as_integer<LONGEST> ();
2858 case TYPE_CODE_PTR:
2859 case TYPE_CODE_REF:
2860 case TYPE_CODE_RVALUE_REF:
2861 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2862 whether we want this to be true eventually. */
2863 return extract_typed_address (valaddr, type);
2865 default:
2866 error (_("Value can't be converted to integer."));
2870 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
2871 as a CORE_ADDR, assuming the raw data is described by type TYPE.
2872 We don't assume any alignment for the raw data. Return value is in
2873 host byte order.
2875 If you want functions and arrays to be coerced to pointers, and
2876 references to be dereferenced, call value_as_address() instead.
2878 C++: It is assumed that the front-end has taken care of
2879 all matters concerning pointers to members. A pointer
2880 to member which reaches here is considered to be equivalent
2881 to an INT (or some size). After all, it is only an offset. */
2883 CORE_ADDR
2884 unpack_pointer (struct type *type, const gdb_byte *valaddr)
2886 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
2887 whether we want this to be true eventually. */
2888 return unpack_long (type, valaddr);
2891 bool
2892 is_floating_value (struct value *val)
2894 struct type *type = check_typedef (value_type (val));
2896 if (is_floating_type (type))
2898 if (!target_float_is_valid (value_contents (val), type))
2899 error (_("Invalid floating value found in program."));
2900 return true;
2903 return false;
2907 /* Get the value of the FIELDNO'th field (which must be static) of
2908 TYPE. */
2910 struct value *
2911 value_static_field (struct type *type, int fieldno)
2913 struct value *retval;
2915 switch (TYPE_FIELD_LOC_KIND (type, fieldno))
2917 case FIELD_LOC_KIND_PHYSADDR:
2918 retval = value_at_lazy (type->field (fieldno).type (),
2919 TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
2920 break;
2921 case FIELD_LOC_KIND_PHYSNAME:
2923 const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
2924 /* TYPE_FIELD_NAME (type, fieldno); */
2925 struct block_symbol sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
2927 if (sym.symbol == NULL)
2929 /* With some compilers, e.g. HP aCC, static data members are
2930 reported as non-debuggable symbols. */
2931 struct bound_minimal_symbol msym
2932 = lookup_minimal_symbol (phys_name, NULL, NULL);
2933 struct type *field_type = type->field (fieldno).type ();
2935 if (!msym.minsym)
2936 retval = allocate_optimized_out_value (field_type);
2937 else
2938 retval = value_at_lazy (field_type, BMSYMBOL_VALUE_ADDRESS (msym));
2940 else
2941 retval = value_of_variable (sym.symbol, sym.block);
2942 break;
2944 default:
2945 gdb_assert_not_reached ("unexpected field location kind");
2948 return retval;
2951 /* Change the enclosing type of a value object VAL to NEW_ENCL_TYPE.
2952 You have to be careful here, since the size of the data area for the value
2953 is set by the length of the enclosing type. So if NEW_ENCL_TYPE is bigger
2954 than the old enclosing type, you have to allocate more space for the
2955 data. */
2957 void
2958 set_value_enclosing_type (struct value *val, struct type *new_encl_type)
2960 if (TYPE_LENGTH (new_encl_type) > TYPE_LENGTH (value_enclosing_type (val)))
2962 check_type_length_before_alloc (new_encl_type);
2963 val->contents
2964 .reset ((gdb_byte *) xrealloc (val->contents.release (),
2965 TYPE_LENGTH (new_encl_type)));
2968 val->enclosing_type = new_encl_type;
2971 /* Given a value ARG1 (offset by OFFSET bytes)
2972 of a struct or union type ARG_TYPE,
2973 extract and return the value of one of its (non-static) fields.
2974 FIELDNO says which field. */
2976 struct value *
2977 value_primitive_field (struct value *arg1, LONGEST offset,
2978 int fieldno, struct type *arg_type)
2980 struct value *v;
2981 struct type *type;
2982 struct gdbarch *arch = get_value_arch (arg1);
2983 int unit_size = gdbarch_addressable_memory_unit_size (arch);
2985 arg_type = check_typedef (arg_type);
2986 type = arg_type->field (fieldno).type ();
2988 /* Call check_typedef on our type to make sure that, if TYPE
2989 is a TYPE_CODE_TYPEDEF, its length is set to the length
2990 of the target type instead of zero. However, we do not
2991 replace the typedef type by the target type, because we want
2992 to keep the typedef in order to be able to print the type
2993 description correctly. */
2994 check_typedef (type);
2996 if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
2998 /* Handle packed fields.
3000 Create a new value for the bitfield, with bitpos and bitsize
3001 set. If possible, arrange offset and bitpos so that we can
3002 do a single aligned read of the size of the containing type.
3003 Otherwise, adjust offset to the byte containing the first
3004 bit. Assume that the address, offset, and embedded offset
3005 are sufficiently aligned. */
3007 LONGEST bitpos = TYPE_FIELD_BITPOS (arg_type, fieldno);
3008 LONGEST container_bitsize = TYPE_LENGTH (type) * 8;
3010 v = allocate_value_lazy (type);
3011 v->bitsize = TYPE_FIELD_BITSIZE (arg_type, fieldno);
3012 if ((bitpos % container_bitsize) + v->bitsize <= container_bitsize
3013 && TYPE_LENGTH (type) <= (int) sizeof (LONGEST))
3014 v->bitpos = bitpos % container_bitsize;
3015 else
3016 v->bitpos = bitpos % 8;
3017 v->offset = (value_embedded_offset (arg1)
3018 + offset
3019 + (bitpos - v->bitpos) / 8);
3020 set_value_parent (v, arg1);
3021 if (!value_lazy (arg1))
3022 value_fetch_lazy (v);
3024 else if (fieldno < TYPE_N_BASECLASSES (arg_type))
3026 /* This field is actually a base subobject, so preserve the
3027 entire object's contents for later references to virtual
3028 bases, etc. */
3029 LONGEST boffset;
3031 /* Lazy register values with offsets are not supported. */
3032 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
3033 value_fetch_lazy (arg1);
3035 /* We special case virtual inheritance here because this
3036 requires access to the contents, which we would rather avoid
3037 for references to ordinary fields of unavailable values. */
3038 if (BASETYPE_VIA_VIRTUAL (arg_type, fieldno))
3039 boffset = baseclass_offset (arg_type, fieldno,
3040 value_contents (arg1),
3041 value_embedded_offset (arg1),
3042 value_address (arg1),
3043 arg1);
3044 else
3045 boffset = TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
3047 if (value_lazy (arg1))
3048 v = allocate_value_lazy (value_enclosing_type (arg1));
3049 else
3051 v = allocate_value (value_enclosing_type (arg1));
3052 value_contents_copy_raw (v, 0, arg1, 0,
3053 TYPE_LENGTH (value_enclosing_type (arg1)));
3055 v->type = type;
3056 v->offset = value_offset (arg1);
3057 v->embedded_offset = offset + value_embedded_offset (arg1) + boffset;
3059 else if (NULL != TYPE_DATA_LOCATION (type))
3061 /* Field is a dynamic data member. */
3063 gdb_assert (0 == offset);
3064 /* We expect an already resolved data location. */
3065 gdb_assert (PROP_CONST == TYPE_DATA_LOCATION_KIND (type));
3066 /* For dynamic data types defer memory allocation
3067 until we actual access the value. */
3068 v = allocate_value_lazy (type);
3070 else
3072 /* Plain old data member */
3073 offset += (TYPE_FIELD_BITPOS (arg_type, fieldno)
3074 / (HOST_CHAR_BIT * unit_size));
3076 /* Lazy register values with offsets are not supported. */
3077 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
3078 value_fetch_lazy (arg1);
3080 if (value_lazy (arg1))
3081 v = allocate_value_lazy (type);
3082 else
3084 v = allocate_value (type);
3085 value_contents_copy_raw (v, value_embedded_offset (v),
3086 arg1, value_embedded_offset (arg1) + offset,
3087 type_length_units (type));
3089 v->offset = (value_offset (arg1) + offset
3090 + value_embedded_offset (arg1));
3092 set_value_component_location (v, arg1);
3093 return v;
3096 /* Given a value ARG1 of a struct or union type,
3097 extract and return the value of one of its (non-static) fields.
3098 FIELDNO says which field. */
3100 struct value *
3101 value_field (struct value *arg1, int fieldno)
3103 return value_primitive_field (arg1, 0, fieldno, value_type (arg1));
3106 /* Return a non-virtual function as a value.
3107 F is the list of member functions which contains the desired method.
3108 J is an index into F which provides the desired method.
3110 We only use the symbol for its address, so be happy with either a
3111 full symbol or a minimal symbol. */
3113 struct value *
3114 value_fn_field (struct value **arg1p, struct fn_field *f,
3115 int j, struct type *type,
3116 LONGEST offset)
3118 struct value *v;
3119 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
3120 const char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
3121 struct symbol *sym;
3122 struct bound_minimal_symbol msym;
3124 sym = lookup_symbol (physname, 0, VAR_DOMAIN, 0).symbol;
3125 if (sym != NULL)
3127 memset (&msym, 0, sizeof (msym));
3129 else
3131 gdb_assert (sym == NULL);
3132 msym = lookup_bound_minimal_symbol (physname);
3133 if (msym.minsym == NULL)
3134 return NULL;
3137 v = allocate_value (ftype);
3138 VALUE_LVAL (v) = lval_memory;
3139 if (sym)
3141 set_value_address (v, BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym)));
3143 else
3145 /* The minimal symbol might point to a function descriptor;
3146 resolve it to the actual code address instead. */
3147 struct objfile *objfile = msym.objfile;
3148 struct gdbarch *gdbarch = objfile->arch ();
3150 set_value_address (v,
3151 gdbarch_convert_from_func_ptr_addr
3152 (gdbarch, BMSYMBOL_VALUE_ADDRESS (msym), current_top_target ()));
3155 if (arg1p)
3157 if (type != value_type (*arg1p))
3158 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
3159 value_addr (*arg1p)));
3161 /* Move the `this' pointer according to the offset.
3162 VALUE_OFFSET (*arg1p) += offset; */
3165 return v;
3170 /* See value.h. */
3172 LONGEST
3173 unpack_bits_as_long (struct type *field_type, const gdb_byte *valaddr,
3174 LONGEST bitpos, LONGEST bitsize)
3176 enum bfd_endian byte_order = type_byte_order (field_type);
3177 ULONGEST val;
3178 ULONGEST valmask;
3179 int lsbcount;
3180 LONGEST bytes_read;
3181 LONGEST read_offset;
3183 /* Read the minimum number of bytes required; there may not be
3184 enough bytes to read an entire ULONGEST. */
3185 field_type = check_typedef (field_type);
3186 if (bitsize)
3187 bytes_read = ((bitpos % 8) + bitsize + 7) / 8;
3188 else
3190 bytes_read = TYPE_LENGTH (field_type);
3191 bitsize = 8 * bytes_read;
3194 read_offset = bitpos / 8;
3196 val = extract_unsigned_integer (valaddr + read_offset,
3197 bytes_read, byte_order);
3199 /* Extract bits. See comment above. */
3201 if (byte_order == BFD_ENDIAN_BIG)
3202 lsbcount = (bytes_read * 8 - bitpos % 8 - bitsize);
3203 else
3204 lsbcount = (bitpos % 8);
3205 val >>= lsbcount;
3207 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
3208 If the field is signed, and is negative, then sign extend. */
3210 if (bitsize < 8 * (int) sizeof (val))
3212 valmask = (((ULONGEST) 1) << bitsize) - 1;
3213 val &= valmask;
3214 if (!field_type->is_unsigned ())
3216 if (val & (valmask ^ (valmask >> 1)))
3218 val |= ~valmask;
3223 return val;
3226 /* Unpack a field FIELDNO of the specified TYPE, from the object at
3227 VALADDR + EMBEDDED_OFFSET. VALADDR points to the contents of
3228 ORIGINAL_VALUE, which must not be NULL. See
3229 unpack_value_bits_as_long for more details. */
3232 unpack_value_field_as_long (struct type *type, const gdb_byte *valaddr,
3233 LONGEST embedded_offset, int fieldno,
3234 const struct value *val, LONGEST *result)
3236 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
3237 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
3238 struct type *field_type = type->field (fieldno).type ();
3239 int bit_offset;
3241 gdb_assert (val != NULL);
3243 bit_offset = embedded_offset * TARGET_CHAR_BIT + bitpos;
3244 if (value_bits_any_optimized_out (val, bit_offset, bitsize)
3245 || !value_bits_available (val, bit_offset, bitsize))
3246 return 0;
3248 *result = unpack_bits_as_long (field_type, valaddr + embedded_offset,
3249 bitpos, bitsize);
3250 return 1;
3253 /* Unpack a field FIELDNO of the specified TYPE, from the anonymous
3254 object at VALADDR. See unpack_bits_as_long for more details. */
3256 LONGEST
3257 unpack_field_as_long (struct type *type, const gdb_byte *valaddr, int fieldno)
3259 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
3260 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
3261 struct type *field_type = type->field (fieldno).type ();
3263 return unpack_bits_as_long (field_type, valaddr, bitpos, bitsize);
3266 /* Unpack a bitfield of BITSIZE bits found at BITPOS in the object at
3267 VALADDR + EMBEDDEDOFFSET that has the type of DEST_VAL and store
3268 the contents in DEST_VAL, zero or sign extending if the type of
3269 DEST_VAL is wider than BITSIZE. VALADDR points to the contents of
3270 VAL. If the VAL's contents required to extract the bitfield from
3271 are unavailable/optimized out, DEST_VAL is correspondingly
3272 marked unavailable/optimized out. */
3274 void
3275 unpack_value_bitfield (struct value *dest_val,
3276 LONGEST bitpos, LONGEST bitsize,
3277 const gdb_byte *valaddr, LONGEST embedded_offset,
3278 const struct value *val)
3280 enum bfd_endian byte_order;
3281 int src_bit_offset;
3282 int dst_bit_offset;
3283 struct type *field_type = value_type (dest_val);
3285 byte_order = type_byte_order (field_type);
3287 /* First, unpack and sign extend the bitfield as if it was wholly
3288 valid. Optimized out/unavailable bits are read as zero, but
3289 that's OK, as they'll end up marked below. If the VAL is
3290 wholly-invalid we may have skipped allocating its contents,
3291 though. See allocate_optimized_out_value. */
3292 if (valaddr != NULL)
3294 LONGEST num;
3296 num = unpack_bits_as_long (field_type, valaddr + embedded_offset,
3297 bitpos, bitsize);
3298 store_signed_integer (value_contents_raw (dest_val),
3299 TYPE_LENGTH (field_type), byte_order, num);
3302 /* Now copy the optimized out / unavailability ranges to the right
3303 bits. */
3304 src_bit_offset = embedded_offset * TARGET_CHAR_BIT + bitpos;
3305 if (byte_order == BFD_ENDIAN_BIG)
3306 dst_bit_offset = TYPE_LENGTH (field_type) * TARGET_CHAR_BIT - bitsize;
3307 else
3308 dst_bit_offset = 0;
3309 value_ranges_copy_adjusted (dest_val, dst_bit_offset,
3310 val, src_bit_offset, bitsize);
3313 /* Return a new value with type TYPE, which is FIELDNO field of the
3314 object at VALADDR + EMBEDDEDOFFSET. VALADDR points to the contents
3315 of VAL. If the VAL's contents required to extract the bitfield
3316 from are unavailable/optimized out, the new value is
3317 correspondingly marked unavailable/optimized out. */
3319 struct value *
3320 value_field_bitfield (struct type *type, int fieldno,
3321 const gdb_byte *valaddr,
3322 LONGEST embedded_offset, const struct value *val)
3324 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
3325 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
3326 struct value *res_val = allocate_value (type->field (fieldno).type ());
3328 unpack_value_bitfield (res_val, bitpos, bitsize,
3329 valaddr, embedded_offset, val);
3331 return res_val;
3334 /* Modify the value of a bitfield. ADDR points to a block of memory in
3335 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
3336 is the desired value of the field, in host byte order. BITPOS and BITSIZE
3337 indicate which bits (in target bit order) comprise the bitfield.
3338 Requires 0 < BITSIZE <= lbits, 0 <= BITPOS % 8 + BITSIZE <= lbits, and
3339 0 <= BITPOS, where lbits is the size of a LONGEST in bits. */
3341 void
3342 modify_field (struct type *type, gdb_byte *addr,
3343 LONGEST fieldval, LONGEST bitpos, LONGEST bitsize)
3345 enum bfd_endian byte_order = type_byte_order (type);
3346 ULONGEST oword;
3347 ULONGEST mask = (ULONGEST) -1 >> (8 * sizeof (ULONGEST) - bitsize);
3348 LONGEST bytesize;
3350 /* Normalize BITPOS. */
3351 addr += bitpos / 8;
3352 bitpos %= 8;
3354 /* If a negative fieldval fits in the field in question, chop
3355 off the sign extension bits. */
3356 if ((~fieldval & ~(mask >> 1)) == 0)
3357 fieldval &= mask;
3359 /* Warn if value is too big to fit in the field in question. */
3360 if (0 != (fieldval & ~mask))
3362 /* FIXME: would like to include fieldval in the message, but
3363 we don't have a sprintf_longest. */
3364 warning (_("Value does not fit in %s bits."), plongest (bitsize));
3366 /* Truncate it, otherwise adjoining fields may be corrupted. */
3367 fieldval &= mask;
3370 /* Ensure no bytes outside of the modified ones get accessed as it may cause
3371 false valgrind reports. */
3373 bytesize = (bitpos + bitsize + 7) / 8;
3374 oword = extract_unsigned_integer (addr, bytesize, byte_order);
3376 /* Shifting for bit field depends on endianness of the target machine. */
3377 if (byte_order == BFD_ENDIAN_BIG)
3378 bitpos = bytesize * 8 - bitpos - bitsize;
3380 oword &= ~(mask << bitpos);
3381 oword |= fieldval << bitpos;
3383 store_unsigned_integer (addr, bytesize, byte_order, oword);
3386 /* Pack NUM into BUF using a target format of TYPE. */
3388 void
3389 pack_long (gdb_byte *buf, struct type *type, LONGEST num)
3391 enum bfd_endian byte_order = type_byte_order (type);
3392 LONGEST len;
3394 type = check_typedef (type);
3395 len = TYPE_LENGTH (type);
3397 switch (type->code ())
3399 case TYPE_CODE_RANGE:
3400 num -= type->bounds ()->bias;
3401 /* Fall through. */
3402 case TYPE_CODE_INT:
3403 case TYPE_CODE_CHAR:
3404 case TYPE_CODE_ENUM:
3405 case TYPE_CODE_FLAGS:
3406 case TYPE_CODE_BOOL:
3407 case TYPE_CODE_MEMBERPTR:
3408 if (type->bit_size_differs_p ())
3410 unsigned bit_off = type->bit_offset ();
3411 unsigned bit_size = type->bit_size ();
3412 num &= ((ULONGEST) 1 << bit_size) - 1;
3413 num <<= bit_off;
3415 store_signed_integer (buf, len, byte_order, num);
3416 break;
3418 case TYPE_CODE_REF:
3419 case TYPE_CODE_RVALUE_REF:
3420 case TYPE_CODE_PTR:
3421 store_typed_address (buf, type, (CORE_ADDR) num);
3422 break;
3424 case TYPE_CODE_FLT:
3425 case TYPE_CODE_DECFLOAT:
3426 target_float_from_longest (buf, type, num);
3427 break;
3429 default:
3430 error (_("Unexpected type (%d) encountered for integer constant."),
3431 type->code ());
3436 /* Pack NUM into BUF using a target format of TYPE. */
3438 static void
3439 pack_unsigned_long (gdb_byte *buf, struct type *type, ULONGEST num)
3441 LONGEST len;
3442 enum bfd_endian byte_order;
3444 type = check_typedef (type);
3445 len = TYPE_LENGTH (type);
3446 byte_order = type_byte_order (type);
3448 switch (type->code ())
3450 case TYPE_CODE_INT:
3451 case TYPE_CODE_CHAR:
3452 case TYPE_CODE_ENUM:
3453 case TYPE_CODE_FLAGS:
3454 case TYPE_CODE_BOOL:
3455 case TYPE_CODE_RANGE:
3456 case TYPE_CODE_MEMBERPTR:
3457 if (type->bit_size_differs_p ())
3459 unsigned bit_off = type->bit_offset ();
3460 unsigned bit_size = type->bit_size ();
3461 num &= ((ULONGEST) 1 << bit_size) - 1;
3462 num <<= bit_off;
3464 store_unsigned_integer (buf, len, byte_order, num);
3465 break;
3467 case TYPE_CODE_REF:
3468 case TYPE_CODE_RVALUE_REF:
3469 case TYPE_CODE_PTR:
3470 store_typed_address (buf, type, (CORE_ADDR) num);
3471 break;
3473 case TYPE_CODE_FLT:
3474 case TYPE_CODE_DECFLOAT:
3475 target_float_from_ulongest (buf, type, num);
3476 break;
3478 default:
3479 error (_("Unexpected type (%d) encountered "
3480 "for unsigned integer constant."),
3481 type->code ());
3486 /* Convert C numbers into newly allocated values. */
3488 struct value *
3489 value_from_longest (struct type *type, LONGEST num)
3491 struct value *val = allocate_value (type);
3493 pack_long (value_contents_raw (val), type, num);
3494 return val;
3498 /* Convert C unsigned numbers into newly allocated values. */
3500 struct value *
3501 value_from_ulongest (struct type *type, ULONGEST num)
3503 struct value *val = allocate_value (type);
3505 pack_unsigned_long (value_contents_raw (val), type, num);
3507 return val;
3511 /* Create a value representing a pointer of type TYPE to the address
3512 ADDR. */
3514 struct value *
3515 value_from_pointer (struct type *type, CORE_ADDR addr)
3517 struct value *val = allocate_value (type);
3519 store_typed_address (value_contents_raw (val),
3520 check_typedef (type), addr);
3521 return val;
3524 /* Create and return a value object of TYPE containing the value D. The
3525 TYPE must be of TYPE_CODE_FLT, and must be large enough to hold D once
3526 it is converted to target format. */
3528 struct value *
3529 value_from_host_double (struct type *type, double d)
3531 struct value *value = allocate_value (type);
3532 gdb_assert (type->code () == TYPE_CODE_FLT);
3533 target_float_from_host_double (value_contents_raw (value),
3534 value_type (value), d);
3535 return value;
3538 /* Create a value of type TYPE whose contents come from VALADDR, if it
3539 is non-null, and whose memory address (in the inferior) is
3540 ADDRESS. The type of the created value may differ from the passed
3541 type TYPE. Make sure to retrieve values new type after this call.
3542 Note that TYPE is not passed through resolve_dynamic_type; this is
3543 a special API intended for use only by Ada. */
3545 struct value *
3546 value_from_contents_and_address_unresolved (struct type *type,
3547 const gdb_byte *valaddr,
3548 CORE_ADDR address)
3550 struct value *v;
3552 if (valaddr == NULL)
3553 v = allocate_value_lazy (type);
3554 else
3555 v = value_from_contents (type, valaddr);
3556 VALUE_LVAL (v) = lval_memory;
3557 set_value_address (v, address);
3558 return v;
3561 /* Create a value of type TYPE whose contents come from VALADDR, if it
3562 is non-null, and whose memory address (in the inferior) is
3563 ADDRESS. The type of the created value may differ from the passed
3564 type TYPE. Make sure to retrieve values new type after this call. */
3566 struct value *
3567 value_from_contents_and_address (struct type *type,
3568 const gdb_byte *valaddr,
3569 CORE_ADDR address)
3571 gdb::array_view<const gdb_byte> view;
3572 if (valaddr != nullptr)
3573 view = gdb::make_array_view (valaddr, TYPE_LENGTH (type));
3574 struct type *resolved_type = resolve_dynamic_type (type, view, address);
3575 struct type *resolved_type_no_typedef = check_typedef (resolved_type);
3576 struct value *v;
3578 if (valaddr == NULL)
3579 v = allocate_value_lazy (resolved_type);
3580 else
3581 v = value_from_contents (resolved_type, valaddr);
3582 if (TYPE_DATA_LOCATION (resolved_type_no_typedef) != NULL
3583 && TYPE_DATA_LOCATION_KIND (resolved_type_no_typedef) == PROP_CONST)
3584 address = TYPE_DATA_LOCATION_ADDR (resolved_type_no_typedef);
3585 VALUE_LVAL (v) = lval_memory;
3586 set_value_address (v, address);
3587 return v;
3590 /* Create a value of type TYPE holding the contents CONTENTS.
3591 The new value is `not_lval'. */
3593 struct value *
3594 value_from_contents (struct type *type, const gdb_byte *contents)
3596 struct value *result;
3598 result = allocate_value (type);
3599 memcpy (value_contents_raw (result), contents, TYPE_LENGTH (type));
3600 return result;
3603 /* Extract a value from the history file. Input will be of the form
3604 $digits or $$digits. See block comment above 'write_dollar_variable'
3605 for details. */
3607 struct value *
3608 value_from_history_ref (const char *h, const char **endp)
3610 int index, len;
3612 if (h[0] == '$')
3613 len = 1;
3614 else
3615 return NULL;
3617 if (h[1] == '$')
3618 len = 2;
3620 /* Find length of numeral string. */
3621 for (; isdigit (h[len]); len++)
3624 /* Make sure numeral string is not part of an identifier. */
3625 if (h[len] == '_' || isalpha (h[len]))
3626 return NULL;
3628 /* Now collect the index value. */
3629 if (h[1] == '$')
3631 if (len == 2)
3633 /* For some bizarre reason, "$$" is equivalent to "$$1",
3634 rather than to "$$0" as it ought to be! */
3635 index = -1;
3636 *endp += len;
3638 else
3640 char *local_end;
3642 index = -strtol (&h[2], &local_end, 10);
3643 *endp = local_end;
3646 else
3648 if (len == 1)
3650 /* "$" is equivalent to "$0". */
3651 index = 0;
3652 *endp += len;
3654 else
3656 char *local_end;
3658 index = strtol (&h[1], &local_end, 10);
3659 *endp = local_end;
3663 return access_value_history (index);
3666 /* Get the component value (offset by OFFSET bytes) of a struct or
3667 union WHOLE. Component's type is TYPE. */
3669 struct value *
3670 value_from_component (struct value *whole, struct type *type, LONGEST offset)
3672 struct value *v;
3674 if (VALUE_LVAL (whole) == lval_memory && value_lazy (whole))
3675 v = allocate_value_lazy (type);
3676 else
3678 v = allocate_value (type);
3679 value_contents_copy (v, value_embedded_offset (v),
3680 whole, value_embedded_offset (whole) + offset,
3681 type_length_units (type));
3683 v->offset = value_offset (whole) + offset + value_embedded_offset (whole);
3684 set_value_component_location (v, whole);
3686 return v;
3689 struct value *
3690 coerce_ref_if_computed (const struct value *arg)
3692 const struct lval_funcs *funcs;
3694 if (!TYPE_IS_REFERENCE (check_typedef (value_type (arg))))
3695 return NULL;
3697 if (value_lval_const (arg) != lval_computed)
3698 return NULL;
3700 funcs = value_computed_funcs (arg);
3701 if (funcs->coerce_ref == NULL)
3702 return NULL;
3704 return funcs->coerce_ref (arg);
3707 /* Look at value.h for description. */
3709 struct value *
3710 readjust_indirect_value_type (struct value *value, struct type *enc_type,
3711 const struct type *original_type,
3712 struct value *original_value,
3713 CORE_ADDR original_value_address)
3715 gdb_assert (original_type->code () == TYPE_CODE_PTR
3716 || TYPE_IS_REFERENCE (original_type));
3718 struct type *original_target_type = TYPE_TARGET_TYPE (original_type);
3719 gdb::array_view<const gdb_byte> view;
3720 struct type *resolved_original_target_type
3721 = resolve_dynamic_type (original_target_type, view,
3722 original_value_address);
3724 /* Re-adjust type. */
3725 deprecated_set_value_type (value, resolved_original_target_type);
3727 /* Add embedding info. */
3728 set_value_enclosing_type (value, enc_type);
3729 set_value_embedded_offset (value, value_pointed_to_offset (original_value));
3731 /* We may be pointing to an object of some derived type. */
3732 return value_full_object (value, NULL, 0, 0, 0);
3735 struct value *
3736 coerce_ref (struct value *arg)
3738 struct type *value_type_arg_tmp = check_typedef (value_type (arg));
3739 struct value *retval;
3740 struct type *enc_type;
3742 retval = coerce_ref_if_computed (arg);
3743 if (retval)
3744 return retval;
3746 if (!TYPE_IS_REFERENCE (value_type_arg_tmp))
3747 return arg;
3749 enc_type = check_typedef (value_enclosing_type (arg));
3750 enc_type = TYPE_TARGET_TYPE (enc_type);
3752 CORE_ADDR addr = unpack_pointer (value_type (arg), value_contents (arg));
3753 retval = value_at_lazy (enc_type, addr);
3754 enc_type = value_type (retval);
3755 return readjust_indirect_value_type (retval, enc_type, value_type_arg_tmp,
3756 arg, addr);
3759 struct value *
3760 coerce_array (struct value *arg)
3762 struct type *type;
3764 arg = coerce_ref (arg);
3765 type = check_typedef (value_type (arg));
3767 switch (type->code ())
3769 case TYPE_CODE_ARRAY:
3770 if (!type->is_vector () && current_language->c_style_arrays_p ())
3771 arg = value_coerce_array (arg);
3772 break;
3773 case TYPE_CODE_FUNC:
3774 arg = value_coerce_function (arg);
3775 break;
3777 return arg;
3781 /* Return the return value convention that will be used for the
3782 specified type. */
3784 enum return_value_convention
3785 struct_return_convention (struct gdbarch *gdbarch,
3786 struct value *function, struct type *value_type)
3788 enum type_code code = value_type->code ();
3790 if (code == TYPE_CODE_ERROR)
3791 error (_("Function return type unknown."));
3793 /* Probe the architecture for the return-value convention. */
3794 return gdbarch_return_value (gdbarch, function, value_type,
3795 NULL, NULL, NULL);
3798 /* Return true if the function returning the specified type is using
3799 the convention of returning structures in memory (passing in the
3800 address as a hidden first parameter). */
3803 using_struct_return (struct gdbarch *gdbarch,
3804 struct value *function, struct type *value_type)
3806 if (value_type->code () == TYPE_CODE_VOID)
3807 /* A void return value is never in memory. See also corresponding
3808 code in "print_return_value". */
3809 return 0;
3811 return (struct_return_convention (gdbarch, function, value_type)
3812 != RETURN_VALUE_REGISTER_CONVENTION);
3815 /* Set the initialized field in a value struct. */
3817 void
3818 set_value_initialized (struct value *val, int status)
3820 val->initialized = status;
3823 /* Return the initialized field in a value struct. */
3826 value_initialized (const struct value *val)
3828 return val->initialized;
3831 /* Helper for value_fetch_lazy when the value is a bitfield. */
3833 static void
3834 value_fetch_lazy_bitfield (struct value *val)
3836 gdb_assert (value_bitsize (val) != 0);
3838 /* To read a lazy bitfield, read the entire enclosing value. This
3839 prevents reading the same block of (possibly volatile) memory once
3840 per bitfield. It would be even better to read only the containing
3841 word, but we have no way to record that just specific bits of a
3842 value have been fetched. */
3843 struct value *parent = value_parent (val);
3845 if (value_lazy (parent))
3846 value_fetch_lazy (parent);
3848 unpack_value_bitfield (val, value_bitpos (val), value_bitsize (val),
3849 value_contents_for_printing (parent),
3850 value_offset (val), parent);
3853 /* Helper for value_fetch_lazy when the value is in memory. */
3855 static void
3856 value_fetch_lazy_memory (struct value *val)
3858 gdb_assert (VALUE_LVAL (val) == lval_memory);
3860 CORE_ADDR addr = value_address (val);
3861 struct type *type = check_typedef (value_enclosing_type (val));
3863 if (TYPE_LENGTH (type))
3864 read_value_memory (val, 0, value_stack (val),
3865 addr, value_contents_all_raw (val),
3866 type_length_units (type));
3869 /* Helper for value_fetch_lazy when the value is in a register. */
3871 static void
3872 value_fetch_lazy_register (struct value *val)
3874 struct frame_info *next_frame;
3875 int regnum;
3876 struct type *type = check_typedef (value_type (val));
3877 struct value *new_val = val, *mark = value_mark ();
3879 /* Offsets are not supported here; lazy register values must
3880 refer to the entire register. */
3881 gdb_assert (value_offset (val) == 0);
3883 while (VALUE_LVAL (new_val) == lval_register && value_lazy (new_val))
3885 struct frame_id next_frame_id = VALUE_NEXT_FRAME_ID (new_val);
3887 next_frame = frame_find_by_id (next_frame_id);
3888 regnum = VALUE_REGNUM (new_val);
3890 gdb_assert (next_frame != NULL);
3892 /* Convertible register routines are used for multi-register
3893 values and for interpretation in different types
3894 (e.g. float or int from a double register). Lazy
3895 register values should have the register's natural type,
3896 so they do not apply. */
3897 gdb_assert (!gdbarch_convert_register_p (get_frame_arch (next_frame),
3898 regnum, type));
3900 /* FRAME was obtained, above, via VALUE_NEXT_FRAME_ID.
3901 Since a "->next" operation was performed when setting
3902 this field, we do not need to perform a "next" operation
3903 again when unwinding the register. That's why
3904 frame_unwind_register_value() is called here instead of
3905 get_frame_register_value(). */
3906 new_val = frame_unwind_register_value (next_frame, regnum);
3908 /* If we get another lazy lval_register value, it means the
3909 register is found by reading it from NEXT_FRAME's next frame.
3910 frame_unwind_register_value should never return a value with
3911 the frame id pointing to NEXT_FRAME. If it does, it means we
3912 either have two consecutive frames with the same frame id
3913 in the frame chain, or some code is trying to unwind
3914 behind get_prev_frame's back (e.g., a frame unwind
3915 sniffer trying to unwind), bypassing its validations. In
3916 any case, it should always be an internal error to end up
3917 in this situation. */
3918 if (VALUE_LVAL (new_val) == lval_register
3919 && value_lazy (new_val)
3920 && frame_id_eq (VALUE_NEXT_FRAME_ID (new_val), next_frame_id))
3921 internal_error (__FILE__, __LINE__,
3922 _("infinite loop while fetching a register"));
3925 /* If it's still lazy (for instance, a saved register on the
3926 stack), fetch it. */
3927 if (value_lazy (new_val))
3928 value_fetch_lazy (new_val);
3930 /* Copy the contents and the unavailability/optimized-out
3931 meta-data from NEW_VAL to VAL. */
3932 set_value_lazy (val, 0);
3933 value_contents_copy (val, value_embedded_offset (val),
3934 new_val, value_embedded_offset (new_val),
3935 type_length_units (type));
3937 if (frame_debug)
3939 struct gdbarch *gdbarch;
3940 struct frame_info *frame;
3941 /* VALUE_FRAME_ID is used here, instead of VALUE_NEXT_FRAME_ID,
3942 so that the frame level will be shown correctly. */
3943 frame = frame_find_by_id (VALUE_FRAME_ID (val));
3944 regnum = VALUE_REGNUM (val);
3945 gdbarch = get_frame_arch (frame);
3947 fprintf_unfiltered (gdb_stdlog,
3948 "{ value_fetch_lazy "
3949 "(frame=%d,regnum=%d(%s),...) ",
3950 frame_relative_level (frame), regnum,
3951 user_reg_map_regnum_to_name (gdbarch, regnum));
3953 fprintf_unfiltered (gdb_stdlog, "->");
3954 if (value_optimized_out (new_val))
3956 fprintf_unfiltered (gdb_stdlog, " ");
3957 val_print_optimized_out (new_val, gdb_stdlog);
3959 else
3961 int i;
3962 const gdb_byte *buf = value_contents (new_val);
3964 if (VALUE_LVAL (new_val) == lval_register)
3965 fprintf_unfiltered (gdb_stdlog, " register=%d",
3966 VALUE_REGNUM (new_val));
3967 else if (VALUE_LVAL (new_val) == lval_memory)
3968 fprintf_unfiltered (gdb_stdlog, " address=%s",
3969 paddress (gdbarch,
3970 value_address (new_val)));
3971 else
3972 fprintf_unfiltered (gdb_stdlog, " computed");
3974 fprintf_unfiltered (gdb_stdlog, " bytes=");
3975 fprintf_unfiltered (gdb_stdlog, "[");
3976 for (i = 0; i < register_size (gdbarch, regnum); i++)
3977 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3978 fprintf_unfiltered (gdb_stdlog, "]");
3981 fprintf_unfiltered (gdb_stdlog, " }\n");
3984 /* Dispose of the intermediate values. This prevents
3985 watchpoints from trying to watch the saved frame pointer. */
3986 value_free_to_mark (mark);
3989 /* Load the actual content of a lazy value. Fetch the data from the
3990 user's process and clear the lazy flag to indicate that the data in
3991 the buffer is valid.
3993 If the value is zero-length, we avoid calling read_memory, which
3994 would abort. We mark the value as fetched anyway -- all 0 bytes of
3995 it. */
3997 void
3998 value_fetch_lazy (struct value *val)
4000 gdb_assert (value_lazy (val));
4001 allocate_value_contents (val);
4002 /* A value is either lazy, or fully fetched. The
4003 availability/validity is only established as we try to fetch a
4004 value. */
4005 gdb_assert (val->optimized_out.empty ());
4006 gdb_assert (val->unavailable.empty ());
4007 if (value_bitsize (val))
4008 value_fetch_lazy_bitfield (val);
4009 else if (VALUE_LVAL (val) == lval_memory)
4010 value_fetch_lazy_memory (val);
4011 else if (VALUE_LVAL (val) == lval_register)
4012 value_fetch_lazy_register (val);
4013 else if (VALUE_LVAL (val) == lval_computed
4014 && value_computed_funcs (val)->read != NULL)
4015 value_computed_funcs (val)->read (val);
4016 else
4017 internal_error (__FILE__, __LINE__, _("Unexpected lazy value type."));
4019 set_value_lazy (val, 0);
4022 /* Implementation of the convenience function $_isvoid. */
4024 static struct value *
4025 isvoid_internal_fn (struct gdbarch *gdbarch,
4026 const struct language_defn *language,
4027 void *cookie, int argc, struct value **argv)
4029 int ret;
4031 if (argc != 1)
4032 error (_("You must provide one argument for $_isvoid."));
4034 ret = value_type (argv[0])->code () == TYPE_CODE_VOID;
4036 return value_from_longest (builtin_type (gdbarch)->builtin_int, ret);
4039 /* Implementation of the convenience function $_creal. Extracts the
4040 real part from a complex number. */
4042 static struct value *
4043 creal_internal_fn (struct gdbarch *gdbarch,
4044 const struct language_defn *language,
4045 void *cookie, int argc, struct value **argv)
4047 if (argc != 1)
4048 error (_("You must provide one argument for $_creal."));
4050 value *cval = argv[0];
4051 type *ctype = check_typedef (value_type (cval));
4052 if (ctype->code () != TYPE_CODE_COMPLEX)
4053 error (_("expected a complex number"));
4054 return value_real_part (cval);
4057 /* Implementation of the convenience function $_cimag. Extracts the
4058 imaginary part from a complex number. */
4060 static struct value *
4061 cimag_internal_fn (struct gdbarch *gdbarch,
4062 const struct language_defn *language,
4063 void *cookie, int argc,
4064 struct value **argv)
4066 if (argc != 1)
4067 error (_("You must provide one argument for $_cimag."));
4069 value *cval = argv[0];
4070 type *ctype = check_typedef (value_type (cval));
4071 if (ctype->code () != TYPE_CODE_COMPLEX)
4072 error (_("expected a complex number"));
4073 return value_imaginary_part (cval);
4076 #if GDB_SELF_TEST
4077 namespace selftests
4080 /* Test the ranges_contain function. */
4082 static void
4083 test_ranges_contain ()
4085 std::vector<range> ranges;
4086 range r;
4088 /* [10, 14] */
4089 r.offset = 10;
4090 r.length = 5;
4091 ranges.push_back (r);
4093 /* [20, 24] */
4094 r.offset = 20;
4095 r.length = 5;
4096 ranges.push_back (r);
4098 /* [2, 6] */
4099 SELF_CHECK (!ranges_contain (ranges, 2, 5));
4100 /* [9, 13] */
4101 SELF_CHECK (ranges_contain (ranges, 9, 5));
4102 /* [10, 11] */
4103 SELF_CHECK (ranges_contain (ranges, 10, 2));
4104 /* [10, 14] */
4105 SELF_CHECK (ranges_contain (ranges, 10, 5));
4106 /* [13, 18] */
4107 SELF_CHECK (ranges_contain (ranges, 13, 6));
4108 /* [14, 18] */
4109 SELF_CHECK (ranges_contain (ranges, 14, 5));
4110 /* [15, 18] */
4111 SELF_CHECK (!ranges_contain (ranges, 15, 4));
4112 /* [16, 19] */
4113 SELF_CHECK (!ranges_contain (ranges, 16, 4));
4114 /* [16, 21] */
4115 SELF_CHECK (ranges_contain (ranges, 16, 6));
4116 /* [21, 21] */
4117 SELF_CHECK (ranges_contain (ranges, 21, 1));
4118 /* [21, 25] */
4119 SELF_CHECK (ranges_contain (ranges, 21, 5));
4120 /* [26, 28] */
4121 SELF_CHECK (!ranges_contain (ranges, 26, 3));
4124 /* Check that RANGES contains the same ranges as EXPECTED. */
4126 static bool
4127 check_ranges_vector (gdb::array_view<const range> ranges,
4128 gdb::array_view<const range> expected)
4130 return ranges == expected;
4133 /* Test the insert_into_bit_range_vector function. */
4135 static void
4136 test_insert_into_bit_range_vector ()
4138 std::vector<range> ranges;
4140 /* [10, 14] */
4142 insert_into_bit_range_vector (&ranges, 10, 5);
4143 static const range expected[] = {
4144 {10, 5}
4146 SELF_CHECK (check_ranges_vector (ranges, expected));
4149 /* [10, 14] */
4151 insert_into_bit_range_vector (&ranges, 11, 4);
4152 static const range expected = {10, 5};
4153 SELF_CHECK (check_ranges_vector (ranges, expected));
4156 /* [10, 14] [20, 24] */
4158 insert_into_bit_range_vector (&ranges, 20, 5);
4159 static const range expected[] = {
4160 {10, 5},
4161 {20, 5},
4163 SELF_CHECK (check_ranges_vector (ranges, expected));
4166 /* [10, 14] [17, 24] */
4168 insert_into_bit_range_vector (&ranges, 17, 5);
4169 static const range expected[] = {
4170 {10, 5},
4171 {17, 8},
4173 SELF_CHECK (check_ranges_vector (ranges, expected));
4176 /* [2, 8] [10, 14] [17, 24] */
4178 insert_into_bit_range_vector (&ranges, 2, 7);
4179 static const range expected[] = {
4180 {2, 7},
4181 {10, 5},
4182 {17, 8},
4184 SELF_CHECK (check_ranges_vector (ranges, expected));
4187 /* [2, 14] [17, 24] */
4189 insert_into_bit_range_vector (&ranges, 9, 1);
4190 static const range expected[] = {
4191 {2, 13},
4192 {17, 8},
4194 SELF_CHECK (check_ranges_vector (ranges, expected));
4197 /* [2, 14] [17, 24] */
4199 insert_into_bit_range_vector (&ranges, 9, 1);
4200 static const range expected[] = {
4201 {2, 13},
4202 {17, 8},
4204 SELF_CHECK (check_ranges_vector (ranges, expected));
4207 /* [2, 33] */
4209 insert_into_bit_range_vector (&ranges, 4, 30);
4210 static const range expected = {2, 32};
4211 SELF_CHECK (check_ranges_vector (ranges, expected));
4215 } /* namespace selftests */
4216 #endif /* GDB_SELF_TEST */
4218 void _initialize_values ();
4219 void
4220 _initialize_values ()
4222 add_cmd ("convenience", no_class, show_convenience, _("\
4223 Debugger convenience (\"$foo\") variables and functions.\n\
4224 Convenience variables are created when you assign them values;\n\
4225 thus, \"set $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\
4227 A few convenience variables are given values automatically:\n\
4228 \"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
4229 \"$__\" holds the contents of the last address examined with \"x\"."
4230 #ifdef HAVE_PYTHON
4231 "\n\n\
4232 Convenience functions are defined via the Python API."
4233 #endif
4234 ), &showlist);
4235 add_alias_cmd ("conv", "convenience", no_class, 1, &showlist);
4237 add_cmd ("values", no_set_class, show_values, _("\
4238 Elements of value history around item number IDX (or last ten)."),
4239 &showlist);
4241 add_com ("init-if-undefined", class_vars, init_if_undefined_command, _("\
4242 Initialize a convenience variable if necessary.\n\
4243 init-if-undefined VARIABLE = EXPRESSION\n\
4244 Set an internal VARIABLE to the result of the EXPRESSION if it does not\n\
4245 exist or does not contain a value. The EXPRESSION is not evaluated if the\n\
4246 VARIABLE is already initialized."));
4248 add_prefix_cmd ("function", no_class, function_command, _("\
4249 Placeholder command for showing help on convenience functions."),
4250 &functionlist, "function ", 0, &cmdlist);
4252 add_internal_function ("_isvoid", _("\
4253 Check whether an expression is void.\n\
4254 Usage: $_isvoid (expression)\n\
4255 Return 1 if the expression is void, zero otherwise."),
4256 isvoid_internal_fn, NULL);
4258 add_internal_function ("_creal", _("\
4259 Extract the real part of a complex number.\n\
4260 Usage: $_creal (expression)\n\
4261 Return the real part of a complex number, the type depends on the\n\
4262 type of a complex number."),
4263 creal_internal_fn, NULL);
4265 add_internal_function ("_cimag", _("\
4266 Extract the imaginary part of a complex number.\n\
4267 Usage: $_cimag (expression)\n\
4268 Return the imaginary part of a complex number, the type depends on the\n\
4269 type of a complex number."),
4270 cimag_internal_fn, NULL);
4272 add_setshow_zuinteger_unlimited_cmd ("max-value-size",
4273 class_support, &max_value_size, _("\
4274 Set maximum sized value gdb will load from the inferior."), _("\
4275 Show maximum sized value gdb will load from the inferior."), _("\
4276 Use this to control the maximum size, in bytes, of a value that gdb\n\
4277 will load from the inferior. Setting this value to 'unlimited'\n\
4278 disables checking.\n\
4279 Setting this does not invalidate already allocated values, it only\n\
4280 prevents future values, larger than this size, from being allocated."),
4281 set_max_value_size,
4282 show_max_value_size,
4283 &setlist, &showlist);
4284 #if GDB_SELF_TEST
4285 selftests::register_test ("ranges_contain", selftests::test_ranges_contain);
4286 selftests::register_test ("insert_into_bit_range_vector",
4287 selftests::test_insert_into_bit_range_vector);
4288 #endif
4291 /* See value.h. */
4293 void
4294 finalize_values ()
4296 all_values.clear ();