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