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