Fix for PR 18470:
[deliverable/binutils-gdb.git] / gdb / values.c
1 /* Low level packing and unpacking of values for GDB, the GNU Debugger.
2 Copyright 1986, 87, 89, 91, 93, 94, 95, 96, 97, 1998
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #include "defs.h"
22 #include "gdb_string.h"
23 #include "symtab.h"
24 #include "gdbtypes.h"
25 #include "value.h"
26 #include "gdbcore.h"
27 #include "frame.h"
28 #include "command.h"
29 #include "gdbcmd.h"
30 #include "target.h"
31 #include "language.h"
32 #include "scm-lang.h"
33 #include "demangle.h"
34
35 /* Prototypes for exported functions. */
36
37 void _initialize_values PARAMS ((void));
38
39 /* Prototypes for local functions. */
40
41 static value_ptr value_headof PARAMS ((value_ptr, struct type *,
42 struct type *));
43
44 static void show_values PARAMS ((char *, int));
45
46 static void show_convenience PARAMS ((char *, int));
47
48 static int vb_match PARAMS ((struct type *, int, struct type *));
49
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
58 struct value_history_chunk
59 {
60 struct value_history_chunk *next;
61 value_ptr values[VALUE_HISTORY_CHUNK];
62 };
63
64 /* Chain of chunks now in use. */
65
66 static struct value_history_chunk *value_history_chain;
67
68 static int value_history_count; /* Abs number of last entry stored */
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
74 static value_ptr all_values;
75
76 /* Allocate a value that has the correct length for type TYPE. */
77
78 value_ptr
79 allocate_value (type)
80 struct type *type;
81 {
82 register value_ptr val;
83 struct type *atype = check_typedef (type);
84
85 val = (struct value *) xmalloc (sizeof (struct value) + TYPE_LENGTH (atype));
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;
95 VALUE_REGNO (val) = -1;
96 VALUE_LAZY (val) = 0;
97 VALUE_OPTIMIZED_OUT (val) = 0;
98 VALUE_BFD_SECTION (val) = NULL;
99 val->modifiable = 1;
100 return val;
101 }
102
103 /* Allocate a value that has the correct length
104 for COUNT repetitions type TYPE. */
105
106 value_ptr
107 allocate_repeat_value (type, count)
108 struct type *type;
109 int count;
110 {
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));
121 }
122
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. */
126 value_ptr
127 value_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). */
134 void
135 value_free_to_mark (mark)
136 value_ptr mark;
137 {
138 value_ptr val, next;
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
148 /* Free all the values that have been allocated (except for those released).
149 Called after each command, successful or not. */
150
151 void
152 free_all_values ()
153 {
154 register value_ptr val, next;
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
168 void
169 release_value (val)
170 register value_ptr val;
171 {
172 register value_ptr v;
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
190 /* Release all values up to mark */
191 value_ptr
192 value_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
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
212 value_ptr
213 value_copy (arg)
214 value_ptr arg;
215 {
216 register struct type *type = VALUE_TYPE (arg);
217 register value_ptr val = allocate_value (type);
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);
223 VALUE_FRAME (val) = VALUE_FRAME (arg);
224 VALUE_REGNO (val) = VALUE_REGNO (arg);
225 VALUE_LAZY (val) = VALUE_LAZY (arg);
226 VALUE_OPTIMIZED_OUT (val) = VALUE_OPTIMIZED_OUT (arg);
227 VALUE_BFD_SECTION (val) = VALUE_BFD_SECTION (arg);
228 val->modifiable = arg->modifiable;
229 if (!VALUE_LAZY (val))
230 {
231 memcpy (VALUE_CONTENTS_RAW (val), VALUE_CONTENTS_RAW (arg),
232 TYPE_LENGTH (VALUE_TYPE (arg)));
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
244 int
245 record_latest_value (val)
246 value_ptr val;
247 {
248 int i;
249
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
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));
271 memset (new->values, 0, sizeof new->values);
272 new->next = value_history_chain;
273 value_history_chain = new;
274 }
275
276 value_history_chain->values[i] = val;
277
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
286 value_ptr
287 access_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
325 void
326 clear_value_history ()
327 {
328 register struct value_history_chunk *next;
329 register int i;
330 register value_ptr val;
331
332 while (value_history_chain)
333 {
334 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
335 if ((val = value_history_chain->values[i]) != NULL)
336 free ((PTR)val);
337 next = value_history_chain->next;
338 free ((PTR)value_history_chain);
339 value_history_chain = next;
340 }
341 value_history_count = 0;
342 }
343
344 static void
345 show_values (num_exp, from_tty)
346 char *num_exp;
347 int from_tty;
348 {
349 register int i;
350 register value_ptr val;
351 static int num = 1;
352
353 if (num_exp)
354 {
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')
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);
373 value_print (val, gdb_stdout, 0, Val_pretty_default);
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
395 static 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
403 struct internalvar *
404 lookup_internalvar (name)
405 char *name;
406 {
407 register struct internalvar *var;
408
409 for (var = internalvars; var; var = var->next)
410 if (STREQ (var->name, name))
411 return var;
412
413 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
414 var->name = concat (name, NULL);
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
422 value_ptr
423 value_of_internalvar (var)
424 struct internalvar *var;
425 {
426 register value_ptr val;
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
441 void
442 set_internalvar_component (var, offset, bitpos, bitsize, newval)
443 struct internalvar *var;
444 int offset, bitpos, bitsize;
445 value_ptr newval;
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)
455 modify_field (addr, value_as_long (newval),
456 bitpos, bitsize);
457 else
458 memcpy (addr, VALUE_CONTENTS (newval), TYPE_LENGTH (VALUE_TYPE (newval)));
459 }
460
461 void
462 set_internalvar (var, val)
463 struct internalvar *var;
464 value_ptr val;
465 {
466 value_ptr newval;
467
468 #ifdef IS_TRAPPED_INTERNALVAR
469 if (IS_TRAPPED_INTERNALVAR (var->name))
470 SET_TRAPPED_INTERNALVAR (var, val, 0, 0, 0);
471 #endif
472
473 newval = value_copy (val);
474 newval->modifiable = 1;
475
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. */
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(). */
492 }
493
494 char *
495 internalvar_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
504 void
505 clear_internalvars ()
506 {
507 register struct internalvar *var;
508
509 while (internalvars)
510 {
511 var = internalvars;
512 internalvars = var->next;
513 free ((PTR)var->name);
514 free ((PTR)var->value);
515 free ((PTR)var);
516 }
517 }
518
519 static void
520 show_convenience (ignore, from_tty)
521 char *ignore;
522 int from_tty;
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 {
535 varseen = 1;
536 }
537 printf_filtered ("$%s = ", var->name);
538 value_print (var->value, gdb_stdout, 0, Val_pretty_default);
539 printf_filtered ("\n");
540 }
541 if (!varseen)
542 printf_unfiltered ("No debugger convenience variables now defined.\n\
543 Convenience variables have names starting with \"$\";\n\
544 use \"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
552 LONGEST
553 value_as_long (val)
554 register value_ptr val;
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. */
559 COERCE_ARRAY (val);
560 return unpack_long (VALUE_TYPE (val), VALUE_CONTENTS (val));
561 }
562
563 DOUBLEST
564 value_as_double (val)
565 register value_ptr val;
566 {
567 DOUBLEST foo;
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 }
575 /* Extract a value as a C pointer.
576 Does not deallocate the value. */
577 CORE_ADDR
578 value_as_pointer (val)
579 value_ptr val;
580 {
581 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
582 whether we want this to be true eventually. */
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. */
587 return ADDR_BITS_REMOVE(value_as_long (val));
588 #else
589 return value_as_long (val);
590 #endif
591 }
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
607 LONGEST
608 unpack_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
616 if (current_language->la_language == language_scm
617 && is_scmvalue_type (type))
618 return scm_unpack (type, valaddr, TYPE_CODE_INT);
619
620 switch (code)
621 {
622 case TYPE_CODE_TYPEDEF:
623 return unpack_long (check_typedef (type), valaddr);
624 case TYPE_CODE_ENUM:
625 case TYPE_CODE_BOOL:
626 case TYPE_CODE_INT:
627 case TYPE_CODE_CHAR:
628 case TYPE_CODE_RANGE:
629 if (nosign)
630 return extract_unsigned_integer (valaddr, len);
631 else
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. */
641 #ifdef GDB_TARGET_IS_D10V
642 if (len == 2)
643 return D10V_MAKE_DADDR(extract_address (valaddr, len));
644 #endif
645 return extract_address (valaddr, len);
646
647 case TYPE_CODE_MEMBER:
648 error ("not implemented: member types in unpack_long");
649
650 default:
651 error ("Value can't be converted to integer.");
652 }
653 return 0; /* Placate lint. */
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
662 DOUBLEST
663 unpack_double (type, valaddr, invp)
664 struct type *type;
665 char *valaddr;
666 int *invp;
667 {
668 enum type_code code;
669 int len;
670 int nosign;
671
672 *invp = 0; /* Assume valid. */
673 CHECK_TYPEDEF (type);
674 code = TYPE_CODE (type);
675 len = TYPE_LENGTH (type);
676 nosign = TYPE_UNSIGNED (type);
677 if (code == TYPE_CODE_FLT)
678 {
679 #ifdef INVALID_FLOAT
680 if (INVALID_FLOAT (valaddr, len))
681 {
682 *invp = 1;
683 return 1.234567891011121314;
684 }
685 #endif
686 return extract_floating (valaddr, len);
687 }
688 else if (nosign)
689 {
690 /* Unsigned -- be sure we compensate for signed LONGEST. */
691 #if !defined (_MSC_VER) || (_MSC_VER > 900)
692 return (ULONGEST) unpack_long (type, valaddr);
693 #else
694 /* FIXME!!! msvc22 doesn't support unsigned __int64 -> double */
695 return (LONGEST) unpack_long (type, valaddr);
696 #endif /* _MSC_VER */
697 }
698 else
699 {
700 /* Signed -- we are OK with unpack_long. */
701 return unpack_long (type, valaddr);
702 }
703 }
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
718 CORE_ADDR
719 unpack_pointer (type, valaddr)
720 struct type *type;
721 char *valaddr;
722 {
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);
726 }
727 \f
728 /* Get the value of the FIELDN'th field (which must be static) of TYPE. */
729
730 value_ptr
731 value_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
755 /* Given a value ARG1 (offset by OFFSET bytes)
756 of a struct or union type ARG_TYPE,
757 extract and return the value of one of its (non-static) fields.
758 FIELDNO says which field. */
759
760 value_ptr
761 value_primitive_field (arg1, offset, fieldno, arg_type)
762 register value_ptr arg1;
763 int offset;
764 register int fieldno;
765 register struct type *arg_type;
766 {
767 register value_ptr v;
768 register struct type *type;
769
770 CHECK_TYPEDEF (arg_type);
771 type = TYPE_FIELD_TYPE (arg_type, fieldno);
772
773 /* Handle packed fields */
774
775 if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
776 {
777 v = value_from_longest (type,
778 unpack_field_as_long (arg_type,
779 VALUE_CONTENTS (arg1)
780 + offset,
781 fieldno));
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
791 memcpy (VALUE_CONTENTS_RAW (v),
792 VALUE_CONTENTS_RAW (arg1) + offset
793 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8,
794 TYPE_LENGTH (type));
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);
800 VALUE_OFFSET (v) = VALUE_OFFSET (arg1) + offset
801 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
802 return v;
803 }
804
805 /* Given a value ARG1 of a struct or union type,
806 extract and return the value of one of its (non-static) fields.
807 FIELDNO says which field. */
808
809 value_ptr
810 value_field (arg1, fieldno)
811 register value_ptr arg1;
812 register int fieldno;
813 {
814 return value_primitive_field (arg1, 0, fieldno, VALUE_TYPE (arg1));
815 }
816
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
821 value_ptr
822 value_fn_field (arg1p, f, j, type, offset)
823 value_ptr *arg1p;
824 struct fn_field *f;
825 int j;
826 struct type *type;
827 int offset;
828 {
829 register value_ptr v;
830 register struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
831 struct symbol *sym;
832
833 sym = lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
834 0, VAR_NAMESPACE, 0, NULL);
835 if (! sym)
836 return NULL;
837 /*
838 error ("Internal error: could not find physical method named %s",
839 TYPE_FN_FIELD_PHYSNAME (f, j));
840 */
841
842 v = allocate_value (ftype);
843 VALUE_ADDRESS (v) = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
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
852 /* Move the `this' pointer according to the offset.
853 VALUE_OFFSET (*arg1p) += offset;
854 */
855 }
856
857 return v;
858 }
859
860 /* Return a virtual function as a value.
861 ARG1 is the object which provides the virtual function
862 table pointer. *ARG1P is side-effected in calling this function.
863 F is the list of member functions which contains the desired virtual
864 function.
865 J is an index into F which provides the desired virtual function.
866
867 TYPE is the type in which F is located. */
868 value_ptr
869 value_virtual_fn_field (arg1p, f, j, type, offset)
870 value_ptr *arg1p;
871 struct fn_field *f;
872 int j;
873 struct type *type;
874 int offset;
875 {
876 value_ptr arg1 = *arg1p;
877 struct type *type1 = check_typedef (VALUE_TYPE (arg1));
878 struct type *entry_type;
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. */
883 value_ptr entry, vfn, vtbl;
884 value_ptr vi = value_from_longest (builtin_type_int,
885 (LONGEST) TYPE_FN_FIELD_VOFFSET (f, j));
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. */
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 }
901
902 context = type1;
903 /* Now context is the basetype containing the vtbl. */
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)
909 fill_in_vptr_fieldno (context);
910
911 /* The virtual function table is now an array of structures
912 which have the form { int16 offset, delta; void *pfn; }. */
913 vtbl = value_primitive_field (arg1, 0, TYPE_VPTR_FIELDNO (context),
914 TYPE_VPTR_BASETYPE (context));
915
916 /* With older versions of g++, the vtbl field pointed to an array
917 of structures. Nowadays it points directly to the structure. */
918 if (TYPE_CODE (VALUE_TYPE (vtbl)) == TYPE_CODE_PTR
919 && TYPE_CODE (TYPE_TARGET_TYPE (VALUE_TYPE (vtbl))) == TYPE_CODE_ARRAY)
920 {
921 /* Handle the case where the vtbl field points to an
922 array of structures. */
923 vtbl = value_ind (vtbl);
924
925 /* Index into the virtual function table. This is hard-coded because
926 looking up a field is not cheap, and it may be important to save
927 time, e.g. if the user has set a conditional breakpoint calling
928 a virtual function. */
929 entry = value_subscript (vtbl, vi);
930 }
931 else
932 {
933 /* Handle the case where the vtbl field points directly to a structure. */
934 vtbl = value_add (vtbl, vi);
935 entry = value_ind (vtbl);
936 }
937
938 entry_type = check_typedef (VALUE_TYPE (entry));
939
940 if (TYPE_CODE (entry_type) == TYPE_CODE_STRUCT)
941 {
942 /* Move the `this' pointer according to the virtual function table. */
943 VALUE_OFFSET (arg1) += value_as_long (value_field (entry, 0));
944
945 if (! VALUE_LAZY (arg1))
946 {
947 VALUE_LAZY (arg1) = 1;
948 value_fetch_lazy (arg1);
949 }
950
951 vfn = value_field (entry, 2);
952 }
953 else if (TYPE_CODE (entry_type) == TYPE_CODE_PTR)
954 vfn = entry;
955 else
956 error ("I'm confused: virtual function table has bad type");
957 /* Reinstantiate the function pointer with the correct type. */
958 VALUE_TYPE (vfn) = lookup_pointer_type (TYPE_FN_FIELD_TYPE (f, j));
959
960 *arg1p = arg1;
961 return vfn;
962 }
963
964 /* ARG is a pointer to an object we know to be at least
965 a DTYPE. BTYPE is the most derived basetype that has
966 already been searched (and need not be searched again).
967 After looking at the vtables between BTYPE and DTYPE,
968 return the most derived type we find. The caller must
969 be satisfied when the return value == DTYPE.
970
971 FIXME-tiemann: should work with dossier entries as well. */
972
973 static value_ptr
974 value_headof (in_arg, btype, dtype)
975 value_ptr in_arg;
976 struct type *btype, *dtype;
977 {
978 /* First collect the vtables we must look at for this object. */
979 /* FIXME-tiemann: right now, just look at top-most vtable. */
980 value_ptr arg, vtbl, entry, best_entry = 0;
981 int i, nelems;
982 int offset, best_offset = 0;
983 struct symbol *sym;
984 CORE_ADDR pc_for_sym;
985 char *demangled_name;
986 struct minimal_symbol *msymbol;
987
988 btype = TYPE_VPTR_BASETYPE (dtype);
989 CHECK_TYPEDEF (btype);
990 arg = in_arg;
991 if (btype != dtype)
992 arg = value_cast (lookup_pointer_type (btype), arg);
993 vtbl = value_ind (value_field (value_ind (arg), TYPE_VPTR_FIELDNO (btype)));
994
995 /* Check that VTBL looks like it points to a virtual function table. */
996 msymbol = lookup_minimal_symbol_by_pc (VALUE_ADDRESS (vtbl));
997 if (msymbol == NULL
998 || (demangled_name = SYMBOL_NAME (msymbol)) == NULL
999 || !VTBL_PREFIX_P (demangled_name))
1000 {
1001 /* If we expected to find a vtable, but did not, let the user
1002 know that we aren't happy, but don't throw an error.
1003 FIXME: there has to be a better way to do this. */
1004 struct type *error_type = (struct type *)xmalloc (sizeof (struct type));
1005 memcpy (error_type, VALUE_TYPE (in_arg), sizeof (struct type));
1006 TYPE_NAME (error_type) = savestring ("suspicious *", sizeof ("suspicious *"));
1007 VALUE_TYPE (in_arg) = error_type;
1008 return in_arg;
1009 }
1010
1011 /* Now search through the virtual function table. */
1012 entry = value_ind (vtbl);
1013 nelems = longest_to_int (value_as_long (value_field (entry, 2)));
1014 for (i = 1; i <= nelems; i++)
1015 {
1016 entry = value_subscript (vtbl, value_from_longest (builtin_type_int,
1017 (LONGEST) i));
1018 /* This won't work if we're using thunks. */
1019 if (TYPE_CODE (check_typedef (VALUE_TYPE (entry))) != TYPE_CODE_STRUCT)
1020 break;
1021 offset = longest_to_int (value_as_long (value_field (entry, 0)));
1022 /* If we use '<=' we can handle single inheritance
1023 * where all offsets are zero - just use the first entry found. */
1024 if (offset <= best_offset)
1025 {
1026 best_offset = offset;
1027 best_entry = entry;
1028 }
1029 }
1030 /* Move the pointer according to BEST_ENTRY's offset, and figure
1031 out what type we should return as the new pointer. */
1032 if (best_entry == 0)
1033 {
1034 /* An alternative method (which should no longer be necessary).
1035 * But we leave it in for future use, when we will hopefully
1036 * have optimizes the vtable to use thunks instead of offsets. */
1037 /* Use the name of vtable itself to extract a base type. */
1038 demangled_name += 4; /* Skip _vt$ prefix. */
1039 }
1040 else
1041 {
1042 pc_for_sym = value_as_pointer (value_field (best_entry, 2));
1043 sym = find_pc_function (pc_for_sym);
1044 demangled_name = cplus_demangle (SYMBOL_NAME (sym), DMGL_ANSI);
1045 *(strchr (demangled_name, ':')) = '\0';
1046 }
1047 sym = lookup_symbol (demangled_name, 0, VAR_NAMESPACE, 0, 0);
1048 if (sym == NULL)
1049 error ("could not find type declaration for `%s'", demangled_name);
1050 if (best_entry)
1051 {
1052 free (demangled_name);
1053 arg = value_add (value_cast (builtin_type_int, arg),
1054 value_field (best_entry, 0));
1055 }
1056 else arg = in_arg;
1057 VALUE_TYPE (arg) = lookup_pointer_type (SYMBOL_TYPE (sym));
1058 return arg;
1059 }
1060
1061 /* ARG is a pointer object of type TYPE. If TYPE has virtual
1062 function tables, probe ARG's tables (including the vtables
1063 of its baseclasses) to figure out the most derived type that ARG
1064 could actually be a pointer to. */
1065
1066 value_ptr
1067 value_from_vtable_info (arg, type)
1068 value_ptr arg;
1069 struct type *type;
1070 {
1071 /* Take care of preliminaries. */
1072 if (TYPE_VPTR_FIELDNO (type) < 0)
1073 fill_in_vptr_fieldno (type);
1074 if (TYPE_VPTR_FIELDNO (type) < 0)
1075 return 0;
1076
1077 return value_headof (arg, 0, type);
1078 }
1079
1080 /* Return true if the INDEXth field of TYPE is a virtual baseclass
1081 pointer which is for the base class whose type is BASECLASS. */
1082
1083 static int
1084 vb_match (type, index, basetype)
1085 struct type *type;
1086 int index;
1087 struct type *basetype;
1088 {
1089 struct type *fieldtype;
1090 char *name = TYPE_FIELD_NAME (type, index);
1091 char *field_class_name = NULL;
1092
1093 if (*name != '_')
1094 return 0;
1095 /* gcc 2.4 uses _vb$. */
1096 if (name[1] == 'v' && name[2] == 'b' && is_cplus_marker (name[3]))
1097 field_class_name = name + 4;
1098 /* gcc 2.5 will use __vb_. */
1099 if (name[1] == '_' && name[2] == 'v' && name[3] == 'b' && name[4] == '_')
1100 field_class_name = name + 5;
1101
1102 if (field_class_name == NULL)
1103 /* This field is not a virtual base class pointer. */
1104 return 0;
1105
1106 /* It's a virtual baseclass pointer, now we just need to find out whether
1107 it is for this baseclass. */
1108 fieldtype = TYPE_FIELD_TYPE (type, index);
1109 if (fieldtype == NULL
1110 || TYPE_CODE (fieldtype) != TYPE_CODE_PTR)
1111 /* "Can't happen". */
1112 return 0;
1113
1114 /* What we check for is that either the types are equal (needed for
1115 nameless types) or have the same name. This is ugly, and a more
1116 elegant solution should be devised (which would probably just push
1117 the ugliness into symbol reading unless we change the stabs format). */
1118 if (TYPE_TARGET_TYPE (fieldtype) == basetype)
1119 return 1;
1120
1121 if (TYPE_NAME (basetype) != NULL
1122 && TYPE_NAME (TYPE_TARGET_TYPE (fieldtype)) != NULL
1123 && STREQ (TYPE_NAME (basetype),
1124 TYPE_NAME (TYPE_TARGET_TYPE (fieldtype))))
1125 return 1;
1126 return 0;
1127 }
1128
1129 /* Compute the offset of the baseclass which is
1130 the INDEXth baseclass of class TYPE,
1131 for value at VALADDR (in host) at ADDRESS (in target).
1132 The result is the offset of the baseclass value relative
1133 to (the address of)(ARG) + OFFSET.
1134
1135 -1 is returned on error. */
1136
1137 int
1138 baseclass_offset (type, index, valaddr, address)
1139 struct type *type;
1140 int index;
1141 char *valaddr;
1142 CORE_ADDR address;
1143 {
1144 struct type *basetype = TYPE_BASECLASS (type, index);
1145
1146 if (BASETYPE_VIA_VIRTUAL (type, index))
1147 {
1148 /* Must hunt for the pointer to this virtual baseclass. */
1149 register int i, len = TYPE_NFIELDS (type);
1150 register int n_baseclasses = TYPE_N_BASECLASSES (type);
1151
1152 /* First look for the virtual baseclass pointer
1153 in the fields. */
1154 for (i = n_baseclasses; i < len; i++)
1155 {
1156 if (vb_match (type, i, basetype))
1157 {
1158 CORE_ADDR addr
1159 = unpack_pointer (TYPE_FIELD_TYPE (type, i),
1160 valaddr + (TYPE_FIELD_BITPOS (type, i) / 8));
1161
1162 return addr - (LONGEST) address;
1163 }
1164 }
1165 /* Not in the fields, so try looking through the baseclasses. */
1166 for (i = index+1; i < n_baseclasses; i++)
1167 {
1168 int boffset =
1169 baseclass_offset (type, i, valaddr, address);
1170 if (boffset)
1171 return boffset;
1172 }
1173 /* Not found. */
1174 return -1;
1175 }
1176
1177 /* Baseclass is easily computed. */
1178 return TYPE_BASECLASS_BITPOS (type, index) / 8;
1179 }
1180 \f
1181 /* Unpack a field FIELDNO of the specified TYPE, from the anonymous object at
1182 VALADDR.
1183
1184 Extracting bits depends on endianness of the machine. Compute the
1185 number of least significant bits to discard. For big endian machines,
1186 we compute the total number of bits in the anonymous object, subtract
1187 off the bit count from the MSB of the object to the MSB of the
1188 bitfield, then the size of the bitfield, which leaves the LSB discard
1189 count. For little endian machines, the discard count is simply the
1190 number of bits from the LSB of the anonymous object to the LSB of the
1191 bitfield.
1192
1193 If the field is signed, we also do sign extension. */
1194
1195 LONGEST
1196 unpack_field_as_long (type, valaddr, fieldno)
1197 struct type *type;
1198 char *valaddr;
1199 int fieldno;
1200 {
1201 ULONGEST val;
1202 ULONGEST valmask;
1203 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
1204 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
1205 int lsbcount;
1206 struct type *field_type;
1207
1208 val = extract_unsigned_integer (valaddr + bitpos / 8, sizeof (val));
1209 field_type = TYPE_FIELD_TYPE (type, fieldno);
1210 CHECK_TYPEDEF (field_type);
1211
1212 /* Extract bits. See comment above. */
1213
1214 if (BITS_BIG_ENDIAN)
1215 lsbcount = (sizeof val * 8 - bitpos % 8 - bitsize);
1216 else
1217 lsbcount = (bitpos % 8);
1218 val >>= lsbcount;
1219
1220 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
1221 If the field is signed, and is negative, then sign extend. */
1222
1223 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
1224 {
1225 valmask = (((ULONGEST) 1) << bitsize) - 1;
1226 val &= valmask;
1227 if (!TYPE_UNSIGNED (field_type))
1228 {
1229 if (val & (valmask ^ (valmask >> 1)))
1230 {
1231 val |= ~valmask;
1232 }
1233 }
1234 }
1235 return (val);
1236 }
1237
1238 /* Modify the value of a bitfield. ADDR points to a block of memory in
1239 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
1240 is the desired value of the field, in host byte order. BITPOS and BITSIZE
1241 indicate which bits (in target bit order) comprise the bitfield. */
1242
1243 void
1244 modify_field (addr, fieldval, bitpos, bitsize)
1245 char *addr;
1246 LONGEST fieldval;
1247 int bitpos, bitsize;
1248 {
1249 LONGEST oword;
1250
1251 /* If a negative fieldval fits in the field in question, chop
1252 off the sign extension bits. */
1253 if (bitsize < (8 * (int) sizeof (fieldval))
1254 && (~fieldval & ~((1 << (bitsize - 1)) - 1)) == 0)
1255 fieldval = fieldval & ((1 << bitsize) - 1);
1256
1257 /* Warn if value is too big to fit in the field in question. */
1258 if (bitsize < (8 * (int) sizeof (fieldval))
1259 && 0 != (fieldval & ~((1<<bitsize)-1)))
1260 {
1261 /* FIXME: would like to include fieldval in the message, but
1262 we don't have a sprintf_longest. */
1263 warning ("Value does not fit in %d bits.", bitsize);
1264
1265 /* Truncate it, otherwise adjoining fields may be corrupted. */
1266 fieldval = fieldval & ((1 << bitsize) - 1);
1267 }
1268
1269 oword = extract_signed_integer (addr, sizeof oword);
1270
1271 /* Shifting for bit field depends on endianness of the target machine. */
1272 if (BITS_BIG_ENDIAN)
1273 bitpos = sizeof (oword) * 8 - bitpos - bitsize;
1274
1275 /* Mask out old value, while avoiding shifts >= size of oword */
1276 if (bitsize < 8 * (int) sizeof (oword))
1277 oword &= ~(((((ULONGEST)1) << bitsize) - 1) << bitpos);
1278 else
1279 oword &= ~((~(ULONGEST)0) << bitpos);
1280 oword |= fieldval << bitpos;
1281
1282 store_signed_integer (addr, sizeof oword, oword);
1283 }
1284 \f
1285 /* Convert C numbers into newly allocated values */
1286
1287 value_ptr
1288 value_from_longest (type, num)
1289 struct type *type;
1290 register LONGEST num;
1291 {
1292 register value_ptr val = allocate_value (type);
1293 register enum type_code code;
1294 register int len;
1295 retry:
1296 code = TYPE_CODE (type);
1297 len = TYPE_LENGTH (type);
1298
1299 switch (code)
1300 {
1301 case TYPE_CODE_TYPEDEF:
1302 type = check_typedef (type);
1303 goto retry;
1304 case TYPE_CODE_INT:
1305 case TYPE_CODE_CHAR:
1306 case TYPE_CODE_ENUM:
1307 case TYPE_CODE_BOOL:
1308 case TYPE_CODE_RANGE:
1309 store_signed_integer (VALUE_CONTENTS_RAW (val), len, num);
1310 break;
1311
1312 case TYPE_CODE_REF:
1313 case TYPE_CODE_PTR:
1314 /* This assumes that all pointers of a given length
1315 have the same form. */
1316 store_address (VALUE_CONTENTS_RAW (val), len, (CORE_ADDR) num);
1317 break;
1318
1319 default:
1320 error ("Unexpected type (%d) encountered for integer constant.", code);
1321 }
1322 return val;
1323 }
1324
1325 value_ptr
1326 value_from_double (type, num)
1327 struct type *type;
1328 DOUBLEST num;
1329 {
1330 register value_ptr val = allocate_value (type);
1331 struct type *base_type = check_typedef (type);
1332 register enum type_code code = TYPE_CODE (base_type);
1333 register int len = TYPE_LENGTH (base_type);
1334
1335 if (code == TYPE_CODE_FLT)
1336 {
1337 store_floating (VALUE_CONTENTS_RAW (val), len, num);
1338 }
1339 else
1340 error ("Unexpected type encountered for floating constant.");
1341
1342 return val;
1343 }
1344 \f
1345 /* Deal with the value that is "about to be returned". */
1346
1347 /* Return the value that a function returning now
1348 would be returning to its caller, assuming its type is VALTYPE.
1349 RETBUF is where we look for what ought to be the contents
1350 of the registers (in raw form). This is because it is often
1351 desirable to restore old values to those registers
1352 after saving the contents of interest, and then call
1353 this function using the saved values.
1354 struct_return is non-zero when the function in question is
1355 using the structure return conventions on the machine in question;
1356 0 when it is using the value returning conventions (this often
1357 means returning pointer to where structure is vs. returning value). */
1358
1359 value_ptr
1360 value_being_returned (valtype, retbuf, struct_return)
1361 register struct type *valtype;
1362 char retbuf[REGISTER_BYTES];
1363 int struct_return;
1364 /*ARGSUSED*/
1365 {
1366 register value_ptr val;
1367 CORE_ADDR addr;
1368
1369 #if defined (EXTRACT_STRUCT_VALUE_ADDRESS)
1370 /* If this is not defined, just use EXTRACT_RETURN_VALUE instead. */
1371 if (struct_return) {
1372 addr = EXTRACT_STRUCT_VALUE_ADDRESS (retbuf);
1373 if (!addr)
1374 error ("Function return value unknown");
1375 return value_at (valtype, addr, NULL);
1376 }
1377 #endif
1378
1379 val = allocate_value (valtype);
1380 CHECK_TYPEDEF (valtype);
1381 EXTRACT_RETURN_VALUE (valtype, retbuf, VALUE_CONTENTS_RAW (val));
1382
1383 return val;
1384 }
1385
1386 /* Should we use EXTRACT_STRUCT_VALUE_ADDRESS instead of
1387 EXTRACT_RETURN_VALUE? GCC_P is true if compiled with gcc
1388 and TYPE is the type (which is known to be struct, union or array).
1389
1390 On most machines, the struct convention is used unless we are
1391 using gcc and the type is of a special size. */
1392 /* As of about 31 Mar 93, GCC was changed to be compatible with the
1393 native compiler. GCC 2.3.3 was the last release that did it the
1394 old way. Since gcc2_compiled was not changed, we have no
1395 way to correctly win in all cases, so we just do the right thing
1396 for gcc1 and for gcc2 after this change. Thus it loses for gcc
1397 2.0-2.3.3. This is somewhat unfortunate, but changing gcc2_compiled
1398 would cause more chaos than dealing with some struct returns being
1399 handled wrong. */
1400
1401 int
1402 generic_use_struct_convention (gcc_p, value_type)
1403 int gcc_p;
1404 struct type *value_type;
1405 {
1406 return !((gcc_p == 1)
1407 && (TYPE_LENGTH (value_type) == 1
1408 || TYPE_LENGTH (value_type) == 2
1409 || TYPE_LENGTH (value_type) == 4
1410 || TYPE_LENGTH (value_type) == 8));
1411 }
1412
1413 #ifndef USE_STRUCT_CONVENTION
1414 #define USE_STRUCT_CONVENTION(gcc_p,type) generic_use_struct_convention (gcc_p, type)
1415 #endif
1416
1417 /* Some fundamental types (such as long double) are returned on the stack for
1418 certain architectures. This macro should return true for any type besides
1419 struct, union or array that gets returned on the stack. */
1420
1421 #ifndef RETURN_VALUE_ON_STACK
1422 #define RETURN_VALUE_ON_STACK(TYPE) 0
1423 #endif
1424
1425 /* Return true if the function specified is using the structure returning
1426 convention on this machine to return arguments, or 0 if it is using
1427 the value returning convention. FUNCTION is the value representing
1428 the function, FUNCADDR is the address of the function, and VALUE_TYPE
1429 is the type returned by the function. GCC_P is nonzero if compiled
1430 with GCC. */
1431
1432 int
1433 using_struct_return (function, funcaddr, value_type, gcc_p)
1434 value_ptr function;
1435 CORE_ADDR funcaddr;
1436 struct type *value_type;
1437 int gcc_p;
1438 /*ARGSUSED*/
1439 {
1440 register enum type_code code = TYPE_CODE (value_type);
1441
1442 if (code == TYPE_CODE_ERROR)
1443 error ("Function return type unknown.");
1444
1445 if (code == TYPE_CODE_STRUCT
1446 || code == TYPE_CODE_UNION
1447 || code == TYPE_CODE_ARRAY
1448 || RETURN_VALUE_ON_STACK (value_type))
1449 return USE_STRUCT_CONVENTION (gcc_p, value_type);
1450
1451 return 0;
1452 }
1453
1454 /* Store VAL so it will be returned if a function returns now.
1455 Does not verify that VAL's type matches what the current
1456 function wants to return. */
1457
1458 void
1459 set_return_value (val)
1460 value_ptr val;
1461 {
1462 struct type *type = check_typedef (VALUE_TYPE (val));
1463 register enum type_code code = TYPE_CODE (type);
1464
1465 if (code == TYPE_CODE_ERROR)
1466 error ("Function return type unknown.");
1467
1468 if ( code == TYPE_CODE_STRUCT
1469 || code == TYPE_CODE_UNION) /* FIXME, implement struct return. */
1470 error ("GDB does not support specifying a struct or union return value.");
1471
1472 STORE_RETURN_VALUE (type, VALUE_CONTENTS (val));
1473 }
1474 \f
1475 void
1476 _initialize_values ()
1477 {
1478 add_cmd ("convenience", no_class, show_convenience,
1479 "Debugger convenience (\"$foo\") variables.\n\
1480 These variables are created when you assign them values;\n\
1481 thus, \"print $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\n\
1482 A few convenience variables are given values automatically:\n\
1483 \"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
1484 \"$__\" holds the contents of the last address examined with \"x\".",
1485 &showlist);
1486
1487 add_cmd ("values", no_class, show_values,
1488 "Elements of value history around item number IDX (or last ten).",
1489 &showlist);
1490 }
This page took 0.058464 seconds and 5 git commands to generate.