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