* gdb.base/completion.exp: Update expected output following
[deliverable/binutils-gdb.git] / gdb / value.c
CommitLineData
c906108c 1/* Low level packing and unpacking of values for GDB, the GNU Debugger.
1bac305b 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
9b254dd1 4 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4f2aea11 5 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
23#include "gdb_string.h"
24#include "symtab.h"
25#include "gdbtypes.h"
26#include "value.h"
27#include "gdbcore.h"
c906108c
SS
28#include "command.h"
29#include "gdbcmd.h"
30#include "target.h"
31#include "language.h"
c906108c 32#include "demangle.h"
d16aafd8 33#include "doublest.h"
5ae326fa 34#include "gdb_assert.h"
36160dc4 35#include "regcache.h"
fe898f56 36#include "block.h"
27bc4d80 37#include "dfp.h"
bccdca4a 38#include "objfiles.h"
c906108c 39
a08702d6
TJB
40#include "python/python.h"
41
c906108c
SS
42/* Prototypes for exported functions. */
43
a14ed312 44void _initialize_values (void);
c906108c 45
91294c83
AC
46struct value
47{
48 /* Type of value; either not an lval, or one of the various
49 different possible kinds of lval. */
50 enum lval_type lval;
51
52 /* Is it modifiable? Only relevant if lval != not_lval. */
53 int modifiable;
54
55 /* Location of value (if lval). */
56 union
57 {
58 /* If lval == lval_memory, this is the address in the inferior.
59 If lval == lval_register, this is the byte offset into the
60 registers structure. */
61 CORE_ADDR address;
62
63 /* Pointer to internal variable. */
64 struct internalvar *internalvar;
65 } location;
66
67 /* Describes offset of a value within lval of a structure in bytes.
68 If lval == lval_memory, this is an offset to the address. If
69 lval == lval_register, this is a further offset from
70 location.address within the registers structure. Note also the
71 member embedded_offset below. */
72 int offset;
73
74 /* Only used for bitfields; number of bits contained in them. */
75 int bitsize;
76
77 /* Only used for bitfields; position of start of field. For
32c9a795
MD
78 gdbarch_bits_big_endian=0 targets, it is the position of the LSB. For
79 gdbarch_bits_big_endian=1 targets, it is the position of the MSB. */
91294c83
AC
80 int bitpos;
81
82 /* Frame register value is relative to. This will be described in
83 the lval enum above as "lval_register". */
84 struct frame_id frame_id;
85
86 /* Type of the value. */
87 struct type *type;
88
89 /* If a value represents a C++ object, then the `type' field gives
90 the object's compile-time type. If the object actually belongs
91 to some class derived from `type', perhaps with other base
92 classes and additional members, then `type' is just a subobject
93 of the real thing, and the full object is probably larger than
94 `type' would suggest.
95
96 If `type' is a dynamic class (i.e. one with a vtable), then GDB
97 can actually determine the object's run-time type by looking at
98 the run-time type information in the vtable. When this
99 information is available, we may elect to read in the entire
100 object, for several reasons:
101
102 - When printing the value, the user would probably rather see the
103 full object, not just the limited portion apparent from the
104 compile-time type.
105
106 - If `type' has virtual base classes, then even printing `type'
107 alone may require reaching outside the `type' portion of the
108 object to wherever the virtual base class has been stored.
109
110 When we store the entire object, `enclosing_type' is the run-time
111 type -- the complete object -- and `embedded_offset' is the
112 offset of `type' within that larger type, in bytes. The
113 value_contents() macro takes `embedded_offset' into account, so
114 most GDB code continues to see the `type' portion of the value,
115 just as the inferior would.
116
117 If `type' is a pointer to an object, then `enclosing_type' is a
118 pointer to the object's run-time type, and `pointed_to_offset' is
119 the offset in bytes from the full object to the pointed-to object
120 -- that is, the value `embedded_offset' would have if we followed
121 the pointer and fetched the complete object. (I don't really see
122 the point. Why not just determine the run-time type when you
123 indirect, and avoid the special case? The contents don't matter
124 until you indirect anyway.)
125
126 If we're not doing anything fancy, `enclosing_type' is equal to
127 `type', and `embedded_offset' is zero, so everything works
128 normally. */
129 struct type *enclosing_type;
130 int embedded_offset;
131 int pointed_to_offset;
132
133 /* Values are stored in a chain, so that they can be deleted easily
134 over calls to the inferior. Values assigned to internal
a08702d6
TJB
135 variables, put into the value history or exposed to Python are
136 taken off this list. */
91294c83
AC
137 struct value *next;
138
139 /* Register number if the value is from a register. */
140 short regnum;
141
142 /* If zero, contents of this value are in the contents field. If
9214ee5f
DJ
143 nonzero, contents are in inferior. If the lval field is lval_memory,
144 the contents are in inferior memory at location.address plus offset.
145 The lval field may also be lval_register.
91294c83
AC
146
147 WARNING: This field is used by the code which handles watchpoints
148 (see breakpoint.c) to decide whether a particular value can be
149 watched by hardware watchpoints. If the lazy flag is set for
150 some member of a value chain, it is assumed that this member of
151 the chain doesn't need to be watched as part of watching the
152 value itself. This is how GDB avoids watching the entire struct
153 or array when the user wants to watch a single struct member or
154 array element. If you ever change the way lazy flag is set and
155 reset, be sure to consider this use as well! */
156 char lazy;
157
158 /* If nonzero, this is the value of a variable which does not
159 actually exist in the program. */
160 char optimized_out;
161
42be36b3
CT
162 /* If value is a variable, is it initialized or not. */
163 int initialized;
164
91294c83
AC
165 /* Actual contents of the value. For use of this value; setting it
166 uses the stuff above. Not valid if lazy is nonzero. Target
167 byte-order. We force it to be aligned properly for any possible
168 value. Note that a value therefore extends beyond what is
169 declared here. */
170 union
171 {
fc1a4b47 172 gdb_byte contents[1];
91294c83
AC
173 DOUBLEST force_doublest_align;
174 LONGEST force_longest_align;
175 CORE_ADDR force_core_addr_align;
176 void *force_pointer_align;
177 } aligner;
178 /* Do not add any new members here -- contents above will trash
179 them. */
180};
181
c906108c
SS
182/* Prototypes for local functions. */
183
a14ed312 184static void show_values (char *, int);
c906108c 185
a14ed312 186static void show_convenience (char *, int);
c906108c 187
c906108c
SS
188
189/* The value-history records all the values printed
190 by print commands during this session. Each chunk
191 records 60 consecutive values. The first chunk on
192 the chain records the most recent values.
193 The total number of values is in value_history_count. */
194
195#define VALUE_HISTORY_CHUNK 60
196
197struct value_history_chunk
c5aa993b
JM
198 {
199 struct value_history_chunk *next;
f23631e4 200 struct value *values[VALUE_HISTORY_CHUNK];
c5aa993b 201 };
c906108c
SS
202
203/* Chain of chunks now in use. */
204
205static struct value_history_chunk *value_history_chain;
206
207static int value_history_count; /* Abs number of last entry stored */
208\f
209/* List of all value objects currently allocated
210 (except for those released by calls to release_value)
211 This is so they can be freed after each command. */
212
f23631e4 213static struct value *all_values;
c906108c
SS
214
215/* Allocate a value that has the correct length for type TYPE. */
216
f23631e4 217struct value *
fba45db2 218allocate_value (struct type *type)
c906108c 219{
f23631e4 220 struct value *val;
c906108c
SS
221 struct type *atype = check_typedef (type);
222
5b90c7b5 223 val = (struct value *) xzalloc (sizeof (struct value) + TYPE_LENGTH (atype));
df407dfe 224 val->next = all_values;
c906108c 225 all_values = val;
df407dfe 226 val->type = type;
4754a64e 227 val->enclosing_type = type;
c906108c
SS
228 VALUE_LVAL (val) = not_lval;
229 VALUE_ADDRESS (val) = 0;
1df6926e 230 VALUE_FRAME_ID (val) = null_frame_id;
df407dfe
AC
231 val->offset = 0;
232 val->bitpos = 0;
233 val->bitsize = 0;
9ee8fc9d 234 VALUE_REGNUM (val) = -1;
d69fe07e 235 val->lazy = 0;
feb13ab0 236 val->optimized_out = 0;
13c3b5f5 237 val->embedded_offset = 0;
b44d461b 238 val->pointed_to_offset = 0;
c906108c 239 val->modifiable = 1;
42be36b3 240 val->initialized = 1; /* Default to initialized. */
c906108c
SS
241 return val;
242}
243
244/* Allocate a value that has the correct length
938f5214 245 for COUNT repetitions of type TYPE. */
c906108c 246
f23631e4 247struct value *
fba45db2 248allocate_repeat_value (struct type *type, int count)
c906108c 249{
c5aa993b 250 int low_bound = current_language->string_lower_bound; /* ??? */
c906108c
SS
251 /* FIXME-type-allocation: need a way to free this type when we are
252 done with it. */
253 struct type *range_type
6d84d3d8 254 = create_range_type ((struct type *) NULL, builtin_type_int32,
c5aa993b 255 low_bound, count + low_bound - 1);
c906108c
SS
256 /* FIXME-type-allocation: need a way to free this type when we are
257 done with it. */
258 return allocate_value (create_array_type ((struct type *) NULL,
259 type, range_type));
260}
261
a08702d6
TJB
262/* Needed if another module needs to maintain its on list of values. */
263void
264value_prepend_to_list (struct value **head, struct value *val)
265{
266 val->next = *head;
267 *head = val;
268}
269
270/* Needed if another module needs to maintain its on list of values. */
271void
272value_remove_from_list (struct value **head, struct value *val)
273{
274 struct value *prev;
275
276 if (*head == val)
277 *head = (*head)->next;
278 else
279 for (prev = *head; prev->next; prev = prev->next)
280 if (prev->next == val)
281 {
282 prev->next = val->next;
283 break;
284 }
285}
286
df407dfe
AC
287/* Accessor methods. */
288
17cf0ecd
AC
289struct value *
290value_next (struct value *value)
291{
292 return value->next;
293}
294
df407dfe
AC
295struct type *
296value_type (struct value *value)
297{
298 return value->type;
299}
04624583
AC
300void
301deprecated_set_value_type (struct value *value, struct type *type)
302{
303 value->type = type;
304}
df407dfe
AC
305
306int
307value_offset (struct value *value)
308{
309 return value->offset;
310}
f5cf64a7
AC
311void
312set_value_offset (struct value *value, int offset)
313{
314 value->offset = offset;
315}
df407dfe
AC
316
317int
318value_bitpos (struct value *value)
319{
320 return value->bitpos;
321}
9bbda503
AC
322void
323set_value_bitpos (struct value *value, int bit)
324{
325 value->bitpos = bit;
326}
df407dfe
AC
327
328int
329value_bitsize (struct value *value)
330{
331 return value->bitsize;
332}
9bbda503
AC
333void
334set_value_bitsize (struct value *value, int bit)
335{
336 value->bitsize = bit;
337}
df407dfe 338
fc1a4b47 339gdb_byte *
990a07ab
AC
340value_contents_raw (struct value *value)
341{
342 return value->aligner.contents + value->embedded_offset;
343}
344
fc1a4b47 345gdb_byte *
990a07ab
AC
346value_contents_all_raw (struct value *value)
347{
348 return value->aligner.contents;
349}
350
4754a64e
AC
351struct type *
352value_enclosing_type (struct value *value)
353{
354 return value->enclosing_type;
355}
356
fc1a4b47 357const gdb_byte *
46615f07
AC
358value_contents_all (struct value *value)
359{
360 if (value->lazy)
361 value_fetch_lazy (value);
362 return value->aligner.contents;
363}
364
d69fe07e
AC
365int
366value_lazy (struct value *value)
367{
368 return value->lazy;
369}
370
dfa52d88
AC
371void
372set_value_lazy (struct value *value, int val)
373{
374 value->lazy = val;
375}
376
fc1a4b47 377const gdb_byte *
0fd88904
AC
378value_contents (struct value *value)
379{
380 return value_contents_writeable (value);
381}
382
fc1a4b47 383gdb_byte *
0fd88904
AC
384value_contents_writeable (struct value *value)
385{
386 if (value->lazy)
387 value_fetch_lazy (value);
fc0c53a0 388 return value_contents_raw (value);
0fd88904
AC
389}
390
a6c442d8
MK
391/* Return non-zero if VAL1 and VAL2 have the same contents. Note that
392 this function is different from value_equal; in C the operator ==
393 can return 0 even if the two values being compared are equal. */
394
395int
396value_contents_equal (struct value *val1, struct value *val2)
397{
398 struct type *type1;
399 struct type *type2;
400 int len;
401
402 type1 = check_typedef (value_type (val1));
403 type2 = check_typedef (value_type (val2));
404 len = TYPE_LENGTH (type1);
405 if (len != TYPE_LENGTH (type2))
406 return 0;
407
408 return (memcmp (value_contents (val1), value_contents (val2), len) == 0);
409}
410
feb13ab0
AC
411int
412value_optimized_out (struct value *value)
413{
414 return value->optimized_out;
415}
416
417void
418set_value_optimized_out (struct value *value, int val)
419{
420 value->optimized_out = val;
421}
13c3b5f5
AC
422
423int
424value_embedded_offset (struct value *value)
425{
426 return value->embedded_offset;
427}
428
429void
430set_value_embedded_offset (struct value *value, int val)
431{
432 value->embedded_offset = val;
433}
b44d461b
AC
434
435int
436value_pointed_to_offset (struct value *value)
437{
438 return value->pointed_to_offset;
439}
440
441void
442set_value_pointed_to_offset (struct value *value, int val)
443{
444 value->pointed_to_offset = val;
445}
13bb5560
AC
446
447enum lval_type *
448deprecated_value_lval_hack (struct value *value)
449{
450 return &value->lval;
451}
452
453CORE_ADDR *
454deprecated_value_address_hack (struct value *value)
455{
456 return &value->location.address;
457}
458
459struct internalvar **
460deprecated_value_internalvar_hack (struct value *value)
461{
462 return &value->location.internalvar;
463}
464
465struct frame_id *
466deprecated_value_frame_id_hack (struct value *value)
467{
468 return &value->frame_id;
469}
470
471short *
472deprecated_value_regnum_hack (struct value *value)
473{
474 return &value->regnum;
475}
88e3b34b
AC
476
477int
478deprecated_value_modifiable (struct value *value)
479{
480 return value->modifiable;
481}
482void
483deprecated_set_value_modifiable (struct value *value, int modifiable)
484{
485 value->modifiable = modifiable;
486}
990a07ab 487\f
c906108c
SS
488/* Return a mark in the value chain. All values allocated after the
489 mark is obtained (except for those released) are subject to being freed
490 if a subsequent value_free_to_mark is passed the mark. */
f23631e4 491struct value *
fba45db2 492value_mark (void)
c906108c
SS
493{
494 return all_values;
495}
496
497/* Free all values allocated since MARK was obtained by value_mark
498 (except for those released). */
499void
f23631e4 500value_free_to_mark (struct value *mark)
c906108c 501{
f23631e4
AC
502 struct value *val;
503 struct value *next;
c906108c
SS
504
505 for (val = all_values; val && val != mark; val = next)
506 {
df407dfe 507 next = val->next;
c906108c
SS
508 value_free (val);
509 }
510 all_values = val;
511}
512
513/* Free all the values that have been allocated (except for those released).
514 Called after each command, successful or not. */
515
516void
fba45db2 517free_all_values (void)
c906108c 518{
f23631e4
AC
519 struct value *val;
520 struct value *next;
c906108c
SS
521
522 for (val = all_values; val; val = next)
523 {
df407dfe 524 next = val->next;
c906108c
SS
525 value_free (val);
526 }
527
528 all_values = 0;
529}
530
531/* Remove VAL from the chain all_values
532 so it will not be freed automatically. */
533
534void
f23631e4 535release_value (struct value *val)
c906108c 536{
f23631e4 537 struct value *v;
c906108c
SS
538
539 if (all_values == val)
540 {
541 all_values = val->next;
542 return;
543 }
544
545 for (v = all_values; v; v = v->next)
546 {
547 if (v->next == val)
548 {
549 v->next = val->next;
550 break;
551 }
552 }
553}
554
555/* Release all values up to mark */
f23631e4
AC
556struct value *
557value_release_to_mark (struct value *mark)
c906108c 558{
f23631e4
AC
559 struct value *val;
560 struct value *next;
c906108c 561
df407dfe
AC
562 for (val = next = all_values; next; next = next->next)
563 if (next->next == mark)
c906108c 564 {
df407dfe
AC
565 all_values = next->next;
566 next->next = NULL;
c906108c
SS
567 return val;
568 }
569 all_values = 0;
570 return val;
571}
572
573/* Return a copy of the value ARG.
574 It contains the same contents, for same memory address,
575 but it's a different block of storage. */
576
f23631e4
AC
577struct value *
578value_copy (struct value *arg)
c906108c 579{
4754a64e 580 struct type *encl_type = value_enclosing_type (arg);
f23631e4 581 struct value *val = allocate_value (encl_type);
df407dfe 582 val->type = arg->type;
c906108c 583 VALUE_LVAL (val) = VALUE_LVAL (arg);
6f7c8fc2 584 val->location = arg->location;
df407dfe
AC
585 val->offset = arg->offset;
586 val->bitpos = arg->bitpos;
587 val->bitsize = arg->bitsize;
1df6926e 588 VALUE_FRAME_ID (val) = VALUE_FRAME_ID (arg);
9ee8fc9d 589 VALUE_REGNUM (val) = VALUE_REGNUM (arg);
d69fe07e 590 val->lazy = arg->lazy;
feb13ab0 591 val->optimized_out = arg->optimized_out;
13c3b5f5 592 val->embedded_offset = value_embedded_offset (arg);
b44d461b 593 val->pointed_to_offset = arg->pointed_to_offset;
c906108c 594 val->modifiable = arg->modifiable;
d69fe07e 595 if (!value_lazy (val))
c906108c 596 {
990a07ab 597 memcpy (value_contents_all_raw (val), value_contents_all_raw (arg),
4754a64e 598 TYPE_LENGTH (value_enclosing_type (arg)));
c906108c
SS
599
600 }
601 return val;
602}
603\f
604/* Access to the value history. */
605
606/* Record a new value in the value history.
607 Returns the absolute history index of the entry.
608 Result of -1 indicates the value was not saved; otherwise it is the
609 value history index of this new item. */
610
611int
f23631e4 612record_latest_value (struct value *val)
c906108c
SS
613{
614 int i;
615
616 /* We don't want this value to have anything to do with the inferior anymore.
617 In particular, "set $1 = 50" should not affect the variable from which
618 the value was taken, and fast watchpoints should be able to assume that
619 a value on the value history never changes. */
d69fe07e 620 if (value_lazy (val))
c906108c
SS
621 value_fetch_lazy (val);
622 /* We preserve VALUE_LVAL so that the user can find out where it was fetched
623 from. This is a bit dubious, because then *&$1 does not just return $1
624 but the current contents of that location. c'est la vie... */
625 val->modifiable = 0;
626 release_value (val);
627
628 /* Here we treat value_history_count as origin-zero
629 and applying to the value being stored now. */
630
631 i = value_history_count % VALUE_HISTORY_CHUNK;
632 if (i == 0)
633 {
f23631e4 634 struct value_history_chunk *new
c5aa993b
JM
635 = (struct value_history_chunk *)
636 xmalloc (sizeof (struct value_history_chunk));
c906108c
SS
637 memset (new->values, 0, sizeof new->values);
638 new->next = value_history_chain;
639 value_history_chain = new;
640 }
641
642 value_history_chain->values[i] = val;
643
644 /* Now we regard value_history_count as origin-one
645 and applying to the value just stored. */
646
647 return ++value_history_count;
648}
649
650/* Return a copy of the value in the history with sequence number NUM. */
651
f23631e4 652struct value *
fba45db2 653access_value_history (int num)
c906108c 654{
f23631e4 655 struct value_history_chunk *chunk;
52f0bd74
AC
656 int i;
657 int absnum = num;
c906108c
SS
658
659 if (absnum <= 0)
660 absnum += value_history_count;
661
662 if (absnum <= 0)
663 {
664 if (num == 0)
8a3fe4f8 665 error (_("The history is empty."));
c906108c 666 else if (num == 1)
8a3fe4f8 667 error (_("There is only one value in the history."));
c906108c 668 else
8a3fe4f8 669 error (_("History does not go back to $$%d."), -num);
c906108c
SS
670 }
671 if (absnum > value_history_count)
8a3fe4f8 672 error (_("History has not yet reached $%d."), absnum);
c906108c
SS
673
674 absnum--;
675
676 /* Now absnum is always absolute and origin zero. */
677
678 chunk = value_history_chain;
679 for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK - absnum / VALUE_HISTORY_CHUNK;
680 i > 0; i--)
681 chunk = chunk->next;
682
683 return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
684}
685
c906108c 686static void
fba45db2 687show_values (char *num_exp, int from_tty)
c906108c 688{
52f0bd74 689 int i;
f23631e4 690 struct value *val;
c906108c
SS
691 static int num = 1;
692
693 if (num_exp)
694 {
f132ba9d
TJB
695 /* "show values +" should print from the stored position.
696 "show values <exp>" should print around value number <exp>. */
c906108c 697 if (num_exp[0] != '+' || num_exp[1] != '\0')
bb518678 698 num = parse_and_eval_long (num_exp) - 5;
c906108c
SS
699 }
700 else
701 {
f132ba9d 702 /* "show values" means print the last 10 values. */
c906108c
SS
703 num = value_history_count - 9;
704 }
705
706 if (num <= 0)
707 num = 1;
708
709 for (i = num; i < num + 10 && i <= value_history_count; i++)
710 {
711 val = access_value_history (i);
a3f17187 712 printf_filtered (("$%d = "), i);
c906108c 713 value_print (val, gdb_stdout, 0, Val_pretty_default);
a3f17187 714 printf_filtered (("\n"));
c906108c
SS
715 }
716
f132ba9d 717 /* The next "show values +" should start after what we just printed. */
c906108c
SS
718 num += 10;
719
720 /* Hitting just return after this command should do the same thing as
f132ba9d
TJB
721 "show values +". If num_exp is null, this is unnecessary, since
722 "show values +" is not useful after "show values". */
c906108c
SS
723 if (from_tty && num_exp)
724 {
725 num_exp[0] = '+';
726 num_exp[1] = '\0';
727 }
728}
729\f
730/* Internal variables. These are variables within the debugger
731 that hold values assigned by debugger commands.
732 The user refers to them with a '$' prefix
733 that does not appear in the variable names stored internally. */
734
735static struct internalvar *internalvars;
736
53e5f3cf
AS
737/* If the variable does not already exist create it and give it the value given.
738 If no value is given then the default is zero. */
739static void
740init_if_undefined_command (char* args, int from_tty)
741{
742 struct internalvar* intvar;
743
744 /* Parse the expression - this is taken from set_command(). */
745 struct expression *expr = parse_expression (args);
746 register struct cleanup *old_chain =
747 make_cleanup (free_current_contents, &expr);
748
749 /* Validate the expression.
750 Was the expression an assignment?
751 Or even an expression at all? */
752 if (expr->nelts == 0 || expr->elts[0].opcode != BINOP_ASSIGN)
753 error (_("Init-if-undefined requires an assignment expression."));
754
755 /* Extract the variable from the parsed expression.
756 In the case of an assign the lvalue will be in elts[1] and elts[2]. */
757 if (expr->elts[1].opcode != OP_INTERNALVAR)
758 error (_("The first parameter to init-if-undefined should be a GDB variable."));
759 intvar = expr->elts[2].internalvar;
760
761 /* Only evaluate the expression if the lvalue is void.
762 This may still fail if the expresssion is invalid. */
763 if (TYPE_CODE (value_type (intvar->value)) == TYPE_CODE_VOID)
764 evaluate_expression (expr);
765
766 do_cleanups (old_chain);
767}
768
769
c906108c
SS
770/* Look up an internal variable with name NAME. NAME should not
771 normally include a dollar sign.
772
773 If the specified internal variable does not exist,
c4a3d09a 774 the return value is NULL. */
c906108c
SS
775
776struct internalvar *
c4a3d09a 777lookup_only_internalvar (char *name)
c906108c 778{
52f0bd74 779 struct internalvar *var;
c906108c
SS
780
781 for (var = internalvars; var; var = var->next)
5cb316ef 782 if (strcmp (var->name, name) == 0)
c906108c
SS
783 return var;
784
c4a3d09a
MF
785 return NULL;
786}
787
788
789/* Create an internal variable with name NAME and with a void value.
790 NAME should not normally include a dollar sign. */
791
792struct internalvar *
793create_internalvar (char *name)
794{
795 struct internalvar *var;
c906108c 796 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
1754f103 797 var->name = concat (name, (char *)NULL);
c906108c 798 var->value = allocate_value (builtin_type_void);
0d20ae72 799 var->endian = gdbarch_byte_order (current_gdbarch);
c906108c
SS
800 release_value (var->value);
801 var->next = internalvars;
802 internalvars = var;
803 return var;
804}
805
c4a3d09a
MF
806
807/* Look up an internal variable with name NAME. NAME should not
808 normally include a dollar sign.
809
810 If the specified internal variable does not exist,
811 one is created, with a void value. */
812
813struct internalvar *
814lookup_internalvar (char *name)
815{
816 struct internalvar *var;
817
818 var = lookup_only_internalvar (name);
819 if (var)
820 return var;
821
822 return create_internalvar (name);
823}
824
f23631e4 825struct value *
fba45db2 826value_of_internalvar (struct internalvar *var)
c906108c 827{
f23631e4 828 struct value *val;
d3c139e9
AS
829 int i, j;
830 gdb_byte temp;
c906108c 831
c906108c 832 val = value_copy (var->value);
d69fe07e 833 if (value_lazy (val))
c906108c
SS
834 value_fetch_lazy (val);
835 VALUE_LVAL (val) = lval_internalvar;
836 VALUE_INTERNALVAR (val) = var;
d3c139e9
AS
837
838 /* Values are always stored in the target's byte order. When connected to a
839 target this will most likely always be correct, so there's normally no
840 need to worry about it.
841
842 However, internal variables can be set up before the target endian is
843 known and so may become out of date. Fix it up before anybody sees.
844
845 Internal variables usually hold simple scalar values, and we can
846 correct those. More complex values (e.g. structures and floating
847 point types) are left alone, because they would be too complicated
848 to correct. */
849
0d20ae72 850 if (var->endian != gdbarch_byte_order (current_gdbarch))
d3c139e9
AS
851 {
852 gdb_byte *array = value_contents_raw (val);
853 struct type *type = check_typedef (value_enclosing_type (val));
854 switch (TYPE_CODE (type))
855 {
856 case TYPE_CODE_INT:
857 case TYPE_CODE_PTR:
858 /* Reverse the bytes. */
859 for (i = 0, j = TYPE_LENGTH (type) - 1; i < j; i++, j--)
860 {
861 temp = array[j];
862 array[j] = array[i];
863 array[i] = temp;
864 }
865 break;
866 }
867 }
868
c906108c
SS
869 return val;
870}
871
872void
fba45db2 873set_internalvar_component (struct internalvar *var, int offset, int bitpos,
f23631e4 874 int bitsize, struct value *newval)
c906108c 875{
fc1a4b47 876 gdb_byte *addr = value_contents_writeable (var->value) + offset;
c906108c 877
c906108c
SS
878 if (bitsize)
879 modify_field (addr, value_as_long (newval),
880 bitpos, bitsize);
881 else
0fd88904 882 memcpy (addr, value_contents (newval), TYPE_LENGTH (value_type (newval)));
c906108c
SS
883}
884
885void
f23631e4 886set_internalvar (struct internalvar *var, struct value *val)
c906108c 887{
f23631e4 888 struct value *newval;
c906108c 889
c906108c
SS
890 newval = value_copy (val);
891 newval->modifiable = 1;
892
893 /* Force the value to be fetched from the target now, to avoid problems
894 later when this internalvar is referenced and the target is gone or
895 has changed. */
d69fe07e 896 if (value_lazy (newval))
c906108c
SS
897 value_fetch_lazy (newval);
898
899 /* Begin code which must not call error(). If var->value points to
900 something free'd, an error() obviously leaves a dangling pointer.
901 But we also get a danling pointer if var->value points to
902 something in the value chain (i.e., before release_value is
903 called), because after the error free_all_values will get called before
904 long. */
b8c9b27d 905 xfree (var->value);
c906108c 906 var->value = newval;
0d20ae72 907 var->endian = gdbarch_byte_order (current_gdbarch);
c906108c
SS
908 release_value (newval);
909 /* End code which must not call error(). */
910}
911
912char *
fba45db2 913internalvar_name (struct internalvar *var)
c906108c
SS
914{
915 return var->name;
916}
917
ae5a43e0
DJ
918/* Update VALUE before discarding OBJFILE. COPIED_TYPES is used to
919 prevent cycles / duplicates. */
920
921static void
922preserve_one_value (struct value *value, struct objfile *objfile,
923 htab_t copied_types)
924{
925 if (TYPE_OBJFILE (value->type) == objfile)
926 value->type = copy_type_recursive (objfile, value->type, copied_types);
927
928 if (TYPE_OBJFILE (value->enclosing_type) == objfile)
929 value->enclosing_type = copy_type_recursive (objfile,
930 value->enclosing_type,
931 copied_types);
932}
933
934/* Update the internal variables and value history when OBJFILE is
935 discarded; we must copy the types out of the objfile. New global types
936 will be created for every convenience variable which currently points to
937 this objfile's types, and the convenience variables will be adjusted to
938 use the new global types. */
c906108c
SS
939
940void
ae5a43e0 941preserve_values (struct objfile *objfile)
c906108c 942{
ae5a43e0
DJ
943 htab_t copied_types;
944 struct value_history_chunk *cur;
52f0bd74 945 struct internalvar *var;
a08702d6 946 struct value *val;
ae5a43e0 947 int i;
c906108c 948
ae5a43e0
DJ
949 /* Create the hash table. We allocate on the objfile's obstack, since
950 it is soon to be deleted. */
951 copied_types = create_copied_types_hash (objfile);
952
953 for (cur = value_history_chain; cur; cur = cur->next)
954 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
955 if (cur->values[i])
956 preserve_one_value (cur->values[i], objfile, copied_types);
957
958 for (var = internalvars; var; var = var->next)
959 preserve_one_value (var->value, objfile, copied_types);
960
a08702d6
TJB
961 for (val = values_in_python; val; val = val->next)
962 preserve_one_value (val, objfile, copied_types);
963
ae5a43e0 964 htab_delete (copied_types);
c906108c
SS
965}
966
967static void
fba45db2 968show_convenience (char *ignore, int from_tty)
c906108c 969{
52f0bd74 970 struct internalvar *var;
c906108c
SS
971 int varseen = 0;
972
973 for (var = internalvars; var; var = var->next)
974 {
c906108c
SS
975 if (!varseen)
976 {
977 varseen = 1;
978 }
a3f17187 979 printf_filtered (("$%s = "), var->name);
d3c139e9
AS
980 value_print (value_of_internalvar (var), gdb_stdout,
981 0, Val_pretty_default);
a3f17187 982 printf_filtered (("\n"));
c906108c
SS
983 }
984 if (!varseen)
a3f17187
AC
985 printf_unfiltered (_("\
986No debugger convenience variables now defined.\n\
c906108c 987Convenience variables have names starting with \"$\";\n\
a3f17187 988use \"set\" as in \"set $foo = 5\" to define them.\n"));
c906108c
SS
989}
990\f
991/* Extract a value as a C number (either long or double).
992 Knows how to convert fixed values to double, or
993 floating values to long.
994 Does not deallocate the value. */
995
996LONGEST
f23631e4 997value_as_long (struct value *val)
c906108c
SS
998{
999 /* This coerces arrays and functions, which is necessary (e.g.
1000 in disassemble_command). It also dereferences references, which
1001 I suspect is the most logical thing to do. */
994b9211 1002 val = coerce_array (val);
0fd88904 1003 return unpack_long (value_type (val), value_contents (val));
c906108c
SS
1004}
1005
1006DOUBLEST
f23631e4 1007value_as_double (struct value *val)
c906108c
SS
1008{
1009 DOUBLEST foo;
1010 int inv;
c5aa993b 1011
0fd88904 1012 foo = unpack_double (value_type (val), value_contents (val), &inv);
c906108c 1013 if (inv)
8a3fe4f8 1014 error (_("Invalid floating value found in program."));
c906108c
SS
1015 return foo;
1016}
4ef30785 1017
4478b372
JB
1018/* Extract a value as a C pointer. Does not deallocate the value.
1019 Note that val's type may not actually be a pointer; value_as_long
1020 handles all the cases. */
c906108c 1021CORE_ADDR
f23631e4 1022value_as_address (struct value *val)
c906108c
SS
1023{
1024 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
1025 whether we want this to be true eventually. */
1026#if 0
bf6ae464 1027 /* gdbarch_addr_bits_remove is wrong if we are being called for a
c906108c
SS
1028 non-address (e.g. argument to "signal", "info break", etc.), or
1029 for pointers to char, in which the low bits *are* significant. */
bf6ae464 1030 return gdbarch_addr_bits_remove (current_gdbarch, value_as_long (val));
c906108c 1031#else
f312f057
JB
1032
1033 /* There are several targets (IA-64, PowerPC, and others) which
1034 don't represent pointers to functions as simply the address of
1035 the function's entry point. For example, on the IA-64, a
1036 function pointer points to a two-word descriptor, generated by
1037 the linker, which contains the function's entry point, and the
1038 value the IA-64 "global pointer" register should have --- to
1039 support position-independent code. The linker generates
1040 descriptors only for those functions whose addresses are taken.
1041
1042 On such targets, it's difficult for GDB to convert an arbitrary
1043 function address into a function pointer; it has to either find
1044 an existing descriptor for that function, or call malloc and
1045 build its own. On some targets, it is impossible for GDB to
1046 build a descriptor at all: the descriptor must contain a jump
1047 instruction; data memory cannot be executed; and code memory
1048 cannot be modified.
1049
1050 Upon entry to this function, if VAL is a value of type `function'
1051 (that is, TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC), then
1052 VALUE_ADDRESS (val) is the address of the function. This is what
1053 you'll get if you evaluate an expression like `main'. The call
1054 to COERCE_ARRAY below actually does all the usual unary
1055 conversions, which includes converting values of type `function'
1056 to `pointer to function'. This is the challenging conversion
1057 discussed above. Then, `unpack_long' will convert that pointer
1058 back into an address.
1059
1060 So, suppose the user types `disassemble foo' on an architecture
1061 with a strange function pointer representation, on which GDB
1062 cannot build its own descriptors, and suppose further that `foo'
1063 has no linker-built descriptor. The address->pointer conversion
1064 will signal an error and prevent the command from running, even
1065 though the next step would have been to convert the pointer
1066 directly back into the same address.
1067
1068 The following shortcut avoids this whole mess. If VAL is a
1069 function, just return its address directly. */
df407dfe
AC
1070 if (TYPE_CODE (value_type (val)) == TYPE_CODE_FUNC
1071 || TYPE_CODE (value_type (val)) == TYPE_CODE_METHOD)
f312f057
JB
1072 return VALUE_ADDRESS (val);
1073
994b9211 1074 val = coerce_array (val);
fc0c74b1
AC
1075
1076 /* Some architectures (e.g. Harvard), map instruction and data
1077 addresses onto a single large unified address space. For
1078 instance: An architecture may consider a large integer in the
1079 range 0x10000000 .. 0x1000ffff to already represent a data
1080 addresses (hence not need a pointer to address conversion) while
1081 a small integer would still need to be converted integer to
1082 pointer to address. Just assume such architectures handle all
1083 integer conversions in a single function. */
1084
1085 /* JimB writes:
1086
1087 I think INTEGER_TO_ADDRESS is a good idea as proposed --- but we
1088 must admonish GDB hackers to make sure its behavior matches the
1089 compiler's, whenever possible.
1090
1091 In general, I think GDB should evaluate expressions the same way
1092 the compiler does. When the user copies an expression out of
1093 their source code and hands it to a `print' command, they should
1094 get the same value the compiler would have computed. Any
1095 deviation from this rule can cause major confusion and annoyance,
1096 and needs to be justified carefully. In other words, GDB doesn't
1097 really have the freedom to do these conversions in clever and
1098 useful ways.
1099
1100 AndrewC pointed out that users aren't complaining about how GDB
1101 casts integers to pointers; they are complaining that they can't
1102 take an address from a disassembly listing and give it to `x/i'.
1103 This is certainly important.
1104
79dd2d24 1105 Adding an architecture method like integer_to_address() certainly
fc0c74b1
AC
1106 makes it possible for GDB to "get it right" in all circumstances
1107 --- the target has complete control over how things get done, so
1108 people can Do The Right Thing for their target without breaking
1109 anyone else. The standard doesn't specify how integers get
1110 converted to pointers; usually, the ABI doesn't either, but
1111 ABI-specific code is a more reasonable place to handle it. */
1112
df407dfe
AC
1113 if (TYPE_CODE (value_type (val)) != TYPE_CODE_PTR
1114 && TYPE_CODE (value_type (val)) != TYPE_CODE_REF
79dd2d24
AC
1115 && gdbarch_integer_to_address_p (current_gdbarch))
1116 return gdbarch_integer_to_address (current_gdbarch, value_type (val),
0fd88904 1117 value_contents (val));
fc0c74b1 1118
0fd88904 1119 return unpack_long (value_type (val), value_contents (val));
c906108c
SS
1120#endif
1121}
1122\f
1123/* Unpack raw data (copied from debugee, target byte order) at VALADDR
1124 as a long, or as a double, assuming the raw data is described
1125 by type TYPE. Knows how to convert different sizes of values
1126 and can convert between fixed and floating point. We don't assume
1127 any alignment for the raw data. Return value is in host byte order.
1128
1129 If you want functions and arrays to be coerced to pointers, and
1130 references to be dereferenced, call value_as_long() instead.
1131
1132 C++: It is assumed that the front-end has taken care of
1133 all matters concerning pointers to members. A pointer
1134 to member which reaches here is considered to be equivalent
1135 to an INT (or some size). After all, it is only an offset. */
1136
1137LONGEST
fc1a4b47 1138unpack_long (struct type *type, const gdb_byte *valaddr)
c906108c 1139{
52f0bd74
AC
1140 enum type_code code = TYPE_CODE (type);
1141 int len = TYPE_LENGTH (type);
1142 int nosign = TYPE_UNSIGNED (type);
c906108c 1143
c906108c
SS
1144 switch (code)
1145 {
1146 case TYPE_CODE_TYPEDEF:
1147 return unpack_long (check_typedef (type), valaddr);
1148 case TYPE_CODE_ENUM:
4f2aea11 1149 case TYPE_CODE_FLAGS:
c906108c
SS
1150 case TYPE_CODE_BOOL:
1151 case TYPE_CODE_INT:
1152 case TYPE_CODE_CHAR:
1153 case TYPE_CODE_RANGE:
0d5de010 1154 case TYPE_CODE_MEMBERPTR:
c906108c
SS
1155 if (nosign)
1156 return extract_unsigned_integer (valaddr, len);
1157 else
1158 return extract_signed_integer (valaddr, len);
1159
1160 case TYPE_CODE_FLT:
96d2f608 1161 return extract_typed_floating (valaddr, type);
c906108c 1162
4ef30785
TJB
1163 case TYPE_CODE_DECFLOAT:
1164 /* libdecnumber has a function to convert from decimal to integer, but
1165 it doesn't work when the decimal number has a fractional part. */
ba759613 1166 return decimal_to_doublest (valaddr, len);
4ef30785 1167
c906108c
SS
1168 case TYPE_CODE_PTR:
1169 case TYPE_CODE_REF:
1170 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
c5aa993b 1171 whether we want this to be true eventually. */
4478b372 1172 return extract_typed_address (valaddr, type);
c906108c 1173
c906108c 1174 default:
8a3fe4f8 1175 error (_("Value can't be converted to integer."));
c906108c 1176 }
c5aa993b 1177 return 0; /* Placate lint. */
c906108c
SS
1178}
1179
1180/* Return a double value from the specified type and address.
1181 INVP points to an int which is set to 0 for valid value,
1182 1 for invalid value (bad float format). In either case,
1183 the returned double is OK to use. Argument is in target
1184 format, result is in host format. */
1185
1186DOUBLEST
fc1a4b47 1187unpack_double (struct type *type, const gdb_byte *valaddr, int *invp)
c906108c
SS
1188{
1189 enum type_code code;
1190 int len;
1191 int nosign;
1192
1193 *invp = 0; /* Assume valid. */
1194 CHECK_TYPEDEF (type);
1195 code = TYPE_CODE (type);
1196 len = TYPE_LENGTH (type);
1197 nosign = TYPE_UNSIGNED (type);
1198 if (code == TYPE_CODE_FLT)
1199 {
75bc7ddf
AC
1200 /* NOTE: cagney/2002-02-19: There was a test here to see if the
1201 floating-point value was valid (using the macro
1202 INVALID_FLOAT). That test/macro have been removed.
1203
1204 It turns out that only the VAX defined this macro and then
1205 only in a non-portable way. Fixing the portability problem
1206 wouldn't help since the VAX floating-point code is also badly
1207 bit-rotten. The target needs to add definitions for the
ea06eb3d 1208 methods gdbarch_float_format and gdbarch_double_format - these
75bc7ddf
AC
1209 exactly describe the target floating-point format. The
1210 problem here is that the corresponding floatformat_vax_f and
1211 floatformat_vax_d values these methods should be set to are
1212 also not defined either. Oops!
1213
1214 Hopefully someone will add both the missing floatformat
ac79b88b
DJ
1215 definitions and the new cases for floatformat_is_valid (). */
1216
1217 if (!floatformat_is_valid (floatformat_from_type (type), valaddr))
1218 {
1219 *invp = 1;
1220 return 0.0;
1221 }
1222
96d2f608 1223 return extract_typed_floating (valaddr, type);
c906108c 1224 }
4ef30785 1225 else if (code == TYPE_CODE_DECFLOAT)
ba759613 1226 return decimal_to_doublest (valaddr, len);
c906108c
SS
1227 else if (nosign)
1228 {
1229 /* Unsigned -- be sure we compensate for signed LONGEST. */
c906108c 1230 return (ULONGEST) unpack_long (type, valaddr);
c906108c
SS
1231 }
1232 else
1233 {
1234 /* Signed -- we are OK with unpack_long. */
1235 return unpack_long (type, valaddr);
1236 }
1237}
1238
1239/* Unpack raw data (copied from debugee, target byte order) at VALADDR
1240 as a CORE_ADDR, assuming the raw data is described by type TYPE.
1241 We don't assume any alignment for the raw data. Return value is in
1242 host byte order.
1243
1244 If you want functions and arrays to be coerced to pointers, and
1aa20aa8 1245 references to be dereferenced, call value_as_address() instead.
c906108c
SS
1246
1247 C++: It is assumed that the front-end has taken care of
1248 all matters concerning pointers to members. A pointer
1249 to member which reaches here is considered to be equivalent
1250 to an INT (or some size). After all, it is only an offset. */
1251
1252CORE_ADDR
fc1a4b47 1253unpack_pointer (struct type *type, const gdb_byte *valaddr)
c906108c
SS
1254{
1255 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
1256 whether we want this to be true eventually. */
1257 return unpack_long (type, valaddr);
1258}
4478b372 1259
c906108c 1260\f
2c2738a0
DC
1261/* Get the value of the FIELDN'th field (which must be static) of
1262 TYPE. Return NULL if the field doesn't exist or has been
1263 optimized out. */
c906108c 1264
f23631e4 1265struct value *
fba45db2 1266value_static_field (struct type *type, int fieldno)
c906108c 1267{
948e66d9
DJ
1268 struct value *retval;
1269
d6a843b5 1270 if (TYPE_FIELD_LOC_KIND (type, fieldno) == FIELD_LOC_KIND_PHYSADDR)
c906108c 1271 {
948e66d9 1272 retval = value_at (TYPE_FIELD_TYPE (type, fieldno),
00a4c844 1273 TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
c906108c
SS
1274 }
1275 else
1276 {
1277 char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
2570f2b7 1278 struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
948e66d9 1279 if (sym == NULL)
c906108c
SS
1280 {
1281 /* With some compilers, e.g. HP aCC, static data members are reported
c5aa993b
JM
1282 as non-debuggable symbols */
1283 struct minimal_symbol *msym = lookup_minimal_symbol (phys_name, NULL, NULL);
c906108c
SS
1284 if (!msym)
1285 return NULL;
1286 else
c5aa993b 1287 {
948e66d9 1288 retval = value_at (TYPE_FIELD_TYPE (type, fieldno),
00a4c844 1289 SYMBOL_VALUE_ADDRESS (msym));
c906108c
SS
1290 }
1291 }
1292 else
1293 {
948e66d9
DJ
1294 /* SYM should never have a SYMBOL_CLASS which will require
1295 read_var_value to use the FRAME parameter. */
1296 if (symbol_read_needs_frame (sym))
8a3fe4f8
AC
1297 warning (_("static field's value depends on the current "
1298 "frame - bad debug info?"));
948e66d9 1299 retval = read_var_value (sym, NULL);
2b127877 1300 }
948e66d9
DJ
1301 if (retval && VALUE_LVAL (retval) == lval_memory)
1302 SET_FIELD_PHYSADDR (TYPE_FIELD (type, fieldno),
1303 VALUE_ADDRESS (retval));
c906108c 1304 }
948e66d9 1305 return retval;
c906108c
SS
1306}
1307
2b127877
DB
1308/* Change the enclosing type of a value object VAL to NEW_ENCL_TYPE.
1309 You have to be careful here, since the size of the data area for the value
1310 is set by the length of the enclosing type. So if NEW_ENCL_TYPE is bigger
1311 than the old enclosing type, you have to allocate more space for the data.
1312 The return value is a pointer to the new version of this value structure. */
1313
f23631e4
AC
1314struct value *
1315value_change_enclosing_type (struct value *val, struct type *new_encl_type)
2b127877 1316{
4754a64e 1317 if (TYPE_LENGTH (new_encl_type) <= TYPE_LENGTH (value_enclosing_type (val)))
2b127877 1318 {
4754a64e 1319 val->enclosing_type = new_encl_type;
2b127877
DB
1320 return val;
1321 }
1322 else
1323 {
f23631e4
AC
1324 struct value *new_val;
1325 struct value *prev;
2b127877 1326
f23631e4 1327 new_val = (struct value *) xrealloc (val, sizeof (struct value) + TYPE_LENGTH (new_encl_type));
cc303028 1328
4754a64e 1329 new_val->enclosing_type = new_encl_type;
cc303028 1330
2b127877
DB
1331 /* We have to make sure this ends up in the same place in the value
1332 chain as the original copy, so it's clean-up behavior is the same.
1333 If the value has been released, this is a waste of time, but there
1334 is no way to tell that in advance, so... */
1335
1336 if (val != all_values)
1337 {
1338 for (prev = all_values; prev != NULL; prev = prev->next)
1339 {
1340 if (prev->next == val)
1341 {
1342 prev->next = new_val;
1343 break;
1344 }
1345 }
1346 }
1347
1348 return new_val;
1349 }
1350}
1351
c906108c
SS
1352/* Given a value ARG1 (offset by OFFSET bytes)
1353 of a struct or union type ARG_TYPE,
1354 extract and return the value of one of its (non-static) fields.
1355 FIELDNO says which field. */
1356
f23631e4
AC
1357struct value *
1358value_primitive_field (struct value *arg1, int offset,
aa1ee363 1359 int fieldno, struct type *arg_type)
c906108c 1360{
f23631e4 1361 struct value *v;
52f0bd74 1362 struct type *type;
c906108c
SS
1363
1364 CHECK_TYPEDEF (arg_type);
1365 type = TYPE_FIELD_TYPE (arg_type, fieldno);
1366
1367 /* Handle packed fields */
1368
1369 if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
1370 {
1371 v = value_from_longest (type,
1372 unpack_field_as_long (arg_type,
0fd88904 1373 value_contents (arg1)
c5aa993b 1374 + offset,
c906108c 1375 fieldno));
df407dfe
AC
1376 v->bitpos = TYPE_FIELD_BITPOS (arg_type, fieldno) % 8;
1377 v->bitsize = TYPE_FIELD_BITSIZE (arg_type, fieldno);
1378 v->offset = value_offset (arg1) + offset
2e70b7b9 1379 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
c906108c
SS
1380 }
1381 else if (fieldno < TYPE_N_BASECLASSES (arg_type))
1382 {
1383 /* This field is actually a base subobject, so preserve the
1384 entire object's contents for later references to virtual
1385 bases, etc. */
4754a64e 1386 v = allocate_value (value_enclosing_type (arg1));
df407dfe 1387 v->type = type;
a4e2ee12
DJ
1388
1389 /* Lazy register values with offsets are not supported. */
1390 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
1391 value_fetch_lazy (arg1);
1392
1393 if (value_lazy (arg1))
dfa52d88 1394 set_value_lazy (v, 1);
c906108c 1395 else
990a07ab 1396 memcpy (value_contents_all_raw (v), value_contents_all_raw (arg1),
4754a64e 1397 TYPE_LENGTH (value_enclosing_type (arg1)));
df407dfe 1398 v->offset = value_offset (arg1);
13c3b5f5
AC
1399 v->embedded_offset = (offset + value_embedded_offset (arg1)
1400 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8);
c906108c
SS
1401 }
1402 else
1403 {
1404 /* Plain old data member */
1405 offset += TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
1406 v = allocate_value (type);
a4e2ee12
DJ
1407
1408 /* Lazy register values with offsets are not supported. */
1409 if (VALUE_LVAL (arg1) == lval_register && value_lazy (arg1))
1410 value_fetch_lazy (arg1);
1411
1412 if (value_lazy (arg1))
dfa52d88 1413 set_value_lazy (v, 1);
c906108c 1414 else
990a07ab
AC
1415 memcpy (value_contents_raw (v),
1416 value_contents_raw (arg1) + offset,
c906108c 1417 TYPE_LENGTH (type));
df407dfe 1418 v->offset = (value_offset (arg1) + offset
13c3b5f5 1419 + value_embedded_offset (arg1));
c906108c
SS
1420 }
1421 VALUE_LVAL (v) = VALUE_LVAL (arg1);
1422 if (VALUE_LVAL (arg1) == lval_internalvar)
1423 VALUE_LVAL (v) = lval_internalvar_component;
7d85ee02 1424 v->location = arg1->location;
9ee8fc9d 1425 VALUE_REGNUM (v) = VALUE_REGNUM (arg1);
0c16dd26 1426 VALUE_FRAME_ID (v) = VALUE_FRAME_ID (arg1);
c906108c
SS
1427 return v;
1428}
1429
1430/* Given a value ARG1 of a struct or union type,
1431 extract and return the value of one of its (non-static) fields.
1432 FIELDNO says which field. */
1433
f23631e4 1434struct value *
aa1ee363 1435value_field (struct value *arg1, int fieldno)
c906108c 1436{
df407dfe 1437 return value_primitive_field (arg1, 0, fieldno, value_type (arg1));
c906108c
SS
1438}
1439
1440/* Return a non-virtual function as a value.
1441 F is the list of member functions which contains the desired method.
0478d61c
FF
1442 J is an index into F which provides the desired method.
1443
1444 We only use the symbol for its address, so be happy with either a
1445 full symbol or a minimal symbol.
1446 */
c906108c 1447
f23631e4
AC
1448struct value *
1449value_fn_field (struct value **arg1p, struct fn_field *f, int j, struct type *type,
fba45db2 1450 int offset)
c906108c 1451{
f23631e4 1452 struct value *v;
52f0bd74 1453 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
0478d61c 1454 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
c906108c 1455 struct symbol *sym;
0478d61c 1456 struct minimal_symbol *msym;
c906108c 1457
2570f2b7 1458 sym = lookup_symbol (physname, 0, VAR_DOMAIN, 0);
5ae326fa 1459 if (sym != NULL)
0478d61c 1460 {
5ae326fa
AC
1461 msym = NULL;
1462 }
1463 else
1464 {
1465 gdb_assert (sym == NULL);
0478d61c 1466 msym = lookup_minimal_symbol (physname, NULL, NULL);
5ae326fa
AC
1467 if (msym == NULL)
1468 return NULL;
0478d61c
FF
1469 }
1470
c906108c 1471 v = allocate_value (ftype);
0478d61c
FF
1472 if (sym)
1473 {
1474 VALUE_ADDRESS (v) = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
1475 }
1476 else
1477 {
bccdca4a
UW
1478 /* The minimal symbol might point to a function descriptor;
1479 resolve it to the actual code address instead. */
1480 struct objfile *objfile = msymbol_objfile (msym);
1481 struct gdbarch *gdbarch = get_objfile_arch (objfile);
1482
1483 VALUE_ADDRESS (v)
1484 = gdbarch_convert_from_func_ptr_addr
1485 (gdbarch, SYMBOL_VALUE_ADDRESS (msym), &current_target);
0478d61c 1486 }
c906108c
SS
1487
1488 if (arg1p)
c5aa993b 1489 {
df407dfe 1490 if (type != value_type (*arg1p))
c5aa993b
JM
1491 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
1492 value_addr (*arg1p)));
1493
070ad9f0 1494 /* Move the `this' pointer according to the offset.
c5aa993b
JM
1495 VALUE_OFFSET (*arg1p) += offset;
1496 */
c906108c
SS
1497 }
1498
1499 return v;
1500}
1501
c906108c
SS
1502\f
1503/* Unpack a field FIELDNO of the specified TYPE, from the anonymous object at
1504 VALADDR.
1505
1506 Extracting bits depends on endianness of the machine. Compute the
1507 number of least significant bits to discard. For big endian machines,
1508 we compute the total number of bits in the anonymous object, subtract
1509 off the bit count from the MSB of the object to the MSB of the
1510 bitfield, then the size of the bitfield, which leaves the LSB discard
1511 count. For little endian machines, the discard count is simply the
1512 number of bits from the LSB of the anonymous object to the LSB of the
1513 bitfield.
1514
1515 If the field is signed, we also do sign extension. */
1516
1517LONGEST
fc1a4b47 1518unpack_field_as_long (struct type *type, const gdb_byte *valaddr, int fieldno)
c906108c
SS
1519{
1520 ULONGEST val;
1521 ULONGEST valmask;
1522 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
1523 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
1524 int lsbcount;
1525 struct type *field_type;
1526
1527 val = extract_unsigned_integer (valaddr + bitpos / 8, sizeof (val));
1528 field_type = TYPE_FIELD_TYPE (type, fieldno);
1529 CHECK_TYPEDEF (field_type);
1530
1531 /* Extract bits. See comment above. */
1532
32c9a795 1533 if (gdbarch_bits_big_endian (current_gdbarch))
c906108c
SS
1534 lsbcount = (sizeof val * 8 - bitpos % 8 - bitsize);
1535 else
1536 lsbcount = (bitpos % 8);
1537 val >>= lsbcount;
1538
1539 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
1540 If the field is signed, and is negative, then sign extend. */
1541
1542 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
1543 {
1544 valmask = (((ULONGEST) 1) << bitsize) - 1;
1545 val &= valmask;
1546 if (!TYPE_UNSIGNED (field_type))
1547 {
1548 if (val & (valmask ^ (valmask >> 1)))
1549 {
1550 val |= ~valmask;
1551 }
1552 }
1553 }
1554 return (val);
1555}
1556
1557/* Modify the value of a bitfield. ADDR points to a block of memory in
1558 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
1559 is the desired value of the field, in host byte order. BITPOS and BITSIZE
f4e88c8e
PH
1560 indicate which bits (in target bit order) comprise the bitfield.
1561 Requires 0 < BITSIZE <= lbits, 0 <= BITPOS+BITSIZE <= lbits, and
1562 0 <= BITPOS, where lbits is the size of a LONGEST in bits. */
c906108c
SS
1563
1564void
fc1a4b47 1565modify_field (gdb_byte *addr, LONGEST fieldval, int bitpos, int bitsize)
c906108c 1566{
f4e88c8e
PH
1567 ULONGEST oword;
1568 ULONGEST mask = (ULONGEST) -1 >> (8 * sizeof (ULONGEST) - bitsize);
c906108c
SS
1569
1570 /* If a negative fieldval fits in the field in question, chop
1571 off the sign extension bits. */
f4e88c8e
PH
1572 if ((~fieldval & ~(mask >> 1)) == 0)
1573 fieldval &= mask;
c906108c
SS
1574
1575 /* Warn if value is too big to fit in the field in question. */
f4e88c8e 1576 if (0 != (fieldval & ~mask))
c906108c
SS
1577 {
1578 /* FIXME: would like to include fieldval in the message, but
c5aa993b 1579 we don't have a sprintf_longest. */
8a3fe4f8 1580 warning (_("Value does not fit in %d bits."), bitsize);
c906108c
SS
1581
1582 /* Truncate it, otherwise adjoining fields may be corrupted. */
f4e88c8e 1583 fieldval &= mask;
c906108c
SS
1584 }
1585
f4e88c8e 1586 oword = extract_unsigned_integer (addr, sizeof oword);
c906108c
SS
1587
1588 /* Shifting for bit field depends on endianness of the target machine. */
32c9a795 1589 if (gdbarch_bits_big_endian (current_gdbarch))
c906108c
SS
1590 bitpos = sizeof (oword) * 8 - bitpos - bitsize;
1591
f4e88c8e 1592 oword &= ~(mask << bitpos);
c906108c
SS
1593 oword |= fieldval << bitpos;
1594
f4e88c8e 1595 store_unsigned_integer (addr, sizeof oword, oword);
c906108c
SS
1596}
1597\f
14d06750 1598/* Pack NUM into BUF using a target format of TYPE. */
c906108c 1599
14d06750
DJ
1600void
1601pack_long (gdb_byte *buf, struct type *type, LONGEST num)
c906108c 1602{
52f0bd74 1603 int len;
14d06750
DJ
1604
1605 type = check_typedef (type);
c906108c
SS
1606 len = TYPE_LENGTH (type);
1607
14d06750 1608 switch (TYPE_CODE (type))
c906108c 1609 {
c906108c
SS
1610 case TYPE_CODE_INT:
1611 case TYPE_CODE_CHAR:
1612 case TYPE_CODE_ENUM:
4f2aea11 1613 case TYPE_CODE_FLAGS:
c906108c
SS
1614 case TYPE_CODE_BOOL:
1615 case TYPE_CODE_RANGE:
0d5de010 1616 case TYPE_CODE_MEMBERPTR:
14d06750 1617 store_signed_integer (buf, len, num);
c906108c 1618 break;
c5aa993b 1619
c906108c
SS
1620 case TYPE_CODE_REF:
1621 case TYPE_CODE_PTR:
14d06750 1622 store_typed_address (buf, type, (CORE_ADDR) num);
c906108c 1623 break;
c5aa993b 1624
c906108c 1625 default:
14d06750
DJ
1626 error (_("Unexpected type (%d) encountered for integer constant."),
1627 TYPE_CODE (type));
c906108c 1628 }
14d06750
DJ
1629}
1630
1631
1632/* Convert C numbers into newly allocated values. */
1633
1634struct value *
1635value_from_longest (struct type *type, LONGEST num)
1636{
1637 struct value *val = allocate_value (type);
1638
1639 pack_long (value_contents_raw (val), type, num);
1640
c906108c
SS
1641 return val;
1642}
1643
4478b372
JB
1644
1645/* Create a value representing a pointer of type TYPE to the address
1646 ADDR. */
f23631e4 1647struct value *
4478b372
JB
1648value_from_pointer (struct type *type, CORE_ADDR addr)
1649{
f23631e4 1650 struct value *val = allocate_value (type);
990a07ab 1651 store_typed_address (value_contents_raw (val), type, addr);
4478b372
JB
1652 return val;
1653}
1654
1655
0f71a2f6 1656/* Create a value for a string constant to be stored locally
070ad9f0 1657 (not in the inferior's memory space, but in GDB memory).
0f71a2f6
JM
1658 This is analogous to value_from_longest, which also does not
1659 use inferior memory. String shall NOT contain embedded nulls. */
1660
f23631e4 1661struct value *
fba45db2 1662value_from_string (char *ptr)
0f71a2f6 1663{
f23631e4 1664 struct value *val;
c5aa993b 1665 int len = strlen (ptr);
0f71a2f6 1666 int lowbound = current_language->string_lower_bound;
f290d38e
AC
1667 struct type *string_char_type;
1668 struct type *rangetype;
1669 struct type *stringtype;
1670
1671 rangetype = create_range_type ((struct type *) NULL,
6d84d3d8 1672 builtin_type_int32,
f290d38e
AC
1673 lowbound, len + lowbound - 1);
1674 string_char_type = language_string_char_type (current_language,
1675 current_gdbarch);
1676 stringtype = create_array_type ((struct type *) NULL,
1677 string_char_type,
1678 rangetype);
0f71a2f6 1679 val = allocate_value (stringtype);
990a07ab 1680 memcpy (value_contents_raw (val), ptr, len);
0f71a2f6
JM
1681 return val;
1682}
1683
f23631e4 1684struct value *
fba45db2 1685value_from_double (struct type *type, DOUBLEST num)
c906108c 1686{
f23631e4 1687 struct value *val = allocate_value (type);
c906108c 1688 struct type *base_type = check_typedef (type);
52f0bd74
AC
1689 enum type_code code = TYPE_CODE (base_type);
1690 int len = TYPE_LENGTH (base_type);
c906108c
SS
1691
1692 if (code == TYPE_CODE_FLT)
1693 {
990a07ab 1694 store_typed_floating (value_contents_raw (val), base_type, num);
c906108c
SS
1695 }
1696 else
8a3fe4f8 1697 error (_("Unexpected type encountered for floating constant."));
c906108c
SS
1698
1699 return val;
1700}
994b9211 1701
27bc4d80 1702struct value *
4ef30785 1703value_from_decfloat (struct type *type, const gdb_byte *dec)
27bc4d80
TJB
1704{
1705 struct value *val = allocate_value (type);
27bc4d80 1706
4ef30785 1707 memcpy (value_contents_raw (val), dec, TYPE_LENGTH (type));
27bc4d80 1708
27bc4d80
TJB
1709 return val;
1710}
1711
994b9211
AC
1712struct value *
1713coerce_ref (struct value *arg)
1714{
df407dfe 1715 struct type *value_type_arg_tmp = check_typedef (value_type (arg));
994b9211
AC
1716 if (TYPE_CODE (value_type_arg_tmp) == TYPE_CODE_REF)
1717 arg = value_at_lazy (TYPE_TARGET_TYPE (value_type_arg_tmp),
df407dfe 1718 unpack_pointer (value_type (arg),
0fd88904 1719 value_contents (arg)));
994b9211
AC
1720 return arg;
1721}
1722
1723struct value *
1724coerce_array (struct value *arg)
1725{
1726 arg = coerce_ref (arg);
1727 if (current_language->c_style_arrays
df407dfe 1728 && TYPE_CODE (value_type (arg)) == TYPE_CODE_ARRAY)
994b9211 1729 arg = value_coerce_array (arg);
df407dfe 1730 if (TYPE_CODE (value_type (arg)) == TYPE_CODE_FUNC)
994b9211 1731 arg = value_coerce_function (arg);
994b9211
AC
1732 return arg;
1733}
c906108c 1734\f
c906108c 1735
48436ce6
AC
1736/* Return true if the function returning the specified type is using
1737 the convention of returning structures in memory (passing in the
82585c72 1738 address as a hidden first parameter). */
c906108c
SS
1739
1740int
c055b101 1741using_struct_return (struct type *func_type, struct type *value_type)
c906108c 1742{
52f0bd74 1743 enum type_code code = TYPE_CODE (value_type);
c906108c
SS
1744
1745 if (code == TYPE_CODE_ERROR)
8a3fe4f8 1746 error (_("Function return type unknown."));
c906108c 1747
667e784f
AC
1748 if (code == TYPE_CODE_VOID)
1749 /* A void return value is never in memory. See also corresponding
44e5158b 1750 code in "print_return_value". */
667e784f
AC
1751 return 0;
1752
92ad9cd9 1753 /* Probe the architecture for the return-value convention. */
c055b101 1754 return (gdbarch_return_value (current_gdbarch, func_type, value_type,
92ad9cd9 1755 NULL, NULL, NULL)
31db7b6c 1756 != RETURN_VALUE_REGISTER_CONVENTION);
c906108c
SS
1757}
1758
42be36b3
CT
1759/* Set the initialized field in a value struct. */
1760
1761void
1762set_value_initialized (struct value *val, int status)
1763{
1764 val->initialized = status;
1765}
1766
1767/* Return the initialized field in a value struct. */
1768
1769int
1770value_initialized (struct value *val)
1771{
1772 return val->initialized;
1773}
1774
c906108c 1775void
fba45db2 1776_initialize_values (void)
c906108c 1777{
1a966eab
AC
1778 add_cmd ("convenience", no_class, show_convenience, _("\
1779Debugger convenience (\"$foo\") variables.\n\
c906108c 1780These variables are created when you assign them values;\n\
1a966eab
AC
1781thus, \"print $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\
1782\n\
c906108c
SS
1783A few convenience variables are given values automatically:\n\
1784\"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
1a966eab 1785\"$__\" holds the contents of the last address examined with \"x\"."),
c906108c
SS
1786 &showlist);
1787
1788 add_cmd ("values", no_class, show_values,
1a966eab 1789 _("Elements of value history around item number IDX (or last ten)."),
c906108c 1790 &showlist);
53e5f3cf
AS
1791
1792 add_com ("init-if-undefined", class_vars, init_if_undefined_command, _("\
1793Initialize a convenience variable if necessary.\n\
1794init-if-undefined VARIABLE = EXPRESSION\n\
1795Set an internal VARIABLE to the result of the EXPRESSION if it does not\n\
1796exist or does not contain a value. The EXPRESSION is not evaluated if the\n\
1797VARIABLE is already initialized."));
c906108c 1798}
This page took 0.924866 seconds and 4 git commands to generate.