1 /* Support routines for manipulating internal types for GDB.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
3 Contributed by Cygnus Support, using pieces from other GDB modules.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 #include "gdb_string.h"
28 #include "expression.h"
33 #include "complaints.h"
35 /* These variables point to the objects
36 representing the predefined C data types. */
38 struct type *builtin_type_void;
39 struct type *builtin_type_char;
40 struct type *builtin_type_short;
41 struct type *builtin_type_int;
42 struct type *builtin_type_long;
43 struct type *builtin_type_long_long;
44 struct type *builtin_type_signed_char;
45 struct type *builtin_type_unsigned_char;
46 struct type *builtin_type_unsigned_short;
47 struct type *builtin_type_unsigned_int;
48 struct type *builtin_type_unsigned_long;
49 struct type *builtin_type_unsigned_long_long;
50 struct type *builtin_type_float;
51 struct type *builtin_type_double;
52 struct type *builtin_type_long_double;
53 struct type *builtin_type_complex;
54 struct type *builtin_type_double_complex;
55 struct type *builtin_type_string;
56 struct type *builtin_type_int8;
57 struct type *builtin_type_uint8;
58 struct type *builtin_type_int16;
59 struct type *builtin_type_uint16;
60 struct type *builtin_type_int32;
61 struct type *builtin_type_uint32;
62 struct type *builtin_type_int64;
63 struct type *builtin_type_uint64;
64 /* start-sanitize-r5900 */
65 struct type *builtin_type_int128;
66 struct type *builtin_type_uint128;
67 /* end-sanitize-r5900 */
69 struct extra { char str[128]; int len; }; /* maximum extention is 128! FIXME */
71 static void add_name PARAMS ((struct extra *, char *));
72 static void add_mangled_type PARAMS ((struct extra *, struct type *));
74 static void cfront_mangle_name PARAMS ((struct type *, int, int));
76 static void print_bit_vector PARAMS ((B_TYPE *, int));
77 static void print_arg_types PARAMS ((struct type **, int));
78 static void dump_fn_fieldlists PARAMS ((struct type *, int));
79 static void print_cplus_stuff PARAMS ((struct type *, int));
81 /* Alloc a new type structure and fill it with some defaults. If
82 OBJFILE is non-NULL, then allocate the space for the type structure
83 in that objfile's type_obstack. */
87 struct objfile *objfile;
89 register struct type *type;
91 /* Alloc the structure and start off with all fields zeroed. */
95 type = (struct type *) xmalloc (sizeof (struct type));
99 type = (struct type *) obstack_alloc (&objfile -> type_obstack,
100 sizeof (struct type));
101 OBJSTAT (objfile, n_types++);
103 memset ((char *) type, 0, sizeof (struct type));
105 /* Initialize the fields that might not be zero. */
107 TYPE_CODE (type) = TYPE_CODE_UNDEF;
108 TYPE_OBJFILE (type) = objfile;
109 TYPE_VPTR_FIELDNO (type) = -1;
114 /* Lookup a pointer to a type TYPE. TYPEPTR, if nonzero, points
115 to a pointer to memory where the pointer type should be stored.
116 If *TYPEPTR is zero, update it to point to the pointer type we return.
117 We allocate new memory if needed. */
120 make_pointer_type (type, typeptr)
122 struct type **typeptr;
124 register struct type *ntype; /* New type */
125 struct objfile *objfile;
127 ntype = TYPE_POINTER_TYPE (type);
131 return ntype; /* Don't care about alloc, and have new type. */
132 else if (*typeptr == 0)
134 *typeptr = ntype; /* Tracking alloc, and we have new type. */
138 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
140 ntype = alloc_type (TYPE_OBJFILE (type));
144 else /* We have storage, but need to reset it. */
147 objfile = TYPE_OBJFILE (ntype);
148 memset ((char *) ntype, 0, sizeof (struct type));
149 TYPE_OBJFILE (ntype) = objfile;
152 TYPE_TARGET_TYPE (ntype) = type;
153 TYPE_POINTER_TYPE (type) = ntype;
155 /* FIXME! Assume the machine has only one representation for pointers! */
157 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
158 TYPE_CODE (ntype) = TYPE_CODE_PTR;
160 /* pointers are unsigned */
161 TYPE_FLAGS (ntype) |= TYPE_FLAG_UNSIGNED;
163 if (!TYPE_POINTER_TYPE (type)) /* Remember it, if don't have one. */
164 TYPE_POINTER_TYPE (type) = ntype;
169 /* Given a type TYPE, return a type of pointers to that type.
170 May need to construct such a type if this is the first use. */
173 lookup_pointer_type (type)
176 return make_pointer_type (type, (struct type **)0);
179 /* Lookup a C++ `reference' to a type TYPE. TYPEPTR, if nonzero, points
180 to a pointer to memory where the reference type should be stored.
181 If *TYPEPTR is zero, update it to point to the reference type we return.
182 We allocate new memory if needed. */
185 make_reference_type (type, typeptr)
187 struct type **typeptr;
189 register struct type *ntype; /* New type */
190 struct objfile *objfile;
192 ntype = TYPE_REFERENCE_TYPE (type);
196 return ntype; /* Don't care about alloc, and have new type. */
197 else if (*typeptr == 0)
199 *typeptr = ntype; /* Tracking alloc, and we have new type. */
203 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
205 ntype = alloc_type (TYPE_OBJFILE (type));
209 else /* We have storage, but need to reset it. */
212 objfile = TYPE_OBJFILE (ntype);
213 memset ((char *) ntype, 0, sizeof (struct type));
214 TYPE_OBJFILE (ntype) = objfile;
217 TYPE_TARGET_TYPE (ntype) = type;
218 TYPE_REFERENCE_TYPE (type) = ntype;
220 /* FIXME! Assume the machine has only one representation for references,
221 and that it matches the (only) representation for pointers! */
223 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
224 TYPE_CODE (ntype) = TYPE_CODE_REF;
226 if (!TYPE_REFERENCE_TYPE (type)) /* Remember it, if don't have one. */
227 TYPE_REFERENCE_TYPE (type) = ntype;
232 /* Same as above, but caller doesn't care about memory allocation details. */
235 lookup_reference_type (type)
238 return make_reference_type (type, (struct type **)0);
241 /* Lookup a function type that returns type TYPE. TYPEPTR, if nonzero, points
242 to a pointer to memory where the function type should be stored.
243 If *TYPEPTR is zero, update it to point to the function type we return.
244 We allocate new memory if needed. */
247 make_function_type (type, typeptr)
249 struct type **typeptr;
251 register struct type *ntype; /* New type */
252 struct objfile *objfile;
254 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
256 ntype = alloc_type (TYPE_OBJFILE (type));
260 else /* We have storage, but need to reset it. */
263 objfile = TYPE_OBJFILE (ntype);
264 memset ((char *) ntype, 0, sizeof (struct type));
265 TYPE_OBJFILE (ntype) = objfile;
268 TYPE_TARGET_TYPE (ntype) = type;
270 TYPE_LENGTH (ntype) = 1;
271 TYPE_CODE (ntype) = TYPE_CODE_FUNC;
277 /* Given a type TYPE, return a type of functions that return that type.
278 May need to construct such a type if this is the first use. */
281 lookup_function_type (type)
284 return make_function_type (type, (struct type **)0);
287 /* Implement direct support for MEMBER_TYPE in GNU C++.
288 May need to construct such a type if this is the first use.
289 The TYPE is the type of the member. The DOMAIN is the type
290 of the aggregate that the member belongs to. */
293 lookup_member_type (type, domain)
297 register struct type *mtype;
299 mtype = alloc_type (TYPE_OBJFILE (type));
300 smash_to_member_type (mtype, domain, type);
304 /* Allocate a stub method whose return type is TYPE.
305 This apparently happens for speed of symbol reading, since parsing
306 out the arguments to the method is cpu-intensive, the way we are doing
307 it. So, we will fill in arguments later.
308 This always returns a fresh type. */
311 allocate_stub_method (type)
316 mtype = alloc_type (TYPE_OBJFILE (type));
317 TYPE_TARGET_TYPE (mtype) = type;
318 /* _DOMAIN_TYPE (mtype) = unknown yet */
319 /* _ARG_TYPES (mtype) = unknown yet */
320 TYPE_FLAGS (mtype) = TYPE_FLAG_STUB;
321 TYPE_CODE (mtype) = TYPE_CODE_METHOD;
322 TYPE_LENGTH (mtype) = 1;
326 /* Create a range type using either a blank type supplied in RESULT_TYPE,
327 or creating a new type, inheriting the objfile from INDEX_TYPE.
329 Indices will be of type INDEX_TYPE, and will range from LOW_BOUND to
330 HIGH_BOUND, inclusive.
332 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
333 sure it is TYPE_CODE_UNDEF before we bash it into a range type? */
336 create_range_type (result_type, index_type, low_bound, high_bound)
337 struct type *result_type;
338 struct type *index_type;
342 if (result_type == NULL)
344 result_type = alloc_type (TYPE_OBJFILE (index_type));
346 TYPE_CODE (result_type) = TYPE_CODE_RANGE;
347 TYPE_TARGET_TYPE (result_type) = index_type;
348 if (TYPE_FLAGS (index_type) & TYPE_FLAG_STUB)
349 TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
351 TYPE_LENGTH (result_type) = TYPE_LENGTH (check_typedef (index_type));
352 TYPE_NFIELDS (result_type) = 2;
353 TYPE_FIELDS (result_type) = (struct field *)
354 TYPE_ALLOC (result_type, 2 * sizeof (struct field));
355 memset (TYPE_FIELDS (result_type), 0, 2 * sizeof (struct field));
356 TYPE_FIELD_BITPOS (result_type, 0) = low_bound;
357 TYPE_FIELD_BITPOS (result_type, 1) = high_bound;
358 TYPE_FIELD_TYPE (result_type, 0) = builtin_type_int; /* FIXME */
359 TYPE_FIELD_TYPE (result_type, 1) = builtin_type_int; /* FIXME */
362 TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
364 return (result_type);
367 /* Set *LOWP and *HIGHP to the lower and upper bounds of discrete type TYPE.
368 Return 1 of type is a range type, 0 if it is discrete (and bounds
369 will fit in LONGEST), or -1 otherwise. */
372 get_discrete_bounds (type, lowp, highp)
374 LONGEST *lowp, *highp;
376 CHECK_TYPEDEF (type);
377 switch (TYPE_CODE (type))
379 case TYPE_CODE_RANGE:
380 *lowp = TYPE_LOW_BOUND (type);
381 *highp = TYPE_HIGH_BOUND (type);
384 if (TYPE_NFIELDS (type) > 0)
386 /* The enums may not be sorted by value, so search all
390 *lowp = *highp = TYPE_FIELD_BITPOS (type, 0);
391 for (i = 0; i < TYPE_NFIELDS (type); i++)
393 if (TYPE_FIELD_BITPOS (type, i) < *lowp)
394 *lowp = TYPE_FIELD_BITPOS (type, i);
395 if (TYPE_FIELD_BITPOS (type, i) > *highp)
396 *highp = TYPE_FIELD_BITPOS (type, i);
410 if (TYPE_LENGTH (type) > sizeof (LONGEST)) /* Too big */
412 if (!TYPE_UNSIGNED (type))
414 *lowp = - (1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
418 /* ... fall through for unsigned ints ... */
421 /* This round-about calculation is to avoid shifting by
422 TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
423 if TYPE_LENGTH (type) == sizeof (LONGEST). */
424 *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
425 *highp = (*highp - 1) | *highp;
432 /* Create an array type using either a blank type supplied in RESULT_TYPE,
433 or creating a new type, inheriting the objfile from RANGE_TYPE.
435 Elements will be of type ELEMENT_TYPE, the indices will be of type
438 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
439 sure it is TYPE_CODE_UNDEF before we bash it into an array type? */
442 create_array_type (result_type, element_type, range_type)
443 struct type *result_type;
444 struct type *element_type;
445 struct type *range_type;
447 LONGEST low_bound, high_bound;
449 if (result_type == NULL)
451 result_type = alloc_type (TYPE_OBJFILE (range_type));
453 TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
454 TYPE_TARGET_TYPE (result_type) = element_type;
455 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
456 low_bound = high_bound = 0;
457 CHECK_TYPEDEF (element_type);
458 TYPE_LENGTH (result_type) =
459 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
460 TYPE_NFIELDS (result_type) = 1;
461 TYPE_FIELDS (result_type) =
462 (struct field *) TYPE_ALLOC (result_type, sizeof (struct field));
463 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
464 TYPE_FIELD_TYPE (result_type, 0) = range_type;
465 TYPE_VPTR_FIELDNO (result_type) = -1;
467 /* TYPE_FLAG_TARGET_STUB will take care of zero length arrays */
468 if (TYPE_LENGTH (result_type) == 0)
469 TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
471 return (result_type);
474 /* Create a string type using either a blank type supplied in RESULT_TYPE,
475 or creating a new type. String types are similar enough to array of
476 char types that we can use create_array_type to build the basic type
477 and then bash it into a string type.
479 For fixed length strings, the range type contains 0 as the lower
480 bound and the length of the string minus one as the upper bound.
482 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
483 sure it is TYPE_CODE_UNDEF before we bash it into a string type? */
486 create_string_type (result_type, range_type)
487 struct type *result_type;
488 struct type *range_type;
490 result_type = create_array_type (result_type,
491 *current_language->string_char_type,
493 TYPE_CODE (result_type) = TYPE_CODE_STRING;
494 return (result_type);
498 create_set_type (result_type, domain_type)
499 struct type *result_type;
500 struct type *domain_type;
502 LONGEST low_bound, high_bound, bit_length;
503 if (result_type == NULL)
505 result_type = alloc_type (TYPE_OBJFILE (domain_type));
507 TYPE_CODE (result_type) = TYPE_CODE_SET;
508 TYPE_NFIELDS (result_type) = 1;
509 TYPE_FIELDS (result_type) = (struct field *)
510 TYPE_ALLOC (result_type, 1 * sizeof (struct field));
511 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
513 if (! (TYPE_FLAGS (domain_type) & TYPE_FLAG_STUB))
515 if (get_discrete_bounds (domain_type, &low_bound, &high_bound) < 0)
516 low_bound = high_bound = 0;
517 bit_length = high_bound - low_bound + 1;
518 TYPE_LENGTH (result_type)
519 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
521 TYPE_FIELD_TYPE (result_type, 0) = domain_type;
522 return (result_type);
525 /* Smash TYPE to be a type of members of DOMAIN with type TO_TYPE.
526 A MEMBER is a wierd thing -- it amounts to a typed offset into
527 a struct, e.g. "an int at offset 8". A MEMBER TYPE doesn't
528 include the offset (that's the value of the MEMBER itself), but does
529 include the structure type into which it points (for some reason).
531 When "smashing" the type, we preserve the objfile that the
532 old type pointed to, since we aren't changing where the type is actually
536 smash_to_member_type (type, domain, to_type)
539 struct type *to_type;
541 struct objfile *objfile;
543 objfile = TYPE_OBJFILE (type);
545 memset ((char *) type, 0, sizeof (struct type));
546 TYPE_OBJFILE (type) = objfile;
547 TYPE_TARGET_TYPE (type) = to_type;
548 TYPE_DOMAIN_TYPE (type) = domain;
549 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
550 TYPE_CODE (type) = TYPE_CODE_MEMBER;
553 /* Smash TYPE to be a type of method of DOMAIN with type TO_TYPE.
554 METHOD just means `function that gets an extra "this" argument'.
556 When "smashing" the type, we preserve the objfile that the
557 old type pointed to, since we aren't changing where the type is actually
561 smash_to_method_type (type, domain, to_type, args)
564 struct type *to_type;
567 struct objfile *objfile;
569 objfile = TYPE_OBJFILE (type);
571 memset ((char *) type, 0, sizeof (struct type));
572 TYPE_OBJFILE (type) = objfile;
573 TYPE_TARGET_TYPE (type) = to_type;
574 TYPE_DOMAIN_TYPE (type) = domain;
575 TYPE_ARG_TYPES (type) = args;
576 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
577 TYPE_CODE (type) = TYPE_CODE_METHOD;
580 /* Return a typename for a struct/union/enum type without "struct ",
581 "union ", or "enum ". If the type has a NULL name, return NULL. */
584 type_name_no_tag (type)
585 register const struct type *type;
587 if (TYPE_TAG_NAME (type) != NULL)
588 return TYPE_TAG_NAME (type);
590 /* Is there code which expects this to return the name if there is no
591 tag name? My guess is that this is mainly used for C++ in cases where
592 the two will always be the same. */
593 return TYPE_NAME (type);
596 /* Lookup a primitive type named NAME.
597 Return zero if NAME is not a primitive type.*/
600 lookup_primitive_typename (name)
603 struct type ** const *p;
605 for (p = current_language -> la_builtin_type_vector; *p != NULL; p++)
607 if (STREQ ((**p) -> name, name))
615 /* Lookup a typedef or primitive type named NAME,
616 visible in lexical block BLOCK.
617 If NOERR is nonzero, return zero if NAME is not suitably defined. */
620 lookup_typename (name, block, noerr)
625 register struct symbol *sym;
626 register struct type *tmp;
628 sym = lookup_symbol (name, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
629 if (sym == NULL || SYMBOL_CLASS (sym) != LOC_TYPEDEF)
631 tmp = lookup_primitive_typename (name);
636 else if (!tmp && noerr)
642 error ("No type named %s.", name);
645 return (SYMBOL_TYPE (sym));
649 lookup_unsigned_typename (name)
652 char *uns = alloca (strlen (name) + 10);
654 strcpy (uns, "unsigned ");
655 strcpy (uns + 9, name);
656 return (lookup_typename (uns, (struct block *) NULL, 0));
660 lookup_signed_typename (name)
664 char *uns = alloca (strlen (name) + 8);
666 strcpy (uns, "signed ");
667 strcpy (uns + 7, name);
668 t = lookup_typename (uns, (struct block *) NULL, 1);
669 /* If we don't find "signed FOO" just try again with plain "FOO". */
672 return lookup_typename (name, (struct block *) NULL, 0);
675 /* Lookup a structure type named "struct NAME",
676 visible in lexical block BLOCK. */
679 lookup_struct (name, block)
683 register struct symbol *sym;
685 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
686 (struct symtab **) NULL);
690 error ("No struct type named %s.", name);
692 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
694 error ("This context has class, union or enum %s, not a struct.", name);
696 return (SYMBOL_TYPE (sym));
699 /* Lookup a union type named "union NAME",
700 visible in lexical block BLOCK. */
703 lookup_union (name, block)
707 register struct symbol *sym;
709 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
710 (struct symtab **) NULL);
714 error ("No union type named %s.", name);
716 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_UNION)
718 error ("This context has class, struct or enum %s, not a union.", name);
720 return (SYMBOL_TYPE (sym));
723 /* Lookup an enum type named "enum NAME",
724 visible in lexical block BLOCK. */
727 lookup_enum (name, block)
731 register struct symbol *sym;
733 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
734 (struct symtab **) NULL);
737 error ("No enum type named %s.", name);
739 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_ENUM)
741 error ("This context has class, struct or union %s, not an enum.", name);
743 return (SYMBOL_TYPE (sym));
746 /* Lookup a template type named "template NAME<TYPE>",
747 visible in lexical block BLOCK. */
750 lookup_template_type (name, type, block)
756 char *nam = (char*) alloca(strlen(name) + strlen(type->name) + 4);
759 strcat (nam, type->name);
760 strcat (nam, " >"); /* FIXME, extra space still introduced in gcc? */
762 sym = lookup_symbol (nam, block, VAR_NAMESPACE, 0, (struct symtab **)NULL);
766 error ("No template type named %s.", name);
768 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
770 error ("This context has class, union or enum %s, not a struct.", name);
772 return (SYMBOL_TYPE (sym));
775 /* Given a type TYPE, lookup the type of the component of type named NAME.
777 TYPE can be either a struct or union, or a pointer or reference to a struct or
778 union. If it is a pointer or reference, its target type is automatically used.
779 Thus '.' and '->' are interchangable, as specified for the definitions of the
780 expression element types STRUCTOP_STRUCT and STRUCTOP_PTR.
782 If NOERR is nonzero, return zero if NAME is not suitably defined.
783 If NAME is the name of a baseclass type, return that type. */
786 lookup_struct_elt_type (type, name, noerr)
795 CHECK_TYPEDEF (type);
796 if (TYPE_CODE (type) != TYPE_CODE_PTR
797 && TYPE_CODE (type) != TYPE_CODE_REF)
799 type = TYPE_TARGET_TYPE (type);
802 if (TYPE_CODE (type) != TYPE_CODE_STRUCT &&
803 TYPE_CODE (type) != TYPE_CODE_UNION)
805 target_terminal_ours ();
806 gdb_flush (gdb_stdout);
807 fprintf_unfiltered (gdb_stderr, "Type ");
808 type_print (type, "", gdb_stderr, -1);
809 error (" is not a structure or union type.");
813 /* FIXME: This change put in by Michael seems incorrect for the case where
814 the structure tag name is the same as the member name. I.E. when doing
815 "ptype bell->bar" for "struct foo { int bar; int foo; } bell;"
820 typename = type_name_no_tag (type);
821 if (typename != NULL && STREQ (typename, name))
826 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
828 char *t_field_name = TYPE_FIELD_NAME (type, i);
830 if (t_field_name && STREQ (t_field_name, name))
832 return TYPE_FIELD_TYPE (type, i);
836 /* OK, it's not in this class. Recursively check the baseclasses. */
837 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
841 t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, noerr);
853 target_terminal_ours ();
854 gdb_flush (gdb_stdout);
855 fprintf_unfiltered (gdb_stderr, "Type ");
856 type_print (type, "", gdb_stderr, -1);
857 fprintf_unfiltered (gdb_stderr, " has no component named ");
858 fputs_filtered (name, gdb_stderr);
860 return (struct type *)-1; /* For lint */
863 /* If possible, make the vptr_fieldno and vptr_basetype fields of TYPE
864 valid. Callers should be aware that in some cases (for example,
865 the type or one of its baseclasses is a stub type and we are
866 debugging a .o file), this function will not be able to find the virtual
867 function table pointer, and vptr_fieldno will remain -1 and vptr_basetype
871 fill_in_vptr_fieldno (type)
874 CHECK_TYPEDEF (type);
876 if (TYPE_VPTR_FIELDNO (type) < 0)
880 /* We must start at zero in case the first (and only) baseclass is
881 virtual (and hence we cannot share the table pointer). */
882 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
884 fill_in_vptr_fieldno (TYPE_BASECLASS (type, i));
885 if (TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i)) >= 0)
887 TYPE_VPTR_FIELDNO (type)
888 = TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i));
889 TYPE_VPTR_BASETYPE (type)
890 = TYPE_VPTR_BASETYPE (TYPE_BASECLASS (type, i));
897 /* Find the method and field indices for the destructor in class type T.
898 Return 1 if the destructor was found, otherwise, return 0. */
901 get_destructor_fn_field (t, method_indexp, field_indexp)
908 for (i = 0; i < TYPE_NFN_FIELDS (t); i++)
911 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
913 for (j = 0; j < TYPE_FN_FIELDLIST_LENGTH (t, i); j++)
915 if (DESTRUCTOR_PREFIX_P (TYPE_FN_FIELD_PHYSNAME (f, j)))
926 /* Added by Bryan Boreham, Kewill, Sun Sep 17 18:07:17 1989.
928 If this is a stubbed struct (i.e. declared as struct foo *), see if
929 we can find a full definition in some other file. If so, copy this
930 definition, so we can use it in future. There used to be a comment (but
931 not any code) that if we don't find a full definition, we'd set a flag
932 so we don't spend time in the future checking the same type. That would
933 be a mistake, though--we might load in more symbols which contain a
934 full definition for the type.
936 This used to be coded as a macro, but I don't think it is called
937 often enough to merit such treatment. */
939 struct complaint stub_noname_complaint =
940 {"stub type has NULL name", 0, 0};
944 register struct type *type;
946 struct type *orig_type = type;
947 while (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
949 if (!TYPE_TARGET_TYPE (type))
954 /* It is dangerous to call lookup_symbol if we are currently
955 reading a symtab. Infinite recursion is one danger. */
956 if (currently_reading_symtab)
959 name = type_name_no_tag (type);
960 /* FIXME: shouldn't we separately check the TYPE_NAME and the
961 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
962 as appropriate? (this code was written before TYPE_NAME and
963 TYPE_TAG_NAME were separate). */
966 complain (&stub_noname_complaint);
969 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
970 (struct symtab **) NULL);
972 TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
974 TYPE_TARGET_TYPE (type) = alloc_type (NULL); /* TYPE_CODE_UNDEF */
976 type = TYPE_TARGET_TYPE (type);
979 if ((TYPE_FLAGS(type) & TYPE_FLAG_STUB) && ! currently_reading_symtab)
981 char* name = type_name_no_tag (type);
982 /* FIXME: shouldn't we separately check the TYPE_NAME and the
983 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
984 as appropriate? (this code was written before TYPE_NAME and
985 TYPE_TAG_NAME were separate). */
989 complain (&stub_noname_complaint);
992 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
993 (struct symtab **) NULL);
996 memcpy ((char *)type,
997 (char *)SYMBOL_TYPE(sym),
998 sizeof (struct type));
1002 if (TYPE_FLAGS (type) & TYPE_FLAG_TARGET_STUB)
1004 struct type *range_type;
1005 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
1007 if (TYPE_FLAGS (target_type) & (TYPE_FLAG_STUB | TYPE_FLAG_TARGET_STUB))
1009 else if (TYPE_CODE (type) == TYPE_CODE_ARRAY
1010 && TYPE_NFIELDS (type) == 1
1011 && (TYPE_CODE (range_type = TYPE_FIELD_TYPE (type, 0))
1012 == TYPE_CODE_RANGE))
1014 /* Now recompute the length of the array type, based on its
1015 number of elements and the target type's length. */
1016 TYPE_LENGTH (type) =
1017 ((TYPE_FIELD_BITPOS (range_type, 1)
1018 - TYPE_FIELD_BITPOS (range_type, 0)
1020 * TYPE_LENGTH (target_type));
1021 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1023 else if (TYPE_CODE (type) == TYPE_CODE_RANGE)
1025 TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
1026 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1029 /* Cache TYPE_LENGTH for future use. */
1030 TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
1034 /* New code added to support parsing of Cfront stabs strings */
1036 #define INIT_EXTRA { pextras->len=0; pextras->str[0]='\0'; }
1037 #define ADD_EXTRA(c) { pextras->str[pextras->len++]=c; }
1041 struct extra * pextras;
1046 if ((nlen = (n ? strlen(n) : 0))==0)
1048 sprintf(pextras->str+pextras->len,"%d%s",nlen,n);
1049 pextras->len=strlen(pextras->str);
1053 add_mangled_type(pextras,t)
1054 struct extra * pextras;
1057 enum type_code tcode;
1061 tcode = TYPE_CODE(t);
1062 tlen = TYPE_LENGTH(t);
1063 tflags = TYPE_FLAGS(t);
1064 tname = TYPE_NAME(t);
1065 /* args of "..." seem to get mangled as "e" */
1083 if ((pname=strrchr(tname,'l'),pname) && !strcmp(pname,"long"))
1092 static struct complaint msg = {"Bad int type code length x%x\n",0,0};
1094 complain (&msg, tlen);
1113 static struct complaint msg = {"Bad float type code length x%x\n",0,0};
1114 complain (&msg, tlen);
1120 /* followed by what it's a ref to */
1124 /* followed by what it's a ptr to */
1126 case TYPE_CODE_TYPEDEF:
1128 static struct complaint msg = {"Typedefs in overloaded functions not yet supported\n",0,0};
1131 /* followed by type bytes & name */
1133 case TYPE_CODE_FUNC:
1135 /* followed by func's arg '_' & ret types */
1137 case TYPE_CODE_VOID:
1140 case TYPE_CODE_METHOD:
1142 /* followed by name of class and func's arg '_' & ret types */
1143 add_name(pextras,tname);
1144 ADD_EXTRA('F'); /* then mangle function */
1146 case TYPE_CODE_STRUCT: /* C struct */
1147 case TYPE_CODE_UNION: /* C union */
1148 case TYPE_CODE_ENUM: /* Enumeration type */
1149 /* followed by name of type */
1150 add_name(pextras,tname);
1153 /* errors possible types/not supported */
1154 case TYPE_CODE_CHAR:
1155 case TYPE_CODE_ARRAY: /* Array type */
1156 case TYPE_CODE_MEMBER: /* Member type */
1157 case TYPE_CODE_BOOL:
1158 case TYPE_CODE_COMPLEX: /* Complex float */
1159 case TYPE_CODE_UNDEF:
1160 case TYPE_CODE_SET: /* Pascal sets */
1161 case TYPE_CODE_RANGE:
1162 case TYPE_CODE_STRING:
1163 case TYPE_CODE_BITSTRING:
1164 case TYPE_CODE_ERROR:
1167 static struct complaint msg = {"Unknown type code x%x\n",0,0};
1168 complain (&msg, tcode);
1172 add_mangled_type(pextras,t->target_type);
1177 cfront_mangle_name(type, i, j)
1183 char *mangled_name = gdb_mangle_name (type, i, j);
1185 f = TYPE_FN_FIELDLIST1 (type, i); /* moved from below */
1187 /* kludge to support cfront methods - gdb expects to find "F" for
1188 ARM_mangled names, so when we mangle, we have to add it here */
1192 char * arm_mangled_name;
1193 struct fn_field *method = &f[j];
1194 char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
1195 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
1196 char *newname = type_name_no_tag (type);
1198 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
1199 int nargs = TYPE_NFIELDS(ftype); /* number of args */
1200 struct extra extras, * pextras = &extras;
1203 if (TYPE_FN_FIELD_STATIC_P (f, j)) /* j for sublist within this list */
1206 /* add args here! */
1207 if (nargs <= 1) /* no args besides this */
1210 for (k=1; k<nargs; k++)
1213 t = TYPE_FIELD_TYPE(ftype,k);
1214 add_mangled_type(pextras,t);
1218 printf("add_mangled_type: %s\n",extras.str); /* FIXME */
1219 arm_mangled_name = malloc(strlen(mangled_name)+extras.len);
1220 sprintf(arm_mangled_name,"%s%s",mangled_name,extras.str);
1222 mangled_name = arm_mangled_name;
1228 /* End of new code added to support parsing of Cfront stabs strings */
1230 /* Ugly hack to convert method stubs into method types.
1232 He ain't kiddin'. This demangles the name of the method into a string
1233 including argument types, parses out each argument type, generates
1234 a string casting a zero to that type, evaluates the string, and stuffs
1235 the resulting type into an argtype vector!!! Then it knows the type
1236 of the whole function (including argument types for overloading),
1237 which info used to be in the stab's but was removed to hack back
1238 the space required for them. */
1241 check_stub_method (type, i, j)
1247 char *mangled_name = gdb_mangle_name (type, i, j);
1248 char *demangled_name = cplus_demangle (mangled_name,
1249 DMGL_PARAMS | DMGL_ANSI);
1250 char *argtypetext, *p;
1251 int depth = 0, argcount = 1;
1252 struct type **argtypes;
1255 /* Make sure we got back a function string that we can use. */
1257 p = strchr (demangled_name, '(');
1259 if (demangled_name == NULL || p == NULL)
1260 error ("Internal: Cannot demangle mangled name `%s'.", mangled_name);
1262 /* Now, read in the parameters that define this type. */
1275 else if (*p == ',' && depth == 0)
1283 /* We need two more slots: one for the THIS pointer, and one for the
1284 NULL [...] or void [end of arglist]. */
1286 argtypes = (struct type **)
1287 TYPE_ALLOC (type, (argcount + 2) * sizeof (struct type *));
1289 /* FIXME: This is wrong for static member functions. */
1290 argtypes[0] = lookup_pointer_type (type);
1293 if (*p != ')') /* () means no args, skip while */
1298 if (depth <= 0 && (*p == ',' || *p == ')'))
1300 /* Avoid parsing of ellipsis, they will be handled below. */
1301 if (strncmp (argtypetext, "...", p - argtypetext) != 0)
1303 argtypes[argcount] =
1304 parse_and_eval_type (argtypetext, p - argtypetext);
1307 argtypetext = p + 1;
1323 if (p[-2] != '.') /* Not '...' */
1325 argtypes[argcount] = builtin_type_void; /* List terminator */
1329 argtypes[argcount] = NULL; /* Ellist terminator */
1332 free (demangled_name);
1334 f = TYPE_FN_FIELDLIST1 (type, i);
1336 TYPE_FN_FIELD_PHYSNAME (f, j) = mangled_name;
1338 /* Now update the old "stub" type into a real type. */
1339 mtype = TYPE_FN_FIELD_TYPE (f, j);
1340 TYPE_DOMAIN_TYPE (mtype) = type;
1341 TYPE_ARG_TYPES (mtype) = argtypes;
1342 TYPE_FLAGS (mtype) &= ~TYPE_FLAG_STUB;
1343 TYPE_FN_FIELD_STUB (f, j) = 0;
1346 const struct cplus_struct_type cplus_struct_default;
1349 allocate_cplus_struct_type (type)
1352 if (!HAVE_CPLUS_STRUCT (type))
1354 TYPE_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
1355 TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
1356 *(TYPE_CPLUS_SPECIFIC(type)) = cplus_struct_default;
1360 /* Helper function to initialize the standard scalar types.
1362 If NAME is non-NULL and OBJFILE is non-NULL, then we make a copy
1363 of the string pointed to by name in the type_obstack for that objfile,
1364 and initialize the type name to that copy. There are places (mipsread.c
1365 in particular, where init_type is called with a NULL value for NAME). */
1368 init_type (code, length, flags, name, objfile)
1369 enum type_code code;
1373 struct objfile *objfile;
1375 register struct type *type;
1377 type = alloc_type (objfile);
1378 TYPE_CODE (type) = code;
1379 TYPE_LENGTH (type) = length;
1380 TYPE_FLAGS (type) |= flags;
1381 if ((name != NULL) && (objfile != NULL))
1384 obsavestring (name, strlen (name), &objfile -> type_obstack);
1388 TYPE_NAME (type) = name;
1393 if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION)
1395 INIT_CPLUS_SPECIFIC (type);
1400 /* Look up a fundamental type for the specified objfile.
1401 May need to construct such a type if this is the first use.
1403 Some object file formats (ELF, COFF, etc) do not define fundamental
1404 types such as "int" or "double". Others (stabs for example), do
1405 define fundamental types.
1407 For the formats which don't provide fundamental types, gdb can create
1408 such types, using defaults reasonable for the current language and
1409 the current target machine.
1411 NOTE: This routine is obsolescent. Each debugging format reader
1412 should manage it's own fundamental types, either creating them from
1413 suitable defaults or reading them from the debugging information,
1414 whichever is appropriate. The DWARF reader has already been
1415 fixed to do this. Once the other readers are fixed, this routine
1416 will go away. Also note that fundamental types should be managed
1417 on a compilation unit basis in a multi-language environment, not
1418 on a linkage unit basis as is done here. */
1422 lookup_fundamental_type (objfile, typeid)
1423 struct objfile *objfile;
1426 register struct type **typep;
1427 register int nbytes;
1429 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
1431 error ("internal error - invalid fundamental type id %d", typeid);
1434 /* If this is the first time we need a fundamental type for this objfile
1435 then we need to initialize the vector of type pointers. */
1437 if (objfile -> fundamental_types == NULL)
1439 nbytes = FT_NUM_MEMBERS * sizeof (struct type *);
1440 objfile -> fundamental_types = (struct type **)
1441 obstack_alloc (&objfile -> type_obstack, nbytes);
1442 memset ((char *) objfile -> fundamental_types, 0, nbytes);
1443 OBJSTAT (objfile, n_types += FT_NUM_MEMBERS);
1446 /* Look for this particular type in the fundamental type vector. If one is
1447 not found, create and install one appropriate for the current language. */
1449 typep = objfile -> fundamental_types + typeid;
1452 *typep = create_fundamental_type (objfile, typeid);
1462 /* FIXME: Should we return true for references as well as pointers? */
1466 && TYPE_CODE (t) == TYPE_CODE_PTR
1467 && TYPE_CODE (TYPE_TARGET_TYPE (t)) != TYPE_CODE_VOID);
1470 /* Chill varying string and arrays are represented as follows:
1472 struct { int __var_length; ELEMENT_TYPE[MAX_SIZE] __var_data};
1474 Return true if TYPE is such a Chill varying type. */
1477 chill_varying_type (type)
1480 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
1481 || TYPE_NFIELDS (type) != 2
1482 || strcmp (TYPE_FIELD_NAME (type, 0), "__var_length") != 0)
1487 #if MAINTENANCE_CMDS
1490 print_bit_vector (bits, nbits)
1496 for (bitno = 0; bitno < nbits; bitno++)
1498 if ((bitno % 8) == 0)
1500 puts_filtered (" ");
1502 if (B_TST (bits, bitno))
1504 printf_filtered ("1");
1508 printf_filtered ("0");
1513 /* The args list is a strange beast. It is either terminated by a NULL
1514 pointer for varargs functions, or by a pointer to a TYPE_CODE_VOID
1515 type for normal fixed argcount functions. (FIXME someday)
1516 Also note the first arg should be the "this" pointer, we may not want to
1517 include it since we may get into a infinitely recursive situation. */
1520 print_arg_types (args, spaces)
1526 while (*args != NULL)
1528 recursive_dump_type (*args, spaces + 2);
1529 if ((*args++) -> code == TYPE_CODE_VOID)
1538 dump_fn_fieldlists (type, spaces)
1546 printfi_filtered (spaces, "fn_fieldlists ");
1547 gdb_print_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
1548 printf_filtered ("\n");
1549 for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
1551 f = TYPE_FN_FIELDLIST1 (type, method_idx);
1552 printfi_filtered (spaces + 2, "[%d] name '%s' (",
1554 TYPE_FN_FIELDLIST_NAME (type, method_idx));
1555 gdb_print_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
1557 printf_filtered (") length %d\n",
1558 TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
1559 for (overload_idx = 0;
1560 overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
1563 printfi_filtered (spaces + 4, "[%d] physname '%s' (",
1565 TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
1566 gdb_print_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
1568 printf_filtered (")\n");
1569 printfi_filtered (spaces + 8, "type ");
1570 gdb_print_address (TYPE_FN_FIELD_TYPE (f, overload_idx), gdb_stdout);
1571 printf_filtered ("\n");
1573 recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
1576 printfi_filtered (spaces + 8, "args ");
1577 gdb_print_address (TYPE_FN_FIELD_ARGS (f, overload_idx), gdb_stdout);
1578 printf_filtered ("\n");
1580 print_arg_types (TYPE_FN_FIELD_ARGS (f, overload_idx), spaces);
1581 printfi_filtered (spaces + 8, "fcontext ");
1582 gdb_print_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
1584 printf_filtered ("\n");
1586 printfi_filtered (spaces + 8, "is_const %d\n",
1587 TYPE_FN_FIELD_CONST (f, overload_idx));
1588 printfi_filtered (spaces + 8, "is_volatile %d\n",
1589 TYPE_FN_FIELD_VOLATILE (f, overload_idx));
1590 printfi_filtered (spaces + 8, "is_private %d\n",
1591 TYPE_FN_FIELD_PRIVATE (f, overload_idx));
1592 printfi_filtered (spaces + 8, "is_protected %d\n",
1593 TYPE_FN_FIELD_PROTECTED (f, overload_idx));
1594 printfi_filtered (spaces + 8, "is_stub %d\n",
1595 TYPE_FN_FIELD_STUB (f, overload_idx));
1596 printfi_filtered (spaces + 8, "voffset %u\n",
1597 TYPE_FN_FIELD_VOFFSET (f, overload_idx));
1603 print_cplus_stuff (type, spaces)
1607 printfi_filtered (spaces, "n_baseclasses %d\n",
1608 TYPE_N_BASECLASSES (type));
1609 printfi_filtered (spaces, "nfn_fields %d\n",
1610 TYPE_NFN_FIELDS (type));
1611 printfi_filtered (spaces, "nfn_fields_total %d\n",
1612 TYPE_NFN_FIELDS_TOTAL (type));
1613 if (TYPE_N_BASECLASSES (type) > 0)
1615 printfi_filtered (spaces, "virtual_field_bits (%d bits at *",
1616 TYPE_N_BASECLASSES (type));
1617 gdb_print_address (TYPE_FIELD_VIRTUAL_BITS (type), gdb_stdout);
1618 printf_filtered (")");
1620 print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
1621 TYPE_N_BASECLASSES (type));
1622 puts_filtered ("\n");
1624 if (TYPE_NFIELDS (type) > 0)
1626 if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
1628 printfi_filtered (spaces, "private_field_bits (%d bits at *",
1629 TYPE_NFIELDS (type));
1630 gdb_print_address (TYPE_FIELD_PRIVATE_BITS (type), gdb_stdout);
1631 printf_filtered (")");
1632 print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
1633 TYPE_NFIELDS (type));
1634 puts_filtered ("\n");
1636 if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
1638 printfi_filtered (spaces, "protected_field_bits (%d bits at *",
1639 TYPE_NFIELDS (type));
1640 gdb_print_address (TYPE_FIELD_PROTECTED_BITS (type), gdb_stdout);
1641 printf_filtered (")");
1642 print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
1643 TYPE_NFIELDS (type));
1644 puts_filtered ("\n");
1647 if (TYPE_NFN_FIELDS (type) > 0)
1649 dump_fn_fieldlists (type, spaces);
1653 static struct obstack dont_print_type_obstack;
1656 recursive_dump_type (type, spaces)
1663 obstack_begin (&dont_print_type_obstack, 0);
1665 if (TYPE_NFIELDS (type) > 0
1666 || (TYPE_CPLUS_SPECIFIC (type) && TYPE_NFN_FIELDS (type) > 0))
1668 struct type **first_dont_print
1669 = (struct type **)obstack_base (&dont_print_type_obstack);
1671 int i = (struct type **)obstack_next_free (&dont_print_type_obstack)
1676 if (type == first_dont_print[i])
1678 printfi_filtered (spaces, "type node ");
1679 gdb_print_address (type, gdb_stdout);
1680 printf_filtered (" <same as already seen type>\n");
1685 obstack_ptr_grow (&dont_print_type_obstack, type);
1688 printfi_filtered (spaces, "type node ");
1689 gdb_print_address (type, gdb_stdout);
1690 printf_filtered ("\n");
1691 printfi_filtered (spaces, "name '%s' (",
1692 TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
1693 gdb_print_address (TYPE_NAME (type), gdb_stdout);
1694 printf_filtered (")\n");
1695 if (TYPE_TAG_NAME (type) != NULL)
1697 printfi_filtered (spaces, "tagname '%s' (",
1698 TYPE_TAG_NAME (type));
1699 gdb_print_address (TYPE_TAG_NAME (type), gdb_stdout);
1700 printf_filtered (")\n");
1702 printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
1703 switch (TYPE_CODE (type))
1705 case TYPE_CODE_UNDEF:
1706 printf_filtered ("(TYPE_CODE_UNDEF)");
1709 printf_filtered ("(TYPE_CODE_PTR)");
1711 case TYPE_CODE_ARRAY:
1712 printf_filtered ("(TYPE_CODE_ARRAY)");
1714 case TYPE_CODE_STRUCT:
1715 printf_filtered ("(TYPE_CODE_STRUCT)");
1717 case TYPE_CODE_UNION:
1718 printf_filtered ("(TYPE_CODE_UNION)");
1720 case TYPE_CODE_ENUM:
1721 printf_filtered ("(TYPE_CODE_ENUM)");
1723 case TYPE_CODE_FUNC:
1724 printf_filtered ("(TYPE_CODE_FUNC)");
1727 printf_filtered ("(TYPE_CODE_INT)");
1730 printf_filtered ("(TYPE_CODE_FLT)");
1732 case TYPE_CODE_VOID:
1733 printf_filtered ("(TYPE_CODE_VOID)");
1736 printf_filtered ("(TYPE_CODE_SET)");
1738 case TYPE_CODE_RANGE:
1739 printf_filtered ("(TYPE_CODE_RANGE)");
1741 case TYPE_CODE_STRING:
1742 printf_filtered ("(TYPE_CODE_STRING)");
1744 case TYPE_CODE_ERROR:
1745 printf_filtered ("(TYPE_CODE_ERROR)");
1747 case TYPE_CODE_MEMBER:
1748 printf_filtered ("(TYPE_CODE_MEMBER)");
1750 case TYPE_CODE_METHOD:
1751 printf_filtered ("(TYPE_CODE_METHOD)");
1754 printf_filtered ("(TYPE_CODE_REF)");
1756 case TYPE_CODE_CHAR:
1757 printf_filtered ("(TYPE_CODE_CHAR)");
1759 case TYPE_CODE_BOOL:
1760 printf_filtered ("(TYPE_CODE_BOOL)");
1762 case TYPE_CODE_TYPEDEF:
1763 printf_filtered ("(TYPE_CODE_TYPEDEF)");
1766 printf_filtered ("(UNKNOWN TYPE CODE)");
1769 puts_filtered ("\n");
1770 printfi_filtered (spaces, "length %d\n", TYPE_LENGTH (type));
1771 printfi_filtered (spaces, "objfile ");
1772 gdb_print_address (TYPE_OBJFILE (type), gdb_stdout);
1773 printf_filtered ("\n");
1774 printfi_filtered (spaces, "target_type ");
1775 gdb_print_address (TYPE_TARGET_TYPE (type), gdb_stdout);
1776 printf_filtered ("\n");
1777 if (TYPE_TARGET_TYPE (type) != NULL)
1779 recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
1781 printfi_filtered (spaces, "pointer_type ");
1782 gdb_print_address (TYPE_POINTER_TYPE (type), gdb_stdout);
1783 printf_filtered ("\n");
1784 printfi_filtered (spaces, "reference_type ");
1785 gdb_print_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
1786 printf_filtered ("\n");
1787 printfi_filtered (spaces, "flags 0x%x", TYPE_FLAGS (type));
1788 if (TYPE_FLAGS (type) & TYPE_FLAG_UNSIGNED)
1790 puts_filtered (" TYPE_FLAG_UNSIGNED");
1792 if (TYPE_FLAGS (type) & TYPE_FLAG_STUB)
1794 puts_filtered (" TYPE_FLAG_STUB");
1796 puts_filtered ("\n");
1797 printfi_filtered (spaces, "nfields %d ", TYPE_NFIELDS (type));
1798 gdb_print_address (TYPE_FIELDS (type), gdb_stdout);
1799 puts_filtered ("\n");
1800 for (idx = 0; idx < TYPE_NFIELDS (type); idx++)
1802 printfi_filtered (spaces + 2,
1803 "[%d] bitpos %d bitsize %d type ",
1804 idx, TYPE_FIELD_BITPOS (type, idx),
1805 TYPE_FIELD_BITSIZE (type, idx));
1806 gdb_print_address (TYPE_FIELD_TYPE (type, idx), gdb_stdout);
1807 printf_filtered (" name '%s' (",
1808 TYPE_FIELD_NAME (type, idx) != NULL
1809 ? TYPE_FIELD_NAME (type, idx)
1811 gdb_print_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
1812 printf_filtered (")\n");
1813 if (TYPE_FIELD_TYPE (type, idx) != NULL)
1815 recursive_dump_type (TYPE_FIELD_TYPE (type, idx), spaces + 4);
1818 printfi_filtered (spaces, "vptr_basetype ");
1819 gdb_print_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
1820 puts_filtered ("\n");
1821 if (TYPE_VPTR_BASETYPE (type) != NULL)
1823 recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
1825 printfi_filtered (spaces, "vptr_fieldno %d\n", TYPE_VPTR_FIELDNO (type));
1826 switch (TYPE_CODE (type))
1828 case TYPE_CODE_METHOD:
1829 case TYPE_CODE_FUNC:
1830 printfi_filtered (spaces, "arg_types ");
1831 gdb_print_address (TYPE_ARG_TYPES (type), gdb_stdout);
1832 puts_filtered ("\n");
1833 print_arg_types (TYPE_ARG_TYPES (type), spaces);
1836 case TYPE_CODE_STRUCT:
1837 printfi_filtered (spaces, "cplus_stuff ");
1838 gdb_print_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
1839 puts_filtered ("\n");
1840 print_cplus_stuff (type, spaces);
1844 /* We have to pick one of the union types to be able print and test
1845 the value. Pick cplus_struct_type, even though we know it isn't
1846 any particular one. */
1847 printfi_filtered (spaces, "type_specific ");
1848 gdb_print_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
1849 if (TYPE_CPLUS_SPECIFIC (type) != NULL)
1851 printf_filtered (" (unknown data form)");
1853 printf_filtered ("\n");
1858 obstack_free (&dont_print_type_obstack, NULL);
1861 #endif /* MAINTENANCE_CMDS */
1864 _initialize_gdbtypes ()
1867 init_type (TYPE_CODE_VOID, 1,
1869 "void", (struct objfile *) NULL);
1871 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1873 "char", (struct objfile *) NULL);
1874 builtin_type_signed_char =
1875 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1877 "signed char", (struct objfile *) NULL);
1878 builtin_type_unsigned_char =
1879 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1881 "unsigned char", (struct objfile *) NULL);
1882 builtin_type_short =
1883 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
1885 "short", (struct objfile *) NULL);
1886 builtin_type_unsigned_short =
1887 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
1889 "unsigned short", (struct objfile *) NULL);
1891 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1893 "int", (struct objfile *) NULL);
1894 builtin_type_unsigned_int =
1895 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1897 "unsigned int", (struct objfile *) NULL);
1899 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
1901 "long", (struct objfile *) NULL);
1902 builtin_type_unsigned_long =
1903 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
1905 "unsigned long", (struct objfile *) NULL);
1906 builtin_type_long_long =
1907 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
1909 "long long", (struct objfile *) NULL);
1910 builtin_type_unsigned_long_long =
1911 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
1913 "unsigned long long", (struct objfile *) NULL);
1914 builtin_type_float =
1915 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
1917 "float", (struct objfile *) NULL);
1918 builtin_type_double =
1919 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
1921 "double", (struct objfile *) NULL);
1922 builtin_type_long_double =
1923 init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
1925 "long double", (struct objfile *) NULL);
1926 builtin_type_complex =
1927 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
1929 "complex", (struct objfile *) NULL);
1930 TYPE_TARGET_TYPE (builtin_type_complex) = builtin_type_float;
1931 builtin_type_double_complex =
1932 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
1934 "double complex", (struct objfile *) NULL);
1935 TYPE_TARGET_TYPE (builtin_type_double_complex) = builtin_type_double;
1936 builtin_type_string =
1937 init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1939 "string", (struct objfile *) NULL);
1941 init_type (TYPE_CODE_INT, 8 / 8,
1943 "int8_t", (struct objfile *) NULL);
1944 builtin_type_uint8 =
1945 init_type (TYPE_CODE_INT, 8 / 8,
1947 "uint8_t", (struct objfile *) NULL);
1948 builtin_type_int16 =
1949 init_type (TYPE_CODE_INT, 16 / 8,
1951 "int16_t", (struct objfile *) NULL);
1952 builtin_type_uint16 =
1953 init_type (TYPE_CODE_INT, 16 / 8,
1955 "uint16_t", (struct objfile *) NULL);
1956 builtin_type_int32 =
1957 init_type (TYPE_CODE_INT, 32 / 8,
1959 "int32_t", (struct objfile *) NULL);
1960 builtin_type_uint32 =
1961 init_type (TYPE_CODE_INT, 32 / 8,
1963 "uint32_t", (struct objfile *) NULL);
1964 builtin_type_int64 =
1965 init_type (TYPE_CODE_INT, 64 / 8,
1967 "int64_t", (struct objfile *) NULL);
1968 builtin_type_uint64 =
1969 init_type (TYPE_CODE_INT, 64 / 8,
1971 "uint64_t", (struct objfile *) NULL);
1972 /* start-sanitize-r5900 */
1973 builtin_type_int128 =
1974 init_type (TYPE_CODE_INT, 128 / 8,
1976 "int128_t", (struct objfile *) NULL);
1977 builtin_type_uint128 =
1978 init_type (TYPE_CODE_INT, 128 / 8,
1980 "uint128_t", (struct objfile *) NULL);
1981 /* end-sanitize-r5900 */