1 /* Low level packing and unpacking of values for GDB, the GNU Debugger.
2 Copyright 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
32 /* Local function prototypes. */
35 value_headof PARAMS ((value, struct type *, struct type *));
38 show_values PARAMS ((char *, int));
41 show_convenience PARAMS ((char *, int));
43 /* The value-history records all the values printed
44 by print commands during this session. Each chunk
45 records 60 consecutive values. The first chunk on
46 the chain records the most recent values.
47 The total number of values is in value_history_count. */
49 #define VALUE_HISTORY_CHUNK 60
51 struct value_history_chunk
53 struct value_history_chunk *next;
54 value values[VALUE_HISTORY_CHUNK];
57 /* Chain of chunks now in use. */
59 static struct value_history_chunk *value_history_chain;
61 static int value_history_count; /* Abs number of last entry stored */
63 /* List of all value objects currently allocated
64 (except for those released by calls to release_value)
65 This is so they can be freed after each command. */
67 static value all_values;
69 /* Allocate a value that has the correct length for type TYPE. */
77 check_stub_type (type);
79 val = (value) xmalloc (sizeof (struct value) + TYPE_LENGTH (type));
80 VALUE_NEXT (val) = all_values;
82 VALUE_TYPE (val) = type;
83 VALUE_LVAL (val) = not_lval;
84 VALUE_ADDRESS (val) = 0;
85 VALUE_FRAME (val) = 0;
86 VALUE_OFFSET (val) = 0;
87 VALUE_BITPOS (val) = 0;
88 VALUE_BITSIZE (val) = 0;
89 VALUE_REPEATED (val) = 0;
90 VALUE_REPETITIONS (val) = 0;
91 VALUE_REGNO (val) = -1;
93 VALUE_OPTIMIZED_OUT (val) = 0;
97 /* Allocate a value that has the correct length
98 for COUNT repetitions type TYPE. */
101 allocate_repeat_value (type, count)
107 val = (value) xmalloc (sizeof (struct value) + TYPE_LENGTH (type) * count);
108 VALUE_NEXT (val) = all_values;
110 VALUE_TYPE (val) = type;
111 VALUE_LVAL (val) = not_lval;
112 VALUE_ADDRESS (val) = 0;
113 VALUE_FRAME (val) = 0;
114 VALUE_OFFSET (val) = 0;
115 VALUE_BITPOS (val) = 0;
116 VALUE_BITSIZE (val) = 0;
117 VALUE_REPEATED (val) = 1;
118 VALUE_REPETITIONS (val) = count;
119 VALUE_REGNO (val) = -1;
120 VALUE_LAZY (val) = 0;
121 VALUE_OPTIMIZED_OUT (val) = 0;
125 /* Return a mark in the value chain. All values allocated after the
126 mark is obtained (except for those released) are subject to being freed
127 if a subsequent value_free_to_mark is passed the mark. */
134 /* Free all values allocated since MARK was obtained by value_mark
135 (except for those released). */
137 value_free_to_mark (mark)
142 for (val = all_values; val && val != mark; val = next)
144 next = VALUE_NEXT (val);
150 /* Free all the values that have been allocated (except for those released).
151 Called after each command, successful or not. */
156 register value val, next;
158 for (val = all_values; val; val = next)
160 next = VALUE_NEXT (val);
167 /* Remove VAL from the chain all_values
168 so it will not be freed automatically. */
176 if (all_values == val)
178 all_values = val->next;
182 for (v = all_values; v; v = v->next)
192 /* Return a copy of the value ARG.
193 It contains the same contents, for same memory address,
194 but it's a different block of storage. */
201 register struct type *type = VALUE_TYPE (arg);
202 if (VALUE_REPEATED (arg))
203 val = allocate_repeat_value (type, VALUE_REPETITIONS (arg));
205 val = allocate_value (type);
206 VALUE_LVAL (val) = VALUE_LVAL (arg);
207 VALUE_ADDRESS (val) = VALUE_ADDRESS (arg);
208 VALUE_OFFSET (val) = VALUE_OFFSET (arg);
209 VALUE_BITPOS (val) = VALUE_BITPOS (arg);
210 VALUE_BITSIZE (val) = VALUE_BITSIZE (arg);
211 VALUE_REGNO (val) = VALUE_REGNO (arg);
212 VALUE_LAZY (val) = VALUE_LAZY (arg);
213 if (!VALUE_LAZY (val))
215 memcpy (VALUE_CONTENTS_RAW (val), VALUE_CONTENTS_RAW (arg),
216 TYPE_LENGTH (VALUE_TYPE (arg))
217 * (VALUE_REPEATED (arg) ? VALUE_REPETITIONS (arg) : 1));
222 /* Access to the value history. */
224 /* Record a new value in the value history.
225 Returns the absolute history index of the entry.
226 Result of -1 indicates the value was not saved; otherwise it is the
227 value history index of this new item. */
230 record_latest_value (val)
235 /* Check error now if about to store an invalid float. We return -1
236 to the caller, but allow them to continue, e.g. to print it as "Nan". */
237 if (TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FLT)
239 unpack_double (VALUE_TYPE (val), VALUE_CONTENTS (val), &i);
240 if (i) return -1; /* Indicate value not saved in history */
243 /* Here we treat value_history_count as origin-zero
244 and applying to the value being stored now. */
246 i = value_history_count % VALUE_HISTORY_CHUNK;
249 register struct value_history_chunk *new
250 = (struct value_history_chunk *)
251 xmalloc (sizeof (struct value_history_chunk));
252 memset (new->values, 0, sizeof new->values);
253 new->next = value_history_chain;
254 value_history_chain = new;
257 value_history_chain->values[i] = val;
260 /* Now we regard value_history_count as origin-one
261 and applying to the value just stored. */
263 return ++value_history_count;
266 /* Return a copy of the value in the history with sequence number NUM. */
269 access_value_history (num)
272 register struct value_history_chunk *chunk;
274 register int absnum = num;
277 absnum += value_history_count;
282 error ("The history is empty.");
284 error ("There is only one value in the history.");
286 error ("History does not go back to $$%d.", -num);
288 if (absnum > value_history_count)
289 error ("History has not yet reached $%d.", absnum);
293 /* Now absnum is always absolute and origin zero. */
295 chunk = value_history_chain;
296 for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK - absnum / VALUE_HISTORY_CHUNK;
300 return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
303 /* Clear the value history entirely.
304 Must be done when new symbol tables are loaded,
305 because the type pointers become invalid. */
308 clear_value_history ()
310 register struct value_history_chunk *next;
314 while (value_history_chain)
316 for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
317 if ((val = value_history_chain->values[i]) != NULL)
319 next = value_history_chain->next;
320 free ((PTR)value_history_chain);
321 value_history_chain = next;
323 value_history_count = 0;
327 show_values (num_exp, from_tty)
337 if (num_exp[0] == '+' && num_exp[1] == '\0')
338 /* "info history +" should print from the stored position. */
341 /* "info history <exp>" should print around value number <exp>. */
342 num = parse_and_eval_address (num_exp) - 5;
346 /* "info history" means print the last 10 values. */
347 num = value_history_count - 9;
353 for (i = num; i < num + 10 && i <= value_history_count; i++)
355 val = access_value_history (i);
356 printf_filtered ("$%d = ", i);
357 value_print (val, stdout, 0, Val_pretty_default);
358 printf_filtered ("\n");
361 /* The next "info history +" should start after what we just printed. */
364 /* Hitting just return after this command should do the same thing as
365 "info history +". If num_exp is null, this is unnecessary, since
366 "info history +" is not useful after "info history". */
367 if (from_tty && num_exp)
374 /* Internal variables. These are variables within the debugger
375 that hold values assigned by debugger commands.
376 The user refers to them with a '$' prefix
377 that does not appear in the variable names stored internally. */
379 static struct internalvar *internalvars;
381 /* Look up an internal variable with name NAME. NAME should not
382 normally include a dollar sign.
384 If the specified internal variable does not exist,
385 one is created, with a void value. */
388 lookup_internalvar (name)
391 register struct internalvar *var;
393 for (var = internalvars; var; var = var->next)
394 if (STREQ (var->name, name))
397 var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
398 var->name = concat (name, NULL);
399 var->value = allocate_value (builtin_type_void);
400 release_value (var->value);
401 var->next = internalvars;
407 value_of_internalvar (var)
408 struct internalvar *var;
412 #ifdef IS_TRAPPED_INTERNALVAR
413 if (IS_TRAPPED_INTERNALVAR (var->name))
414 return VALUE_OF_TRAPPED_INTERNALVAR (var);
417 val = value_copy (var->value);
418 if (VALUE_LAZY (val))
419 value_fetch_lazy (val);
420 VALUE_LVAL (val) = lval_internalvar;
421 VALUE_INTERNALVAR (val) = var;
426 set_internalvar_component (var, offset, bitpos, bitsize, newval)
427 struct internalvar *var;
428 int offset, bitpos, bitsize;
431 register char *addr = VALUE_CONTENTS (var->value) + offset;
433 #ifdef IS_TRAPPED_INTERNALVAR
434 if (IS_TRAPPED_INTERNALVAR (var->name))
435 SET_TRAPPED_INTERNALVAR (var, newval, bitpos, bitsize, offset);
439 modify_field (addr, (int) value_as_long (newval),
442 memcpy (addr, VALUE_CONTENTS (newval), TYPE_LENGTH (VALUE_TYPE (newval)));
446 set_internalvar (var, val)
447 struct internalvar *var;
450 #ifdef IS_TRAPPED_INTERNALVAR
451 if (IS_TRAPPED_INTERNALVAR (var->name))
452 SET_TRAPPED_INTERNALVAR (var, val, 0, 0, 0);
455 free ((PTR)var->value);
456 var->value = value_copy (val);
457 /* Force the value to be fetched from the target now, to avoid problems
458 later when this internalvar is referenced and the target is gone or
460 if (VALUE_LAZY (var->value))
461 value_fetch_lazy (var->value);
462 release_value (var->value);
466 internalvar_name (var)
467 struct internalvar *var;
472 /* Free all internalvars. Done when new symtabs are loaded,
473 because that makes the values invalid. */
476 clear_internalvars ()
478 register struct internalvar *var;
483 internalvars = var->next;
484 free ((PTR)var->name);
485 free ((PTR)var->value);
491 show_convenience (ignore, from_tty)
495 register struct internalvar *var;
498 for (var = internalvars; var; var = var->next)
500 #ifdef IS_TRAPPED_INTERNALVAR
501 if (IS_TRAPPED_INTERNALVAR (var->name))
508 printf_filtered ("$%s = ", var->name);
509 value_print (var->value, stdout, 0, Val_pretty_default);
510 printf_filtered ("\n");
513 printf ("No debugger convenience variables now defined.\n\
514 Convenience variables have names starting with \"$\";\n\
515 use \"set\" as in \"set $foo = 5\" to define them.\n");
518 /* Extract a value as a C number (either long or double).
519 Knows how to convert fixed values to double, or
520 floating values to long.
521 Does not deallocate the value. */
527 /* This coerces arrays and functions, which is necessary (e.g.
528 in disassemble_command). It also dereferences references, which
529 I suspect is the most logical thing to do. */
530 if (TYPE_CODE (VALUE_TYPE (val)) != TYPE_CODE_ENUM)
532 return unpack_long (VALUE_TYPE (val), VALUE_CONTENTS (val));
536 value_as_double (val)
542 foo = unpack_double (VALUE_TYPE (val), VALUE_CONTENTS (val), &inv);
544 error ("Invalid floating value found in program.");
547 /* Extract a value as a C pointer.
548 Does not deallocate the value. */
550 value_as_pointer (val)
553 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
554 whether we want this to be true eventually. */
555 return ADDR_BITS_REMOVE(value_as_long (val));
558 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
559 as a long, or as a double, assuming the raw data is described
560 by type TYPE. Knows how to convert different sizes of values
561 and can convert between fixed and floating point. We don't assume
562 any alignment for the raw data. Return value is in host byte order.
564 If you want functions and arrays to be coerced to pointers, and
565 references to be dereferenced, call value_as_long() instead.
567 C++: It is assumed that the front-end has taken care of
568 all matters concerning pointers to members. A pointer
569 to member which reaches here is considered to be equivalent
570 to an INT (or some size). After all, it is only an offset. */
572 /* FIXME: This should be rewritten as a switch statement for speed and
573 ease of comprehension. */
576 unpack_long (type, valaddr)
580 register enum type_code code = TYPE_CODE (type);
581 register int len = TYPE_LENGTH (type);
582 register int nosign = TYPE_UNSIGNED (type);
584 if (code == TYPE_CODE_ENUM || code == TYPE_CODE_BOOL)
585 code = TYPE_CODE_INT;
586 if (code == TYPE_CODE_FLT)
588 if (len == sizeof (float))
591 memcpy (&retval, valaddr, sizeof (retval));
592 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
596 if (len == sizeof (double))
599 memcpy (&retval, valaddr, sizeof (retval));
600 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
605 error ("Unexpected type of floating point number.");
608 else if (code == TYPE_CODE_INT && nosign)
610 if (len == sizeof (char))
612 unsigned char retval = * (unsigned char *) valaddr;
613 /* SWAP_TARGET_AND_HOST (&retval, sizeof (unsigned char)); */
617 if (len == sizeof (short))
619 unsigned short retval;
620 memcpy (&retval, valaddr, sizeof (retval));
621 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
625 if (len == sizeof (int))
628 memcpy (&retval, valaddr, sizeof (retval));
629 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
633 if (len == sizeof (long))
635 unsigned long retval;
636 memcpy (&retval, valaddr, sizeof (retval));
637 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
640 #ifdef CC_HAS_LONG_LONG
641 if (len == sizeof (long long))
643 unsigned long long retval;
644 memcpy (&retval, valaddr, sizeof (retval));
645 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
651 error ("That operation is not possible on an integer of that size.");
654 else if (code == TYPE_CODE_INT)
656 if (len == sizeof (char))
658 SIGNED char retval; /* plain chars might be unsigned on host */
659 memcpy (&retval, valaddr, sizeof (retval));
660 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
664 if (len == sizeof (short))
667 memcpy (&retval, valaddr, sizeof (retval));
668 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
672 if (len == sizeof (int))
675 memcpy (&retval, valaddr, sizeof (retval));
676 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
680 if (len == sizeof (long))
683 memcpy (&retval, valaddr, sizeof (retval));
684 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
688 #ifdef CC_HAS_LONG_LONG
689 if (len == sizeof (long long))
692 memcpy (&retval, valaddr, sizeof (retval));
693 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
699 error ("That operation is not possible on an integer of that size.");
702 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
703 whether we want this to be true eventually. */
704 else if (code == TYPE_CODE_PTR || code == TYPE_CODE_REF)
706 if (len == sizeof(long))
708 unsigned long retval;
709 memcpy (&retval, valaddr, sizeof(retval));
710 SWAP_TARGET_AND_HOST (&retval, sizeof(retval));
713 else if (len == sizeof(short))
715 unsigned short retval;
716 memcpy (&retval, valaddr, len);
717 SWAP_TARGET_AND_HOST (&retval, len);
720 else if (len == sizeof(int))
723 memcpy (&retval, valaddr, len);
724 SWAP_TARGET_AND_HOST (&retval, len);
727 #ifdef CC_HAS_LONG_LONG
728 else if (len == sizeof(long long))
730 unsigned long long retval;
731 memcpy (&retval, valaddr, len);
732 SWAP_TARGET_AND_HOST (&retval, len);
737 else if (code == TYPE_CODE_MEMBER)
738 error ("not implemented: member types in unpack_long");
739 else if (code == TYPE_CODE_CHAR)
740 return *(unsigned char *)valaddr;
742 error ("Value not integer or pointer.");
743 return 0; /* For lint -- never reached */
746 /* Return a double value from the specified type and address.
747 INVP points to an int which is set to 0 for valid value,
748 1 for invalid value (bad float format). In either case,
749 the returned double is OK to use. Argument is in target
750 format, result is in host format. */
753 unpack_double (type, valaddr, invp)
758 register enum type_code code = TYPE_CODE (type);
759 register int len = TYPE_LENGTH (type);
760 register int nosign = TYPE_UNSIGNED (type);
762 *invp = 0; /* Assume valid. */
763 if (code == TYPE_CODE_FLT)
765 if (INVALID_FLOAT (valaddr, len))
768 return 1.234567891011121314;
771 if (len == sizeof (float))
774 memcpy (&retval, valaddr, sizeof (retval));
775 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
779 if (len == sizeof (double))
782 memcpy (&retval, valaddr, sizeof (retval));
783 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
788 error ("Unexpected type of floating point number.");
789 return 0; /* Placate lint. */
793 /* Unsigned -- be sure we compensate for signed LONGEST. */
794 return (unsigned LONGEST) unpack_long (type, valaddr);
796 /* Signed -- we are OK with unpack_long. */
797 return unpack_long (type, valaddr);
801 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
802 as a CORE_ADDR, assuming the raw data is described by type TYPE.
803 We don't assume any alignment for the raw data. Return value is in
806 If you want functions and arrays to be coerced to pointers, and
807 references to be dereferenced, call value_as_pointer() instead.
809 C++: It is assumed that the front-end has taken care of
810 all matters concerning pointers to members. A pointer
811 to member which reaches here is considered to be equivalent
812 to an INT (or some size). After all, it is only an offset. */
815 unpack_pointer (type, valaddr)
820 /* The user should be able to use an int (e.g. 0x7892) in contexts
821 where a pointer is expected. So this doesn't do enough. */
822 register enum type_code code = TYPE_CODE (type);
823 register int len = TYPE_LENGTH (type);
825 if (code == TYPE_CODE_PTR
826 || code == TYPE_CODE_REF)
828 if (len == sizeof (CORE_ADDR))
831 memcpy (&retval, valaddr, sizeof (retval));
832 SWAP_TARGET_AND_HOST (&retval, sizeof (retval));
835 error ("Unrecognized pointer size.");
837 else if (code == TYPE_CODE_MEMBER)
838 error ("not implemented: member types in unpack_pointer");
840 error ("Value is not a pointer.");
841 return 0; /* For lint -- never reached */
843 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
844 whether we want this to be true eventually. */
845 return unpack_long (type, valaddr);
849 /* Given a value ARG1 (offset by OFFSET bytes)
850 of a struct or union type ARG_TYPE,
851 extract and return the value of one of its fields.
852 FIELDNO says which field.
854 For C++, must also be able to return values from static fields */
857 value_primitive_field (arg1, offset, fieldno, arg_type)
860 register int fieldno;
861 register struct type *arg_type;
864 register struct type *type;
866 check_stub_type (arg_type);
867 type = TYPE_FIELD_TYPE (arg_type, fieldno);
869 /* Handle packed fields */
871 offset += TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
872 if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
874 v = value_from_longest (type,
875 unpack_field_as_long (arg_type,
876 VALUE_CONTENTS (arg1),
878 VALUE_BITPOS (v) = TYPE_FIELD_BITPOS (arg_type, fieldno) % 8;
879 VALUE_BITSIZE (v) = TYPE_FIELD_BITSIZE (arg_type, fieldno);
883 v = allocate_value (type);
884 if (VALUE_LAZY (arg1))
887 memcpy (VALUE_CONTENTS_RAW (v), VALUE_CONTENTS_RAW (arg1) + offset,
890 VALUE_LVAL (v) = VALUE_LVAL (arg1);
891 if (VALUE_LVAL (arg1) == lval_internalvar)
892 VALUE_LVAL (v) = lval_internalvar_component;
893 VALUE_ADDRESS (v) = VALUE_ADDRESS (arg1);
894 VALUE_OFFSET (v) = offset + VALUE_OFFSET (arg1);
898 /* Given a value ARG1 of a struct or union type,
899 extract and return the value of one of its fields.
900 FIELDNO says which field.
902 For C++, must also be able to return values from static fields */
905 value_field (arg1, fieldno)
907 register int fieldno;
909 return value_primitive_field (arg1, 0, fieldno, VALUE_TYPE (arg1));
912 /* Return a non-virtual function as a value.
913 F is the list of member functions which contains the desired method.
914 J is an index into F which provides the desired method. */
917 value_fn_field (arg1p, f, j, type, offset)
925 register struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
928 sym = lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
929 0, VAR_NAMESPACE, 0, NULL);
930 if (! sym) error ("Internal error: could not find physical method named %s",
931 TYPE_FN_FIELD_PHYSNAME (f, j));
933 v = allocate_value (ftype);
934 VALUE_ADDRESS (v) = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
935 VALUE_TYPE (v) = ftype;
939 if (type != VALUE_TYPE (*arg1p))
940 *arg1p = value_ind (value_cast (lookup_pointer_type (type),
941 value_addr (*arg1p)));
943 /* Move the `this' pointer according to the offset. */
944 VALUE_OFFSET (*arg1p) += offset;
950 /* Return a virtual function as a value.
951 ARG1 is the object which provides the virtual function
952 table pointer. *ARG1P is side-effected in calling this function.
953 F is the list of member functions which contains the desired virtual
955 J is an index into F which provides the desired virtual function.
957 TYPE is the type in which F is located. */
959 value_virtual_fn_field (arg1p, f, j, type, offset)
967 /* First, get the virtual function table pointer. That comes
968 with a strange type, so cast it to type `pointer to long' (which
969 should serve just fine as a function type). Then, index into
970 the table, and convert final value to appropriate function type. */
971 value entry, vfn, vtbl;
972 value vi = value_from_longest (builtin_type_int,
973 (LONGEST) TYPE_FN_FIELD_VOFFSET (f, j));
974 struct type *fcontext = TYPE_FN_FIELD_FCONTEXT (f, j);
975 struct type *context;
976 if (fcontext == NULL)
977 /* We don't have an fcontext (e.g. the program was compiled with
978 g++ version 1). Try to get the vtbl from the TYPE_VPTR_BASETYPE.
979 This won't work right for multiple inheritance, but at least we
980 should do as well as GDB 3.x did. */
981 fcontext = TYPE_VPTR_BASETYPE (type);
982 context = lookup_pointer_type (fcontext);
983 /* Now context is a pointer to the basetype containing the vtbl. */
984 if (TYPE_TARGET_TYPE (context) != VALUE_TYPE (arg1))
985 arg1 = value_ind (value_cast (context, value_addr (arg1)));
987 context = VALUE_TYPE (arg1);
988 /* Now context is the basetype containing the vtbl. */
990 /* This type may have been defined before its virtual function table
991 was. If so, fill in the virtual function table entry for the
993 if (TYPE_VPTR_FIELDNO (context) < 0)
994 fill_in_vptr_fieldno (context);
996 /* The virtual function table is now an array of structures
997 which have the form { int16 offset, delta; void *pfn; }. */
998 vtbl = value_ind (value_primitive_field (arg1, 0,
999 TYPE_VPTR_FIELDNO (context),
1000 TYPE_VPTR_BASETYPE (context)));
1002 /* Index into the virtual function table. This is hard-coded because
1003 looking up a field is not cheap, and it may be important to save
1004 time, e.g. if the user has set a conditional breakpoint calling
1005 a virtual function. */
1006 entry = value_subscript (vtbl, vi);
1008 /* Move the `this' pointer according to the virtual function table. */
1009 VALUE_OFFSET (arg1) += value_as_long (value_field (entry, 0)) + offset;
1010 if (! VALUE_LAZY (arg1))
1012 VALUE_LAZY (arg1) = 1;
1013 value_fetch_lazy (arg1);
1016 vfn = value_field (entry, 2);
1017 /* Reinstantiate the function pointer with the correct type. */
1018 VALUE_TYPE (vfn) = lookup_pointer_type (TYPE_FN_FIELD_TYPE (f, j));
1024 /* ARG is a pointer to an object we know to be at least
1025 a DTYPE. BTYPE is the most derived basetype that has
1026 already been searched (and need not be searched again).
1027 After looking at the vtables between BTYPE and DTYPE,
1028 return the most derived type we find. The caller must
1029 be satisfied when the return value == DTYPE.
1031 FIXME-tiemann: should work with dossier entries as well. */
1034 value_headof (in_arg, btype, dtype)
1036 struct type *btype, *dtype;
1038 /* First collect the vtables we must look at for this object. */
1039 /* FIXME-tiemann: right now, just look at top-most vtable. */
1040 value arg, vtbl, entry, best_entry = 0;
1042 int offset, best_offset = 0;
1044 CORE_ADDR pc_for_sym;
1045 char *demangled_name;
1046 struct minimal_symbol *msymbol;
1048 btype = TYPE_VPTR_BASETYPE (dtype);
1049 check_stub_type (btype);
1052 arg = value_cast (lookup_pointer_type (btype), arg);
1053 vtbl = value_ind (value_field (value_ind (arg), TYPE_VPTR_FIELDNO (btype)));
1055 /* Check that VTBL looks like it points to a virtual function table. */
1056 msymbol = lookup_minimal_symbol_by_pc (VALUE_ADDRESS (vtbl));
1058 || !VTBL_PREFIX_P (demangled_name = SYMBOL_NAME (msymbol)))
1060 /* If we expected to find a vtable, but did not, let the user
1061 know that we aren't happy, but don't throw an error.
1062 FIXME: there has to be a better way to do this. */
1063 struct type *error_type = (struct type *)xmalloc (sizeof (struct type));
1064 memcpy (error_type, VALUE_TYPE (in_arg), sizeof (struct type));
1065 TYPE_NAME (error_type) = savestring ("suspicious *", sizeof ("suspicious *"));
1066 VALUE_TYPE (in_arg) = error_type;
1070 /* Now search through the virtual function table. */
1071 entry = value_ind (vtbl);
1072 nelems = longest_to_int (value_as_long (value_field (entry, 2)));
1073 for (i = 1; i <= nelems; i++)
1075 entry = value_subscript (vtbl, value_from_longest (builtin_type_int,
1077 offset = longest_to_int (value_as_long (value_field (entry, 0)));
1078 /* If we use '<=' we can handle single inheritance
1079 * where all offsets are zero - just use the first entry found. */
1080 if (offset <= best_offset)
1082 best_offset = offset;
1086 /* Move the pointer according to BEST_ENTRY's offset, and figure
1087 out what type we should return as the new pointer. */
1088 if (best_entry == 0)
1090 /* An alternative method (which should no longer be necessary).
1091 * But we leave it in for future use, when we will hopefully
1092 * have optimizes the vtable to use thunks instead of offsets. */
1093 /* Use the name of vtable itself to extract a base type. */
1094 demangled_name += 4; /* Skip _vt$ prefix. */
1098 pc_for_sym = value_as_pointer (value_field (best_entry, 2));
1099 sym = find_pc_function (pc_for_sym);
1100 demangled_name = cplus_demangle (SYMBOL_NAME (sym), DMGL_ANSI);
1101 *(strchr (demangled_name, ':')) = '\0';
1103 sym = lookup_symbol (demangled_name, 0, VAR_NAMESPACE, 0, 0);
1105 error ("could not find type declaration for `%s'", demangled_name);
1108 free (demangled_name);
1109 arg = value_add (value_cast (builtin_type_int, arg),
1110 value_field (best_entry, 0));
1113 VALUE_TYPE (arg) = lookup_pointer_type (SYMBOL_TYPE (sym));
1117 /* ARG is a pointer object of type TYPE. If TYPE has virtual
1118 function tables, probe ARG's tables (including the vtables
1119 of its baseclasses) to figure out the most derived type that ARG
1120 could actually be a pointer to. */
1123 value_from_vtable_info (arg, type)
1127 /* Take care of preliminaries. */
1128 if (TYPE_VPTR_FIELDNO (type) < 0)
1129 fill_in_vptr_fieldno (type);
1130 if (TYPE_VPTR_FIELDNO (type) < 0 || VALUE_REPEATED (arg))
1133 return value_headof (arg, 0, type);
1136 /* Compute the offset of the baseclass which is
1137 the INDEXth baseclass of class TYPE, for a value ARG,
1138 wih extra offset of OFFSET.
1139 The result is the offste of the baseclass value relative
1140 to (the address of)(ARG) + OFFSET.
1142 -1 is returned on error. */
1145 baseclass_offset (type, index, arg, offset)
1151 struct type *basetype = TYPE_BASECLASS (type, index);
1153 if (BASETYPE_VIA_VIRTUAL (type, index))
1155 /* Must hunt for the pointer to this virtual baseclass. */
1156 register int i, len = TYPE_NFIELDS (type);
1157 register int n_baseclasses = TYPE_N_BASECLASSES (type);
1158 char *vbase_name, *type_name = type_name_no_tag (basetype);
1160 vbase_name = (char *)alloca (strlen (type_name) + 8);
1161 sprintf (vbase_name, "_vb%c%s", CPLUS_MARKER, type_name);
1162 /* First look for the virtual baseclass pointer
1164 for (i = n_baseclasses; i < len; i++)
1166 if (STREQ (vbase_name, TYPE_FIELD_NAME (type, i)))
1169 = unpack_pointer (TYPE_FIELD_TYPE (type, i),
1170 VALUE_CONTENTS (arg) + VALUE_OFFSET (arg)
1172 + (TYPE_FIELD_BITPOS (type, i) / 8));
1174 if (VALUE_LVAL (arg) != lval_memory)
1178 (LONGEST) (VALUE_ADDRESS (arg) + VALUE_OFFSET (arg) + offset);
1181 /* Not in the fields, so try looking through the baseclasses. */
1182 for (i = index+1; i < n_baseclasses; i++)
1185 baseclass_offset (type, i, arg, offset);
1193 /* Baseclass is easily computed. */
1194 return TYPE_BASECLASS_BITPOS (type, index) / 8;
1197 /* Compute the address of the baseclass which is
1198 the INDEXth baseclass of class TYPE. The TYPE base
1199 of the object is at VALADDR.
1201 If ERRP is non-NULL, set *ERRP to be the errno code of any error,
1202 or 0 if no error. In that case the return value is not the address
1203 of the baseclasss, but the address which could not be read
1206 /* FIXME Fix remaining uses of baseclass_addr to use baseclass_offset */
1209 baseclass_addr (type, index, valaddr, valuep, errp)
1216 struct type *basetype = TYPE_BASECLASS (type, index);
1221 if (BASETYPE_VIA_VIRTUAL (type, index))
1223 /* Must hunt for the pointer to this virtual baseclass. */
1224 register int i, len = TYPE_NFIELDS (type);
1225 register int n_baseclasses = TYPE_N_BASECLASSES (type);
1226 char *vbase_name, *type_name = type_name_no_tag (basetype);
1228 vbase_name = (char *)alloca (strlen (type_name) + 8);
1229 sprintf (vbase_name, "_vb%c%s", CPLUS_MARKER, type_name);
1230 /* First look for the virtual baseclass pointer
1232 for (i = n_baseclasses; i < len; i++)
1234 if (STREQ (vbase_name, TYPE_FIELD_NAME (type, i)))
1236 value val = allocate_value (basetype);
1241 = unpack_pointer (TYPE_FIELD_TYPE (type, i),
1242 valaddr + (TYPE_FIELD_BITPOS (type, i) / 8));
1244 status = target_read_memory (addr,
1245 VALUE_CONTENTS_RAW (val),
1246 TYPE_LENGTH (basetype));
1247 VALUE_LVAL (val) = lval_memory;
1248 VALUE_ADDRESS (val) = addr;
1254 release_value (val);
1258 return (char *)addr;
1264 return (char *) VALUE_CONTENTS (val);
1268 /* Not in the fields, so try looking through the baseclasses. */
1269 for (i = index+1; i < n_baseclasses; i++)
1273 baddr = baseclass_addr (type, i, valaddr, valuep, errp);
1283 /* Baseclass is easily computed. */
1286 return valaddr + TYPE_BASECLASS_BITPOS (type, index) / 8;
1289 /* Unpack a field FIELDNO of the specified TYPE, from the anonymous object at
1292 Extracting bits depends on endianness of the machine. Compute the
1293 number of least significant bits to discard. For big endian machines,
1294 we compute the total number of bits in the anonymous object, subtract
1295 off the bit count from the MSB of the object to the MSB of the
1296 bitfield, then the size of the bitfield, which leaves the LSB discard
1297 count. For little endian machines, the discard count is simply the
1298 number of bits from the LSB of the anonymous object to the LSB of the
1301 If the field is signed, we also do sign extension. */
1304 unpack_field_as_long (type, valaddr, fieldno)
1309 unsigned LONGEST val;
1310 unsigned LONGEST valmask;
1311 int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
1312 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
1315 memcpy (&val, valaddr + bitpos / 8, sizeof (val));
1316 SWAP_TARGET_AND_HOST (&val, sizeof (val));
1318 /* Extract bits. See comment above. */
1321 lsbcount = (sizeof val * 8 - bitpos % 8 - bitsize);
1323 lsbcount = (bitpos % 8);
1327 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
1328 If the field is signed, and is negative, then sign extend. */
1330 if ((bitsize > 0) && (bitsize < 8 * sizeof (val)))
1332 valmask = (((unsigned LONGEST) 1) << bitsize) - 1;
1334 if (!TYPE_UNSIGNED (TYPE_FIELD_TYPE (type, fieldno)))
1336 if (val & (valmask ^ (valmask >> 1)))
1345 /* Modify the value of a bitfield. ADDR points to a block of memory in
1346 target byte order; the bitfield starts in the byte pointed to. FIELDVAL
1347 is the desired value of the field, in host byte order. BITPOS and BITSIZE
1348 indicate which bits (in target bit order) comprise the bitfield. */
1351 modify_field (addr, fieldval, bitpos, bitsize)
1354 int bitpos, bitsize;
1358 /* Reject values too big to fit in the field in question,
1359 otherwise adjoining fields may be corrupted. */
1360 if (bitsize < (8 * sizeof (fieldval))
1361 && 0 != (fieldval & ~((1<<bitsize)-1)))
1362 error ("Value %d does not fit in %d bits.", fieldval, bitsize);
1364 memcpy (&oword, addr, sizeof oword);
1365 SWAP_TARGET_AND_HOST (&oword, sizeof oword); /* To host format */
1367 /* Shifting for bit field depends on endianness of the target machine. */
1369 bitpos = sizeof (oword) * 8 - bitpos - bitsize;
1372 /* Mask out old value, while avoiding shifts >= longword size */
1373 if (bitsize < 8 * sizeof (oword))
1374 oword &= ~(((((unsigned long)1) << bitsize) - 1) << bitpos);
1376 oword &= ~((-1) << bitpos);
1377 oword |= fieldval << bitpos;
1379 SWAP_TARGET_AND_HOST (&oword, sizeof oword); /* To target format */
1380 memcpy (addr, &oword, sizeof oword);
1383 /* Convert C numbers into newly allocated values */
1386 value_from_longest (type, num)
1388 register LONGEST num;
1390 register value val = allocate_value (type);
1391 register enum type_code code = TYPE_CODE (type);
1392 register int len = TYPE_LENGTH (type);
1394 /* FIXME, we assume that pointers have the same form and byte order as
1395 integers, and that all pointers have the same form. */
1396 if (code == TYPE_CODE_INT || code == TYPE_CODE_ENUM ||
1397 code == TYPE_CODE_CHAR || code == TYPE_CODE_PTR ||
1398 code == TYPE_CODE_REF || code == TYPE_CODE_BOOL)
1400 if (len == sizeof (char))
1401 * (char *) VALUE_CONTENTS_RAW (val) = num;
1402 else if (len == sizeof (short))
1403 * (short *) VALUE_CONTENTS_RAW (val) = num;
1404 else if (len == sizeof (int))
1405 * (int *) VALUE_CONTENTS_RAW (val) = num;
1406 else if (len == sizeof (long))
1407 * (long *) VALUE_CONTENTS_RAW (val) = num;
1408 else if (len == sizeof (LONGEST))
1409 * (LONGEST *) VALUE_CONTENTS_RAW (val) = num;
1411 error ("Integer type encountered with unexpected data length.");
1414 error ("Unexpected type encountered for integer constant.");
1416 /* num was in host byte order. So now put the value's contents
1417 into target byte order. */
1418 SWAP_TARGET_AND_HOST (VALUE_CONTENTS_RAW (val), len);
1424 value_from_double (type, num)
1428 register value val = allocate_value (type);
1429 register enum type_code code = TYPE_CODE (type);
1430 register int len = TYPE_LENGTH (type);
1432 if (code == TYPE_CODE_FLT)
1434 if (len == sizeof (float))
1435 * (float *) VALUE_CONTENTS_RAW (val) = num;
1436 else if (len == sizeof (double))
1437 * (double *) VALUE_CONTENTS_RAW (val) = num;
1439 error ("Floating type encountered with unexpected data length.");
1442 error ("Unexpected type encountered for floating constant.");
1444 /* num was in host byte order. So now put the value's contents
1445 into target byte order. */
1446 SWAP_TARGET_AND_HOST (VALUE_CONTENTS_RAW (val), len);
1451 /* Deal with the value that is "about to be returned". */
1453 /* Return the value that a function returning now
1454 would be returning to its caller, assuming its type is VALTYPE.
1455 RETBUF is where we look for what ought to be the contents
1456 of the registers (in raw form). This is because it is often
1457 desirable to restore old values to those registers
1458 after saving the contents of interest, and then call
1459 this function using the saved values.
1460 struct_return is non-zero when the function in question is
1461 using the structure return conventions on the machine in question;
1462 0 when it is using the value returning conventions (this often
1463 means returning pointer to where structure is vs. returning value). */
1466 value_being_returned (valtype, retbuf, struct_return)
1467 register struct type *valtype;
1468 char retbuf[REGISTER_BYTES];
1475 #if defined (EXTRACT_STRUCT_VALUE_ADDRESS)
1476 /* If this is not defined, just use EXTRACT_RETURN_VALUE instead. */
1477 if (struct_return) {
1478 addr = EXTRACT_STRUCT_VALUE_ADDRESS (retbuf);
1480 error ("Function return value unknown");
1481 return value_at (valtype, addr);
1485 val = allocate_value (valtype);
1486 EXTRACT_RETURN_VALUE (valtype, retbuf, VALUE_CONTENTS_RAW (val));
1491 /* Should we use EXTRACT_STRUCT_VALUE_ADDRESS instead of
1492 EXTRACT_RETURN_VALUE? GCC_P is true if compiled with gcc
1493 and TYPE is the type (which is known to be struct, union or array).
1495 On most machines, the struct convention is used unless we are
1496 using gcc and the type is of a special size. */
1497 /* As of about 31 Mar 93, GCC was changed to be compatible with the
1498 native compiler. GCC 2.3.3 was the last release that did it the
1499 old way. Since gcc2_compiled was not changed, we have no
1500 way to correctly win in all cases, so we just do the right thing
1501 for gcc1 and for gcc2 after this change. Thus it loses for gcc
1502 2.0-2.3.3. This is somewhat unfortunate, but changing gcc2_compiled
1503 would cause more chaos than dealing with some struct returns being
1505 #if !defined (USE_STRUCT_CONVENTION)
1506 #define USE_STRUCT_CONVENTION(gcc_p, type)\
1507 (!((gcc_p == 1) && (TYPE_LENGTH (value_type) == 1 \
1508 || TYPE_LENGTH (value_type) == 2 \
1509 || TYPE_LENGTH (value_type) == 4 \
1510 || TYPE_LENGTH (value_type) == 8 \
1515 /* Return true if the function specified is using the structure returning
1516 convention on this machine to return arguments, or 0 if it is using
1517 the value returning convention. FUNCTION is the value representing
1518 the function, FUNCADDR is the address of the function, and VALUE_TYPE
1519 is the type returned by the function. GCC_P is nonzero if compiled
1523 using_struct_return (function, funcaddr, value_type, gcc_p)
1526 struct type *value_type;
1530 register enum type_code code = TYPE_CODE (value_type);
1532 if (code == TYPE_CODE_ERROR)
1533 error ("Function return type unknown.");
1535 if (code == TYPE_CODE_STRUCT ||
1536 code == TYPE_CODE_UNION ||
1537 code == TYPE_CODE_ARRAY)
1538 return USE_STRUCT_CONVENTION (gcc_p, value_type);
1543 /* Store VAL so it will be returned if a function returns now.
1544 Does not verify that VAL's type matches what the current
1545 function wants to return. */
1548 set_return_value (val)
1551 register enum type_code code = TYPE_CODE (VALUE_TYPE (val));
1555 if (code == TYPE_CODE_ERROR)
1556 error ("Function return type unknown.");
1558 if ( code == TYPE_CODE_STRUCT
1559 || code == TYPE_CODE_UNION) /* FIXME, implement struct return. */
1560 error ("GDB does not support specifying a struct or union return value.");
1562 /* FIXME, this is bogus. We don't know what the return conventions
1563 are, or how values should be promoted.... */
1564 if (code == TYPE_CODE_FLT)
1566 dbuf = value_as_double (val);
1568 STORE_RETURN_VALUE (VALUE_TYPE (val), (char *)&dbuf);
1572 lbuf = value_as_long (val);
1573 STORE_RETURN_VALUE (VALUE_TYPE (val), (char *)&lbuf);
1578 _initialize_values ()
1580 add_cmd ("convenience", no_class, show_convenience,
1581 "Debugger convenience (\"$foo\") variables.\n\
1582 These variables are created when you assign them values;\n\
1583 thus, \"print $foo=1\" gives \"$foo\" the value 1. Values may be any type.\n\n\
1584 A few convenience variables are given values automatically:\n\
1585 \"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
1586 \"$__\" holds the contents of the last address examined with \"x\".",
1589 add_cmd ("values", no_class, show_values,
1590 "Elements of value history around item number IDX (or last ten).",