CARP:
[deliverable/binutils-gdb.git] / gdb / values.c
CommitLineData
7d9884b9 1/* Low level packing and unpacking of values for GDB, the GNU Debugger.
879c0417 2 Copyright 1986, 87, 89, 91, 93, 94, 95, 96, 97, 1998
8918bce0 3 Free Software Foundation, Inc.
dd3b648e
RP
4
5This file is part of GDB.
6
99a7de40 7This program is free software; you can redistribute it and/or modify
dd3b648e 8it under the terms of the GNU General Public License as published by
99a7de40
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
dd3b648e 11
99a7de40 12This program is distributed in the hope that it will be useful,
dd3b648e
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
99a7de40 18along with this program; if not, write to the Free Software
6c9638b4 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
dd3b648e 20
dd3b648e 21#include "defs.h"
2b576293 22#include "gdb_string.h"
dd3b648e 23#include "symtab.h"
1ab3bf1b 24#include "gdbtypes.h"
dd3b648e
RP
25#include "value.h"
26#include "gdbcore.h"
27#include "frame.h"
28#include "command.h"
f266e564 29#include "gdbcmd.h"
ac88ca20 30#include "target.h"
acc4efde 31#include "language.h"
b52cac6b 32#include "scm-lang.h"
8050a57b 33#include "demangle.h"
dd3b648e 34
879c0417
JM
35/* Prototypes for exported functions. */
36
37void _initialize_values PARAMS ((void));
38
39/* Prototypes for local functions. */
1ab3bf1b 40
849d0896
PS
41static value_ptr value_headof PARAMS ((value_ptr, struct type *,
42 struct type *));
1ab3bf1b 43
82a2edfb 44static void show_values PARAMS ((char *, int));
1ab3bf1b 45
82a2edfb 46static void show_convenience PARAMS ((char *, int));
71b16efa 47
b607efe7
FF
48static int vb_match PARAMS ((struct type *, int, struct type *));
49
dd3b648e
RP
50/* The value-history records all the values printed
51 by print commands during this session. Each chunk
52 records 60 consecutive values. The first chunk on
53 the chain records the most recent values.
54 The total number of values is in value_history_count. */
55
56#define VALUE_HISTORY_CHUNK 60
57
58struct value_history_chunk
59{
60 struct value_history_chunk *next;
82a2edfb 61 value_ptr values[VALUE_HISTORY_CHUNK];
dd3b648e
RP
62};
63
64/* Chain of chunks now in use. */
65
66static struct value_history_chunk *value_history_chain;
67
68static int value_history_count; /* Abs number of last entry stored */
dd3b648e
RP
69\f
70/* List of all value objects currently allocated
71 (except for those released by calls to release_value)
72 This is so they can be freed after each command. */
73
82a2edfb 74static value_ptr all_values;
dd3b648e
RP
75
76/* Allocate a value that has the correct length for type TYPE. */
77
82a2edfb 78value_ptr
dd3b648e
RP
79allocate_value (type)
80 struct type *type;
81{
82a2edfb 82 register value_ptr val;
5e548861 83 struct type *atype = check_typedef (type);
dd3b648e 84
5e548861 85 val = (struct value *) xmalloc (sizeof (struct value) + TYPE_LENGTH (atype));
dd3b648e
RP
86 VALUE_NEXT (val) = all_values;
87 all_values = val;
88 VALUE_TYPE (val) = type;
89 VALUE_LVAL (val) = not_lval;
90 VALUE_ADDRESS (val) = 0;
91 VALUE_FRAME (val) = 0;
92 VALUE_OFFSET (val) = 0;
93 VALUE_BITPOS (val) = 0;
94 VALUE_BITSIZE (val) = 0;
dd3b648e
RP
95 VALUE_REGNO (val) = -1;
96 VALUE_LAZY (val) = 0;
97 VALUE_OPTIMIZED_OUT (val) = 0;
6c310da8 98 VALUE_BFD_SECTION (val) = NULL;
30974778 99 val->modifiable = 1;
dd3b648e
RP
100 return val;
101}
102
103/* Allocate a value that has the correct length
104 for COUNT repetitions type TYPE. */
105
82a2edfb 106value_ptr
dd3b648e
RP
107allocate_repeat_value (type, count)
108 struct type *type;
109 int count;
110{
398f584f
PB
111 int low_bound = current_language->string_lower_bound; /* ??? */
112 /* FIXME-type-allocation: need a way to free this type when we are
113 done with it. */
114 struct type *range_type
115 = create_range_type ((struct type *) NULL, builtin_type_int,
116 low_bound, count + low_bound - 1);
117 /* FIXME-type-allocation: need a way to free this type when we are
118 done with it. */
119 return allocate_value (create_array_type ((struct type *) NULL,
120 type, range_type));
dd3b648e
RP
121}
122
fcb887ff
JK
123/* Return a mark in the value chain. All values allocated after the
124 mark is obtained (except for those released) are subject to being freed
125 if a subsequent value_free_to_mark is passed the mark. */
82a2edfb 126value_ptr
fcb887ff
JK
127value_mark ()
128{
129 return all_values;
130}
131
132/* Free all values allocated since MARK was obtained by value_mark
133 (except for those released). */
134void
135value_free_to_mark (mark)
82a2edfb 136 value_ptr mark;
fcb887ff 137{
82a2edfb 138 value_ptr val, next;
fcb887ff
JK
139
140 for (val = all_values; val && val != mark; val = next)
141 {
142 next = VALUE_NEXT (val);
143 value_free (val);
144 }
145 all_values = val;
146}
147
dd3b648e
RP
148/* Free all the values that have been allocated (except for those released).
149 Called after each command, successful or not. */
150
151void
152free_all_values ()
153{
82a2edfb 154 register value_ptr val, next;
dd3b648e
RP
155
156 for (val = all_values; val; val = next)
157 {
158 next = VALUE_NEXT (val);
159 value_free (val);
160 }
161
162 all_values = 0;
163}
164
165/* Remove VAL from the chain all_values
166 so it will not be freed automatically. */
167
168void
169release_value (val)
82a2edfb 170 register value_ptr val;
dd3b648e 171{
82a2edfb 172 register value_ptr v;
dd3b648e
RP
173
174 if (all_values == val)
175 {
176 all_values = val->next;
177 return;
178 }
179
180 for (v = all_values; v; v = v->next)
181 {
182 if (v->next == val)
183 {
184 v->next = val->next;
185 break;
186 }
187 }
188}
189
999dd04b
JL
190/* Release all values up to mark */
191value_ptr
192value_release_to_mark (mark)
193 value_ptr mark;
194{
195 value_ptr val, next;
196
197 for (val = next = all_values; next; next = VALUE_NEXT (next))
198 if (VALUE_NEXT (next) == mark)
199 {
200 all_values = VALUE_NEXT (next);
201 VALUE_NEXT (next) = 0;
202 return val;
203 }
204 all_values = 0;
205 return val;
206}
207
dd3b648e
RP
208/* Return a copy of the value ARG.
209 It contains the same contents, for same memory address,
210 but it's a different block of storage. */
211
82a2edfb 212value_ptr
dd3b648e 213value_copy (arg)
82a2edfb 214 value_ptr arg;
dd3b648e 215{
dd3b648e 216 register struct type *type = VALUE_TYPE (arg);
398f584f 217 register value_ptr val = allocate_value (type);
dd3b648e
RP
218 VALUE_LVAL (val) = VALUE_LVAL (arg);
219 VALUE_ADDRESS (val) = VALUE_ADDRESS (arg);
220 VALUE_OFFSET (val) = VALUE_OFFSET (arg);
221 VALUE_BITPOS (val) = VALUE_BITPOS (arg);
222 VALUE_BITSIZE (val) = VALUE_BITSIZE (arg);
5e711e7f 223 VALUE_FRAME (val) = VALUE_FRAME (arg);
dd3b648e
RP
224 VALUE_REGNO (val) = VALUE_REGNO (arg);
225 VALUE_LAZY (val) = VALUE_LAZY (arg);
5e711e7f 226 VALUE_OPTIMIZED_OUT (val) = VALUE_OPTIMIZED_OUT (arg);
6c310da8 227 VALUE_BFD_SECTION (val) = VALUE_BFD_SECTION (arg);
30974778 228 val->modifiable = arg->modifiable;
dd3b648e
RP
229 if (!VALUE_LAZY (val))
230 {
51b57ded 231 memcpy (VALUE_CONTENTS_RAW (val), VALUE_CONTENTS_RAW (arg),
398f584f 232 TYPE_LENGTH (VALUE_TYPE (arg)));
dd3b648e
RP
233 }
234 return val;
235}
236\f
237/* Access to the value history. */
238
239/* Record a new value in the value history.
240 Returns the absolute history index of the entry.
241 Result of -1 indicates the value was not saved; otherwise it is the
242 value history index of this new item. */
243
244int
245record_latest_value (val)
82a2edfb 246 value_ptr val;
dd3b648e
RP
247{
248 int i;
249
26a859ec
PS
250 /* We don't want this value to have anything to do with the inferior anymore.
251 In particular, "set $1 = 50" should not affect the variable from which
252 the value was taken, and fast watchpoints should be able to assume that
253 a value on the value history never changes. */
254 if (VALUE_LAZY (val))
255 value_fetch_lazy (val);
256 /* We preserve VALUE_LVAL so that the user can find out where it was fetched
257 from. This is a bit dubious, because then *&$1 does not just return $1
258 but the current contents of that location. c'est la vie... */
259 val->modifiable = 0;
260 release_value (val);
261
dd3b648e
RP
262 /* Here we treat value_history_count as origin-zero
263 and applying to the value being stored now. */
264
265 i = value_history_count % VALUE_HISTORY_CHUNK;
266 if (i == 0)
267 {
268 register struct value_history_chunk *new
269 = (struct value_history_chunk *)
270 xmalloc (sizeof (struct value_history_chunk));
4ed3a9ea 271 memset (new->values, 0, sizeof new->values);
dd3b648e
RP
272 new->next = value_history_chain;
273 value_history_chain = new;
274 }
275
276 value_history_chain->values[i] = val;
4abc83b9 277
dd3b648e
RP
278 /* Now we regard value_history_count as origin-one
279 and applying to the value just stored. */
280
281 return ++value_history_count;
282}
283
284/* Return a copy of the value in the history with sequence number NUM. */
285
82a2edfb 286value_ptr
dd3b648e
RP
287access_value_history (num)
288 int num;
289{
290 register struct value_history_chunk *chunk;
291 register int i;
292 register int absnum = num;
293
294 if (absnum <= 0)
295 absnum += value_history_count;
296
297 if (absnum <= 0)
298 {
299 if (num == 0)
300 error ("The history is empty.");
301 else if (num == 1)
302 error ("There is only one value in the history.");
303 else
304 error ("History does not go back to $$%d.", -num);
305 }
306 if (absnum > value_history_count)
307 error ("History has not yet reached $%d.", absnum);
308
309 absnum--;
310
311 /* Now absnum is always absolute and origin zero. */
312
313 chunk = value_history_chain;
314 for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK - absnum / VALUE_HISTORY_CHUNK;
315 i > 0; i--)
316 chunk = chunk->next;
317
318 return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
319}
320
321/* Clear the value history entirely.
322 Must be done when new symbol tables are loaded,
323 because the type pointers become invalid. */
324
325void
326clear_value_history ()
327{
328 register struct value_history_chunk *next;
329 register int i;
82a2edfb 330 register value_ptr val;
dd3b648e
RP
331
332 while (value_history_chain)
333 {
334 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
a8a69e63 335 if ((val = value_history_chain->values[i]) != NULL)
be772100 336 free ((PTR)val);
dd3b648e 337 next = value_history_chain->next;
be772100 338 free ((PTR)value_history_chain);
dd3b648e
RP
339 value_history_chain = next;
340 }
341 value_history_count = 0;
342}
343
344static void
f266e564 345show_values (num_exp, from_tty)
dd3b648e
RP
346 char *num_exp;
347 int from_tty;
348{
349 register int i;
82a2edfb 350 register value_ptr val;
dd3b648e
RP
351 static int num = 1;
352
353 if (num_exp)
354 {
46c28185
RP
355 /* "info history +" should print from the stored position.
356 "info history <exp>" should print around value number <exp>. */
357 if (num_exp[0] != '+' || num_exp[1] != '\0')
dd3b648e
RP
358 num = parse_and_eval_address (num_exp) - 5;
359 }
360 else
361 {
362 /* "info history" means print the last 10 values. */
363 num = value_history_count - 9;
364 }
365
366 if (num <= 0)
367 num = 1;
368
369 for (i = num; i < num + 10 && i <= value_history_count; i++)
370 {
371 val = access_value_history (i);
372 printf_filtered ("$%d = ", i);
199b2450 373 value_print (val, gdb_stdout, 0, Val_pretty_default);
dd3b648e
RP
374 printf_filtered ("\n");
375 }
376
377 /* The next "info history +" should start after what we just printed. */
378 num += 10;
379
380 /* Hitting just return after this command should do the same thing as
381 "info history +". If num_exp is null, this is unnecessary, since
382 "info history +" is not useful after "info history". */
383 if (from_tty && num_exp)
384 {
385 num_exp[0] = '+';
386 num_exp[1] = '\0';
387 }
388}
389\f
390/* Internal variables. These are variables within the debugger
391 that hold values assigned by debugger commands.
392 The user refers to them with a '$' prefix
393 that does not appear in the variable names stored internally. */
394
395static struct internalvar *internalvars;
396
397/* Look up an internal variable with name NAME. NAME should not
398 normally include a dollar sign.
399
400 If the specified internal variable does not exist,
401 one is created, with a void value. */
402
403struct internalvar *
404lookup_internalvar (name)
405 char *name;
406{
407 register struct internalvar *var;
408
409 for (var = internalvars; var; var = var->next)
2e4964ad 410 if (STREQ (var->name, name))
dd3b648e
RP
411 return var;
412
413 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
58ae87f6 414 var->name = concat (name, NULL);
dd3b648e
RP
415 var->value = allocate_value (builtin_type_void);
416 release_value (var->value);
417 var->next = internalvars;
418 internalvars = var;
419 return var;
420}
421
82a2edfb 422value_ptr
dd3b648e
RP
423value_of_internalvar (var)
424 struct internalvar *var;
425{
82a2edfb 426 register value_ptr val;
dd3b648e
RP
427
428#ifdef IS_TRAPPED_INTERNALVAR
429 if (IS_TRAPPED_INTERNALVAR (var->name))
430 return VALUE_OF_TRAPPED_INTERNALVAR (var);
431#endif
432
433 val = value_copy (var->value);
434 if (VALUE_LAZY (val))
435 value_fetch_lazy (val);
436 VALUE_LVAL (val) = lval_internalvar;
437 VALUE_INTERNALVAR (val) = var;
438 return val;
439}
440
441void
442set_internalvar_component (var, offset, bitpos, bitsize, newval)
443 struct internalvar *var;
444 int offset, bitpos, bitsize;
82a2edfb 445 value_ptr newval;
dd3b648e
RP
446{
447 register char *addr = VALUE_CONTENTS (var->value) + offset;
448
449#ifdef IS_TRAPPED_INTERNALVAR
450 if (IS_TRAPPED_INTERNALVAR (var->name))
451 SET_TRAPPED_INTERNALVAR (var, newval, bitpos, bitsize, offset);
452#endif
453
454 if (bitsize)
58e49e21 455 modify_field (addr, value_as_long (newval),
dd3b648e
RP
456 bitpos, bitsize);
457 else
4ed3a9ea 458 memcpy (addr, VALUE_CONTENTS (newval), TYPE_LENGTH (VALUE_TYPE (newval)));
dd3b648e
RP
459}
460
461void
462set_internalvar (var, val)
463 struct internalvar *var;
82a2edfb 464 value_ptr val;
dd3b648e 465{
51f83933
JK
466 value_ptr newval;
467
dd3b648e
RP
468#ifdef IS_TRAPPED_INTERNALVAR
469 if (IS_TRAPPED_INTERNALVAR (var->name))
470 SET_TRAPPED_INTERNALVAR (var, val, 0, 0, 0);
471#endif
472
51f83933 473 newval = value_copy (val);
ade01652 474 newval->modifiable = 1;
51f83933 475
6fab5bef
JG
476 /* Force the value to be fetched from the target now, to avoid problems
477 later when this internalvar is referenced and the target is gone or
478 has changed. */
51f83933
JK
479 if (VALUE_LAZY (newval))
480 value_fetch_lazy (newval);
481
482 /* Begin code which must not call error(). If var->value points to
483 something free'd, an error() obviously leaves a dangling pointer.
484 But we also get a danling pointer if var->value points to
485 something in the value chain (i.e., before release_value is
486 called), because after the error free_all_values will get called before
487 long. */
488 free ((PTR)var->value);
489 var->value = newval;
490 release_value (newval);
491 /* End code which must not call error(). */
dd3b648e
RP
492}
493
494char *
495internalvar_name (var)
496 struct internalvar *var;
497{
498 return var->name;
499}
500
501/* Free all internalvars. Done when new symtabs are loaded,
502 because that makes the values invalid. */
503
504void
505clear_internalvars ()
506{
507 register struct internalvar *var;
508
509 while (internalvars)
510 {
511 var = internalvars;
512 internalvars = var->next;
be772100
JG
513 free ((PTR)var->name);
514 free ((PTR)var->value);
515 free ((PTR)var);
dd3b648e
RP
516 }
517}
518
519static void
ac88ca20
JG
520show_convenience (ignore, from_tty)
521 char *ignore;
522 int from_tty;
dd3b648e
RP
523{
524 register struct internalvar *var;
525 int varseen = 0;
526
527 for (var = internalvars; var; var = var->next)
528 {
529#ifdef IS_TRAPPED_INTERNALVAR
530 if (IS_TRAPPED_INTERNALVAR (var->name))
531 continue;
532#endif
533 if (!varseen)
534 {
dd3b648e
RP
535 varseen = 1;
536 }
afe4ca15 537 printf_filtered ("$%s = ", var->name);
199b2450 538 value_print (var->value, gdb_stdout, 0, Val_pretty_default);
afe4ca15 539 printf_filtered ("\n");
dd3b648e
RP
540 }
541 if (!varseen)
199b2450 542 printf_unfiltered ("No debugger convenience variables now defined.\n\
dd3b648e
RP
543Convenience variables have names starting with \"$\";\n\
544use \"set\" as in \"set $foo = 5\" to define them.\n");
545}
546\f
547/* Extract a value as a C number (either long or double).
548 Knows how to convert fixed values to double, or
549 floating values to long.
550 Does not deallocate the value. */
551
552LONGEST
553value_as_long (val)
82a2edfb 554 register value_ptr val;
dd3b648e
RP
555{
556 /* This coerces arrays and functions, which is necessary (e.g.
557 in disassemble_command). It also dereferences references, which
558 I suspect is the most logical thing to do. */
533bda77 559 COERCE_ARRAY (val);
dd3b648e
RP
560 return unpack_long (VALUE_TYPE (val), VALUE_CONTENTS (val));
561}
562
aa220473 563DOUBLEST
dd3b648e 564value_as_double (val)
82a2edfb 565 register value_ptr val;
dd3b648e 566{
aa220473 567 DOUBLEST foo;
dd3b648e
RP
568 int inv;
569
570 foo = unpack_double (VALUE_TYPE (val), VALUE_CONTENTS (val), &inv);
571 if (inv)
572 error ("Invalid floating value found in program.");
573 return foo;
574}
e1ce8aa5
JK
575/* Extract a value as a C pointer.
576 Does not deallocate the value. */
577CORE_ADDR
578value_as_pointer (val)
82a2edfb 579 value_ptr val;
e1ce8aa5 580{
2bff8e38
JK
581 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
582 whether we want this to be true eventually. */
b2ccb6a4
JK
583#if 0
584 /* ADDR_BITS_REMOVE is wrong if we are being called for a
585 non-address (e.g. argument to "signal", "info break", etc.), or
586 for pointers to char, in which the low bits *are* significant. */
ae0ea72e 587 return ADDR_BITS_REMOVE(value_as_long (val));
b2ccb6a4
JK
588#else
589 return value_as_long (val);
590#endif
e1ce8aa5 591}
dd3b648e
RP
592\f
593/* Unpack raw data (copied from debugee, target byte order) at VALADDR
594 as a long, or as a double, assuming the raw data is described
595 by type TYPE. Knows how to convert different sizes of values
596 and can convert between fixed and floating point. We don't assume
597 any alignment for the raw data. Return value is in host byte order.
598
599 If you want functions and arrays to be coerced to pointers, and
600 references to be dereferenced, call value_as_long() instead.
601
602 C++: It is assumed that the front-end has taken care of
603 all matters concerning pointers to members. A pointer
604 to member which reaches here is considered to be equivalent
605 to an INT (or some size). After all, it is only an offset. */
606
607LONGEST
608unpack_long (type, valaddr)
609 struct type *type;
610 char *valaddr;
611{
612 register enum type_code code = TYPE_CODE (type);
613 register int len = TYPE_LENGTH (type);
614 register int nosign = TYPE_UNSIGNED (type);
615
3c02944a
PB
616 if (current_language->la_language == language_scm
617 && is_scmvalue_type (type))
618 return scm_unpack (type, valaddr, TYPE_CODE_INT);
619
bf5c0d64 620 switch (code)
dd3b648e 621 {
5e548861
PB
622 case TYPE_CODE_TYPEDEF:
623 return unpack_long (check_typedef (type), valaddr);
bf5c0d64
JK
624 case TYPE_CODE_ENUM:
625 case TYPE_CODE_BOOL:
626 case TYPE_CODE_INT:
627 case TYPE_CODE_CHAR:
b96bc1e4 628 case TYPE_CODE_RANGE:
bf5c0d64
JK
629 if (nosign)
630 return extract_unsigned_integer (valaddr, len);
dd3b648e 631 else
bf5c0d64
JK
632 return extract_signed_integer (valaddr, len);
633
634 case TYPE_CODE_FLT:
635 return extract_floating (valaddr, len);
636
637 case TYPE_CODE_PTR:
638 case TYPE_CODE_REF:
639 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
640 whether we want this to be true eventually. */
77636dea
FF
641#ifdef GDB_TARGET_IS_D10V
642 if (len == 2)
643 return D10V_MAKE_DADDR(extract_address (valaddr, len));
644#endif
34df79fc 645 return extract_address (valaddr, len);
dd3b648e 646
bf5c0d64
JK
647 case TYPE_CODE_MEMBER:
648 error ("not implemented: member types in unpack_long");
649
650 default:
ca0865db 651 error ("Value can't be converted to integer.");
bf5c0d64
JK
652 }
653 return 0; /* Placate lint. */
dd3b648e
RP
654}
655
656/* Return a double value from the specified type and address.
657 INVP points to an int which is set to 0 for valid value,
658 1 for invalid value (bad float format). In either case,
659 the returned double is OK to use. Argument is in target
660 format, result is in host format. */
661
aa220473 662DOUBLEST
dd3b648e
RP
663unpack_double (type, valaddr, invp)
664 struct type *type;
665 char *valaddr;
666 int *invp;
667{
47b8a5ce
PS
668 enum type_code code;
669 int len;
670 int nosign;
dd3b648e
RP
671
672 *invp = 0; /* Assume valid. */
5e548861 673 CHECK_TYPEDEF (type);
47b8a5ce
PS
674 code = TYPE_CODE (type);
675 len = TYPE_LENGTH (type);
676 nosign = TYPE_UNSIGNED (type);
dd3b648e
RP
677 if (code == TYPE_CODE_FLT)
678 {
ac57e5ad 679#ifdef INVALID_FLOAT
dd3b648e
RP
680 if (INVALID_FLOAT (valaddr, len))
681 {
682 *invp = 1;
683 return 1.234567891011121314;
684 }
ac57e5ad 685#endif
89ce0c8f
JK
686 return extract_floating (valaddr, len);
687 }
688 else if (nosign)
689 {
690 /* Unsigned -- be sure we compensate for signed LONGEST. */
6c310da8 691#if !defined (_MSC_VER) || (_MSC_VER > 900)
119dfbb7 692 return (ULONGEST) unpack_long (type, valaddr);
28444bf3
DP
693#else
694 /* FIXME!!! msvc22 doesn't support unsigned __int64 -> double */
695 return (LONGEST) unpack_long (type, valaddr);
28444bf3 696#endif /* _MSC_VER */
89ce0c8f
JK
697 }
698 else
699 {
700 /* Signed -- we are OK with unpack_long. */
701 return unpack_long (type, valaddr);
dd3b648e 702 }
dd3b648e 703}
e1ce8aa5
JK
704
705/* Unpack raw data (copied from debugee, target byte order) at VALADDR
706 as a CORE_ADDR, assuming the raw data is described by type TYPE.
707 We don't assume any alignment for the raw data. Return value is in
708 host byte order.
709
710 If you want functions and arrays to be coerced to pointers, and
711 references to be dereferenced, call value_as_pointer() instead.
712
713 C++: It is assumed that the front-end has taken care of
714 all matters concerning pointers to members. A pointer
715 to member which reaches here is considered to be equivalent
716 to an INT (or some size). After all, it is only an offset. */
717
718CORE_ADDR
719unpack_pointer (type, valaddr)
720 struct type *type;
721 char *valaddr;
722{
2bff8e38
JK
723 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
724 whether we want this to be true eventually. */
725 return unpack_long (type, valaddr);
e1ce8aa5 726}
dd3b648e 727\f
f7f37388
PB
728/* Get the value of the FIELDN'th field (which must be static) of TYPE. */
729
730value_ptr
731value_static_field (type, fieldno)
732 struct type *type;
733 int fieldno;
734{
735 CORE_ADDR addr;
736 asection *sect;
737 if (TYPE_FIELD_STATIC_HAS_ADDR (type, fieldno))
738 {
739 addr = TYPE_FIELD_STATIC_PHYSADDR (type, fieldno);
740 sect = NULL;
741 }
742 else
743 {
744 char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
745 struct symbol *sym = lookup_symbol (phys_name, 0, VAR_NAMESPACE, 0, NULL);
746 if (sym == NULL)
747 return NULL;
748 addr = SYMBOL_VALUE_ADDRESS (sym);
749 sect = SYMBOL_BFD_SECTION (sym);
750 SET_FIELD_PHYSADDR (TYPE_FIELD (type, fieldno), addr);
751 }
752 return value_at (TYPE_FIELD_TYPE (type, fieldno), addr, sect);
753}
754
dd3b648e
RP
755/* Given a value ARG1 (offset by OFFSET bytes)
756 of a struct or union type ARG_TYPE,
f7f37388
PB
757 extract and return the value of one of its (non-static) fields.
758 FIELDNO says which field. */
dd3b648e 759
82a2edfb 760value_ptr
dd3b648e 761value_primitive_field (arg1, offset, fieldno, arg_type)
82a2edfb 762 register value_ptr arg1;
dd3b648e
RP
763 int offset;
764 register int fieldno;
765 register struct type *arg_type;
766{
82a2edfb 767 register value_ptr v;
dd3b648e
RP
768 register struct type *type;
769
5e548861 770 CHECK_TYPEDEF (arg_type);
dd3b648e
RP
771 type = TYPE_FIELD_TYPE (arg_type, fieldno);
772
773 /* Handle packed fields */
774
dd3b648e
RP
775 if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
776 {
96b2f51c 777 v = value_from_longest (type,
93e7a07f
PS
778 unpack_field_as_long (arg_type,
779 VALUE_CONTENTS (arg1)
780 + offset,
781 fieldno));
dd3b648e
RP
782 VALUE_BITPOS (v) = TYPE_FIELD_BITPOS (arg_type, fieldno) % 8;
783 VALUE_BITSIZE (v) = TYPE_FIELD_BITSIZE (arg_type, fieldno);
784 }
785 else
786 {
787 v = allocate_value (type);
788 if (VALUE_LAZY (arg1))
789 VALUE_LAZY (v) = 1;
790 else
93e7a07f
PS
791 memcpy (VALUE_CONTENTS_RAW (v),
792 VALUE_CONTENTS_RAW (arg1) + offset
793 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8,
4ed3a9ea 794 TYPE_LENGTH (type));
dd3b648e
RP
795 }
796 VALUE_LVAL (v) = VALUE_LVAL (arg1);
797 if (VALUE_LVAL (arg1) == lval_internalvar)
798 VALUE_LVAL (v) = lval_internalvar_component;
799 VALUE_ADDRESS (v) = VALUE_ADDRESS (arg1);
93e7a07f
PS
800 VALUE_OFFSET (v) = VALUE_OFFSET (arg1) + offset
801 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
dd3b648e
RP
802 return v;
803}
804
805/* Given a value ARG1 of a struct or union type,
f7f37388
PB
806 extract and return the value of one of its (non-static) fields.
807 FIELDNO says which field. */
dd3b648e 808
82a2edfb 809value_ptr
dd3b648e 810value_field (arg1, fieldno)
82a2edfb 811 register value_ptr arg1;
dd3b648e
RP
812 register int fieldno;
813{
814 return value_primitive_field (arg1, 0, fieldno, VALUE_TYPE (arg1));
815}
816
545af6ce
PB
817/* Return a non-virtual function as a value.
818 F is the list of member functions which contains the desired method.
819 J is an index into F which provides the desired method. */
820
82a2edfb 821value_ptr
94603999 822value_fn_field (arg1p, f, j, type, offset)
82a2edfb 823 value_ptr *arg1p;
545af6ce
PB
824 struct fn_field *f;
825 int j;
94603999
JG
826 struct type *type;
827 int offset;
dd3b648e 828{
82a2edfb 829 register value_ptr v;
94603999 830 register struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
dd3b648e
RP
831 struct symbol *sym;
832
545af6ce 833 sym = lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
dd3b648e 834 0, VAR_NAMESPACE, 0, NULL);
f1c6dbf6 835 if (! sym)
82a2edfb 836 return NULL;
f1c6dbf6
KH
837/*
838 error ("Internal error: could not find physical method named %s",
545af6ce 839 TYPE_FN_FIELD_PHYSNAME (f, j));
f1c6dbf6 840*/
dd3b648e 841
94603999 842 v = allocate_value (ftype);
dd3b648e 843 VALUE_ADDRESS (v) = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
94603999
JG
844 VALUE_TYPE (v) = ftype;
845
846 if (arg1p)
847 {
848 if (type != VALUE_TYPE (*arg1p))
849 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
850 value_addr (*arg1p)));
851
dcd8fd8c 852 /* Move the `this' pointer according to the offset.
94603999 853 VALUE_OFFSET (*arg1p) += offset;
dcd8fd8c 854 */
94603999
JG
855 }
856
dd3b648e
RP
857 return v;
858}
859
860/* Return a virtual function as a value.
861 ARG1 is the object which provides the virtual function
94603999 862 table pointer. *ARG1P is side-effected in calling this function.
dd3b648e
RP
863 F is the list of member functions which contains the desired virtual
864 function.
e532974c
JK
865 J is an index into F which provides the desired virtual function.
866
867 TYPE is the type in which F is located. */
82a2edfb 868value_ptr
94603999 869value_virtual_fn_field (arg1p, f, j, type, offset)
82a2edfb 870 value_ptr *arg1p;
dd3b648e
RP
871 struct fn_field *f;
872 int j;
e532974c 873 struct type *type;
94603999 874 int offset;
dd3b648e 875{
82a2edfb 876 value_ptr arg1 = *arg1p;
5e548861
PB
877 struct type *type1 = check_typedef (VALUE_TYPE (arg1));
878 struct type *entry_type;
dd3b648e
RP
879 /* First, get the virtual function table pointer. That comes
880 with a strange type, so cast it to type `pointer to long' (which
881 should serve just fine as a function type). Then, index into
882 the table, and convert final value to appropriate function type. */
82a2edfb
JK
883 value_ptr entry, vfn, vtbl;
884 value_ptr vi = value_from_longest (builtin_type_int,
885 (LONGEST) TYPE_FN_FIELD_VOFFSET (f, j));
e532974c
JK
886 struct type *fcontext = TYPE_FN_FIELD_FCONTEXT (f, j);
887 struct type *context;
888 if (fcontext == NULL)
889 /* We don't have an fcontext (e.g. the program was compiled with
890 g++ version 1). Try to get the vtbl from the TYPE_VPTR_BASETYPE.
891 This won't work right for multiple inheritance, but at least we
892 should do as well as GDB 3.x did. */
893 fcontext = TYPE_VPTR_BASETYPE (type);
894 context = lookup_pointer_type (fcontext);
895 /* Now context is a pointer to the basetype containing the vtbl. */
5e548861
PB
896 if (TYPE_TARGET_TYPE (context) != type1)
897 {
898 arg1 = value_ind (value_cast (context, value_addr (arg1)));
899 type1 = check_typedef (VALUE_TYPE (arg1));
900 }
dd3b648e 901
5e548861 902 context = type1;
e532974c 903 /* Now context is the basetype containing the vtbl. */
dd3b648e
RP
904
905 /* This type may have been defined before its virtual function table
906 was. If so, fill in the virtual function table entry for the
907 type now. */
908 if (TYPE_VPTR_FIELDNO (context) < 0)
71b16efa 909 fill_in_vptr_fieldno (context);
dd3b648e
RP
910
911 /* The virtual function table is now an array of structures
912 which have the form { int16 offset, delta; void *pfn; }. */
94603999
JG
913 vtbl = value_ind (value_primitive_field (arg1, 0,
914 TYPE_VPTR_FIELDNO (context),
915 TYPE_VPTR_BASETYPE (context)));
dd3b648e
RP
916
917 /* Index into the virtual function table. This is hard-coded because
918 looking up a field is not cheap, and it may be important to save
919 time, e.g. if the user has set a conditional breakpoint calling
920 a virtual function. */
921 entry = value_subscript (vtbl, vi);
5e548861 922 entry_type = check_typedef (VALUE_TYPE (entry));
dd3b648e 923
5e548861 924 if (TYPE_CODE (entry_type) == TYPE_CODE_STRUCT)
dd3b648e 925 {
36a2283d
PB
926 /* Move the `this' pointer according to the virtual function table. */
927 VALUE_OFFSET (arg1) += value_as_long (value_field (entry, 0));
928
929 if (! VALUE_LAZY (arg1))
930 {
931 VALUE_LAZY (arg1) = 1;
932 value_fetch_lazy (arg1);
933 }
dd3b648e 934
36a2283d
PB
935 vfn = value_field (entry, 2);
936 }
5e548861 937 else if (TYPE_CODE (entry_type) == TYPE_CODE_PTR)
36a2283d
PB
938 vfn = entry;
939 else
940 error ("I'm confused: virtual function table has bad type");
dd3b648e
RP
941 /* Reinstantiate the function pointer with the correct type. */
942 VALUE_TYPE (vfn) = lookup_pointer_type (TYPE_FN_FIELD_TYPE (f, j));
943
94603999 944 *arg1p = arg1;
dd3b648e
RP
945 return vfn;
946}
947
71b16efa
JK
948/* ARG is a pointer to an object we know to be at least
949 a DTYPE. BTYPE is the most derived basetype that has
950 already been searched (and need not be searched again).
951 After looking at the vtables between BTYPE and DTYPE,
952 return the most derived type we find. The caller must
953 be satisfied when the return value == DTYPE.
954
955 FIXME-tiemann: should work with dossier entries as well. */
956
82a2edfb 957static value_ptr
7cb0f870 958value_headof (in_arg, btype, dtype)
82a2edfb 959 value_ptr in_arg;
71b16efa
JK
960 struct type *btype, *dtype;
961{
962 /* First collect the vtables we must look at for this object. */
963 /* FIXME-tiemann: right now, just look at top-most vtable. */
82a2edfb 964 value_ptr arg, vtbl, entry, best_entry = 0;
71b16efa
JK
965 int i, nelems;
966 int offset, best_offset = 0;
967 struct symbol *sym;
968 CORE_ADDR pc_for_sym;
969 char *demangled_name;
1ab3bf1b
JG
970 struct minimal_symbol *msymbol;
971
aec4cb91 972 btype = TYPE_VPTR_BASETYPE (dtype);
5e548861 973 CHECK_TYPEDEF (btype);
7cb0f870 974 arg = in_arg;
aec4cb91 975 if (btype != dtype)
7cb0f870
MT
976 arg = value_cast (lookup_pointer_type (btype), arg);
977 vtbl = value_ind (value_field (value_ind (arg), TYPE_VPTR_FIELDNO (btype)));
71b16efa
JK
978
979 /* Check that VTBL looks like it points to a virtual function table. */
1ab3bf1b
JG
980 msymbol = lookup_minimal_symbol_by_pc (VALUE_ADDRESS (vtbl));
981 if (msymbol == NULL
36a2283d
PB
982 || (demangled_name = SYMBOL_NAME (msymbol)) == NULL
983 || !VTBL_PREFIX_P (demangled_name))
71b16efa
JK
984 {
985 /* If we expected to find a vtable, but did not, let the user
986 know that we aren't happy, but don't throw an error.
987 FIXME: there has to be a better way to do this. */
988 struct type *error_type = (struct type *)xmalloc (sizeof (struct type));
7cb0f870 989 memcpy (error_type, VALUE_TYPE (in_arg), sizeof (struct type));
71b16efa 990 TYPE_NAME (error_type) = savestring ("suspicious *", sizeof ("suspicious *"));
7cb0f870
MT
991 VALUE_TYPE (in_arg) = error_type;
992 return in_arg;
71b16efa
JK
993 }
994
995 /* Now search through the virtual function table. */
996 entry = value_ind (vtbl);
e1ce8aa5 997 nelems = longest_to_int (value_as_long (value_field (entry, 2)));
71b16efa
JK
998 for (i = 1; i <= nelems; i++)
999 {
96b2f51c
JG
1000 entry = value_subscript (vtbl, value_from_longest (builtin_type_int,
1001 (LONGEST) i));
36a2283d 1002 /* This won't work if we're using thunks. */
5e548861 1003 if (TYPE_CODE (check_typedef (VALUE_TYPE (entry))) != TYPE_CODE_STRUCT)
36a2283d 1004 break;
e1ce8aa5 1005 offset = longest_to_int (value_as_long (value_field (entry, 0)));
bcccec8c
PB
1006 /* If we use '<=' we can handle single inheritance
1007 * where all offsets are zero - just use the first entry found. */
1008 if (offset <= best_offset)
71b16efa
JK
1009 {
1010 best_offset = offset;
1011 best_entry = entry;
1012 }
1013 }
71b16efa
JK
1014 /* Move the pointer according to BEST_ENTRY's offset, and figure
1015 out what type we should return as the new pointer. */
bcccec8c
PB
1016 if (best_entry == 0)
1017 {
1018 /* An alternative method (which should no longer be necessary).
1019 * But we leave it in for future use, when we will hopefully
1020 * have optimizes the vtable to use thunks instead of offsets. */
1021 /* Use the name of vtable itself to extract a base type. */
f1c6dbf6 1022 demangled_name += 4; /* Skip _vt$ prefix. */
bcccec8c
PB
1023 }
1024 else
1025 {
1026 pc_for_sym = value_as_pointer (value_field (best_entry, 2));
1027 sym = find_pc_function (pc_for_sym);
8050a57b 1028 demangled_name = cplus_demangle (SYMBOL_NAME (sym), DMGL_ANSI);
bcccec8c
PB
1029 *(strchr (demangled_name, ':')) = '\0';
1030 }
71b16efa 1031 sym = lookup_symbol (demangled_name, 0, VAR_NAMESPACE, 0, 0);
2e4964ad
FF
1032 if (sym == NULL)
1033 error ("could not find type declaration for `%s'", demangled_name);
bcccec8c
PB
1034 if (best_entry)
1035 {
1036 free (demangled_name);
1037 arg = value_add (value_cast (builtin_type_int, arg),
1038 value_field (best_entry, 0));
1039 }
7cb0f870 1040 else arg = in_arg;
71b16efa
JK
1041 VALUE_TYPE (arg) = lookup_pointer_type (SYMBOL_TYPE (sym));
1042 return arg;
1043}
1044
1045/* ARG is a pointer object of type TYPE. If TYPE has virtual
1046 function tables, probe ARG's tables (including the vtables
1047 of its baseclasses) to figure out the most derived type that ARG
1048 could actually be a pointer to. */
1049
82a2edfb 1050value_ptr
71b16efa 1051value_from_vtable_info (arg, type)
82a2edfb 1052 value_ptr arg;
71b16efa
JK
1053 struct type *type;
1054{
1055 /* Take care of preliminaries. */
1056 if (TYPE_VPTR_FIELDNO (type) < 0)
1057 fill_in_vptr_fieldno (type);
398f584f 1058 if (TYPE_VPTR_FIELDNO (type) < 0)
71b16efa
JK
1059 return 0;
1060
1061 return value_headof (arg, 0, type);
1062}
1063
1410f5f1
JK
1064/* Return true if the INDEXth field of TYPE is a virtual baseclass
1065 pointer which is for the base class whose type is BASECLASS. */
1066
1067static int
1068vb_match (type, index, basetype)
1069 struct type *type;
1070 int index;
1071 struct type *basetype;
1072{
1073 struct type *fieldtype;
1410f5f1
JK
1074 char *name = TYPE_FIELD_NAME (type, index);
1075 char *field_class_name = NULL;
1076
1077 if (*name != '_')
1078 return 0;
f1c6dbf6 1079 /* gcc 2.4 uses _vb$. */
81afee37 1080 if (name[1] == 'v' && name[2] == 'b' && is_cplus_marker (name[3]))
1410f5f1 1081 field_class_name = name + 4;
f1c6dbf6 1082 /* gcc 2.5 will use __vb_. */
1410f5f1
JK
1083 if (name[1] == '_' && name[2] == 'v' && name[3] == 'b' && name[4] == '_')
1084 field_class_name = name + 5;
1085
1086 if (field_class_name == NULL)
1087 /* This field is not a virtual base class pointer. */
1088 return 0;
1089
1090 /* It's a virtual baseclass pointer, now we just need to find out whether
1091 it is for this baseclass. */
1092 fieldtype = TYPE_FIELD_TYPE (type, index);
1093 if (fieldtype == NULL
1094 || TYPE_CODE (fieldtype) != TYPE_CODE_PTR)
1095 /* "Can't happen". */
1096 return 0;
1097
1098 /* What we check for is that either the types are equal (needed for
1099 nameless types) or have the same name. This is ugly, and a more
1100 elegant solution should be devised (which would probably just push
1101 the ugliness into symbol reading unless we change the stabs format). */
1102 if (TYPE_TARGET_TYPE (fieldtype) == basetype)
1103 return 1;
1104
1105 if (TYPE_NAME (basetype) != NULL
1106 && TYPE_NAME (TYPE_TARGET_TYPE (fieldtype)) != NULL
1107 && STREQ (TYPE_NAME (basetype),
1108 TYPE_NAME (TYPE_TARGET_TYPE (fieldtype))))
1109 return 1;
1110 return 0;
1111}
1112
94603999 1113/* Compute the offset of the baseclass which is
5e548861
PB
1114 the INDEXth baseclass of class TYPE,
1115 for value at VALADDR (in host) at ADDRESS (in target).
1116 The result is the offset of the baseclass value relative
94603999
JG
1117 to (the address of)(ARG) + OFFSET.
1118
1119 -1 is returned on error. */
1120
1121int
5e548861 1122baseclass_offset (type, index, valaddr, address)
94603999
JG
1123 struct type *type;
1124 int index;
5e548861
PB
1125 char *valaddr;
1126 CORE_ADDR address;
94603999
JG
1127{
1128 struct type *basetype = TYPE_BASECLASS (type, index);
1129
1130 if (BASETYPE_VIA_VIRTUAL (type, index))
1131 {
1132 /* Must hunt for the pointer to this virtual baseclass. */
1133 register int i, len = TYPE_NFIELDS (type);
1134 register int n_baseclasses = TYPE_N_BASECLASSES (type);
94603999 1135
94603999
JG
1136 /* First look for the virtual baseclass pointer
1137 in the fields. */
1138 for (i = n_baseclasses; i < len; i++)
1139 {
1410f5f1 1140 if (vb_match (type, i, basetype))
94603999
JG
1141 {
1142 CORE_ADDR addr
1143 = unpack_pointer (TYPE_FIELD_TYPE (type, i),
5e548861 1144 valaddr + (TYPE_FIELD_BITPOS (type, i) / 8));
94603999 1145
5e548861 1146 return addr - (LONGEST) address;
94603999
JG
1147 }
1148 }
1149 /* Not in the fields, so try looking through the baseclasses. */
1150 for (i = index+1; i < n_baseclasses; i++)
1151 {
1152 int boffset =
5e548861 1153 baseclass_offset (type, i, valaddr, address);
94603999
JG
1154 if (boffset)
1155 return boffset;
1156 }
1157 /* Not found. */
1158 return -1;
1159 }
1160
1161 /* Baseclass is easily computed. */
1162 return TYPE_BASECLASS_BITPOS (type, index) / 8;
1163}
dd3b648e 1164\f
4db8e515
FF
1165/* Unpack a field FIELDNO of the specified TYPE, from the anonymous object at
1166 VALADDR.
1167
1168 Extracting bits depends on endianness of the machine. Compute the
1169 number of least significant bits to discard. For big endian machines,
1170 we compute the total number of bits in the anonymous object, subtract
1171 off the bit count from the MSB of the object to the MSB of the
1172 bitfield, then the size of the bitfield, which leaves the LSB discard
1173 count. For little endian machines, the discard count is simply the
1174 number of bits from the LSB of the anonymous object to the LSB of the
1175 bitfield.
1176
1177 If the field is signed, we also do sign extension. */
1178
1179LONGEST
dd3b648e
RP
1180unpack_field_as_long (type, valaddr, fieldno)
1181 struct type *type;
1182 char *valaddr;
1183 int fieldno;
1184{
119dfbb7
JW
1185 ULONGEST val;
1186 ULONGEST valmask;
dd3b648e
RP
1187 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
1188 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
4db8e515 1189 int lsbcount;
7924771e 1190 struct type *field_type;
dd3b648e 1191
34df79fc 1192 val = extract_unsigned_integer (valaddr + bitpos / 8, sizeof (val));
7924771e
FCE
1193 field_type = TYPE_FIELD_TYPE (type, fieldno);
1194 CHECK_TYPEDEF (field_type);
4db8e515
FF
1195
1196 /* Extract bits. See comment above. */
dd3b648e 1197
b8176214
ILT
1198 if (BITS_BIG_ENDIAN)
1199 lsbcount = (sizeof val * 8 - bitpos % 8 - bitsize);
1200 else
1201 lsbcount = (bitpos % 8);
4db8e515 1202 val >>= lsbcount;
dd3b648e 1203
4db8e515
FF
1204 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
1205 If the field is signed, and is negative, then sign extend. */
1206
b52cac6b 1207 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
4db8e515 1208 {
119dfbb7 1209 valmask = (((ULONGEST) 1) << bitsize) - 1;
4db8e515 1210 val &= valmask;
7924771e 1211 if (!TYPE_UNSIGNED (field_type))
4db8e515
FF
1212 {
1213 if (val & (valmask ^ (valmask >> 1)))
1214 {
1215 val |= ~valmask;
1216 }
1217 }
1218 }
1219 return (val);
dd3b648e
RP
1220}
1221
3f2e006b
JG
1222/* Modify the value of a bitfield. ADDR points to a block of memory in
1223 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
1224 is the desired value of the field, in host byte order. BITPOS and BITSIZE
1225 indicate which bits (in target bit order) comprise the bitfield. */
1226
dd3b648e
RP
1227void
1228modify_field (addr, fieldval, bitpos, bitsize)
1229 char *addr;
58e49e21 1230 LONGEST fieldval;
dd3b648e
RP
1231 int bitpos, bitsize;
1232{
58e49e21 1233 LONGEST oword;
dd3b648e 1234
080868b4
PS
1235 /* If a negative fieldval fits in the field in question, chop
1236 off the sign extension bits. */
b52cac6b 1237 if (bitsize < (8 * (int) sizeof (fieldval))
080868b4
PS
1238 && (~fieldval & ~((1 << (bitsize - 1)) - 1)) == 0)
1239 fieldval = fieldval & ((1 << bitsize) - 1);
1240
1241 /* Warn if value is too big to fit in the field in question. */
b52cac6b 1242 if (bitsize < (8 * (int) sizeof (fieldval))
61a7292f 1243 && 0 != (fieldval & ~((1<<bitsize)-1)))
58e49e21
JK
1244 {
1245 /* FIXME: would like to include fieldval in the message, but
1246 we don't have a sprintf_longest. */
080868b4
PS
1247 warning ("Value does not fit in %d bits.", bitsize);
1248
1249 /* Truncate it, otherwise adjoining fields may be corrupted. */
1250 fieldval = fieldval & ((1 << bitsize) - 1);
58e49e21 1251 }
34df79fc
JK
1252
1253 oword = extract_signed_integer (addr, sizeof oword);
dd3b648e 1254
3f2e006b 1255 /* Shifting for bit field depends on endianness of the target machine. */
b8176214
ILT
1256 if (BITS_BIG_ENDIAN)
1257 bitpos = sizeof (oword) * 8 - bitpos - bitsize;
dd3b648e 1258
58e49e21 1259 /* Mask out old value, while avoiding shifts >= size of oword */
b52cac6b 1260 if (bitsize < 8 * (int) sizeof (oword))
119dfbb7 1261 oword &= ~(((((ULONGEST)1) << bitsize) - 1) << bitpos);
c3a21801 1262 else
119dfbb7 1263 oword &= ~((~(ULONGEST)0) << bitpos);
dd3b648e 1264 oword |= fieldval << bitpos;
3f2e006b 1265
34df79fc 1266 store_signed_integer (addr, sizeof oword, oword);
dd3b648e
RP
1267}
1268\f
1269/* Convert C numbers into newly allocated values */
1270
82a2edfb 1271value_ptr
96b2f51c 1272value_from_longest (type, num)
dd3b648e
RP
1273 struct type *type;
1274 register LONGEST num;
1275{
82a2edfb 1276 register value_ptr val = allocate_value (type);
5e548861
PB
1277 register enum type_code code;
1278 register int len;
1279 retry:
1280 code = TYPE_CODE (type);
1281 len = TYPE_LENGTH (type);
dd3b648e 1282
34df79fc 1283 switch (code)
dd3b648e 1284 {
5e548861
PB
1285 case TYPE_CODE_TYPEDEF:
1286 type = check_typedef (type);
1287 goto retry;
34df79fc
JK
1288 case TYPE_CODE_INT:
1289 case TYPE_CODE_CHAR:
1290 case TYPE_CODE_ENUM:
1291 case TYPE_CODE_BOOL:
b96bc1e4 1292 case TYPE_CODE_RANGE:
34df79fc
JK
1293 store_signed_integer (VALUE_CONTENTS_RAW (val), len, num);
1294 break;
1295
1296 case TYPE_CODE_REF:
1297 case TYPE_CODE_PTR:
1298 /* This assumes that all pointers of a given length
1299 have the same form. */
1300 store_address (VALUE_CONTENTS_RAW (val), len, (CORE_ADDR) num);
1301 break;
d9b9cbf3 1302
34df79fc 1303 default:
fa89ee43 1304 error ("Unexpected type (%d) encountered for integer constant.", code);
dd3b648e 1305 }
dd3b648e
RP
1306 return val;
1307}
1308
82a2edfb 1309value_ptr
dd3b648e
RP
1310value_from_double (type, num)
1311 struct type *type;
aa220473 1312 DOUBLEST num;
dd3b648e 1313{
82a2edfb 1314 register value_ptr val = allocate_value (type);
5e548861
PB
1315 struct type *base_type = check_typedef (type);
1316 register enum type_code code = TYPE_CODE (base_type);
1317 register int len = TYPE_LENGTH (base_type);
dd3b648e
RP
1318
1319 if (code == TYPE_CODE_FLT)
1320 {
bf5c0d64 1321 store_floating (VALUE_CONTENTS_RAW (val), len, num);
dd3b648e
RP
1322 }
1323 else
1324 error ("Unexpected type encountered for floating constant.");
1325
dd3b648e
RP
1326 return val;
1327}
1328\f
1329/* Deal with the value that is "about to be returned". */
1330
1331/* Return the value that a function returning now
1332 would be returning to its caller, assuming its type is VALTYPE.
1333 RETBUF is where we look for what ought to be the contents
1334 of the registers (in raw form). This is because it is often
1335 desirable to restore old values to those registers
1336 after saving the contents of interest, and then call
1337 this function using the saved values.
1338 struct_return is non-zero when the function in question is
1339 using the structure return conventions on the machine in question;
1340 0 when it is using the value returning conventions (this often
1341 means returning pointer to where structure is vs. returning value). */
1342
82a2edfb 1343value_ptr
dd3b648e
RP
1344value_being_returned (valtype, retbuf, struct_return)
1345 register struct type *valtype;
1346 char retbuf[REGISTER_BYTES];
1347 int struct_return;
1348 /*ARGSUSED*/
1349{
82a2edfb 1350 register value_ptr val;
dd3b648e
RP
1351 CORE_ADDR addr;
1352
1353#if defined (EXTRACT_STRUCT_VALUE_ADDRESS)
1354 /* If this is not defined, just use EXTRACT_RETURN_VALUE instead. */
1355 if (struct_return) {
1356 addr = EXTRACT_STRUCT_VALUE_ADDRESS (retbuf);
1357 if (!addr)
1358 error ("Function return value unknown");
6c310da8 1359 return value_at (valtype, addr, NULL);
dd3b648e
RP
1360 }
1361#endif
1362
1363 val = allocate_value (valtype);
5e548861 1364 CHECK_TYPEDEF (valtype);
dd3b648e
RP
1365 EXTRACT_RETURN_VALUE (valtype, retbuf, VALUE_CONTENTS_RAW (val));
1366
1367 return val;
1368}
1369
1370/* Should we use EXTRACT_STRUCT_VALUE_ADDRESS instead of
1371 EXTRACT_RETURN_VALUE? GCC_P is true if compiled with gcc
1372 and TYPE is the type (which is known to be struct, union or array).
1373
1374 On most machines, the struct convention is used unless we are
1375 using gcc and the type is of a special size. */
9925b928
JK
1376/* As of about 31 Mar 93, GCC was changed to be compatible with the
1377 native compiler. GCC 2.3.3 was the last release that did it the
1378 old way. Since gcc2_compiled was not changed, we have no
1379 way to correctly win in all cases, so we just do the right thing
1380 for gcc1 and for gcc2 after this change. Thus it loses for gcc
1381 2.0-2.3.3. This is somewhat unfortunate, but changing gcc2_compiled
1382 would cause more chaos than dealing with some struct returns being
1383 handled wrong. */
98760eab
AC
1384
1385int
1386generic_use_struct_convention (gcc_p, value_type)
1387 int gcc_p;
1388 struct type *value_type;
1389{
1390 return !((gcc_p == 1)
1391 && (TYPE_LENGTH (value_type) == 1
1392 || TYPE_LENGTH (value_type) == 2
1393 || TYPE_LENGTH (value_type) == 4
1394 || TYPE_LENGTH (value_type) == 8));
1395}
1396
1397#ifndef USE_STRUCT_CONVENTION
1398#define USE_STRUCT_CONVENTION(gcc_p,type) generic_use_struct_convention (gcc_p, type)
dd3b648e
RP
1399#endif
1400
aa220473
SG
1401/* Some fundamental types (such as long double) are returned on the stack for
1402 certain architectures. This macro should return true for any type besides
1403 struct, union or array that gets returned on the stack. */
1404
1405#ifndef RETURN_VALUE_ON_STACK
1406#define RETURN_VALUE_ON_STACK(TYPE) 0
1407#endif
1408
dd3b648e
RP
1409/* Return true if the function specified is using the structure returning
1410 convention on this machine to return arguments, or 0 if it is using
1411 the value returning convention. FUNCTION is the value representing
1412 the function, FUNCADDR is the address of the function, and VALUE_TYPE
1413 is the type returned by the function. GCC_P is nonzero if compiled
1414 with GCC. */
1415
1416int
1417using_struct_return (function, funcaddr, value_type, gcc_p)
82a2edfb 1418 value_ptr function;
dd3b648e
RP
1419 CORE_ADDR funcaddr;
1420 struct type *value_type;
1421 int gcc_p;
1422 /*ARGSUSED*/
1423{
1424 register enum type_code code = TYPE_CODE (value_type);
1425
1426 if (code == TYPE_CODE_ERROR)
1427 error ("Function return type unknown.");
1428
aa220473
SG
1429 if (code == TYPE_CODE_STRUCT
1430 || code == TYPE_CODE_UNION
1431 || code == TYPE_CODE_ARRAY
1432 || RETURN_VALUE_ON_STACK (value_type))
dd3b648e
RP
1433 return USE_STRUCT_CONVENTION (gcc_p, value_type);
1434
1435 return 0;
1436}
1437
1438/* Store VAL so it will be returned if a function returns now.
1439 Does not verify that VAL's type matches what the current
1440 function wants to return. */
1441
1442void
1443set_return_value (val)
82a2edfb 1444 value_ptr val;
dd3b648e 1445{
5e548861
PB
1446 struct type *type = check_typedef (VALUE_TYPE (val));
1447 register enum type_code code = TYPE_CODE (type);
dd3b648e
RP
1448
1449 if (code == TYPE_CODE_ERROR)
1450 error ("Function return type unknown.");
1451
f1d77e90
JG
1452 if ( code == TYPE_CODE_STRUCT
1453 || code == TYPE_CODE_UNION) /* FIXME, implement struct return. */
1454 error ("GDB does not support specifying a struct or union return value.");
dd3b648e 1455
5e548861 1456 STORE_RETURN_VALUE (type, VALUE_CONTENTS (val));
dd3b648e
RP
1457}
1458\f
1459void
1460_initialize_values ()
1461{
f266e564 1462 add_cmd ("convenience", no_class, show_convenience,
dd3b648e
RP
1463 "Debugger convenience (\"$foo\") variables.\n\
1464These variables are created when you assign them values;\n\
1465thus, \"print $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\n\
1466A few convenience variables are given values automatically:\n\
1467\"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
f266e564
JK
1468\"$__\" holds the contents of the last address examined with \"x\".",
1469 &showlist);
dd3b648e 1470
f266e564
JK
1471 add_cmd ("values", no_class, show_values,
1472 "Elements of value history around item number IDX (or last ten).",
1473 &showlist);
dd3b648e 1474}
This page took 0.477266 seconds and 4 git commands to generate.