1 /* Support routines for manipulating internal types for GDB.
2 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
4 Contributed by Cygnus Support, using pieces from other GDB modules.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
24 #include "gdb_string.h"
30 #include "expression.h"
35 #include "complaints.h"
39 #include "gdb_assert.h"
41 /* These variables point to the objects
42 representing the predefined C data types. */
44 struct type *builtin_type_void;
45 struct type *builtin_type_char;
46 struct type *builtin_type_true_char;
47 struct type *builtin_type_short;
48 struct type *builtin_type_int;
49 struct type *builtin_type_long;
50 struct type *builtin_type_long_long;
51 struct type *builtin_type_signed_char;
52 struct type *builtin_type_unsigned_char;
53 struct type *builtin_type_unsigned_short;
54 struct type *builtin_type_unsigned_int;
55 struct type *builtin_type_unsigned_long;
56 struct type *builtin_type_unsigned_long_long;
57 struct type *builtin_type_float;
58 struct type *builtin_type_double;
59 struct type *builtin_type_long_double;
60 struct type *builtin_type_complex;
61 struct type *builtin_type_double_complex;
62 struct type *builtin_type_string;
63 struct type *builtin_type_int8;
64 struct type *builtin_type_uint8;
65 struct type *builtin_type_int16;
66 struct type *builtin_type_uint16;
67 struct type *builtin_type_int32;
68 struct type *builtin_type_uint32;
69 struct type *builtin_type_int64;
70 struct type *builtin_type_uint64;
71 struct type *builtin_type_int128;
72 struct type *builtin_type_uint128;
73 struct type *builtin_type_bool;
75 /* 128 bit long vector types */
76 struct type *builtin_type_v2_double;
77 struct type *builtin_type_v4_float;
78 struct type *builtin_type_v2_int64;
79 struct type *builtin_type_v4_int32;
80 struct type *builtin_type_v8_int16;
81 struct type *builtin_type_v16_int8;
82 /* 64 bit long vector types */
83 struct type *builtin_type_v2_float;
84 struct type *builtin_type_v2_int32;
85 struct type *builtin_type_v4_int16;
86 struct type *builtin_type_v8_int8;
88 struct type *builtin_type_v4sf;
89 struct type *builtin_type_v4si;
90 struct type *builtin_type_v16qi;
91 struct type *builtin_type_v8qi;
92 struct type *builtin_type_v8hi;
93 struct type *builtin_type_v4hi;
94 struct type *builtin_type_v2si;
95 struct type *builtin_type_vec64;
96 struct type *builtin_type_vec64i;
97 struct type *builtin_type_vec128;
98 struct type *builtin_type_vec128i;
99 struct type *builtin_type_ieee_single_big;
100 struct type *builtin_type_ieee_single_little;
101 struct type *builtin_type_ieee_double_big;
102 struct type *builtin_type_ieee_double_little;
103 struct type *builtin_type_ieee_double_littlebyte_bigword;
104 struct type *builtin_type_i387_ext;
105 struct type *builtin_type_m68881_ext;
106 struct type *builtin_type_i960_ext;
107 struct type *builtin_type_m88110_ext;
108 struct type *builtin_type_m88110_harris_ext;
109 struct type *builtin_type_arm_ext_big;
110 struct type *builtin_type_arm_ext_littlebyte_bigword;
111 struct type *builtin_type_ia64_spill_big;
112 struct type *builtin_type_ia64_spill_little;
113 struct type *builtin_type_ia64_quad_big;
114 struct type *builtin_type_ia64_quad_little;
115 struct type *builtin_type_void_data_ptr;
116 struct type *builtin_type_void_func_ptr;
117 struct type *builtin_type_CORE_ADDR;
118 struct type *builtin_type_bfd_vma;
120 int opaque_type_resolution = 1;
121 int overload_debug = 0;
127 }; /* maximum extension is 128! FIXME */
129 static void add_name (struct extra *, char *);
130 static void add_mangled_type (struct extra *, struct type *);
132 static void cfront_mangle_name (struct type *, int, int);
134 static void print_bit_vector (B_TYPE *, int);
135 static void print_arg_types (struct field *, int, int);
136 static void dump_fn_fieldlists (struct type *, int);
137 static void print_cplus_stuff (struct type *, int);
138 static void virtual_base_list_aux (struct type *dclass);
141 /* Alloc a new type structure and fill it with some defaults. If
142 OBJFILE is non-NULL, then allocate the space for the type structure
143 in that objfile's type_obstack. Otherwise allocate the new type structure
144 by xmalloc () (for permanent types). */
147 alloc_type (struct objfile *objfile)
149 register struct type *type;
151 /* Alloc the structure and start off with all fields zeroed. */
155 type = xmalloc (sizeof (struct type));
156 memset (type, 0, sizeof (struct type));
157 TYPE_MAIN_TYPE (type) = xmalloc (sizeof (struct main_type));
161 type = obstack_alloc (&objfile->type_obstack,
162 sizeof (struct type));
163 memset (type, 0, sizeof (struct type));
164 TYPE_MAIN_TYPE (type) = obstack_alloc (&objfile->type_obstack,
165 sizeof (struct main_type));
166 OBJSTAT (objfile, n_types++);
168 memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
170 /* Initialize the fields that might not be zero. */
172 TYPE_CODE (type) = TYPE_CODE_UNDEF;
173 TYPE_OBJFILE (type) = objfile;
174 TYPE_VPTR_FIELDNO (type) = -1;
175 TYPE_CHAIN (type) = type; /* Chain back to itself. */
180 /* Alloc a new type instance structure, fill it with some defaults,
181 and point it at OLDTYPE. Allocate the new type instance from the
182 same place as OLDTYPE. */
185 alloc_type_instance (struct type *oldtype)
189 /* Allocate the structure. */
191 if (TYPE_OBJFILE (oldtype) == NULL)
193 type = xmalloc (sizeof (struct type));
194 memset (type, 0, sizeof (struct type));
198 type = obstack_alloc (&TYPE_OBJFILE (oldtype)->type_obstack,
199 sizeof (struct type));
200 memset (type, 0, sizeof (struct type));
202 TYPE_MAIN_TYPE (type) = TYPE_MAIN_TYPE (oldtype);
204 TYPE_CHAIN (type) = type; /* Chain back to itself for now. */
209 /* Clear all remnants of the previous type at TYPE, in preparation for
210 replacing it with something else. */
212 smash_type (struct type *type)
214 memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
216 /* For now, delete the rings. */
217 TYPE_CHAIN (type) = type;
219 /* For now, leave the pointer/reference types alone. */
222 /* Lookup a pointer to a type TYPE. TYPEPTR, if nonzero, points
223 to a pointer to memory where the pointer type should be stored.
224 If *TYPEPTR is zero, update it to point to the pointer type we return.
225 We allocate new memory if needed. */
228 make_pointer_type (struct type *type, struct type **typeptr)
230 register struct type *ntype; /* New type */
231 struct objfile *objfile;
233 ntype = TYPE_POINTER_TYPE (type);
238 return ntype; /* Don't care about alloc, and have new type. */
239 else if (*typeptr == 0)
241 *typeptr = ntype; /* Tracking alloc, and we have new type. */
246 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
248 ntype = alloc_type (TYPE_OBJFILE (type));
253 /* We have storage, but need to reset it. */
256 objfile = TYPE_OBJFILE (ntype);
258 TYPE_OBJFILE (ntype) = objfile;
261 TYPE_TARGET_TYPE (ntype) = type;
262 TYPE_POINTER_TYPE (type) = ntype;
264 /* FIXME! Assume the machine has only one representation for pointers! */
266 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
267 TYPE_CODE (ntype) = TYPE_CODE_PTR;
269 /* Mark pointers as unsigned. The target converts between pointers
270 and addresses (CORE_ADDRs) using POINTER_TO_ADDRESS() and
271 ADDRESS_TO_POINTER(). */
272 TYPE_FLAGS (ntype) |= TYPE_FLAG_UNSIGNED;
274 if (!TYPE_POINTER_TYPE (type)) /* Remember it, if don't have one. */
275 TYPE_POINTER_TYPE (type) = ntype;
280 /* Given a type TYPE, return a type of pointers to that type.
281 May need to construct such a type if this is the first use. */
284 lookup_pointer_type (struct type *type)
286 return make_pointer_type (type, (struct type **) 0);
289 /* Lookup a C++ `reference' to a type TYPE. TYPEPTR, if nonzero, points
290 to a pointer to memory where the reference type should be stored.
291 If *TYPEPTR is zero, update it to point to the reference type we return.
292 We allocate new memory if needed. */
295 make_reference_type (struct type *type, struct type **typeptr)
297 register struct type *ntype; /* New type */
298 struct objfile *objfile;
300 ntype = TYPE_REFERENCE_TYPE (type);
305 return ntype; /* Don't care about alloc, and have new type. */
306 else if (*typeptr == 0)
308 *typeptr = ntype; /* Tracking alloc, and we have new type. */
313 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
315 ntype = alloc_type (TYPE_OBJFILE (type));
320 /* We have storage, but need to reset it. */
323 objfile = TYPE_OBJFILE (ntype);
325 TYPE_OBJFILE (ntype) = objfile;
328 TYPE_TARGET_TYPE (ntype) = type;
329 TYPE_REFERENCE_TYPE (type) = ntype;
331 /* FIXME! Assume the machine has only one representation for references,
332 and that it matches the (only) representation for pointers! */
334 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
335 TYPE_CODE (ntype) = TYPE_CODE_REF;
337 if (!TYPE_REFERENCE_TYPE (type)) /* Remember it, if don't have one. */
338 TYPE_REFERENCE_TYPE (type) = ntype;
343 /* Same as above, but caller doesn't care about memory allocation details. */
346 lookup_reference_type (struct type *type)
348 return make_reference_type (type, (struct type **) 0);
351 /* Lookup a function type that returns type TYPE. TYPEPTR, if nonzero, points
352 to a pointer to memory where the function type should be stored.
353 If *TYPEPTR is zero, update it to point to the function type we return.
354 We allocate new memory if needed. */
357 make_function_type (struct type *type, struct type **typeptr)
359 register struct type *ntype; /* New type */
360 struct objfile *objfile;
362 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
364 ntype = alloc_type (TYPE_OBJFILE (type));
369 /* We have storage, but need to reset it. */
372 objfile = TYPE_OBJFILE (ntype);
374 TYPE_OBJFILE (ntype) = objfile;
377 TYPE_TARGET_TYPE (ntype) = type;
379 TYPE_LENGTH (ntype) = 1;
380 TYPE_CODE (ntype) = TYPE_CODE_FUNC;
386 /* Given a type TYPE, return a type of functions that return that type.
387 May need to construct such a type if this is the first use. */
390 lookup_function_type (struct type *type)
392 return make_function_type (type, (struct type **) 0);
395 /* Identify address space identifier by name --
396 return the integer flag defined in gdbtypes.h. */
398 address_space_name_to_int (char *space_identifier)
400 struct gdbarch *gdbarch = current_gdbarch;
402 /* Check for known address space delimiters. */
403 if (!strcmp (space_identifier, "code"))
404 return TYPE_FLAG_CODE_SPACE;
405 else if (!strcmp (space_identifier, "data"))
406 return TYPE_FLAG_DATA_SPACE;
407 else if (gdbarch_address_class_name_to_type_flags_p (gdbarch)
408 && gdbarch_address_class_name_to_type_flags (gdbarch,
413 error ("Unknown address space specifier: \"%s\"", space_identifier);
416 /* Identify address space identifier by integer flag as defined in
417 gdbtypes.h -- return the string version of the adress space name. */
420 address_space_int_to_name (int space_flag)
422 struct gdbarch *gdbarch = current_gdbarch;
423 if (space_flag & TYPE_FLAG_CODE_SPACE)
425 else if (space_flag & TYPE_FLAG_DATA_SPACE)
427 else if ((space_flag & TYPE_FLAG_ADDRESS_CLASS_ALL)
428 && gdbarch_address_class_type_flags_to_name_p (gdbarch))
429 return gdbarch_address_class_type_flags_to_name (gdbarch, space_flag);
434 /* Create a new type with instance flags NEW_FLAGS, based on TYPE.
435 If STORAGE is non-NULL, create the new type instance there. */
438 make_qualified_type (struct type *type, int new_flags,
439 struct type *storage)
445 if (TYPE_INSTANCE_FLAGS (ntype) == new_flags)
447 ntype = TYPE_CHAIN (ntype);
448 } while (ntype != type);
450 /* Create a new type instance. */
452 ntype = alloc_type_instance (type);
456 TYPE_MAIN_TYPE (ntype) = TYPE_MAIN_TYPE (type);
457 TYPE_CHAIN (ntype) = ntype;
460 /* Pointers or references to the original type are not relevant to
462 TYPE_POINTER_TYPE (ntype) = (struct type *) 0;
463 TYPE_REFERENCE_TYPE (ntype) = (struct type *) 0;
465 /* Chain the new qualified type to the old type. */
466 TYPE_CHAIN (ntype) = TYPE_CHAIN (type);
467 TYPE_CHAIN (type) = ntype;
469 /* Now set the instance flags and return the new type. */
470 TYPE_INSTANCE_FLAGS (ntype) = new_flags;
475 /* Make an address-space-delimited variant of a type -- a type that
476 is identical to the one supplied except that it has an address
477 space attribute attached to it (such as "code" or "data").
479 The space attributes "code" and "data" are for Harvard architectures.
480 The address space attributes are for architectures which have
481 alternately sized pointers or pointers with alternate representations. */
484 make_type_with_address_space (struct type *type, int space_flag)
487 int new_flags = ((TYPE_INSTANCE_FLAGS (type)
488 & ~(TYPE_FLAG_CODE_SPACE | TYPE_FLAG_DATA_SPACE
489 | TYPE_FLAG_ADDRESS_CLASS_ALL))
492 return make_qualified_type (type, new_flags, NULL);
495 /* Make a "c-v" variant of a type -- a type that is identical to the
496 one supplied except that it may have const or volatile attributes
497 CNST is a flag for setting the const attribute
498 VOLTL is a flag for setting the volatile attribute
499 TYPE is the base type whose variant we are creating.
500 TYPEPTR, if nonzero, points
501 to a pointer to memory where the reference type should be stored.
502 If *TYPEPTR is zero, update it to point to the reference type we return.
503 We allocate new memory if needed. */
506 make_cv_type (int cnst, int voltl, struct type *type, struct type **typeptr)
508 register struct type *ntype; /* New type */
509 register struct type *tmp_type = type; /* tmp type */
510 struct objfile *objfile;
512 int new_flags = (TYPE_INSTANCE_FLAGS (type)
513 & ~(TYPE_FLAG_CONST | TYPE_FLAG_VOLATILE));
516 new_flags |= TYPE_FLAG_CONST;
519 new_flags |= TYPE_FLAG_VOLATILE;
521 if (typeptr && *typeptr != NULL)
523 /* Objfile is per-core-type. This const-qualified type had best
524 belong to the same objfile as the type it is qualifying, unless
525 we are overwriting a stub type, in which case the safest thing
526 to do is to copy the core type into the new objfile. */
528 gdb_assert (TYPE_OBJFILE (*typeptr) == TYPE_OBJFILE (type)
529 || TYPE_STUB (*typeptr));
530 if (TYPE_OBJFILE (*typeptr) != TYPE_OBJFILE (type))
532 TYPE_MAIN_TYPE (*typeptr)
533 = TYPE_ALLOC (*typeptr, sizeof (struct main_type));
534 *TYPE_MAIN_TYPE (*typeptr)
535 = *TYPE_MAIN_TYPE (type);
539 ntype = make_qualified_type (type, new_flags, typeptr ? *typeptr : NULL);
547 /* Replace the contents of ntype with the type *type. This changes the
548 contents, rather than the pointer for TYPE_MAIN_TYPE (ntype); thus
549 the changes are propogated to all types in the TYPE_CHAIN.
551 In order to build recursive types, it's inevitable that we'll need
552 to update types in place --- but this sort of indiscriminate
553 smashing is ugly, and needs to be replaced with something more
554 controlled. TYPE_MAIN_TYPE is a step in this direction; it's not
555 clear if more steps are needed. */
557 replace_type (struct type *ntype, struct type *type)
559 struct type *cv_chain, *as_chain, *ptr, *ref;
561 *TYPE_MAIN_TYPE (ntype) = *TYPE_MAIN_TYPE (type);
563 /* Assert that the two types have equivalent instance qualifiers.
564 This should be true for at least all of our debug readers. */
565 gdb_assert (TYPE_INSTANCE_FLAGS (ntype) == TYPE_INSTANCE_FLAGS (type));
568 /* Implement direct support for MEMBER_TYPE in GNU C++.
569 May need to construct such a type if this is the first use.
570 The TYPE is the type of the member. The DOMAIN is the type
571 of the aggregate that the member belongs to. */
574 lookup_member_type (struct type *type, struct type *domain)
576 register struct type *mtype;
578 mtype = alloc_type (TYPE_OBJFILE (type));
579 smash_to_member_type (mtype, domain, type);
583 /* Allocate a stub method whose return type is TYPE.
584 This apparently happens for speed of symbol reading, since parsing
585 out the arguments to the method is cpu-intensive, the way we are doing
586 it. So, we will fill in arguments later.
587 This always returns a fresh type. */
590 allocate_stub_method (struct type *type)
594 mtype = init_type (TYPE_CODE_METHOD, 1, TYPE_FLAG_STUB, NULL,
595 TYPE_OBJFILE (type));
596 TYPE_TARGET_TYPE (mtype) = type;
597 /* _DOMAIN_TYPE (mtype) = unknown yet */
601 /* Create a range type using either a blank type supplied in RESULT_TYPE,
602 or creating a new type, inheriting the objfile from INDEX_TYPE.
604 Indices will be of type INDEX_TYPE, and will range from LOW_BOUND to
605 HIGH_BOUND, inclusive.
607 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
608 sure it is TYPE_CODE_UNDEF before we bash it into a range type? */
611 create_range_type (struct type *result_type, struct type *index_type,
612 int low_bound, int high_bound)
614 if (result_type == NULL)
616 result_type = alloc_type (TYPE_OBJFILE (index_type));
618 TYPE_CODE (result_type) = TYPE_CODE_RANGE;
619 TYPE_TARGET_TYPE (result_type) = index_type;
620 if (TYPE_STUB (index_type))
621 TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
623 TYPE_LENGTH (result_type) = TYPE_LENGTH (check_typedef (index_type));
624 TYPE_NFIELDS (result_type) = 2;
625 TYPE_FIELDS (result_type) = (struct field *)
626 TYPE_ALLOC (result_type, 2 * sizeof (struct field));
627 memset (TYPE_FIELDS (result_type), 0, 2 * sizeof (struct field));
628 TYPE_FIELD_BITPOS (result_type, 0) = low_bound;
629 TYPE_FIELD_BITPOS (result_type, 1) = high_bound;
630 TYPE_FIELD_TYPE (result_type, 0) = builtin_type_int; /* FIXME */
631 TYPE_FIELD_TYPE (result_type, 1) = builtin_type_int; /* FIXME */
634 TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
636 return (result_type);
639 /* Set *LOWP and *HIGHP to the lower and upper bounds of discrete type TYPE.
640 Return 1 of type is a range type, 0 if it is discrete (and bounds
641 will fit in LONGEST), or -1 otherwise. */
644 get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp)
646 CHECK_TYPEDEF (type);
647 switch (TYPE_CODE (type))
649 case TYPE_CODE_RANGE:
650 *lowp = TYPE_LOW_BOUND (type);
651 *highp = TYPE_HIGH_BOUND (type);
654 if (TYPE_NFIELDS (type) > 0)
656 /* The enums may not be sorted by value, so search all
660 *lowp = *highp = TYPE_FIELD_BITPOS (type, 0);
661 for (i = 0; i < TYPE_NFIELDS (type); i++)
663 if (TYPE_FIELD_BITPOS (type, i) < *lowp)
664 *lowp = TYPE_FIELD_BITPOS (type, i);
665 if (TYPE_FIELD_BITPOS (type, i) > *highp)
666 *highp = TYPE_FIELD_BITPOS (type, i);
669 /* Set unsigned indicator if warranted. */
672 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
686 if (TYPE_LENGTH (type) > sizeof (LONGEST)) /* Too big */
688 if (!TYPE_UNSIGNED (type))
690 *lowp = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
694 /* ... fall through for unsigned ints ... */
697 /* This round-about calculation is to avoid shifting by
698 TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
699 if TYPE_LENGTH (type) == sizeof (LONGEST). */
700 *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
701 *highp = (*highp - 1) | *highp;
708 /* Create an array type using either a blank type supplied in RESULT_TYPE,
709 or creating a new type, inheriting the objfile from RANGE_TYPE.
711 Elements will be of type ELEMENT_TYPE, the indices will be of type
714 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
715 sure it is TYPE_CODE_UNDEF before we bash it into an array type? */
718 create_array_type (struct type *result_type, struct type *element_type,
719 struct type *range_type)
721 LONGEST low_bound, high_bound;
723 if (result_type == NULL)
725 result_type = alloc_type (TYPE_OBJFILE (range_type));
727 TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
728 TYPE_TARGET_TYPE (result_type) = element_type;
729 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
730 low_bound = high_bound = 0;
731 CHECK_TYPEDEF (element_type);
732 TYPE_LENGTH (result_type) =
733 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
734 TYPE_NFIELDS (result_type) = 1;
735 TYPE_FIELDS (result_type) =
736 (struct field *) TYPE_ALLOC (result_type, sizeof (struct field));
737 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
738 TYPE_FIELD_TYPE (result_type, 0) = range_type;
739 TYPE_VPTR_FIELDNO (result_type) = -1;
741 /* TYPE_FLAG_TARGET_STUB will take care of zero length arrays */
742 if (TYPE_LENGTH (result_type) == 0)
743 TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
745 return (result_type);
748 /* Create a string type using either a blank type supplied in RESULT_TYPE,
749 or creating a new type. String types are similar enough to array of
750 char types that we can use create_array_type to build the basic type
751 and then bash it into a string type.
753 For fixed length strings, the range type contains 0 as the lower
754 bound and the length of the string minus one as the upper bound.
756 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
757 sure it is TYPE_CODE_UNDEF before we bash it into a string type? */
760 create_string_type (struct type *result_type, struct type *range_type)
762 result_type = create_array_type (result_type,
763 *current_language->string_char_type,
765 TYPE_CODE (result_type) = TYPE_CODE_STRING;
766 return (result_type);
770 create_set_type (struct type *result_type, struct type *domain_type)
772 LONGEST low_bound, high_bound, bit_length;
773 if (result_type == NULL)
775 result_type = alloc_type (TYPE_OBJFILE (domain_type));
777 TYPE_CODE (result_type) = TYPE_CODE_SET;
778 TYPE_NFIELDS (result_type) = 1;
779 TYPE_FIELDS (result_type) = (struct field *)
780 TYPE_ALLOC (result_type, 1 * sizeof (struct field));
781 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
783 if (!TYPE_STUB (domain_type))
785 if (get_discrete_bounds (domain_type, &low_bound, &high_bound) < 0)
786 low_bound = high_bound = 0;
787 bit_length = high_bound - low_bound + 1;
788 TYPE_LENGTH (result_type)
789 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
791 TYPE_FIELD_TYPE (result_type, 0) = domain_type;
794 TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
796 return (result_type);
799 /* Construct and return a type of the form:
800 struct NAME { ELT_TYPE ELT_NAME[N]; }
801 We use these types for SIMD registers. For example, the type of
802 the SSE registers on the late x86-family processors is:
803 struct __builtin_v4sf { float f[4]; }
804 built by the function call:
805 init_simd_type ("__builtin_v4sf", builtin_type_float, "f", 4)
806 The type returned is a permanent type, allocated using malloc; it
807 doesn't live in any objfile's obstack. */
809 init_simd_type (char *name,
810 struct type *elt_type,
814 struct type *simd_type;
815 struct type *array_type;
817 simd_type = init_composite_type (name, TYPE_CODE_STRUCT);
818 array_type = create_array_type (0, elt_type,
819 create_range_type (0, builtin_type_int,
821 append_composite_type_field (simd_type, elt_name, array_type);
826 init_vector_type (struct type *elt_type, int n)
828 struct type *array_type;
830 array_type = create_array_type (0, elt_type,
831 create_range_type (0, builtin_type_int,
833 TYPE_FLAGS (array_type) |= TYPE_FLAG_VECTOR;
838 build_builtin_type_vec64 (void)
840 /* Construct a type for the 64 bit registers. The type we're
843 union __gdb_builtin_type_vec64
855 t = init_composite_type ("__gdb_builtin_type_vec64", TYPE_CODE_UNION);
856 append_composite_type_field (t, "uint64", builtin_type_int64);
857 append_composite_type_field (t, "v2_float", builtin_type_v2_float);
858 append_composite_type_field (t, "v2_int32", builtin_type_v2_int32);
859 append_composite_type_field (t, "v4_int16", builtin_type_v4_int16);
860 append_composite_type_field (t, "v8_int8", builtin_type_v8_int8);
862 TYPE_FLAGS (t) |= TYPE_FLAG_VECTOR;
863 TYPE_NAME (t) = "builtin_type_vec64";
868 build_builtin_type_vec64i (void)
870 /* Construct a type for the 64 bit registers. The type we're
873 union __gdb_builtin_type_vec64i
884 t = init_composite_type ("__gdb_builtin_type_vec64i", TYPE_CODE_UNION);
885 append_composite_type_field (t, "uint64", builtin_type_int64);
886 append_composite_type_field (t, "v2_int32", builtin_type_v2_int32);
887 append_composite_type_field (t, "v4_int16", builtin_type_v4_int16);
888 append_composite_type_field (t, "v8_int8", builtin_type_v8_int8);
890 TYPE_FLAGS (t) |= TYPE_FLAG_VECTOR;
891 TYPE_NAME (t) = "builtin_type_vec64i";
896 build_builtin_type_vec128 (void)
898 /* Construct a type for the 128 bit registers. The type we're
901 union __gdb_builtin_type_vec128
913 t = init_composite_type ("__gdb_builtin_type_vec128", TYPE_CODE_UNION);
914 append_composite_type_field (t, "uint128", builtin_type_int128);
915 append_composite_type_field (t, "v4_float", builtin_type_v4_float);
916 append_composite_type_field (t, "v4_int32", builtin_type_v4_int32);
917 append_composite_type_field (t, "v8_int16", builtin_type_v8_int16);
918 append_composite_type_field (t, "v16_int8", builtin_type_v16_int8);
920 TYPE_FLAGS (t) |= TYPE_FLAG_VECTOR;
921 TYPE_NAME (t) = "builtin_type_vec128";
926 build_builtin_type_vec128i (void)
928 /* 128-bit Intel SIMD registers */
931 t = init_composite_type ("__gdb_builtin_type_vec128i", TYPE_CODE_UNION);
932 append_composite_type_field (t, "v4_float", builtin_type_v4_float);
933 append_composite_type_field (t, "v2_double", builtin_type_v2_double);
934 append_composite_type_field (t, "v16_int8", builtin_type_v16_int8);
935 append_composite_type_field (t, "v8_int16", builtin_type_v8_int16);
936 append_composite_type_field (t, "v4_int32", builtin_type_v4_int32);
937 append_composite_type_field (t, "v2_int64", builtin_type_v2_int64);
938 append_composite_type_field (t, "uint128", builtin_type_int128);
940 TYPE_FLAGS (t) |= TYPE_FLAG_VECTOR;
941 TYPE_NAME (t) = "builtin_type_vec128i";
945 /* Smash TYPE to be a type of members of DOMAIN with type TO_TYPE.
946 A MEMBER is a wierd thing -- it amounts to a typed offset into
947 a struct, e.g. "an int at offset 8". A MEMBER TYPE doesn't
948 include the offset (that's the value of the MEMBER itself), but does
949 include the structure type into which it points (for some reason).
951 When "smashing" the type, we preserve the objfile that the
952 old type pointed to, since we aren't changing where the type is actually
956 smash_to_member_type (struct type *type, struct type *domain,
957 struct type *to_type)
959 struct objfile *objfile;
961 objfile = TYPE_OBJFILE (type);
964 TYPE_OBJFILE (type) = objfile;
965 TYPE_TARGET_TYPE (type) = to_type;
966 TYPE_DOMAIN_TYPE (type) = domain;
967 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
968 TYPE_CODE (type) = TYPE_CODE_MEMBER;
971 /* Smash TYPE to be a type of method of DOMAIN with type TO_TYPE.
972 METHOD just means `function that gets an extra "this" argument'.
974 When "smashing" the type, we preserve the objfile that the
975 old type pointed to, since we aren't changing where the type is actually
979 smash_to_method_type (struct type *type, struct type *domain,
980 struct type *to_type, struct field *args,
981 int nargs, int varargs)
983 struct objfile *objfile;
985 objfile = TYPE_OBJFILE (type);
988 TYPE_OBJFILE (type) = objfile;
989 TYPE_TARGET_TYPE (type) = to_type;
990 TYPE_DOMAIN_TYPE (type) = domain;
991 TYPE_FIELDS (type) = args;
992 TYPE_NFIELDS (type) = nargs;
994 TYPE_FLAGS (type) |= TYPE_FLAG_VARARGS;
995 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
996 TYPE_CODE (type) = TYPE_CODE_METHOD;
999 /* Return a typename for a struct/union/enum type without "struct ",
1000 "union ", or "enum ". If the type has a NULL name, return NULL. */
1003 type_name_no_tag (register const struct type *type)
1005 if (TYPE_TAG_NAME (type) != NULL)
1006 return TYPE_TAG_NAME (type);
1008 /* Is there code which expects this to return the name if there is no
1009 tag name? My guess is that this is mainly used for C++ in cases where
1010 the two will always be the same. */
1011 return TYPE_NAME (type);
1014 /* Lookup a primitive type named NAME.
1015 Return zero if NAME is not a primitive type. */
1018 lookup_primitive_typename (char *name)
1020 struct type **const *p;
1022 for (p = current_language->la_builtin_type_vector; *p != NULL; p++)
1024 if (STREQ (TYPE_NAME (**p), name))
1032 /* Lookup a typedef or primitive type named NAME,
1033 visible in lexical block BLOCK.
1034 If NOERR is nonzero, return zero if NAME is not suitably defined. */
1037 lookup_typename (char *name, struct block *block, int noerr)
1039 register struct symbol *sym;
1040 register struct type *tmp;
1042 sym = lookup_symbol (name, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
1043 if (sym == NULL || SYMBOL_CLASS (sym) != LOC_TYPEDEF)
1045 tmp = lookup_primitive_typename (name);
1050 else if (!tmp && noerr)
1056 error ("No type named %s.", name);
1059 return (SYMBOL_TYPE (sym));
1063 lookup_unsigned_typename (char *name)
1065 char *uns = alloca (strlen (name) + 10);
1067 strcpy (uns, "unsigned ");
1068 strcpy (uns + 9, name);
1069 return (lookup_typename (uns, (struct block *) NULL, 0));
1073 lookup_signed_typename (char *name)
1076 char *uns = alloca (strlen (name) + 8);
1078 strcpy (uns, "signed ");
1079 strcpy (uns + 7, name);
1080 t = lookup_typename (uns, (struct block *) NULL, 1);
1081 /* If we don't find "signed FOO" just try again with plain "FOO". */
1084 return lookup_typename (name, (struct block *) NULL, 0);
1087 /* Lookup a structure type named "struct NAME",
1088 visible in lexical block BLOCK. */
1091 lookup_struct (char *name, struct block *block)
1093 register struct symbol *sym;
1095 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
1096 (struct symtab **) NULL);
1100 error ("No struct type named %s.", name);
1102 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
1104 error ("This context has class, union or enum %s, not a struct.", name);
1106 return (SYMBOL_TYPE (sym));
1109 /* Lookup a union type named "union NAME",
1110 visible in lexical block BLOCK. */
1113 lookup_union (char *name, struct block *block)
1115 register struct symbol *sym;
1118 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
1119 (struct symtab **) NULL);
1122 error ("No union type named %s.", name);
1124 t = SYMBOL_TYPE (sym);
1126 if (TYPE_CODE (t) == TYPE_CODE_UNION)
1129 /* C++ unions may come out with TYPE_CODE_CLASS, but we look at
1130 * a further "declared_type" field to discover it is really a union.
1132 if (HAVE_CPLUS_STRUCT (t))
1133 if (TYPE_DECLARED_TYPE (t) == DECLARED_TYPE_UNION)
1136 /* If we get here, it's not a union */
1137 error ("This context has class, struct or enum %s, not a union.", name);
1141 /* Lookup an enum type named "enum NAME",
1142 visible in lexical block BLOCK. */
1145 lookup_enum (char *name, struct block *block)
1147 register struct symbol *sym;
1149 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
1150 (struct symtab **) NULL);
1153 error ("No enum type named %s.", name);
1155 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_ENUM)
1157 error ("This context has class, struct or union %s, not an enum.", name);
1159 return (SYMBOL_TYPE (sym));
1162 /* Lookup a template type named "template NAME<TYPE>",
1163 visible in lexical block BLOCK. */
1166 lookup_template_type (char *name, struct type *type, struct block *block)
1169 char *nam = (char *) alloca (strlen (name) + strlen (TYPE_NAME (type)) + 4);
1172 strcat (nam, TYPE_NAME (type));
1173 strcat (nam, " >"); /* FIXME, extra space still introduced in gcc? */
1175 sym = lookup_symbol (nam, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
1179 error ("No template type named %s.", name);
1181 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
1183 error ("This context has class, union or enum %s, not a struct.", name);
1185 return (SYMBOL_TYPE (sym));
1188 /* Given a type TYPE, lookup the type of the component of type named NAME.
1190 TYPE can be either a struct or union, or a pointer or reference to a struct or
1191 union. If it is a pointer or reference, its target type is automatically used.
1192 Thus '.' and '->' are interchangable, as specified for the definitions of the
1193 expression element types STRUCTOP_STRUCT and STRUCTOP_PTR.
1195 If NOERR is nonzero, return zero if NAME is not suitably defined.
1196 If NAME is the name of a baseclass type, return that type. */
1199 lookup_struct_elt_type (struct type *type, char *name, int noerr)
1205 CHECK_TYPEDEF (type);
1206 if (TYPE_CODE (type) != TYPE_CODE_PTR
1207 && TYPE_CODE (type) != TYPE_CODE_REF)
1209 type = TYPE_TARGET_TYPE (type);
1212 if (TYPE_CODE (type) != TYPE_CODE_STRUCT &&
1213 TYPE_CODE (type) != TYPE_CODE_UNION)
1215 target_terminal_ours ();
1216 gdb_flush (gdb_stdout);
1217 fprintf_unfiltered (gdb_stderr, "Type ");
1218 type_print (type, "", gdb_stderr, -1);
1219 error (" is not a structure or union type.");
1223 /* FIXME: This change put in by Michael seems incorrect for the case where
1224 the structure tag name is the same as the member name. I.E. when doing
1225 "ptype bell->bar" for "struct foo { int bar; int foo; } bell;"
1230 typename = type_name_no_tag (type);
1231 if (typename != NULL && STREQ (typename, name))
1236 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1238 char *t_field_name = TYPE_FIELD_NAME (type, i);
1240 if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
1242 return TYPE_FIELD_TYPE (type, i);
1246 /* OK, it's not in this class. Recursively check the baseclasses. */
1247 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1251 t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, noerr);
1263 target_terminal_ours ();
1264 gdb_flush (gdb_stdout);
1265 fprintf_unfiltered (gdb_stderr, "Type ");
1266 type_print (type, "", gdb_stderr, -1);
1267 fprintf_unfiltered (gdb_stderr, " has no component named ");
1268 fputs_filtered (name, gdb_stderr);
1270 return (struct type *) -1; /* For lint */
1273 /* If possible, make the vptr_fieldno and vptr_basetype fields of TYPE
1274 valid. Callers should be aware that in some cases (for example,
1275 the type or one of its baseclasses is a stub type and we are
1276 debugging a .o file), this function will not be able to find the virtual
1277 function table pointer, and vptr_fieldno will remain -1 and vptr_basetype
1278 will remain NULL. */
1281 fill_in_vptr_fieldno (struct type *type)
1283 CHECK_TYPEDEF (type);
1285 if (TYPE_VPTR_FIELDNO (type) < 0)
1289 /* We must start at zero in case the first (and only) baseclass is
1290 virtual (and hence we cannot share the table pointer). */
1291 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
1293 struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
1294 fill_in_vptr_fieldno (baseclass);
1295 if (TYPE_VPTR_FIELDNO (baseclass) >= 0)
1297 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (baseclass);
1298 TYPE_VPTR_BASETYPE (type) = TYPE_VPTR_BASETYPE (baseclass);
1305 /* Find the method and field indices for the destructor in class type T.
1306 Return 1 if the destructor was found, otherwise, return 0. */
1309 get_destructor_fn_field (struct type *t, int *method_indexp, int *field_indexp)
1313 for (i = 0; i < TYPE_NFN_FIELDS (t); i++)
1316 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
1318 for (j = 0; j < TYPE_FN_FIELDLIST_LENGTH (t, i); j++)
1320 if (is_destructor_name (TYPE_FN_FIELD_PHYSNAME (f, j)) != 0)
1331 /* Added by Bryan Boreham, Kewill, Sun Sep 17 18:07:17 1989.
1333 If this is a stubbed struct (i.e. declared as struct foo *), see if
1334 we can find a full definition in some other file. If so, copy this
1335 definition, so we can use it in future. There used to be a comment (but
1336 not any code) that if we don't find a full definition, we'd set a flag
1337 so we don't spend time in the future checking the same type. That would
1338 be a mistake, though--we might load in more symbols which contain a
1339 full definition for the type.
1341 This used to be coded as a macro, but I don't think it is called
1342 often enough to merit such treatment. */
1344 struct deprecated_complaint stub_noname_complaint =
1345 {"stub type has NULL name", 0, 0};
1348 check_typedef (struct type *type)
1350 struct type *orig_type = type;
1351 int is_const, is_volatile;
1353 while (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
1355 if (!TYPE_TARGET_TYPE (type))
1360 /* It is dangerous to call lookup_symbol if we are currently
1361 reading a symtab. Infinite recursion is one danger. */
1362 if (currently_reading_symtab)
1365 name = type_name_no_tag (type);
1366 /* FIXME: shouldn't we separately check the TYPE_NAME and the
1367 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
1368 as appropriate? (this code was written before TYPE_NAME and
1369 TYPE_TAG_NAME were separate). */
1372 complain (&stub_noname_complaint);
1375 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
1376 (struct symtab **) NULL);
1378 TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
1380 TYPE_TARGET_TYPE (type) = alloc_type (NULL); /* TYPE_CODE_UNDEF */
1382 type = TYPE_TARGET_TYPE (type);
1385 is_const = TYPE_CONST (type);
1386 is_volatile = TYPE_VOLATILE (type);
1388 /* If this is a struct/class/union with no fields, then check whether a
1389 full definition exists somewhere else. This is for systems where a
1390 type definition with no fields is issued for such types, instead of
1391 identifying them as stub types in the first place */
1393 if (TYPE_IS_OPAQUE (type) && opaque_type_resolution && !currently_reading_symtab)
1395 char *name = type_name_no_tag (type);
1396 struct type *newtype;
1399 complain (&stub_noname_complaint);
1402 newtype = lookup_transparent_type (name);
1404 make_cv_type (is_const, is_volatile, newtype, &type);
1406 /* Otherwise, rely on the stub flag being set for opaque/stubbed types */
1407 else if (TYPE_STUB (type) && !currently_reading_symtab)
1409 char *name = type_name_no_tag (type);
1410 /* FIXME: shouldn't we separately check the TYPE_NAME and the
1411 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
1412 as appropriate? (this code was written before TYPE_NAME and
1413 TYPE_TAG_NAME were separate). */
1417 complain (&stub_noname_complaint);
1420 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0, (struct symtab **) NULL);
1422 make_cv_type (is_const, is_volatile, SYMBOL_TYPE (sym), &type);
1425 if (TYPE_TARGET_STUB (type))
1427 struct type *range_type;
1428 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
1430 if (TYPE_STUB (target_type) || TYPE_TARGET_STUB (target_type))
1433 else if (TYPE_CODE (type) == TYPE_CODE_ARRAY
1434 && TYPE_NFIELDS (type) == 1
1435 && (TYPE_CODE (range_type = TYPE_FIELD_TYPE (type, 0))
1436 == TYPE_CODE_RANGE))
1438 /* Now recompute the length of the array type, based on its
1439 number of elements and the target type's length. */
1440 TYPE_LENGTH (type) =
1441 ((TYPE_FIELD_BITPOS (range_type, 1)
1442 - TYPE_FIELD_BITPOS (range_type, 0)
1444 * TYPE_LENGTH (target_type));
1445 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1447 else if (TYPE_CODE (type) == TYPE_CODE_RANGE)
1449 TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
1450 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1453 /* Cache TYPE_LENGTH for future use. */
1454 TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
1458 /* New code added to support parsing of Cfront stabs strings */
1459 #define INIT_EXTRA { pextras->len=0; pextras->str[0]='\0'; }
1460 #define ADD_EXTRA(c) { pextras->str[pextras->len++]=c; }
1463 add_name (struct extra *pextras, char *n)
1467 if ((nlen = (n ? strlen (n) : 0)) == 0)
1469 sprintf (pextras->str + pextras->len, "%d%s", nlen, n);
1470 pextras->len = strlen (pextras->str);
1474 add_mangled_type (struct extra *pextras, struct type *t)
1476 enum type_code tcode;
1480 tcode = TYPE_CODE (t);
1481 tlen = TYPE_LENGTH (t);
1482 tflags = TYPE_FLAGS (t);
1483 tname = TYPE_NAME (t);
1484 /* args of "..." seem to get mangled as "e" */
1502 if ((pname = strrchr (tname, 'l'), pname) && !strcmp (pname, "long"))
1515 static struct deprecated_complaint msg =
1516 {"Bad int type code length x%x\n", 0, 0};
1518 complain (&msg, tlen);
1537 static struct deprecated_complaint msg =
1538 {"Bad float type code length x%x\n", 0, 0};
1539 complain (&msg, tlen);
1545 /* followed by what it's a ref to */
1549 /* followed by what it's a ptr to */
1551 case TYPE_CODE_TYPEDEF:
1553 static struct deprecated_complaint msg =
1554 {"Typedefs in overloaded functions not yet supported\n", 0, 0};
1557 /* followed by type bytes & name */
1559 case TYPE_CODE_FUNC:
1561 /* followed by func's arg '_' & ret types */
1563 case TYPE_CODE_VOID:
1566 case TYPE_CODE_METHOD:
1568 /* followed by name of class and func's arg '_' & ret types */
1569 add_name (pextras, tname);
1570 ADD_EXTRA ('F'); /* then mangle function */
1572 case TYPE_CODE_STRUCT: /* C struct */
1573 case TYPE_CODE_UNION: /* C union */
1574 case TYPE_CODE_ENUM: /* Enumeration type */
1575 /* followed by name of type */
1576 add_name (pextras, tname);
1579 /* errors possible types/not supported */
1580 case TYPE_CODE_CHAR:
1581 case TYPE_CODE_ARRAY: /* Array type */
1582 case TYPE_CODE_MEMBER: /* Member type */
1583 case TYPE_CODE_BOOL:
1584 case TYPE_CODE_COMPLEX: /* Complex float */
1585 case TYPE_CODE_UNDEF:
1586 case TYPE_CODE_SET: /* Pascal sets */
1587 case TYPE_CODE_RANGE:
1588 case TYPE_CODE_STRING:
1589 case TYPE_CODE_BITSTRING:
1590 case TYPE_CODE_ERROR:
1593 static struct deprecated_complaint msg =
1594 {"Unknown type code x%x\n", 0, 0};
1595 complain (&msg, tcode);
1598 if (TYPE_TARGET_TYPE (t))
1599 add_mangled_type (pextras, TYPE_TARGET_TYPE (t));
1604 cfront_mangle_name (struct type *type, int i, int j)
1607 char *mangled_name = gdb_mangle_name (type, i, j);
1609 f = TYPE_FN_FIELDLIST1 (type, i); /* moved from below */
1611 /* kludge to support cfront methods - gdb expects to find "F" for
1612 ARM_mangled names, so when we mangle, we have to add it here */
1616 char *arm_mangled_name;
1617 struct fn_field *method = &f[j];
1618 char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
1619 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
1620 char *newname = type_name_no_tag (type);
1622 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
1623 int nargs = TYPE_NFIELDS (ftype); /* number of args */
1624 struct extra extras, *pextras = &extras;
1627 if (TYPE_FN_FIELD_STATIC_P (f, j)) /* j for sublist within this list */
1630 /* add args here! */
1631 if (nargs <= 1) /* no args besides this */
1635 for (k = 1; k < nargs; k++)
1638 t = TYPE_FIELD_TYPE (ftype, k);
1639 add_mangled_type (pextras, t);
1643 printf ("add_mangled_type: %s\n", extras.str); /* FIXME */
1644 xasprintf (&arm_mangled_name, "%s%s", mangled_name, extras.str);
1645 xfree (mangled_name);
1646 mangled_name = arm_mangled_name;
1652 /* End of new code added to support parsing of Cfront stabs strings */
1654 /* Parse a type expression in the string [P..P+LENGTH). If an error occurs,
1655 silently return builtin_type_void. */
1658 safe_parse_type (char *p, int length)
1660 struct ui_file *saved_gdb_stderr;
1663 /* Suppress error messages. */
1664 saved_gdb_stderr = gdb_stderr;
1665 gdb_stderr = ui_file_new ();
1667 /* Call parse_and_eval_type() without fear of longjmp()s. */
1668 if (!gdb_parse_and_eval_type (p, length, &type))
1669 type = builtin_type_void;
1671 /* Stop suppressing error messages. */
1672 ui_file_delete (gdb_stderr);
1673 gdb_stderr = saved_gdb_stderr;
1678 /* Ugly hack to convert method stubs into method types.
1680 He ain't kiddin'. This demangles the name of the method into a string
1681 including argument types, parses out each argument type, generates
1682 a string casting a zero to that type, evaluates the string, and stuffs
1683 the resulting type into an argtype vector!!! Then it knows the type
1684 of the whole function (including argument types for overloading),
1685 which info used to be in the stab's but was removed to hack back
1686 the space required for them. */
1689 check_stub_method (struct type *type, int method_id, int signature_id)
1692 char *mangled_name = gdb_mangle_name (type, method_id, signature_id);
1693 char *demangled_name = cplus_demangle (mangled_name,
1694 DMGL_PARAMS | DMGL_ANSI);
1695 char *argtypetext, *p;
1696 int depth = 0, argcount = 1;
1697 struct field *argtypes;
1700 /* Make sure we got back a function string that we can use. */
1702 p = strchr (demangled_name, '(');
1706 if (demangled_name == NULL || p == NULL)
1707 error ("Internal: Cannot demangle mangled name `%s'.", mangled_name);
1709 /* Now, read in the parameters that define this type. */
1714 if (*p == '(' || *p == '<')
1718 else if (*p == ')' || *p == '>')
1722 else if (*p == ',' && depth == 0)
1730 /* If we read one argument and it was ``void'', don't count it. */
1731 if (strncmp (argtypetext, "(void)", 6) == 0)
1734 /* We need one extra slot, for the THIS pointer. */
1736 argtypes = (struct field *)
1737 TYPE_ALLOC (type, (argcount + 1) * sizeof (struct field));
1740 /* Add THIS pointer for non-static methods. */
1741 f = TYPE_FN_FIELDLIST1 (type, method_id);
1742 if (TYPE_FN_FIELD_STATIC_P (f, signature_id))
1746 argtypes[0].type = lookup_pointer_type (type);
1750 if (*p != ')') /* () means no args, skip while */
1755 if (depth <= 0 && (*p == ',' || *p == ')'))
1757 /* Avoid parsing of ellipsis, they will be handled below.
1758 Also avoid ``void'' as above. */
1759 if (strncmp (argtypetext, "...", p - argtypetext) != 0
1760 && strncmp (argtypetext, "void", p - argtypetext) != 0)
1762 argtypes[argcount].type =
1763 safe_parse_type (argtypetext, p - argtypetext);
1766 argtypetext = p + 1;
1769 if (*p == '(' || *p == '<')
1773 else if (*p == ')' || *p == '>')
1782 TYPE_FN_FIELD_PHYSNAME (f, signature_id) = mangled_name;
1784 /* Now update the old "stub" type into a real type. */
1785 mtype = TYPE_FN_FIELD_TYPE (f, signature_id);
1786 TYPE_DOMAIN_TYPE (mtype) = type;
1787 TYPE_FIELDS (mtype) = argtypes;
1788 TYPE_NFIELDS (mtype) = argcount;
1789 TYPE_FLAGS (mtype) &= ~TYPE_FLAG_STUB;
1790 TYPE_FN_FIELD_STUB (f, signature_id) = 0;
1792 TYPE_FLAGS (mtype) |= TYPE_FLAG_VARARGS;
1794 xfree (demangled_name);
1797 /* This is the external interface to check_stub_method, above. This function
1798 unstubs all of the signatures for TYPE's METHOD_ID method name. After
1799 calling this function TYPE_FN_FIELD_STUB will be cleared for each signature
1800 and TYPE_FN_FIELDLIST_NAME will be correct.
1802 This function unfortunately can not die until stabs do. */
1805 check_stub_method_group (struct type *type, int method_id)
1807 int len = TYPE_FN_FIELDLIST_LENGTH (type, method_id);
1808 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, method_id);
1809 int j, found_stub = 0;
1811 for (j = 0; j < len; j++)
1812 if (TYPE_FN_FIELD_STUB (f, j))
1815 check_stub_method (type, method_id, j);
1818 /* GNU v3 methods with incorrect names were corrected when we read in
1819 type information, because it was cheaper to do it then. The only GNU v2
1820 methods with incorrect method names are operators and destructors;
1821 destructors were also corrected when we read in type information.
1823 Therefore the only thing we need to handle here are v2 operator
1825 if (found_stub && strncmp (TYPE_FN_FIELD_PHYSNAME (f, 0), "_Z", 2) != 0)
1828 char dem_opname[256];
1830 ret = cplus_demangle_opname (TYPE_FN_FIELDLIST_NAME (type, method_id),
1831 dem_opname, DMGL_ANSI);
1833 ret = cplus_demangle_opname (TYPE_FN_FIELDLIST_NAME (type, method_id),
1836 TYPE_FN_FIELDLIST_NAME (type, method_id) = xstrdup (dem_opname);
1840 const struct cplus_struct_type cplus_struct_default;
1843 allocate_cplus_struct_type (struct type *type)
1845 if (!HAVE_CPLUS_STRUCT (type))
1847 TYPE_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
1848 TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
1849 *(TYPE_CPLUS_SPECIFIC (type)) = cplus_struct_default;
1853 /* Helper function to initialize the standard scalar types.
1855 If NAME is non-NULL and OBJFILE is non-NULL, then we make a copy
1856 of the string pointed to by name in the type_obstack for that objfile,
1857 and initialize the type name to that copy. There are places (mipsread.c
1858 in particular, where init_type is called with a NULL value for NAME). */
1861 init_type (enum type_code code, int length, int flags, char *name,
1862 struct objfile *objfile)
1864 register struct type *type;
1866 type = alloc_type (objfile);
1867 TYPE_CODE (type) = code;
1868 TYPE_LENGTH (type) = length;
1869 TYPE_FLAGS (type) |= flags;
1870 if ((name != NULL) && (objfile != NULL))
1873 obsavestring (name, strlen (name), &objfile->type_obstack);
1877 TYPE_NAME (type) = name;
1882 if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION)
1884 INIT_CPLUS_SPECIFIC (type);
1889 /* Helper function. Create an empty composite type. */
1892 init_composite_type (char *name, enum type_code code)
1895 gdb_assert (code == TYPE_CODE_STRUCT
1896 || code == TYPE_CODE_UNION);
1897 t = init_type (code, 0, 0, NULL, NULL);
1898 TYPE_TAG_NAME (t) = name;
1902 /* Helper function. Append a field to a composite type. */
1905 append_composite_type_field (struct type *t, char *name, struct type *field)
1908 TYPE_NFIELDS (t) = TYPE_NFIELDS (t) + 1;
1909 TYPE_FIELDS (t) = xrealloc (TYPE_FIELDS (t),
1910 sizeof (struct field) * TYPE_NFIELDS (t));
1911 f = &(TYPE_FIELDS (t)[TYPE_NFIELDS (t) - 1]);
1912 memset (f, 0, sizeof f[0]);
1913 FIELD_TYPE (f[0]) = field;
1914 FIELD_NAME (f[0]) = name;
1915 if (TYPE_CODE (t) == TYPE_CODE_UNION)
1917 if (TYPE_LENGTH (t) < TYPE_LENGTH (field))
1918 TYPE_LENGTH (t) = TYPE_LENGTH (field);
1920 else if (TYPE_CODE (t) == TYPE_CODE_STRUCT)
1922 TYPE_LENGTH (t) = TYPE_LENGTH (t) + TYPE_LENGTH (field);
1923 if (TYPE_NFIELDS (t) > 1)
1925 FIELD_BITPOS (f[0]) = (FIELD_BITPOS (f[-1])
1926 + TYPE_LENGTH (field) * TARGET_CHAR_BIT);
1931 /* Look up a fundamental type for the specified objfile.
1932 May need to construct such a type if this is the first use.
1934 Some object file formats (ELF, COFF, etc) do not define fundamental
1935 types such as "int" or "double". Others (stabs for example), do
1936 define fundamental types.
1938 For the formats which don't provide fundamental types, gdb can create
1939 such types, using defaults reasonable for the current language and
1940 the current target machine.
1942 NOTE: This routine is obsolescent. Each debugging format reader
1943 should manage it's own fundamental types, either creating them from
1944 suitable defaults or reading them from the debugging information,
1945 whichever is appropriate. The DWARF reader has already been
1946 fixed to do this. Once the other readers are fixed, this routine
1947 will go away. Also note that fundamental types should be managed
1948 on a compilation unit basis in a multi-language environment, not
1949 on a linkage unit basis as is done here. */
1953 lookup_fundamental_type (struct objfile *objfile, int typeid)
1955 register struct type **typep;
1956 register int nbytes;
1958 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
1960 error ("internal error - invalid fundamental type id %d", typeid);
1963 /* If this is the first time we need a fundamental type for this objfile
1964 then we need to initialize the vector of type pointers. */
1966 if (objfile->fundamental_types == NULL)
1968 nbytes = FT_NUM_MEMBERS * sizeof (struct type *);
1969 objfile->fundamental_types = (struct type **)
1970 obstack_alloc (&objfile->type_obstack, nbytes);
1971 memset ((char *) objfile->fundamental_types, 0, nbytes);
1972 OBJSTAT (objfile, n_types += FT_NUM_MEMBERS);
1975 /* Look for this particular type in the fundamental type vector. If one is
1976 not found, create and install one appropriate for the current language. */
1978 typep = objfile->fundamental_types + typeid;
1981 *typep = create_fundamental_type (objfile, typeid);
1988 can_dereference (struct type *t)
1990 /* FIXME: Should we return true for references as well as pointers? */
1994 && TYPE_CODE (t) == TYPE_CODE_PTR
1995 && TYPE_CODE (TYPE_TARGET_TYPE (t)) != TYPE_CODE_VOID);
1999 is_integral_type (struct type *t)
2004 && ((TYPE_CODE (t) == TYPE_CODE_INT)
2005 || (TYPE_CODE (t) == TYPE_CODE_ENUM)
2006 || (TYPE_CODE (t) == TYPE_CODE_CHAR)
2007 || (TYPE_CODE (t) == TYPE_CODE_RANGE)
2008 || (TYPE_CODE (t) == TYPE_CODE_BOOL)));
2011 /* (OBSOLETE) Chill (OBSOLETE) varying string and arrays are
2012 represented as follows:
2014 struct { int __var_length; ELEMENT_TYPE[MAX_SIZE] __var_data};
2016 Return true if TYPE is such a (OBSOLETE) Chill (OBSOLETE) varying
2020 /* OBSOLETE chill_varying_type (struct type *type) */
2022 /* OBSOLETE if (TYPE_CODE (type) != TYPE_CODE_STRUCT */
2023 /* OBSOLETE || TYPE_NFIELDS (type) != 2 */
2024 /* OBSOLETE || strcmp (TYPE_FIELD_NAME (type, 0), "__var_length") != 0) */
2025 /* OBSOLETE return 0; */
2026 /* OBSOLETE return 1; */
2029 /* Check whether BASE is an ancestor or base class or DCLASS
2030 Return 1 if so, and 0 if not.
2031 Note: callers may want to check for identity of the types before
2032 calling this function -- identical types are considered to satisfy
2033 the ancestor relationship even if they're identical */
2036 is_ancestor (struct type *base, struct type *dclass)
2040 CHECK_TYPEDEF (base);
2041 CHECK_TYPEDEF (dclass);
2045 if (TYPE_NAME (base) && TYPE_NAME (dclass) &&
2046 !strcmp (TYPE_NAME (base), TYPE_NAME (dclass)))
2049 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
2050 if (is_ancestor (base, TYPE_BASECLASS (dclass, i)))
2058 /* See whether DCLASS has a virtual table. This routine is aimed at
2059 the HP/Taligent ANSI C++ runtime model, and may not work with other
2060 runtime models. Return 1 => Yes, 0 => No. */
2063 has_vtable (struct type *dclass)
2065 /* In the HP ANSI C++ runtime model, a class has a vtable only if it
2066 has virtual functions or virtual bases. */
2070 if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
2073 /* First check for the presence of virtual bases */
2074 if (TYPE_FIELD_VIRTUAL_BITS (dclass))
2075 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
2076 if (B_TST (TYPE_FIELD_VIRTUAL_BITS (dclass), i))
2079 /* Next check for virtual functions */
2080 if (TYPE_FN_FIELDLISTS (dclass))
2081 for (i = 0; i < TYPE_NFN_FIELDS (dclass); i++)
2082 if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (dclass, i), 0))
2085 /* Recurse on non-virtual bases to see if any of them needs a vtable */
2086 if (TYPE_FIELD_VIRTUAL_BITS (dclass))
2087 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
2088 if ((!B_TST (TYPE_FIELD_VIRTUAL_BITS (dclass), i)) &&
2089 (has_vtable (TYPE_FIELD_TYPE (dclass, i))))
2092 /* Well, maybe we don't need a virtual table */
2096 /* Return a pointer to the "primary base class" of DCLASS.
2098 A NULL return indicates that DCLASS has no primary base, or that it
2099 couldn't be found (insufficient information).
2101 This routine is aimed at the HP/Taligent ANSI C++ runtime model,
2102 and may not work with other runtime models. */
2105 primary_base_class (struct type *dclass)
2107 /* In HP ANSI C++'s runtime model, a "primary base class" of a class
2108 is the first directly inherited, non-virtual base class that
2109 requires a virtual table */
2113 if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
2116 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
2117 if (!TYPE_FIELD_VIRTUAL (dclass, i) &&
2118 has_vtable (TYPE_FIELD_TYPE (dclass, i)))
2119 return TYPE_FIELD_TYPE (dclass, i);
2124 /* Global manipulated by virtual_base_list[_aux]() */
2126 static struct vbase *current_vbase_list = NULL;
2128 /* Return a pointer to a null-terminated list of struct vbase
2129 items. The vbasetype pointer of each item in the list points to the
2130 type information for a virtual base of the argument DCLASS.
2132 Helper function for virtual_base_list().
2133 Note: the list goes backward, right-to-left. virtual_base_list()
2134 copies the items out in reverse order. */
2137 virtual_base_list_aux (struct type *dclass)
2139 struct vbase *tmp_vbase;
2142 if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
2145 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
2147 /* Recurse on this ancestor, first */
2148 virtual_base_list_aux (TYPE_FIELD_TYPE (dclass, i));
2150 /* If this current base is itself virtual, add it to the list */
2151 if (BASETYPE_VIA_VIRTUAL (dclass, i))
2153 struct type *basetype = TYPE_FIELD_TYPE (dclass, i);
2155 /* Check if base already recorded */
2156 tmp_vbase = current_vbase_list;
2159 if (tmp_vbase->vbasetype == basetype)
2160 break; /* found it */
2161 tmp_vbase = tmp_vbase->next;
2164 if (!tmp_vbase) /* normal exit from loop */
2166 /* Allocate new item for this virtual base */
2167 tmp_vbase = (struct vbase *) xmalloc (sizeof (struct vbase));
2169 /* Stick it on at the end of the list */
2170 tmp_vbase->vbasetype = basetype;
2171 tmp_vbase->next = current_vbase_list;
2172 current_vbase_list = tmp_vbase;
2175 } /* for loop over bases */
2179 /* Compute the list of virtual bases in the right order. Virtual
2180 bases are laid out in the object's memory area in order of their
2181 occurrence in a depth-first, left-to-right search through the
2184 Argument DCLASS is the type whose virtual bases are required.
2185 Return value is the address of a null-terminated array of pointers
2186 to struct type items.
2188 This routine is aimed at the HP/Taligent ANSI C++ runtime model,
2189 and may not work with other runtime models.
2191 This routine merely hands off the argument to virtual_base_list_aux()
2192 and then copies the result into an array to save space. */
2195 virtual_base_list (struct type *dclass)
2197 register struct vbase *tmp_vbase;
2198 register struct vbase *tmp_vbase_2;
2201 struct type **vbase_array;
2203 current_vbase_list = NULL;
2204 virtual_base_list_aux (dclass);
2206 for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; i++, tmp_vbase = tmp_vbase->next)
2211 vbase_array = (struct type **) xmalloc ((count + 1) * sizeof (struct type *));
2213 for (i = count - 1, tmp_vbase = current_vbase_list; i >= 0; i--, tmp_vbase = tmp_vbase->next)
2214 vbase_array[i] = tmp_vbase->vbasetype;
2216 /* Get rid of constructed chain */
2217 tmp_vbase_2 = tmp_vbase = current_vbase_list;
2220 tmp_vbase = tmp_vbase->next;
2221 xfree (tmp_vbase_2);
2222 tmp_vbase_2 = tmp_vbase;
2225 vbase_array[count] = NULL;
2229 /* Return the length of the virtual base list of the type DCLASS. */
2232 virtual_base_list_length (struct type *dclass)
2235 register struct vbase *tmp_vbase;
2237 current_vbase_list = NULL;
2238 virtual_base_list_aux (dclass);
2240 for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; i++, tmp_vbase = tmp_vbase->next)
2245 /* Return the number of elements of the virtual base list of the type
2246 DCLASS, ignoring those appearing in the primary base (and its
2247 primary base, recursively). */
2250 virtual_base_list_length_skip_primaries (struct type *dclass)
2253 register struct vbase *tmp_vbase;
2254 struct type *primary;
2256 primary = TYPE_RUNTIME_PTR (dclass) ? TYPE_PRIMARY_BASE (dclass) : NULL;
2259 return virtual_base_list_length (dclass);
2261 current_vbase_list = NULL;
2262 virtual_base_list_aux (dclass);
2264 for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; tmp_vbase = tmp_vbase->next)
2266 if (virtual_base_index (tmp_vbase->vbasetype, primary) >= 0)
2274 /* Return the index (position) of type BASE, which is a virtual base
2275 class of DCLASS, in the latter's virtual base list. A return of -1
2276 indicates "not found" or a problem. */
2279 virtual_base_index (struct type *base, struct type *dclass)
2281 register struct type *vbase;
2284 if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS) ||
2285 (TYPE_CODE (base) != TYPE_CODE_CLASS))
2289 vbase = virtual_base_list (dclass)[0];
2294 vbase = virtual_base_list (dclass)[++i];
2297 return vbase ? i : -1;
2302 /* Return the index (position) of type BASE, which is a virtual base
2303 class of DCLASS, in the latter's virtual base list. Skip over all
2304 bases that may appear in the virtual base list of the primary base
2305 class of DCLASS (recursively). A return of -1 indicates "not
2306 found" or a problem. */
2309 virtual_base_index_skip_primaries (struct type *base, struct type *dclass)
2311 register struct type *vbase;
2313 struct type *primary;
2315 if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS) ||
2316 (TYPE_CODE (base) != TYPE_CODE_CLASS))
2319 primary = TYPE_RUNTIME_PTR (dclass) ? TYPE_PRIMARY_BASE (dclass) : NULL;
2323 vbase = virtual_base_list (dclass)[0];
2326 if (!primary || (virtual_base_index_skip_primaries (vbase, primary) < 0))
2330 vbase = virtual_base_list (dclass)[++i];
2333 return vbase ? j : -1;
2336 /* Return position of a derived class DCLASS in the list of
2337 * primary bases starting with the remotest ancestor.
2338 * Position returned is 0-based. */
2341 class_index_in_primary_list (struct type *dclass)
2343 struct type *pbc; /* primary base class */
2345 /* Simply recurse on primary base */
2346 pbc = TYPE_PRIMARY_BASE (dclass);
2348 return 1 + class_index_in_primary_list (pbc);
2353 /* Return a count of the number of virtual functions a type has.
2354 * This includes all the virtual functions it inherits from its
2358 /* pai: FIXME This doesn't do the right thing: count redefined virtual
2359 * functions only once (latest redefinition)
2363 count_virtual_fns (struct type *dclass)
2365 int fn, oi; /* function and overloaded instance indices */
2366 int vfuncs; /* count to return */
2368 /* recurse on bases that can share virtual table */
2369 struct type *pbc = primary_base_class (dclass);
2371 vfuncs = count_virtual_fns (pbc);
2375 for (fn = 0; fn < TYPE_NFN_FIELDS (dclass); fn++)
2376 for (oi = 0; oi < TYPE_FN_FIELDLIST_LENGTH (dclass, fn); oi++)
2377 if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (dclass, fn), oi))
2385 /* Functions for overload resolution begin here */
2387 /* Compare two badness vectors A and B and return the result.
2388 * 0 => A and B are identical
2389 * 1 => A and B are incomparable
2390 * 2 => A is better than B
2391 * 3 => A is worse than B */
2394 compare_badness (struct badness_vector *a, struct badness_vector *b)
2398 short found_pos = 0; /* any positives in c? */
2399 short found_neg = 0; /* any negatives in c? */
2401 /* differing lengths => incomparable */
2402 if (a->length != b->length)
2405 /* Subtract b from a */
2406 for (i = 0; i < a->length; i++)
2408 tmp = a->rank[i] - b->rank[i];
2418 return 1; /* incomparable */
2420 return 3; /* A > B */
2426 return 2; /* A < B */
2428 return 0; /* A == B */
2432 /* Rank a function by comparing its parameter types (PARMS, length NPARMS),
2433 * to the types of an argument list (ARGS, length NARGS).
2434 * Return a pointer to a badness vector. This has NARGS + 1 entries. */
2436 struct badness_vector *
2437 rank_function (struct type **parms, int nparms, struct type **args, int nargs)
2440 struct badness_vector *bv;
2441 int min_len = nparms < nargs ? nparms : nargs;
2443 bv = xmalloc (sizeof (struct badness_vector));
2444 bv->length = nargs + 1; /* add 1 for the length-match rank */
2445 bv->rank = xmalloc ((nargs + 1) * sizeof (int));
2447 /* First compare the lengths of the supplied lists.
2448 * If there is a mismatch, set it to a high value. */
2450 /* pai/1997-06-03 FIXME: when we have debug info about default
2451 * arguments and ellipsis parameter lists, we should consider those
2452 * and rank the length-match more finely. */
2454 LENGTH_MATCH (bv) = (nargs != nparms) ? LENGTH_MISMATCH_BADNESS : 0;
2456 /* Now rank all the parameters of the candidate function */
2457 for (i = 1; i <= min_len; i++)
2458 bv->rank[i] = rank_one_type (parms[i-1], args[i-1]);
2460 /* If more arguments than parameters, add dummy entries */
2461 for (i = min_len + 1; i <= nargs; i++)
2462 bv->rank[i] = TOO_FEW_PARAMS_BADNESS;
2467 /* Compare one type (PARM) for compatibility with another (ARG).
2468 * PARM is intended to be the parameter type of a function; and
2469 * ARG is the supplied argument's type. This function tests if
2470 * the latter can be converted to the former.
2472 * Return 0 if they are identical types;
2473 * Otherwise, return an integer which corresponds to how compatible
2474 * PARM is to ARG. The higher the return value, the worse the match.
2475 * Generally the "bad" conversions are all uniformly assigned a 100 */
2478 rank_one_type (struct type *parm, struct type *arg)
2480 /* Identical type pointers */
2481 /* However, this still doesn't catch all cases of same type for arg
2482 * and param. The reason is that builtin types are different from
2483 * the same ones constructed from the object. */
2487 /* Resolve typedefs */
2488 if (TYPE_CODE (parm) == TYPE_CODE_TYPEDEF)
2489 parm = check_typedef (parm);
2490 if (TYPE_CODE (arg) == TYPE_CODE_TYPEDEF)
2491 arg = check_typedef (arg);
2494 Well, damnit, if the names are exactly the same,
2495 i'll say they are exactly the same. This happens when we generate
2496 method stubs. The types won't point to the same address, but they
2497 really are the same.
2500 if (TYPE_NAME (parm) && TYPE_NAME (arg) &&
2501 !strcmp (TYPE_NAME (parm), TYPE_NAME (arg)))
2504 /* Check if identical after resolving typedefs */
2508 /* See through references, since we can almost make non-references
2510 if (TYPE_CODE (arg) == TYPE_CODE_REF)
2511 return (rank_one_type (parm, TYPE_TARGET_TYPE (arg))
2512 + REFERENCE_CONVERSION_BADNESS);
2513 if (TYPE_CODE (parm) == TYPE_CODE_REF)
2514 return (rank_one_type (TYPE_TARGET_TYPE (parm), arg)
2515 + REFERENCE_CONVERSION_BADNESS);
2517 /* Debugging only. */
2518 fprintf_filtered (gdb_stderr,"------ Arg is %s [%d], parm is %s [%d]\n",
2519 TYPE_NAME (arg), TYPE_CODE (arg), TYPE_NAME (parm), TYPE_CODE (parm));
2521 /* x -> y means arg of type x being supplied for parameter of type y */
2523 switch (TYPE_CODE (parm))
2526 switch (TYPE_CODE (arg))
2529 if (TYPE_CODE (TYPE_TARGET_TYPE (parm)) == TYPE_CODE_VOID)
2530 return VOID_PTR_CONVERSION_BADNESS;
2532 return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2533 case TYPE_CODE_ARRAY:
2534 return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2535 case TYPE_CODE_FUNC:
2536 return rank_one_type (TYPE_TARGET_TYPE (parm), arg);
2538 case TYPE_CODE_ENUM:
2539 case TYPE_CODE_CHAR:
2540 case TYPE_CODE_RANGE:
2541 case TYPE_CODE_BOOL:
2542 return POINTER_CONVERSION_BADNESS;
2544 return INCOMPATIBLE_TYPE_BADNESS;
2546 case TYPE_CODE_ARRAY:
2547 switch (TYPE_CODE (arg))
2550 case TYPE_CODE_ARRAY:
2551 return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2553 return INCOMPATIBLE_TYPE_BADNESS;
2555 case TYPE_CODE_FUNC:
2556 switch (TYPE_CODE (arg))
2558 case TYPE_CODE_PTR: /* funcptr -> func */
2559 return rank_one_type (parm, TYPE_TARGET_TYPE (arg));
2561 return INCOMPATIBLE_TYPE_BADNESS;
2564 switch (TYPE_CODE (arg))
2567 if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
2569 /* Deal with signed, unsigned, and plain chars and
2570 signed and unsigned ints */
2571 if (TYPE_NOSIGN (parm))
2573 /* This case only for character types */
2574 if (TYPE_NOSIGN (arg)) /* plain char -> plain char */
2577 return INTEGER_COERCION_BADNESS; /* signed/unsigned char -> plain char */
2579 else if (TYPE_UNSIGNED (parm))
2581 if (TYPE_UNSIGNED (arg))
2583 if (!strcmp_iw (TYPE_NAME (parm), TYPE_NAME (arg)))
2584 return 0; /* unsigned int -> unsigned int, or unsigned long -> unsigned long */
2585 else if (!strcmp_iw (TYPE_NAME (arg), "int") && !strcmp_iw (TYPE_NAME (parm), "long"))
2586 return INTEGER_PROMOTION_BADNESS; /* unsigned int -> unsigned long */
2588 return INTEGER_COERCION_BADNESS; /* unsigned long -> unsigned int */
2592 if (!strcmp_iw (TYPE_NAME (arg), "long") && !strcmp_iw (TYPE_NAME (parm), "int"))
2593 return INTEGER_COERCION_BADNESS; /* signed long -> unsigned int */
2595 return INTEGER_CONVERSION_BADNESS; /* signed int/long -> unsigned int/long */
2598 else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
2600 if (!strcmp_iw (TYPE_NAME (parm), TYPE_NAME (arg)))
2602 else if (!strcmp_iw (TYPE_NAME (arg), "int") && !strcmp_iw (TYPE_NAME (parm), "long"))
2603 return INTEGER_PROMOTION_BADNESS;
2605 return INTEGER_COERCION_BADNESS;
2608 return INTEGER_COERCION_BADNESS;
2610 else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2611 return INTEGER_PROMOTION_BADNESS;
2613 return INTEGER_COERCION_BADNESS;
2614 case TYPE_CODE_ENUM:
2615 case TYPE_CODE_CHAR:
2616 case TYPE_CODE_RANGE:
2617 case TYPE_CODE_BOOL:
2618 return INTEGER_PROMOTION_BADNESS;
2620 return INT_FLOAT_CONVERSION_BADNESS;
2622 return NS_POINTER_CONVERSION_BADNESS;
2624 return INCOMPATIBLE_TYPE_BADNESS;
2627 case TYPE_CODE_ENUM:
2628 switch (TYPE_CODE (arg))
2631 case TYPE_CODE_CHAR:
2632 case TYPE_CODE_RANGE:
2633 case TYPE_CODE_BOOL:
2634 case TYPE_CODE_ENUM:
2635 return INTEGER_COERCION_BADNESS;
2637 return INT_FLOAT_CONVERSION_BADNESS;
2639 return INCOMPATIBLE_TYPE_BADNESS;
2642 case TYPE_CODE_CHAR:
2643 switch (TYPE_CODE (arg))
2645 case TYPE_CODE_RANGE:
2646 case TYPE_CODE_BOOL:
2647 case TYPE_CODE_ENUM:
2648 return INTEGER_COERCION_BADNESS;
2650 return INT_FLOAT_CONVERSION_BADNESS;
2652 if (TYPE_LENGTH (arg) > TYPE_LENGTH (parm))
2653 return INTEGER_COERCION_BADNESS;
2654 else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2655 return INTEGER_PROMOTION_BADNESS;
2656 /* >>> !! else fall through !! <<< */
2657 case TYPE_CODE_CHAR:
2658 /* Deal with signed, unsigned, and plain chars for C++
2659 and with int cases falling through from previous case */
2660 if (TYPE_NOSIGN (parm))
2662 if (TYPE_NOSIGN (arg))
2665 return INTEGER_COERCION_BADNESS;
2667 else if (TYPE_UNSIGNED (parm))
2669 if (TYPE_UNSIGNED (arg))
2672 return INTEGER_PROMOTION_BADNESS;
2674 else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
2677 return INTEGER_COERCION_BADNESS;
2679 return INCOMPATIBLE_TYPE_BADNESS;
2682 case TYPE_CODE_RANGE:
2683 switch (TYPE_CODE (arg))
2686 case TYPE_CODE_CHAR:
2687 case TYPE_CODE_RANGE:
2688 case TYPE_CODE_BOOL:
2689 case TYPE_CODE_ENUM:
2690 return INTEGER_COERCION_BADNESS;
2692 return INT_FLOAT_CONVERSION_BADNESS;
2694 return INCOMPATIBLE_TYPE_BADNESS;
2697 case TYPE_CODE_BOOL:
2698 switch (TYPE_CODE (arg))
2701 case TYPE_CODE_CHAR:
2702 case TYPE_CODE_RANGE:
2703 case TYPE_CODE_ENUM:
2706 return BOOLEAN_CONVERSION_BADNESS;
2707 case TYPE_CODE_BOOL:
2710 return INCOMPATIBLE_TYPE_BADNESS;
2714 switch (TYPE_CODE (arg))
2717 if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2718 return FLOAT_PROMOTION_BADNESS;
2719 else if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
2722 return FLOAT_CONVERSION_BADNESS;
2724 case TYPE_CODE_BOOL:
2725 case TYPE_CODE_ENUM:
2726 case TYPE_CODE_RANGE:
2727 case TYPE_CODE_CHAR:
2728 return INT_FLOAT_CONVERSION_BADNESS;
2730 return INCOMPATIBLE_TYPE_BADNESS;
2733 case TYPE_CODE_COMPLEX:
2734 switch (TYPE_CODE (arg))
2735 { /* Strictly not needed for C++, but... */
2737 return FLOAT_PROMOTION_BADNESS;
2738 case TYPE_CODE_COMPLEX:
2741 return INCOMPATIBLE_TYPE_BADNESS;
2744 case TYPE_CODE_STRUCT:
2745 /* currently same as TYPE_CODE_CLASS */
2746 switch (TYPE_CODE (arg))
2748 case TYPE_CODE_STRUCT:
2749 /* Check for derivation */
2750 if (is_ancestor (parm, arg))
2751 return BASE_CONVERSION_BADNESS;
2752 /* else fall through */
2754 return INCOMPATIBLE_TYPE_BADNESS;
2757 case TYPE_CODE_UNION:
2758 switch (TYPE_CODE (arg))
2760 case TYPE_CODE_UNION:
2762 return INCOMPATIBLE_TYPE_BADNESS;
2765 case TYPE_CODE_MEMBER:
2766 switch (TYPE_CODE (arg))
2769 return INCOMPATIBLE_TYPE_BADNESS;
2772 case TYPE_CODE_METHOD:
2773 switch (TYPE_CODE (arg))
2777 return INCOMPATIBLE_TYPE_BADNESS;
2781 switch (TYPE_CODE (arg))
2785 return INCOMPATIBLE_TYPE_BADNESS;
2790 switch (TYPE_CODE (arg))
2794 return rank_one_type (TYPE_FIELD_TYPE (parm, 0), TYPE_FIELD_TYPE (arg, 0));
2796 return INCOMPATIBLE_TYPE_BADNESS;
2799 case TYPE_CODE_VOID:
2801 return INCOMPATIBLE_TYPE_BADNESS;
2802 } /* switch (TYPE_CODE (arg)) */
2806 /* End of functions for overload resolution */
2809 print_bit_vector (B_TYPE *bits, int nbits)
2813 for (bitno = 0; bitno < nbits; bitno++)
2815 if ((bitno % 8) == 0)
2817 puts_filtered (" ");
2819 if (B_TST (bits, bitno))
2821 printf_filtered ("1");
2825 printf_filtered ("0");
2830 /* Note the first arg should be the "this" pointer, we may not want to
2831 include it since we may get into a infinitely recursive situation. */
2834 print_arg_types (struct field *args, int nargs, int spaces)
2840 for (i = 0; i < nargs; i++)
2841 recursive_dump_type (args[i].type, spaces + 2);
2846 dump_fn_fieldlists (struct type *type, int spaces)
2852 printfi_filtered (spaces, "fn_fieldlists ");
2853 gdb_print_host_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
2854 printf_filtered ("\n");
2855 for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
2857 f = TYPE_FN_FIELDLIST1 (type, method_idx);
2858 printfi_filtered (spaces + 2, "[%d] name '%s' (",
2860 TYPE_FN_FIELDLIST_NAME (type, method_idx));
2861 gdb_print_host_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
2863 printf_filtered (") length %d\n",
2864 TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
2865 for (overload_idx = 0;
2866 overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
2869 printfi_filtered (spaces + 4, "[%d] physname '%s' (",
2871 TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
2872 gdb_print_host_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
2874 printf_filtered (")\n");
2875 printfi_filtered (spaces + 8, "type ");
2876 gdb_print_host_address (TYPE_FN_FIELD_TYPE (f, overload_idx), gdb_stdout);
2877 printf_filtered ("\n");
2879 recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
2882 printfi_filtered (spaces + 8, "args ");
2883 gdb_print_host_address (TYPE_FN_FIELD_ARGS (f, overload_idx), gdb_stdout);
2884 printf_filtered ("\n");
2886 print_arg_types (TYPE_FN_FIELD_ARGS (f, overload_idx),
2887 TYPE_NFIELDS (TYPE_FN_FIELD_TYPE (f, overload_idx)),
2889 printfi_filtered (spaces + 8, "fcontext ");
2890 gdb_print_host_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
2892 printf_filtered ("\n");
2894 printfi_filtered (spaces + 8, "is_const %d\n",
2895 TYPE_FN_FIELD_CONST (f, overload_idx));
2896 printfi_filtered (spaces + 8, "is_volatile %d\n",
2897 TYPE_FN_FIELD_VOLATILE (f, overload_idx));
2898 printfi_filtered (spaces + 8, "is_private %d\n",
2899 TYPE_FN_FIELD_PRIVATE (f, overload_idx));
2900 printfi_filtered (spaces + 8, "is_protected %d\n",
2901 TYPE_FN_FIELD_PROTECTED (f, overload_idx));
2902 printfi_filtered (spaces + 8, "is_stub %d\n",
2903 TYPE_FN_FIELD_STUB (f, overload_idx));
2904 printfi_filtered (spaces + 8, "voffset %u\n",
2905 TYPE_FN_FIELD_VOFFSET (f, overload_idx));
2911 print_cplus_stuff (struct type *type, int spaces)
2913 printfi_filtered (spaces, "n_baseclasses %d\n",
2914 TYPE_N_BASECLASSES (type));
2915 printfi_filtered (spaces, "nfn_fields %d\n",
2916 TYPE_NFN_FIELDS (type));
2917 printfi_filtered (spaces, "nfn_fields_total %d\n",
2918 TYPE_NFN_FIELDS_TOTAL (type));
2919 if (TYPE_N_BASECLASSES (type) > 0)
2921 printfi_filtered (spaces, "virtual_field_bits (%d bits at *",
2922 TYPE_N_BASECLASSES (type));
2923 gdb_print_host_address (TYPE_FIELD_VIRTUAL_BITS (type), gdb_stdout);
2924 printf_filtered (")");
2926 print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
2927 TYPE_N_BASECLASSES (type));
2928 puts_filtered ("\n");
2930 if (TYPE_NFIELDS (type) > 0)
2932 if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
2934 printfi_filtered (spaces, "private_field_bits (%d bits at *",
2935 TYPE_NFIELDS (type));
2936 gdb_print_host_address (TYPE_FIELD_PRIVATE_BITS (type), gdb_stdout);
2937 printf_filtered (")");
2938 print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
2939 TYPE_NFIELDS (type));
2940 puts_filtered ("\n");
2942 if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
2944 printfi_filtered (spaces, "protected_field_bits (%d bits at *",
2945 TYPE_NFIELDS (type));
2946 gdb_print_host_address (TYPE_FIELD_PROTECTED_BITS (type), gdb_stdout);
2947 printf_filtered (")");
2948 print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
2949 TYPE_NFIELDS (type));
2950 puts_filtered ("\n");
2953 if (TYPE_NFN_FIELDS (type) > 0)
2955 dump_fn_fieldlists (type, spaces);
2960 print_bound_type (int bt)
2964 case BOUND_CANNOT_BE_DETERMINED:
2965 printf_filtered ("(BOUND_CANNOT_BE_DETERMINED)");
2967 case BOUND_BY_REF_ON_STACK:
2968 printf_filtered ("(BOUND_BY_REF_ON_STACK)");
2970 case BOUND_BY_VALUE_ON_STACK:
2971 printf_filtered ("(BOUND_BY_VALUE_ON_STACK)");
2973 case BOUND_BY_REF_IN_REG:
2974 printf_filtered ("(BOUND_BY_REF_IN_REG)");
2976 case BOUND_BY_VALUE_IN_REG:
2977 printf_filtered ("(BOUND_BY_VALUE_IN_REG)");
2980 printf_filtered ("(BOUND_SIMPLE)");
2983 printf_filtered ("(unknown bound type)");
2988 static struct obstack dont_print_type_obstack;
2991 recursive_dump_type (struct type *type, int spaces)
2996 obstack_begin (&dont_print_type_obstack, 0);
2998 if (TYPE_NFIELDS (type) > 0
2999 || (TYPE_CPLUS_SPECIFIC (type) && TYPE_NFN_FIELDS (type) > 0))
3001 struct type **first_dont_print
3002 = (struct type **) obstack_base (&dont_print_type_obstack);
3004 int i = (struct type **) obstack_next_free (&dont_print_type_obstack)
3009 if (type == first_dont_print[i])
3011 printfi_filtered (spaces, "type node ");
3012 gdb_print_host_address (type, gdb_stdout);
3013 printf_filtered (" <same as already seen type>\n");
3018 obstack_ptr_grow (&dont_print_type_obstack, type);
3021 printfi_filtered (spaces, "type node ");
3022 gdb_print_host_address (type, gdb_stdout);
3023 printf_filtered ("\n");
3024 printfi_filtered (spaces, "name '%s' (",
3025 TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
3026 gdb_print_host_address (TYPE_NAME (type), gdb_stdout);
3027 printf_filtered (")\n");
3028 printfi_filtered (spaces, "tagname '%s' (",
3029 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) : "<NULL>");
3030 gdb_print_host_address (TYPE_TAG_NAME (type), gdb_stdout);
3031 printf_filtered (")\n");
3032 printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
3033 switch (TYPE_CODE (type))
3035 case TYPE_CODE_UNDEF:
3036 printf_filtered ("(TYPE_CODE_UNDEF)");
3039 printf_filtered ("(TYPE_CODE_PTR)");
3041 case TYPE_CODE_ARRAY:
3042 printf_filtered ("(TYPE_CODE_ARRAY)");
3044 case TYPE_CODE_STRUCT:
3045 printf_filtered ("(TYPE_CODE_STRUCT)");
3047 case TYPE_CODE_UNION:
3048 printf_filtered ("(TYPE_CODE_UNION)");
3050 case TYPE_CODE_ENUM:
3051 printf_filtered ("(TYPE_CODE_ENUM)");
3053 case TYPE_CODE_FUNC:
3054 printf_filtered ("(TYPE_CODE_FUNC)");
3057 printf_filtered ("(TYPE_CODE_INT)");
3060 printf_filtered ("(TYPE_CODE_FLT)");
3062 case TYPE_CODE_VOID:
3063 printf_filtered ("(TYPE_CODE_VOID)");
3066 printf_filtered ("(TYPE_CODE_SET)");
3068 case TYPE_CODE_RANGE:
3069 printf_filtered ("(TYPE_CODE_RANGE)");
3071 case TYPE_CODE_STRING:
3072 printf_filtered ("(TYPE_CODE_STRING)");
3074 case TYPE_CODE_BITSTRING:
3075 printf_filtered ("(TYPE_CODE_BITSTRING)");
3077 case TYPE_CODE_ERROR:
3078 printf_filtered ("(TYPE_CODE_ERROR)");
3080 case TYPE_CODE_MEMBER:
3081 printf_filtered ("(TYPE_CODE_MEMBER)");
3083 case TYPE_CODE_METHOD:
3084 printf_filtered ("(TYPE_CODE_METHOD)");
3087 printf_filtered ("(TYPE_CODE_REF)");
3089 case TYPE_CODE_CHAR:
3090 printf_filtered ("(TYPE_CODE_CHAR)");
3092 case TYPE_CODE_BOOL:
3093 printf_filtered ("(TYPE_CODE_BOOL)");
3095 case TYPE_CODE_COMPLEX:
3096 printf_filtered ("(TYPE_CODE_COMPLEX)");
3098 case TYPE_CODE_TYPEDEF:
3099 printf_filtered ("(TYPE_CODE_TYPEDEF)");
3101 case TYPE_CODE_TEMPLATE:
3102 printf_filtered ("(TYPE_CODE_TEMPLATE)");
3104 case TYPE_CODE_TEMPLATE_ARG:
3105 printf_filtered ("(TYPE_CODE_TEMPLATE_ARG)");
3108 printf_filtered ("(UNKNOWN TYPE CODE)");
3111 puts_filtered ("\n");
3112 printfi_filtered (spaces, "length %d\n", TYPE_LENGTH (type));
3113 printfi_filtered (spaces, "upper_bound_type 0x%x ",
3114 TYPE_ARRAY_UPPER_BOUND_TYPE (type));
3115 print_bound_type (TYPE_ARRAY_UPPER_BOUND_TYPE (type));
3116 puts_filtered ("\n");
3117 printfi_filtered (spaces, "lower_bound_type 0x%x ",
3118 TYPE_ARRAY_LOWER_BOUND_TYPE (type));
3119 print_bound_type (TYPE_ARRAY_LOWER_BOUND_TYPE (type));
3120 puts_filtered ("\n");
3121 printfi_filtered (spaces, "objfile ");
3122 gdb_print_host_address (TYPE_OBJFILE (type), gdb_stdout);
3123 printf_filtered ("\n");
3124 printfi_filtered (spaces, "target_type ");
3125 gdb_print_host_address (TYPE_TARGET_TYPE (type), gdb_stdout);
3126 printf_filtered ("\n");
3127 if (TYPE_TARGET_TYPE (type) != NULL)
3129 recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
3131 printfi_filtered (spaces, "pointer_type ");
3132 gdb_print_host_address (TYPE_POINTER_TYPE (type), gdb_stdout);
3133 printf_filtered ("\n");
3134 printfi_filtered (spaces, "reference_type ");
3135 gdb_print_host_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
3136 printf_filtered ("\n");
3137 printfi_filtered (spaces, "type_chain ");
3138 gdb_print_host_address (TYPE_CHAIN (type), gdb_stdout);
3139 printf_filtered ("\n");
3140 printfi_filtered (spaces, "instance_flags 0x%x", TYPE_INSTANCE_FLAGS (type));
3141 if (TYPE_CONST (type))
3143 puts_filtered (" TYPE_FLAG_CONST");
3145 if (TYPE_VOLATILE (type))
3147 puts_filtered (" TYPE_FLAG_VOLATILE");
3149 if (TYPE_CODE_SPACE (type))
3151 puts_filtered (" TYPE_FLAG_CODE_SPACE");
3153 if (TYPE_DATA_SPACE (type))
3155 puts_filtered (" TYPE_FLAG_DATA_SPACE");
3157 if (TYPE_ADDRESS_CLASS_1 (type))
3159 puts_filtered (" TYPE_FLAG_ADDRESS_CLASS_1");
3161 if (TYPE_ADDRESS_CLASS_2 (type))
3163 puts_filtered (" TYPE_FLAG_ADDRESS_CLASS_2");
3165 puts_filtered ("\n");
3166 printfi_filtered (spaces, "flags 0x%x", TYPE_FLAGS (type));
3167 if (TYPE_UNSIGNED (type))
3169 puts_filtered (" TYPE_FLAG_UNSIGNED");
3171 if (TYPE_NOSIGN (type))
3173 puts_filtered (" TYPE_FLAG_NOSIGN");
3175 if (TYPE_STUB (type))
3177 puts_filtered (" TYPE_FLAG_STUB");
3179 if (TYPE_TARGET_STUB (type))
3181 puts_filtered (" TYPE_FLAG_TARGET_STUB");
3183 if (TYPE_STATIC (type))
3185 puts_filtered (" TYPE_FLAG_STATIC");
3187 if (TYPE_PROTOTYPED (type))
3189 puts_filtered (" TYPE_FLAG_PROTOTYPED");
3191 if (TYPE_INCOMPLETE (type))
3193 puts_filtered (" TYPE_FLAG_INCOMPLETE");
3195 if (TYPE_VARARGS (type))
3197 puts_filtered (" TYPE_FLAG_VARARGS");
3199 /* This is used for things like AltiVec registers on ppc. Gcc emits
3200 an attribute for the array type, which tells whether or not we
3201 have a vector, instead of a regular array. */
3202 if (TYPE_VECTOR (type))
3204 puts_filtered (" TYPE_FLAG_VECTOR");
3206 puts_filtered ("\n");
3207 printfi_filtered (spaces, "nfields %d ", TYPE_NFIELDS (type));
3208 gdb_print_host_address (TYPE_FIELDS (type), gdb_stdout);
3209 puts_filtered ("\n");
3210 for (idx = 0; idx < TYPE_NFIELDS (type); idx++)
3212 printfi_filtered (spaces + 2,
3213 "[%d] bitpos %d bitsize %d type ",
3214 idx, TYPE_FIELD_BITPOS (type, idx),
3215 TYPE_FIELD_BITSIZE (type, idx));
3216 gdb_print_host_address (TYPE_FIELD_TYPE (type, idx), gdb_stdout);
3217 printf_filtered (" name '%s' (",
3218 TYPE_FIELD_NAME (type, idx) != NULL
3219 ? TYPE_FIELD_NAME (type, idx)
3221 gdb_print_host_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
3222 printf_filtered (")\n");
3223 if (TYPE_FIELD_TYPE (type, idx) != NULL)
3225 recursive_dump_type (TYPE_FIELD_TYPE (type, idx), spaces + 4);
3228 printfi_filtered (spaces, "vptr_basetype ");
3229 gdb_print_host_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
3230 puts_filtered ("\n");
3231 if (TYPE_VPTR_BASETYPE (type) != NULL)
3233 recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
3235 printfi_filtered (spaces, "vptr_fieldno %d\n", TYPE_VPTR_FIELDNO (type));
3236 switch (TYPE_CODE (type))
3238 case TYPE_CODE_STRUCT:
3239 printfi_filtered (spaces, "cplus_stuff ");
3240 gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
3241 puts_filtered ("\n");
3242 print_cplus_stuff (type, spaces);
3246 printfi_filtered (spaces, "floatformat ");
3247 if (TYPE_FLOATFORMAT (type) == NULL
3248 || TYPE_FLOATFORMAT (type)->name == NULL)
3249 puts_filtered ("(null)");
3251 puts_filtered (TYPE_FLOATFORMAT (type)->name);
3252 puts_filtered ("\n");
3256 /* We have to pick one of the union types to be able print and test
3257 the value. Pick cplus_struct_type, even though we know it isn't
3258 any particular one. */
3259 printfi_filtered (spaces, "type_specific ");
3260 gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
3261 if (TYPE_CPLUS_SPECIFIC (type) != NULL)
3263 printf_filtered (" (unknown data form)");
3265 printf_filtered ("\n");
3270 obstack_free (&dont_print_type_obstack, NULL);
3273 static void build_gdbtypes (void);
3275 build_gdbtypes (void)
3278 init_type (TYPE_CODE_VOID, 1,
3280 "void", (struct objfile *) NULL);
3282 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3284 | (TARGET_CHAR_SIGNED ? 0 : TYPE_FLAG_UNSIGNED)),
3285 "char", (struct objfile *) NULL);
3286 builtin_type_true_char =
3287 init_type (TYPE_CODE_CHAR, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3289 "true character", (struct objfile *) NULL);
3290 builtin_type_signed_char =
3291 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3293 "signed char", (struct objfile *) NULL);
3294 builtin_type_unsigned_char =
3295 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3297 "unsigned char", (struct objfile *) NULL);
3298 builtin_type_short =
3299 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
3301 "short", (struct objfile *) NULL);
3302 builtin_type_unsigned_short =
3303 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
3305 "unsigned short", (struct objfile *) NULL);
3307 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3309 "int", (struct objfile *) NULL);
3310 builtin_type_unsigned_int =
3311 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3313 "unsigned int", (struct objfile *) NULL);
3315 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
3317 "long", (struct objfile *) NULL);
3318 builtin_type_unsigned_long =
3319 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
3321 "unsigned long", (struct objfile *) NULL);
3322 builtin_type_long_long =
3323 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
3325 "long long", (struct objfile *) NULL);
3326 builtin_type_unsigned_long_long =
3327 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
3329 "unsigned long long", (struct objfile *) NULL);
3330 builtin_type_float =
3331 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
3333 "float", (struct objfile *) NULL);
3335 The below lines are disabled since they are doing the wrong
3336 thing for non-multiarch targets. They are setting the correct
3337 type of floats for the target but while on multiarch targets
3338 this is done everytime the architecture changes, it's done on
3339 non-multiarch targets only on startup, leaving the wrong values
3340 in even if the architecture changes (eg. from big-endian to
3343 TYPE_FLOATFORMAT (builtin_type_float) = TARGET_FLOAT_FORMAT;
3345 builtin_type_double =
3346 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3348 "double", (struct objfile *) NULL);
3350 TYPE_FLOATFORMAT (builtin_type_double) = TARGET_DOUBLE_FORMAT;
3352 builtin_type_long_double =
3353 init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
3355 "long double", (struct objfile *) NULL);
3357 TYPE_FLOATFORMAT (builtin_type_long_double) = TARGET_LONG_DOUBLE_FORMAT;
3359 builtin_type_complex =
3360 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
3362 "complex", (struct objfile *) NULL);
3363 TYPE_TARGET_TYPE (builtin_type_complex) = builtin_type_float;
3364 builtin_type_double_complex =
3365 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3367 "double complex", (struct objfile *) NULL);
3368 TYPE_TARGET_TYPE (builtin_type_double_complex) = builtin_type_double;
3369 builtin_type_string =
3370 init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3372 "string", (struct objfile *) NULL);
3374 init_type (TYPE_CODE_INT, 8 / 8,
3376 "int8_t", (struct objfile *) NULL);
3377 builtin_type_uint8 =
3378 init_type (TYPE_CODE_INT, 8 / 8,
3380 "uint8_t", (struct objfile *) NULL);
3381 builtin_type_int16 =
3382 init_type (TYPE_CODE_INT, 16 / 8,
3384 "int16_t", (struct objfile *) NULL);
3385 builtin_type_uint16 =
3386 init_type (TYPE_CODE_INT, 16 / 8,
3388 "uint16_t", (struct objfile *) NULL);
3389 builtin_type_int32 =
3390 init_type (TYPE_CODE_INT, 32 / 8,
3392 "int32_t", (struct objfile *) NULL);
3393 builtin_type_uint32 =
3394 init_type (TYPE_CODE_INT, 32 / 8,
3396 "uint32_t", (struct objfile *) NULL);
3397 builtin_type_int64 =
3398 init_type (TYPE_CODE_INT, 64 / 8,
3400 "int64_t", (struct objfile *) NULL);
3401 builtin_type_uint64 =
3402 init_type (TYPE_CODE_INT, 64 / 8,
3404 "uint64_t", (struct objfile *) NULL);
3405 builtin_type_int128 =
3406 init_type (TYPE_CODE_INT, 128 / 8,
3408 "int128_t", (struct objfile *) NULL);
3409 builtin_type_uint128 =
3410 init_type (TYPE_CODE_INT, 128 / 8,
3412 "uint128_t", (struct objfile *) NULL);
3414 init_type (TYPE_CODE_BOOL, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3416 "bool", (struct objfile *) NULL);
3418 /* Add user knob for controlling resolution of opaque types */
3420 (add_set_cmd ("opaque-type-resolution", class_support, var_boolean, (char *) &opaque_type_resolution,
3421 "Set resolution of opaque struct/class/union types (if set before loading symbols).",
3424 opaque_type_resolution = 1;
3426 /* Build SIMD types. */
3428 = init_simd_type ("__builtin_v4sf", builtin_type_float, "f", 4);
3430 = init_simd_type ("__builtin_v4si", builtin_type_int32, "f", 4);
3432 = init_simd_type ("__builtin_v16qi", builtin_type_int8, "f", 16);
3434 = init_simd_type ("__builtin_v8qi", builtin_type_int8, "f", 8);
3436 = init_simd_type ("__builtin_v8hi", builtin_type_int16, "f", 8);
3438 = init_simd_type ("__builtin_v4hi", builtin_type_int16, "f", 4);
3440 = init_simd_type ("__builtin_v2si", builtin_type_int32, "f", 2);
3442 /* 128 bit vectors. */
3443 builtin_type_v2_double = init_vector_type (builtin_type_double, 2);
3444 builtin_type_v4_float = init_vector_type (builtin_type_float, 4);
3445 builtin_type_v2_int64 = init_vector_type (builtin_type_int64, 2);
3446 builtin_type_v4_int32 = init_vector_type (builtin_type_int32, 4);
3447 builtin_type_v8_int16 = init_vector_type (builtin_type_int16, 8);
3448 builtin_type_v16_int8 = init_vector_type (builtin_type_int8, 16);
3449 /* 64 bit vectors. */
3450 builtin_type_v2_float = init_vector_type (builtin_type_float, 2);
3451 builtin_type_v2_int32 = init_vector_type (builtin_type_int32, 2);
3452 builtin_type_v4_int16 = init_vector_type (builtin_type_int16, 4);
3453 builtin_type_v8_int8 = init_vector_type (builtin_type_int8, 8);
3456 builtin_type_vec64 = build_builtin_type_vec64 ();
3457 builtin_type_vec64i = build_builtin_type_vec64i ();
3458 builtin_type_vec128 = build_builtin_type_vec128 ();
3459 builtin_type_vec128i = build_builtin_type_vec128i ();
3461 /* Pointer/Address types. */
3463 /* NOTE: on some targets, addresses and pointers are not necessarily
3464 the same --- for example, on the D10V, pointers are 16 bits long,
3465 but addresses are 32 bits long. See doc/gdbint.texinfo,
3466 ``Pointers Are Not Always Addresses''.
3469 - gdb's `struct type' always describes the target's
3471 - gdb's `struct value' objects should always hold values in
3473 - gdb's CORE_ADDR values are addresses in the unified virtual
3474 address space that the assembler and linker work with. Thus,
3475 since target_read_memory takes a CORE_ADDR as an argument, it
3476 can access any memory on the target, even if the processor has
3477 separate code and data address spaces.
3480 - If v is a value holding a D10V code pointer, its contents are
3481 in target form: a big-endian address left-shifted two bits.
3482 - If p is a D10V pointer type, TYPE_LENGTH (p) == 2, just as
3483 sizeof (void *) == 2 on the target.
3485 In this context, builtin_type_CORE_ADDR is a bit odd: it's a
3486 target type for a value the target will never see. It's only
3487 used to hold the values of (typeless) linker symbols, which are
3488 indeed in the unified virtual address space. */
3489 builtin_type_void_data_ptr = make_pointer_type (builtin_type_void, NULL);
3490 builtin_type_void_func_ptr
3491 = lookup_pointer_type (lookup_function_type (builtin_type_void));
3492 builtin_type_CORE_ADDR =
3493 init_type (TYPE_CODE_INT, TARGET_ADDR_BIT / 8,
3495 "__CORE_ADDR", (struct objfile *) NULL);
3496 builtin_type_bfd_vma =
3497 init_type (TYPE_CODE_INT, TARGET_BFD_VMA_BIT / 8,
3499 "__bfd_vma", (struct objfile *) NULL);
3502 extern void _initialize_gdbtypes (void);
3504 _initialize_gdbtypes (void)
3506 struct cmd_list_element *c;
3509 /* FIXME - For the moment, handle types by swapping them in and out.
3510 Should be using the per-architecture data-pointer and a large
3512 register_gdbarch_swap (&builtin_type_void, sizeof (struct type *), NULL);
3513 register_gdbarch_swap (&builtin_type_char, sizeof (struct type *), NULL);
3514 register_gdbarch_swap (&builtin_type_short, sizeof (struct type *), NULL);
3515 register_gdbarch_swap (&builtin_type_int, sizeof (struct type *), NULL);
3516 register_gdbarch_swap (&builtin_type_long, sizeof (struct type *), NULL);
3517 register_gdbarch_swap (&builtin_type_long_long, sizeof (struct type *), NULL);
3518 register_gdbarch_swap (&builtin_type_signed_char, sizeof (struct type *), NULL);
3519 register_gdbarch_swap (&builtin_type_unsigned_char, sizeof (struct type *), NULL);
3520 register_gdbarch_swap (&builtin_type_unsigned_short, sizeof (struct type *), NULL);
3521 register_gdbarch_swap (&builtin_type_unsigned_int, sizeof (struct type *), NULL);
3522 register_gdbarch_swap (&builtin_type_unsigned_long, sizeof (struct type *), NULL);
3523 register_gdbarch_swap (&builtin_type_unsigned_long_long, sizeof (struct type *), NULL);
3524 register_gdbarch_swap (&builtin_type_float, sizeof (struct type *), NULL);
3525 register_gdbarch_swap (&builtin_type_double, sizeof (struct type *), NULL);
3526 register_gdbarch_swap (&builtin_type_long_double, sizeof (struct type *), NULL);
3527 register_gdbarch_swap (&builtin_type_complex, sizeof (struct type *), NULL);
3528 register_gdbarch_swap (&builtin_type_double_complex, sizeof (struct type *), NULL);
3529 register_gdbarch_swap (&builtin_type_string, sizeof (struct type *), NULL);
3530 register_gdbarch_swap (&builtin_type_int8, sizeof (struct type *), NULL);
3531 register_gdbarch_swap (&builtin_type_uint8, sizeof (struct type *), NULL);
3532 register_gdbarch_swap (&builtin_type_int16, sizeof (struct type *), NULL);
3533 register_gdbarch_swap (&builtin_type_uint16, sizeof (struct type *), NULL);
3534 register_gdbarch_swap (&builtin_type_int32, sizeof (struct type *), NULL);
3535 register_gdbarch_swap (&builtin_type_uint32, sizeof (struct type *), NULL);
3536 register_gdbarch_swap (&builtin_type_int64, sizeof (struct type *), NULL);
3537 register_gdbarch_swap (&builtin_type_uint64, sizeof (struct type *), NULL);
3538 register_gdbarch_swap (&builtin_type_int128, sizeof (struct type *), NULL);
3539 register_gdbarch_swap (&builtin_type_uint128, sizeof (struct type *), NULL);
3540 register_gdbarch_swap (&builtin_type_v4sf, sizeof (struct type *), NULL);
3541 register_gdbarch_swap (&builtin_type_v4si, sizeof (struct type *), NULL);
3542 register_gdbarch_swap (&builtin_type_v16qi, sizeof (struct type *), NULL);
3543 register_gdbarch_swap (&builtin_type_v8qi, sizeof (struct type *), NULL);
3544 register_gdbarch_swap (&builtin_type_v8hi, sizeof (struct type *), NULL);
3545 register_gdbarch_swap (&builtin_type_v4hi, sizeof (struct type *), NULL);
3546 register_gdbarch_swap (&builtin_type_v2si, sizeof (struct type *), NULL);
3547 register_gdbarch_swap (&builtin_type_v2_double, sizeof (struct type *), NULL);
3548 register_gdbarch_swap (&builtin_type_v4_float, sizeof (struct type *), NULL);
3549 register_gdbarch_swap (&builtin_type_v2_int64, sizeof (struct type *), NULL);
3550 register_gdbarch_swap (&builtin_type_v4_int32, sizeof (struct type *), NULL);
3551 register_gdbarch_swap (&builtin_type_v8_int16, sizeof (struct type *), NULL);
3552 register_gdbarch_swap (&builtin_type_v16_int8, sizeof (struct type *), NULL);
3553 register_gdbarch_swap (&builtin_type_v2_float, sizeof (struct type *), NULL);
3554 register_gdbarch_swap (&builtin_type_v2_int32, sizeof (struct type *), NULL);
3555 register_gdbarch_swap (&builtin_type_v8_int8, sizeof (struct type *), NULL);
3556 register_gdbarch_swap (&builtin_type_v4_int16, sizeof (struct type *), NULL);
3557 register_gdbarch_swap (&builtin_type_vec128, sizeof (struct type *), NULL);
3558 register_gdbarch_swap (&builtin_type_vec128i, sizeof (struct type *), NULL);
3559 REGISTER_GDBARCH_SWAP (builtin_type_void_data_ptr);
3560 REGISTER_GDBARCH_SWAP (builtin_type_void_func_ptr);
3561 REGISTER_GDBARCH_SWAP (builtin_type_CORE_ADDR);
3562 REGISTER_GDBARCH_SWAP (builtin_type_bfd_vma);
3563 register_gdbarch_swap (NULL, 0, build_gdbtypes);
3565 /* Note: These types do not need to be swapped - they are target
3567 builtin_type_ieee_single_big =
3568 init_type (TYPE_CODE_FLT, floatformat_ieee_single_big.totalsize / 8,
3569 0, "builtin_type_ieee_single_big", NULL);
3570 TYPE_FLOATFORMAT (builtin_type_ieee_single_big) = &floatformat_ieee_single_big;
3571 builtin_type_ieee_single_little =
3572 init_type (TYPE_CODE_FLT, floatformat_ieee_single_little.totalsize / 8,
3573 0, "builtin_type_ieee_single_little", NULL);
3574 TYPE_FLOATFORMAT (builtin_type_ieee_single_little) = &floatformat_ieee_single_little;
3575 builtin_type_ieee_double_big =
3576 init_type (TYPE_CODE_FLT, floatformat_ieee_double_big.totalsize / 8,
3577 0, "builtin_type_ieee_double_big", NULL);
3578 TYPE_FLOATFORMAT (builtin_type_ieee_double_big) = &floatformat_ieee_double_big;
3579 builtin_type_ieee_double_little =
3580 init_type (TYPE_CODE_FLT, floatformat_ieee_double_little.totalsize / 8,
3581 0, "builtin_type_ieee_double_little", NULL);
3582 TYPE_FLOATFORMAT (builtin_type_ieee_double_little) = &floatformat_ieee_double_little;
3583 builtin_type_ieee_double_littlebyte_bigword =
3584 init_type (TYPE_CODE_FLT, floatformat_ieee_double_littlebyte_bigword.totalsize / 8,
3585 0, "builtin_type_ieee_double_littlebyte_bigword", NULL);
3586 TYPE_FLOATFORMAT (builtin_type_ieee_double_littlebyte_bigword) = &floatformat_ieee_double_littlebyte_bigword;
3587 builtin_type_i387_ext =
3588 init_type (TYPE_CODE_FLT, floatformat_i387_ext.totalsize / 8,
3589 0, "builtin_type_i387_ext", NULL);
3590 TYPE_FLOATFORMAT (builtin_type_i387_ext) = &floatformat_i387_ext;
3591 builtin_type_m68881_ext =
3592 init_type (TYPE_CODE_FLT, floatformat_m68881_ext.totalsize / 8,
3593 0, "builtin_type_m68881_ext", NULL);
3594 TYPE_FLOATFORMAT (builtin_type_m68881_ext) = &floatformat_m68881_ext;
3595 builtin_type_i960_ext =
3596 init_type (TYPE_CODE_FLT, floatformat_i960_ext.totalsize / 8,
3597 0, "builtin_type_i960_ext", NULL);
3598 TYPE_FLOATFORMAT (builtin_type_i960_ext) = &floatformat_i960_ext;
3599 builtin_type_m88110_ext =
3600 init_type (TYPE_CODE_FLT, floatformat_m88110_ext.totalsize / 8,
3601 0, "builtin_type_m88110_ext", NULL);
3602 TYPE_FLOATFORMAT (builtin_type_m88110_ext) = &floatformat_m88110_ext;
3603 builtin_type_m88110_harris_ext =
3604 init_type (TYPE_CODE_FLT, floatformat_m88110_harris_ext.totalsize / 8,
3605 0, "builtin_type_m88110_harris_ext", NULL);
3606 TYPE_FLOATFORMAT (builtin_type_m88110_harris_ext) = &floatformat_m88110_harris_ext;
3607 builtin_type_arm_ext_big =
3608 init_type (TYPE_CODE_FLT, floatformat_arm_ext_big.totalsize / 8,
3609 0, "builtin_type_arm_ext_big", NULL);
3610 TYPE_FLOATFORMAT (builtin_type_arm_ext_big) = &floatformat_arm_ext_big;
3611 builtin_type_arm_ext_littlebyte_bigword =
3612 init_type (TYPE_CODE_FLT, floatformat_arm_ext_littlebyte_bigword.totalsize / 8,
3613 0, "builtin_type_arm_ext_littlebyte_bigword", NULL);
3614 TYPE_FLOATFORMAT (builtin_type_arm_ext_littlebyte_bigword) = &floatformat_arm_ext_littlebyte_bigword;
3615 builtin_type_ia64_spill_big =
3616 init_type (TYPE_CODE_FLT, floatformat_ia64_spill_big.totalsize / 8,
3617 0, "builtin_type_ia64_spill_big", NULL);
3618 TYPE_FLOATFORMAT (builtin_type_ia64_spill_big) = &floatformat_ia64_spill_big;
3619 builtin_type_ia64_spill_little =
3620 init_type (TYPE_CODE_FLT, floatformat_ia64_spill_little.totalsize / 8,
3621 0, "builtin_type_ia64_spill_little", NULL);
3622 TYPE_FLOATFORMAT (builtin_type_ia64_spill_little) = &floatformat_ia64_spill_little;
3623 builtin_type_ia64_quad_big =
3624 init_type (TYPE_CODE_FLT, floatformat_ia64_quad_big.totalsize / 8,
3625 0, "builtin_type_ia64_quad_big", NULL);
3626 TYPE_FLOATFORMAT (builtin_type_ia64_quad_big) = &floatformat_ia64_quad_big;
3627 builtin_type_ia64_quad_little =
3628 init_type (TYPE_CODE_FLT, floatformat_ia64_quad_little.totalsize / 8,
3629 0, "builtin_type_ia64_quad_little", NULL);
3630 TYPE_FLOATFORMAT (builtin_type_ia64_quad_little) = &floatformat_ia64_quad_little;
3633 add_set_cmd ("overload", no_class, var_zinteger, (char *) &overload_debug,
3634 "Set debugging of C++ overloading.\n\
3635 When enabled, ranking of the functions\n\
3636 is displayed.", &setdebuglist),