cgen/ChangeLog:
[deliverable/binutils-gdb.git] / gdb / value.c
CommitLineData
c906108c 1/* Low level packing and unpacking of values for GDB, the GNU Debugger.
1bac305b 2
f23631e4 3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
990a07ab
AC
4 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005 Free
5 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
11 the Free Software Foundation; either version 2 of the License, or
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
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24#include "defs.h"
25#include "gdb_string.h"
26#include "symtab.h"
27#include "gdbtypes.h"
28#include "value.h"
29#include "gdbcore.h"
c906108c
SS
30#include "command.h"
31#include "gdbcmd.h"
32#include "target.h"
33#include "language.h"
34#include "scm-lang.h"
35#include "demangle.h"
d16aafd8 36#include "doublest.h"
5ae326fa 37#include "gdb_assert.h"
36160dc4 38#include "regcache.h"
fe898f56 39#include "block.h"
c906108c
SS
40
41/* Prototypes for exported functions. */
42
a14ed312 43void _initialize_values (void);
c906108c
SS
44
45/* Prototypes for local functions. */
46
a14ed312 47static void show_values (char *, int);
c906108c 48
a14ed312 49static void show_convenience (char *, int);
c906108c 50
c906108c
SS
51
52/* The value-history records all the values printed
53 by print commands during this session. Each chunk
54 records 60 consecutive values. The first chunk on
55 the chain records the most recent values.
56 The total number of values is in value_history_count. */
57
58#define VALUE_HISTORY_CHUNK 60
59
60struct value_history_chunk
c5aa993b
JM
61 {
62 struct value_history_chunk *next;
f23631e4 63 struct value *values[VALUE_HISTORY_CHUNK];
c5aa993b 64 };
c906108c
SS
65
66/* Chain of chunks now in use. */
67
68static struct value_history_chunk *value_history_chain;
69
70static int value_history_count; /* Abs number of last entry stored */
71\f
72/* List of all value objects currently allocated
73 (except for those released by calls to release_value)
74 This is so they can be freed after each command. */
75
f23631e4 76static struct value *all_values;
c906108c
SS
77
78/* Allocate a value that has the correct length for type TYPE. */
79
f23631e4 80struct value *
fba45db2 81allocate_value (struct type *type)
c906108c 82{
f23631e4 83 struct value *val;
c906108c
SS
84 struct type *atype = check_typedef (type);
85
5b90c7b5 86 val = (struct value *) xzalloc (sizeof (struct value) + TYPE_LENGTH (atype));
df407dfe 87 val->next = all_values;
c906108c 88 all_values = val;
df407dfe 89 val->type = type;
4754a64e 90 val->enclosing_type = type;
c906108c
SS
91 VALUE_LVAL (val) = not_lval;
92 VALUE_ADDRESS (val) = 0;
1df6926e 93 VALUE_FRAME_ID (val) = null_frame_id;
df407dfe
AC
94 val->offset = 0;
95 val->bitpos = 0;
96 val->bitsize = 0;
9ee8fc9d 97 VALUE_REGNUM (val) = -1;
d69fe07e 98 val->lazy = 0;
feb13ab0 99 val->optimized_out = 0;
13c3b5f5 100 val->embedded_offset = 0;
b44d461b 101 val->pointed_to_offset = 0;
c906108c
SS
102 val->modifiable = 1;
103 return val;
104}
105
106/* Allocate a value that has the correct length
107 for COUNT repetitions type TYPE. */
108
f23631e4 109struct value *
fba45db2 110allocate_repeat_value (struct type *type, int count)
c906108c 111{
c5aa993b 112 int low_bound = current_language->string_lower_bound; /* ??? */
c906108c
SS
113 /* FIXME-type-allocation: need a way to free this type when we are
114 done with it. */
115 struct type *range_type
c5aa993b
JM
116 = create_range_type ((struct type *) NULL, builtin_type_int,
117 low_bound, count + low_bound - 1);
c906108c
SS
118 /* FIXME-type-allocation: need a way to free this type when we are
119 done with it. */
120 return allocate_value (create_array_type ((struct type *) NULL,
121 type, range_type));
122}
123
df407dfe
AC
124/* Accessor methods. */
125
17cf0ecd
AC
126struct value *
127value_next (struct value *value)
128{
129 return value->next;
130}
131
df407dfe
AC
132struct type *
133value_type (struct value *value)
134{
135 return value->type;
136}
04624583
AC
137void
138deprecated_set_value_type (struct value *value, struct type *type)
139{
140 value->type = type;
141}
df407dfe
AC
142
143int
144value_offset (struct value *value)
145{
146 return value->offset;
147}
f5cf64a7
AC
148void
149set_value_offset (struct value *value, int offset)
150{
151 value->offset = offset;
152}
df407dfe
AC
153
154int
155value_bitpos (struct value *value)
156{
157 return value->bitpos;
158}
159
160int
161value_bitsize (struct value *value)
162{
163 return value->bitsize;
164}
165
990a07ab
AC
166bfd_byte *
167value_contents_raw (struct value *value)
168{
169 return value->aligner.contents + value->embedded_offset;
170}
171
172bfd_byte *
173value_contents_all_raw (struct value *value)
174{
175 return value->aligner.contents;
176}
177
4754a64e
AC
178struct type *
179value_enclosing_type (struct value *value)
180{
181 return value->enclosing_type;
182}
183
46615f07
AC
184const bfd_byte *
185value_contents_all (struct value *value)
186{
187 if (value->lazy)
188 value_fetch_lazy (value);
189 return value->aligner.contents;
190}
191
d69fe07e
AC
192int
193value_lazy (struct value *value)
194{
195 return value->lazy;
196}
197
dfa52d88
AC
198void
199set_value_lazy (struct value *value, int val)
200{
201 value->lazy = val;
202}
203
0fd88904
AC
204const bfd_byte *
205value_contents (struct value *value)
206{
207 return value_contents_writeable (value);
208}
209
210bfd_byte *
211value_contents_writeable (struct value *value)
212{
213 if (value->lazy)
214 value_fetch_lazy (value);
215 return value->aligner.contents;
216}
217
feb13ab0
AC
218int
219value_optimized_out (struct value *value)
220{
221 return value->optimized_out;
222}
223
224void
225set_value_optimized_out (struct value *value, int val)
226{
227 value->optimized_out = val;
228}
13c3b5f5
AC
229
230int
231value_embedded_offset (struct value *value)
232{
233 return value->embedded_offset;
234}
235
236void
237set_value_embedded_offset (struct value *value, int val)
238{
239 value->embedded_offset = val;
240}
b44d461b
AC
241
242int
243value_pointed_to_offset (struct value *value)
244{
245 return value->pointed_to_offset;
246}
247
248void
249set_value_pointed_to_offset (struct value *value, int val)
250{
251 value->pointed_to_offset = val;
252}
13bb5560
AC
253
254enum lval_type *
255deprecated_value_lval_hack (struct value *value)
256{
257 return &value->lval;
258}
259
260CORE_ADDR *
261deprecated_value_address_hack (struct value *value)
262{
263 return &value->location.address;
264}
265
266struct internalvar **
267deprecated_value_internalvar_hack (struct value *value)
268{
269 return &value->location.internalvar;
270}
271
272struct frame_id *
273deprecated_value_frame_id_hack (struct value *value)
274{
275 return &value->frame_id;
276}
277
278short *
279deprecated_value_regnum_hack (struct value *value)
280{
281 return &value->regnum;
282}
88e3b34b
AC
283
284int
285deprecated_value_modifiable (struct value *value)
286{
287 return value->modifiable;
288}
289void
290deprecated_set_value_modifiable (struct value *value, int modifiable)
291{
292 value->modifiable = modifiable;
293}
990a07ab 294\f
c906108c
SS
295/* Return a mark in the value chain. All values allocated after the
296 mark is obtained (except for those released) are subject to being freed
297 if a subsequent value_free_to_mark is passed the mark. */
f23631e4 298struct value *
fba45db2 299value_mark (void)
c906108c
SS
300{
301 return all_values;
302}
303
304/* Free all values allocated since MARK was obtained by value_mark
305 (except for those released). */
306void
f23631e4 307value_free_to_mark (struct value *mark)
c906108c 308{
f23631e4
AC
309 struct value *val;
310 struct value *next;
c906108c
SS
311
312 for (val = all_values; val && val != mark; val = next)
313 {
df407dfe 314 next = val->next;
c906108c
SS
315 value_free (val);
316 }
317 all_values = val;
318}
319
320/* Free all the values that have been allocated (except for those released).
321 Called after each command, successful or not. */
322
323void
fba45db2 324free_all_values (void)
c906108c 325{
f23631e4
AC
326 struct value *val;
327 struct value *next;
c906108c
SS
328
329 for (val = all_values; val; val = next)
330 {
df407dfe 331 next = val->next;
c906108c
SS
332 value_free (val);
333 }
334
335 all_values = 0;
336}
337
338/* Remove VAL from the chain all_values
339 so it will not be freed automatically. */
340
341void
f23631e4 342release_value (struct value *val)
c906108c 343{
f23631e4 344 struct value *v;
c906108c
SS
345
346 if (all_values == val)
347 {
348 all_values = val->next;
349 return;
350 }
351
352 for (v = all_values; v; v = v->next)
353 {
354 if (v->next == val)
355 {
356 v->next = val->next;
357 break;
358 }
359 }
360}
361
362/* Release all values up to mark */
f23631e4
AC
363struct value *
364value_release_to_mark (struct value *mark)
c906108c 365{
f23631e4
AC
366 struct value *val;
367 struct value *next;
c906108c 368
df407dfe
AC
369 for (val = next = all_values; next; next = next->next)
370 if (next->next == mark)
c906108c 371 {
df407dfe
AC
372 all_values = next->next;
373 next->next = NULL;
c906108c
SS
374 return val;
375 }
376 all_values = 0;
377 return val;
378}
379
380/* Return a copy of the value ARG.
381 It contains the same contents, for same memory address,
382 but it's a different block of storage. */
383
f23631e4
AC
384struct value *
385value_copy (struct value *arg)
c906108c 386{
4754a64e 387 struct type *encl_type = value_enclosing_type (arg);
f23631e4 388 struct value *val = allocate_value (encl_type);
df407dfe 389 val->type = arg->type;
c906108c
SS
390 VALUE_LVAL (val) = VALUE_LVAL (arg);
391 VALUE_ADDRESS (val) = VALUE_ADDRESS (arg);
df407dfe
AC
392 val->offset = arg->offset;
393 val->bitpos = arg->bitpos;
394 val->bitsize = arg->bitsize;
1df6926e 395 VALUE_FRAME_ID (val) = VALUE_FRAME_ID (arg);
9ee8fc9d 396 VALUE_REGNUM (val) = VALUE_REGNUM (arg);
d69fe07e 397 val->lazy = arg->lazy;
feb13ab0 398 val->optimized_out = arg->optimized_out;
13c3b5f5 399 val->embedded_offset = value_embedded_offset (arg);
b44d461b 400 val->pointed_to_offset = arg->pointed_to_offset;
c906108c 401 val->modifiable = arg->modifiable;
d69fe07e 402 if (!value_lazy (val))
c906108c 403 {
990a07ab 404 memcpy (value_contents_all_raw (val), value_contents_all_raw (arg),
4754a64e 405 TYPE_LENGTH (value_enclosing_type (arg)));
c906108c
SS
406
407 }
408 return val;
409}
410\f
411/* Access to the value history. */
412
413/* Record a new value in the value history.
414 Returns the absolute history index of the entry.
415 Result of -1 indicates the value was not saved; otherwise it is the
416 value history index of this new item. */
417
418int
f23631e4 419record_latest_value (struct value *val)
c906108c
SS
420{
421 int i;
422
423 /* We don't want this value to have anything to do with the inferior anymore.
424 In particular, "set $1 = 50" should not affect the variable from which
425 the value was taken, and fast watchpoints should be able to assume that
426 a value on the value history never changes. */
d69fe07e 427 if (value_lazy (val))
c906108c
SS
428 value_fetch_lazy (val);
429 /* We preserve VALUE_LVAL so that the user can find out where it was fetched
430 from. This is a bit dubious, because then *&$1 does not just return $1
431 but the current contents of that location. c'est la vie... */
432 val->modifiable = 0;
433 release_value (val);
434
435 /* Here we treat value_history_count as origin-zero
436 and applying to the value being stored now. */
437
438 i = value_history_count % VALUE_HISTORY_CHUNK;
439 if (i == 0)
440 {
f23631e4 441 struct value_history_chunk *new
c5aa993b
JM
442 = (struct value_history_chunk *)
443 xmalloc (sizeof (struct value_history_chunk));
c906108c
SS
444 memset (new->values, 0, sizeof new->values);
445 new->next = value_history_chain;
446 value_history_chain = new;
447 }
448
449 value_history_chain->values[i] = val;
450
451 /* Now we regard value_history_count as origin-one
452 and applying to the value just stored. */
453
454 return ++value_history_count;
455}
456
457/* Return a copy of the value in the history with sequence number NUM. */
458
f23631e4 459struct value *
fba45db2 460access_value_history (int num)
c906108c 461{
f23631e4 462 struct value_history_chunk *chunk;
52f0bd74
AC
463 int i;
464 int absnum = num;
c906108c
SS
465
466 if (absnum <= 0)
467 absnum += value_history_count;
468
469 if (absnum <= 0)
470 {
471 if (num == 0)
472 error ("The history is empty.");
473 else if (num == 1)
474 error ("There is only one value in the history.");
475 else
476 error ("History does not go back to $$%d.", -num);
477 }
478 if (absnum > value_history_count)
479 error ("History has not yet reached $%d.", absnum);
480
481 absnum--;
482
483 /* Now absnum is always absolute and origin zero. */
484
485 chunk = value_history_chain;
486 for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK - absnum / VALUE_HISTORY_CHUNK;
487 i > 0; i--)
488 chunk = chunk->next;
489
490 return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
491}
492
493/* Clear the value history entirely.
494 Must be done when new symbol tables are loaded,
495 because the type pointers become invalid. */
496
497void
fba45db2 498clear_value_history (void)
c906108c 499{
f23631e4 500 struct value_history_chunk *next;
52f0bd74 501 int i;
f23631e4 502 struct value *val;
c906108c
SS
503
504 while (value_history_chain)
505 {
506 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
507 if ((val = value_history_chain->values[i]) != NULL)
b8c9b27d 508 xfree (val);
c906108c 509 next = value_history_chain->next;
b8c9b27d 510 xfree (value_history_chain);
c906108c
SS
511 value_history_chain = next;
512 }
513 value_history_count = 0;
514}
515
516static void
fba45db2 517show_values (char *num_exp, int from_tty)
c906108c 518{
52f0bd74 519 int i;
f23631e4 520 struct value *val;
c906108c
SS
521 static int num = 1;
522
523 if (num_exp)
524 {
c5aa993b
JM
525 /* "info history +" should print from the stored position.
526 "info history <exp>" should print around value number <exp>. */
c906108c 527 if (num_exp[0] != '+' || num_exp[1] != '\0')
bb518678 528 num = parse_and_eval_long (num_exp) - 5;
c906108c
SS
529 }
530 else
531 {
532 /* "info history" means print the last 10 values. */
533 num = value_history_count - 9;
534 }
535
536 if (num <= 0)
537 num = 1;
538
539 for (i = num; i < num + 10 && i <= value_history_count; i++)
540 {
541 val = access_value_history (i);
542 printf_filtered ("$%d = ", i);
543 value_print (val, gdb_stdout, 0, Val_pretty_default);
544 printf_filtered ("\n");
545 }
546
547 /* The next "info history +" should start after what we just printed. */
548 num += 10;
549
550 /* Hitting just return after this command should do the same thing as
551 "info history +". If num_exp is null, this is unnecessary, since
552 "info history +" is not useful after "info history". */
553 if (from_tty && num_exp)
554 {
555 num_exp[0] = '+';
556 num_exp[1] = '\0';
557 }
558}
559\f
560/* Internal variables. These are variables within the debugger
561 that hold values assigned by debugger commands.
562 The user refers to them with a '$' prefix
563 that does not appear in the variable names stored internally. */
564
565static struct internalvar *internalvars;
566
567/* Look up an internal variable with name NAME. NAME should not
568 normally include a dollar sign.
569
570 If the specified internal variable does not exist,
571 one is created, with a void value. */
572
573struct internalvar *
fba45db2 574lookup_internalvar (char *name)
c906108c 575{
52f0bd74 576 struct internalvar *var;
c906108c
SS
577
578 for (var = internalvars; var; var = var->next)
5cb316ef 579 if (strcmp (var->name, name) == 0)
c906108c
SS
580 return var;
581
582 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
583 var->name = concat (name, NULL);
584 var->value = allocate_value (builtin_type_void);
585 release_value (var->value);
586 var->next = internalvars;
587 internalvars = var;
588 return var;
589}
590
f23631e4 591struct value *
fba45db2 592value_of_internalvar (struct internalvar *var)
c906108c 593{
f23631e4 594 struct value *val;
c906108c 595
c906108c 596 val = value_copy (var->value);
d69fe07e 597 if (value_lazy (val))
c906108c
SS
598 value_fetch_lazy (val);
599 VALUE_LVAL (val) = lval_internalvar;
600 VALUE_INTERNALVAR (val) = var;
601 return val;
602}
603
604void
fba45db2 605set_internalvar_component (struct internalvar *var, int offset, int bitpos,
f23631e4 606 int bitsize, struct value *newval)
c906108c 607{
0fd88904 608 bfd_byte *addr = value_contents_writeable (var->value) + offset;
c906108c 609
c906108c
SS
610 if (bitsize)
611 modify_field (addr, value_as_long (newval),
612 bitpos, bitsize);
613 else
0fd88904 614 memcpy (addr, value_contents (newval), TYPE_LENGTH (value_type (newval)));
c906108c
SS
615}
616
617void
f23631e4 618set_internalvar (struct internalvar *var, struct value *val)
c906108c 619{
f23631e4 620 struct value *newval;
c906108c 621
c906108c
SS
622 newval = value_copy (val);
623 newval->modifiable = 1;
624
625 /* Force the value to be fetched from the target now, to avoid problems
626 later when this internalvar is referenced and the target is gone or
627 has changed. */
d69fe07e 628 if (value_lazy (newval))
c906108c
SS
629 value_fetch_lazy (newval);
630
631 /* Begin code which must not call error(). If var->value points to
632 something free'd, an error() obviously leaves a dangling pointer.
633 But we also get a danling pointer if var->value points to
634 something in the value chain (i.e., before release_value is
635 called), because after the error free_all_values will get called before
636 long. */
b8c9b27d 637 xfree (var->value);
c906108c
SS
638 var->value = newval;
639 release_value (newval);
640 /* End code which must not call error(). */
641}
642
643char *
fba45db2 644internalvar_name (struct internalvar *var)
c906108c
SS
645{
646 return var->name;
647}
648
649/* Free all internalvars. Done when new symtabs are loaded,
650 because that makes the values invalid. */
651
652void
fba45db2 653clear_internalvars (void)
c906108c 654{
52f0bd74 655 struct internalvar *var;
c906108c
SS
656
657 while (internalvars)
658 {
659 var = internalvars;
660 internalvars = var->next;
b8c9b27d
KB
661 xfree (var->name);
662 xfree (var->value);
663 xfree (var);
c906108c
SS
664 }
665}
666
667static void
fba45db2 668show_convenience (char *ignore, int from_tty)
c906108c 669{
52f0bd74 670 struct internalvar *var;
c906108c
SS
671 int varseen = 0;
672
673 for (var = internalvars; var; var = var->next)
674 {
c906108c
SS
675 if (!varseen)
676 {
677 varseen = 1;
678 }
679 printf_filtered ("$%s = ", var->name);
680 value_print (var->value, gdb_stdout, 0, Val_pretty_default);
681 printf_filtered ("\n");
682 }
683 if (!varseen)
684 printf_unfiltered ("No debugger convenience variables now defined.\n\
685Convenience variables have names starting with \"$\";\n\
686use \"set\" as in \"set $foo = 5\" to define them.\n");
687}
688\f
689/* Extract a value as a C number (either long or double).
690 Knows how to convert fixed values to double, or
691 floating values to long.
692 Does not deallocate the value. */
693
694LONGEST
f23631e4 695value_as_long (struct value *val)
c906108c
SS
696{
697 /* This coerces arrays and functions, which is necessary (e.g.
698 in disassemble_command). It also dereferences references, which
699 I suspect is the most logical thing to do. */
994b9211 700 val = coerce_array (val);
0fd88904 701 return unpack_long (value_type (val), value_contents (val));
c906108c
SS
702}
703
704DOUBLEST
f23631e4 705value_as_double (struct value *val)
c906108c
SS
706{
707 DOUBLEST foo;
708 int inv;
c5aa993b 709
0fd88904 710 foo = unpack_double (value_type (val), value_contents (val), &inv);
c906108c
SS
711 if (inv)
712 error ("Invalid floating value found in program.");
713 return foo;
714}
4478b372
JB
715/* Extract a value as a C pointer. Does not deallocate the value.
716 Note that val's type may not actually be a pointer; value_as_long
717 handles all the cases. */
c906108c 718CORE_ADDR
f23631e4 719value_as_address (struct value *val)
c906108c
SS
720{
721 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
722 whether we want this to be true eventually. */
723#if 0
724 /* ADDR_BITS_REMOVE is wrong if we are being called for a
725 non-address (e.g. argument to "signal", "info break", etc.), or
726 for pointers to char, in which the low bits *are* significant. */
c5aa993b 727 return ADDR_BITS_REMOVE (value_as_long (val));
c906108c 728#else
f312f057
JB
729
730 /* There are several targets (IA-64, PowerPC, and others) which
731 don't represent pointers to functions as simply the address of
732 the function's entry point. For example, on the IA-64, a
733 function pointer points to a two-word descriptor, generated by
734 the linker, which contains the function's entry point, and the
735 value the IA-64 "global pointer" register should have --- to
736 support position-independent code. The linker generates
737 descriptors only for those functions whose addresses are taken.
738
739 On such targets, it's difficult for GDB to convert an arbitrary
740 function address into a function pointer; it has to either find
741 an existing descriptor for that function, or call malloc and
742 build its own. On some targets, it is impossible for GDB to
743 build a descriptor at all: the descriptor must contain a jump
744 instruction; data memory cannot be executed; and code memory
745 cannot be modified.
746
747 Upon entry to this function, if VAL is a value of type `function'
748 (that is, TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC), then
749 VALUE_ADDRESS (val) is the address of the function. This is what
750 you'll get if you evaluate an expression like `main'. The call
751 to COERCE_ARRAY below actually does all the usual unary
752 conversions, which includes converting values of type `function'
753 to `pointer to function'. This is the challenging conversion
754 discussed above. Then, `unpack_long' will convert that pointer
755 back into an address.
756
757 So, suppose the user types `disassemble foo' on an architecture
758 with a strange function pointer representation, on which GDB
759 cannot build its own descriptors, and suppose further that `foo'
760 has no linker-built descriptor. The address->pointer conversion
761 will signal an error and prevent the command from running, even
762 though the next step would have been to convert the pointer
763 directly back into the same address.
764
765 The following shortcut avoids this whole mess. If VAL is a
766 function, just return its address directly. */
df407dfe
AC
767 if (TYPE_CODE (value_type (val)) == TYPE_CODE_FUNC
768 || TYPE_CODE (value_type (val)) == TYPE_CODE_METHOD)
f312f057
JB
769 return VALUE_ADDRESS (val);
770
994b9211 771 val = coerce_array (val);
fc0c74b1
AC
772
773 /* Some architectures (e.g. Harvard), map instruction and data
774 addresses onto a single large unified address space. For
775 instance: An architecture may consider a large integer in the
776 range 0x10000000 .. 0x1000ffff to already represent a data
777 addresses (hence not need a pointer to address conversion) while
778 a small integer would still need to be converted integer to
779 pointer to address. Just assume such architectures handle all
780 integer conversions in a single function. */
781
782 /* JimB writes:
783
784 I think INTEGER_TO_ADDRESS is a good idea as proposed --- but we
785 must admonish GDB hackers to make sure its behavior matches the
786 compiler's, whenever possible.
787
788 In general, I think GDB should evaluate expressions the same way
789 the compiler does. When the user copies an expression out of
790 their source code and hands it to a `print' command, they should
791 get the same value the compiler would have computed. Any
792 deviation from this rule can cause major confusion and annoyance,
793 and needs to be justified carefully. In other words, GDB doesn't
794 really have the freedom to do these conversions in clever and
795 useful ways.
796
797 AndrewC pointed out that users aren't complaining about how GDB
798 casts integers to pointers; they are complaining that they can't
799 take an address from a disassembly listing and give it to `x/i'.
800 This is certainly important.
801
79dd2d24 802 Adding an architecture method like integer_to_address() certainly
fc0c74b1
AC
803 makes it possible for GDB to "get it right" in all circumstances
804 --- the target has complete control over how things get done, so
805 people can Do The Right Thing for their target without breaking
806 anyone else. The standard doesn't specify how integers get
807 converted to pointers; usually, the ABI doesn't either, but
808 ABI-specific code is a more reasonable place to handle it. */
809
df407dfe
AC
810 if (TYPE_CODE (value_type (val)) != TYPE_CODE_PTR
811 && TYPE_CODE (value_type (val)) != TYPE_CODE_REF
79dd2d24
AC
812 && gdbarch_integer_to_address_p (current_gdbarch))
813 return gdbarch_integer_to_address (current_gdbarch, value_type (val),
0fd88904 814 value_contents (val));
fc0c74b1 815
0fd88904 816 return unpack_long (value_type (val), value_contents (val));
c906108c
SS
817#endif
818}
819\f
820/* Unpack raw data (copied from debugee, target byte order) at VALADDR
821 as a long, or as a double, assuming the raw data is described
822 by type TYPE. Knows how to convert different sizes of values
823 and can convert between fixed and floating point. We don't assume
824 any alignment for the raw data. Return value is in host byte order.
825
826 If you want functions and arrays to be coerced to pointers, and
827 references to be dereferenced, call value_as_long() instead.
828
829 C++: It is assumed that the front-end has taken care of
830 all matters concerning pointers to members. A pointer
831 to member which reaches here is considered to be equivalent
832 to an INT (or some size). After all, it is only an offset. */
833
834LONGEST
66140c26 835unpack_long (struct type *type, const char *valaddr)
c906108c 836{
52f0bd74
AC
837 enum type_code code = TYPE_CODE (type);
838 int len = TYPE_LENGTH (type);
839 int nosign = TYPE_UNSIGNED (type);
c906108c
SS
840
841 if (current_language->la_language == language_scm
842 && is_scmvalue_type (type))
843 return scm_unpack (type, valaddr, TYPE_CODE_INT);
844
845 switch (code)
846 {
847 case TYPE_CODE_TYPEDEF:
848 return unpack_long (check_typedef (type), valaddr);
849 case TYPE_CODE_ENUM:
850 case TYPE_CODE_BOOL:
851 case TYPE_CODE_INT:
852 case TYPE_CODE_CHAR:
853 case TYPE_CODE_RANGE:
854 if (nosign)
855 return extract_unsigned_integer (valaddr, len);
856 else
857 return extract_signed_integer (valaddr, len);
858
859 case TYPE_CODE_FLT:
96d2f608 860 return extract_typed_floating (valaddr, type);
c906108c
SS
861
862 case TYPE_CODE_PTR:
863 case TYPE_CODE_REF:
864 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
c5aa993b 865 whether we want this to be true eventually. */
4478b372 866 return extract_typed_address (valaddr, type);
c906108c
SS
867
868 case TYPE_CODE_MEMBER:
869 error ("not implemented: member types in unpack_long");
870
871 default:
872 error ("Value can't be converted to integer.");
873 }
c5aa993b 874 return 0; /* Placate lint. */
c906108c
SS
875}
876
877/* Return a double value from the specified type and address.
878 INVP points to an int which is set to 0 for valid value,
879 1 for invalid value (bad float format). In either case,
880 the returned double is OK to use. Argument is in target
881 format, result is in host format. */
882
883DOUBLEST
66140c26 884unpack_double (struct type *type, const char *valaddr, int *invp)
c906108c
SS
885{
886 enum type_code code;
887 int len;
888 int nosign;
889
890 *invp = 0; /* Assume valid. */
891 CHECK_TYPEDEF (type);
892 code = TYPE_CODE (type);
893 len = TYPE_LENGTH (type);
894 nosign = TYPE_UNSIGNED (type);
895 if (code == TYPE_CODE_FLT)
896 {
75bc7ddf
AC
897 /* NOTE: cagney/2002-02-19: There was a test here to see if the
898 floating-point value was valid (using the macro
899 INVALID_FLOAT). That test/macro have been removed.
900
901 It turns out that only the VAX defined this macro and then
902 only in a non-portable way. Fixing the portability problem
903 wouldn't help since the VAX floating-point code is also badly
904 bit-rotten. The target needs to add definitions for the
905 methods TARGET_FLOAT_FORMAT and TARGET_DOUBLE_FORMAT - these
906 exactly describe the target floating-point format. The
907 problem here is that the corresponding floatformat_vax_f and
908 floatformat_vax_d values these methods should be set to are
909 also not defined either. Oops!
910
911 Hopefully someone will add both the missing floatformat
ac79b88b
DJ
912 definitions and the new cases for floatformat_is_valid (). */
913
914 if (!floatformat_is_valid (floatformat_from_type (type), valaddr))
915 {
916 *invp = 1;
917 return 0.0;
918 }
919
96d2f608 920 return extract_typed_floating (valaddr, type);
c906108c
SS
921 }
922 else if (nosign)
923 {
924 /* Unsigned -- be sure we compensate for signed LONGEST. */
c906108c 925 return (ULONGEST) unpack_long (type, valaddr);
c906108c
SS
926 }
927 else
928 {
929 /* Signed -- we are OK with unpack_long. */
930 return unpack_long (type, valaddr);
931 }
932}
933
934/* Unpack raw data (copied from debugee, target byte order) at VALADDR
935 as a CORE_ADDR, assuming the raw data is described by type TYPE.
936 We don't assume any alignment for the raw data. Return value is in
937 host byte order.
938
939 If you want functions and arrays to be coerced to pointers, and
1aa20aa8 940 references to be dereferenced, call value_as_address() instead.
c906108c
SS
941
942 C++: It is assumed that the front-end has taken care of
943 all matters concerning pointers to members. A pointer
944 to member which reaches here is considered to be equivalent
945 to an INT (or some size). After all, it is only an offset. */
946
947CORE_ADDR
66140c26 948unpack_pointer (struct type *type, const char *valaddr)
c906108c
SS
949{
950 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
951 whether we want this to be true eventually. */
952 return unpack_long (type, valaddr);
953}
4478b372 954
c906108c 955\f
2c2738a0
DC
956/* Get the value of the FIELDN'th field (which must be static) of
957 TYPE. Return NULL if the field doesn't exist or has been
958 optimized out. */
c906108c 959
f23631e4 960struct value *
fba45db2 961value_static_field (struct type *type, int fieldno)
c906108c 962{
948e66d9
DJ
963 struct value *retval;
964
c906108c
SS
965 if (TYPE_FIELD_STATIC_HAS_ADDR (type, fieldno))
966 {
948e66d9 967 retval = value_at (TYPE_FIELD_TYPE (type, fieldno),
00a4c844 968 TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
c906108c
SS
969 }
970 else
971 {
972 char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
176620f1 973 struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0, NULL);
948e66d9 974 if (sym == NULL)
c906108c
SS
975 {
976 /* With some compilers, e.g. HP aCC, static data members are reported
c5aa993b
JM
977 as non-debuggable symbols */
978 struct minimal_symbol *msym = lookup_minimal_symbol (phys_name, NULL, NULL);
c906108c
SS
979 if (!msym)
980 return NULL;
981 else
c5aa993b 982 {
948e66d9 983 retval = value_at (TYPE_FIELD_TYPE (type, fieldno),
00a4c844 984 SYMBOL_VALUE_ADDRESS (msym));
c906108c
SS
985 }
986 }
987 else
988 {
948e66d9
DJ
989 /* SYM should never have a SYMBOL_CLASS which will require
990 read_var_value to use the FRAME parameter. */
991 if (symbol_read_needs_frame (sym))
992 warning ("static field's value depends on the current "
993 "frame - bad debug info?");
994 retval = read_var_value (sym, NULL);
2b127877 995 }
948e66d9
DJ
996 if (retval && VALUE_LVAL (retval) == lval_memory)
997 SET_FIELD_PHYSADDR (TYPE_FIELD (type, fieldno),
998 VALUE_ADDRESS (retval));
c906108c 999 }
948e66d9 1000 return retval;
c906108c
SS
1001}
1002
2b127877
DB
1003/* Change the enclosing type of a value object VAL to NEW_ENCL_TYPE.
1004 You have to be careful here, since the size of the data area for the value
1005 is set by the length of the enclosing type. So if NEW_ENCL_TYPE is bigger
1006 than the old enclosing type, you have to allocate more space for the data.
1007 The return value is a pointer to the new version of this value structure. */
1008
f23631e4
AC
1009struct value *
1010value_change_enclosing_type (struct value *val, struct type *new_encl_type)
2b127877 1011{
4754a64e 1012 if (TYPE_LENGTH (new_encl_type) <= TYPE_LENGTH (value_enclosing_type (val)))
2b127877 1013 {
4754a64e 1014 val->enclosing_type = new_encl_type;
2b127877
DB
1015 return val;
1016 }
1017 else
1018 {
f23631e4
AC
1019 struct value *new_val;
1020 struct value *prev;
2b127877 1021
f23631e4 1022 new_val = (struct value *) xrealloc (val, sizeof (struct value) + TYPE_LENGTH (new_encl_type));
cc303028 1023
4754a64e 1024 new_val->enclosing_type = new_encl_type;
cc303028 1025
2b127877
DB
1026 /* We have to make sure this ends up in the same place in the value
1027 chain as the original copy, so it's clean-up behavior is the same.
1028 If the value has been released, this is a waste of time, but there
1029 is no way to tell that in advance, so... */
1030
1031 if (val != all_values)
1032 {
1033 for (prev = all_values; prev != NULL; prev = prev->next)
1034 {
1035 if (prev->next == val)
1036 {
1037 prev->next = new_val;
1038 break;
1039 }
1040 }
1041 }
1042
1043 return new_val;
1044 }
1045}
1046
c906108c
SS
1047/* Given a value ARG1 (offset by OFFSET bytes)
1048 of a struct or union type ARG_TYPE,
1049 extract and return the value of one of its (non-static) fields.
1050 FIELDNO says which field. */
1051
f23631e4
AC
1052struct value *
1053value_primitive_field (struct value *arg1, int offset,
aa1ee363 1054 int fieldno, struct type *arg_type)
c906108c 1055{
f23631e4 1056 struct value *v;
52f0bd74 1057 struct type *type;
c906108c
SS
1058
1059 CHECK_TYPEDEF (arg_type);
1060 type = TYPE_FIELD_TYPE (arg_type, fieldno);
1061
1062 /* Handle packed fields */
1063
1064 if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
1065 {
1066 v = value_from_longest (type,
1067 unpack_field_as_long (arg_type,
0fd88904 1068 value_contents (arg1)
c5aa993b 1069 + offset,
c906108c 1070 fieldno));
df407dfe
AC
1071 v->bitpos = TYPE_FIELD_BITPOS (arg_type, fieldno) % 8;
1072 v->bitsize = TYPE_FIELD_BITSIZE (arg_type, fieldno);
1073 v->offset = value_offset (arg1) + offset
2e70b7b9 1074 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
c906108c
SS
1075 }
1076 else if (fieldno < TYPE_N_BASECLASSES (arg_type))
1077 {
1078 /* This field is actually a base subobject, so preserve the
1079 entire object's contents for later references to virtual
1080 bases, etc. */
4754a64e 1081 v = allocate_value (value_enclosing_type (arg1));
df407dfe 1082 v->type = type;
d69fe07e 1083 if (value_lazy (arg1))
dfa52d88 1084 set_value_lazy (v, 1);
c906108c 1085 else
990a07ab 1086 memcpy (value_contents_all_raw (v), value_contents_all_raw (arg1),
4754a64e 1087 TYPE_LENGTH (value_enclosing_type (arg1)));
df407dfe 1088 v->offset = value_offset (arg1);
13c3b5f5
AC
1089 v->embedded_offset = (offset + value_embedded_offset (arg1)
1090 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8);
c906108c
SS
1091 }
1092 else
1093 {
1094 /* Plain old data member */
1095 offset += TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
1096 v = allocate_value (type);
d69fe07e 1097 if (value_lazy (arg1))
dfa52d88 1098 set_value_lazy (v, 1);
c906108c 1099 else
990a07ab
AC
1100 memcpy (value_contents_raw (v),
1101 value_contents_raw (arg1) + offset,
c906108c 1102 TYPE_LENGTH (type));
df407dfe 1103 v->offset = (value_offset (arg1) + offset
13c3b5f5 1104 + value_embedded_offset (arg1));
c906108c
SS
1105 }
1106 VALUE_LVAL (v) = VALUE_LVAL (arg1);
1107 if (VALUE_LVAL (arg1) == lval_internalvar)
1108 VALUE_LVAL (v) = lval_internalvar_component;
1109 VALUE_ADDRESS (v) = VALUE_ADDRESS (arg1);
9ee8fc9d 1110 VALUE_REGNUM (v) = VALUE_REGNUM (arg1);
0c16dd26 1111 VALUE_FRAME_ID (v) = VALUE_FRAME_ID (arg1);
c906108c 1112/* VALUE_OFFSET (v) = VALUE_OFFSET (arg1) + offset
c5aa993b 1113 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8; */
c906108c
SS
1114 return v;
1115}
1116
1117/* Given a value ARG1 of a struct or union type,
1118 extract and return the value of one of its (non-static) fields.
1119 FIELDNO says which field. */
1120
f23631e4 1121struct value *
aa1ee363 1122value_field (struct value *arg1, int fieldno)
c906108c 1123{
df407dfe 1124 return value_primitive_field (arg1, 0, fieldno, value_type (arg1));
c906108c
SS
1125}
1126
1127/* Return a non-virtual function as a value.
1128 F is the list of member functions which contains the desired method.
0478d61c
FF
1129 J is an index into F which provides the desired method.
1130
1131 We only use the symbol for its address, so be happy with either a
1132 full symbol or a minimal symbol.
1133 */
c906108c 1134
f23631e4
AC
1135struct value *
1136value_fn_field (struct value **arg1p, struct fn_field *f, int j, struct type *type,
fba45db2 1137 int offset)
c906108c 1138{
f23631e4 1139 struct value *v;
52f0bd74 1140 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
0478d61c 1141 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
c906108c 1142 struct symbol *sym;
0478d61c 1143 struct minimal_symbol *msym;
c906108c 1144
176620f1 1145 sym = lookup_symbol (physname, 0, VAR_DOMAIN, 0, NULL);
5ae326fa 1146 if (sym != NULL)
0478d61c 1147 {
5ae326fa
AC
1148 msym = NULL;
1149 }
1150 else
1151 {
1152 gdb_assert (sym == NULL);
0478d61c 1153 msym = lookup_minimal_symbol (physname, NULL, NULL);
5ae326fa
AC
1154 if (msym == NULL)
1155 return NULL;
0478d61c
FF
1156 }
1157
c906108c 1158 v = allocate_value (ftype);
0478d61c
FF
1159 if (sym)
1160 {
1161 VALUE_ADDRESS (v) = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
1162 }
1163 else
1164 {
1165 VALUE_ADDRESS (v) = SYMBOL_VALUE_ADDRESS (msym);
1166 }
c906108c
SS
1167
1168 if (arg1p)
c5aa993b 1169 {
df407dfe 1170 if (type != value_type (*arg1p))
c5aa993b
JM
1171 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
1172 value_addr (*arg1p)));
1173
070ad9f0 1174 /* Move the `this' pointer according to the offset.
c5aa993b
JM
1175 VALUE_OFFSET (*arg1p) += offset;
1176 */
c906108c
SS
1177 }
1178
1179 return v;
1180}
1181
c906108c
SS
1182\f
1183/* Unpack a field FIELDNO of the specified TYPE, from the anonymous object at
1184 VALADDR.
1185
1186 Extracting bits depends on endianness of the machine. Compute the
1187 number of least significant bits to discard. For big endian machines,
1188 we compute the total number of bits in the anonymous object, subtract
1189 off the bit count from the MSB of the object to the MSB of the
1190 bitfield, then the size of the bitfield, which leaves the LSB discard
1191 count. For little endian machines, the discard count is simply the
1192 number of bits from the LSB of the anonymous object to the LSB of the
1193 bitfield.
1194
1195 If the field is signed, we also do sign extension. */
1196
1197LONGEST
66140c26 1198unpack_field_as_long (struct type *type, const char *valaddr, int fieldno)
c906108c
SS
1199{
1200 ULONGEST val;
1201 ULONGEST valmask;
1202 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
1203 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
1204 int lsbcount;
1205 struct type *field_type;
1206
1207 val = extract_unsigned_integer (valaddr + bitpos / 8, sizeof (val));
1208 field_type = TYPE_FIELD_TYPE (type, fieldno);
1209 CHECK_TYPEDEF (field_type);
1210
1211 /* Extract bits. See comment above. */
1212
1213 if (BITS_BIG_ENDIAN)
1214 lsbcount = (sizeof val * 8 - bitpos % 8 - bitsize);
1215 else
1216 lsbcount = (bitpos % 8);
1217 val >>= lsbcount;
1218
1219 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
1220 If the field is signed, and is negative, then sign extend. */
1221
1222 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
1223 {
1224 valmask = (((ULONGEST) 1) << bitsize) - 1;
1225 val &= valmask;
1226 if (!TYPE_UNSIGNED (field_type))
1227 {
1228 if (val & (valmask ^ (valmask >> 1)))
1229 {
1230 val |= ~valmask;
1231 }
1232 }
1233 }
1234 return (val);
1235}
1236
1237/* Modify the value of a bitfield. ADDR points to a block of memory in
1238 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
1239 is the desired value of the field, in host byte order. BITPOS and BITSIZE
f4e88c8e
PH
1240 indicate which bits (in target bit order) comprise the bitfield.
1241 Requires 0 < BITSIZE <= lbits, 0 <= BITPOS+BITSIZE <= lbits, and
1242 0 <= BITPOS, where lbits is the size of a LONGEST in bits. */
c906108c
SS
1243
1244void
fba45db2 1245modify_field (char *addr, LONGEST fieldval, int bitpos, int bitsize)
c906108c 1246{
f4e88c8e
PH
1247 ULONGEST oword;
1248 ULONGEST mask = (ULONGEST) -1 >> (8 * sizeof (ULONGEST) - bitsize);
c906108c
SS
1249
1250 /* If a negative fieldval fits in the field in question, chop
1251 off the sign extension bits. */
f4e88c8e
PH
1252 if ((~fieldval & ~(mask >> 1)) == 0)
1253 fieldval &= mask;
c906108c
SS
1254
1255 /* Warn if value is too big to fit in the field in question. */
f4e88c8e 1256 if (0 != (fieldval & ~mask))
c906108c
SS
1257 {
1258 /* FIXME: would like to include fieldval in the message, but
c5aa993b 1259 we don't have a sprintf_longest. */
c906108c
SS
1260 warning ("Value does not fit in %d bits.", bitsize);
1261
1262 /* Truncate it, otherwise adjoining fields may be corrupted. */
f4e88c8e 1263 fieldval &= mask;
c906108c
SS
1264 }
1265
f4e88c8e 1266 oword = extract_unsigned_integer (addr, sizeof oword);
c906108c
SS
1267
1268 /* Shifting for bit field depends on endianness of the target machine. */
1269 if (BITS_BIG_ENDIAN)
1270 bitpos = sizeof (oword) * 8 - bitpos - bitsize;
1271
f4e88c8e 1272 oword &= ~(mask << bitpos);
c906108c
SS
1273 oword |= fieldval << bitpos;
1274
f4e88c8e 1275 store_unsigned_integer (addr, sizeof oword, oword);
c906108c
SS
1276}
1277\f
1278/* Convert C numbers into newly allocated values */
1279
f23631e4 1280struct value *
aa1ee363 1281value_from_longest (struct type *type, LONGEST num)
c906108c 1282{
f23631e4 1283 struct value *val = allocate_value (type);
52f0bd74
AC
1284 enum type_code code;
1285 int len;
c5aa993b 1286retry:
c906108c
SS
1287 code = TYPE_CODE (type);
1288 len = TYPE_LENGTH (type);
1289
1290 switch (code)
1291 {
1292 case TYPE_CODE_TYPEDEF:
1293 type = check_typedef (type);
1294 goto retry;
1295 case TYPE_CODE_INT:
1296 case TYPE_CODE_CHAR:
1297 case TYPE_CODE_ENUM:
1298 case TYPE_CODE_BOOL:
1299 case TYPE_CODE_RANGE:
990a07ab 1300 store_signed_integer (value_contents_raw (val), len, num);
c906108c 1301 break;
c5aa993b 1302
c906108c
SS
1303 case TYPE_CODE_REF:
1304 case TYPE_CODE_PTR:
990a07ab 1305 store_typed_address (value_contents_raw (val), type, (CORE_ADDR) num);
c906108c 1306 break;
c5aa993b 1307
c906108c
SS
1308 default:
1309 error ("Unexpected type (%d) encountered for integer constant.", code);
1310 }
1311 return val;
1312}
1313
4478b372
JB
1314
1315/* Create a value representing a pointer of type TYPE to the address
1316 ADDR. */
f23631e4 1317struct value *
4478b372
JB
1318value_from_pointer (struct type *type, CORE_ADDR addr)
1319{
f23631e4 1320 struct value *val = allocate_value (type);
990a07ab 1321 store_typed_address (value_contents_raw (val), type, addr);
4478b372
JB
1322 return val;
1323}
1324
1325
0f71a2f6 1326/* Create a value for a string constant to be stored locally
070ad9f0 1327 (not in the inferior's memory space, but in GDB memory).
0f71a2f6
JM
1328 This is analogous to value_from_longest, which also does not
1329 use inferior memory. String shall NOT contain embedded nulls. */
1330
f23631e4 1331struct value *
fba45db2 1332value_from_string (char *ptr)
0f71a2f6 1333{
f23631e4 1334 struct value *val;
c5aa993b 1335 int len = strlen (ptr);
0f71a2f6 1336 int lowbound = current_language->string_lower_bound;
f290d38e
AC
1337 struct type *string_char_type;
1338 struct type *rangetype;
1339 struct type *stringtype;
1340
1341 rangetype = create_range_type ((struct type *) NULL,
1342 builtin_type_int,
1343 lowbound, len + lowbound - 1);
1344 string_char_type = language_string_char_type (current_language,
1345 current_gdbarch);
1346 stringtype = create_array_type ((struct type *) NULL,
1347 string_char_type,
1348 rangetype);
0f71a2f6 1349 val = allocate_value (stringtype);
990a07ab 1350 memcpy (value_contents_raw (val), ptr, len);
0f71a2f6
JM
1351 return val;
1352}
1353
f23631e4 1354struct value *
fba45db2 1355value_from_double (struct type *type, DOUBLEST num)
c906108c 1356{
f23631e4 1357 struct value *val = allocate_value (type);
c906108c 1358 struct type *base_type = check_typedef (type);
52f0bd74
AC
1359 enum type_code code = TYPE_CODE (base_type);
1360 int len = TYPE_LENGTH (base_type);
c906108c
SS
1361
1362 if (code == TYPE_CODE_FLT)
1363 {
990a07ab 1364 store_typed_floating (value_contents_raw (val), base_type, num);
c906108c
SS
1365 }
1366 else
1367 error ("Unexpected type encountered for floating constant.");
1368
1369 return val;
1370}
994b9211
AC
1371
1372struct value *
1373coerce_ref (struct value *arg)
1374{
df407dfe 1375 struct type *value_type_arg_tmp = check_typedef (value_type (arg));
994b9211
AC
1376 if (TYPE_CODE (value_type_arg_tmp) == TYPE_CODE_REF)
1377 arg = value_at_lazy (TYPE_TARGET_TYPE (value_type_arg_tmp),
df407dfe 1378 unpack_pointer (value_type (arg),
0fd88904 1379 value_contents (arg)));
994b9211
AC
1380 return arg;
1381}
1382
1383struct value *
1384coerce_array (struct value *arg)
1385{
1386 arg = coerce_ref (arg);
1387 if (current_language->c_style_arrays
df407dfe 1388 && TYPE_CODE (value_type (arg)) == TYPE_CODE_ARRAY)
994b9211 1389 arg = value_coerce_array (arg);
df407dfe 1390 if (TYPE_CODE (value_type (arg)) == TYPE_CODE_FUNC)
994b9211
AC
1391 arg = value_coerce_function (arg);
1392 return arg;
1393}
1394
1395struct value *
1396coerce_number (struct value *arg)
1397{
1398 arg = coerce_array (arg);
1399 arg = coerce_enum (arg);
1400 return arg;
1401}
1402
1403struct value *
1404coerce_enum (struct value *arg)
1405{
df407dfe 1406 if (TYPE_CODE (check_typedef (value_type (arg))) == TYPE_CODE_ENUM)
994b9211
AC
1407 arg = value_cast (builtin_type_unsigned_int, arg);
1408 return arg;
1409}
c906108c 1410\f
c906108c 1411
74055713
AC
1412/* Should we use DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS instead of
1413 EXTRACT_RETURN_VALUE? GCC_P is true if compiled with gcc and TYPE
1414 is the type (which is known to be struct, union or array).
c906108c
SS
1415
1416 On most machines, the struct convention is used unless we are
1417 using gcc and the type is of a special size. */
1418/* As of about 31 Mar 93, GCC was changed to be compatible with the
1419 native compiler. GCC 2.3.3 was the last release that did it the
1420 old way. Since gcc2_compiled was not changed, we have no
1421 way to correctly win in all cases, so we just do the right thing
1422 for gcc1 and for gcc2 after this change. Thus it loses for gcc
1423 2.0-2.3.3. This is somewhat unfortunate, but changing gcc2_compiled
1424 would cause more chaos than dealing with some struct returns being
1425 handled wrong. */
bc87dfa0
AC
1426/* NOTE: cagney/2004-06-13: Deleted check for "gcc_p". GCC 1.x is
1427 dead. */
c906108c
SS
1428
1429int
fba45db2 1430generic_use_struct_convention (int gcc_p, struct type *value_type)
c5aa993b 1431{
bc87dfa0
AC
1432 return !(TYPE_LENGTH (value_type) == 1
1433 || TYPE_LENGTH (value_type) == 2
1434 || TYPE_LENGTH (value_type) == 4
1435 || TYPE_LENGTH (value_type) == 8);
c906108c
SS
1436}
1437
48436ce6
AC
1438/* Return true if the function returning the specified type is using
1439 the convention of returning structures in memory (passing in the
1440 address as a hidden first parameter). GCC_P is nonzero if compiled
c906108c
SS
1441 with GCC. */
1442
1443int
48436ce6 1444using_struct_return (struct type *value_type, int gcc_p)
c906108c 1445{
52f0bd74 1446 enum type_code code = TYPE_CODE (value_type);
c906108c
SS
1447
1448 if (code == TYPE_CODE_ERROR)
1449 error ("Function return type unknown.");
1450
667e784f
AC
1451 if (code == TYPE_CODE_VOID)
1452 /* A void return value is never in memory. See also corresponding
44e5158b 1453 code in "print_return_value". */
667e784f
AC
1454 return 0;
1455
92ad9cd9
AC
1456 /* Probe the architecture for the return-value convention. */
1457 return (gdbarch_return_value (current_gdbarch, value_type,
1458 NULL, NULL, NULL)
31db7b6c 1459 != RETURN_VALUE_REGISTER_CONVENTION);
c906108c
SS
1460}
1461
c906108c 1462void
fba45db2 1463_initialize_values (void)
c906108c
SS
1464{
1465 add_cmd ("convenience", no_class, show_convenience,
c5aa993b 1466 "Debugger convenience (\"$foo\") variables.\n\
c906108c
SS
1467These variables are created when you assign them values;\n\
1468thus, \"print $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\n\
1469A few convenience variables are given values automatically:\n\
1470\"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
1471\"$__\" holds the contents of the last address examined with \"x\".",
1472 &showlist);
1473
1474 add_cmd ("values", no_class, show_values,
1475 "Elements of value history around item number IDX (or last ten).",
1476 &showlist);
1477}
This page took 0.805964 seconds and 4 git commands to generate.