Sun Jan 31 04:32:48 1993 Michael Tiemann (tiemann@rtl.cygnus.com)
[binutils-gdb.git] / gdb / gdbtypes.c
1 /* Support routines for manipulating internal types for GDB.
2 Copyright (C) 1992 Free Software Foundation, Inc.
3 Contributed by Cygnus Support, using pieces from other GDB modules.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21 #include "defs.h"
22 #include <string.h>
23 #include "bfd.h"
24 #include "symtab.h"
25 #include "symfile.h"
26 #include "objfiles.h"
27 #include "gdbtypes.h"
28 #include "expression.h"
29 #include "language.h"
30 #include "target.h"
31 #include "value.h"
32 #include "demangle.h"
33 #include "complaints.h"
34
35 /* These variables point to the objects
36 representing the predefined C data types. */
37
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
57 /* Alloc a new type structure and fill it with some defaults. If
58 OBJFILE is non-NULL, then allocate the space for the type structure
59 in that objfile's type_obstack. */
60
61 struct type *
62 alloc_type (objfile)
63 struct objfile *objfile;
64 {
65 register struct type *type;
66
67 /* Alloc the structure and start off with all fields zeroed. */
68
69 if (objfile == NULL)
70 {
71 type = (struct type *) xmalloc (sizeof (struct type));
72 }
73 else
74 {
75 type = (struct type *) obstack_alloc (&objfile -> type_obstack,
76 sizeof (struct type));
77 }
78 memset ((char *) type, 0, sizeof (struct type));
79
80 /* Initialize the fields that might not be zero. */
81
82 TYPE_CODE (type) = TYPE_CODE_UNDEF;
83 TYPE_OBJFILE (type) = objfile;
84 TYPE_VPTR_FIELDNO (type) = -1;
85
86 return (type);
87 }
88
89 /* Lookup a pointer to a type TYPE. TYPEPTR, if nonzero, points
90 to a pointer to memory where the pointer type should be stored.
91 If *TYPEPTR is zero, update it to point to the pointer type we return.
92 We allocate new memory if needed. */
93
94 struct type *
95 make_pointer_type (type, typeptr)
96 struct type *type;
97 struct type **typeptr;
98 {
99 register struct type *ntype; /* New type */
100 struct objfile *objfile;
101
102 ntype = TYPE_POINTER_TYPE (type);
103
104 if (ntype)
105 if (typeptr == 0)
106 return ntype; /* Don't care about alloc, and have new type. */
107 else if (*typeptr == 0)
108 {
109 *typeptr = ntype; /* Tracking alloc, and we have new type. */
110 return ntype;
111 }
112
113 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
114 {
115 ntype = alloc_type (TYPE_OBJFILE (type));
116 if (typeptr)
117 *typeptr = ntype;
118 }
119 else /* We have storage, but need to reset it. */
120 {
121 ntype = *typeptr;
122 objfile = TYPE_OBJFILE (ntype);
123 memset ((char *) ntype, 0, sizeof (struct type));
124 TYPE_OBJFILE (ntype) = objfile;
125 }
126
127 TYPE_TARGET_TYPE (ntype) = type;
128 TYPE_POINTER_TYPE (type) = ntype;
129
130 /* FIXME! Assume the machine has only one representation for pointers! */
131
132 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
133 TYPE_CODE (ntype) = TYPE_CODE_PTR;
134
135 /* pointers are unsigned */
136 TYPE_FLAGS (ntype) |= TYPE_FLAG_UNSIGNED;
137
138 if (!TYPE_POINTER_TYPE (type)) /* Remember it, if don't have one. */
139 TYPE_POINTER_TYPE (type) = ntype;
140
141 return ntype;
142 }
143
144 /* Given a type TYPE, return a type of pointers to that type.
145 May need to construct such a type if this is the first use. */
146
147 struct type *
148 lookup_pointer_type (type)
149 struct type *type;
150 {
151 return make_pointer_type (type, (struct type **)0);
152 }
153
154 /* Lookup a C++ `reference' to a type TYPE. TYPEPTR, if nonzero, points
155 to a pointer to memory where the reference type should be stored.
156 If *TYPEPTR is zero, update it to point to the reference type we return.
157 We allocate new memory if needed. */
158
159 struct type *
160 make_reference_type (type, typeptr)
161 struct type *type;
162 struct type **typeptr;
163 {
164 register struct type *ntype; /* New type */
165 struct objfile *objfile;
166
167 ntype = TYPE_REFERENCE_TYPE (type);
168
169 if (ntype)
170 if (typeptr == 0)
171 return ntype; /* Don't care about alloc, and have new type. */
172 else if (*typeptr == 0)
173 {
174 *typeptr = ntype; /* Tracking alloc, and we have new type. */
175 return ntype;
176 }
177
178 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
179 {
180 ntype = alloc_type (TYPE_OBJFILE (type));
181 if (typeptr)
182 *typeptr = ntype;
183 }
184 else /* We have storage, but need to reset it. */
185 {
186 ntype = *typeptr;
187 objfile = TYPE_OBJFILE (ntype);
188 memset ((char *) ntype, 0, sizeof (struct type));
189 TYPE_OBJFILE (ntype) = objfile;
190 }
191
192 TYPE_TARGET_TYPE (ntype) = type;
193 TYPE_REFERENCE_TYPE (type) = ntype;
194
195 /* FIXME! Assume the machine has only one representation for references,
196 and that it matches the (only) representation for pointers! */
197
198 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
199 TYPE_CODE (ntype) = TYPE_CODE_REF;
200
201 if (!TYPE_REFERENCE_TYPE (type)) /* Remember it, if don't have one. */
202 TYPE_REFERENCE_TYPE (type) = ntype;
203
204 return ntype;
205 }
206
207 /* Same as above, but caller doesn't care about memory allocation details. */
208
209 struct type *
210 lookup_reference_type (type)
211 struct type *type;
212 {
213 return make_reference_type (type, (struct type **)0);
214 }
215
216 /* Lookup a function type that returns type TYPE. TYPEPTR, if nonzero, points
217 to a pointer to memory where the function type should be stored.
218 If *TYPEPTR is zero, update it to point to the function type we return.
219 We allocate new memory if needed. */
220
221 struct type *
222 make_function_type (type, typeptr)
223 struct type *type;
224 struct type **typeptr;
225 {
226 register struct type *ntype; /* New type */
227 struct objfile *objfile;
228
229 ntype = TYPE_FUNCTION_TYPE (type);
230
231 if (ntype)
232 if (typeptr == 0)
233 return ntype; /* Don't care about alloc, and have new type. */
234 else if (*typeptr == 0)
235 {
236 *typeptr = ntype; /* Tracking alloc, and we have new type. */
237 return ntype;
238 }
239
240 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
241 {
242 ntype = alloc_type (TYPE_OBJFILE (type));
243 if (typeptr)
244 *typeptr = ntype;
245 }
246 else /* We have storage, but need to reset it. */
247 {
248 ntype = *typeptr;
249 objfile = TYPE_OBJFILE (ntype);
250 memset ((char *) ntype, 0, sizeof (struct type));
251 TYPE_OBJFILE (ntype) = objfile;
252 }
253
254 TYPE_TARGET_TYPE (ntype) = type;
255 TYPE_FUNCTION_TYPE (type) = ntype;
256
257 TYPE_LENGTH (ntype) = 1;
258 TYPE_CODE (ntype) = TYPE_CODE_FUNC;
259
260 if (!TYPE_FUNCTION_TYPE (type)) /* Remember it, if don't have one. */
261 TYPE_FUNCTION_TYPE (type) = ntype;
262
263 return ntype;
264 }
265
266
267 /* Given a type TYPE, return a type of functions that return that type.
268 May need to construct such a type if this is the first use. */
269
270 struct type *
271 lookup_function_type (type)
272 struct type *type;
273 {
274 return make_function_type (type, (struct type **)0);
275 }
276
277 /* Implement direct support for MEMBER_TYPE in GNU C++.
278 May need to construct such a type if this is the first use.
279 The TYPE is the type of the member. The DOMAIN is the type
280 of the aggregate that the member belongs to. */
281
282 struct type *
283 lookup_member_type (type, domain)
284 struct type *type;
285 struct type *domain;
286 {
287 register struct type *mtype;
288
289 mtype = alloc_type (TYPE_OBJFILE (type));
290 smash_to_member_type (mtype, domain, type);
291 return (mtype);
292 }
293
294 /* Allocate a stub method whose return type is TYPE.
295 This apparently happens for speed of symbol reading, since parsing
296 out the arguments to the method is cpu-intensive, the way we are doing
297 it. So, we will fill in arguments later.
298 This always returns a fresh type. */
299
300 struct type *
301 allocate_stub_method (type)
302 struct type *type;
303 {
304 struct type *mtype;
305
306 mtype = alloc_type (TYPE_OBJFILE (type));
307 TYPE_TARGET_TYPE (mtype) = type;
308 /* _DOMAIN_TYPE (mtype) = unknown yet */
309 /* _ARG_TYPES (mtype) = unknown yet */
310 TYPE_FLAGS (mtype) = TYPE_FLAG_STUB;
311 TYPE_CODE (mtype) = TYPE_CODE_METHOD;
312 TYPE_LENGTH (mtype) = 1;
313 return (mtype);
314 }
315
316 /* Create a range type using either a blank type supplied in RESULT_TYPE,
317 or creating a new type, inheriting the objfile from INDEX_TYPE.
318
319 Indices will be of type INDEX_TYPE, and will range from LOW_BOUND to
320 HIGH_BOUND, inclusive.
321
322 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
323 sure it is TYPE_CODE_UNDEF before we bash it into a range type? */
324
325 struct type *
326 create_range_type (result_type, index_type, low_bound, high_bound)
327 struct type *result_type;
328 struct type *index_type;
329 int low_bound;
330 int high_bound;
331 {
332 if (result_type == NULL)
333 {
334 result_type = alloc_type (TYPE_OBJFILE (index_type));
335 }
336 TYPE_CODE (result_type) = TYPE_CODE_RANGE;
337 TYPE_TARGET_TYPE (result_type) = index_type;
338 TYPE_LENGTH (result_type) = TYPE_LENGTH (index_type);
339 TYPE_NFIELDS (result_type) = 2;
340 TYPE_FIELDS (result_type) = (struct field *)
341 TYPE_ALLOC (result_type, 2 * sizeof (struct field));
342 memset (TYPE_FIELDS (result_type), 0, 2 * sizeof (struct field));
343 TYPE_FIELD_BITPOS (result_type, 0) = low_bound;
344 TYPE_FIELD_BITPOS (result_type, 1) = high_bound;
345 TYPE_FIELD_TYPE (result_type, 0) = builtin_type_int; /* FIXME */
346 TYPE_FIELD_TYPE (result_type, 1) = builtin_type_int; /* FIXME */
347
348 return (result_type);
349 }
350
351
352 /* Create an array type using either a blank type supplied in RESULT_TYPE,
353 or creating a new type, inheriting the objfile from RANGE_TYPE.
354
355 Elements will be of type ELEMENT_TYPE, the indices will be of type
356 RANGE_TYPE.
357
358 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
359 sure it is TYPE_CODE_UNDEF before we bash it into an array type? */
360
361 struct type *
362 create_array_type (result_type, element_type, range_type)
363 struct type *result_type;
364 struct type *element_type;
365 struct type *range_type;
366 {
367 int low_bound;
368 int high_bound;
369
370 if (TYPE_CODE (range_type) != TYPE_CODE_RANGE)
371 {
372 /* FIXME: We only handle range types at the moment. Complain and
373 create a dummy range type to use. */
374 warning ("internal error: array index type must be a range type");
375 range_type = lookup_fundamental_type (TYPE_OBJFILE (range_type),
376 FT_INTEGER);
377 range_type = create_range_type ((struct type *) NULL, range_type, 0, 0);
378 }
379 if (result_type == NULL)
380 {
381 result_type = alloc_type (TYPE_OBJFILE (range_type));
382 }
383 TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
384 TYPE_TARGET_TYPE (result_type) = element_type;
385 low_bound = TYPE_FIELD_BITPOS (range_type, 0);
386 high_bound = TYPE_FIELD_BITPOS (range_type, 1);
387 TYPE_LENGTH (result_type) =
388 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
389 TYPE_NFIELDS (result_type) = 1;
390 TYPE_FIELDS (result_type) =
391 (struct field *) TYPE_ALLOC (result_type, sizeof (struct field));
392 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
393 TYPE_FIELD_TYPE (result_type, 0) = range_type;
394 TYPE_VPTR_FIELDNO (result_type) = -1;
395
396 return (result_type);
397 }
398
399 /* Create a string type using either a blank type supplied in RESULT_TYPE,
400 or creating a new type. String types are similar enough to array of
401 char types that we can use create_array_type to build the basic type
402 and then bash it into a string type.
403
404 For fixed length strings, the range type contains 0 as the lower
405 bound and the length of the string minus one as the upper bound.
406
407 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
408 sure it is TYPE_CODE_UNDEF before we bash it into a string type? */
409
410 struct type *
411 create_string_type (result_type, range_type)
412 struct type *result_type;
413 struct type *range_type;
414 {
415 result_type = create_array_type (result_type, builtin_type_char, range_type);
416 TYPE_CODE (result_type) = TYPE_CODE_STRING;
417 return (result_type);
418 }
419
420 /* Smash TYPE to be a type of members of DOMAIN with type TO_TYPE.
421 A MEMBER is a wierd thing -- it amounts to a typed offset into
422 a struct, e.g. "an int at offset 8". A MEMBER TYPE doesn't
423 include the offset (that's the value of the MEMBER itself), but does
424 include the structure type into which it points (for some reason).
425
426 When "smashing" the type, we preserve the objfile that the
427 old type pointed to, since we aren't changing where the type is actually
428 allocated. */
429
430 void
431 smash_to_member_type (type, domain, to_type)
432 struct type *type;
433 struct type *domain;
434 struct type *to_type;
435 {
436 struct objfile *objfile;
437
438 objfile = TYPE_OBJFILE (type);
439
440 memset ((char *) type, 0, sizeof (struct type));
441 TYPE_OBJFILE (type) = objfile;
442 TYPE_TARGET_TYPE (type) = to_type;
443 TYPE_DOMAIN_TYPE (type) = domain;
444 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
445 TYPE_CODE (type) = TYPE_CODE_MEMBER;
446 }
447
448 /* Smash TYPE to be a type of method of DOMAIN with type TO_TYPE.
449 METHOD just means `function that gets an extra "this" argument'.
450
451 When "smashing" the type, we preserve the objfile that the
452 old type pointed to, since we aren't changing where the type is actually
453 allocated. */
454
455 void
456 smash_to_method_type (type, domain, to_type, args)
457 struct type *type;
458 struct type *domain;
459 struct type *to_type;
460 struct type **args;
461 {
462 struct objfile *objfile;
463
464 objfile = TYPE_OBJFILE (type);
465
466 memset ((char *) type, 0, sizeof (struct type));
467 TYPE_OBJFILE (type) = objfile;
468 TYPE_TARGET_TYPE (type) = to_type;
469 TYPE_DOMAIN_TYPE (type) = domain;
470 TYPE_ARG_TYPES (type) = args;
471 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
472 TYPE_CODE (type) = TYPE_CODE_METHOD;
473 }
474
475 /* Return a typename for a struct/union/enum type
476 without the tag qualifier. If the type has a NULL name,
477 NULL is returned. */
478
479 char *
480 type_name_no_tag (type)
481 register const struct type *type;
482 {
483 register char *name;
484
485 if ((name = TYPE_NAME (type)) != NULL)
486 {
487 switch (TYPE_CODE (type))
488 {
489 case TYPE_CODE_STRUCT:
490 if(!strncmp (name, "struct ", 7))
491 {
492 name += 7;
493 }
494 break;
495 case TYPE_CODE_UNION:
496 if(!strncmp (name, "union ", 6))
497 {
498 name += 6;
499 }
500 break;
501 case TYPE_CODE_ENUM:
502 if(!strncmp (name, "enum ", 5))
503 {
504 name += 5;
505 }
506 break;
507 default: /* To avoid -Wall warnings */
508 break;
509 }
510 }
511 return (name);
512 }
513
514 /* Lookup a primitive type named NAME.
515 Return zero if NAME is not a primitive type.*/
516
517 struct type *
518 lookup_primitive_typename (name)
519 char *name;
520 {
521 struct type ** const *p;
522
523 for (p = current_language -> la_builtin_type_vector; *p != NULL; p++)
524 {
525 if (STREQ ((**p) -> name, name))
526 {
527 return (**p);
528 }
529 }
530 return (NULL);
531 }
532
533 /* Lookup a typedef or primitive type named NAME,
534 visible in lexical block BLOCK.
535 If NOERR is nonzero, return zero if NAME is not suitably defined. */
536
537 struct type *
538 lookup_typename (name, block, noerr)
539 char *name;
540 struct block *block;
541 int noerr;
542 {
543 register struct symbol *sym;
544 register struct type *tmp;
545
546 sym = lookup_symbol (name, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
547 if (sym == NULL || SYMBOL_CLASS (sym) != LOC_TYPEDEF)
548 {
549 tmp = lookup_primitive_typename (name);
550 if (tmp)
551 {
552 return (tmp);
553 }
554 else if (!tmp && noerr)
555 {
556 return (NULL);
557 }
558 else
559 {
560 error ("No type named %s.", name);
561 }
562 }
563 return (SYMBOL_TYPE (sym));
564 }
565
566 struct type *
567 lookup_unsigned_typename (name)
568 char *name;
569 {
570 char *uns = alloca (strlen (name) + 10);
571
572 strcpy (uns, "unsigned ");
573 strcpy (uns + 9, name);
574 return (lookup_typename (uns, (struct block *) NULL, 0));
575 }
576
577 struct type *
578 lookup_signed_typename (name)
579 char *name;
580 {
581 struct type *t;
582 char *uns = alloca (strlen (name) + 8);
583
584 strcpy (uns, "signed ");
585 strcpy (uns + 7, name);
586 t = lookup_typename (uns, (struct block *) NULL, 1);
587 /* If we don't find "signed FOO" just try again with plain "FOO". */
588 if (t != NULL)
589 return t;
590 return lookup_typename (name, (struct block *) NULL, 0);
591 }
592
593 /* Lookup a structure type named "struct NAME",
594 visible in lexical block BLOCK. */
595
596 struct type *
597 lookup_struct (name, block)
598 char *name;
599 struct block *block;
600 {
601 register struct symbol *sym;
602
603 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
604 (struct symtab **) NULL);
605
606 if (sym == NULL)
607 {
608 error ("No struct type named %s.", name);
609 }
610 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
611 {
612 error ("This context has class, union or enum %s, not a struct.", name);
613 }
614 return (SYMBOL_TYPE (sym));
615 }
616
617 /* Lookup a union type named "union NAME",
618 visible in lexical block BLOCK. */
619
620 struct type *
621 lookup_union (name, block)
622 char *name;
623 struct block *block;
624 {
625 register struct symbol *sym;
626
627 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
628 (struct symtab **) NULL);
629
630 if (sym == NULL)
631 {
632 error ("No union type named %s.", name);
633 }
634 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_UNION)
635 {
636 error ("This context has class, struct or enum %s, not a union.", name);
637 }
638 return (SYMBOL_TYPE (sym));
639 }
640
641 /* Lookup an enum type named "enum NAME",
642 visible in lexical block BLOCK. */
643
644 struct type *
645 lookup_enum (name, block)
646 char *name;
647 struct block *block;
648 {
649 register struct symbol *sym;
650
651 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
652 (struct symtab **) NULL);
653 if (sym == NULL)
654 {
655 error ("No enum type named %s.", name);
656 }
657 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_ENUM)
658 {
659 error ("This context has class, struct or union %s, not an enum.", name);
660 }
661 return (SYMBOL_TYPE (sym));
662 }
663
664 /* Lookup a template type named "template NAME<TYPE>",
665 visible in lexical block BLOCK. */
666
667 struct type *
668 lookup_template_type (name, type, block)
669 char *name;
670 struct type *type;
671 struct block *block;
672 {
673 struct symbol *sym;
674 char *nam = (char*) alloca(strlen(name) + strlen(type->name) + 4);
675 strcpy (nam, name);
676 strcat (nam, "<");
677 strcat (nam, type->name);
678 strcat (nam, " >"); /* FIXME, extra space still introduced in gcc? */
679
680 sym = lookup_symbol (nam, block, VAR_NAMESPACE, 0, (struct symtab **)NULL);
681
682 if (sym == NULL)
683 {
684 error ("No template type named %s.", name);
685 }
686 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
687 {
688 error ("This context has class, union or enum %s, not a struct.", name);
689 }
690 return (SYMBOL_TYPE (sym));
691 }
692
693 /* Given a type TYPE, lookup the type of the component of type named
694 NAME.
695 If NOERR is nonzero, return zero if NAME is not suitably defined. */
696
697 struct type *
698 lookup_struct_elt_type (type, name, noerr)
699 struct type *type;
700 char *name;
701 int noerr;
702 {
703 int i;
704
705 if (TYPE_CODE (type) == TYPE_CODE_PTR ||
706 TYPE_CODE (type) == TYPE_CODE_REF)
707 type = TYPE_TARGET_TYPE (type);
708
709 if (TYPE_CODE (type) != TYPE_CODE_STRUCT &&
710 TYPE_CODE (type) != TYPE_CODE_UNION)
711 {
712 target_terminal_ours ();
713 fflush (stdout);
714 fprintf (stderr, "Type ");
715 type_print (type, "", stderr, -1);
716 error (" is not a structure or union type.");
717 }
718
719 check_stub_type (type);
720
721 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
722 {
723 char *t_field_name = TYPE_FIELD_NAME (type, i);
724
725 if (t_field_name && STREQ (t_field_name, name))
726 {
727 return TYPE_FIELD_TYPE (type, i);
728 }
729 }
730
731 /* OK, it's not in this class. Recursively check the baseclasses. */
732 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
733 {
734 struct type *t;
735
736 t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, noerr);
737 if (t != NULL)
738 {
739 return t;
740 }
741 }
742
743 if (noerr)
744 {
745 return NULL;
746 }
747
748 target_terminal_ours ();
749 fflush (stdout);
750 fprintf (stderr, "Type ");
751 type_print (type, "", stderr, -1);
752 fprintf (stderr, " has no component named ");
753 fputs_filtered (name, stderr);
754 error (".");
755 return (struct type *)-1; /* For lint */
756 }
757
758 /* This function is really horrible, but to avoid it, there would need
759 to be more filling in of forward references. */
760
761 void
762 fill_in_vptr_fieldno (type)
763 struct type *type;
764 {
765 if (TYPE_VPTR_FIELDNO (type) < 0)
766 {
767 int i;
768 for (i = 1; i < TYPE_N_BASECLASSES (type); i++)
769 {
770 fill_in_vptr_fieldno (TYPE_BASECLASS (type, i));
771 if (TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i)) >= 0)
772 {
773 TYPE_VPTR_FIELDNO (type)
774 = TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i));
775 TYPE_VPTR_BASETYPE (type)
776 = TYPE_VPTR_BASETYPE (TYPE_BASECLASS (type, i));
777 break;
778 }
779 }
780 }
781 }
782
783 /* Added by Bryan Boreham, Kewill, Sun Sep 17 18:07:17 1989.
784
785 If this is a stubbed struct (i.e. declared as struct foo *), see if
786 we can find a full definition in some other file. If so, copy this
787 definition, so we can use it in future. If not, set a flag so we
788 don't waste too much time in future. (FIXME, this doesn't seem
789 to be happening...)
790
791 This used to be coded as a macro, but I don't think it is called
792 often enough to merit such treatment.
793 */
794
795 struct complaint stub_noname_complaint =
796 {"stub type has NULL name", 0, 0};
797
798 void
799 check_stub_type (type)
800 struct type *type;
801 {
802 if (TYPE_FLAGS(type) & TYPE_FLAG_STUB)
803 {
804 char* name = type_name_no_tag (type);
805 struct symbol *sym;
806 if (name == NULL)
807 {
808 complain (&stub_noname_complaint);
809 return;
810 }
811 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
812 (struct symtab **) NULL);
813 if (sym)
814 {
815 memcpy ((char *)type, (char *)SYMBOL_TYPE(sym), sizeof (struct type));
816 }
817 }
818 }
819
820 /* Ugly hack to convert method stubs into method types.
821
822 He ain't kiddin'. This demangles the name of the method into a string
823 including argument types, parses out each argument type, generates
824 a string casting a zero to that type, evaluates the string, and stuffs
825 the resulting type into an argtype vector!!! Then it knows the type
826 of the whole function (including argument types for overloading),
827 which info used to be in the stab's but was removed to hack back
828 the space required for them. */
829
830 void
831 check_stub_method (type, i, j)
832 struct type *type;
833 int i;
834 int j;
835 {
836 struct fn_field *f;
837 char *mangled_name = gdb_mangle_name (type, i, j);
838 char *demangled_name = cplus_demangle (mangled_name,
839 DMGL_PARAMS | DMGL_ANSI);
840 char *argtypetext, *p;
841 int depth = 0, argcount = 1;
842 struct type **argtypes;
843 struct type *mtype;
844
845 if (demangled_name == NULL)
846 {
847 error ("Internal: Cannot demangle mangled name `%s'.", mangled_name);
848 }
849
850 /* Now, read in the parameters that define this type. */
851 argtypetext = strchr (demangled_name, '(') + 1;
852 p = argtypetext;
853 while (*p)
854 {
855 if (*p == '(')
856 {
857 depth += 1;
858 }
859 else if (*p == ')')
860 {
861 depth -= 1;
862 }
863 else if (*p == ',' && depth == 0)
864 {
865 argcount += 1;
866 }
867
868 p += 1;
869 }
870
871 /* We need two more slots: one for the THIS pointer, and one for the
872 NULL [...] or void [end of arglist]. */
873
874 argtypes = (struct type **)
875 TYPE_ALLOC (type, (argcount + 2) * sizeof (struct type *));
876 p = argtypetext;
877 argtypes[0] = lookup_pointer_type (type);
878 argcount = 1;
879
880 if (*p != ')') /* () means no args, skip while */
881 {
882 depth = 0;
883 while (*p)
884 {
885 if (depth <= 0 && (*p == ',' || *p == ')'))
886 {
887 argtypes[argcount] =
888 parse_and_eval_type (argtypetext, p - argtypetext);
889 argcount += 1;
890 argtypetext = p + 1;
891 }
892
893 if (*p == '(')
894 {
895 depth += 1;
896 }
897 else if (*p == ')')
898 {
899 depth -= 1;
900 }
901
902 p += 1;
903 }
904 }
905
906 if (p[-2] != '.') /* Not '...' */
907 {
908 argtypes[argcount] = builtin_type_void; /* List terminator */
909 }
910 else
911 {
912 argtypes[argcount] = NULL; /* Ellist terminator */
913 }
914
915 free (demangled_name);
916
917 f = TYPE_FN_FIELDLIST1 (type, i);
918 TYPE_FN_FIELD_PHYSNAME (f, j) = mangled_name;
919
920 /* Now update the old "stub" type into a real type. */
921 mtype = TYPE_FN_FIELD_TYPE (f, j);
922 TYPE_DOMAIN_TYPE (mtype) = type;
923 TYPE_ARG_TYPES (mtype) = argtypes;
924 TYPE_FLAGS (mtype) &= ~TYPE_FLAG_STUB;
925 TYPE_FN_FIELD_STUB (f, j) = 0;
926 }
927
928 const struct cplus_struct_type cplus_struct_default;
929
930 void
931 allocate_cplus_struct_type (type)
932 struct type *type;
933 {
934 if (!HAVE_CPLUS_STRUCT (type))
935 {
936 TYPE_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
937 TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
938 *(TYPE_CPLUS_SPECIFIC(type)) = cplus_struct_default;
939 }
940 }
941
942 /* Helper function to initialize the standard scalar types.
943
944 If NAME is non-NULL and OBJFILE is non-NULL, then we make a copy
945 of the string pointed to by name in the type_obstack for that objfile,
946 and initialize the type name to that copy. There are places (mipsread.c
947 in particular, where init_type is called with a NULL value for NAME). */
948
949 struct type *
950 init_type (code, length, flags, name, objfile)
951 enum type_code code;
952 int length;
953 int flags;
954 char *name;
955 struct objfile *objfile;
956 {
957 register struct type *type;
958
959 type = alloc_type (objfile);
960 TYPE_CODE (type) = code;
961 TYPE_LENGTH (type) = length;
962 TYPE_FLAGS (type) |= flags;
963 if ((name != NULL) && (objfile != NULL))
964 {
965 TYPE_NAME (type) =
966 obsavestring (name, strlen (name), &objfile -> type_obstack);
967 }
968 else
969 {
970 TYPE_NAME (type) = name;
971 }
972
973 /* C++ fancies. */
974
975 if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION)
976 {
977 INIT_CPLUS_SPECIFIC (type);
978 }
979 return (type);
980 }
981
982 /* Look up a fundamental type for the specified objfile.
983 May need to construct such a type if this is the first use.
984
985 Some object file formats (ELF, COFF, etc) do not define fundamental
986 types such as "int" or "double". Others (stabs for example), do
987 define fundamental types.
988
989 For the formats which don't provide fundamental types, gdb can create
990 such types, using defaults reasonable for the current language and
991 the current target machine.
992
993 NOTE: This routine is obsolescent. Each debugging format reader
994 should manage it's own fundamental types, either creating them from
995 suitable defaults or reading them from the debugging information,
996 whichever is appropriate. The DWARF reader has already been
997 fixed to do this. Once the other readers are fixed, this routine
998 will go away. Also note that fundamental types should be managed
999 on a compilation unit basis in a multi-language environment, not
1000 on a linkage unit basis as is done here. */
1001
1002
1003 struct type *
1004 lookup_fundamental_type (objfile, typeid)
1005 struct objfile *objfile;
1006 int typeid;
1007 {
1008 register struct type **typep;
1009 register int nbytes;
1010
1011 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
1012 {
1013 error ("internal error - invalid fundamental type id %d", typeid);
1014 }
1015
1016 /* If this is the first time we need a fundamental type for this objfile
1017 then we need to initialize the vector of type pointers. */
1018
1019 if (objfile -> fundamental_types == NULL)
1020 {
1021 nbytes = FT_NUM_MEMBERS * sizeof (struct type *);
1022 objfile -> fundamental_types = (struct type **)
1023 obstack_alloc (&objfile -> type_obstack, nbytes);
1024 memset ((char *) objfile -> fundamental_types, 0, nbytes);
1025 }
1026
1027 /* Look for this particular type in the fundamental type vector. If one is
1028 not found, create and install one appropriate for the current language. */
1029
1030 typep = objfile -> fundamental_types + typeid;
1031 if (*typep == NULL)
1032 {
1033 *typep = create_fundamental_type (objfile, typeid);
1034 }
1035
1036 return (*typep);
1037 }
1038
1039 #if MAINTENANCE_CMDS
1040
1041 static void
1042 print_bit_vector (bits, nbits)
1043 B_TYPE *bits;
1044 int nbits;
1045 {
1046 int bitno;
1047
1048 for (bitno = 0; bitno < nbits; bitno++)
1049 {
1050 if ((bitno % 8) == 0)
1051 {
1052 puts_filtered (" ");
1053 }
1054 if (B_TST (bits, bitno))
1055 {
1056 printf_filtered ("1");
1057 }
1058 else
1059 {
1060 printf_filtered ("0");
1061 }
1062 }
1063 }
1064
1065 /* The args list is a strange beast. It is either terminated by a NULL
1066 pointer for varargs functions, or by a pointer to a TYPE_CODE_VOID
1067 type for normal fixed argcount functions. (FIXME someday)
1068 Also note the first arg should be the "this" pointer, we may not want to
1069 include it since we may get into a infinitely recursive situation. */
1070
1071 static void
1072 print_arg_types (args, spaces)
1073 struct type **args;
1074 int spaces;
1075 {
1076 if (args != NULL)
1077 {
1078 while (*args != NULL)
1079 {
1080 recursive_dump_type (*args, spaces + 2);
1081 if ((*args++) -> code == TYPE_CODE_VOID)
1082 {
1083 break;
1084 }
1085 }
1086 }
1087 }
1088
1089 static void
1090 dump_fn_fieldlists (type, spaces)
1091 struct type *type;
1092 int spaces;
1093 {
1094 int method_idx;
1095 int overload_idx;
1096 struct fn_field *f;
1097
1098 printfi_filtered (spaces, "fn_fieldlists 0x%x\n",
1099 TYPE_FN_FIELDLISTS (type));
1100 for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
1101 {
1102 f = TYPE_FN_FIELDLIST1 (type, method_idx);
1103 printfi_filtered (spaces + 2, "[%d] name '%s' (0x%x) length %d\n",
1104 method_idx,
1105 TYPE_FN_FIELDLIST_NAME (type, method_idx),
1106 TYPE_FN_FIELDLIST_NAME (type, method_idx),
1107 TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
1108 for (overload_idx = 0;
1109 overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
1110 overload_idx++)
1111 {
1112 printfi_filtered (spaces + 4, "[%d] physname '%s' (0x%x)\n",
1113 overload_idx,
1114 TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
1115 TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
1116 printfi_filtered (spaces + 8, "type 0x%x\n",
1117 TYPE_FN_FIELD_TYPE (f, overload_idx));
1118 recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
1119 spaces + 8 + 2);
1120 printfi_filtered (spaces + 8, "args 0x%x\n",
1121 TYPE_FN_FIELD_ARGS (f, overload_idx));
1122 print_arg_types (TYPE_FN_FIELD_ARGS (f, overload_idx), spaces);
1123 printfi_filtered (spaces + 8, "fcontext 0x%x\n",
1124 TYPE_FN_FIELD_FCONTEXT (f, overload_idx));
1125 printfi_filtered (spaces + 8, "is_const %d\n",
1126 TYPE_FN_FIELD_CONST (f, overload_idx));
1127 printfi_filtered (spaces + 8, "is_volatile %d\n",
1128 TYPE_FN_FIELD_VOLATILE (f, overload_idx));
1129 printfi_filtered (spaces + 8, "is_private %d\n",
1130 TYPE_FN_FIELD_PRIVATE (f, overload_idx));
1131 printfi_filtered (spaces + 8, "is_protected %d\n",
1132 TYPE_FN_FIELD_PROTECTED (f, overload_idx));
1133 printfi_filtered (spaces + 8, "is_stub %d\n",
1134 TYPE_FN_FIELD_STUB (f, overload_idx));
1135 printfi_filtered (spaces + 8, "voffset %u\n",
1136 TYPE_FN_FIELD_VOFFSET (f, overload_idx));
1137 }
1138 }
1139 }
1140
1141 static void
1142 print_cplus_stuff (type, spaces)
1143 struct type *type;
1144 int spaces;
1145 {
1146 printfi_filtered (spaces, "n_baseclasses %d\n",
1147 TYPE_N_BASECLASSES (type));
1148 printfi_filtered (spaces, "nfn_fields %d\n",
1149 TYPE_NFN_FIELDS (type));
1150 printfi_filtered (spaces, "nfn_fields_total %d\n",
1151 TYPE_NFN_FIELDS_TOTAL (type));
1152 if (TYPE_N_BASECLASSES (type) > 0)
1153 {
1154 printfi_filtered (spaces, "virtual_field_bits (%d bits at *0x%x)",
1155 TYPE_N_BASECLASSES (type),
1156 TYPE_FIELD_VIRTUAL_BITS (type));
1157 print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
1158 TYPE_N_BASECLASSES (type));
1159 puts_filtered ("\n");
1160 }
1161 if (TYPE_NFIELDS (type) > 0)
1162 {
1163 if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
1164 {
1165 printfi_filtered (spaces, "private_field_bits (%d bits at *0x%x)",
1166 TYPE_NFIELDS (type),
1167 TYPE_FIELD_PRIVATE_BITS (type));
1168 print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
1169 TYPE_NFIELDS (type));
1170 puts_filtered ("\n");
1171 }
1172 if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
1173 {
1174 printfi_filtered (spaces, "protected_field_bits (%d bits at *0x%x)",
1175 TYPE_NFIELDS (type),
1176 TYPE_FIELD_PROTECTED_BITS (type));
1177 print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
1178 TYPE_NFIELDS (type));
1179 puts_filtered ("\n");
1180 }
1181 }
1182 if (TYPE_NFN_FIELDS (type) > 0)
1183 {
1184 dump_fn_fieldlists (type, spaces);
1185 }
1186 }
1187
1188 void
1189 recursive_dump_type (type, spaces)
1190 struct type *type;
1191 int spaces;
1192 {
1193 int idx;
1194
1195 printfi_filtered (spaces, "type node 0x%x\n", type);
1196 printfi_filtered (spaces, "name '%s' (0x%x)\n", TYPE_NAME (type),
1197 TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
1198 printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
1199 switch (TYPE_CODE (type))
1200 {
1201 case TYPE_CODE_UNDEF:
1202 printf_filtered ("(TYPE_CODE_UNDEF)");
1203 break;
1204 case TYPE_CODE_PTR:
1205 printf_filtered ("(TYPE_CODE_PTR)");
1206 break;
1207 case TYPE_CODE_ARRAY:
1208 printf_filtered ("(TYPE_CODE_ARRAY)");
1209 break;
1210 case TYPE_CODE_STRUCT:
1211 printf_filtered ("(TYPE_CODE_STRUCT)");
1212 break;
1213 case TYPE_CODE_UNION:
1214 printf_filtered ("(TYPE_CODE_UNION)");
1215 break;
1216 case TYPE_CODE_ENUM:
1217 printf_filtered ("(TYPE_CODE_ENUM)");
1218 break;
1219 case TYPE_CODE_FUNC:
1220 printf_filtered ("(TYPE_CODE_FUNC)");
1221 break;
1222 case TYPE_CODE_INT:
1223 printf_filtered ("(TYPE_CODE_INT)");
1224 break;
1225 case TYPE_CODE_FLT:
1226 printf_filtered ("(TYPE_CODE_FLT)");
1227 break;
1228 case TYPE_CODE_VOID:
1229 printf_filtered ("(TYPE_CODE_VOID)");
1230 break;
1231 case TYPE_CODE_SET:
1232 printf_filtered ("(TYPE_CODE_SET)");
1233 break;
1234 case TYPE_CODE_RANGE:
1235 printf_filtered ("(TYPE_CODE_RANGE)");
1236 break;
1237 case TYPE_CODE_STRING:
1238 printf_filtered ("(TYPE_CODE_STRING)");
1239 break;
1240 case TYPE_CODE_ERROR:
1241 printf_filtered ("(TYPE_CODE_ERROR)");
1242 break;
1243 case TYPE_CODE_MEMBER:
1244 printf_filtered ("(TYPE_CODE_MEMBER)");
1245 break;
1246 case TYPE_CODE_METHOD:
1247 printf_filtered ("(TYPE_CODE_METHOD)");
1248 break;
1249 case TYPE_CODE_REF:
1250 printf_filtered ("(TYPE_CODE_REF)");
1251 break;
1252 case TYPE_CODE_CHAR:
1253 printf_filtered ("(TYPE_CODE_CHAR)");
1254 break;
1255 case TYPE_CODE_BOOL:
1256 printf_filtered ("(TYPE_CODE_BOOL)");
1257 break;
1258 default:
1259 printf_filtered ("(UNKNOWN TYPE CODE)");
1260 break;
1261 }
1262 puts_filtered ("\n");
1263 printfi_filtered (spaces, "length %d\n", TYPE_LENGTH (type));
1264 printfi_filtered (spaces, "objfile 0x%x\n", TYPE_OBJFILE (type));
1265 printfi_filtered (spaces, "target_type 0x%x\n", TYPE_TARGET_TYPE (type));
1266 if (TYPE_TARGET_TYPE (type) != NULL)
1267 {
1268 recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
1269 }
1270 printfi_filtered (spaces, "pointer_type 0x%x\n",
1271 TYPE_POINTER_TYPE (type));
1272 printfi_filtered (spaces, "reference_type 0x%x\n",
1273 TYPE_REFERENCE_TYPE (type));
1274 printfi_filtered (spaces, "function_type 0x%x\n",
1275 TYPE_FUNCTION_TYPE (type));
1276 printfi_filtered (spaces, "flags 0x%x", TYPE_FLAGS (type));
1277 if (TYPE_FLAGS (type) & TYPE_FLAG_UNSIGNED)
1278 {
1279 puts_filtered (" TYPE_FLAG_UNSIGNED");
1280 }
1281 if (TYPE_FLAGS (type) & TYPE_FLAG_SIGNED)
1282 {
1283 puts_filtered (" TYPE_FLAG_SIGNED");
1284 }
1285 if (TYPE_FLAGS (type) & TYPE_FLAG_STUB)
1286 {
1287 puts_filtered (" TYPE_FLAG_STUB");
1288 }
1289 puts_filtered ("\n");
1290 printfi_filtered (spaces, "nfields %d 0x%x\n", TYPE_NFIELDS (type),
1291 TYPE_FIELDS (type));
1292 for (idx = 0; idx < TYPE_NFIELDS (type); idx++)
1293 {
1294 printfi_filtered (spaces + 2,
1295 "[%d] bitpos %d bitsize %d type 0x%x name '%s' (0x%x)\n",
1296 idx, TYPE_FIELD_BITPOS (type, idx),
1297 TYPE_FIELD_BITSIZE (type, idx),
1298 TYPE_FIELD_TYPE (type, idx),
1299 TYPE_FIELD_NAME (type, idx),
1300 TYPE_FIELD_NAME (type, idx) != NULL
1301 ? TYPE_FIELD_NAME (type, idx)
1302 : "<NULL>");
1303 if (TYPE_FIELD_TYPE (type, idx) != NULL)
1304 {
1305 recursive_dump_type (TYPE_FIELD_TYPE (type, idx), spaces + 4);
1306 }
1307 }
1308 printfi_filtered (spaces, "vptr_basetype 0x%x\n",
1309 TYPE_VPTR_BASETYPE (type));
1310 if (TYPE_VPTR_BASETYPE (type) != NULL)
1311 {
1312 recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
1313 }
1314 printfi_filtered (spaces, "vptr_fieldno %d\n", TYPE_VPTR_FIELDNO (type));
1315 switch (TYPE_CODE (type))
1316 {
1317 case TYPE_CODE_METHOD:
1318 case TYPE_CODE_FUNC:
1319 printfi_filtered (spaces, "arg_types 0x%x\n", TYPE_ARG_TYPES (type));
1320 print_arg_types (TYPE_ARG_TYPES (type), spaces);
1321 break;
1322
1323 case TYPE_CODE_STRUCT:
1324 printfi_filtered (spaces, "cplus_stuff 0x%x\n",
1325 TYPE_CPLUS_SPECIFIC (type));
1326 print_cplus_stuff (type, spaces);
1327 break;
1328
1329 default:
1330 /* We have to pick one of the union types to be able print and test
1331 the value. Pick cplus_struct_type, even though we know it isn't
1332 any particular one. */
1333 printfi_filtered (spaces, "type_specific 0x%x",
1334 TYPE_CPLUS_SPECIFIC (type));
1335 if (TYPE_CPLUS_SPECIFIC (type) != NULL)
1336 {
1337 printf_filtered (" (unknown data form)");
1338 }
1339 printf_filtered ("\n");
1340 break;
1341
1342 }
1343 }
1344
1345 #endif /* MAINTENANCE_CMDS */
1346
1347 void
1348 _initialize_gdbtypes ()
1349 {
1350 builtin_type_void =
1351 init_type (TYPE_CODE_VOID, 1,
1352 0,
1353 "void", (struct objfile *) NULL);
1354 builtin_type_char =
1355 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1356 0,
1357 "char", (struct objfile *) NULL);
1358 builtin_type_signed_char =
1359 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1360 TYPE_FLAG_SIGNED,
1361 "signed char", (struct objfile *) NULL);
1362 builtin_type_unsigned_char =
1363 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1364 TYPE_FLAG_UNSIGNED,
1365 "unsigned char", (struct objfile *) NULL);
1366 builtin_type_short =
1367 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
1368 0,
1369 "short", (struct objfile *) NULL);
1370 builtin_type_unsigned_short =
1371 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
1372 TYPE_FLAG_UNSIGNED,
1373 "unsigned short", (struct objfile *) NULL);
1374 builtin_type_int =
1375 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1376 0,
1377 "int", (struct objfile *) NULL);
1378 builtin_type_unsigned_int =
1379 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1380 TYPE_FLAG_UNSIGNED,
1381 "unsigned int", (struct objfile *) NULL);
1382 builtin_type_long =
1383 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
1384 0,
1385 "long", (struct objfile *) NULL);
1386 builtin_type_unsigned_long =
1387 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
1388 TYPE_FLAG_UNSIGNED,
1389 "unsigned long", (struct objfile *) NULL);
1390 builtin_type_long_long =
1391 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
1392 0,
1393 "long long", (struct objfile *) NULL);
1394 builtin_type_unsigned_long_long =
1395 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
1396 TYPE_FLAG_UNSIGNED,
1397 "unsigned long long", (struct objfile *) NULL);
1398 builtin_type_float =
1399 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
1400 0,
1401 "float", (struct objfile *) NULL);
1402 builtin_type_double =
1403 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
1404 0,
1405 "double", (struct objfile *) NULL);
1406 builtin_type_long_double =
1407 init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
1408 0,
1409 "long double", (struct objfile *) NULL);
1410 builtin_type_complex =
1411 init_type (TYPE_CODE_FLT, TARGET_COMPLEX_BIT / TARGET_CHAR_BIT,
1412 0,
1413 "complex", (struct objfile *) NULL);
1414 builtin_type_double_complex =
1415 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_COMPLEX_BIT / TARGET_CHAR_BIT,
1416 0,
1417 "double complex", (struct objfile *) NULL);
1418 builtin_type_string =
1419 init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1420 0,
1421 "string", (struct objfile *) NULL);
1422 }