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