]> Git Repo - binutils.git/blob - gdb/gdbtypes.c
Remove ada-lex.c and ada-exp.tab.c as they are generated files
[binutils.git] / gdb / gdbtypes.c
1 /* Support routines for manipulating internal types for GDB.
2    Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
3    Free Software Foundation, Inc.
4    Contributed by Cygnus Support, using pieces from other GDB modules.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place - Suite 330,
21    Boston, MA 02111-1307, USA.  */
22
23 #include "defs.h"
24 #include "gdb_string.h"
25 #include "bfd.h"
26 #include "symtab.h"
27 #include "symfile.h"
28 #include "objfiles.h"
29 #include "gdbtypes.h"
30 #include "expression.h"
31 #include "language.h"
32 #include "target.h"
33 #include "value.h"
34 #include "demangle.h"
35 #include "complaints.h"
36 #include "gdbcmd.h"
37 #include "wrapper.h"
38 #include "cp-abi.h"
39 #include "gdb_assert.h"
40
41 /* These variables point to the objects
42    representing the predefined C data types.  */
43
44 struct type *builtin_type_void;
45 struct type *builtin_type_char;
46 struct type *builtin_type_true_char;
47 struct type *builtin_type_short;
48 struct type *builtin_type_int;
49 struct type *builtin_type_long;
50 struct type *builtin_type_long_long;
51 struct type *builtin_type_signed_char;
52 struct type *builtin_type_unsigned_char;
53 struct type *builtin_type_unsigned_short;
54 struct type *builtin_type_unsigned_int;
55 struct type *builtin_type_unsigned_long;
56 struct type *builtin_type_unsigned_long_long;
57 struct type *builtin_type_float;
58 struct type *builtin_type_double;
59 struct type *builtin_type_long_double;
60 struct type *builtin_type_complex;
61 struct type *builtin_type_double_complex;
62 struct type *builtin_type_string;
63 struct type *builtin_type_int8;
64 struct type *builtin_type_uint8;
65 struct type *builtin_type_int16;
66 struct type *builtin_type_uint16;
67 struct type *builtin_type_int32;
68 struct type *builtin_type_uint32;
69 struct type *builtin_type_int64;
70 struct type *builtin_type_uint64;
71 struct type *builtin_type_int128;
72 struct type *builtin_type_uint128;
73 struct type *builtin_type_bool;
74
75 /* 128 bit long vector types */
76 struct type *builtin_type_v2_double;
77 struct type *builtin_type_v4_float;
78 struct type *builtin_type_v2_int64;
79 struct type *builtin_type_v4_int32;
80 struct type *builtin_type_v8_int16;
81 struct type *builtin_type_v16_int8;
82 /* 64 bit long vector types */
83 struct type *builtin_type_v2_float;
84 struct type *builtin_type_v2_int32;
85 struct type *builtin_type_v4_int16;
86 struct type *builtin_type_v8_int8;
87
88 struct type *builtin_type_v4sf;
89 struct type *builtin_type_v4si;
90 struct type *builtin_type_v16qi;
91 struct type *builtin_type_v8qi;
92 struct type *builtin_type_v8hi;
93 struct type *builtin_type_v4hi;
94 struct type *builtin_type_v2si;
95 struct type *builtin_type_vec128;
96 struct type *builtin_type_vec128i;
97 struct type *builtin_type_ieee_single_big;
98 struct type *builtin_type_ieee_single_little;
99 struct type *builtin_type_ieee_double_big;
100 struct type *builtin_type_ieee_double_little;
101 struct type *builtin_type_ieee_double_littlebyte_bigword;
102 struct type *builtin_type_i387_ext;
103 struct type *builtin_type_m68881_ext;
104 struct type *builtin_type_i960_ext;
105 struct type *builtin_type_m88110_ext;
106 struct type *builtin_type_m88110_harris_ext;
107 struct type *builtin_type_arm_ext_big;
108 struct type *builtin_type_arm_ext_littlebyte_bigword;
109 struct type *builtin_type_ia64_spill_big;
110 struct type *builtin_type_ia64_spill_little;
111 struct type *builtin_type_ia64_quad_big;
112 struct type *builtin_type_ia64_quad_little;
113 struct type *builtin_type_void_data_ptr;
114 struct type *builtin_type_void_func_ptr;
115 struct type *builtin_type_CORE_ADDR;
116 struct type *builtin_type_bfd_vma;
117
118 int opaque_type_resolution = 1;
119 int overload_debug = 0;
120
121 struct extra
122   {
123     char str[128];
124     int len;
125   };                            /* maximum extension is 128! FIXME */
126
127 static void add_name (struct extra *, char *);
128 static void add_mangled_type (struct extra *, struct type *);
129 #if 0
130 static void cfront_mangle_name (struct type *, int, int);
131 #endif
132 static void print_bit_vector (B_TYPE *, int);
133 static void print_arg_types (struct field *, int, int);
134 static void dump_fn_fieldlists (struct type *, int);
135 static void print_cplus_stuff (struct type *, int);
136 static void virtual_base_list_aux (struct type *dclass);
137
138
139 /* Alloc a new type structure and fill it with some defaults.  If
140    OBJFILE is non-NULL, then allocate the space for the type structure
141    in that objfile's type_obstack.  Otherwise allocate the new type structure
142    by xmalloc () (for permanent types).  */
143
144 struct type *
145 alloc_type (struct objfile *objfile)
146 {
147   register struct type *type;
148
149   /* Alloc the structure and start off with all fields zeroed. */
150
151   if (objfile == NULL)
152     {
153       type = xmalloc (sizeof (struct type));
154       memset (type, 0, sizeof (struct type));
155       TYPE_MAIN_TYPE (type) = xmalloc (sizeof (struct main_type));
156     }
157   else
158     {
159       type = obstack_alloc (&objfile->type_obstack,
160                             sizeof (struct type));
161       memset (type, 0, sizeof (struct type));
162       TYPE_MAIN_TYPE (type) = obstack_alloc (&objfile->type_obstack,
163                                              sizeof (struct main_type));
164       OBJSTAT (objfile, n_types++);
165     }
166   memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
167
168   /* Initialize the fields that might not be zero. */
169
170   TYPE_CODE (type) = TYPE_CODE_UNDEF;
171   TYPE_OBJFILE (type) = objfile;
172   TYPE_VPTR_FIELDNO (type) = -1;
173   TYPE_CHAIN (type) = type;     /* Chain back to itself.  */
174
175   return (type);
176 }
177
178 /* Alloc a new type instance structure, fill it with some defaults,
179    and point it at OLDTYPE.  Allocate the new type instance from the
180    same place as OLDTYPE.  */
181
182 static struct type *
183 alloc_type_instance (struct type *oldtype)
184 {
185   struct type *type;
186
187   /* Allocate the structure.  */
188
189   if (TYPE_OBJFILE (oldtype) == NULL)
190     {
191       type = xmalloc (sizeof (struct type));
192       memset (type, 0, sizeof (struct type));
193     }
194   else
195     {
196       type = obstack_alloc (&TYPE_OBJFILE (oldtype)->type_obstack,
197                             sizeof (struct type));
198       memset (type, 0, sizeof (struct type));
199     }
200   TYPE_MAIN_TYPE (type) = TYPE_MAIN_TYPE (oldtype);
201
202   TYPE_CHAIN (type) = type;     /* Chain back to itself for now.  */
203
204   return (type);
205 }
206
207 /* Clear all remnants of the previous type at TYPE, in preparation for
208    replacing it with something else.  */
209 static void
210 smash_type (struct type *type)
211 {
212   memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
213
214   /* For now, delete the rings.  */
215   TYPE_CHAIN (type) = type;
216
217   /* For now, leave the pointer/reference types alone.  */
218 }
219
220 /* Lookup a pointer to a type TYPE.  TYPEPTR, if nonzero, points
221    to a pointer to memory where the pointer type should be stored.
222    If *TYPEPTR is zero, update it to point to the pointer type we return.
223    We allocate new memory if needed.  */
224
225 struct type *
226 make_pointer_type (struct type *type, struct type **typeptr)
227 {
228   register struct type *ntype;  /* New type */
229   struct objfile *objfile;
230
231   ntype = TYPE_POINTER_TYPE (type);
232
233   if (ntype)
234     {
235       if (typeptr == 0)
236         return ntype;           /* Don't care about alloc, and have new type.  */
237       else if (*typeptr == 0)
238         {
239           *typeptr = ntype;     /* Tracking alloc, and we have new type.  */
240           return ntype;
241         }
242     }
243
244   if (typeptr == 0 || *typeptr == 0)    /* We'll need to allocate one.  */
245     {
246       ntype = alloc_type (TYPE_OBJFILE (type));
247       if (typeptr)
248         *typeptr = ntype;
249     }
250   else
251     /* We have storage, but need to reset it.  */
252     {
253       ntype = *typeptr;
254       objfile = TYPE_OBJFILE (ntype);
255       smash_type (ntype);
256       TYPE_OBJFILE (ntype) = objfile;
257     }
258
259   TYPE_TARGET_TYPE (ntype) = type;
260   TYPE_POINTER_TYPE (type) = ntype;
261
262   /* FIXME!  Assume the machine has only one representation for pointers!  */
263
264   TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
265   TYPE_CODE (ntype) = TYPE_CODE_PTR;
266
267   /* Mark pointers as unsigned.  The target converts between pointers
268      and addresses (CORE_ADDRs) using POINTER_TO_ADDRESS() and
269      ADDRESS_TO_POINTER(). */
270   TYPE_FLAGS (ntype) |= TYPE_FLAG_UNSIGNED;
271
272   if (!TYPE_POINTER_TYPE (type))        /* Remember it, if don't have one.  */
273     TYPE_POINTER_TYPE (type) = ntype;
274
275   return ntype;
276 }
277
278 /* Given a type TYPE, return a type of pointers to that type.
279    May need to construct such a type if this is the first use.  */
280
281 struct type *
282 lookup_pointer_type (struct type *type)
283 {
284   return make_pointer_type (type, (struct type **) 0);
285 }
286
287 /* Lookup a C++ `reference' to a type TYPE.  TYPEPTR, if nonzero, points
288    to a pointer to memory where the reference type should be stored.
289    If *TYPEPTR is zero, update it to point to the reference type we return.
290    We allocate new memory if needed.  */
291
292 struct type *
293 make_reference_type (struct type *type, struct type **typeptr)
294 {
295   register struct type *ntype;  /* New type */
296   struct objfile *objfile;
297
298   ntype = TYPE_REFERENCE_TYPE (type);
299
300   if (ntype)
301     {
302       if (typeptr == 0)
303         return ntype;           /* Don't care about alloc, and have new type.  */
304       else if (*typeptr == 0)
305         {
306           *typeptr = ntype;     /* Tracking alloc, and we have new type.  */
307           return ntype;
308         }
309     }
310
311   if (typeptr == 0 || *typeptr == 0)    /* We'll need to allocate one.  */
312     {
313       ntype = alloc_type (TYPE_OBJFILE (type));
314       if (typeptr)
315         *typeptr = ntype;
316     }
317   else
318     /* We have storage, but need to reset it.  */
319     {
320       ntype = *typeptr;
321       objfile = TYPE_OBJFILE (ntype);
322       smash_type (ntype);
323       TYPE_OBJFILE (ntype) = objfile;
324     }
325
326   TYPE_TARGET_TYPE (ntype) = type;
327   TYPE_REFERENCE_TYPE (type) = ntype;
328
329   /* FIXME!  Assume the machine has only one representation for references,
330      and that it matches the (only) representation for pointers!  */
331
332   TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
333   TYPE_CODE (ntype) = TYPE_CODE_REF;
334
335   if (!TYPE_REFERENCE_TYPE (type))      /* Remember it, if don't have one.  */
336     TYPE_REFERENCE_TYPE (type) = ntype;
337
338   return ntype;
339 }
340
341 /* Same as above, but caller doesn't care about memory allocation details.  */
342
343 struct type *
344 lookup_reference_type (struct type *type)
345 {
346   return make_reference_type (type, (struct type **) 0);
347 }
348
349 /* Lookup a function type that returns type TYPE.  TYPEPTR, if nonzero, points
350    to a pointer to memory where the function type should be stored.
351    If *TYPEPTR is zero, update it to point to the function type we return.
352    We allocate new memory if needed.  */
353
354 struct type *
355 make_function_type (struct type *type, struct type **typeptr)
356 {
357   register struct type *ntype;  /* New type */
358   struct objfile *objfile;
359
360   if (typeptr == 0 || *typeptr == 0)    /* We'll need to allocate one.  */
361     {
362       ntype = alloc_type (TYPE_OBJFILE (type));
363       if (typeptr)
364         *typeptr = ntype;
365     }
366   else
367     /* We have storage, but need to reset it.  */
368     {
369       ntype = *typeptr;
370       objfile = TYPE_OBJFILE (ntype);
371       smash_type (ntype);
372       TYPE_OBJFILE (ntype) = objfile;
373     }
374
375   TYPE_TARGET_TYPE (ntype) = type;
376
377   TYPE_LENGTH (ntype) = 1;
378   TYPE_CODE (ntype) = TYPE_CODE_FUNC;
379
380   return ntype;
381 }
382
383
384 /* Given a type TYPE, return a type of functions that return that type.
385    May need to construct such a type if this is the first use.  */
386
387 struct type *
388 lookup_function_type (struct type *type)
389 {
390   return make_function_type (type, (struct type **) 0);
391 }
392
393 /* Identify address space identifier by name --
394    return the integer flag defined in gdbtypes.h.  */
395 extern int
396 address_space_name_to_int (char *space_identifier)
397 {
398   /* Check for known address space delimiters. */
399   if (!strcmp (space_identifier, "code"))
400     return TYPE_FLAG_CODE_SPACE;
401   else if (!strcmp (space_identifier, "data"))
402     return TYPE_FLAG_DATA_SPACE;
403   else
404     error ("Unknown address space specifier: \"%s\"", space_identifier);
405 }
406
407 /* Identify address space identifier by integer flag as defined in 
408    gdbtypes.h -- return the string version of the adress space name. */
409
410 extern char *
411 address_space_int_to_name (int space_flag)
412 {
413   if (space_flag & TYPE_FLAG_CODE_SPACE)
414     return "code";
415   else if (space_flag & TYPE_FLAG_DATA_SPACE)
416     return "data";
417   else
418     return NULL;
419 }
420
421 /* Create a new type with instance flags NEW_FLAGS, based on TYPE.
422    If STORAGE is non-NULL, create the new type instance there.  */
423
424 struct type *
425 make_qualified_type (struct type *type, int new_flags,
426                      struct type *storage)
427 {
428   struct type *ntype;
429
430   ntype = type;
431   do {
432     if (TYPE_INSTANCE_FLAGS (ntype) == new_flags)
433       return ntype;
434     ntype = TYPE_CHAIN (ntype);
435   } while (ntype != type);
436
437   /* Create a new type instance.  */
438   if (storage == NULL)
439     ntype = alloc_type_instance (type);
440   else
441     {
442       ntype = storage;
443       TYPE_MAIN_TYPE (ntype) = TYPE_MAIN_TYPE (type);
444       TYPE_CHAIN (ntype) = ntype;
445     }
446
447   /* Pointers or references to the original type are not relevant to
448      the new type.  */
449   TYPE_POINTER_TYPE (ntype) = (struct type *) 0;
450   TYPE_REFERENCE_TYPE (ntype) = (struct type *) 0;
451
452   /* Chain the new qualified type to the old type.  */
453   TYPE_CHAIN (ntype) = TYPE_CHAIN (type);
454   TYPE_CHAIN (type) = ntype;
455
456   /* Now set the instance flags and return the new type.  */
457   TYPE_INSTANCE_FLAGS (ntype) = new_flags;
458
459   return ntype;
460 }
461
462 /* Make an address-space-delimited variant of a type -- a type that
463    is identical to the one supplied except that it has an address
464    space attribute attached to it (such as "code" or "data").
465
466    This is for Harvard architectures. */
467
468 struct type *
469 make_type_with_address_space (struct type *type, int space_flag)
470 {
471   struct type *ntype;
472   int new_flags = ((TYPE_INSTANCE_FLAGS (type)
473                     & ~(TYPE_FLAG_CODE_SPACE | TYPE_FLAG_DATA_SPACE))
474                    | space_flag);
475
476   return make_qualified_type (type, new_flags, NULL);
477 }
478
479 /* Make a "c-v" variant of a type -- a type that is identical to the
480    one supplied except that it may have const or volatile attributes
481    CNST is a flag for setting the const attribute
482    VOLTL is a flag for setting the volatile attribute
483    TYPE is the base type whose variant we are creating.
484    TYPEPTR, if nonzero, points
485    to a pointer to memory where the reference type should be stored.
486    If *TYPEPTR is zero, update it to point to the reference type we return.
487    We allocate new memory if needed.  */
488
489 struct type *
490 make_cv_type (int cnst, int voltl, struct type *type, struct type **typeptr)
491 {
492   register struct type *ntype;  /* New type */
493   register struct type *tmp_type = type;        /* tmp type */
494   struct objfile *objfile;
495
496   int new_flags = (TYPE_INSTANCE_FLAGS (type)
497                    & ~(TYPE_FLAG_CONST | TYPE_FLAG_VOLATILE));
498
499   if (cnst)
500     new_flags |= TYPE_FLAG_CONST;
501
502   if (voltl)
503     new_flags |= TYPE_FLAG_VOLATILE;
504
505   if (typeptr && *typeptr != NULL)
506     {
507       /* Objfile is per-core-type.  This const-qualified type had best
508          belong to the same objfile as the type it is qualifying, unless
509          we are overwriting a stub type, in which case the safest thing
510          to do is to copy the core type into the new objfile.  */
511
512       gdb_assert (TYPE_OBJFILE (*typeptr) == TYPE_OBJFILE (type)
513                   || TYPE_STUB (*typeptr));
514       if (TYPE_OBJFILE (*typeptr) != TYPE_OBJFILE (type))
515         {
516           TYPE_MAIN_TYPE (*typeptr)
517             = TYPE_ALLOC (*typeptr, sizeof (struct main_type));
518           *TYPE_MAIN_TYPE (*typeptr)
519             = *TYPE_MAIN_TYPE (type);
520         }
521     }
522   
523   ntype = make_qualified_type (type, new_flags, typeptr ? *typeptr : NULL);
524
525   if (typeptr != NULL)
526     *typeptr = ntype;
527
528   return ntype;
529 }
530
531 /* Replace the contents of ntype with the type *type.  This changes the
532    contents, rather than the pointer for TYPE_MAIN_TYPE (ntype); thus
533    the changes are propogated to all types in the TYPE_CHAIN.
534
535    In order to build recursive types, it's inevitable that we'll need
536    to update types in place --- but this sort of indiscriminate
537    smashing is ugly, and needs to be replaced with something more
538    controlled.  TYPE_MAIN_TYPE is a step in this direction; it's not
539    clear if more steps are needed.  */
540 void
541 replace_type (struct type *ntype, struct type *type)
542 {
543   struct type *cv_chain, *as_chain, *ptr, *ref;
544
545   *TYPE_MAIN_TYPE (ntype) = *TYPE_MAIN_TYPE (type);
546
547   /* Assert that the two types have equivalent instance qualifiers.
548      This should be true for at least all of our debug readers.  */
549   gdb_assert (TYPE_INSTANCE_FLAGS (ntype) == TYPE_INSTANCE_FLAGS (type));
550 }
551
552 /* Implement direct support for MEMBER_TYPE in GNU C++.
553    May need to construct such a type if this is the first use.
554    The TYPE is the type of the member.  The DOMAIN is the type
555    of the aggregate that the member belongs to.  */
556
557 struct type *
558 lookup_member_type (struct type *type, struct type *domain)
559 {
560   register struct type *mtype;
561
562   mtype = alloc_type (TYPE_OBJFILE (type));
563   smash_to_member_type (mtype, domain, type);
564   return (mtype);
565 }
566
567 /* Allocate a stub method whose return type is TYPE.  
568    This apparently happens for speed of symbol reading, since parsing
569    out the arguments to the method is cpu-intensive, the way we are doing
570    it.  So, we will fill in arguments later.
571    This always returns a fresh type.   */
572
573 struct type *
574 allocate_stub_method (struct type *type)
575 {
576   struct type *mtype;
577
578   mtype = init_type (TYPE_CODE_METHOD, 1, TYPE_FLAG_STUB, NULL,
579                      TYPE_OBJFILE (type));
580   TYPE_TARGET_TYPE (mtype) = type;
581   /*  _DOMAIN_TYPE (mtype) = unknown yet */
582   return (mtype);
583 }
584
585 /* Create a range type using either a blank type supplied in RESULT_TYPE,
586    or creating a new type, inheriting the objfile from INDEX_TYPE.
587
588    Indices will be of type INDEX_TYPE, and will range from LOW_BOUND to
589    HIGH_BOUND, inclusive.
590
591    FIXME:  Maybe we should check the TYPE_CODE of RESULT_TYPE to make
592    sure it is TYPE_CODE_UNDEF before we bash it into a range type? */
593
594 struct type *
595 create_range_type (struct type *result_type, struct type *index_type,
596                    int low_bound, int high_bound)
597 {
598   if (result_type == NULL)
599     {
600       result_type = alloc_type (TYPE_OBJFILE (index_type));
601     }
602   TYPE_CODE (result_type) = TYPE_CODE_RANGE;
603   TYPE_TARGET_TYPE (result_type) = index_type;
604   if (TYPE_STUB (index_type))
605     TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
606   else
607     TYPE_LENGTH (result_type) = TYPE_LENGTH (check_typedef (index_type));
608   TYPE_NFIELDS (result_type) = 2;
609   TYPE_FIELDS (result_type) = (struct field *)
610     TYPE_ALLOC (result_type, 2 * sizeof (struct field));
611   memset (TYPE_FIELDS (result_type), 0, 2 * sizeof (struct field));
612   TYPE_FIELD_BITPOS (result_type, 0) = low_bound;
613   TYPE_FIELD_BITPOS (result_type, 1) = high_bound;
614   TYPE_FIELD_TYPE (result_type, 0) = builtin_type_int;  /* FIXME */
615   TYPE_FIELD_TYPE (result_type, 1) = builtin_type_int;  /* FIXME */
616
617   if (low_bound >= 0)
618     TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
619
620   return (result_type);
621 }
622
623 /* Set *LOWP and *HIGHP to the lower and upper bounds of discrete type TYPE.
624    Return 1 of type is a range type, 0 if it is discrete (and bounds
625    will fit in LONGEST), or -1 otherwise. */
626
627 int
628 get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp)
629 {
630   CHECK_TYPEDEF (type);
631   switch (TYPE_CODE (type))
632     {
633     case TYPE_CODE_RANGE:
634       *lowp = TYPE_LOW_BOUND (type);
635       *highp = TYPE_HIGH_BOUND (type);
636       return 1;
637     case TYPE_CODE_ENUM:
638       if (TYPE_NFIELDS (type) > 0)
639         {
640           /* The enums may not be sorted by value, so search all
641              entries */
642           int i;
643
644           *lowp = *highp = TYPE_FIELD_BITPOS (type, 0);
645           for (i = 0; i < TYPE_NFIELDS (type); i++)
646             {
647               if (TYPE_FIELD_BITPOS (type, i) < *lowp)
648                 *lowp = TYPE_FIELD_BITPOS (type, i);
649               if (TYPE_FIELD_BITPOS (type, i) > *highp)
650                 *highp = TYPE_FIELD_BITPOS (type, i);
651             }
652
653           /* Set unsigned indicator if warranted. */
654           if (*lowp >= 0)
655             {
656               TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
657             }
658         }
659       else
660         {
661           *lowp = 0;
662           *highp = -1;
663         }
664       return 0;
665     case TYPE_CODE_BOOL:
666       *lowp = 0;
667       *highp = 1;
668       return 0;
669     case TYPE_CODE_INT:
670       if (TYPE_LENGTH (type) > sizeof (LONGEST))        /* Too big */
671         return -1;
672       if (!TYPE_UNSIGNED (type))
673         {
674           *lowp = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
675           *highp = -*lowp - 1;
676           return 0;
677         }
678       /* ... fall through for unsigned ints ... */
679     case TYPE_CODE_CHAR:
680       *lowp = 0;
681       /* This round-about calculation is to avoid shifting by
682          TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
683          if TYPE_LENGTH (type) == sizeof (LONGEST). */
684       *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
685       *highp = (*highp - 1) | *highp;
686       return 0;
687     default:
688       return -1;
689     }
690 }
691
692 /* Create an array type using either a blank type supplied in RESULT_TYPE,
693    or creating a new type, inheriting the objfile from RANGE_TYPE.
694
695    Elements will be of type ELEMENT_TYPE, the indices will be of type
696    RANGE_TYPE.
697
698    FIXME:  Maybe we should check the TYPE_CODE of RESULT_TYPE to make
699    sure it is TYPE_CODE_UNDEF before we bash it into an array type? */
700
701 struct type *
702 create_array_type (struct type *result_type, struct type *element_type,
703                    struct type *range_type)
704 {
705   LONGEST low_bound, high_bound;
706
707   if (result_type == NULL)
708     {
709       result_type = alloc_type (TYPE_OBJFILE (range_type));
710     }
711   TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
712   TYPE_TARGET_TYPE (result_type) = element_type;
713   if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
714     low_bound = high_bound = 0;
715   CHECK_TYPEDEF (element_type);
716   TYPE_LENGTH (result_type) =
717     TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
718   TYPE_NFIELDS (result_type) = 1;
719   TYPE_FIELDS (result_type) =
720     (struct field *) TYPE_ALLOC (result_type, sizeof (struct field));
721   memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
722   TYPE_FIELD_TYPE (result_type, 0) = range_type;
723   TYPE_VPTR_FIELDNO (result_type) = -1;
724
725   /* TYPE_FLAG_TARGET_STUB will take care of zero length arrays */
726   if (TYPE_LENGTH (result_type) == 0)
727     TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
728
729   return (result_type);
730 }
731
732 /* Create a string type using either a blank type supplied in RESULT_TYPE,
733    or creating a new type.  String types are similar enough to array of
734    char types that we can use create_array_type to build the basic type
735    and then bash it into a string type.
736
737    For fixed length strings, the range type contains 0 as the lower
738    bound and the length of the string minus one as the upper bound.
739
740    FIXME:  Maybe we should check the TYPE_CODE of RESULT_TYPE to make
741    sure it is TYPE_CODE_UNDEF before we bash it into a string type? */
742
743 struct type *
744 create_string_type (struct type *result_type, struct type *range_type)
745 {
746   result_type = create_array_type (result_type,
747                                    *current_language->string_char_type,
748                                    range_type);
749   TYPE_CODE (result_type) = TYPE_CODE_STRING;
750   return (result_type);
751 }
752
753 struct type *
754 create_set_type (struct type *result_type, struct type *domain_type)
755 {
756   LONGEST low_bound, high_bound, bit_length;
757   if (result_type == NULL)
758     {
759       result_type = alloc_type (TYPE_OBJFILE (domain_type));
760     }
761   TYPE_CODE (result_type) = TYPE_CODE_SET;
762   TYPE_NFIELDS (result_type) = 1;
763   TYPE_FIELDS (result_type) = (struct field *)
764     TYPE_ALLOC (result_type, 1 * sizeof (struct field));
765   memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
766
767   if (!TYPE_STUB (domain_type))
768     {
769       if (get_discrete_bounds (domain_type, &low_bound, &high_bound) < 0)
770         low_bound = high_bound = 0;
771       bit_length = high_bound - low_bound + 1;
772       TYPE_LENGTH (result_type)
773         = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
774     }
775   TYPE_FIELD_TYPE (result_type, 0) = domain_type;
776
777   if (low_bound >= 0)
778     TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
779
780   return (result_type);
781 }
782
783 /* Construct and return a type of the form:
784         struct NAME { ELT_TYPE ELT_NAME[N]; }
785    We use these types for SIMD registers.  For example, the type of
786    the SSE registers on the late x86-family processors is:
787         struct __builtin_v4sf { float f[4]; }
788    built by the function call:
789         init_simd_type ("__builtin_v4sf", builtin_type_float, "f", 4)
790    The type returned is a permanent type, allocated using malloc; it
791    doesn't live in any objfile's obstack.  */
792 static struct type *
793 init_simd_type (char *name,
794                 struct type *elt_type,
795                 char *elt_name,
796                 int n)
797 {
798   struct type *simd_type;
799   struct type *array_type;
800   
801   simd_type = init_composite_type (name, TYPE_CODE_STRUCT);
802   array_type = create_array_type (0, elt_type,
803                                   create_range_type (0, builtin_type_int,
804                                                      0, n-1));
805   append_composite_type_field (simd_type, elt_name, array_type);
806   return simd_type;
807 }
808
809 static struct type *
810 init_vector_type (struct type *elt_type, int n)
811 {
812   struct type *array_type;
813  
814   array_type = create_array_type (0, elt_type,
815                                   create_range_type (0, builtin_type_int,
816                                                      0, n-1));
817   TYPE_FLAGS (array_type) |= TYPE_FLAG_VECTOR;
818   return array_type;
819 }
820
821 static struct type *
822 build_builtin_type_vec128 (void)
823 {
824   /* Construct a type for the 128 bit registers.  The type we're
825      building is this: */
826 #if 0
827  union __gdb_builtin_type_vec128 
828   {
829     int128_t uint128;
830     float v4_float[4];
831     int32_t v4_int32[4];
832     int16_t v8_int16[8];
833     int8_t v16_int8[16];
834   };
835 #endif
836
837   struct type *t;
838
839   t = init_composite_type ("__gdb_builtin_type_vec128", TYPE_CODE_UNION);
840   append_composite_type_field (t, "uint128", builtin_type_int128);
841   append_composite_type_field (t, "v4_float", builtin_type_v4_float);
842   append_composite_type_field (t, "v4_int32", builtin_type_v4_int32);
843   append_composite_type_field (t, "v8_int16", builtin_type_v8_int16);
844   append_composite_type_field (t, "v16_int8", builtin_type_v16_int8);
845
846   return t;
847 }
848
849 static struct type *
850 build_builtin_type_vec128i (void)
851 {
852   /* 128-bit Intel SIMD registers */
853   struct type *t;
854
855   t = init_composite_type ("__gdb_builtin_type_vec128i", TYPE_CODE_UNION);
856   append_composite_type_field (t, "v4_float", builtin_type_v4_float);
857   append_composite_type_field (t, "v2_double", builtin_type_v2_double);
858   append_composite_type_field (t, "v16_int8", builtin_type_v16_int8);
859   append_composite_type_field (t, "v8_int16", builtin_type_v8_int16);
860   append_composite_type_field (t, "v4_int32", builtin_type_v4_int32);
861   append_composite_type_field (t, "v2_int64", builtin_type_v2_int64);
862   append_composite_type_field (t, "uint128", builtin_type_int128);
863
864   return t;
865 }
866
867 /* Smash TYPE to be a type of members of DOMAIN with type TO_TYPE. 
868    A MEMBER is a wierd thing -- it amounts to a typed offset into
869    a struct, e.g. "an int at offset 8".  A MEMBER TYPE doesn't
870    include the offset (that's the value of the MEMBER itself), but does
871    include the structure type into which it points (for some reason).
872
873    When "smashing" the type, we preserve the objfile that the
874    old type pointed to, since we aren't changing where the type is actually
875    allocated.  */
876
877 void
878 smash_to_member_type (struct type *type, struct type *domain,
879                       struct type *to_type)
880 {
881   struct objfile *objfile;
882
883   objfile = TYPE_OBJFILE (type);
884
885   smash_type (type);
886   TYPE_OBJFILE (type) = objfile;
887   TYPE_TARGET_TYPE (type) = to_type;
888   TYPE_DOMAIN_TYPE (type) = domain;
889   TYPE_LENGTH (type) = 1;       /* In practice, this is never needed.  */
890   TYPE_CODE (type) = TYPE_CODE_MEMBER;
891 }
892
893 /* Smash TYPE to be a type of method of DOMAIN with type TO_TYPE.
894    METHOD just means `function that gets an extra "this" argument'.
895
896    When "smashing" the type, we preserve the objfile that the
897    old type pointed to, since we aren't changing where the type is actually
898    allocated.  */
899
900 void
901 smash_to_method_type (struct type *type, struct type *domain,
902                       struct type *to_type, struct field *args,
903                       int nargs, int varargs)
904 {
905   struct objfile *objfile;
906
907   objfile = TYPE_OBJFILE (type);
908
909   smash_type (type);
910   TYPE_OBJFILE (type) = objfile;
911   TYPE_TARGET_TYPE (type) = to_type;
912   TYPE_DOMAIN_TYPE (type) = domain;
913   TYPE_FIELDS (type) = args;
914   TYPE_NFIELDS (type) = nargs;
915   if (varargs)
916     TYPE_FLAGS (type) |= TYPE_FLAG_VARARGS;
917   TYPE_LENGTH (type) = 1;       /* In practice, this is never needed.  */
918   TYPE_CODE (type) = TYPE_CODE_METHOD;
919 }
920
921 /* Return a typename for a struct/union/enum type without "struct ",
922    "union ", or "enum ".  If the type has a NULL name, return NULL.  */
923
924 char *
925 type_name_no_tag (register const struct type *type)
926 {
927   if (TYPE_TAG_NAME (type) != NULL)
928     return TYPE_TAG_NAME (type);
929
930   /* Is there code which expects this to return the name if there is no
931      tag name?  My guess is that this is mainly used for C++ in cases where
932      the two will always be the same.  */
933   return TYPE_NAME (type);
934 }
935
936 /* Lookup a primitive type named NAME. 
937    Return zero if NAME is not a primitive type. */
938
939 struct type *
940 lookup_primitive_typename (char *name)
941 {
942   struct type **const *p;
943
944   for (p = current_language->la_builtin_type_vector; *p != NULL; p++)
945     {
946       if (STREQ (TYPE_NAME (**p), name))
947         {
948           return (**p);
949         }
950     }
951   return (NULL);
952 }
953
954 /* Lookup a typedef or primitive type named NAME,
955    visible in lexical block BLOCK.
956    If NOERR is nonzero, return zero if NAME is not suitably defined.  */
957
958 struct type *
959 lookup_typename (char *name, struct block *block, int noerr)
960 {
961   register struct symbol *sym;
962   register struct type *tmp;
963
964   sym = lookup_symbol (name, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
965   if (sym == NULL || SYMBOL_CLASS (sym) != LOC_TYPEDEF)
966     {
967       tmp = lookup_primitive_typename (name);
968       if (tmp)
969         {
970           return (tmp);
971         }
972       else if (!tmp && noerr)
973         {
974           return (NULL);
975         }
976       else
977         {
978           error ("No type named %s.", name);
979         }
980     }
981   return (SYMBOL_TYPE (sym));
982 }
983
984 struct type *
985 lookup_unsigned_typename (char *name)
986 {
987   char *uns = alloca (strlen (name) + 10);
988
989   strcpy (uns, "unsigned ");
990   strcpy (uns + 9, name);
991   return (lookup_typename (uns, (struct block *) NULL, 0));
992 }
993
994 struct type *
995 lookup_signed_typename (char *name)
996 {
997   struct type *t;
998   char *uns = alloca (strlen (name) + 8);
999
1000   strcpy (uns, "signed ");
1001   strcpy (uns + 7, name);
1002   t = lookup_typename (uns, (struct block *) NULL, 1);
1003   /* If we don't find "signed FOO" just try again with plain "FOO". */
1004   if (t != NULL)
1005     return t;
1006   return lookup_typename (name, (struct block *) NULL, 0);
1007 }
1008
1009 /* Lookup a structure type named "struct NAME",
1010    visible in lexical block BLOCK.  */
1011
1012 struct type *
1013 lookup_struct (char *name, struct block *block)
1014 {
1015   register struct symbol *sym;
1016
1017   sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
1018                        (struct symtab **) NULL);
1019
1020   if (sym == NULL)
1021     {
1022       error ("No struct type named %s.", name);
1023     }
1024   if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
1025     {
1026       error ("This context has class, union or enum %s, not a struct.", name);
1027     }
1028   return (SYMBOL_TYPE (sym));
1029 }
1030
1031 /* Lookup a union type named "union NAME",
1032    visible in lexical block BLOCK.  */
1033
1034 struct type *
1035 lookup_union (char *name, struct block *block)
1036 {
1037   register struct symbol *sym;
1038   struct type *t;
1039
1040   sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
1041                        (struct symtab **) NULL);
1042
1043   if (sym == NULL)
1044     error ("No union type named %s.", name);
1045
1046   t = SYMBOL_TYPE (sym);
1047
1048   if (TYPE_CODE (t) == TYPE_CODE_UNION)
1049     return (t);
1050
1051   /* C++ unions may come out with TYPE_CODE_CLASS, but we look at
1052    * a further "declared_type" field to discover it is really a union.
1053    */
1054   if (HAVE_CPLUS_STRUCT (t))
1055     if (TYPE_DECLARED_TYPE (t) == DECLARED_TYPE_UNION)
1056       return (t);
1057
1058   /* If we get here, it's not a union */
1059   error ("This context has class, struct or enum %s, not a union.", name);
1060 }
1061
1062
1063 /* Lookup an enum type named "enum NAME",
1064    visible in lexical block BLOCK.  */
1065
1066 struct type *
1067 lookup_enum (char *name, struct block *block)
1068 {
1069   register struct symbol *sym;
1070
1071   sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
1072                        (struct symtab **) NULL);
1073   if (sym == NULL)
1074     {
1075       error ("No enum type named %s.", name);
1076     }
1077   if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_ENUM)
1078     {
1079       error ("This context has class, struct or union %s, not an enum.", name);
1080     }
1081   return (SYMBOL_TYPE (sym));
1082 }
1083
1084 /* Lookup a template type named "template NAME<TYPE>",
1085    visible in lexical block BLOCK.  */
1086
1087 struct type *
1088 lookup_template_type (char *name, struct type *type, struct block *block)
1089 {
1090   struct symbol *sym;
1091   char *nam = (char *) alloca (strlen (name) + strlen (TYPE_NAME (type)) + 4);
1092   strcpy (nam, name);
1093   strcat (nam, "<");
1094   strcat (nam, TYPE_NAME (type));
1095   strcat (nam, " >");           /* FIXME, extra space still introduced in gcc? */
1096
1097   sym = lookup_symbol (nam, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
1098
1099   if (sym == NULL)
1100     {
1101       error ("No template type named %s.", name);
1102     }
1103   if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
1104     {
1105       error ("This context has class, union or enum %s, not a struct.", name);
1106     }
1107   return (SYMBOL_TYPE (sym));
1108 }
1109
1110 /* Given a type TYPE, lookup the type of the component of type named NAME.  
1111
1112    TYPE can be either a struct or union, or a pointer or reference to a struct or
1113    union.  If it is a pointer or reference, its target type is automatically used.
1114    Thus '.' and '->' are interchangable, as specified for the definitions of the
1115    expression element types STRUCTOP_STRUCT and STRUCTOP_PTR.
1116
1117    If NOERR is nonzero, return zero if NAME is not suitably defined.
1118    If NAME is the name of a baseclass type, return that type.  */
1119
1120 struct type *
1121 lookup_struct_elt_type (struct type *type, char *name, int noerr)
1122 {
1123   int i;
1124
1125   for (;;)
1126     {
1127       CHECK_TYPEDEF (type);
1128       if (TYPE_CODE (type) != TYPE_CODE_PTR
1129           && TYPE_CODE (type) != TYPE_CODE_REF)
1130         break;
1131       type = TYPE_TARGET_TYPE (type);
1132     }
1133
1134   if (TYPE_CODE (type) != TYPE_CODE_STRUCT &&
1135       TYPE_CODE (type) != TYPE_CODE_UNION)
1136     {
1137       target_terminal_ours ();
1138       gdb_flush (gdb_stdout);
1139       fprintf_unfiltered (gdb_stderr, "Type ");
1140       type_print (type, "", gdb_stderr, -1);
1141       error (" is not a structure or union type.");
1142     }
1143
1144 #if 0
1145   /* FIXME:  This change put in by Michael seems incorrect for the case where
1146      the structure tag name is the same as the member name.  I.E. when doing
1147      "ptype bell->bar" for "struct foo { int bar; int foo; } bell;"
1148      Disabled by fnf. */
1149   {
1150     char *typename;
1151
1152     typename = type_name_no_tag (type);
1153     if (typename != NULL && STREQ (typename, name))
1154       return type;
1155   }
1156 #endif
1157
1158   for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1159     {
1160       char *t_field_name = TYPE_FIELD_NAME (type, i);
1161
1162       if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
1163         {
1164           return TYPE_FIELD_TYPE (type, i);
1165         }
1166     }
1167
1168   /* OK, it's not in this class.  Recursively check the baseclasses.  */
1169   for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1170     {
1171       struct type *t;
1172
1173       t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, noerr);
1174       if (t != NULL)
1175         {
1176           return t;
1177         }
1178     }
1179
1180   if (noerr)
1181     {
1182       return NULL;
1183     }
1184
1185   target_terminal_ours ();
1186   gdb_flush (gdb_stdout);
1187   fprintf_unfiltered (gdb_stderr, "Type ");
1188   type_print (type, "", gdb_stderr, -1);
1189   fprintf_unfiltered (gdb_stderr, " has no component named ");
1190   fputs_filtered (name, gdb_stderr);
1191   error (".");
1192   return (struct type *) -1;    /* For lint */
1193 }
1194
1195 /* If possible, make the vptr_fieldno and vptr_basetype fields of TYPE
1196    valid.  Callers should be aware that in some cases (for example,
1197    the type or one of its baseclasses is a stub type and we are
1198    debugging a .o file), this function will not be able to find the virtual
1199    function table pointer, and vptr_fieldno will remain -1 and vptr_basetype
1200    will remain NULL.  */
1201
1202 void
1203 fill_in_vptr_fieldno (struct type *type)
1204 {
1205   CHECK_TYPEDEF (type);
1206
1207   if (TYPE_VPTR_FIELDNO (type) < 0)
1208     {
1209       int i;
1210
1211       /* We must start at zero in case the first (and only) baseclass is
1212          virtual (and hence we cannot share the table pointer).  */
1213       for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
1214         {
1215           fill_in_vptr_fieldno (TYPE_BASECLASS (type, i));
1216           if (TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i)) >= 0)
1217             {
1218               TYPE_VPTR_FIELDNO (type)
1219                 = TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i));
1220               TYPE_VPTR_BASETYPE (type)
1221                 = TYPE_VPTR_BASETYPE (TYPE_BASECLASS (type, i));
1222               break;
1223             }
1224         }
1225     }
1226 }
1227
1228 /* Find the method and field indices for the destructor in class type T.
1229    Return 1 if the destructor was found, otherwise, return 0.  */
1230
1231 int
1232 get_destructor_fn_field (struct type *t, int *method_indexp, int *field_indexp)
1233 {
1234   int i;
1235
1236   for (i = 0; i < TYPE_NFN_FIELDS (t); i++)
1237     {
1238       int j;
1239       struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
1240
1241       for (j = 0; j < TYPE_FN_FIELDLIST_LENGTH (t, i); j++)
1242         {
1243           if (is_destructor_name (TYPE_FN_FIELD_PHYSNAME (f, j)) != 0)
1244             {
1245               *method_indexp = i;
1246               *field_indexp = j;
1247               return 1;
1248             }
1249         }
1250     }
1251   return 0;
1252 }
1253
1254 /* Added by Bryan Boreham, Kewill, Sun Sep 17 18:07:17 1989.
1255
1256    If this is a stubbed struct (i.e. declared as struct foo *), see if
1257    we can find a full definition in some other file. If so, copy this
1258    definition, so we can use it in future.  There used to be a comment (but
1259    not any code) that if we don't find a full definition, we'd set a flag
1260    so we don't spend time in the future checking the same type.  That would
1261    be a mistake, though--we might load in more symbols which contain a
1262    full definition for the type.
1263
1264    This used to be coded as a macro, but I don't think it is called 
1265    often enough to merit such treatment.  */
1266
1267 struct complaint stub_noname_complaint =
1268 {"stub type has NULL name", 0, 0};
1269
1270 struct type *
1271 check_typedef (struct type *type)
1272 {
1273   struct type *orig_type = type;
1274   int is_const, is_volatile;
1275
1276   while (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
1277     {
1278       if (!TYPE_TARGET_TYPE (type))
1279         {
1280           char *name;
1281           struct symbol *sym;
1282
1283           /* It is dangerous to call lookup_symbol if we are currently
1284              reading a symtab.  Infinite recursion is one danger. */
1285           if (currently_reading_symtab)
1286             return type;
1287
1288           name = type_name_no_tag (type);
1289           /* FIXME: shouldn't we separately check the TYPE_NAME and the
1290              TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
1291              as appropriate?  (this code was written before TYPE_NAME and
1292              TYPE_TAG_NAME were separate).  */
1293           if (name == NULL)
1294             {
1295               complain (&stub_noname_complaint);
1296               return type;
1297             }
1298           sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
1299                                (struct symtab **) NULL);
1300           if (sym)
1301             TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
1302           else
1303             TYPE_TARGET_TYPE (type) = alloc_type (NULL);        /* TYPE_CODE_UNDEF */
1304         }
1305       type = TYPE_TARGET_TYPE (type);
1306     }
1307
1308   is_const = TYPE_CONST (type);
1309   is_volatile = TYPE_VOLATILE (type);
1310
1311   /* If this is a struct/class/union with no fields, then check whether a
1312      full definition exists somewhere else.  This is for systems where a
1313      type definition with no fields is issued for such types, instead of
1314      identifying them as stub types in the first place */
1315
1316   if (TYPE_IS_OPAQUE (type) && opaque_type_resolution && !currently_reading_symtab)
1317     {
1318       char *name = type_name_no_tag (type);
1319       struct type *newtype;
1320       if (name == NULL)
1321         {
1322           complain (&stub_noname_complaint);
1323           return type;
1324         }
1325       newtype = lookup_transparent_type (name);
1326       if (newtype)
1327         make_cv_type (is_const, is_volatile, newtype, &type);
1328     }
1329   /* Otherwise, rely on the stub flag being set for opaque/stubbed types */
1330   else if (TYPE_STUB (type) && !currently_reading_symtab)
1331     {
1332       char *name = type_name_no_tag (type);
1333       /* FIXME: shouldn't we separately check the TYPE_NAME and the
1334          TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
1335          as appropriate?  (this code was written before TYPE_NAME and
1336          TYPE_TAG_NAME were separate).  */
1337       struct symbol *sym;
1338       if (name == NULL)
1339         {
1340           complain (&stub_noname_complaint);
1341           return type;
1342         }
1343       sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0, (struct symtab **) NULL);
1344       if (sym)
1345         make_cv_type (is_const, is_volatile, SYMBOL_TYPE (sym), &type);
1346     }
1347
1348   if (TYPE_TARGET_STUB (type))
1349     {
1350       struct type *range_type;
1351       struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
1352
1353       if (TYPE_STUB (target_type) || TYPE_TARGET_STUB (target_type))
1354         {
1355         }
1356       else if (TYPE_CODE (type) == TYPE_CODE_ARRAY
1357                && TYPE_NFIELDS (type) == 1
1358                && (TYPE_CODE (range_type = TYPE_FIELD_TYPE (type, 0))
1359                    == TYPE_CODE_RANGE))
1360         {
1361           /* Now recompute the length of the array type, based on its
1362              number of elements and the target type's length.  */
1363           TYPE_LENGTH (type) =
1364             ((TYPE_FIELD_BITPOS (range_type, 1)
1365               - TYPE_FIELD_BITPOS (range_type, 0)
1366               + 1)
1367              * TYPE_LENGTH (target_type));
1368           TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1369         }
1370       else if (TYPE_CODE (type) == TYPE_CODE_RANGE)
1371         {
1372           TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
1373           TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1374         }
1375     }
1376   /* Cache TYPE_LENGTH for future use. */
1377   TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
1378   return type;
1379 }
1380
1381 /* New code added to support parsing of Cfront stabs strings */
1382 #define INIT_EXTRA { pextras->len=0; pextras->str[0]='\0'; }
1383 #define ADD_EXTRA(c) { pextras->str[pextras->len++]=c; }
1384
1385 static void
1386 add_name (struct extra *pextras, char *n)
1387 {
1388   int nlen;
1389
1390   if ((nlen = (n ? strlen (n) : 0)) == 0)
1391     return;
1392   sprintf (pextras->str + pextras->len, "%d%s", nlen, n);
1393   pextras->len = strlen (pextras->str);
1394 }
1395
1396 static void
1397 add_mangled_type (struct extra *pextras, struct type *t)
1398 {
1399   enum type_code tcode;
1400   int tlen, tflags;
1401   char *tname;
1402
1403   tcode = TYPE_CODE (t);
1404   tlen = TYPE_LENGTH (t);
1405   tflags = TYPE_FLAGS (t);
1406   tname = TYPE_NAME (t);
1407   /* args of "..." seem to get mangled as "e" */
1408
1409   switch (tcode)
1410     {
1411     case TYPE_CODE_INT:
1412       if (tflags == 1)
1413         ADD_EXTRA ('U');
1414       switch (tlen)
1415         {
1416         case 1:
1417           ADD_EXTRA ('c');
1418           break;
1419         case 2:
1420           ADD_EXTRA ('s');
1421           break;
1422         case 4:
1423           {
1424             char *pname;
1425             if ((pname = strrchr (tname, 'l'), pname) && !strcmp (pname, "long"))
1426               {
1427                 ADD_EXTRA ('l');
1428               }
1429             else
1430               {
1431                 ADD_EXTRA ('i');
1432               }
1433           }
1434           break;
1435         default:
1436           {
1437
1438             static struct complaint msg =
1439             {"Bad int type code length x%x\n", 0, 0};
1440
1441             complain (&msg, tlen);
1442
1443           }
1444         }
1445       break;
1446     case TYPE_CODE_FLT:
1447       switch (tlen)
1448         {
1449         case 4:
1450           ADD_EXTRA ('f');
1451           break;
1452         case 8:
1453           ADD_EXTRA ('d');
1454           break;
1455         case 16:
1456           ADD_EXTRA ('r');
1457           break;
1458         default:
1459           {
1460             static struct complaint msg =
1461             {"Bad float type code length x%x\n", 0, 0};
1462             complain (&msg, tlen);
1463           }
1464         }
1465       break;
1466     case TYPE_CODE_REF:
1467       ADD_EXTRA ('R');
1468       /* followed by what it's a ref to */
1469       break;
1470     case TYPE_CODE_PTR:
1471       ADD_EXTRA ('P');
1472       /* followed by what it's a ptr to */
1473       break;
1474     case TYPE_CODE_TYPEDEF:
1475       {
1476         static struct complaint msg =
1477         {"Typedefs in overloaded functions not yet supported\n", 0, 0};
1478         complain (&msg);
1479       }
1480       /* followed by type bytes & name */
1481       break;
1482     case TYPE_CODE_FUNC:
1483       ADD_EXTRA ('F');
1484       /* followed by func's arg '_' & ret types */
1485       break;
1486     case TYPE_CODE_VOID:
1487       ADD_EXTRA ('v');
1488       break;
1489     case TYPE_CODE_METHOD:
1490       ADD_EXTRA ('M');
1491       /* followed by name of class and func's arg '_' & ret types */
1492       add_name (pextras, tname);
1493       ADD_EXTRA ('F');          /* then mangle function */
1494       break;
1495     case TYPE_CODE_STRUCT:      /* C struct */
1496     case TYPE_CODE_UNION:       /* C union */
1497     case TYPE_CODE_ENUM:        /* Enumeration type */
1498       /* followed by name of type */
1499       add_name (pextras, tname);
1500       break;
1501
1502       /* errors possible types/not supported */
1503     case TYPE_CODE_CHAR:
1504     case TYPE_CODE_ARRAY:       /* Array type */
1505     case TYPE_CODE_MEMBER:      /* Member type */
1506     case TYPE_CODE_BOOL:
1507     case TYPE_CODE_COMPLEX:     /* Complex float */
1508     case TYPE_CODE_UNDEF:
1509     case TYPE_CODE_SET: /* Pascal sets */
1510     case TYPE_CODE_RANGE:
1511     case TYPE_CODE_STRING:
1512     case TYPE_CODE_BITSTRING:
1513     case TYPE_CODE_ERROR:
1514     default:
1515       {
1516         static struct complaint msg =
1517         {"Unknown type code x%x\n", 0, 0};
1518         complain (&msg, tcode);
1519       }
1520     }
1521   if (TYPE_TARGET_TYPE (t))
1522     add_mangled_type (pextras, TYPE_TARGET_TYPE (t));
1523 }
1524
1525 #if 0
1526 void
1527 cfront_mangle_name (struct type *type, int i, int j)
1528 {
1529   struct fn_field *f;
1530   char *mangled_name = gdb_mangle_name (type, i, j);
1531
1532   f = TYPE_FN_FIELDLIST1 (type, i);     /* moved from below */
1533
1534   /* kludge to support cfront methods - gdb expects to find "F" for 
1535      ARM_mangled names, so when we mangle, we have to add it here */
1536   if (ARM_DEMANGLING)
1537     {
1538       int k;
1539       char *arm_mangled_name;
1540       struct fn_field *method = &f[j];
1541       char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
1542       char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
1543       char *newname = type_name_no_tag (type);
1544
1545       struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
1546       int nargs = TYPE_NFIELDS (ftype);         /* number of args */
1547       struct extra extras, *pextras = &extras;
1548       INIT_EXTRA
1549
1550         if (TYPE_FN_FIELD_STATIC_P (f, j))      /* j for sublist within this list */
1551         ADD_EXTRA ('S')
1552           ADD_EXTRA ('F')
1553         /* add args here! */
1554           if (nargs <= 1)       /* no args besides this */
1555           ADD_EXTRA ('v')
1556             else
1557           {
1558             for (k = 1; k < nargs; k++)
1559               {
1560                 struct type *t;
1561                 t = TYPE_FIELD_TYPE (ftype, k);
1562                 add_mangled_type (pextras, t);
1563               }
1564           }
1565       ADD_EXTRA ('\0')
1566         printf ("add_mangled_type: %s\n", extras.str);  /* FIXME */
1567       xasprintf (&arm_mangled_name, "%s%s", mangled_name, extras.str);
1568       xfree (mangled_name);
1569       mangled_name = arm_mangled_name;
1570     }
1571 }
1572 #endif /* 0 */
1573
1574 #undef ADD_EXTRA
1575 /* End of new code added to support parsing of Cfront stabs strings */
1576
1577 /* Parse a type expression in the string [P..P+LENGTH).  If an error occurs,
1578    silently return builtin_type_void. */
1579
1580 struct type *
1581 safe_parse_type (char *p, int length)
1582 {
1583   struct ui_file *saved_gdb_stderr;
1584   struct type *type;
1585
1586   /* Suppress error messages. */
1587   saved_gdb_stderr = gdb_stderr;
1588   gdb_stderr = ui_file_new ();
1589
1590   /* Call parse_and_eval_type() without fear of longjmp()s. */
1591   if (!gdb_parse_and_eval_type (p, length, &type))
1592     type = builtin_type_void;
1593
1594   /* Stop suppressing error messages. */
1595   ui_file_delete (gdb_stderr);
1596   gdb_stderr = saved_gdb_stderr;
1597
1598   return type;
1599 }
1600
1601 /* Ugly hack to convert method stubs into method types.
1602
1603    He ain't kiddin'.  This demangles the name of the method into a string
1604    including argument types, parses out each argument type, generates
1605    a string casting a zero to that type, evaluates the string, and stuffs
1606    the resulting type into an argtype vector!!!  Then it knows the type
1607    of the whole function (including argument types for overloading),
1608    which info used to be in the stab's but was removed to hack back
1609    the space required for them.  */
1610
1611 void
1612 check_stub_method (struct type *type, int method_id, int signature_id)
1613 {
1614   struct fn_field *f;
1615   char *mangled_name = gdb_mangle_name (type, method_id, signature_id);
1616   char *demangled_name = cplus_demangle (mangled_name,
1617                                          DMGL_PARAMS | DMGL_ANSI);
1618   char *argtypetext, *p;
1619   int depth = 0, argcount = 1;
1620   struct field *argtypes;
1621   struct type *mtype;
1622
1623   /* Make sure we got back a function string that we can use.  */
1624   if (demangled_name)
1625     p = strchr (demangled_name, '(');
1626   else
1627     p = NULL;
1628
1629   if (demangled_name == NULL || p == NULL)
1630     error ("Internal: Cannot demangle mangled name `%s'.", mangled_name);
1631
1632   /* Now, read in the parameters that define this type.  */
1633   p += 1;
1634   argtypetext = p;
1635   while (*p)
1636     {
1637       if (*p == '(' || *p == '<')
1638         {
1639           depth += 1;
1640         }
1641       else if (*p == ')' || *p == '>')
1642         {
1643           depth -= 1;
1644         }
1645       else if (*p == ',' && depth == 0)
1646         {
1647           argcount += 1;
1648         }
1649
1650       p += 1;
1651     }
1652
1653   /* If we read one argument and it was ``void'', don't count it.  */
1654   if (strncmp (argtypetext, "(void)", 6) == 0)
1655     argcount -= 1;
1656
1657   /* We need one extra slot, for the THIS pointer.  */
1658
1659   argtypes = (struct field *)
1660     TYPE_ALLOC (type, (argcount + 1) * sizeof (struct field));
1661   p = argtypetext;
1662
1663   /* Add THIS pointer for non-static methods.  */
1664   f = TYPE_FN_FIELDLIST1 (type, method_id);
1665   if (TYPE_FN_FIELD_STATIC_P (f, signature_id))
1666     argcount = 0;
1667   else
1668     {
1669       argtypes[0].type = lookup_pointer_type (type);
1670       argcount = 1;
1671     }
1672
1673   if (*p != ')')                /* () means no args, skip while */
1674     {
1675       depth = 0;
1676       while (*p)
1677         {
1678           if (depth <= 0 && (*p == ',' || *p == ')'))
1679             {
1680               /* Avoid parsing of ellipsis, they will be handled below.
1681                  Also avoid ``void'' as above.  */
1682               if (strncmp (argtypetext, "...", p - argtypetext) != 0
1683                   && strncmp (argtypetext, "void", p - argtypetext) != 0)
1684                 {
1685                   argtypes[argcount].type =
1686                     safe_parse_type (argtypetext, p - argtypetext);
1687                   argcount += 1;
1688                 }
1689               argtypetext = p + 1;
1690             }
1691
1692           if (*p == '(' || *p == '<')
1693             {
1694               depth += 1;
1695             }
1696           else if (*p == ')' || *p == '>')
1697             {
1698               depth -= 1;
1699             }
1700
1701           p += 1;
1702         }
1703     }
1704
1705   TYPE_FN_FIELD_PHYSNAME (f, signature_id) = mangled_name;
1706
1707   /* Now update the old "stub" type into a real type.  */
1708   mtype = TYPE_FN_FIELD_TYPE (f, signature_id);
1709   TYPE_DOMAIN_TYPE (mtype) = type;
1710   TYPE_FIELDS (mtype) = argtypes;
1711   TYPE_NFIELDS (mtype) = argcount;
1712   TYPE_FLAGS (mtype) &= ~TYPE_FLAG_STUB;
1713   TYPE_FN_FIELD_STUB (f, signature_id) = 0;
1714   if (p[-2] == '.')
1715     TYPE_FLAGS (mtype) |= TYPE_FLAG_VARARGS;
1716
1717   xfree (demangled_name);
1718 }
1719
1720 const struct cplus_struct_type cplus_struct_default;
1721
1722 void
1723 allocate_cplus_struct_type (struct type *type)
1724 {
1725   if (!HAVE_CPLUS_STRUCT (type))
1726     {
1727       TYPE_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
1728         TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
1729       *(TYPE_CPLUS_SPECIFIC (type)) = cplus_struct_default;
1730     }
1731 }
1732
1733 /* Helper function to initialize the standard scalar types.
1734
1735    If NAME is non-NULL and OBJFILE is non-NULL, then we make a copy
1736    of the string pointed to by name in the type_obstack for that objfile,
1737    and initialize the type name to that copy.  There are places (mipsread.c
1738    in particular, where init_type is called with a NULL value for NAME). */
1739
1740 struct type *
1741 init_type (enum type_code code, int length, int flags, char *name,
1742            struct objfile *objfile)
1743 {
1744   register struct type *type;
1745
1746   type = alloc_type (objfile);
1747   TYPE_CODE (type) = code;
1748   TYPE_LENGTH (type) = length;
1749   TYPE_FLAGS (type) |= flags;
1750   if ((name != NULL) && (objfile != NULL))
1751     {
1752       TYPE_NAME (type) =
1753         obsavestring (name, strlen (name), &objfile->type_obstack);
1754     }
1755   else
1756     {
1757       TYPE_NAME (type) = name;
1758     }
1759
1760   /* C++ fancies.  */
1761
1762   if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION)
1763     {
1764       INIT_CPLUS_SPECIFIC (type);
1765     }
1766   return (type);
1767 }
1768
1769 /* Helper function.  Create an empty composite type.  */
1770
1771 struct type *
1772 init_composite_type (char *name, enum type_code code)
1773 {
1774   struct type *t;
1775   gdb_assert (code == TYPE_CODE_STRUCT
1776               || code == TYPE_CODE_UNION);
1777   t = init_type (code, 0, 0, NULL, NULL);
1778   TYPE_TAG_NAME (t) = name;
1779   return t;
1780 }
1781
1782 /* Helper function.  Append a field to a composite type.  */
1783
1784 void
1785 append_composite_type_field (struct type *t, char *name, struct type *field)
1786 {
1787   struct field *f;
1788   TYPE_NFIELDS (t) = TYPE_NFIELDS (t) + 1;
1789   TYPE_FIELDS (t) = xrealloc (TYPE_FIELDS (t),
1790                               sizeof (struct field) * TYPE_NFIELDS (t));
1791   f = &(TYPE_FIELDS (t)[TYPE_NFIELDS (t) - 1]);
1792   memset (f, 0, sizeof f[0]);
1793   FIELD_TYPE (f[0]) = field;
1794   FIELD_NAME (f[0]) = name;
1795   if (TYPE_CODE (t) == TYPE_CODE_UNION)
1796     {
1797       if (TYPE_LENGTH (t) < TYPE_LENGTH (field))
1798         TYPE_LENGTH (t) = TYPE_LENGTH (field);
1799     }
1800   else if (TYPE_CODE (t) == TYPE_CODE_STRUCT)
1801     {
1802       TYPE_LENGTH (t) = TYPE_LENGTH (t) + TYPE_LENGTH (field);
1803       if (TYPE_NFIELDS (t) > 1)
1804         {
1805           FIELD_BITPOS (f[0]) = (FIELD_BITPOS (f[-1])
1806                                  + TYPE_LENGTH (field) * TARGET_CHAR_BIT);
1807         }
1808     }
1809 }
1810
1811 /* Look up a fundamental type for the specified objfile.
1812    May need to construct such a type if this is the first use.
1813
1814    Some object file formats (ELF, COFF, etc) do not define fundamental
1815    types such as "int" or "double".  Others (stabs for example), do
1816    define fundamental types.
1817
1818    For the formats which don't provide fundamental types, gdb can create
1819    such types, using defaults reasonable for the current language and
1820    the current target machine.
1821
1822    NOTE:  This routine is obsolescent.  Each debugging format reader
1823    should manage it's own fundamental types, either creating them from
1824    suitable defaults or reading them from the debugging information,
1825    whichever is appropriate.  The DWARF reader has already been
1826    fixed to do this.  Once the other readers are fixed, this routine
1827    will go away.  Also note that fundamental types should be managed
1828    on a compilation unit basis in a multi-language environment, not
1829    on a linkage unit basis as is done here. */
1830
1831
1832 struct type *
1833 lookup_fundamental_type (struct objfile *objfile, int typeid)
1834 {
1835   register struct type **typep;
1836   register int nbytes;
1837
1838   if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
1839     {
1840       error ("internal error - invalid fundamental type id %d", typeid);
1841     }
1842
1843   /* If this is the first time we need a fundamental type for this objfile
1844      then we need to initialize the vector of type pointers. */
1845
1846   if (objfile->fundamental_types == NULL)
1847     {
1848       nbytes = FT_NUM_MEMBERS * sizeof (struct type *);
1849       objfile->fundamental_types = (struct type **)
1850         obstack_alloc (&objfile->type_obstack, nbytes);
1851       memset ((char *) objfile->fundamental_types, 0, nbytes);
1852       OBJSTAT (objfile, n_types += FT_NUM_MEMBERS);
1853     }
1854
1855   /* Look for this particular type in the fundamental type vector.  If one is
1856      not found, create and install one appropriate for the current language. */
1857
1858   typep = objfile->fundamental_types + typeid;
1859   if (*typep == NULL)
1860     {
1861       *typep = create_fundamental_type (objfile, typeid);
1862     }
1863
1864   return (*typep);
1865 }
1866
1867 int
1868 can_dereference (struct type *t)
1869 {
1870   /* FIXME: Should we return true for references as well as pointers?  */
1871   CHECK_TYPEDEF (t);
1872   return
1873     (t != NULL
1874      && TYPE_CODE (t) == TYPE_CODE_PTR
1875      && TYPE_CODE (TYPE_TARGET_TYPE (t)) != TYPE_CODE_VOID);
1876 }
1877
1878 int
1879 is_integral_type (struct type *t)
1880 {
1881   CHECK_TYPEDEF (t);
1882   return
1883     ((t != NULL)
1884      && ((TYPE_CODE (t) == TYPE_CODE_INT)
1885          || (TYPE_CODE (t) == TYPE_CODE_ENUM)
1886          || (TYPE_CODE (t) == TYPE_CODE_CHAR)
1887          || (TYPE_CODE (t) == TYPE_CODE_RANGE)
1888          || (TYPE_CODE (t) == TYPE_CODE_BOOL)));
1889 }
1890
1891 /* Chill varying string and arrays are represented as follows:
1892
1893    struct { int __var_length; ELEMENT_TYPE[MAX_SIZE] __var_data};
1894
1895    Return true if TYPE is such a Chill varying type. */
1896
1897 int
1898 chill_varying_type (struct type *type)
1899 {
1900   if (TYPE_CODE (type) != TYPE_CODE_STRUCT
1901       || TYPE_NFIELDS (type) != 2
1902       || strcmp (TYPE_FIELD_NAME (type, 0), "__var_length") != 0)
1903     return 0;
1904   return 1;
1905 }
1906
1907 /* Check whether BASE is an ancestor or base class or DCLASS 
1908    Return 1 if so, and 0 if not.
1909    Note: callers may want to check for identity of the types before
1910    calling this function -- identical types are considered to satisfy
1911    the ancestor relationship even if they're identical */
1912
1913 int
1914 is_ancestor (struct type *base, struct type *dclass)
1915 {
1916   int i;
1917
1918   CHECK_TYPEDEF (base);
1919   CHECK_TYPEDEF (dclass);
1920
1921   if (base == dclass)
1922     return 1;
1923   if (TYPE_NAME (base) && TYPE_NAME (dclass) &&
1924       !strcmp (TYPE_NAME (base), TYPE_NAME (dclass)))
1925     return 1;
1926
1927   for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
1928     if (is_ancestor (base, TYPE_BASECLASS (dclass, i)))
1929       return 1;
1930
1931   return 0;
1932 }
1933
1934
1935
1936 /* See whether DCLASS has a virtual table.  This routine is aimed at
1937    the HP/Taligent ANSI C++ runtime model, and may not work with other
1938    runtime models.  Return 1 => Yes, 0 => No.  */
1939
1940 int
1941 has_vtable (struct type *dclass)
1942 {
1943   /* In the HP ANSI C++ runtime model, a class has a vtable only if it
1944      has virtual functions or virtual bases.  */
1945
1946   register int i;
1947
1948   if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
1949     return 0;
1950
1951   /* First check for the presence of virtual bases */
1952   if (TYPE_FIELD_VIRTUAL_BITS (dclass))
1953     for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
1954       if (B_TST (TYPE_FIELD_VIRTUAL_BITS (dclass), i))
1955         return 1;
1956
1957   /* Next check for virtual functions */
1958   if (TYPE_FN_FIELDLISTS (dclass))
1959     for (i = 0; i < TYPE_NFN_FIELDS (dclass); i++)
1960       if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (dclass, i), 0))
1961         return 1;
1962
1963   /* Recurse on non-virtual bases to see if any of them needs a vtable */
1964   if (TYPE_FIELD_VIRTUAL_BITS (dclass))
1965     for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
1966       if ((!B_TST (TYPE_FIELD_VIRTUAL_BITS (dclass), i)) &&
1967           (has_vtable (TYPE_FIELD_TYPE (dclass, i))))
1968         return 1;
1969
1970   /* Well, maybe we don't need a virtual table */
1971   return 0;
1972 }
1973
1974 /* Return a pointer to the "primary base class" of DCLASS.
1975
1976    A NULL return indicates that DCLASS has no primary base, or that it
1977    couldn't be found (insufficient information).
1978
1979    This routine is aimed at the HP/Taligent ANSI C++ runtime model,
1980    and may not work with other runtime models.  */
1981
1982 struct type *
1983 primary_base_class (struct type *dclass)
1984 {
1985   /* In HP ANSI C++'s runtime model, a "primary base class" of a class
1986      is the first directly inherited, non-virtual base class that
1987      requires a virtual table */
1988
1989   register int i;
1990
1991   if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
1992     return NULL;
1993
1994   for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
1995     if (!TYPE_FIELD_VIRTUAL (dclass, i) &&
1996         has_vtable (TYPE_FIELD_TYPE (dclass, i)))
1997       return TYPE_FIELD_TYPE (dclass, i);
1998
1999   return NULL;
2000 }
2001
2002 /* Global manipulated by virtual_base_list[_aux]() */
2003
2004 static struct vbase *current_vbase_list = NULL;
2005
2006 /* Return a pointer to a null-terminated list of struct vbase
2007    items. The vbasetype pointer of each item in the list points to the
2008    type information for a virtual base of the argument DCLASS.
2009
2010    Helper function for virtual_base_list(). 
2011    Note: the list goes backward, right-to-left. virtual_base_list()
2012    copies the items out in reverse order.  */
2013
2014 static void
2015 virtual_base_list_aux (struct type *dclass)
2016 {
2017   struct vbase *tmp_vbase;
2018   register int i;
2019
2020   if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
2021     return;
2022
2023   for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
2024     {
2025       /* Recurse on this ancestor, first */
2026       virtual_base_list_aux (TYPE_FIELD_TYPE (dclass, i));
2027
2028       /* If this current base is itself virtual, add it to the list */
2029       if (BASETYPE_VIA_VIRTUAL (dclass, i))
2030         {
2031           struct type *basetype = TYPE_FIELD_TYPE (dclass, i);
2032
2033           /* Check if base already recorded */
2034           tmp_vbase = current_vbase_list;
2035           while (tmp_vbase)
2036             {
2037               if (tmp_vbase->vbasetype == basetype)
2038                 break;          /* found it */
2039               tmp_vbase = tmp_vbase->next;
2040             }
2041
2042           if (!tmp_vbase)       /* normal exit from loop */
2043             {
2044               /* Allocate new item for this virtual base */
2045               tmp_vbase = (struct vbase *) xmalloc (sizeof (struct vbase));
2046
2047               /* Stick it on at the end of the list */
2048               tmp_vbase->vbasetype = basetype;
2049               tmp_vbase->next = current_vbase_list;
2050               current_vbase_list = tmp_vbase;
2051             }
2052         }                       /* if virtual */
2053     }                           /* for loop over bases */
2054 }
2055
2056
2057 /* Compute the list of virtual bases in the right order.  Virtual
2058    bases are laid out in the object's memory area in order of their
2059    occurrence in a depth-first, left-to-right search through the
2060    ancestors.
2061
2062    Argument DCLASS is the type whose virtual bases are required.
2063    Return value is the address of a null-terminated array of pointers
2064    to struct type items.
2065
2066    This routine is aimed at the HP/Taligent ANSI C++ runtime model,
2067    and may not work with other runtime models.
2068
2069    This routine merely hands off the argument to virtual_base_list_aux()
2070    and then copies the result into an array to save space.  */
2071
2072 struct type **
2073 virtual_base_list (struct type *dclass)
2074 {
2075   register struct vbase *tmp_vbase;
2076   register struct vbase *tmp_vbase_2;
2077   register int i;
2078   int count;
2079   struct type **vbase_array;
2080
2081   current_vbase_list = NULL;
2082   virtual_base_list_aux (dclass);
2083
2084   for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; i++, tmp_vbase = tmp_vbase->next)
2085     /* no body */ ;
2086
2087   count = i;
2088
2089   vbase_array = (struct type **) xmalloc ((count + 1) * sizeof (struct type *));
2090
2091   for (i = count - 1, tmp_vbase = current_vbase_list; i >= 0; i--, tmp_vbase = tmp_vbase->next)
2092     vbase_array[i] = tmp_vbase->vbasetype;
2093
2094   /* Get rid of constructed chain */
2095   tmp_vbase_2 = tmp_vbase = current_vbase_list;
2096   while (tmp_vbase)
2097     {
2098       tmp_vbase = tmp_vbase->next;
2099       xfree (tmp_vbase_2);
2100       tmp_vbase_2 = tmp_vbase;
2101     }
2102
2103   vbase_array[count] = NULL;
2104   return vbase_array;
2105 }
2106
2107 /* Return the length of the virtual base list of the type DCLASS.  */
2108
2109 int
2110 virtual_base_list_length (struct type *dclass)
2111 {
2112   register int i;
2113   register struct vbase *tmp_vbase;
2114
2115   current_vbase_list = NULL;
2116   virtual_base_list_aux (dclass);
2117
2118   for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; i++, tmp_vbase = tmp_vbase->next)
2119     /* no body */ ;
2120   return i;
2121 }
2122
2123 /* Return the number of elements of the virtual base list of the type
2124    DCLASS, ignoring those appearing in the primary base (and its
2125    primary base, recursively).  */
2126
2127 int
2128 virtual_base_list_length_skip_primaries (struct type *dclass)
2129 {
2130   register int i;
2131   register struct vbase *tmp_vbase;
2132   struct type *primary;
2133
2134   primary = TYPE_RUNTIME_PTR (dclass) ? TYPE_PRIMARY_BASE (dclass) : NULL;
2135
2136   if (!primary)
2137     return virtual_base_list_length (dclass);
2138
2139   current_vbase_list = NULL;
2140   virtual_base_list_aux (dclass);
2141
2142   for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; tmp_vbase = tmp_vbase->next)
2143     {
2144       if (virtual_base_index (tmp_vbase->vbasetype, primary) >= 0)
2145         continue;
2146       i++;
2147     }
2148   return i;
2149 }
2150
2151
2152 /* Return the index (position) of type BASE, which is a virtual base
2153    class of DCLASS, in the latter's virtual base list.  A return of -1
2154    indicates "not found" or a problem.  */
2155
2156 int
2157 virtual_base_index (struct type *base, struct type *dclass)
2158 {
2159   register struct type *vbase;
2160   register int i;
2161
2162   if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS) ||
2163       (TYPE_CODE (base) != TYPE_CODE_CLASS))
2164     return -1;
2165
2166   i = 0;
2167   vbase = virtual_base_list (dclass)[0];
2168   while (vbase)
2169     {
2170       if (vbase == base)
2171         break;
2172       vbase = virtual_base_list (dclass)[++i];
2173     }
2174
2175   return vbase ? i : -1;
2176 }
2177
2178
2179
2180 /* Return the index (position) of type BASE, which is a virtual base
2181    class of DCLASS, in the latter's virtual base list. Skip over all
2182    bases that may appear in the virtual base list of the primary base
2183    class of DCLASS (recursively).  A return of -1 indicates "not
2184    found" or a problem.  */
2185
2186 int
2187 virtual_base_index_skip_primaries (struct type *base, struct type *dclass)
2188 {
2189   register struct type *vbase;
2190   register int i, j;
2191   struct type *primary;
2192
2193   if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS) ||
2194       (TYPE_CODE (base) != TYPE_CODE_CLASS))
2195     return -1;
2196
2197   primary = TYPE_RUNTIME_PTR (dclass) ? TYPE_PRIMARY_BASE (dclass) : NULL;
2198
2199   j = -1;
2200   i = 0;
2201   vbase = virtual_base_list (dclass)[0];
2202   while (vbase)
2203     {
2204       if (!primary || (virtual_base_index_skip_primaries (vbase, primary) < 0))
2205         j++;
2206       if (vbase == base)
2207         break;
2208       vbase = virtual_base_list (dclass)[++i];
2209     }
2210
2211   return vbase ? j : -1;
2212 }
2213
2214 /* Return position of a derived class DCLASS in the list of
2215  * primary bases starting with the remotest ancestor.
2216  * Position returned is 0-based. */
2217
2218 int
2219 class_index_in_primary_list (struct type *dclass)
2220 {
2221   struct type *pbc;             /* primary base class */
2222
2223   /* Simply recurse on primary base */
2224   pbc = TYPE_PRIMARY_BASE (dclass);
2225   if (pbc)
2226     return 1 + class_index_in_primary_list (pbc);
2227   else
2228     return 0;
2229 }
2230
2231 /* Return a count of the number of virtual functions a type has.
2232  * This includes all the virtual functions it inherits from its
2233  * base classes too.
2234  */
2235
2236 /* pai: FIXME This doesn't do the right thing: count redefined virtual
2237  * functions only once (latest redefinition)
2238  */
2239
2240 int
2241 count_virtual_fns (struct type *dclass)
2242 {
2243   int fn, oi;                   /* function and overloaded instance indices */
2244   int vfuncs;                   /* count to return */
2245
2246   /* recurse on bases that can share virtual table */
2247   struct type *pbc = primary_base_class (dclass);
2248   if (pbc)
2249     vfuncs = count_virtual_fns (pbc);
2250   else
2251     vfuncs = 0;
2252
2253   for (fn = 0; fn < TYPE_NFN_FIELDS (dclass); fn++)
2254     for (oi = 0; oi < TYPE_FN_FIELDLIST_LENGTH (dclass, fn); oi++)
2255       if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (dclass, fn), oi))
2256         vfuncs++;
2257
2258   return vfuncs;
2259 }
2260 \f
2261
2262
2263 /* Functions for overload resolution begin here */
2264
2265 /* Compare two badness vectors A and B and return the result.
2266  * 0 => A and B are identical
2267  * 1 => A and B are incomparable
2268  * 2 => A is better than B
2269  * 3 => A is worse than B */
2270
2271 int
2272 compare_badness (struct badness_vector *a, struct badness_vector *b)
2273 {
2274   int i;
2275   int tmp;
2276   short found_pos = 0;          /* any positives in c? */
2277   short found_neg = 0;          /* any negatives in c? */
2278
2279   /* differing lengths => incomparable */
2280   if (a->length != b->length)
2281     return 1;
2282
2283   /* Subtract b from a */
2284   for (i = 0; i < a->length; i++)
2285     {
2286       tmp = a->rank[i] - b->rank[i];
2287       if (tmp > 0)
2288         found_pos = 1;
2289       else if (tmp < 0)
2290         found_neg = 1;
2291     }
2292
2293   if (found_pos)
2294     {
2295       if (found_neg)
2296         return 1;               /* incomparable */
2297       else
2298         return 3;               /* A > B */
2299     }
2300   else
2301     /* no positives */
2302     {
2303       if (found_neg)
2304         return 2;               /* A < B */
2305       else
2306         return 0;               /* A == B */
2307     }
2308 }
2309
2310 /* Rank a function by comparing its parameter types (PARMS, length NPARMS),
2311  * to the types of an argument list (ARGS, length NARGS).
2312  * Return a pointer to a badness vector. This has NARGS + 1 entries. */
2313
2314 struct badness_vector *
2315 rank_function (struct type **parms, int nparms, struct type **args, int nargs)
2316 {
2317   int i;
2318   struct badness_vector *bv;
2319   int min_len = nparms < nargs ? nparms : nargs;
2320
2321   bv = xmalloc (sizeof (struct badness_vector));
2322   bv->length = nargs + 1;       /* add 1 for the length-match rank */
2323   bv->rank = xmalloc ((nargs + 1) * sizeof (int));
2324
2325   /* First compare the lengths of the supplied lists.
2326    * If there is a mismatch, set it to a high value. */
2327
2328   /* pai/1997-06-03 FIXME: when we have debug info about default
2329    * arguments and ellipsis parameter lists, we should consider those
2330    * and rank the length-match more finely. */
2331
2332   LENGTH_MATCH (bv) = (nargs != nparms) ? LENGTH_MISMATCH_BADNESS : 0;
2333
2334   /* Now rank all the parameters of the candidate function */
2335   for (i = 1; i <= min_len; i++)
2336     bv->rank[i] = rank_one_type (parms[i-1], args[i-1]);
2337
2338   /* If more arguments than parameters, add dummy entries */
2339   for (i = min_len + 1; i <= nargs; i++)
2340     bv->rank[i] = TOO_FEW_PARAMS_BADNESS;
2341
2342   return bv;
2343 }
2344
2345 /* Compare one type (PARM) for compatibility with another (ARG).
2346  * PARM is intended to be the parameter type of a function; and
2347  * ARG is the supplied argument's type.  This function tests if
2348  * the latter can be converted to the former.
2349  *
2350  * Return 0 if they are identical types;
2351  * Otherwise, return an integer which corresponds to how compatible
2352  * PARM is to ARG. The higher the return value, the worse the match.
2353  * Generally the "bad" conversions are all uniformly assigned a 100 */
2354
2355 int
2356 rank_one_type (struct type *parm, struct type *arg)
2357 {
2358   /* Identical type pointers */
2359   /* However, this still doesn't catch all cases of same type for arg
2360    * and param. The reason is that builtin types are different from
2361    * the same ones constructed from the object. */
2362   if (parm == arg)
2363     return 0;
2364
2365   /* Resolve typedefs */
2366   if (TYPE_CODE (parm) == TYPE_CODE_TYPEDEF)
2367     parm = check_typedef (parm);
2368   if (TYPE_CODE (arg) == TYPE_CODE_TYPEDEF)
2369     arg = check_typedef (arg);
2370
2371   /*
2372      Well, damnit, if the names are exactly the same,
2373      i'll say they are exactly the same. This happens when we generate
2374      method stubs. The types won't point to the same address, but they
2375      really are the same.
2376   */
2377
2378   if (TYPE_NAME (parm) && TYPE_NAME (arg) &&
2379       !strcmp (TYPE_NAME (parm), TYPE_NAME (arg)))
2380       return 0;
2381
2382   /* Check if identical after resolving typedefs */
2383   if (parm == arg)
2384     return 0;
2385
2386   /* See through references, since we can almost make non-references
2387      references. */
2388   if (TYPE_CODE (arg) == TYPE_CODE_REF)
2389     return (rank_one_type (parm, TYPE_TARGET_TYPE (arg))
2390             + REFERENCE_CONVERSION_BADNESS);
2391   if (TYPE_CODE (parm) == TYPE_CODE_REF)
2392     return (rank_one_type (TYPE_TARGET_TYPE (parm), arg)
2393             + REFERENCE_CONVERSION_BADNESS);
2394   if (overload_debug)
2395   /* Debugging only. */
2396     fprintf_filtered (gdb_stderr,"------ Arg is %s [%d], parm is %s [%d]\n",
2397         TYPE_NAME (arg), TYPE_CODE (arg), TYPE_NAME (parm), TYPE_CODE (parm));
2398
2399   /* x -> y means arg of type x being supplied for parameter of type y */
2400
2401   switch (TYPE_CODE (parm))
2402     {
2403     case TYPE_CODE_PTR:
2404       switch (TYPE_CODE (arg))
2405         {
2406         case TYPE_CODE_PTR:
2407           if (TYPE_CODE (TYPE_TARGET_TYPE (parm)) == TYPE_CODE_VOID)
2408             return VOID_PTR_CONVERSION_BADNESS;
2409           else
2410             return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2411         case TYPE_CODE_ARRAY:
2412           return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2413         case TYPE_CODE_FUNC:
2414           return rank_one_type (TYPE_TARGET_TYPE (parm), arg);
2415         case TYPE_CODE_INT:
2416         case TYPE_CODE_ENUM:
2417         case TYPE_CODE_CHAR:
2418         case TYPE_CODE_RANGE:
2419         case TYPE_CODE_BOOL:
2420           return POINTER_CONVERSION_BADNESS;
2421         default:
2422           return INCOMPATIBLE_TYPE_BADNESS;
2423         }
2424     case TYPE_CODE_ARRAY:
2425       switch (TYPE_CODE (arg))
2426         {
2427         case TYPE_CODE_PTR:
2428         case TYPE_CODE_ARRAY:
2429           return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2430         default:
2431           return INCOMPATIBLE_TYPE_BADNESS;
2432         }
2433     case TYPE_CODE_FUNC:
2434       switch (TYPE_CODE (arg))
2435         {
2436         case TYPE_CODE_PTR:     /* funcptr -> func */
2437           return rank_one_type (parm, TYPE_TARGET_TYPE (arg));
2438         default:
2439           return INCOMPATIBLE_TYPE_BADNESS;
2440         }
2441     case TYPE_CODE_INT:
2442       switch (TYPE_CODE (arg))
2443         {
2444         case TYPE_CODE_INT:
2445           if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
2446             {
2447               /* Deal with signed, unsigned, and plain chars and
2448                  signed and unsigned ints */
2449               if (TYPE_NOSIGN (parm))
2450                 {
2451                   /* This case only for character types */
2452                   if (TYPE_NOSIGN (arg))        /* plain char -> plain char */
2453                     return 0;
2454                   else
2455                     return INTEGER_COERCION_BADNESS;    /* signed/unsigned char -> plain char */
2456                 }
2457               else if (TYPE_UNSIGNED (parm))
2458                 {
2459                   if (TYPE_UNSIGNED (arg))
2460                     {
2461                       if (!strcmp_iw (TYPE_NAME (parm), TYPE_NAME (arg)))
2462                         return 0;       /* unsigned int -> unsigned int, or unsigned long -> unsigned long */
2463                       else if (!strcmp_iw (TYPE_NAME (arg), "int") && !strcmp_iw (TYPE_NAME (parm), "long"))
2464                         return INTEGER_PROMOTION_BADNESS;       /* unsigned int -> unsigned long */
2465                       else
2466                         return INTEGER_COERCION_BADNESS;        /* unsigned long -> unsigned int */
2467                     }
2468                   else
2469                     {
2470                       if (!strcmp_iw (TYPE_NAME (arg), "long") && !strcmp_iw (TYPE_NAME (parm), "int"))
2471                         return INTEGER_COERCION_BADNESS;        /* signed long -> unsigned int */
2472                       else
2473                         return INTEGER_CONVERSION_BADNESS;      /* signed int/long -> unsigned int/long */
2474                     }
2475                 }
2476               else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
2477                 {
2478                   if (!strcmp_iw (TYPE_NAME (parm), TYPE_NAME (arg)))
2479                     return 0;
2480                   else if (!strcmp_iw (TYPE_NAME (arg), "int") && !strcmp_iw (TYPE_NAME (parm), "long"))
2481                     return INTEGER_PROMOTION_BADNESS;
2482                   else
2483                     return INTEGER_COERCION_BADNESS;
2484                 }
2485               else
2486                 return INTEGER_COERCION_BADNESS;
2487             }
2488           else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2489             return INTEGER_PROMOTION_BADNESS;
2490           else
2491             return INTEGER_COERCION_BADNESS;
2492         case TYPE_CODE_ENUM:
2493         case TYPE_CODE_CHAR:
2494         case TYPE_CODE_RANGE:
2495         case TYPE_CODE_BOOL:
2496           return INTEGER_PROMOTION_BADNESS;
2497         case TYPE_CODE_FLT:
2498           return INT_FLOAT_CONVERSION_BADNESS;
2499         case TYPE_CODE_PTR:
2500           return NS_POINTER_CONVERSION_BADNESS;
2501         default:
2502           return INCOMPATIBLE_TYPE_BADNESS;
2503         }
2504       break;
2505     case TYPE_CODE_ENUM:
2506       switch (TYPE_CODE (arg))
2507         {
2508         case TYPE_CODE_INT:
2509         case TYPE_CODE_CHAR:
2510         case TYPE_CODE_RANGE:
2511         case TYPE_CODE_BOOL:
2512         case TYPE_CODE_ENUM:
2513           return INTEGER_COERCION_BADNESS;
2514         case TYPE_CODE_FLT:
2515           return INT_FLOAT_CONVERSION_BADNESS;
2516         default:
2517           return INCOMPATIBLE_TYPE_BADNESS;
2518         }
2519       break;
2520     case TYPE_CODE_CHAR:
2521       switch (TYPE_CODE (arg))
2522         {
2523         case TYPE_CODE_RANGE:
2524         case TYPE_CODE_BOOL:
2525         case TYPE_CODE_ENUM:
2526           return INTEGER_COERCION_BADNESS;
2527         case TYPE_CODE_FLT:
2528           return INT_FLOAT_CONVERSION_BADNESS;
2529         case TYPE_CODE_INT:
2530           if (TYPE_LENGTH (arg) > TYPE_LENGTH (parm))
2531             return INTEGER_COERCION_BADNESS;
2532           else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2533             return INTEGER_PROMOTION_BADNESS;
2534           /* >>> !! else fall through !! <<< */
2535         case TYPE_CODE_CHAR:
2536           /* Deal with signed, unsigned, and plain chars for C++
2537              and with int cases falling through from previous case */
2538           if (TYPE_NOSIGN (parm))
2539             {
2540               if (TYPE_NOSIGN (arg))
2541                 return 0;
2542               else
2543                 return INTEGER_COERCION_BADNESS;
2544             }
2545           else if (TYPE_UNSIGNED (parm))
2546             {
2547               if (TYPE_UNSIGNED (arg))
2548                 return 0;
2549               else
2550                 return INTEGER_PROMOTION_BADNESS;
2551             }
2552           else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
2553             return 0;
2554           else
2555             return INTEGER_COERCION_BADNESS;
2556         default:
2557           return INCOMPATIBLE_TYPE_BADNESS;
2558         }
2559       break;
2560     case TYPE_CODE_RANGE:
2561       switch (TYPE_CODE (arg))
2562         {
2563         case TYPE_CODE_INT:
2564         case TYPE_CODE_CHAR:
2565         case TYPE_CODE_RANGE:
2566         case TYPE_CODE_BOOL:
2567         case TYPE_CODE_ENUM:
2568           return INTEGER_COERCION_BADNESS;
2569         case TYPE_CODE_FLT:
2570           return INT_FLOAT_CONVERSION_BADNESS;
2571         default:
2572           return INCOMPATIBLE_TYPE_BADNESS;
2573         }
2574       break;
2575     case TYPE_CODE_BOOL:
2576       switch (TYPE_CODE (arg))
2577         {
2578         case TYPE_CODE_INT:
2579         case TYPE_CODE_CHAR:
2580         case TYPE_CODE_RANGE:
2581         case TYPE_CODE_ENUM:
2582         case TYPE_CODE_FLT:
2583         case TYPE_CODE_PTR:
2584           return BOOLEAN_CONVERSION_BADNESS;
2585         case TYPE_CODE_BOOL:
2586           return 0;
2587         default:
2588           return INCOMPATIBLE_TYPE_BADNESS;
2589         }
2590       break;
2591     case TYPE_CODE_FLT:
2592       switch (TYPE_CODE (arg))
2593         {
2594         case TYPE_CODE_FLT:
2595           if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2596             return FLOAT_PROMOTION_BADNESS;
2597           else if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
2598             return 0;
2599           else
2600             return FLOAT_CONVERSION_BADNESS;
2601         case TYPE_CODE_INT:
2602         case TYPE_CODE_BOOL:
2603         case TYPE_CODE_ENUM:
2604         case TYPE_CODE_RANGE:
2605         case TYPE_CODE_CHAR:
2606           return INT_FLOAT_CONVERSION_BADNESS;
2607         default:
2608           return INCOMPATIBLE_TYPE_BADNESS;
2609         }
2610       break;
2611     case TYPE_CODE_COMPLEX:
2612       switch (TYPE_CODE (arg))
2613         {                       /* Strictly not needed for C++, but... */
2614         case TYPE_CODE_FLT:
2615           return FLOAT_PROMOTION_BADNESS;
2616         case TYPE_CODE_COMPLEX:
2617           return 0;
2618         default:
2619           return INCOMPATIBLE_TYPE_BADNESS;
2620         }
2621       break;
2622     case TYPE_CODE_STRUCT:
2623       /* currently same as TYPE_CODE_CLASS */
2624       switch (TYPE_CODE (arg))
2625         {
2626         case TYPE_CODE_STRUCT:
2627           /* Check for derivation */
2628           if (is_ancestor (parm, arg))
2629             return BASE_CONVERSION_BADNESS;
2630           /* else fall through */
2631         default:
2632           return INCOMPATIBLE_TYPE_BADNESS;
2633         }
2634       break;
2635     case TYPE_CODE_UNION:
2636       switch (TYPE_CODE (arg))
2637         {
2638         case TYPE_CODE_UNION:
2639         default:
2640           return INCOMPATIBLE_TYPE_BADNESS;
2641         }
2642       break;
2643     case TYPE_CODE_MEMBER:
2644       switch (TYPE_CODE (arg))
2645         {
2646         default:
2647           return INCOMPATIBLE_TYPE_BADNESS;
2648         }
2649       break;
2650     case TYPE_CODE_METHOD:
2651       switch (TYPE_CODE (arg))
2652         {
2653
2654         default:
2655           return INCOMPATIBLE_TYPE_BADNESS;
2656         }
2657       break;
2658     case TYPE_CODE_REF:
2659       switch (TYPE_CODE (arg))
2660         {
2661
2662         default:
2663           return INCOMPATIBLE_TYPE_BADNESS;
2664         }
2665
2666       break;
2667     case TYPE_CODE_SET:
2668       switch (TYPE_CODE (arg))
2669         {
2670           /* Not in C++ */
2671         case TYPE_CODE_SET:
2672           return rank_one_type (TYPE_FIELD_TYPE (parm, 0), TYPE_FIELD_TYPE (arg, 0));
2673         default:
2674           return INCOMPATIBLE_TYPE_BADNESS;
2675         }
2676       break;
2677     case TYPE_CODE_VOID:
2678     default:
2679       return INCOMPATIBLE_TYPE_BADNESS;
2680     }                           /* switch (TYPE_CODE (arg)) */
2681 }
2682
2683
2684 /* End of functions for overload resolution */
2685
2686 static void
2687 print_bit_vector (B_TYPE *bits, int nbits)
2688 {
2689   int bitno;
2690
2691   for (bitno = 0; bitno < nbits; bitno++)
2692     {
2693       if ((bitno % 8) == 0)
2694         {
2695           puts_filtered (" ");
2696         }
2697       if (B_TST (bits, bitno))
2698         {
2699           printf_filtered ("1");
2700         }
2701       else
2702         {
2703           printf_filtered ("0");
2704         }
2705     }
2706 }
2707
2708 /* Note the first arg should be the "this" pointer, we may not want to
2709    include it since we may get into a infinitely recursive situation.  */
2710
2711 static void
2712 print_arg_types (struct field *args, int nargs, int spaces)
2713 {
2714   if (args != NULL)
2715     {
2716       int i;
2717
2718       for (i = 0; i < nargs; i++)
2719         recursive_dump_type (args[i].type, spaces + 2);
2720     }
2721 }
2722
2723 static void
2724 dump_fn_fieldlists (struct type *type, int spaces)
2725 {
2726   int method_idx;
2727   int overload_idx;
2728   struct fn_field *f;
2729
2730   printfi_filtered (spaces, "fn_fieldlists ");
2731   gdb_print_host_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
2732   printf_filtered ("\n");
2733   for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
2734     {
2735       f = TYPE_FN_FIELDLIST1 (type, method_idx);
2736       printfi_filtered (spaces + 2, "[%d] name '%s' (",
2737                         method_idx,
2738                         TYPE_FN_FIELDLIST_NAME (type, method_idx));
2739       gdb_print_host_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
2740                               gdb_stdout);
2741       printf_filtered (") length %d\n",
2742                        TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
2743       for (overload_idx = 0;
2744            overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
2745            overload_idx++)
2746         {
2747           printfi_filtered (spaces + 4, "[%d] physname '%s' (",
2748                             overload_idx,
2749                             TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
2750           gdb_print_host_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
2751                                   gdb_stdout);
2752           printf_filtered (")\n");
2753           printfi_filtered (spaces + 8, "type ");
2754           gdb_print_host_address (TYPE_FN_FIELD_TYPE (f, overload_idx), gdb_stdout);
2755           printf_filtered ("\n");
2756
2757           recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
2758                                spaces + 8 + 2);
2759
2760           printfi_filtered (spaces + 8, "args ");
2761           gdb_print_host_address (TYPE_FN_FIELD_ARGS (f, overload_idx), gdb_stdout);
2762           printf_filtered ("\n");
2763
2764           print_arg_types (TYPE_FN_FIELD_ARGS (f, overload_idx),
2765                            TYPE_NFIELDS (TYPE_FN_FIELD_TYPE (f, overload_idx)),
2766                            spaces);
2767           printfi_filtered (spaces + 8, "fcontext ");
2768           gdb_print_host_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
2769                                   gdb_stdout);
2770           printf_filtered ("\n");
2771
2772           printfi_filtered (spaces + 8, "is_const %d\n",
2773                             TYPE_FN_FIELD_CONST (f, overload_idx));
2774           printfi_filtered (spaces + 8, "is_volatile %d\n",
2775                             TYPE_FN_FIELD_VOLATILE (f, overload_idx));
2776           printfi_filtered (spaces + 8, "is_private %d\n",
2777                             TYPE_FN_FIELD_PRIVATE (f, overload_idx));
2778           printfi_filtered (spaces + 8, "is_protected %d\n",
2779                             TYPE_FN_FIELD_PROTECTED (f, overload_idx));
2780           printfi_filtered (spaces + 8, "is_stub %d\n",
2781                             TYPE_FN_FIELD_STUB (f, overload_idx));
2782           printfi_filtered (spaces + 8, "voffset %u\n",
2783                             TYPE_FN_FIELD_VOFFSET (f, overload_idx));
2784         }
2785     }
2786 }
2787
2788 static void
2789 print_cplus_stuff (struct type *type, int spaces)
2790 {
2791   printfi_filtered (spaces, "n_baseclasses %d\n",
2792                     TYPE_N_BASECLASSES (type));
2793   printfi_filtered (spaces, "nfn_fields %d\n",
2794                     TYPE_NFN_FIELDS (type));
2795   printfi_filtered (spaces, "nfn_fields_total %d\n",
2796                     TYPE_NFN_FIELDS_TOTAL (type));
2797   if (TYPE_N_BASECLASSES (type) > 0)
2798     {
2799       printfi_filtered (spaces, "virtual_field_bits (%d bits at *",
2800                         TYPE_N_BASECLASSES (type));
2801       gdb_print_host_address (TYPE_FIELD_VIRTUAL_BITS (type), gdb_stdout);
2802       printf_filtered (")");
2803
2804       print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
2805                         TYPE_N_BASECLASSES (type));
2806       puts_filtered ("\n");
2807     }
2808   if (TYPE_NFIELDS (type) > 0)
2809     {
2810       if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
2811         {
2812           printfi_filtered (spaces, "private_field_bits (%d bits at *",
2813                             TYPE_NFIELDS (type));
2814           gdb_print_host_address (TYPE_FIELD_PRIVATE_BITS (type), gdb_stdout);
2815           printf_filtered (")");
2816           print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
2817                             TYPE_NFIELDS (type));
2818           puts_filtered ("\n");
2819         }
2820       if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
2821         {
2822           printfi_filtered (spaces, "protected_field_bits (%d bits at *",
2823                             TYPE_NFIELDS (type));
2824           gdb_print_host_address (TYPE_FIELD_PROTECTED_BITS (type), gdb_stdout);
2825           printf_filtered (")");
2826           print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
2827                             TYPE_NFIELDS (type));
2828           puts_filtered ("\n");
2829         }
2830     }
2831   if (TYPE_NFN_FIELDS (type) > 0)
2832     {
2833       dump_fn_fieldlists (type, spaces);
2834     }
2835 }
2836
2837 static void
2838 print_bound_type (int bt)
2839 {
2840   switch (bt)
2841     {
2842     case BOUND_CANNOT_BE_DETERMINED:
2843       printf_filtered ("(BOUND_CANNOT_BE_DETERMINED)");
2844       break;
2845     case BOUND_BY_REF_ON_STACK:
2846       printf_filtered ("(BOUND_BY_REF_ON_STACK)");
2847       break;
2848     case BOUND_BY_VALUE_ON_STACK:
2849       printf_filtered ("(BOUND_BY_VALUE_ON_STACK)");
2850       break;
2851     case BOUND_BY_REF_IN_REG:
2852       printf_filtered ("(BOUND_BY_REF_IN_REG)");
2853       break;
2854     case BOUND_BY_VALUE_IN_REG:
2855       printf_filtered ("(BOUND_BY_VALUE_IN_REG)");
2856       break;
2857     case BOUND_SIMPLE:
2858       printf_filtered ("(BOUND_SIMPLE)");
2859       break;
2860     default:
2861       printf_filtered ("(unknown bound type)");
2862       break;
2863     }
2864 }
2865
2866 static struct obstack dont_print_type_obstack;
2867
2868 void
2869 recursive_dump_type (struct type *type, int spaces)
2870 {
2871   int idx;
2872
2873   if (spaces == 0)
2874     obstack_begin (&dont_print_type_obstack, 0);
2875
2876   if (TYPE_NFIELDS (type) > 0
2877       || (TYPE_CPLUS_SPECIFIC (type) && TYPE_NFN_FIELDS (type) > 0))
2878     {
2879       struct type **first_dont_print
2880       = (struct type **) obstack_base (&dont_print_type_obstack);
2881
2882       int i = (struct type **) obstack_next_free (&dont_print_type_obstack)
2883       - first_dont_print;
2884
2885       while (--i >= 0)
2886         {
2887           if (type == first_dont_print[i])
2888             {
2889               printfi_filtered (spaces, "type node ");
2890               gdb_print_host_address (type, gdb_stdout);
2891               printf_filtered (" <same as already seen type>\n");
2892               return;
2893             }
2894         }
2895
2896       obstack_ptr_grow (&dont_print_type_obstack, type);
2897     }
2898
2899   printfi_filtered (spaces, "type node ");
2900   gdb_print_host_address (type, gdb_stdout);
2901   printf_filtered ("\n");
2902   printfi_filtered (spaces, "name '%s' (",
2903                     TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
2904   gdb_print_host_address (TYPE_NAME (type), gdb_stdout);
2905   printf_filtered (")\n");
2906   printfi_filtered (spaces, "tagname '%s' (",
2907                     TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) : "<NULL>");
2908   gdb_print_host_address (TYPE_TAG_NAME (type), gdb_stdout);
2909   printf_filtered (")\n");
2910   printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
2911   switch (TYPE_CODE (type))
2912     {
2913     case TYPE_CODE_UNDEF:
2914       printf_filtered ("(TYPE_CODE_UNDEF)");
2915       break;
2916     case TYPE_CODE_PTR:
2917       printf_filtered ("(TYPE_CODE_PTR)");
2918       break;
2919     case TYPE_CODE_ARRAY:
2920       printf_filtered ("(TYPE_CODE_ARRAY)");
2921       break;
2922     case TYPE_CODE_STRUCT:
2923       printf_filtered ("(TYPE_CODE_STRUCT)");
2924       break;
2925     case TYPE_CODE_UNION:
2926       printf_filtered ("(TYPE_CODE_UNION)");
2927       break;
2928     case TYPE_CODE_ENUM:
2929       printf_filtered ("(TYPE_CODE_ENUM)");
2930       break;
2931     case TYPE_CODE_FUNC:
2932       printf_filtered ("(TYPE_CODE_FUNC)");
2933       break;
2934     case TYPE_CODE_INT:
2935       printf_filtered ("(TYPE_CODE_INT)");
2936       break;
2937     case TYPE_CODE_FLT:
2938       printf_filtered ("(TYPE_CODE_FLT)");
2939       break;
2940     case TYPE_CODE_VOID:
2941       printf_filtered ("(TYPE_CODE_VOID)");
2942       break;
2943     case TYPE_CODE_SET:
2944       printf_filtered ("(TYPE_CODE_SET)");
2945       break;
2946     case TYPE_CODE_RANGE:
2947       printf_filtered ("(TYPE_CODE_RANGE)");
2948       break;
2949     case TYPE_CODE_STRING:
2950       printf_filtered ("(TYPE_CODE_STRING)");
2951       break;
2952     case TYPE_CODE_BITSTRING:
2953       printf_filtered ("(TYPE_CODE_BITSTRING)");
2954       break;
2955     case TYPE_CODE_ERROR:
2956       printf_filtered ("(TYPE_CODE_ERROR)");
2957       break;
2958     case TYPE_CODE_MEMBER:
2959       printf_filtered ("(TYPE_CODE_MEMBER)");
2960       break;
2961     case TYPE_CODE_METHOD:
2962       printf_filtered ("(TYPE_CODE_METHOD)");
2963       break;
2964     case TYPE_CODE_REF:
2965       printf_filtered ("(TYPE_CODE_REF)");
2966       break;
2967     case TYPE_CODE_CHAR:
2968       printf_filtered ("(TYPE_CODE_CHAR)");
2969       break;
2970     case TYPE_CODE_BOOL:
2971       printf_filtered ("(TYPE_CODE_BOOL)");
2972       break;
2973     case TYPE_CODE_COMPLEX:
2974       printf_filtered ("(TYPE_CODE_COMPLEX)");
2975       break;
2976     case TYPE_CODE_TYPEDEF:
2977       printf_filtered ("(TYPE_CODE_TYPEDEF)");
2978       break;
2979     case TYPE_CODE_TEMPLATE:
2980       printf_filtered ("(TYPE_CODE_TEMPLATE)");
2981       break;
2982     case TYPE_CODE_TEMPLATE_ARG:
2983       printf_filtered ("(TYPE_CODE_TEMPLATE_ARG)");
2984       break;
2985     default:
2986       printf_filtered ("(UNKNOWN TYPE CODE)");
2987       break;
2988     }
2989   puts_filtered ("\n");
2990   printfi_filtered (spaces, "length %d\n", TYPE_LENGTH (type));
2991   printfi_filtered (spaces, "upper_bound_type 0x%x ",
2992                     TYPE_ARRAY_UPPER_BOUND_TYPE (type));
2993   print_bound_type (TYPE_ARRAY_UPPER_BOUND_TYPE (type));
2994   puts_filtered ("\n");
2995   printfi_filtered (spaces, "lower_bound_type 0x%x ",
2996                     TYPE_ARRAY_LOWER_BOUND_TYPE (type));
2997   print_bound_type (TYPE_ARRAY_LOWER_BOUND_TYPE (type));
2998   puts_filtered ("\n");
2999   printfi_filtered (spaces, "objfile ");
3000   gdb_print_host_address (TYPE_OBJFILE (type), gdb_stdout);
3001   printf_filtered ("\n");
3002   printfi_filtered (spaces, "target_type ");
3003   gdb_print_host_address (TYPE_TARGET_TYPE (type), gdb_stdout);
3004   printf_filtered ("\n");
3005   if (TYPE_TARGET_TYPE (type) != NULL)
3006     {
3007       recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
3008     }
3009   printfi_filtered (spaces, "pointer_type ");
3010   gdb_print_host_address (TYPE_POINTER_TYPE (type), gdb_stdout);
3011   printf_filtered ("\n");
3012   printfi_filtered (spaces, "reference_type ");
3013   gdb_print_host_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
3014   printf_filtered ("\n");
3015   printfi_filtered (spaces, "type_chain ");
3016   gdb_print_host_address (TYPE_CHAIN (type), gdb_stdout);
3017   printf_filtered ("\n");
3018   printfi_filtered (spaces, "instance_flags 0x%x", TYPE_INSTANCE_FLAGS (type));
3019   if (TYPE_CONST (type))
3020     {
3021       puts_filtered (" TYPE_FLAG_CONST");
3022     }
3023   if (TYPE_VOLATILE (type))
3024     {
3025       puts_filtered (" TYPE_FLAG_VOLATILE");
3026     }
3027   if (TYPE_CODE_SPACE (type))
3028     {
3029       puts_filtered (" TYPE_FLAG_CODE_SPACE");
3030     }
3031   if (TYPE_DATA_SPACE (type))
3032     {
3033       puts_filtered (" TYPE_FLAG_DATA_SPACE");
3034     }
3035   puts_filtered ("\n");
3036   printfi_filtered (spaces, "flags 0x%x", TYPE_FLAGS (type));
3037   if (TYPE_UNSIGNED (type))
3038     {
3039       puts_filtered (" TYPE_FLAG_UNSIGNED");
3040     }
3041   if (TYPE_NOSIGN (type))
3042     {
3043       puts_filtered (" TYPE_FLAG_NOSIGN");
3044     }
3045   if (TYPE_STUB (type))
3046     {
3047       puts_filtered (" TYPE_FLAG_STUB");
3048     }
3049   if (TYPE_TARGET_STUB (type))
3050     {
3051       puts_filtered (" TYPE_FLAG_TARGET_STUB");
3052     }
3053   if (TYPE_STATIC (type))
3054     {
3055       puts_filtered (" TYPE_FLAG_STATIC");
3056     }
3057   if (TYPE_PROTOTYPED (type))
3058     {
3059       puts_filtered (" TYPE_FLAG_PROTOTYPED");
3060     }
3061   if (TYPE_INCOMPLETE (type))
3062     {
3063       puts_filtered (" TYPE_FLAG_INCOMPLETE");
3064     }
3065   if (TYPE_VARARGS (type))
3066     {
3067       puts_filtered (" TYPE_FLAG_VARARGS");
3068     }
3069   /* This is used for things like AltiVec registers on ppc.  Gcc emits
3070      an attribute for the array type, which tells whether or not we
3071      have a vector, instead of a regular array.  */
3072   if (TYPE_VECTOR (type))
3073     {
3074       puts_filtered (" TYPE_FLAG_VECTOR");
3075     }
3076   puts_filtered ("\n");
3077   printfi_filtered (spaces, "nfields %d ", TYPE_NFIELDS (type));
3078   gdb_print_host_address (TYPE_FIELDS (type), gdb_stdout);
3079   puts_filtered ("\n");
3080   for (idx = 0; idx < TYPE_NFIELDS (type); idx++)
3081     {
3082       printfi_filtered (spaces + 2,
3083                         "[%d] bitpos %d bitsize %d type ",
3084                         idx, TYPE_FIELD_BITPOS (type, idx),
3085                         TYPE_FIELD_BITSIZE (type, idx));
3086       gdb_print_host_address (TYPE_FIELD_TYPE (type, idx), gdb_stdout);
3087       printf_filtered (" name '%s' (",
3088                        TYPE_FIELD_NAME (type, idx) != NULL
3089                        ? TYPE_FIELD_NAME (type, idx)
3090                        : "<NULL>");
3091       gdb_print_host_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
3092       printf_filtered (")\n");
3093       if (TYPE_FIELD_TYPE (type, idx) != NULL)
3094         {
3095           recursive_dump_type (TYPE_FIELD_TYPE (type, idx), spaces + 4);
3096         }
3097     }
3098   printfi_filtered (spaces, "vptr_basetype ");
3099   gdb_print_host_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
3100   puts_filtered ("\n");
3101   if (TYPE_VPTR_BASETYPE (type) != NULL)
3102     {
3103       recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
3104     }
3105   printfi_filtered (spaces, "vptr_fieldno %d\n", TYPE_VPTR_FIELDNO (type));
3106   switch (TYPE_CODE (type))
3107     {
3108     case TYPE_CODE_STRUCT:
3109       printfi_filtered (spaces, "cplus_stuff ");
3110       gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
3111       puts_filtered ("\n");
3112       print_cplus_stuff (type, spaces);
3113       break;
3114
3115     case TYPE_CODE_FLT:
3116       printfi_filtered (spaces, "floatformat ");
3117       if (TYPE_FLOATFORMAT (type) == NULL
3118           || TYPE_FLOATFORMAT (type)->name == NULL)
3119         puts_filtered ("(null)");
3120       else
3121         puts_filtered (TYPE_FLOATFORMAT (type)->name);
3122       puts_filtered ("\n");
3123       break;
3124
3125     default:
3126       /* We have to pick one of the union types to be able print and test
3127          the value.  Pick cplus_struct_type, even though we know it isn't
3128          any particular one. */
3129       printfi_filtered (spaces, "type_specific ");
3130       gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
3131       if (TYPE_CPLUS_SPECIFIC (type) != NULL)
3132         {
3133           printf_filtered (" (unknown data form)");
3134         }
3135       printf_filtered ("\n");
3136       break;
3137
3138     }
3139   if (spaces == 0)
3140     obstack_free (&dont_print_type_obstack, NULL);
3141 }
3142
3143 static void build_gdbtypes (void);
3144 static void
3145 build_gdbtypes (void)
3146 {
3147   builtin_type_void =
3148     init_type (TYPE_CODE_VOID, 1,
3149                0,
3150                "void", (struct objfile *) NULL);
3151   builtin_type_char =
3152     init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3153                (TYPE_FLAG_NOSIGN
3154                 | (TARGET_CHAR_SIGNED ? 0 : TYPE_FLAG_UNSIGNED)),
3155                "char", (struct objfile *) NULL);
3156   builtin_type_true_char =
3157     init_type (TYPE_CODE_CHAR, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3158                0,
3159                "true character", (struct objfile *) NULL);
3160   builtin_type_signed_char =
3161     init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3162                0,
3163                "signed char", (struct objfile *) NULL);
3164   builtin_type_unsigned_char =
3165     init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3166                TYPE_FLAG_UNSIGNED,
3167                "unsigned char", (struct objfile *) NULL);
3168   builtin_type_short =
3169     init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
3170                0,
3171                "short", (struct objfile *) NULL);
3172   builtin_type_unsigned_short =
3173     init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
3174                TYPE_FLAG_UNSIGNED,
3175                "unsigned short", (struct objfile *) NULL);
3176   builtin_type_int =
3177     init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3178                0,
3179                "int", (struct objfile *) NULL);
3180   builtin_type_unsigned_int =
3181     init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3182                TYPE_FLAG_UNSIGNED,
3183                "unsigned int", (struct objfile *) NULL);
3184   builtin_type_long =
3185     init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
3186                0,
3187                "long", (struct objfile *) NULL);
3188   builtin_type_unsigned_long =
3189     init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
3190                TYPE_FLAG_UNSIGNED,
3191                "unsigned long", (struct objfile *) NULL);
3192   builtin_type_long_long =
3193     init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
3194                0,
3195                "long long", (struct objfile *) NULL);
3196   builtin_type_unsigned_long_long =
3197     init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
3198                TYPE_FLAG_UNSIGNED,
3199                "unsigned long long", (struct objfile *) NULL);
3200   builtin_type_float =
3201     init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
3202                0,
3203                "float", (struct objfile *) NULL);
3204 /* [email protected] 2002-02-08:
3205    The below lines are disabled since they are doing the wrong
3206    thing for non-multiarch targets.  They are setting the correct
3207    type of floats for the target but while on multiarch targets
3208    this is done everytime the architecture changes, it's done on
3209    non-multiarch targets only on startup, leaving the wrong values
3210    in even if the architecture changes (eg. from big-endian to
3211    little-endian).  */
3212 #if 0
3213   TYPE_FLOATFORMAT (builtin_type_float) = TARGET_FLOAT_FORMAT;
3214 #endif
3215   builtin_type_double =
3216     init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3217                0,
3218                "double", (struct objfile *) NULL);
3219 #if 0
3220   TYPE_FLOATFORMAT (builtin_type_double) = TARGET_DOUBLE_FORMAT;
3221 #endif
3222   builtin_type_long_double =
3223     init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
3224                0,
3225                "long double", (struct objfile *) NULL);
3226 #if 0
3227   TYPE_FLOATFORMAT (builtin_type_long_double) = TARGET_LONG_DOUBLE_FORMAT;
3228 #endif
3229   builtin_type_complex =
3230     init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
3231                0,
3232                "complex", (struct objfile *) NULL);
3233   TYPE_TARGET_TYPE (builtin_type_complex) = builtin_type_float;
3234   builtin_type_double_complex =
3235     init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3236                0,
3237                "double complex", (struct objfile *) NULL);
3238   TYPE_TARGET_TYPE (builtin_type_double_complex) = builtin_type_double;
3239   builtin_type_string =
3240     init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3241                0,
3242                "string", (struct objfile *) NULL);
3243   builtin_type_int8 =
3244     init_type (TYPE_CODE_INT, 8 / 8,
3245                0,
3246                "int8_t", (struct objfile *) NULL);
3247   builtin_type_uint8 =
3248     init_type (TYPE_CODE_INT, 8 / 8,
3249                TYPE_FLAG_UNSIGNED,
3250                "uint8_t", (struct objfile *) NULL);
3251   builtin_type_int16 =
3252     init_type (TYPE_CODE_INT, 16 / 8,
3253                0,
3254                "int16_t", (struct objfile *) NULL);
3255   builtin_type_uint16 =
3256     init_type (TYPE_CODE_INT, 16 / 8,
3257                TYPE_FLAG_UNSIGNED,
3258                "uint16_t", (struct objfile *) NULL);
3259   builtin_type_int32 =
3260     init_type (TYPE_CODE_INT, 32 / 8,
3261                0,
3262                "int32_t", (struct objfile *) NULL);
3263   builtin_type_uint32 =
3264     init_type (TYPE_CODE_INT, 32 / 8,
3265                TYPE_FLAG_UNSIGNED,
3266                "uint32_t", (struct objfile *) NULL);
3267   builtin_type_int64 =
3268     init_type (TYPE_CODE_INT, 64 / 8,
3269                0,
3270                "int64_t", (struct objfile *) NULL);
3271   builtin_type_uint64 =
3272     init_type (TYPE_CODE_INT, 64 / 8,
3273                TYPE_FLAG_UNSIGNED,
3274                "uint64_t", (struct objfile *) NULL);
3275   builtin_type_int128 =
3276     init_type (TYPE_CODE_INT, 128 / 8,
3277                0,
3278                "int128_t", (struct objfile *) NULL);
3279   builtin_type_uint128 =
3280     init_type (TYPE_CODE_INT, 128 / 8,
3281                TYPE_FLAG_UNSIGNED,
3282                "uint128_t", (struct objfile *) NULL);
3283   builtin_type_bool =
3284     init_type (TYPE_CODE_BOOL, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3285                0,
3286                "bool", (struct objfile *) NULL);
3287
3288   /* Add user knob for controlling resolution of opaque types */
3289   add_show_from_set
3290     (add_set_cmd ("opaque-type-resolution", class_support, var_boolean, (char *) &opaque_type_resolution,
3291                   "Set resolution of opaque struct/class/union types (if set before loading symbols).",
3292                   &setlist),
3293      &showlist);
3294   opaque_type_resolution = 1;
3295
3296   /* Build SIMD types.  */
3297   builtin_type_v4sf
3298     = init_simd_type ("__builtin_v4sf", builtin_type_float, "f", 4);
3299   builtin_type_v4si
3300     = init_simd_type ("__builtin_v4si", builtin_type_int32, "f", 4);
3301   builtin_type_v16qi
3302     = init_simd_type ("__builtin_v16qi", builtin_type_int8, "f", 16);
3303   builtin_type_v8qi
3304     = init_simd_type ("__builtin_v8qi", builtin_type_int8, "f", 8);
3305   builtin_type_v8hi
3306     = init_simd_type ("__builtin_v8hi", builtin_type_int16, "f", 8);
3307   builtin_type_v4hi
3308     = init_simd_type ("__builtin_v4hi", builtin_type_int16, "f", 4);
3309   builtin_type_v2si
3310     = init_simd_type ("__builtin_v2si", builtin_type_int32, "f", 2);
3311
3312   /* 128 bit vectors.  */
3313   builtin_type_v2_double = init_vector_type (builtin_type_double, 2);
3314   builtin_type_v4_float = init_vector_type (builtin_type_float, 4);
3315   builtin_type_v2_int64 = init_vector_type (builtin_type_int64, 2);
3316   builtin_type_v4_int32 = init_vector_type (builtin_type_int32, 4);
3317   builtin_type_v8_int16 = init_vector_type (builtin_type_int16, 8);
3318   builtin_type_v16_int8 = init_vector_type (builtin_type_int8, 16);
3319   /* 64 bit vectors.  */
3320   builtin_type_v2_float = init_vector_type (builtin_type_float, 2);
3321   builtin_type_v2_int32 = init_vector_type (builtin_type_int32, 2);
3322   builtin_type_v4_int16 = init_vector_type (builtin_type_int16, 4);
3323   builtin_type_v8_int8 = init_vector_type (builtin_type_int8, 8);
3324
3325   /* Vector types. */
3326   builtin_type_vec128 = build_builtin_type_vec128 ();
3327   builtin_type_vec128i = build_builtin_type_vec128i ();
3328
3329   /* Pointer/Address types. */
3330
3331   /* NOTE: on some targets, addresses and pointers are not necessarily
3332      the same --- for example, on the D10V, pointers are 16 bits long,
3333      but addresses are 32 bits long.  See doc/gdbint.texinfo,
3334      ``Pointers Are Not Always Addresses''.
3335
3336      The upshot is:
3337      - gdb's `struct type' always describes the target's
3338        representation.
3339      - gdb's `struct value' objects should always hold values in
3340        target form.
3341      - gdb's CORE_ADDR values are addresses in the unified virtual
3342        address space that the assembler and linker work with.  Thus,
3343        since target_read_memory takes a CORE_ADDR as an argument, it
3344        can access any memory on the target, even if the processor has
3345        separate code and data address spaces.
3346
3347      So, for example:
3348      - If v is a value holding a D10V code pointer, its contents are
3349        in target form: a big-endian address left-shifted two bits.
3350      - If p is a D10V pointer type, TYPE_LENGTH (p) == 2, just as
3351        sizeof (void *) == 2 on the target.
3352
3353      In this context, builtin_type_CORE_ADDR is a bit odd: it's a
3354      target type for a value the target will never see.  It's only
3355      used to hold the values of (typeless) linker symbols, which are
3356      indeed in the unified virtual address space.  */
3357   builtin_type_void_data_ptr = make_pointer_type (builtin_type_void, NULL);
3358   builtin_type_void_func_ptr
3359     = lookup_pointer_type (lookup_function_type (builtin_type_void));
3360   builtin_type_CORE_ADDR =
3361     init_type (TYPE_CODE_INT, TARGET_ADDR_BIT / 8,
3362                TYPE_FLAG_UNSIGNED,
3363                "__CORE_ADDR", (struct objfile *) NULL);
3364   builtin_type_bfd_vma =
3365     init_type (TYPE_CODE_INT, TARGET_BFD_VMA_BIT / 8,
3366                TYPE_FLAG_UNSIGNED,
3367                "__bfd_vma", (struct objfile *) NULL);
3368 }
3369
3370
3371 extern void _initialize_gdbtypes (void);
3372 void
3373 _initialize_gdbtypes (void)
3374 {
3375   struct cmd_list_element *c;
3376   build_gdbtypes ();
3377
3378   /* FIXME - For the moment, handle types by swapping them in and out.
3379      Should be using the per-architecture data-pointer and a large
3380      struct. */
3381   register_gdbarch_swap (&builtin_type_void, sizeof (struct type *), NULL);
3382   register_gdbarch_swap (&builtin_type_char, sizeof (struct type *), NULL);
3383   register_gdbarch_swap (&builtin_type_short, sizeof (struct type *), NULL);
3384   register_gdbarch_swap (&builtin_type_int, sizeof (struct type *), NULL);
3385   register_gdbarch_swap (&builtin_type_long, sizeof (struct type *), NULL);
3386   register_gdbarch_swap (&builtin_type_long_long, sizeof (struct type *), NULL);
3387   register_gdbarch_swap (&builtin_type_signed_char, sizeof (struct type *), NULL);
3388   register_gdbarch_swap (&builtin_type_unsigned_char, sizeof (struct type *), NULL);
3389   register_gdbarch_swap (&builtin_type_unsigned_short, sizeof (struct type *), NULL);
3390   register_gdbarch_swap (&builtin_type_unsigned_int, sizeof (struct type *), NULL);
3391   register_gdbarch_swap (&builtin_type_unsigned_long, sizeof (struct type *), NULL);
3392   register_gdbarch_swap (&builtin_type_unsigned_long_long, sizeof (struct type *), NULL);
3393   register_gdbarch_swap (&builtin_type_float, sizeof (struct type *), NULL);
3394   register_gdbarch_swap (&builtin_type_double, sizeof (struct type *), NULL);
3395   register_gdbarch_swap (&builtin_type_long_double, sizeof (struct type *), NULL);
3396   register_gdbarch_swap (&builtin_type_complex, sizeof (struct type *), NULL);
3397   register_gdbarch_swap (&builtin_type_double_complex, sizeof (struct type *), NULL);
3398   register_gdbarch_swap (&builtin_type_string, sizeof (struct type *), NULL);
3399   register_gdbarch_swap (&builtin_type_int8, sizeof (struct type *), NULL);
3400   register_gdbarch_swap (&builtin_type_uint8, sizeof (struct type *), NULL);
3401   register_gdbarch_swap (&builtin_type_int16, sizeof (struct type *), NULL);
3402   register_gdbarch_swap (&builtin_type_uint16, sizeof (struct type *), NULL);
3403   register_gdbarch_swap (&builtin_type_int32, sizeof (struct type *), NULL);
3404   register_gdbarch_swap (&builtin_type_uint32, sizeof (struct type *), NULL);
3405   register_gdbarch_swap (&builtin_type_int64, sizeof (struct type *), NULL);
3406   register_gdbarch_swap (&builtin_type_uint64, sizeof (struct type *), NULL);
3407   register_gdbarch_swap (&builtin_type_int128, sizeof (struct type *), NULL);
3408   register_gdbarch_swap (&builtin_type_uint128, sizeof (struct type *), NULL);
3409   register_gdbarch_swap (&builtin_type_v4sf, sizeof (struct type *), NULL);
3410   register_gdbarch_swap (&builtin_type_v4si, sizeof (struct type *), NULL);
3411   register_gdbarch_swap (&builtin_type_v16qi, sizeof (struct type *), NULL);
3412   register_gdbarch_swap (&builtin_type_v8qi, sizeof (struct type *), NULL);
3413   register_gdbarch_swap (&builtin_type_v8hi, sizeof (struct type *), NULL);
3414   register_gdbarch_swap (&builtin_type_v4hi, sizeof (struct type *), NULL);
3415   register_gdbarch_swap (&builtin_type_v2si, sizeof (struct type *), NULL);
3416   register_gdbarch_swap (&builtin_type_v2_double, sizeof (struct type *), NULL);
3417   register_gdbarch_swap (&builtin_type_v4_float, sizeof (struct type *), NULL);
3418   register_gdbarch_swap (&builtin_type_v2_int64, sizeof (struct type *), NULL);
3419   register_gdbarch_swap (&builtin_type_v4_int32, sizeof (struct type *), NULL);
3420   register_gdbarch_swap (&builtin_type_v8_int16, sizeof (struct type *), NULL);
3421   register_gdbarch_swap (&builtin_type_v16_int8, sizeof (struct type *), NULL);
3422   register_gdbarch_swap (&builtin_type_v2_float, sizeof (struct type *), NULL);
3423   register_gdbarch_swap (&builtin_type_v2_int32, sizeof (struct type *), NULL);
3424   register_gdbarch_swap (&builtin_type_v8_int8, sizeof (struct type *), NULL);
3425   register_gdbarch_swap (&builtin_type_v4_int16, sizeof (struct type *), NULL);
3426   register_gdbarch_swap (&builtin_type_vec128, sizeof (struct type *), NULL);
3427   register_gdbarch_swap (&builtin_type_vec128i, sizeof (struct type *), NULL);
3428   REGISTER_GDBARCH_SWAP (builtin_type_void_data_ptr);
3429   REGISTER_GDBARCH_SWAP (builtin_type_void_func_ptr);
3430   REGISTER_GDBARCH_SWAP (builtin_type_CORE_ADDR);
3431   REGISTER_GDBARCH_SWAP (builtin_type_bfd_vma);
3432   register_gdbarch_swap (NULL, 0, build_gdbtypes);
3433
3434   /* Note: These types do not need to be swapped - they are target
3435      neutral.  */
3436   builtin_type_ieee_single_big =
3437     init_type (TYPE_CODE_FLT, floatformat_ieee_single_big.totalsize / 8,
3438                0, "builtin_type_ieee_single_big", NULL);
3439   TYPE_FLOATFORMAT (builtin_type_ieee_single_big) = &floatformat_ieee_single_big;
3440   builtin_type_ieee_single_little =
3441     init_type (TYPE_CODE_FLT, floatformat_ieee_single_little.totalsize / 8,
3442                0, "builtin_type_ieee_single_little", NULL);
3443   TYPE_FLOATFORMAT (builtin_type_ieee_single_little) = &floatformat_ieee_single_little;
3444   builtin_type_ieee_double_big =
3445     init_type (TYPE_CODE_FLT, floatformat_ieee_double_big.totalsize / 8,
3446                0, "builtin_type_ieee_double_big", NULL);
3447   TYPE_FLOATFORMAT (builtin_type_ieee_double_big) = &floatformat_ieee_double_big;
3448   builtin_type_ieee_double_little =
3449     init_type (TYPE_CODE_FLT, floatformat_ieee_double_little.totalsize / 8,
3450                0, "builtin_type_ieee_double_little", NULL);
3451   TYPE_FLOATFORMAT (builtin_type_ieee_double_little) = &floatformat_ieee_double_little;
3452   builtin_type_ieee_double_littlebyte_bigword =
3453     init_type (TYPE_CODE_FLT, floatformat_ieee_double_littlebyte_bigword.totalsize / 8,
3454                0, "builtin_type_ieee_double_littlebyte_bigword", NULL);
3455   TYPE_FLOATFORMAT (builtin_type_ieee_double_littlebyte_bigword) = &floatformat_ieee_double_littlebyte_bigword;
3456   builtin_type_i387_ext =
3457     init_type (TYPE_CODE_FLT, floatformat_i387_ext.totalsize / 8,
3458                0, "builtin_type_i387_ext", NULL);
3459   TYPE_FLOATFORMAT (builtin_type_i387_ext) = &floatformat_i387_ext;
3460   builtin_type_m68881_ext =
3461     init_type (TYPE_CODE_FLT, floatformat_m68881_ext.totalsize / 8,
3462                0, "builtin_type_m68881_ext", NULL);
3463   TYPE_FLOATFORMAT (builtin_type_m68881_ext) = &floatformat_m68881_ext;
3464   builtin_type_i960_ext =
3465     init_type (TYPE_CODE_FLT, floatformat_i960_ext.totalsize / 8,
3466                0, "builtin_type_i960_ext", NULL);
3467   TYPE_FLOATFORMAT (builtin_type_i960_ext) = &floatformat_i960_ext;
3468   builtin_type_m88110_ext =
3469     init_type (TYPE_CODE_FLT, floatformat_m88110_ext.totalsize / 8,
3470                0, "builtin_type_m88110_ext", NULL);
3471   TYPE_FLOATFORMAT (builtin_type_m88110_ext) = &floatformat_m88110_ext;
3472   builtin_type_m88110_harris_ext =
3473     init_type (TYPE_CODE_FLT, floatformat_m88110_harris_ext.totalsize / 8,
3474                0, "builtin_type_m88110_harris_ext", NULL);
3475   TYPE_FLOATFORMAT (builtin_type_m88110_harris_ext) = &floatformat_m88110_harris_ext;
3476   builtin_type_arm_ext_big =
3477     init_type (TYPE_CODE_FLT, floatformat_arm_ext_big.totalsize / 8,
3478                0, "builtin_type_arm_ext_big", NULL);
3479   TYPE_FLOATFORMAT (builtin_type_arm_ext_big) = &floatformat_arm_ext_big;
3480   builtin_type_arm_ext_littlebyte_bigword =
3481     init_type (TYPE_CODE_FLT, floatformat_arm_ext_littlebyte_bigword.totalsize / 8,
3482                0, "builtin_type_arm_ext_littlebyte_bigword", NULL);
3483   TYPE_FLOATFORMAT (builtin_type_arm_ext_littlebyte_bigword) = &floatformat_arm_ext_littlebyte_bigword;
3484   builtin_type_ia64_spill_big =
3485     init_type (TYPE_CODE_FLT, floatformat_ia64_spill_big.totalsize / 8,
3486                0, "builtin_type_ia64_spill_big", NULL);
3487   TYPE_FLOATFORMAT (builtin_type_ia64_spill_big) = &floatformat_ia64_spill_big;
3488   builtin_type_ia64_spill_little =
3489     init_type (TYPE_CODE_FLT, floatformat_ia64_spill_little.totalsize / 8,
3490                0, "builtin_type_ia64_spill_little", NULL);
3491   TYPE_FLOATFORMAT (builtin_type_ia64_spill_little) = &floatformat_ia64_spill_little;
3492   builtin_type_ia64_quad_big =
3493     init_type (TYPE_CODE_FLT, floatformat_ia64_quad_big.totalsize / 8,
3494                0, "builtin_type_ia64_quad_big", NULL);
3495   TYPE_FLOATFORMAT (builtin_type_ia64_quad_big) = &floatformat_ia64_quad_big;
3496   builtin_type_ia64_quad_little =
3497     init_type (TYPE_CODE_FLT, floatformat_ia64_quad_little.totalsize / 8,
3498                0, "builtin_type_ia64_quad_little", NULL);
3499   TYPE_FLOATFORMAT (builtin_type_ia64_quad_little) = &floatformat_ia64_quad_little;
3500
3501   add_show_from_set (
3502                      add_set_cmd ("overload", no_class, var_zinteger, (char *) &overload_debug,
3503                                   "Set debugging of C++ overloading.\n\
3504                           When enabled, ranking of the functions\n\
3505                           is displayed.", &setdebuglist),
3506                      &showdebuglist);
3507 }
This page took 0.213724 seconds and 4 git commands to generate.