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);
399 /* Set unsigned indicator if warranted. */
402 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
416 if (TYPE_LENGTH (type) > sizeof (LONGEST)) /* Too big */
418 if (!TYPE_UNSIGNED (type))
420 *lowp = - (1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
424 /* ... fall through for unsigned ints ... */
427 /* This round-about calculation is to avoid shifting by
428 TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
429 if TYPE_LENGTH (type) == sizeof (LONGEST). */
430 *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
431 *highp = (*highp - 1) | *highp;
438 /* Create an array type using either a blank type supplied in RESULT_TYPE,
439 or creating a new type, inheriting the objfile from RANGE_TYPE.
441 Elements will be of type ELEMENT_TYPE, the indices will be of type
444 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
445 sure it is TYPE_CODE_UNDEF before we bash it into an array type? */
448 create_array_type (result_type, element_type, range_type)
449 struct type *result_type;
450 struct type *element_type;
451 struct type *range_type;
453 LONGEST low_bound, high_bound;
455 if (result_type == NULL)
457 result_type = alloc_type (TYPE_OBJFILE (range_type));
459 TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
460 TYPE_TARGET_TYPE (result_type) = element_type;
461 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
462 low_bound = high_bound = 0;
463 CHECK_TYPEDEF (element_type);
464 TYPE_LENGTH (result_type) =
465 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
466 TYPE_NFIELDS (result_type) = 1;
467 TYPE_FIELDS (result_type) =
468 (struct field *) TYPE_ALLOC (result_type, sizeof (struct field));
469 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
470 TYPE_FIELD_TYPE (result_type, 0) = range_type;
471 TYPE_VPTR_FIELDNO (result_type) = -1;
473 /* TYPE_FLAG_TARGET_STUB will take care of zero length arrays */
474 if (TYPE_LENGTH (result_type) == 0)
475 TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
477 return (result_type);
480 /* Create a string type using either a blank type supplied in RESULT_TYPE,
481 or creating a new type. String types are similar enough to array of
482 char types that we can use create_array_type to build the basic type
483 and then bash it into a string type.
485 For fixed length strings, the range type contains 0 as the lower
486 bound and the length of the string minus one as the upper bound.
488 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
489 sure it is TYPE_CODE_UNDEF before we bash it into a string type? */
492 create_string_type (result_type, range_type)
493 struct type *result_type;
494 struct type *range_type;
496 result_type = create_array_type (result_type,
497 *current_language->string_char_type,
499 TYPE_CODE (result_type) = TYPE_CODE_STRING;
500 return (result_type);
504 create_set_type (result_type, domain_type)
505 struct type *result_type;
506 struct type *domain_type;
508 LONGEST low_bound, high_bound, bit_length;
509 if (result_type == NULL)
511 result_type = alloc_type (TYPE_OBJFILE (domain_type));
513 TYPE_CODE (result_type) = TYPE_CODE_SET;
514 TYPE_NFIELDS (result_type) = 1;
515 TYPE_FIELDS (result_type) = (struct field *)
516 TYPE_ALLOC (result_type, 1 * sizeof (struct field));
517 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
519 if (! (TYPE_FLAGS (domain_type) & TYPE_FLAG_STUB))
521 if (get_discrete_bounds (domain_type, &low_bound, &high_bound) < 0)
522 low_bound = high_bound = 0;
523 bit_length = high_bound - low_bound + 1;
524 TYPE_LENGTH (result_type)
525 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
527 TYPE_FIELD_TYPE (result_type, 0) = domain_type;
530 TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
532 return (result_type);
535 /* Smash TYPE to be a type of members of DOMAIN with type TO_TYPE.
536 A MEMBER is a wierd thing -- it amounts to a typed offset into
537 a struct, e.g. "an int at offset 8". A MEMBER TYPE doesn't
538 include the offset (that's the value of the MEMBER itself), but does
539 include the structure type into which it points (for some reason).
541 When "smashing" the type, we preserve the objfile that the
542 old type pointed to, since we aren't changing where the type is actually
546 smash_to_member_type (type, domain, to_type)
549 struct type *to_type;
551 struct objfile *objfile;
553 objfile = TYPE_OBJFILE (type);
555 memset ((char *) type, 0, sizeof (struct type));
556 TYPE_OBJFILE (type) = objfile;
557 TYPE_TARGET_TYPE (type) = to_type;
558 TYPE_DOMAIN_TYPE (type) = domain;
559 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
560 TYPE_CODE (type) = TYPE_CODE_MEMBER;
563 /* Smash TYPE to be a type of method of DOMAIN with type TO_TYPE.
564 METHOD just means `function that gets an extra "this" argument'.
566 When "smashing" the type, we preserve the objfile that the
567 old type pointed to, since we aren't changing where the type is actually
571 smash_to_method_type (type, domain, to_type, args)
574 struct type *to_type;
577 struct objfile *objfile;
579 objfile = TYPE_OBJFILE (type);
581 memset ((char *) type, 0, sizeof (struct type));
582 TYPE_OBJFILE (type) = objfile;
583 TYPE_TARGET_TYPE (type) = to_type;
584 TYPE_DOMAIN_TYPE (type) = domain;
585 TYPE_ARG_TYPES (type) = args;
586 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
587 TYPE_CODE (type) = TYPE_CODE_METHOD;
590 /* Return a typename for a struct/union/enum type without "struct ",
591 "union ", or "enum ". If the type has a NULL name, return NULL. */
594 type_name_no_tag (type)
595 register const struct type *type;
597 if (TYPE_TAG_NAME (type) != NULL)
598 return TYPE_TAG_NAME (type);
600 /* Is there code which expects this to return the name if there is no
601 tag name? My guess is that this is mainly used for C++ in cases where
602 the two will always be the same. */
603 return TYPE_NAME (type);
606 /* Lookup a primitive type named NAME.
607 Return zero if NAME is not a primitive type.*/
610 lookup_primitive_typename (name)
613 struct type ** const *p;
615 for (p = current_language -> la_builtin_type_vector; *p != NULL; p++)
617 if (STREQ ((**p) -> name, name))
625 /* Lookup a typedef or primitive type named NAME,
626 visible in lexical block BLOCK.
627 If NOERR is nonzero, return zero if NAME is not suitably defined. */
630 lookup_typename (name, block, noerr)
635 register struct symbol *sym;
636 register struct type *tmp;
638 sym = lookup_symbol (name, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
639 if (sym == NULL || SYMBOL_CLASS (sym) != LOC_TYPEDEF)
641 tmp = lookup_primitive_typename (name);
646 else if (!tmp && noerr)
652 error ("No type named %s.", name);
655 return (SYMBOL_TYPE (sym));
659 lookup_unsigned_typename (name)
662 char *uns = alloca (strlen (name) + 10);
664 strcpy (uns, "unsigned ");
665 strcpy (uns + 9, name);
666 return (lookup_typename (uns, (struct block *) NULL, 0));
670 lookup_signed_typename (name)
674 char *uns = alloca (strlen (name) + 8);
676 strcpy (uns, "signed ");
677 strcpy (uns + 7, name);
678 t = lookup_typename (uns, (struct block *) NULL, 1);
679 /* If we don't find "signed FOO" just try again with plain "FOO". */
682 return lookup_typename (name, (struct block *) NULL, 0);
685 /* Lookup a structure type named "struct NAME",
686 visible in lexical block BLOCK. */
689 lookup_struct (name, block)
693 register struct symbol *sym;
695 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
696 (struct symtab **) NULL);
700 error ("No struct type named %s.", name);
702 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
704 error ("This context has class, union or enum %s, not a struct.", name);
706 return (SYMBOL_TYPE (sym));
709 /* Lookup a union type named "union NAME",
710 visible in lexical block BLOCK. */
713 lookup_union (name, block)
717 register struct symbol *sym;
719 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
720 (struct symtab **) NULL);
724 error ("No union type named %s.", name);
726 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_UNION)
728 error ("This context has class, struct or enum %s, not a union.", name);
730 return (SYMBOL_TYPE (sym));
733 /* Lookup an enum type named "enum NAME",
734 visible in lexical block BLOCK. */
737 lookup_enum (name, block)
741 register struct symbol *sym;
743 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
744 (struct symtab **) NULL);
747 error ("No enum type named %s.", name);
749 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_ENUM)
751 error ("This context has class, struct or union %s, not an enum.", name);
753 return (SYMBOL_TYPE (sym));
756 /* Lookup a template type named "template NAME<TYPE>",
757 visible in lexical block BLOCK. */
760 lookup_template_type (name, type, block)
766 char *nam = (char*) alloca(strlen(name) + strlen(type->name) + 4);
769 strcat (nam, type->name);
770 strcat (nam, " >"); /* FIXME, extra space still introduced in gcc? */
772 sym = lookup_symbol (nam, block, VAR_NAMESPACE, 0, (struct symtab **)NULL);
776 error ("No template type named %s.", name);
778 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
780 error ("This context has class, union or enum %s, not a struct.", name);
782 return (SYMBOL_TYPE (sym));
785 /* Given a type TYPE, lookup the type of the component of type named NAME.
787 TYPE can be either a struct or union, or a pointer or reference to a struct or
788 union. If it is a pointer or reference, its target type is automatically used.
789 Thus '.' and '->' are interchangable, as specified for the definitions of the
790 expression element types STRUCTOP_STRUCT and STRUCTOP_PTR.
792 If NOERR is nonzero, return zero if NAME is not suitably defined.
793 If NAME is the name of a baseclass type, return that type. */
796 lookup_struct_elt_type (type, name, noerr)
805 CHECK_TYPEDEF (type);
806 if (TYPE_CODE (type) != TYPE_CODE_PTR
807 && TYPE_CODE (type) != TYPE_CODE_REF)
809 type = TYPE_TARGET_TYPE (type);
812 if (TYPE_CODE (type) != TYPE_CODE_STRUCT &&
813 TYPE_CODE (type) != TYPE_CODE_UNION)
815 target_terminal_ours ();
816 gdb_flush (gdb_stdout);
817 fprintf_unfiltered (gdb_stderr, "Type ");
818 type_print (type, "", gdb_stderr, -1);
819 error (" is not a structure or union type.");
823 /* FIXME: This change put in by Michael seems incorrect for the case where
824 the structure tag name is the same as the member name. I.E. when doing
825 "ptype bell->bar" for "struct foo { int bar; int foo; } bell;"
830 typename = type_name_no_tag (type);
831 if (typename != NULL && STREQ (typename, name))
836 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
838 char *t_field_name = TYPE_FIELD_NAME (type, i);
840 if (t_field_name && STREQ (t_field_name, name))
842 return TYPE_FIELD_TYPE (type, i);
846 /* OK, it's not in this class. Recursively check the baseclasses. */
847 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
851 t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, noerr);
863 target_terminal_ours ();
864 gdb_flush (gdb_stdout);
865 fprintf_unfiltered (gdb_stderr, "Type ");
866 type_print (type, "", gdb_stderr, -1);
867 fprintf_unfiltered (gdb_stderr, " has no component named ");
868 fputs_filtered (name, gdb_stderr);
870 return (struct type *)-1; /* For lint */
873 /* If possible, make the vptr_fieldno and vptr_basetype fields of TYPE
874 valid. Callers should be aware that in some cases (for example,
875 the type or one of its baseclasses is a stub type and we are
876 debugging a .o file), this function will not be able to find the virtual
877 function table pointer, and vptr_fieldno will remain -1 and vptr_basetype
881 fill_in_vptr_fieldno (type)
884 CHECK_TYPEDEF (type);
886 if (TYPE_VPTR_FIELDNO (type) < 0)
890 /* We must start at zero in case the first (and only) baseclass is
891 virtual (and hence we cannot share the table pointer). */
892 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
894 fill_in_vptr_fieldno (TYPE_BASECLASS (type, i));
895 if (TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i)) >= 0)
897 TYPE_VPTR_FIELDNO (type)
898 = TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i));
899 TYPE_VPTR_BASETYPE (type)
900 = TYPE_VPTR_BASETYPE (TYPE_BASECLASS (type, i));
907 /* Find the method and field indices for the destructor in class type T.
908 Return 1 if the destructor was found, otherwise, return 0. */
911 get_destructor_fn_field (t, method_indexp, field_indexp)
918 for (i = 0; i < TYPE_NFN_FIELDS (t); i++)
921 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
923 for (j = 0; j < TYPE_FN_FIELDLIST_LENGTH (t, i); j++)
925 if (DESTRUCTOR_PREFIX_P (TYPE_FN_FIELD_PHYSNAME (f, j)))
936 /* Added by Bryan Boreham, Kewill, Sun Sep 17 18:07:17 1989.
938 If this is a stubbed struct (i.e. declared as struct foo *), see if
939 we can find a full definition in some other file. If so, copy this
940 definition, so we can use it in future. There used to be a comment (but
941 not any code) that if we don't find a full definition, we'd set a flag
942 so we don't spend time in the future checking the same type. That would
943 be a mistake, though--we might load in more symbols which contain a
944 full definition for the type.
946 This used to be coded as a macro, but I don't think it is called
947 often enough to merit such treatment. */
949 struct complaint stub_noname_complaint =
950 {"stub type has NULL name", 0, 0};
954 register struct type *type;
956 struct type *orig_type = type;
957 while (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
959 if (!TYPE_TARGET_TYPE (type))
964 /* It is dangerous to call lookup_symbol if we are currently
965 reading a symtab. Infinite recursion is one danger. */
966 if (currently_reading_symtab)
969 name = type_name_no_tag (type);
970 /* FIXME: shouldn't we separately check the TYPE_NAME and the
971 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
972 as appropriate? (this code was written before TYPE_NAME and
973 TYPE_TAG_NAME were separate). */
976 complain (&stub_noname_complaint);
979 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
980 (struct symtab **) NULL);
982 TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
984 TYPE_TARGET_TYPE (type) = alloc_type (NULL); /* TYPE_CODE_UNDEF */
986 type = TYPE_TARGET_TYPE (type);
989 if ((TYPE_FLAGS(type) & TYPE_FLAG_STUB) && ! currently_reading_symtab)
991 char* name = type_name_no_tag (type);
992 /* FIXME: shouldn't we separately check the TYPE_NAME and the
993 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
994 as appropriate? (this code was written before TYPE_NAME and
995 TYPE_TAG_NAME were separate). */
999 complain (&stub_noname_complaint);
1002 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
1003 (struct symtab **) NULL);
1006 memcpy ((char *)type,
1007 (char *)SYMBOL_TYPE(sym),
1008 sizeof (struct type));
1012 if (TYPE_FLAGS (type) & TYPE_FLAG_TARGET_STUB)
1014 struct type *range_type;
1015 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
1017 if (TYPE_FLAGS (target_type) & (TYPE_FLAG_STUB | TYPE_FLAG_TARGET_STUB))
1019 else if (TYPE_CODE (type) == TYPE_CODE_ARRAY
1020 && TYPE_NFIELDS (type) == 1
1021 && (TYPE_CODE (range_type = TYPE_FIELD_TYPE (type, 0))
1022 == TYPE_CODE_RANGE))
1024 /* Now recompute the length of the array type, based on its
1025 number of elements and the target type's length. */
1026 TYPE_LENGTH (type) =
1027 ((TYPE_FIELD_BITPOS (range_type, 1)
1028 - TYPE_FIELD_BITPOS (range_type, 0)
1030 * TYPE_LENGTH (target_type));
1031 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1033 else if (TYPE_CODE (type) == TYPE_CODE_RANGE)
1035 TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
1036 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1039 /* Cache TYPE_LENGTH for future use. */
1040 TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
1044 /* New code added to support parsing of Cfront stabs strings */
1046 #define INIT_EXTRA { pextras->len=0; pextras->str[0]='\0'; }
1047 #define ADD_EXTRA(c) { pextras->str[pextras->len++]=c; }
1051 struct extra * pextras;
1056 if ((nlen = (n ? strlen(n) : 0))==0)
1058 sprintf(pextras->str+pextras->len,"%d%s",nlen,n);
1059 pextras->len=strlen(pextras->str);
1063 add_mangled_type(pextras,t)
1064 struct extra * pextras;
1067 enum type_code tcode;
1071 tcode = TYPE_CODE(t);
1072 tlen = TYPE_LENGTH(t);
1073 tflags = TYPE_FLAGS(t);
1074 tname = TYPE_NAME(t);
1075 /* args of "..." seem to get mangled as "e" */
1093 if ((pname=strrchr(tname,'l'),pname) && !strcmp(pname,"long"))
1102 static struct complaint msg = {"Bad int type code length x%x\n",0,0};
1104 complain (&msg, tlen);
1123 static struct complaint msg = {"Bad float type code length x%x\n",0,0};
1124 complain (&msg, tlen);
1130 /* followed by what it's a ref to */
1134 /* followed by what it's a ptr to */
1136 case TYPE_CODE_TYPEDEF:
1138 static struct complaint msg = {"Typedefs in overloaded functions not yet supported\n",0,0};
1141 /* followed by type bytes & name */
1143 case TYPE_CODE_FUNC:
1145 /* followed by func's arg '_' & ret types */
1147 case TYPE_CODE_VOID:
1150 case TYPE_CODE_METHOD:
1152 /* followed by name of class and func's arg '_' & ret types */
1153 add_name(pextras,tname);
1154 ADD_EXTRA('F'); /* then mangle function */
1156 case TYPE_CODE_STRUCT: /* C struct */
1157 case TYPE_CODE_UNION: /* C union */
1158 case TYPE_CODE_ENUM: /* Enumeration type */
1159 /* followed by name of type */
1160 add_name(pextras,tname);
1163 /* errors possible types/not supported */
1164 case TYPE_CODE_CHAR:
1165 case TYPE_CODE_ARRAY: /* Array type */
1166 case TYPE_CODE_MEMBER: /* Member type */
1167 case TYPE_CODE_BOOL:
1168 case TYPE_CODE_COMPLEX: /* Complex float */
1169 case TYPE_CODE_UNDEF:
1170 case TYPE_CODE_SET: /* Pascal sets */
1171 case TYPE_CODE_RANGE:
1172 case TYPE_CODE_STRING:
1173 case TYPE_CODE_BITSTRING:
1174 case TYPE_CODE_ERROR:
1177 static struct complaint msg = {"Unknown type code x%x\n",0,0};
1178 complain (&msg, tcode);
1182 add_mangled_type(pextras,t->target_type);
1187 cfront_mangle_name(type, i, j)
1193 char *mangled_name = gdb_mangle_name (type, i, j);
1195 f = TYPE_FN_FIELDLIST1 (type, i); /* moved from below */
1197 /* kludge to support cfront methods - gdb expects to find "F" for
1198 ARM_mangled names, so when we mangle, we have to add it here */
1202 char * arm_mangled_name;
1203 struct fn_field *method = &f[j];
1204 char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
1205 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
1206 char *newname = type_name_no_tag (type);
1208 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
1209 int nargs = TYPE_NFIELDS(ftype); /* number of args */
1210 struct extra extras, * pextras = &extras;
1213 if (TYPE_FN_FIELD_STATIC_P (f, j)) /* j for sublist within this list */
1216 /* add args here! */
1217 if (nargs <= 1) /* no args besides this */
1220 for (k=1; k<nargs; k++)
1223 t = TYPE_FIELD_TYPE(ftype,k);
1224 add_mangled_type(pextras,t);
1228 printf("add_mangled_type: %s\n",extras.str); /* FIXME */
1229 arm_mangled_name = malloc(strlen(mangled_name)+extras.len);
1230 sprintf(arm_mangled_name,"%s%s",mangled_name,extras.str);
1232 mangled_name = arm_mangled_name;
1238 /* End of new code added to support parsing of Cfront stabs strings */
1240 /* Ugly hack to convert method stubs into method types.
1242 He ain't kiddin'. This demangles the name of the method into a string
1243 including argument types, parses out each argument type, generates
1244 a string casting a zero to that type, evaluates the string, and stuffs
1245 the resulting type into an argtype vector!!! Then it knows the type
1246 of the whole function (including argument types for overloading),
1247 which info used to be in the stab's but was removed to hack back
1248 the space required for them. */
1251 check_stub_method (type, method_id, signature_id)
1257 char *mangled_name = gdb_mangle_name (type, method_id, signature_id);
1258 char *demangled_name = cplus_demangle (mangled_name,
1259 DMGL_PARAMS | DMGL_ANSI);
1260 char *argtypetext, *p;
1261 int depth = 0, argcount = 1;
1262 struct type **argtypes;
1265 /* Make sure we got back a function string that we can use. */
1267 p = strchr (demangled_name, '(');
1269 if (demangled_name == NULL || p == NULL)
1270 error ("Internal: Cannot demangle mangled name `%s'.", mangled_name);
1272 /* Now, read in the parameters that define this type. */
1285 else if (*p == ',' && depth == 0)
1293 /* We need two more slots: one for the THIS pointer, and one for the
1294 NULL [...] or void [end of arglist]. */
1296 argtypes = (struct type **)
1297 TYPE_ALLOC (type, (argcount + 2) * sizeof (struct type *));
1299 /* FIXME: This is wrong for static member functions. */
1300 argtypes[0] = lookup_pointer_type (type);
1303 if (*p != ')') /* () means no args, skip while */
1308 if (depth <= 0 && (*p == ',' || *p == ')'))
1310 /* Avoid parsing of ellipsis, they will be handled below. */
1311 if (strncmp (argtypetext, "...", p - argtypetext) != 0)
1313 argtypes[argcount] =
1314 parse_and_eval_type (argtypetext, p - argtypetext);
1317 argtypetext = p + 1;
1333 if (p[-2] != '.') /* Not '...' */
1335 argtypes[argcount] = builtin_type_void; /* List terminator */
1339 argtypes[argcount] = NULL; /* Ellist terminator */
1342 free (demangled_name);
1344 f = TYPE_FN_FIELDLIST1 (type, method_id);
1346 TYPE_FN_FIELD_PHYSNAME (f, signature_id) = mangled_name;
1348 /* Now update the old "stub" type into a real type. */
1349 mtype = TYPE_FN_FIELD_TYPE (f, signature_id);
1350 TYPE_DOMAIN_TYPE (mtype) = type;
1351 TYPE_ARG_TYPES (mtype) = argtypes;
1352 TYPE_FLAGS (mtype) &= ~TYPE_FLAG_STUB;
1353 TYPE_FN_FIELD_STUB (f, signature_id) = 0;
1356 const struct cplus_struct_type cplus_struct_default;
1359 allocate_cplus_struct_type (type)
1362 if (!HAVE_CPLUS_STRUCT (type))
1364 TYPE_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
1365 TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
1366 *(TYPE_CPLUS_SPECIFIC(type)) = cplus_struct_default;
1370 /* Helper function to initialize the standard scalar types.
1372 If NAME is non-NULL and OBJFILE is non-NULL, then we make a copy
1373 of the string pointed to by name in the type_obstack for that objfile,
1374 and initialize the type name to that copy. There are places (mipsread.c
1375 in particular, where init_type is called with a NULL value for NAME). */
1378 init_type (code, length, flags, name, objfile)
1379 enum type_code code;
1383 struct objfile *objfile;
1385 register struct type *type;
1387 type = alloc_type (objfile);
1388 TYPE_CODE (type) = code;
1389 TYPE_LENGTH (type) = length;
1390 TYPE_FLAGS (type) |= flags;
1391 if ((name != NULL) && (objfile != NULL))
1394 obsavestring (name, strlen (name), &objfile -> type_obstack);
1398 TYPE_NAME (type) = name;
1403 if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION)
1405 INIT_CPLUS_SPECIFIC (type);
1410 /* Look up a fundamental type for the specified objfile.
1411 May need to construct such a type if this is the first use.
1413 Some object file formats (ELF, COFF, etc) do not define fundamental
1414 types such as "int" or "double". Others (stabs for example), do
1415 define fundamental types.
1417 For the formats which don't provide fundamental types, gdb can create
1418 such types, using defaults reasonable for the current language and
1419 the current target machine.
1421 NOTE: This routine is obsolescent. Each debugging format reader
1422 should manage it's own fundamental types, either creating them from
1423 suitable defaults or reading them from the debugging information,
1424 whichever is appropriate. The DWARF reader has already been
1425 fixed to do this. Once the other readers are fixed, this routine
1426 will go away. Also note that fundamental types should be managed
1427 on a compilation unit basis in a multi-language environment, not
1428 on a linkage unit basis as is done here. */
1432 lookup_fundamental_type (objfile, typeid)
1433 struct objfile *objfile;
1436 register struct type **typep;
1437 register int nbytes;
1439 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
1441 error ("internal error - invalid fundamental type id %d", typeid);
1444 /* If this is the first time we need a fundamental type for this objfile
1445 then we need to initialize the vector of type pointers. */
1447 if (objfile -> fundamental_types == NULL)
1449 nbytes = FT_NUM_MEMBERS * sizeof (struct type *);
1450 objfile -> fundamental_types = (struct type **)
1451 obstack_alloc (&objfile -> type_obstack, nbytes);
1452 memset ((char *) objfile -> fundamental_types, 0, nbytes);
1453 OBJSTAT (objfile, n_types += FT_NUM_MEMBERS);
1456 /* Look for this particular type in the fundamental type vector. If one is
1457 not found, create and install one appropriate for the current language. */
1459 typep = objfile -> fundamental_types + typeid;
1462 *typep = create_fundamental_type (objfile, typeid);
1472 /* FIXME: Should we return true for references as well as pointers? */
1476 && TYPE_CODE (t) == TYPE_CODE_PTR
1477 && TYPE_CODE (TYPE_TARGET_TYPE (t)) != TYPE_CODE_VOID);
1480 /* Chill varying string and arrays are represented as follows:
1482 struct { int __var_length; ELEMENT_TYPE[MAX_SIZE] __var_data};
1484 Return true if TYPE is such a Chill varying type. */
1487 chill_varying_type (type)
1490 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
1491 || TYPE_NFIELDS (type) != 2
1492 || strcmp (TYPE_FIELD_NAME (type, 0), "__var_length") != 0)
1497 #if MAINTENANCE_CMDS
1500 print_bit_vector (bits, nbits)
1506 for (bitno = 0; bitno < nbits; bitno++)
1508 if ((bitno % 8) == 0)
1510 puts_filtered (" ");
1512 if (B_TST (bits, bitno))
1514 printf_filtered ("1");
1518 printf_filtered ("0");
1523 /* The args list is a strange beast. It is either terminated by a NULL
1524 pointer for varargs functions, or by a pointer to a TYPE_CODE_VOID
1525 type for normal fixed argcount functions. (FIXME someday)
1526 Also note the first arg should be the "this" pointer, we may not want to
1527 include it since we may get into a infinitely recursive situation. */
1530 print_arg_types (args, spaces)
1536 while (*args != NULL)
1538 recursive_dump_type (*args, spaces + 2);
1539 if ((*args++) -> code == TYPE_CODE_VOID)
1548 dump_fn_fieldlists (type, spaces)
1556 printfi_filtered (spaces, "fn_fieldlists ");
1557 gdb_print_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
1558 printf_filtered ("\n");
1559 for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
1561 f = TYPE_FN_FIELDLIST1 (type, method_idx);
1562 printfi_filtered (spaces + 2, "[%d] name '%s' (",
1564 TYPE_FN_FIELDLIST_NAME (type, method_idx));
1565 gdb_print_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
1567 printf_filtered (") length %d\n",
1568 TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
1569 for (overload_idx = 0;
1570 overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
1573 printfi_filtered (spaces + 4, "[%d] physname '%s' (",
1575 TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
1576 gdb_print_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
1578 printf_filtered (")\n");
1579 printfi_filtered (spaces + 8, "type ");
1580 gdb_print_address (TYPE_FN_FIELD_TYPE (f, overload_idx), gdb_stdout);
1581 printf_filtered ("\n");
1583 recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
1586 printfi_filtered (spaces + 8, "args ");
1587 gdb_print_address (TYPE_FN_FIELD_ARGS (f, overload_idx), gdb_stdout);
1588 printf_filtered ("\n");
1590 print_arg_types (TYPE_FN_FIELD_ARGS (f, overload_idx), spaces);
1591 printfi_filtered (spaces + 8, "fcontext ");
1592 gdb_print_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
1594 printf_filtered ("\n");
1596 printfi_filtered (spaces + 8, "is_const %d\n",
1597 TYPE_FN_FIELD_CONST (f, overload_idx));
1598 printfi_filtered (spaces + 8, "is_volatile %d\n",
1599 TYPE_FN_FIELD_VOLATILE (f, overload_idx));
1600 printfi_filtered (spaces + 8, "is_private %d\n",
1601 TYPE_FN_FIELD_PRIVATE (f, overload_idx));
1602 printfi_filtered (spaces + 8, "is_protected %d\n",
1603 TYPE_FN_FIELD_PROTECTED (f, overload_idx));
1604 printfi_filtered (spaces + 8, "is_stub %d\n",
1605 TYPE_FN_FIELD_STUB (f, overload_idx));
1606 printfi_filtered (spaces + 8, "voffset %u\n",
1607 TYPE_FN_FIELD_VOFFSET (f, overload_idx));
1613 print_cplus_stuff (type, spaces)
1617 printfi_filtered (spaces, "n_baseclasses %d\n",
1618 TYPE_N_BASECLASSES (type));
1619 printfi_filtered (spaces, "nfn_fields %d\n",
1620 TYPE_NFN_FIELDS (type));
1621 printfi_filtered (spaces, "nfn_fields_total %d\n",
1622 TYPE_NFN_FIELDS_TOTAL (type));
1623 if (TYPE_N_BASECLASSES (type) > 0)
1625 printfi_filtered (spaces, "virtual_field_bits (%d bits at *",
1626 TYPE_N_BASECLASSES (type));
1627 gdb_print_address (TYPE_FIELD_VIRTUAL_BITS (type), gdb_stdout);
1628 printf_filtered (")");
1630 print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
1631 TYPE_N_BASECLASSES (type));
1632 puts_filtered ("\n");
1634 if (TYPE_NFIELDS (type) > 0)
1636 if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
1638 printfi_filtered (spaces, "private_field_bits (%d bits at *",
1639 TYPE_NFIELDS (type));
1640 gdb_print_address (TYPE_FIELD_PRIVATE_BITS (type), gdb_stdout);
1641 printf_filtered (")");
1642 print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
1643 TYPE_NFIELDS (type));
1644 puts_filtered ("\n");
1646 if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
1648 printfi_filtered (spaces, "protected_field_bits (%d bits at *",
1649 TYPE_NFIELDS (type));
1650 gdb_print_address (TYPE_FIELD_PROTECTED_BITS (type), gdb_stdout);
1651 printf_filtered (")");
1652 print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
1653 TYPE_NFIELDS (type));
1654 puts_filtered ("\n");
1657 if (TYPE_NFN_FIELDS (type) > 0)
1659 dump_fn_fieldlists (type, spaces);
1663 static struct obstack dont_print_type_obstack;
1666 recursive_dump_type (type, spaces)
1673 obstack_begin (&dont_print_type_obstack, 0);
1675 if (TYPE_NFIELDS (type) > 0
1676 || (TYPE_CPLUS_SPECIFIC (type) && TYPE_NFN_FIELDS (type) > 0))
1678 struct type **first_dont_print
1679 = (struct type **)obstack_base (&dont_print_type_obstack);
1681 int i = (struct type **)obstack_next_free (&dont_print_type_obstack)
1686 if (type == first_dont_print[i])
1688 printfi_filtered (spaces, "type node ");
1689 gdb_print_address (type, gdb_stdout);
1690 printf_filtered (" <same as already seen type>\n");
1695 obstack_ptr_grow (&dont_print_type_obstack, type);
1698 printfi_filtered (spaces, "type node ");
1699 gdb_print_address (type, gdb_stdout);
1700 printf_filtered ("\n");
1701 printfi_filtered (spaces, "name '%s' (",
1702 TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
1703 gdb_print_address (TYPE_NAME (type), gdb_stdout);
1704 printf_filtered (")\n");
1705 if (TYPE_TAG_NAME (type) != NULL)
1707 printfi_filtered (spaces, "tagname '%s' (",
1708 TYPE_TAG_NAME (type));
1709 gdb_print_address (TYPE_TAG_NAME (type), gdb_stdout);
1710 printf_filtered (")\n");
1712 printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
1713 switch (TYPE_CODE (type))
1715 case TYPE_CODE_UNDEF:
1716 printf_filtered ("(TYPE_CODE_UNDEF)");
1719 printf_filtered ("(TYPE_CODE_PTR)");
1721 case TYPE_CODE_ARRAY:
1722 printf_filtered ("(TYPE_CODE_ARRAY)");
1724 case TYPE_CODE_STRUCT:
1725 printf_filtered ("(TYPE_CODE_STRUCT)");
1727 case TYPE_CODE_UNION:
1728 printf_filtered ("(TYPE_CODE_UNION)");
1730 case TYPE_CODE_ENUM:
1731 printf_filtered ("(TYPE_CODE_ENUM)");
1733 case TYPE_CODE_FUNC:
1734 printf_filtered ("(TYPE_CODE_FUNC)");
1737 printf_filtered ("(TYPE_CODE_INT)");
1740 printf_filtered ("(TYPE_CODE_FLT)");
1742 case TYPE_CODE_VOID:
1743 printf_filtered ("(TYPE_CODE_VOID)");
1746 printf_filtered ("(TYPE_CODE_SET)");
1748 case TYPE_CODE_RANGE:
1749 printf_filtered ("(TYPE_CODE_RANGE)");
1751 case TYPE_CODE_STRING:
1752 printf_filtered ("(TYPE_CODE_STRING)");
1754 case TYPE_CODE_ERROR:
1755 printf_filtered ("(TYPE_CODE_ERROR)");
1757 case TYPE_CODE_MEMBER:
1758 printf_filtered ("(TYPE_CODE_MEMBER)");
1760 case TYPE_CODE_METHOD:
1761 printf_filtered ("(TYPE_CODE_METHOD)");
1764 printf_filtered ("(TYPE_CODE_REF)");
1766 case TYPE_CODE_CHAR:
1767 printf_filtered ("(TYPE_CODE_CHAR)");
1769 case TYPE_CODE_BOOL:
1770 printf_filtered ("(TYPE_CODE_BOOL)");
1772 case TYPE_CODE_TYPEDEF:
1773 printf_filtered ("(TYPE_CODE_TYPEDEF)");
1776 printf_filtered ("(UNKNOWN TYPE CODE)");
1779 puts_filtered ("\n");
1780 printfi_filtered (spaces, "length %d\n", TYPE_LENGTH (type));
1781 printfi_filtered (spaces, "objfile ");
1782 gdb_print_address (TYPE_OBJFILE (type), gdb_stdout);
1783 printf_filtered ("\n");
1784 printfi_filtered (spaces, "target_type ");
1785 gdb_print_address (TYPE_TARGET_TYPE (type), gdb_stdout);
1786 printf_filtered ("\n");
1787 if (TYPE_TARGET_TYPE (type) != NULL)
1789 recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
1791 printfi_filtered (spaces, "pointer_type ");
1792 gdb_print_address (TYPE_POINTER_TYPE (type), gdb_stdout);
1793 printf_filtered ("\n");
1794 printfi_filtered (spaces, "reference_type ");
1795 gdb_print_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
1796 printf_filtered ("\n");
1797 printfi_filtered (spaces, "flags 0x%x", TYPE_FLAGS (type));
1798 if (TYPE_FLAGS (type) & TYPE_FLAG_UNSIGNED)
1800 puts_filtered (" TYPE_FLAG_UNSIGNED");
1802 if (TYPE_FLAGS (type) & TYPE_FLAG_STUB)
1804 puts_filtered (" TYPE_FLAG_STUB");
1806 puts_filtered ("\n");
1807 printfi_filtered (spaces, "nfields %d ", TYPE_NFIELDS (type));
1808 gdb_print_address (TYPE_FIELDS (type), gdb_stdout);
1809 puts_filtered ("\n");
1810 for (idx = 0; idx < TYPE_NFIELDS (type); idx++)
1812 printfi_filtered (spaces + 2,
1813 "[%d] bitpos %d bitsize %d type ",
1814 idx, TYPE_FIELD_BITPOS (type, idx),
1815 TYPE_FIELD_BITSIZE (type, idx));
1816 gdb_print_address (TYPE_FIELD_TYPE (type, idx), gdb_stdout);
1817 printf_filtered (" name '%s' (",
1818 TYPE_FIELD_NAME (type, idx) != NULL
1819 ? TYPE_FIELD_NAME (type, idx)
1821 gdb_print_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
1822 printf_filtered (")\n");
1823 if (TYPE_FIELD_TYPE (type, idx) != NULL)
1825 recursive_dump_type (TYPE_FIELD_TYPE (type, idx), spaces + 4);
1828 printfi_filtered (spaces, "vptr_basetype ");
1829 gdb_print_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
1830 puts_filtered ("\n");
1831 if (TYPE_VPTR_BASETYPE (type) != NULL)
1833 recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
1835 printfi_filtered (spaces, "vptr_fieldno %d\n", TYPE_VPTR_FIELDNO (type));
1836 switch (TYPE_CODE (type))
1838 case TYPE_CODE_METHOD:
1839 case TYPE_CODE_FUNC:
1840 printfi_filtered (spaces, "arg_types ");
1841 gdb_print_address (TYPE_ARG_TYPES (type), gdb_stdout);
1842 puts_filtered ("\n");
1843 print_arg_types (TYPE_ARG_TYPES (type), spaces);
1846 case TYPE_CODE_STRUCT:
1847 printfi_filtered (spaces, "cplus_stuff ");
1848 gdb_print_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
1849 puts_filtered ("\n");
1850 print_cplus_stuff (type, spaces);
1854 /* We have to pick one of the union types to be able print and test
1855 the value. Pick cplus_struct_type, even though we know it isn't
1856 any particular one. */
1857 printfi_filtered (spaces, "type_specific ");
1858 gdb_print_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
1859 if (TYPE_CPLUS_SPECIFIC (type) != NULL)
1861 printf_filtered (" (unknown data form)");
1863 printf_filtered ("\n");
1868 obstack_free (&dont_print_type_obstack, NULL);
1871 #endif /* MAINTENANCE_CMDS */
1874 _initialize_gdbtypes ()
1877 init_type (TYPE_CODE_VOID, 1,
1879 "void", (struct objfile *) NULL);
1881 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1883 "char", (struct objfile *) NULL);
1884 builtin_type_signed_char =
1885 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1887 "signed char", (struct objfile *) NULL);
1888 builtin_type_unsigned_char =
1889 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1891 "unsigned char", (struct objfile *) NULL);
1892 builtin_type_short =
1893 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
1895 "short", (struct objfile *) NULL);
1896 builtin_type_unsigned_short =
1897 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
1899 "unsigned short", (struct objfile *) NULL);
1901 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1903 "int", (struct objfile *) NULL);
1904 builtin_type_unsigned_int =
1905 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1907 "unsigned int", (struct objfile *) NULL);
1909 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
1911 "long", (struct objfile *) NULL);
1912 builtin_type_unsigned_long =
1913 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
1915 "unsigned long", (struct objfile *) NULL);
1916 builtin_type_long_long =
1917 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
1919 "long long", (struct objfile *) NULL);
1920 builtin_type_unsigned_long_long =
1921 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
1923 "unsigned long long", (struct objfile *) NULL);
1924 builtin_type_float =
1925 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
1927 "float", (struct objfile *) NULL);
1928 builtin_type_double =
1929 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
1931 "double", (struct objfile *) NULL);
1932 builtin_type_long_double =
1933 init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
1935 "long double", (struct objfile *) NULL);
1936 builtin_type_complex =
1937 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
1939 "complex", (struct objfile *) NULL);
1940 TYPE_TARGET_TYPE (builtin_type_complex) = builtin_type_float;
1941 builtin_type_double_complex =
1942 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
1944 "double complex", (struct objfile *) NULL);
1945 TYPE_TARGET_TYPE (builtin_type_double_complex) = builtin_type_double;
1946 builtin_type_string =
1947 init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1949 "string", (struct objfile *) NULL);
1951 init_type (TYPE_CODE_INT, 8 / 8,
1953 "int8_t", (struct objfile *) NULL);
1954 builtin_type_uint8 =
1955 init_type (TYPE_CODE_INT, 8 / 8,
1957 "uint8_t", (struct objfile *) NULL);
1958 builtin_type_int16 =
1959 init_type (TYPE_CODE_INT, 16 / 8,
1961 "int16_t", (struct objfile *) NULL);
1962 builtin_type_uint16 =
1963 init_type (TYPE_CODE_INT, 16 / 8,
1965 "uint16_t", (struct objfile *) NULL);
1966 builtin_type_int32 =
1967 init_type (TYPE_CODE_INT, 32 / 8,
1969 "int32_t", (struct objfile *) NULL);
1970 builtin_type_uint32 =
1971 init_type (TYPE_CODE_INT, 32 / 8,
1973 "uint32_t", (struct objfile *) NULL);
1974 builtin_type_int64 =
1975 init_type (TYPE_CODE_INT, 64 / 8,
1977 "int64_t", (struct objfile *) NULL);
1978 builtin_type_uint64 =
1979 init_type (TYPE_CODE_INT, 64 / 8,
1981 "uint64_t", (struct objfile *) NULL);
1982 /* start-sanitize-r5900 */
1983 builtin_type_int128 =
1984 init_type (TYPE_CODE_INT, 128 / 8,
1986 "int128_t", (struct objfile *) NULL);
1987 builtin_type_uint128 =
1988 init_type (TYPE_CODE_INT, 128 / 8,
1990 "uint128_t", (struct objfile *) NULL);
1991 /* end-sanitize-r5900 */