Add support for DW_AT_data_location.
[platform/upstream/binutils.git] / gdb / gdbtypes.c
1 /* Support routines for manipulating internal types for GDB.
2
3    Copyright (C) 1992-2014 Free Software Foundation, Inc.
4
5    Contributed by Cygnus Support, using pieces from other GDB modules.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
21
22 #include "defs.h"
23 #include "bfd.h"
24 #include "symtab.h"
25 #include "symfile.h"
26 #include "objfiles.h"
27 #include "gdbtypes.h"
28 #include "expression.h"
29 #include "language.h"
30 #include "target.h"
31 #include "value.h"
32 #include "demangle.h"
33 #include "complaints.h"
34 #include "gdbcmd.h"
35 #include "cp-abi.h"
36 #include "hashtab.h"
37 #include "exceptions.h"
38 #include "cp-support.h"
39 #include "bcache.h"
40 #include "dwarf2loc.h"
41 #include "gdbcore.h"
42
43 /* Initialize BADNESS constants.  */
44
45 const struct rank LENGTH_MISMATCH_BADNESS = {100,0};
46
47 const struct rank TOO_FEW_PARAMS_BADNESS = {100,0};
48 const struct rank INCOMPATIBLE_TYPE_BADNESS = {100,0};
49
50 const struct rank EXACT_MATCH_BADNESS = {0,0};
51
52 const struct rank INTEGER_PROMOTION_BADNESS = {1,0};
53 const struct rank FLOAT_PROMOTION_BADNESS = {1,0};
54 const struct rank BASE_PTR_CONVERSION_BADNESS = {1,0};
55 const struct rank INTEGER_CONVERSION_BADNESS = {2,0};
56 const struct rank FLOAT_CONVERSION_BADNESS = {2,0};
57 const struct rank INT_FLOAT_CONVERSION_BADNESS = {2,0};
58 const struct rank VOID_PTR_CONVERSION_BADNESS = {2,0};
59 const struct rank BOOL_CONVERSION_BADNESS = {3,0};
60 const struct rank BASE_CONVERSION_BADNESS = {2,0};
61 const struct rank REFERENCE_CONVERSION_BADNESS = {2,0};
62 const struct rank NULL_POINTER_CONVERSION_BADNESS = {2,0};
63 const struct rank NS_POINTER_CONVERSION_BADNESS = {10,0};
64 const struct rank NS_INTEGER_POINTER_CONVERSION_BADNESS = {3,0};
65
66 /* Floatformat pairs.  */
67 const struct floatformat *floatformats_ieee_half[BFD_ENDIAN_UNKNOWN] = {
68   &floatformat_ieee_half_big,
69   &floatformat_ieee_half_little
70 };
71 const struct floatformat *floatformats_ieee_single[BFD_ENDIAN_UNKNOWN] = {
72   &floatformat_ieee_single_big,
73   &floatformat_ieee_single_little
74 };
75 const struct floatformat *floatformats_ieee_double[BFD_ENDIAN_UNKNOWN] = {
76   &floatformat_ieee_double_big,
77   &floatformat_ieee_double_little
78 };
79 const struct floatformat *floatformats_ieee_double_littlebyte_bigword[BFD_ENDIAN_UNKNOWN] = {
80   &floatformat_ieee_double_big,
81   &floatformat_ieee_double_littlebyte_bigword
82 };
83 const struct floatformat *floatformats_i387_ext[BFD_ENDIAN_UNKNOWN] = {
84   &floatformat_i387_ext,
85   &floatformat_i387_ext
86 };
87 const struct floatformat *floatformats_m68881_ext[BFD_ENDIAN_UNKNOWN] = {
88   &floatformat_m68881_ext,
89   &floatformat_m68881_ext
90 };
91 const struct floatformat *floatformats_arm_ext[BFD_ENDIAN_UNKNOWN] = {
92   &floatformat_arm_ext_big,
93   &floatformat_arm_ext_littlebyte_bigword
94 };
95 const struct floatformat *floatformats_ia64_spill[BFD_ENDIAN_UNKNOWN] = {
96   &floatformat_ia64_spill_big,
97   &floatformat_ia64_spill_little
98 };
99 const struct floatformat *floatformats_ia64_quad[BFD_ENDIAN_UNKNOWN] = {
100   &floatformat_ia64_quad_big,
101   &floatformat_ia64_quad_little
102 };
103 const struct floatformat *floatformats_vax_f[BFD_ENDIAN_UNKNOWN] = {
104   &floatformat_vax_f,
105   &floatformat_vax_f
106 };
107 const struct floatformat *floatformats_vax_d[BFD_ENDIAN_UNKNOWN] = {
108   &floatformat_vax_d,
109   &floatformat_vax_d
110 };
111 const struct floatformat *floatformats_ibm_long_double[BFD_ENDIAN_UNKNOWN] = {
112   &floatformat_ibm_long_double_big,
113   &floatformat_ibm_long_double_little
114 };
115
116 /* Should opaque types be resolved?  */
117
118 static int opaque_type_resolution = 1;
119
120 /* A flag to enable printing of debugging information of C++
121    overloading.  */
122
123 unsigned int overload_debug = 0;
124
125 /* A flag to enable strict type checking.  */
126
127 static int strict_type_checking = 1;
128
129 /* A function to show whether opaque types are resolved.  */
130
131 static void
132 show_opaque_type_resolution (struct ui_file *file, int from_tty,
133                              struct cmd_list_element *c, 
134                              const char *value)
135 {
136   fprintf_filtered (file, _("Resolution of opaque struct/class/union types "
137                             "(if set before loading symbols) is %s.\n"),
138                     value);
139 }
140
141 /* A function to show whether C++ overload debugging is enabled.  */
142
143 static void
144 show_overload_debug (struct ui_file *file, int from_tty,
145                      struct cmd_list_element *c, const char *value)
146 {
147   fprintf_filtered (file, _("Debugging of C++ overloading is %s.\n"), 
148                     value);
149 }
150
151 /* A function to show the status of strict type checking.  */
152
153 static void
154 show_strict_type_checking (struct ui_file *file, int from_tty,
155                            struct cmd_list_element *c, const char *value)
156 {
157   fprintf_filtered (file, _("Strict type checking is %s.\n"), value);
158 }
159
160 \f
161 /* Allocate a new OBJFILE-associated type structure and fill it
162    with some defaults.  Space for the type structure is allocated
163    on the objfile's objfile_obstack.  */
164
165 struct type *
166 alloc_type (struct objfile *objfile)
167 {
168   struct type *type;
169
170   gdb_assert (objfile != NULL);
171
172   /* Alloc the structure and start off with all fields zeroed.  */
173   type = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct type);
174   TYPE_MAIN_TYPE (type) = OBSTACK_ZALLOC (&objfile->objfile_obstack,
175                                           struct main_type);
176   OBJSTAT (objfile, n_types++);
177
178   TYPE_OBJFILE_OWNED (type) = 1;
179   TYPE_OWNER (type).objfile = objfile;
180
181   /* Initialize the fields that might not be zero.  */
182
183   TYPE_CODE (type) = TYPE_CODE_UNDEF;
184   TYPE_VPTR_FIELDNO (type) = -1;
185   TYPE_CHAIN (type) = type;     /* Chain back to itself.  */
186
187   return type;
188 }
189
190 /* Allocate a new GDBARCH-associated type structure and fill it
191    with some defaults.  Space for the type structure is allocated
192    on the heap.  */
193
194 struct type *
195 alloc_type_arch (struct gdbarch *gdbarch)
196 {
197   struct type *type;
198
199   gdb_assert (gdbarch != NULL);
200
201   /* Alloc the structure and start off with all fields zeroed.  */
202
203   type = XCNEW (struct type);
204   TYPE_MAIN_TYPE (type) = XCNEW (struct main_type);
205
206   TYPE_OBJFILE_OWNED (type) = 0;
207   TYPE_OWNER (type).gdbarch = gdbarch;
208
209   /* Initialize the fields that might not be zero.  */
210
211   TYPE_CODE (type) = TYPE_CODE_UNDEF;
212   TYPE_VPTR_FIELDNO (type) = -1;
213   TYPE_CHAIN (type) = type;     /* Chain back to itself.  */
214
215   return type;
216 }
217
218 /* If TYPE is objfile-associated, allocate a new type structure
219    associated with the same objfile.  If TYPE is gdbarch-associated,
220    allocate a new type structure associated with the same gdbarch.  */
221
222 struct type *
223 alloc_type_copy (const struct type *type)
224 {
225   if (TYPE_OBJFILE_OWNED (type))
226     return alloc_type (TYPE_OWNER (type).objfile);
227   else
228     return alloc_type_arch (TYPE_OWNER (type).gdbarch);
229 }
230
231 /* If TYPE is gdbarch-associated, return that architecture.
232    If TYPE is objfile-associated, return that objfile's architecture.  */
233
234 struct gdbarch *
235 get_type_arch (const struct type *type)
236 {
237   if (TYPE_OBJFILE_OWNED (type))
238     return get_objfile_arch (TYPE_OWNER (type).objfile);
239   else
240     return TYPE_OWNER (type).gdbarch;
241 }
242
243 /* See gdbtypes.h.  */
244
245 struct type *
246 get_target_type (struct type *type)
247 {
248   if (type != NULL)
249     {
250       type = TYPE_TARGET_TYPE (type);
251       if (type != NULL)
252         type = check_typedef (type);
253     }
254
255   return type;
256 }
257
258 /* Alloc a new type instance structure, fill it with some defaults,
259    and point it at OLDTYPE.  Allocate the new type instance from the
260    same place as OLDTYPE.  */
261
262 static struct type *
263 alloc_type_instance (struct type *oldtype)
264 {
265   struct type *type;
266
267   /* Allocate the structure.  */
268
269   if (! TYPE_OBJFILE_OWNED (oldtype))
270     type = XCNEW (struct type);
271   else
272     type = OBSTACK_ZALLOC (&TYPE_OBJFILE (oldtype)->objfile_obstack,
273                            struct type);
274
275   TYPE_MAIN_TYPE (type) = TYPE_MAIN_TYPE (oldtype);
276
277   TYPE_CHAIN (type) = type;     /* Chain back to itself for now.  */
278
279   return type;
280 }
281
282 /* Clear all remnants of the previous type at TYPE, in preparation for
283    replacing it with something else.  Preserve owner information.  */
284
285 static void
286 smash_type (struct type *type)
287 {
288   int objfile_owned = TYPE_OBJFILE_OWNED (type);
289   union type_owner owner = TYPE_OWNER (type);
290
291   memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
292
293   /* Restore owner information.  */
294   TYPE_OBJFILE_OWNED (type) = objfile_owned;
295   TYPE_OWNER (type) = owner;
296
297   /* For now, delete the rings.  */
298   TYPE_CHAIN (type) = type;
299
300   /* For now, leave the pointer/reference types alone.  */
301 }
302
303 /* Lookup a pointer to a type TYPE.  TYPEPTR, if nonzero, points
304    to a pointer to memory where the pointer type should be stored.
305    If *TYPEPTR is zero, update it to point to the pointer type we return.
306    We allocate new memory if needed.  */
307
308 struct type *
309 make_pointer_type (struct type *type, struct type **typeptr)
310 {
311   struct type *ntype;   /* New type */
312   struct type *chain;
313
314   ntype = TYPE_POINTER_TYPE (type);
315
316   if (ntype)
317     {
318       if (typeptr == 0)
319         return ntype;           /* Don't care about alloc, 
320                                    and have new type.  */
321       else if (*typeptr == 0)
322         {
323           *typeptr = ntype;     /* Tracking alloc, and have new type.  */
324           return ntype;
325         }
326     }
327
328   if (typeptr == 0 || *typeptr == 0)    /* We'll need to allocate one.  */
329     {
330       ntype = alloc_type_copy (type);
331       if (typeptr)
332         *typeptr = ntype;
333     }
334   else                  /* We have storage, but need to reset it.  */
335     {
336       ntype = *typeptr;
337       chain = TYPE_CHAIN (ntype);
338       smash_type (ntype);
339       TYPE_CHAIN (ntype) = chain;
340     }
341
342   TYPE_TARGET_TYPE (ntype) = type;
343   TYPE_POINTER_TYPE (type) = ntype;
344
345   /* FIXME!  Assumes the machine has only one representation for pointers!  */
346
347   TYPE_LENGTH (ntype)
348     = gdbarch_ptr_bit (get_type_arch (type)) / TARGET_CHAR_BIT;
349   TYPE_CODE (ntype) = TYPE_CODE_PTR;
350
351   /* Mark pointers as unsigned.  The target converts between pointers
352      and addresses (CORE_ADDRs) using gdbarch_pointer_to_address and
353      gdbarch_address_to_pointer.  */
354   TYPE_UNSIGNED (ntype) = 1;
355
356   /* Update the length of all the other variants of this type.  */
357   chain = TYPE_CHAIN (ntype);
358   while (chain != ntype)
359     {
360       TYPE_LENGTH (chain) = TYPE_LENGTH (ntype);
361       chain = TYPE_CHAIN (chain);
362     }
363
364   return ntype;
365 }
366
367 /* Given a type TYPE, return a type of pointers to that type.
368    May need to construct such a type if this is the first use.  */
369
370 struct type *
371 lookup_pointer_type (struct type *type)
372 {
373   return make_pointer_type (type, (struct type **) 0);
374 }
375
376 /* Lookup a C++ `reference' to a type TYPE.  TYPEPTR, if nonzero,
377    points to a pointer to memory where the reference type should be
378    stored.  If *TYPEPTR is zero, update it to point to the reference
379    type we return.  We allocate new memory if needed.  */
380
381 struct type *
382 make_reference_type (struct type *type, struct type **typeptr)
383 {
384   struct type *ntype;   /* New type */
385   struct type *chain;
386
387   ntype = TYPE_REFERENCE_TYPE (type);
388
389   if (ntype)
390     {
391       if (typeptr == 0)
392         return ntype;           /* Don't care about alloc, 
393                                    and have new type.  */
394       else if (*typeptr == 0)
395         {
396           *typeptr = ntype;     /* Tracking alloc, and have new type.  */
397           return ntype;
398         }
399     }
400
401   if (typeptr == 0 || *typeptr == 0)    /* We'll need to allocate one.  */
402     {
403       ntype = alloc_type_copy (type);
404       if (typeptr)
405         *typeptr = ntype;
406     }
407   else                  /* We have storage, but need to reset it.  */
408     {
409       ntype = *typeptr;
410       chain = TYPE_CHAIN (ntype);
411       smash_type (ntype);
412       TYPE_CHAIN (ntype) = chain;
413     }
414
415   TYPE_TARGET_TYPE (ntype) = type;
416   TYPE_REFERENCE_TYPE (type) = ntype;
417
418   /* FIXME!  Assume the machine has only one representation for
419      references, and that it matches the (only) representation for
420      pointers!  */
421
422   TYPE_LENGTH (ntype) =
423     gdbarch_ptr_bit (get_type_arch (type)) / TARGET_CHAR_BIT;
424   TYPE_CODE (ntype) = TYPE_CODE_REF;
425
426   if (!TYPE_REFERENCE_TYPE (type))      /* Remember it, if don't have one.  */
427     TYPE_REFERENCE_TYPE (type) = ntype;
428
429   /* Update the length of all the other variants of this type.  */
430   chain = TYPE_CHAIN (ntype);
431   while (chain != ntype)
432     {
433       TYPE_LENGTH (chain) = TYPE_LENGTH (ntype);
434       chain = TYPE_CHAIN (chain);
435     }
436
437   return ntype;
438 }
439
440 /* Same as above, but caller doesn't care about memory allocation
441    details.  */
442
443 struct type *
444 lookup_reference_type (struct type *type)
445 {
446   return make_reference_type (type, (struct type **) 0);
447 }
448
449 /* Lookup a function type that returns type TYPE.  TYPEPTR, if
450    nonzero, points to a pointer to memory where the function type
451    should be stored.  If *TYPEPTR is zero, update it to point to the
452    function type we return.  We allocate new memory if needed.  */
453
454 struct type *
455 make_function_type (struct type *type, struct type **typeptr)
456 {
457   struct type *ntype;   /* New type */
458
459   if (typeptr == 0 || *typeptr == 0)    /* We'll need to allocate one.  */
460     {
461       ntype = alloc_type_copy (type);
462       if (typeptr)
463         *typeptr = ntype;
464     }
465   else                  /* We have storage, but need to reset it.  */
466     {
467       ntype = *typeptr;
468       smash_type (ntype);
469     }
470
471   TYPE_TARGET_TYPE (ntype) = type;
472
473   TYPE_LENGTH (ntype) = 1;
474   TYPE_CODE (ntype) = TYPE_CODE_FUNC;
475
476   INIT_FUNC_SPECIFIC (ntype);
477
478   return ntype;
479 }
480
481 /* Given a type TYPE, return a type of functions that return that type.
482    May need to construct such a type if this is the first use.  */
483
484 struct type *
485 lookup_function_type (struct type *type)
486 {
487   return make_function_type (type, (struct type **) 0);
488 }
489
490 /* Given a type TYPE and argument types, return the appropriate
491    function type.  If the final type in PARAM_TYPES is NULL, make a
492    varargs function.  */
493
494 struct type *
495 lookup_function_type_with_arguments (struct type *type,
496                                      int nparams,
497                                      struct type **param_types)
498 {
499   struct type *fn = make_function_type (type, (struct type **) 0);
500   int i;
501
502   if (nparams > 0)
503     {
504       if (param_types[nparams - 1] == NULL)
505         {
506           --nparams;
507           TYPE_VARARGS (fn) = 1;
508         }
509       else if (TYPE_CODE (check_typedef (param_types[nparams - 1]))
510                == TYPE_CODE_VOID)
511         {
512           --nparams;
513           /* Caller should have ensured this.  */
514           gdb_assert (nparams == 0);
515           TYPE_PROTOTYPED (fn) = 1;
516         }
517     }
518
519   TYPE_NFIELDS (fn) = nparams;
520   TYPE_FIELDS (fn) = TYPE_ZALLOC (fn, nparams * sizeof (struct field));
521   for (i = 0; i < nparams; ++i)
522     TYPE_FIELD_TYPE (fn, i) = param_types[i];
523
524   return fn;
525 }
526
527 /* Identify address space identifier by name --
528    return the integer flag defined in gdbtypes.h.  */
529
530 int
531 address_space_name_to_int (struct gdbarch *gdbarch, char *space_identifier)
532 {
533   int type_flags;
534
535   /* Check for known address space delimiters.  */
536   if (!strcmp (space_identifier, "code"))
537     return TYPE_INSTANCE_FLAG_CODE_SPACE;
538   else if (!strcmp (space_identifier, "data"))
539     return TYPE_INSTANCE_FLAG_DATA_SPACE;
540   else if (gdbarch_address_class_name_to_type_flags_p (gdbarch)
541            && gdbarch_address_class_name_to_type_flags (gdbarch,
542                                                         space_identifier,
543                                                         &type_flags))
544     return type_flags;
545   else
546     error (_("Unknown address space specifier: \"%s\""), space_identifier);
547 }
548
549 /* Identify address space identifier by integer flag as defined in 
550    gdbtypes.h -- return the string version of the adress space name.  */
551
552 const char *
553 address_space_int_to_name (struct gdbarch *gdbarch, int space_flag)
554 {
555   if (space_flag & TYPE_INSTANCE_FLAG_CODE_SPACE)
556     return "code";
557   else if (space_flag & TYPE_INSTANCE_FLAG_DATA_SPACE)
558     return "data";
559   else if ((space_flag & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
560            && gdbarch_address_class_type_flags_to_name_p (gdbarch))
561     return gdbarch_address_class_type_flags_to_name (gdbarch, space_flag);
562   else
563     return NULL;
564 }
565
566 /* Create a new type with instance flags NEW_FLAGS, based on TYPE.
567
568    If STORAGE is non-NULL, create the new type instance there.
569    STORAGE must be in the same obstack as TYPE.  */
570
571 static struct type *
572 make_qualified_type (struct type *type, int new_flags,
573                      struct type *storage)
574 {
575   struct type *ntype;
576
577   ntype = type;
578   do
579     {
580       if (TYPE_INSTANCE_FLAGS (ntype) == new_flags)
581         return ntype;
582       ntype = TYPE_CHAIN (ntype);
583     }
584   while (ntype != type);
585
586   /* Create a new type instance.  */
587   if (storage == NULL)
588     ntype = alloc_type_instance (type);
589   else
590     {
591       /* If STORAGE was provided, it had better be in the same objfile
592          as TYPE.  Otherwise, we can't link it into TYPE's cv chain:
593          if one objfile is freed and the other kept, we'd have
594          dangling pointers.  */
595       gdb_assert (TYPE_OBJFILE (type) == TYPE_OBJFILE (storage));
596
597       ntype = storage;
598       TYPE_MAIN_TYPE (ntype) = TYPE_MAIN_TYPE (type);
599       TYPE_CHAIN (ntype) = ntype;
600     }
601
602   /* Pointers or references to the original type are not relevant to
603      the new type.  */
604   TYPE_POINTER_TYPE (ntype) = (struct type *) 0;
605   TYPE_REFERENCE_TYPE (ntype) = (struct type *) 0;
606
607   /* Chain the new qualified type to the old type.  */
608   TYPE_CHAIN (ntype) = TYPE_CHAIN (type);
609   TYPE_CHAIN (type) = ntype;
610
611   /* Now set the instance flags and return the new type.  */
612   TYPE_INSTANCE_FLAGS (ntype) = new_flags;
613
614   /* Set length of new type to that of the original type.  */
615   TYPE_LENGTH (ntype) = TYPE_LENGTH (type);
616
617   return ntype;
618 }
619
620 /* Make an address-space-delimited variant of a type -- a type that
621    is identical to the one supplied except that it has an address
622    space attribute attached to it (such as "code" or "data").
623
624    The space attributes "code" and "data" are for Harvard
625    architectures.  The address space attributes are for architectures
626    which have alternately sized pointers or pointers with alternate
627    representations.  */
628
629 struct type *
630 make_type_with_address_space (struct type *type, int space_flag)
631 {
632   int new_flags = ((TYPE_INSTANCE_FLAGS (type)
633                     & ~(TYPE_INSTANCE_FLAG_CODE_SPACE
634                         | TYPE_INSTANCE_FLAG_DATA_SPACE
635                         | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL))
636                    | space_flag);
637
638   return make_qualified_type (type, new_flags, NULL);
639 }
640
641 /* Make a "c-v" variant of a type -- a type that is identical to the
642    one supplied except that it may have const or volatile attributes
643    CNST is a flag for setting the const attribute
644    VOLTL is a flag for setting the volatile attribute
645    TYPE is the base type whose variant we are creating.
646
647    If TYPEPTR and *TYPEPTR are non-zero, then *TYPEPTR points to
648    storage to hold the new qualified type; *TYPEPTR and TYPE must be
649    in the same objfile.  Otherwise, allocate fresh memory for the new
650    type whereever TYPE lives.  If TYPEPTR is non-zero, set it to the
651    new type we construct.  */
652
653 struct type *
654 make_cv_type (int cnst, int voltl, 
655               struct type *type, 
656               struct type **typeptr)
657 {
658   struct type *ntype;   /* New type */
659
660   int new_flags = (TYPE_INSTANCE_FLAGS (type)
661                    & ~(TYPE_INSTANCE_FLAG_CONST 
662                        | TYPE_INSTANCE_FLAG_VOLATILE));
663
664   if (cnst)
665     new_flags |= TYPE_INSTANCE_FLAG_CONST;
666
667   if (voltl)
668     new_flags |= TYPE_INSTANCE_FLAG_VOLATILE;
669
670   if (typeptr && *typeptr != NULL)
671     {
672       /* TYPE and *TYPEPTR must be in the same objfile.  We can't have
673          a C-V variant chain that threads across objfiles: if one
674          objfile gets freed, then the other has a broken C-V chain.
675
676          This code used to try to copy over the main type from TYPE to
677          *TYPEPTR if they were in different objfiles, but that's
678          wrong, too: TYPE may have a field list or member function
679          lists, which refer to types of their own, etc. etc.  The
680          whole shebang would need to be copied over recursively; you
681          can't have inter-objfile pointers.  The only thing to do is
682          to leave stub types as stub types, and look them up afresh by
683          name each time you encounter them.  */
684       gdb_assert (TYPE_OBJFILE (*typeptr) == TYPE_OBJFILE (type));
685     }
686   
687   ntype = make_qualified_type (type, new_flags, 
688                                typeptr ? *typeptr : NULL);
689
690   if (typeptr != NULL)
691     *typeptr = ntype;
692
693   return ntype;
694 }
695
696 /* Make a 'restrict'-qualified version of TYPE.  */
697
698 struct type *
699 make_restrict_type (struct type *type)
700 {
701   return make_qualified_type (type,
702                               (TYPE_INSTANCE_FLAGS (type)
703                                | TYPE_INSTANCE_FLAG_RESTRICT),
704                               NULL);
705 }
706
707 /* Replace the contents of ntype with the type *type.  This changes the
708    contents, rather than the pointer for TYPE_MAIN_TYPE (ntype); thus
709    the changes are propogated to all types in the TYPE_CHAIN.
710
711    In order to build recursive types, it's inevitable that we'll need
712    to update types in place --- but this sort of indiscriminate
713    smashing is ugly, and needs to be replaced with something more
714    controlled.  TYPE_MAIN_TYPE is a step in this direction; it's not
715    clear if more steps are needed.  */
716
717 void
718 replace_type (struct type *ntype, struct type *type)
719 {
720   struct type *chain;
721
722   /* These two types had better be in the same objfile.  Otherwise,
723      the assignment of one type's main type structure to the other
724      will produce a type with references to objects (names; field
725      lists; etc.) allocated on an objfile other than its own.  */
726   gdb_assert (TYPE_OBJFILE (ntype) == TYPE_OBJFILE (ntype));
727
728   *TYPE_MAIN_TYPE (ntype) = *TYPE_MAIN_TYPE (type);
729
730   /* The type length is not a part of the main type.  Update it for
731      each type on the variant chain.  */
732   chain = ntype;
733   do
734     {
735       /* Assert that this element of the chain has no address-class bits
736          set in its flags.  Such type variants might have type lengths
737          which are supposed to be different from the non-address-class
738          variants.  This assertion shouldn't ever be triggered because
739          symbol readers which do construct address-class variants don't
740          call replace_type().  */
741       gdb_assert (TYPE_ADDRESS_CLASS_ALL (chain) == 0);
742
743       TYPE_LENGTH (chain) = TYPE_LENGTH (type);
744       chain = TYPE_CHAIN (chain);
745     }
746   while (ntype != chain);
747
748   /* Assert that the two types have equivalent instance qualifiers.
749      This should be true for at least all of our debug readers.  */
750   gdb_assert (TYPE_INSTANCE_FLAGS (ntype) == TYPE_INSTANCE_FLAGS (type));
751 }
752
753 /* Implement direct support for MEMBER_TYPE in GNU C++.
754    May need to construct such a type if this is the first use.
755    The TYPE is the type of the member.  The DOMAIN is the type
756    of the aggregate that the member belongs to.  */
757
758 struct type *
759 lookup_memberptr_type (struct type *type, struct type *domain)
760 {
761   struct type *mtype;
762
763   mtype = alloc_type_copy (type);
764   smash_to_memberptr_type (mtype, domain, type);
765   return mtype;
766 }
767
768 /* Return a pointer-to-method type, for a method of type TO_TYPE.  */
769
770 struct type *
771 lookup_methodptr_type (struct type *to_type)
772 {
773   struct type *mtype;
774
775   mtype = alloc_type_copy (to_type);
776   smash_to_methodptr_type (mtype, to_type);
777   return mtype;
778 }
779
780 /* Allocate a stub method whose return type is TYPE.  This apparently
781    happens for speed of symbol reading, since parsing out the
782    arguments to the method is cpu-intensive, the way we are doing it.
783    So, we will fill in arguments later.  This always returns a fresh
784    type.  */
785
786 struct type *
787 allocate_stub_method (struct type *type)
788 {
789   struct type *mtype;
790
791   mtype = alloc_type_copy (type);
792   TYPE_CODE (mtype) = TYPE_CODE_METHOD;
793   TYPE_LENGTH (mtype) = 1;
794   TYPE_STUB (mtype) = 1;
795   TYPE_TARGET_TYPE (mtype) = type;
796   /*  _DOMAIN_TYPE (mtype) = unknown yet */
797   return mtype;
798 }
799
800 /* Create a range type with a dynamic range from LOW_BOUND to
801    HIGH_BOUND, inclusive.  See create_range_type for further details. */
802
803 struct type *
804 create_range_type (struct type *result_type, struct type *index_type,
805                    const struct dynamic_prop *low_bound,
806                    const struct dynamic_prop *high_bound)
807 {
808   if (result_type == NULL)
809     result_type = alloc_type_copy (index_type);
810   TYPE_CODE (result_type) = TYPE_CODE_RANGE;
811   TYPE_TARGET_TYPE (result_type) = index_type;
812   if (TYPE_STUB (index_type))
813     TYPE_TARGET_STUB (result_type) = 1;
814   else
815     TYPE_LENGTH (result_type) = TYPE_LENGTH (check_typedef (index_type));
816
817   TYPE_RANGE_DATA (result_type) = (struct range_bounds *)
818     TYPE_ZALLOC (result_type, sizeof (struct range_bounds));
819   TYPE_RANGE_DATA (result_type)->low = *low_bound;
820   TYPE_RANGE_DATA (result_type)->high = *high_bound;
821
822   if (low_bound->kind == PROP_CONST && low_bound->data.const_val >= 0)
823     TYPE_UNSIGNED (result_type) = 1;
824
825   return result_type;
826 }
827
828 /* Create a range type using either a blank type supplied in
829    RESULT_TYPE, or creating a new type, inheriting the objfile from
830    INDEX_TYPE.
831
832    Indices will be of type INDEX_TYPE, and will range from LOW_BOUND
833    to HIGH_BOUND, inclusive.
834
835    FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
836    sure it is TYPE_CODE_UNDEF before we bash it into a range type?  */
837
838 struct type *
839 create_static_range_type (struct type *result_type, struct type *index_type,
840                           LONGEST low_bound, LONGEST high_bound)
841 {
842   struct dynamic_prop low, high;
843
844   low.kind = PROP_CONST;
845   low.data.const_val = low_bound;
846
847   high.kind = PROP_CONST;
848   high.data.const_val = high_bound;
849
850   result_type = create_range_type (result_type, index_type, &low, &high);
851
852   return result_type;
853 }
854
855 /* Predicate tests whether BOUNDS are static.  Returns 1 if all bounds values
856    are static, otherwise returns 0.  */
857
858 static int
859 has_static_range (const struct range_bounds *bounds)
860 {
861   return (bounds->low.kind == PROP_CONST
862           && bounds->high.kind == PROP_CONST);
863 }
864
865
866 /* Set *LOWP and *HIGHP to the lower and upper bounds of discrete type
867    TYPE.  Return 1 if type is a range type, 0 if it is discrete (and
868    bounds will fit in LONGEST), or -1 otherwise.  */
869
870 int
871 get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp)
872 {
873   CHECK_TYPEDEF (type);
874   switch (TYPE_CODE (type))
875     {
876     case TYPE_CODE_RANGE:
877       *lowp = TYPE_LOW_BOUND (type);
878       *highp = TYPE_HIGH_BOUND (type);
879       return 1;
880     case TYPE_CODE_ENUM:
881       if (TYPE_NFIELDS (type) > 0)
882         {
883           /* The enums may not be sorted by value, so search all
884              entries.  */
885           int i;
886
887           *lowp = *highp = TYPE_FIELD_ENUMVAL (type, 0);
888           for (i = 0; i < TYPE_NFIELDS (type); i++)
889             {
890               if (TYPE_FIELD_ENUMVAL (type, i) < *lowp)
891                 *lowp = TYPE_FIELD_ENUMVAL (type, i);
892               if (TYPE_FIELD_ENUMVAL (type, i) > *highp)
893                 *highp = TYPE_FIELD_ENUMVAL (type, i);
894             }
895
896           /* Set unsigned indicator if warranted.  */
897           if (*lowp >= 0)
898             {
899               TYPE_UNSIGNED (type) = 1;
900             }
901         }
902       else
903         {
904           *lowp = 0;
905           *highp = -1;
906         }
907       return 0;
908     case TYPE_CODE_BOOL:
909       *lowp = 0;
910       *highp = 1;
911       return 0;
912     case TYPE_CODE_INT:
913       if (TYPE_LENGTH (type) > sizeof (LONGEST))        /* Too big */
914         return -1;
915       if (!TYPE_UNSIGNED (type))
916         {
917           *lowp = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
918           *highp = -*lowp - 1;
919           return 0;
920         }
921       /* ... fall through for unsigned ints ...  */
922     case TYPE_CODE_CHAR:
923       *lowp = 0;
924       /* This round-about calculation is to avoid shifting by
925          TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
926          if TYPE_LENGTH (type) == sizeof (LONGEST).  */
927       *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
928       *highp = (*highp - 1) | *highp;
929       return 0;
930     default:
931       return -1;
932     }
933 }
934
935 /* Assuming TYPE is a simple, non-empty array type, compute its upper
936    and lower bound.  Save the low bound into LOW_BOUND if not NULL.
937    Save the high bound into HIGH_BOUND if not NULL.
938
939    Return 1 if the operation was successful.  Return zero otherwise,
940    in which case the values of LOW_BOUND and HIGH_BOUNDS are unmodified.
941
942    We now simply use get_discrete_bounds call to get the values
943    of the low and high bounds.
944    get_discrete_bounds can return three values:
945    1, meaning that index is a range,
946    0, meaning that index is a discrete type,
947    or -1 for failure.  */
948
949 int
950 get_array_bounds (struct type *type, LONGEST *low_bound, LONGEST *high_bound)
951 {
952   struct type *index = TYPE_INDEX_TYPE (type);
953   LONGEST low = 0;
954   LONGEST high = 0;
955   int res;
956
957   if (index == NULL)
958     return 0;
959
960   res = get_discrete_bounds (index, &low, &high);
961   if (res == -1)
962     return 0;
963
964   /* Check if the array bounds are undefined.  */
965   if (res == 1
966       && ((low_bound && TYPE_ARRAY_LOWER_BOUND_IS_UNDEFINED (type))
967           || (high_bound && TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED (type))))
968     return 0;
969
970   if (low_bound)
971     *low_bound = low;
972
973   if (high_bound)
974     *high_bound = high;
975
976   return 1;
977 }
978
979 /* Create an array type using either a blank type supplied in
980    RESULT_TYPE, or creating a new type, inheriting the objfile from
981    RANGE_TYPE.
982
983    Elements will be of type ELEMENT_TYPE, the indices will be of type
984    RANGE_TYPE.
985
986    If BIT_STRIDE is not zero, build a packed array type whose element
987    size is BIT_STRIDE.  Otherwise, ignore this parameter.
988
989    FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
990    sure it is TYPE_CODE_UNDEF before we bash it into an array
991    type?  */
992
993 struct type *
994 create_array_type_with_stride (struct type *result_type,
995                                struct type *element_type,
996                                struct type *range_type,
997                                unsigned int bit_stride)
998 {
999   if (result_type == NULL)
1000     result_type = alloc_type_copy (range_type);
1001
1002   TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
1003   TYPE_TARGET_TYPE (result_type) = element_type;
1004   if (has_static_range (TYPE_RANGE_DATA (range_type)))
1005     {
1006       LONGEST low_bound, high_bound;
1007
1008       if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
1009         low_bound = high_bound = 0;
1010       CHECK_TYPEDEF (element_type);
1011       /* Be careful when setting the array length.  Ada arrays can be
1012          empty arrays with the high_bound being smaller than the low_bound.
1013          In such cases, the array length should be zero.  */
1014       if (high_bound < low_bound)
1015         TYPE_LENGTH (result_type) = 0;
1016       else if (bit_stride > 0)
1017         TYPE_LENGTH (result_type) =
1018           (bit_stride * (high_bound - low_bound + 1) + 7) / 8;
1019       else
1020         TYPE_LENGTH (result_type) =
1021           TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
1022     }
1023   else
1024     {
1025       /* This type is dynamic and its length needs to be computed
1026          on demand.  In the meantime, avoid leaving the TYPE_LENGTH
1027          undefined by setting it to zero.  Although we are not expected
1028          to trust TYPE_LENGTH in this case, setting the size to zero
1029          allows us to avoid allocating objects of random sizes in case
1030          we accidently do.  */
1031       TYPE_LENGTH (result_type) = 0;
1032     }
1033
1034   TYPE_NFIELDS (result_type) = 1;
1035   TYPE_FIELDS (result_type) =
1036     (struct field *) TYPE_ZALLOC (result_type, sizeof (struct field));
1037   TYPE_INDEX_TYPE (result_type) = range_type;
1038   TYPE_VPTR_FIELDNO (result_type) = -1;
1039   if (bit_stride > 0)
1040     TYPE_FIELD_BITSIZE (result_type, 0) = bit_stride;
1041
1042   /* TYPE_FLAG_TARGET_STUB will take care of zero length arrays.  */
1043   if (TYPE_LENGTH (result_type) == 0)
1044     TYPE_TARGET_STUB (result_type) = 1;
1045
1046   return result_type;
1047 }
1048
1049 /* Same as create_array_type_with_stride but with no bit_stride
1050    (BIT_STRIDE = 0), thus building an unpacked array.  */
1051
1052 struct type *
1053 create_array_type (struct type *result_type,
1054                    struct type *element_type,
1055                    struct type *range_type)
1056 {
1057   return create_array_type_with_stride (result_type, element_type,
1058                                         range_type, 0);
1059 }
1060
1061 struct type *
1062 lookup_array_range_type (struct type *element_type,
1063                          LONGEST low_bound, LONGEST high_bound)
1064 {
1065   struct gdbarch *gdbarch = get_type_arch (element_type);
1066   struct type *index_type = builtin_type (gdbarch)->builtin_int;
1067   struct type *range_type
1068     = create_static_range_type (NULL, index_type, low_bound, high_bound);
1069
1070   return create_array_type (NULL, element_type, range_type);
1071 }
1072
1073 /* Create a string type using either a blank type supplied in
1074    RESULT_TYPE, or creating a new type.  String types are similar
1075    enough to array of char types that we can use create_array_type to
1076    build the basic type and then bash it into a string type.
1077
1078    For fixed length strings, the range type contains 0 as the lower
1079    bound and the length of the string minus one as the upper bound.
1080
1081    FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
1082    sure it is TYPE_CODE_UNDEF before we bash it into a string
1083    type?  */
1084
1085 struct type *
1086 create_string_type (struct type *result_type,
1087                     struct type *string_char_type,
1088                     struct type *range_type)
1089 {
1090   result_type = create_array_type (result_type,
1091                                    string_char_type,
1092                                    range_type);
1093   TYPE_CODE (result_type) = TYPE_CODE_STRING;
1094   return result_type;
1095 }
1096
1097 struct type *
1098 lookup_string_range_type (struct type *string_char_type,
1099                           LONGEST low_bound, LONGEST high_bound)
1100 {
1101   struct type *result_type;
1102
1103   result_type = lookup_array_range_type (string_char_type,
1104                                          low_bound, high_bound);
1105   TYPE_CODE (result_type) = TYPE_CODE_STRING;
1106   return result_type;
1107 }
1108
1109 struct type *
1110 create_set_type (struct type *result_type, struct type *domain_type)
1111 {
1112   if (result_type == NULL)
1113     result_type = alloc_type_copy (domain_type);
1114
1115   TYPE_CODE (result_type) = TYPE_CODE_SET;
1116   TYPE_NFIELDS (result_type) = 1;
1117   TYPE_FIELDS (result_type) = TYPE_ZALLOC (result_type, sizeof (struct field));
1118
1119   if (!TYPE_STUB (domain_type))
1120     {
1121       LONGEST low_bound, high_bound, bit_length;
1122
1123       if (get_discrete_bounds (domain_type, &low_bound, &high_bound) < 0)
1124         low_bound = high_bound = 0;
1125       bit_length = high_bound - low_bound + 1;
1126       TYPE_LENGTH (result_type)
1127         = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
1128       if (low_bound >= 0)
1129         TYPE_UNSIGNED (result_type) = 1;
1130     }
1131   TYPE_FIELD_TYPE (result_type, 0) = domain_type;
1132
1133   return result_type;
1134 }
1135
1136 /* Convert ARRAY_TYPE to a vector type.  This may modify ARRAY_TYPE
1137    and any array types nested inside it.  */
1138
1139 void
1140 make_vector_type (struct type *array_type)
1141 {
1142   struct type *inner_array, *elt_type;
1143   int flags;
1144
1145   /* Find the innermost array type, in case the array is
1146      multi-dimensional.  */
1147   inner_array = array_type;
1148   while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
1149     inner_array = TYPE_TARGET_TYPE (inner_array);
1150
1151   elt_type = TYPE_TARGET_TYPE (inner_array);
1152   if (TYPE_CODE (elt_type) == TYPE_CODE_INT)
1153     {
1154       flags = TYPE_INSTANCE_FLAGS (elt_type) | TYPE_INSTANCE_FLAG_NOTTEXT;
1155       elt_type = make_qualified_type (elt_type, flags, NULL);
1156       TYPE_TARGET_TYPE (inner_array) = elt_type;
1157     }
1158
1159   TYPE_VECTOR (array_type) = 1;
1160 }
1161
1162 struct type *
1163 init_vector_type (struct type *elt_type, int n)
1164 {
1165   struct type *array_type;
1166
1167   array_type = lookup_array_range_type (elt_type, 0, n - 1);
1168   make_vector_type (array_type);
1169   return array_type;
1170 }
1171
1172 /* Smash TYPE to be a type of pointers to members of DOMAIN with type
1173    TO_TYPE.  A member pointer is a wierd thing -- it amounts to a
1174    typed offset into a struct, e.g. "an int at offset 8".  A MEMBER
1175    TYPE doesn't include the offset (that's the value of the MEMBER
1176    itself), but does include the structure type into which it points
1177    (for some reason).
1178
1179    When "smashing" the type, we preserve the objfile that the old type
1180    pointed to, since we aren't changing where the type is actually
1181    allocated.  */
1182
1183 void
1184 smash_to_memberptr_type (struct type *type, struct type *domain,
1185                          struct type *to_type)
1186 {
1187   smash_type (type);
1188   TYPE_TARGET_TYPE (type) = to_type;
1189   TYPE_DOMAIN_TYPE (type) = domain;
1190   /* Assume that a data member pointer is the same size as a normal
1191      pointer.  */
1192   TYPE_LENGTH (type)
1193     = gdbarch_ptr_bit (get_type_arch (to_type)) / TARGET_CHAR_BIT;
1194   TYPE_CODE (type) = TYPE_CODE_MEMBERPTR;
1195 }
1196
1197 /* Smash TYPE to be a type of pointer to methods type TO_TYPE.
1198
1199    When "smashing" the type, we preserve the objfile that the old type
1200    pointed to, since we aren't changing where the type is actually
1201    allocated.  */
1202
1203 void
1204 smash_to_methodptr_type (struct type *type, struct type *to_type)
1205 {
1206   smash_type (type);
1207   TYPE_TARGET_TYPE (type) = to_type;
1208   TYPE_DOMAIN_TYPE (type) = TYPE_DOMAIN_TYPE (to_type);
1209   TYPE_LENGTH (type) = cplus_method_ptr_size (to_type);
1210   TYPE_CODE (type) = TYPE_CODE_METHODPTR;
1211 }
1212
1213 /* Smash TYPE to be a type of method of DOMAIN with type TO_TYPE.
1214    METHOD just means `function that gets an extra "this" argument'.
1215
1216    When "smashing" the type, we preserve the objfile that the old type
1217    pointed to, since we aren't changing where the type is actually
1218    allocated.  */
1219
1220 void
1221 smash_to_method_type (struct type *type, struct type *domain,
1222                       struct type *to_type, struct field *args,
1223                       int nargs, int varargs)
1224 {
1225   smash_type (type);
1226   TYPE_TARGET_TYPE (type) = to_type;
1227   TYPE_DOMAIN_TYPE (type) = domain;
1228   TYPE_FIELDS (type) = args;
1229   TYPE_NFIELDS (type) = nargs;
1230   if (varargs)
1231     TYPE_VARARGS (type) = 1;
1232   TYPE_LENGTH (type) = 1;       /* In practice, this is never needed.  */
1233   TYPE_CODE (type) = TYPE_CODE_METHOD;
1234 }
1235
1236 /* Return a typename for a struct/union/enum type without "struct ",
1237    "union ", or "enum ".  If the type has a NULL name, return NULL.  */
1238
1239 const char *
1240 type_name_no_tag (const struct type *type)
1241 {
1242   if (TYPE_TAG_NAME (type) != NULL)
1243     return TYPE_TAG_NAME (type);
1244
1245   /* Is there code which expects this to return the name if there is
1246      no tag name?  My guess is that this is mainly used for C++ in
1247      cases where the two will always be the same.  */
1248   return TYPE_NAME (type);
1249 }
1250
1251 /* A wrapper of type_name_no_tag which calls error if the type is anonymous.
1252    Since GCC PR debug/47510 DWARF provides associated information to detect the
1253    anonymous class linkage name from its typedef.
1254
1255    Parameter TYPE should not yet have CHECK_TYPEDEF applied, this function will
1256    apply it itself.  */
1257
1258 const char *
1259 type_name_no_tag_or_error (struct type *type)
1260 {
1261   struct type *saved_type = type;
1262   const char *name;
1263   struct objfile *objfile;
1264
1265   CHECK_TYPEDEF (type);
1266
1267   name = type_name_no_tag (type);
1268   if (name != NULL)
1269     return name;
1270
1271   name = type_name_no_tag (saved_type);
1272   objfile = TYPE_OBJFILE (saved_type);
1273   error (_("Invalid anonymous type %s [in module %s], GCC PR debug/47510 bug?"),
1274          name ? name : "<anonymous>",
1275          objfile ? objfile_name (objfile) : "<arch>");
1276 }
1277
1278 /* Lookup a typedef or primitive type named NAME, visible in lexical
1279    block BLOCK.  If NOERR is nonzero, return zero if NAME is not
1280    suitably defined.  */
1281
1282 struct type *
1283 lookup_typename (const struct language_defn *language,
1284                  struct gdbarch *gdbarch, const char *name,
1285                  const struct block *block, int noerr)
1286 {
1287   struct symbol *sym;
1288   struct type *type;
1289
1290   sym = lookup_symbol (name, block, VAR_DOMAIN, 0);
1291   if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
1292     return SYMBOL_TYPE (sym);
1293
1294   type = language_lookup_primitive_type_by_name (language, gdbarch, name);
1295   if (type)
1296     return type;
1297
1298   if (noerr)
1299     return NULL;
1300   error (_("No type named %s."), name);
1301 }
1302
1303 struct type *
1304 lookup_unsigned_typename (const struct language_defn *language,
1305                           struct gdbarch *gdbarch, const char *name)
1306 {
1307   char *uns = alloca (strlen (name) + 10);
1308
1309   strcpy (uns, "unsigned ");
1310   strcpy (uns + 9, name);
1311   return lookup_typename (language, gdbarch, uns, (struct block *) NULL, 0);
1312 }
1313
1314 struct type *
1315 lookup_signed_typename (const struct language_defn *language,
1316                         struct gdbarch *gdbarch, const char *name)
1317 {
1318   struct type *t;
1319   char *uns = alloca (strlen (name) + 8);
1320
1321   strcpy (uns, "signed ");
1322   strcpy (uns + 7, name);
1323   t = lookup_typename (language, gdbarch, uns, (struct block *) NULL, 1);
1324   /* If we don't find "signed FOO" just try again with plain "FOO".  */
1325   if (t != NULL)
1326     return t;
1327   return lookup_typename (language, gdbarch, name, (struct block *) NULL, 0);
1328 }
1329
1330 /* Lookup a structure type named "struct NAME",
1331    visible in lexical block BLOCK.  */
1332
1333 struct type *
1334 lookup_struct (const char *name, const struct block *block)
1335 {
1336   struct symbol *sym;
1337
1338   sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0);
1339
1340   if (sym == NULL)
1341     {
1342       error (_("No struct type named %s."), name);
1343     }
1344   if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
1345     {
1346       error (_("This context has class, union or enum %s, not a struct."),
1347              name);
1348     }
1349   return (SYMBOL_TYPE (sym));
1350 }
1351
1352 /* Lookup a union type named "union NAME",
1353    visible in lexical block BLOCK.  */
1354
1355 struct type *
1356 lookup_union (const char *name, const struct block *block)
1357 {
1358   struct symbol *sym;
1359   struct type *t;
1360
1361   sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0);
1362
1363   if (sym == NULL)
1364     error (_("No union type named %s."), name);
1365
1366   t = SYMBOL_TYPE (sym);
1367
1368   if (TYPE_CODE (t) == TYPE_CODE_UNION)
1369     return t;
1370
1371   /* If we get here, it's not a union.  */
1372   error (_("This context has class, struct or enum %s, not a union."), 
1373          name);
1374 }
1375
1376 /* Lookup an enum type named "enum NAME",
1377    visible in lexical block BLOCK.  */
1378
1379 struct type *
1380 lookup_enum (const char *name, const struct block *block)
1381 {
1382   struct symbol *sym;
1383
1384   sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0);
1385   if (sym == NULL)
1386     {
1387       error (_("No enum type named %s."), name);
1388     }
1389   if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_ENUM)
1390     {
1391       error (_("This context has class, struct or union %s, not an enum."), 
1392              name);
1393     }
1394   return (SYMBOL_TYPE (sym));
1395 }
1396
1397 /* Lookup a template type named "template NAME<TYPE>",
1398    visible in lexical block BLOCK.  */
1399
1400 struct type *
1401 lookup_template_type (char *name, struct type *type, 
1402                       const struct block *block)
1403 {
1404   struct symbol *sym;
1405   char *nam = (char *) 
1406     alloca (strlen (name) + strlen (TYPE_NAME (type)) + 4);
1407
1408   strcpy (nam, name);
1409   strcat (nam, "<");
1410   strcat (nam, TYPE_NAME (type));
1411   strcat (nam, " >");   /* FIXME, extra space still introduced in gcc?  */
1412
1413   sym = lookup_symbol (nam, block, VAR_DOMAIN, 0);
1414
1415   if (sym == NULL)
1416     {
1417       error (_("No template type named %s."), name);
1418     }
1419   if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
1420     {
1421       error (_("This context has class, union or enum %s, not a struct."),
1422              name);
1423     }
1424   return (SYMBOL_TYPE (sym));
1425 }
1426
1427 /* Given a type TYPE, lookup the type of the component of type named
1428    NAME.
1429
1430    TYPE can be either a struct or union, or a pointer or reference to
1431    a struct or union.  If it is a pointer or reference, its target
1432    type is automatically used.  Thus '.' and '->' are interchangable,
1433    as specified for the definitions of the expression element types
1434    STRUCTOP_STRUCT and STRUCTOP_PTR.
1435
1436    If NOERR is nonzero, return zero if NAME is not suitably defined.
1437    If NAME is the name of a baseclass type, return that type.  */
1438
1439 struct type *
1440 lookup_struct_elt_type (struct type *type, const char *name, int noerr)
1441 {
1442   int i;
1443   char *typename;
1444
1445   for (;;)
1446     {
1447       CHECK_TYPEDEF (type);
1448       if (TYPE_CODE (type) != TYPE_CODE_PTR
1449           && TYPE_CODE (type) != TYPE_CODE_REF)
1450         break;
1451       type = TYPE_TARGET_TYPE (type);
1452     }
1453
1454   if (TYPE_CODE (type) != TYPE_CODE_STRUCT 
1455       && TYPE_CODE (type) != TYPE_CODE_UNION)
1456     {
1457       typename = type_to_string (type);
1458       make_cleanup (xfree, typename);
1459       error (_("Type %s is not a structure or union type."), typename);
1460     }
1461
1462 #if 0
1463   /* FIXME: This change put in by Michael seems incorrect for the case
1464      where the structure tag name is the same as the member name.
1465      I.e. when doing "ptype bell->bar" for "struct foo { int bar; int
1466      foo; } bell;" Disabled by fnf.  */
1467   {
1468     char *typename;
1469
1470     typename = type_name_no_tag (type);
1471     if (typename != NULL && strcmp (typename, name) == 0)
1472       return type;
1473   }
1474 #endif
1475
1476   for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1477     {
1478       const char *t_field_name = TYPE_FIELD_NAME (type, i);
1479
1480       if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
1481         {
1482           return TYPE_FIELD_TYPE (type, i);
1483         }
1484      else if (!t_field_name || *t_field_name == '\0')
1485         {
1486           struct type *subtype 
1487             = lookup_struct_elt_type (TYPE_FIELD_TYPE (type, i), name, 1);
1488
1489           if (subtype != NULL)
1490             return subtype;
1491         }
1492     }
1493
1494   /* OK, it's not in this class.  Recursively check the baseclasses.  */
1495   for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1496     {
1497       struct type *t;
1498
1499       t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, 1);
1500       if (t != NULL)
1501         {
1502           return t;
1503         }
1504     }
1505
1506   if (noerr)
1507     {
1508       return NULL;
1509     }
1510
1511   typename = type_to_string (type);
1512   make_cleanup (xfree, typename);
1513   error (_("Type %s has no component named %s."), typename, name);
1514 }
1515
1516 /* Store in *MAX the largest number representable by unsigned integer type
1517    TYPE.  */
1518
1519 void
1520 get_unsigned_type_max (struct type *type, ULONGEST *max)
1521 {
1522   unsigned int n;
1523
1524   CHECK_TYPEDEF (type);
1525   gdb_assert (TYPE_CODE (type) == TYPE_CODE_INT && TYPE_UNSIGNED (type));
1526   gdb_assert (TYPE_LENGTH (type) <= sizeof (ULONGEST));
1527
1528   /* Written this way to avoid overflow.  */
1529   n = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
1530   *max = ((((ULONGEST) 1 << (n - 1)) - 1) << 1) | 1;
1531 }
1532
1533 /* Store in *MIN, *MAX the smallest and largest numbers representable by
1534    signed integer type TYPE.  */
1535
1536 void
1537 get_signed_type_minmax (struct type *type, LONGEST *min, LONGEST *max)
1538 {
1539   unsigned int n;
1540
1541   CHECK_TYPEDEF (type);
1542   gdb_assert (TYPE_CODE (type) == TYPE_CODE_INT && !TYPE_UNSIGNED (type));
1543   gdb_assert (TYPE_LENGTH (type) <= sizeof (LONGEST));
1544
1545   n = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
1546   *min = -((ULONGEST) 1 << (n - 1));
1547   *max = ((ULONGEST) 1 << (n - 1)) - 1;
1548 }
1549
1550 /* Lookup the vptr basetype/fieldno values for TYPE.
1551    If found store vptr_basetype in *BASETYPEP if non-NULL, and return
1552    vptr_fieldno.  Also, if found and basetype is from the same objfile,
1553    cache the results.
1554    If not found, return -1 and ignore BASETYPEP.
1555    Callers should be aware that in some cases (for example,
1556    the type or one of its baseclasses is a stub type and we are
1557    debugging a .o file, or the compiler uses DWARF-2 and is not GCC),
1558    this function will not be able to find the
1559    virtual function table pointer, and vptr_fieldno will remain -1 and
1560    vptr_basetype will remain NULL or incomplete.  */
1561
1562 int
1563 get_vptr_fieldno (struct type *type, struct type **basetypep)
1564 {
1565   CHECK_TYPEDEF (type);
1566
1567   if (TYPE_VPTR_FIELDNO (type) < 0)
1568     {
1569       int i;
1570
1571       /* We must start at zero in case the first (and only) baseclass
1572          is virtual (and hence we cannot share the table pointer).  */
1573       for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
1574         {
1575           struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
1576           int fieldno;
1577           struct type *basetype;
1578
1579           fieldno = get_vptr_fieldno (baseclass, &basetype);
1580           if (fieldno >= 0)
1581             {
1582               /* If the type comes from a different objfile we can't cache
1583                  it, it may have a different lifetime.  PR 2384 */
1584               if (TYPE_OBJFILE (type) == TYPE_OBJFILE (basetype))
1585                 {
1586                   TYPE_VPTR_FIELDNO (type) = fieldno;
1587                   TYPE_VPTR_BASETYPE (type) = basetype;
1588                 }
1589               if (basetypep)
1590                 *basetypep = basetype;
1591               return fieldno;
1592             }
1593         }
1594
1595       /* Not found.  */
1596       return -1;
1597     }
1598   else
1599     {
1600       if (basetypep)
1601         *basetypep = TYPE_VPTR_BASETYPE (type);
1602       return TYPE_VPTR_FIELDNO (type);
1603     }
1604 }
1605
1606 static void
1607 stub_noname_complaint (void)
1608 {
1609   complaint (&symfile_complaints, _("stub type has NULL name"));
1610 }
1611
1612 /* Worker for is_dynamic_type.  */
1613
1614 static int
1615 is_dynamic_type_internal (struct type *type, int top_level)
1616 {
1617   type = check_typedef (type);
1618
1619   /* We only want to recognize references at the outermost level.  */
1620   if (top_level && TYPE_CODE (type) == TYPE_CODE_REF)
1621     type = check_typedef (TYPE_TARGET_TYPE (type));
1622
1623   /* Types that have a dynamic TYPE_DATA_LOCATION are considered
1624      dynamic, even if the type itself is statically defined.
1625      From a user's point of view, this may appear counter-intuitive;
1626      but it makes sense in this context, because the point is to determine
1627      whether any part of the type needs to be resolved before it can
1628      be exploited.  */
1629   if (TYPE_DATA_LOCATION (type) != NULL
1630       && (TYPE_DATA_LOCATION_KIND (type) == PROP_LOCEXPR
1631           || TYPE_DATA_LOCATION_KIND (type) == PROP_LOCLIST))
1632     return 1;
1633
1634   switch (TYPE_CODE (type))
1635     {
1636     case TYPE_CODE_RANGE:
1637       return !has_static_range (TYPE_RANGE_DATA (type));
1638
1639     case TYPE_CODE_ARRAY:
1640       {
1641         gdb_assert (TYPE_NFIELDS (type) == 1);
1642
1643         /* The array is dynamic if either the bounds are dynamic,
1644            or the elements it contains have a dynamic contents.  */
1645         if (is_dynamic_type_internal (TYPE_INDEX_TYPE (type), 0))
1646           return 1;
1647         return is_dynamic_type_internal (TYPE_TARGET_TYPE (type), 0);
1648       }
1649
1650     case TYPE_CODE_STRUCT:
1651     case TYPE_CODE_UNION:
1652       {
1653         int i;
1654
1655         for (i = 0; i < TYPE_NFIELDS (type); ++i)
1656           if (!field_is_static (&TYPE_FIELD (type, i))
1657               && is_dynamic_type_internal (TYPE_FIELD_TYPE (type, i), 0))
1658             return 1;
1659       }
1660       break;
1661     }
1662
1663   return 0;
1664 }
1665
1666 /* See gdbtypes.h.  */
1667
1668 int
1669 is_dynamic_type (struct type *type)
1670 {
1671   return is_dynamic_type_internal (type, 1);
1672 }
1673
1674 static struct type *resolve_dynamic_type_internal (struct type *type,
1675                                                    CORE_ADDR addr,
1676                                                    int top_level);
1677
1678 /* Given a dynamic range type (dyn_range_type) and address,
1679    return a static version of that type.  */
1680
1681 static struct type *
1682 resolve_dynamic_range (struct type *dyn_range_type, CORE_ADDR addr)
1683 {
1684   CORE_ADDR value;
1685   struct type *static_range_type;
1686   const struct dynamic_prop *prop;
1687   const struct dwarf2_locexpr_baton *baton;
1688   struct dynamic_prop low_bound, high_bound;
1689
1690   gdb_assert (TYPE_CODE (dyn_range_type) == TYPE_CODE_RANGE);
1691
1692   prop = &TYPE_RANGE_DATA (dyn_range_type)->low;
1693   if (dwarf2_evaluate_property (prop, addr, &value))
1694     {
1695       low_bound.kind = PROP_CONST;
1696       low_bound.data.const_val = value;
1697     }
1698   else
1699     {
1700       low_bound.kind = PROP_UNDEFINED;
1701       low_bound.data.const_val = 0;
1702     }
1703
1704   prop = &TYPE_RANGE_DATA (dyn_range_type)->high;
1705   if (dwarf2_evaluate_property (prop, addr, &value))
1706     {
1707       high_bound.kind = PROP_CONST;
1708       high_bound.data.const_val = value;
1709
1710       if (TYPE_RANGE_DATA (dyn_range_type)->flag_upper_bound_is_count)
1711         high_bound.data.const_val
1712           = low_bound.data.const_val + high_bound.data.const_val - 1;
1713     }
1714   else
1715     {
1716       high_bound.kind = PROP_UNDEFINED;
1717       high_bound.data.const_val = 0;
1718     }
1719
1720   static_range_type = create_range_type (copy_type (dyn_range_type),
1721                                          TYPE_TARGET_TYPE (dyn_range_type),
1722                                          &low_bound, &high_bound);
1723   TYPE_RANGE_DATA (static_range_type)->flag_bound_evaluated = 1;
1724   return static_range_type;
1725 }
1726
1727 /* Resolves dynamic bound values of an array type TYPE to static ones.
1728    ADDRESS might be needed to resolve the subrange bounds, it is the location
1729    of the associated array.  */
1730
1731 static struct type *
1732 resolve_dynamic_array (struct type *type, CORE_ADDR addr)
1733 {
1734   CORE_ADDR value;
1735   struct type *elt_type;
1736   struct type *range_type;
1737   struct type *ary_dim;
1738
1739   gdb_assert (TYPE_CODE (type) == TYPE_CODE_ARRAY);
1740
1741   elt_type = type;
1742   range_type = check_typedef (TYPE_INDEX_TYPE (elt_type));
1743   range_type = resolve_dynamic_range (range_type, addr);
1744
1745   ary_dim = check_typedef (TYPE_TARGET_TYPE (elt_type));
1746
1747   if (ary_dim != NULL && TYPE_CODE (ary_dim) == TYPE_CODE_ARRAY)
1748     elt_type = resolve_dynamic_array (TYPE_TARGET_TYPE (type), addr);
1749   else
1750     elt_type = TYPE_TARGET_TYPE (type);
1751
1752   return create_array_type (copy_type (type),
1753                             elt_type,
1754                             range_type);
1755 }
1756
1757 /* Resolve dynamic bounds of members of the union TYPE to static
1758    bounds.  */
1759
1760 static struct type *
1761 resolve_dynamic_union (struct type *type, CORE_ADDR addr)
1762 {
1763   struct type *resolved_type;
1764   int i;
1765   unsigned int max_len = 0;
1766
1767   gdb_assert (TYPE_CODE (type) == TYPE_CODE_UNION);
1768
1769   resolved_type = copy_type (type);
1770   TYPE_FIELDS (resolved_type)
1771     = TYPE_ALLOC (resolved_type,
1772                   TYPE_NFIELDS (resolved_type) * sizeof (struct field));
1773   memcpy (TYPE_FIELDS (resolved_type),
1774           TYPE_FIELDS (type),
1775           TYPE_NFIELDS (resolved_type) * sizeof (struct field));
1776   for (i = 0; i < TYPE_NFIELDS (resolved_type); ++i)
1777     {
1778       struct type *t;
1779
1780       if (field_is_static (&TYPE_FIELD (type, i)))
1781         continue;
1782
1783       t = resolve_dynamic_type_internal (TYPE_FIELD_TYPE (resolved_type, i),
1784                                          addr, 0);
1785       TYPE_FIELD_TYPE (resolved_type, i) = t;
1786       if (TYPE_LENGTH (t) > max_len)
1787         max_len = TYPE_LENGTH (t);
1788     }
1789
1790   TYPE_LENGTH (resolved_type) = max_len;
1791   return resolved_type;
1792 }
1793
1794 /* Resolve dynamic bounds of members of the struct TYPE to static
1795    bounds.  */
1796
1797 static struct type *
1798 resolve_dynamic_struct (struct type *type, CORE_ADDR addr)
1799 {
1800   struct type *resolved_type;
1801   int i;
1802   unsigned resolved_type_bit_length = 0;
1803
1804   gdb_assert (TYPE_CODE (type) == TYPE_CODE_STRUCT);
1805   gdb_assert (TYPE_NFIELDS (type) > 0);
1806
1807   resolved_type = copy_type (type);
1808   TYPE_FIELDS (resolved_type)
1809     = TYPE_ALLOC (resolved_type,
1810                   TYPE_NFIELDS (resolved_type) * sizeof (struct field));
1811   memcpy (TYPE_FIELDS (resolved_type),
1812           TYPE_FIELDS (type),
1813           TYPE_NFIELDS (resolved_type) * sizeof (struct field));
1814   for (i = 0; i < TYPE_NFIELDS (resolved_type); ++i)
1815     {
1816       unsigned new_bit_length;
1817
1818       if (field_is_static (&TYPE_FIELD (type, i)))
1819         continue;
1820
1821       TYPE_FIELD_TYPE (resolved_type, i)
1822         = resolve_dynamic_type_internal (TYPE_FIELD_TYPE (resolved_type, i),
1823                                          addr, 0);
1824
1825       /* As we know this field is not a static field, the field's
1826          field_loc_kind should be FIELD_LOC_KIND_BITPOS.  Verify
1827          this is the case, but only trigger a simple error rather
1828          than an internal error if that fails.  While failing
1829          that verification indicates a bug in our code, the error
1830          is not severe enough to suggest to the user he stops
1831          his debugging session because of it.  */
1832       if (TYPE_FIELD_LOC_KIND (resolved_type, i) != FIELD_LOC_KIND_BITPOS)
1833         error (_("Cannot determine struct field location"
1834                  " (invalid location kind)"));
1835       new_bit_length = TYPE_FIELD_BITPOS (resolved_type, i);
1836       if (TYPE_FIELD_BITSIZE (resolved_type, i) != 0)
1837         new_bit_length += TYPE_FIELD_BITSIZE (resolved_type, i);
1838       else
1839         new_bit_length += (TYPE_LENGTH (TYPE_FIELD_TYPE (resolved_type, i))
1840                            * TARGET_CHAR_BIT);
1841
1842       /* Normally, we would use the position and size of the last field
1843          to determine the size of the enclosing structure.  But GCC seems
1844          to be encoding the position of some fields incorrectly when
1845          the struct contains a dynamic field that is not placed last.
1846          So we compute the struct size based on the field that has
1847          the highest position + size - probably the best we can do.  */
1848       if (new_bit_length > resolved_type_bit_length)
1849         resolved_type_bit_length = new_bit_length;
1850     }
1851
1852   TYPE_LENGTH (resolved_type)
1853     = (resolved_type_bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
1854
1855   return resolved_type;
1856 }
1857
1858 /* Worker for resolved_dynamic_type.  */
1859
1860 static struct type *
1861 resolve_dynamic_type_internal (struct type *type, CORE_ADDR addr,
1862                                int top_level)
1863 {
1864   struct type *real_type = check_typedef (type);
1865   struct type *resolved_type = type;
1866   const struct dynamic_prop *prop;
1867   CORE_ADDR value;
1868
1869   if (!is_dynamic_type_internal (real_type, top_level))
1870     return type;
1871
1872   switch (TYPE_CODE (type))
1873     {
1874       case TYPE_CODE_TYPEDEF:
1875         resolved_type = copy_type (type);
1876         TYPE_TARGET_TYPE (resolved_type)
1877           = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type), addr,
1878                                            top_level);
1879         break;
1880
1881       case TYPE_CODE_REF:
1882         {
1883           CORE_ADDR target_addr = read_memory_typed_address (addr, type);
1884
1885           resolved_type = copy_type (type);
1886           TYPE_TARGET_TYPE (resolved_type)
1887             = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type),
1888                                              target_addr, top_level);
1889           break;
1890         }
1891
1892       case TYPE_CODE_ARRAY:
1893         resolved_type = resolve_dynamic_array (type, addr);
1894         break;
1895
1896       case TYPE_CODE_RANGE:
1897         resolved_type = resolve_dynamic_range (type, addr);
1898         break;
1899
1900     case TYPE_CODE_UNION:
1901       resolved_type = resolve_dynamic_union (type, addr);
1902       break;
1903
1904     case TYPE_CODE_STRUCT:
1905       resolved_type = resolve_dynamic_struct (type, addr);
1906       break;
1907     }
1908
1909   /* Resolve data_location attribute.  */
1910   prop = TYPE_DATA_LOCATION (resolved_type);
1911   if (dwarf2_evaluate_property (prop, addr, &value))
1912     {
1913       TYPE_DATA_LOCATION_ADDR (resolved_type) = value;
1914       TYPE_DATA_LOCATION_KIND (resolved_type) = PROP_CONST;
1915     }
1916   else
1917     TYPE_DATA_LOCATION (resolved_type) = NULL;
1918
1919   return resolved_type;
1920 }
1921
1922 /* See gdbtypes.h  */
1923
1924 struct type *
1925 resolve_dynamic_type (struct type *type, CORE_ADDR addr)
1926 {
1927   return resolve_dynamic_type_internal (type, addr, 1);
1928 }
1929
1930 /* Find the real type of TYPE.  This function returns the real type,
1931    after removing all layers of typedefs, and completing opaque or stub
1932    types.  Completion changes the TYPE argument, but stripping of
1933    typedefs does not.
1934
1935    Instance flags (e.g. const/volatile) are preserved as typedefs are
1936    stripped.  If necessary a new qualified form of the underlying type
1937    is created.
1938
1939    NOTE: This will return a typedef if TYPE_TARGET_TYPE for the typedef has
1940    not been computed and we're either in the middle of reading symbols, or
1941    there was no name for the typedef in the debug info.
1942
1943    NOTE: Lookup of opaque types can throw errors for invalid symbol files.
1944    QUITs in the symbol reading code can also throw.
1945    Thus this function can throw an exception.
1946
1947    If TYPE is a TYPE_CODE_TYPEDEF, its length is updated to the length of
1948    the target type.
1949
1950    If this is a stubbed struct (i.e. declared as struct foo *), see if
1951    we can find a full definition in some other file.  If so, copy this
1952    definition, so we can use it in future.  There used to be a comment
1953    (but not any code) that if we don't find a full definition, we'd
1954    set a flag so we don't spend time in the future checking the same
1955    type.  That would be a mistake, though--we might load in more
1956    symbols which contain a full definition for the type.  */
1957
1958 struct type *
1959 check_typedef (struct type *type)
1960 {
1961   struct type *orig_type = type;
1962   /* While we're removing typedefs, we don't want to lose qualifiers.
1963      E.g., const/volatile.  */
1964   int instance_flags = TYPE_INSTANCE_FLAGS (type);
1965
1966   gdb_assert (type);
1967
1968   while (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
1969     {
1970       if (!TYPE_TARGET_TYPE (type))
1971         {
1972           const char *name;
1973           struct symbol *sym;
1974
1975           /* It is dangerous to call lookup_symbol if we are currently
1976              reading a symtab.  Infinite recursion is one danger.  */
1977           if (currently_reading_symtab)
1978             return make_qualified_type (type, instance_flags, NULL);
1979
1980           name = type_name_no_tag (type);
1981           /* FIXME: shouldn't we separately check the TYPE_NAME and
1982              the TYPE_TAG_NAME, and look in STRUCT_DOMAIN and/or
1983              VAR_DOMAIN as appropriate?  (this code was written before
1984              TYPE_NAME and TYPE_TAG_NAME were separate).  */
1985           if (name == NULL)
1986             {
1987               stub_noname_complaint ();
1988               return make_qualified_type (type, instance_flags, NULL);
1989             }
1990           sym = lookup_symbol (name, 0, STRUCT_DOMAIN, 0);
1991           if (sym)
1992             TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
1993           else                                  /* TYPE_CODE_UNDEF */
1994             TYPE_TARGET_TYPE (type) = alloc_type_arch (get_type_arch (type));
1995         }
1996       type = TYPE_TARGET_TYPE (type);
1997
1998       /* Preserve the instance flags as we traverse down the typedef chain.
1999
2000          Handling address spaces/classes is nasty, what do we do if there's a
2001          conflict?
2002          E.g., what if an outer typedef marks the type as class_1 and an inner
2003          typedef marks the type as class_2?
2004          This is the wrong place to do such error checking.  We leave it to
2005          the code that created the typedef in the first place to flag the
2006          error.  We just pick the outer address space (akin to letting the
2007          outer cast in a chain of casting win), instead of assuming
2008          "it can't happen".  */
2009       {
2010         const int ALL_SPACES = (TYPE_INSTANCE_FLAG_CODE_SPACE
2011                                 | TYPE_INSTANCE_FLAG_DATA_SPACE);
2012         const int ALL_CLASSES = TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL;
2013         int new_instance_flags = TYPE_INSTANCE_FLAGS (type);
2014
2015         /* Treat code vs data spaces and address classes separately.  */
2016         if ((instance_flags & ALL_SPACES) != 0)
2017           new_instance_flags &= ~ALL_SPACES;
2018         if ((instance_flags & ALL_CLASSES) != 0)
2019           new_instance_flags &= ~ALL_CLASSES;
2020
2021         instance_flags |= new_instance_flags;
2022       }
2023     }
2024
2025   /* If this is a struct/class/union with no fields, then check
2026      whether a full definition exists somewhere else.  This is for
2027      systems where a type definition with no fields is issued for such
2028      types, instead of identifying them as stub types in the first
2029      place.  */
2030
2031   if (TYPE_IS_OPAQUE (type) 
2032       && opaque_type_resolution 
2033       && !currently_reading_symtab)
2034     {
2035       const char *name = type_name_no_tag (type);
2036       struct type *newtype;
2037
2038       if (name == NULL)
2039         {
2040           stub_noname_complaint ();
2041           return make_qualified_type (type, instance_flags, NULL);
2042         }
2043       newtype = lookup_transparent_type (name);
2044
2045       if (newtype)
2046         {
2047           /* If the resolved type and the stub are in the same
2048              objfile, then replace the stub type with the real deal.
2049              But if they're in separate objfiles, leave the stub
2050              alone; we'll just look up the transparent type every time
2051              we call check_typedef.  We can't create pointers between
2052              types allocated to different objfiles, since they may
2053              have different lifetimes.  Trying to copy NEWTYPE over to
2054              TYPE's objfile is pointless, too, since you'll have to
2055              move over any other types NEWTYPE refers to, which could
2056              be an unbounded amount of stuff.  */
2057           if (TYPE_OBJFILE (newtype) == TYPE_OBJFILE (type))
2058             type = make_qualified_type (newtype,
2059                                         TYPE_INSTANCE_FLAGS (type),
2060                                         type);
2061           else
2062             type = newtype;
2063         }
2064     }
2065   /* Otherwise, rely on the stub flag being set for opaque/stubbed
2066      types.  */
2067   else if (TYPE_STUB (type) && !currently_reading_symtab)
2068     {
2069       const char *name = type_name_no_tag (type);
2070       /* FIXME: shouldn't we separately check the TYPE_NAME and the
2071          TYPE_TAG_NAME, and look in STRUCT_DOMAIN and/or VAR_DOMAIN
2072          as appropriate?  (this code was written before TYPE_NAME and
2073          TYPE_TAG_NAME were separate).  */
2074       struct symbol *sym;
2075
2076       if (name == NULL)
2077         {
2078           stub_noname_complaint ();
2079           return make_qualified_type (type, instance_flags, NULL);
2080         }
2081       sym = lookup_symbol (name, 0, STRUCT_DOMAIN, 0);
2082       if (sym)
2083         {
2084           /* Same as above for opaque types, we can replace the stub
2085              with the complete type only if they are in the same
2086              objfile.  */
2087           if (TYPE_OBJFILE (SYMBOL_TYPE(sym)) == TYPE_OBJFILE (type))
2088             type = make_qualified_type (SYMBOL_TYPE (sym),
2089                                         TYPE_INSTANCE_FLAGS (type),
2090                                         type);
2091           else
2092             type = SYMBOL_TYPE (sym);
2093         }
2094     }
2095
2096   if (TYPE_TARGET_STUB (type))
2097     {
2098       struct type *range_type;
2099       struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
2100
2101       if (TYPE_STUB (target_type) || TYPE_TARGET_STUB (target_type))
2102         {
2103           /* Nothing we can do.  */
2104         }
2105       else if (TYPE_CODE (type) == TYPE_CODE_RANGE)
2106         {
2107           TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
2108           TYPE_TARGET_STUB (type) = 0;
2109         }
2110     }
2111
2112   type = make_qualified_type (type, instance_flags, NULL);
2113
2114   /* Cache TYPE_LENGTH for future use.  */
2115   TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
2116
2117   return type;
2118 }
2119
2120 /* Parse a type expression in the string [P..P+LENGTH).  If an error
2121    occurs, silently return a void type.  */
2122
2123 static struct type *
2124 safe_parse_type (struct gdbarch *gdbarch, char *p, int length)
2125 {
2126   struct ui_file *saved_gdb_stderr;
2127   struct type *type = NULL; /* Initialize to keep gcc happy.  */
2128   volatile struct gdb_exception except;
2129
2130   /* Suppress error messages.  */
2131   saved_gdb_stderr = gdb_stderr;
2132   gdb_stderr = ui_file_new ();
2133
2134   /* Call parse_and_eval_type() without fear of longjmp()s.  */
2135   TRY_CATCH (except, RETURN_MASK_ERROR)
2136     {
2137       type = parse_and_eval_type (p, length);
2138     }
2139
2140   if (except.reason < 0)
2141     type = builtin_type (gdbarch)->builtin_void;
2142
2143   /* Stop suppressing error messages.  */
2144   ui_file_delete (gdb_stderr);
2145   gdb_stderr = saved_gdb_stderr;
2146
2147   return type;
2148 }
2149
2150 /* Ugly hack to convert method stubs into method types.
2151
2152    He ain't kiddin'.  This demangles the name of the method into a
2153    string including argument types, parses out each argument type,
2154    generates a string casting a zero to that type, evaluates the
2155    string, and stuffs the resulting type into an argtype vector!!!
2156    Then it knows the type of the whole function (including argument
2157    types for overloading), which info used to be in the stab's but was
2158    removed to hack back the space required for them.  */
2159
2160 static void
2161 check_stub_method (struct type *type, int method_id, int signature_id)
2162 {
2163   struct gdbarch *gdbarch = get_type_arch (type);
2164   struct fn_field *f;
2165   char *mangled_name = gdb_mangle_name (type, method_id, signature_id);
2166   char *demangled_name = gdb_demangle (mangled_name,
2167                                        DMGL_PARAMS | DMGL_ANSI);
2168   char *argtypetext, *p;
2169   int depth = 0, argcount = 1;
2170   struct field *argtypes;
2171   struct type *mtype;
2172
2173   /* Make sure we got back a function string that we can use.  */
2174   if (demangled_name)
2175     p = strchr (demangled_name, '(');
2176   else
2177     p = NULL;
2178
2179   if (demangled_name == NULL || p == NULL)
2180     error (_("Internal: Cannot demangle mangled name `%s'."), 
2181            mangled_name);
2182
2183   /* Now, read in the parameters that define this type.  */
2184   p += 1;
2185   argtypetext = p;
2186   while (*p)
2187     {
2188       if (*p == '(' || *p == '<')
2189         {
2190           depth += 1;
2191         }
2192       else if (*p == ')' || *p == '>')
2193         {
2194           depth -= 1;
2195         }
2196       else if (*p == ',' && depth == 0)
2197         {
2198           argcount += 1;
2199         }
2200
2201       p += 1;
2202     }
2203
2204   /* If we read one argument and it was ``void'', don't count it.  */
2205   if (strncmp (argtypetext, "(void)", 6) == 0)
2206     argcount -= 1;
2207
2208   /* We need one extra slot, for the THIS pointer.  */
2209
2210   argtypes = (struct field *)
2211     TYPE_ALLOC (type, (argcount + 1) * sizeof (struct field));
2212   p = argtypetext;
2213
2214   /* Add THIS pointer for non-static methods.  */
2215   f = TYPE_FN_FIELDLIST1 (type, method_id);
2216   if (TYPE_FN_FIELD_STATIC_P (f, signature_id))
2217     argcount = 0;
2218   else
2219     {
2220       argtypes[0].type = lookup_pointer_type (type);
2221       argcount = 1;
2222     }
2223
2224   if (*p != ')')                /* () means no args, skip while.  */
2225     {
2226       depth = 0;
2227       while (*p)
2228         {
2229           if (depth <= 0 && (*p == ',' || *p == ')'))
2230             {
2231               /* Avoid parsing of ellipsis, they will be handled below.
2232                  Also avoid ``void'' as above.  */
2233               if (strncmp (argtypetext, "...", p - argtypetext) != 0
2234                   && strncmp (argtypetext, "void", p - argtypetext) != 0)
2235                 {
2236                   argtypes[argcount].type =
2237                     safe_parse_type (gdbarch, argtypetext, p - argtypetext);
2238                   argcount += 1;
2239                 }
2240               argtypetext = p + 1;
2241             }
2242
2243           if (*p == '(' || *p == '<')
2244             {
2245               depth += 1;
2246             }
2247           else if (*p == ')' || *p == '>')
2248             {
2249               depth -= 1;
2250             }
2251
2252           p += 1;
2253         }
2254     }
2255
2256   TYPE_FN_FIELD_PHYSNAME (f, signature_id) = mangled_name;
2257
2258   /* Now update the old "stub" type into a real type.  */
2259   mtype = TYPE_FN_FIELD_TYPE (f, signature_id);
2260   TYPE_DOMAIN_TYPE (mtype) = type;
2261   TYPE_FIELDS (mtype) = argtypes;
2262   TYPE_NFIELDS (mtype) = argcount;
2263   TYPE_STUB (mtype) = 0;
2264   TYPE_FN_FIELD_STUB (f, signature_id) = 0;
2265   if (p[-2] == '.')
2266     TYPE_VARARGS (mtype) = 1;
2267
2268   xfree (demangled_name);
2269 }
2270
2271 /* This is the external interface to check_stub_method, above.  This
2272    function unstubs all of the signatures for TYPE's METHOD_ID method
2273    name.  After calling this function TYPE_FN_FIELD_STUB will be
2274    cleared for each signature and TYPE_FN_FIELDLIST_NAME will be
2275    correct.
2276
2277    This function unfortunately can not die until stabs do.  */
2278
2279 void
2280 check_stub_method_group (struct type *type, int method_id)
2281 {
2282   int len = TYPE_FN_FIELDLIST_LENGTH (type, method_id);
2283   struct fn_field *f = TYPE_FN_FIELDLIST1 (type, method_id);
2284   int j, found_stub = 0;
2285
2286   for (j = 0; j < len; j++)
2287     if (TYPE_FN_FIELD_STUB (f, j))
2288       {
2289         found_stub = 1;
2290         check_stub_method (type, method_id, j);
2291       }
2292
2293   /* GNU v3 methods with incorrect names were corrected when we read
2294      in type information, because it was cheaper to do it then.  The
2295      only GNU v2 methods with incorrect method names are operators and
2296      destructors; destructors were also corrected when we read in type
2297      information.
2298
2299      Therefore the only thing we need to handle here are v2 operator
2300      names.  */
2301   if (found_stub && strncmp (TYPE_FN_FIELD_PHYSNAME (f, 0), "_Z", 2) != 0)
2302     {
2303       int ret;
2304       char dem_opname[256];
2305
2306       ret = cplus_demangle_opname (TYPE_FN_FIELDLIST_NAME (type, 
2307                                                            method_id),
2308                                    dem_opname, DMGL_ANSI);
2309       if (!ret)
2310         ret = cplus_demangle_opname (TYPE_FN_FIELDLIST_NAME (type, 
2311                                                              method_id),
2312                                      dem_opname, 0);
2313       if (ret)
2314         TYPE_FN_FIELDLIST_NAME (type, method_id) = xstrdup (dem_opname);
2315     }
2316 }
2317
2318 /* Ensure it is in .rodata (if available) by workarounding GCC PR 44690.  */
2319 const struct cplus_struct_type cplus_struct_default = { };
2320
2321 void
2322 allocate_cplus_struct_type (struct type *type)
2323 {
2324   if (HAVE_CPLUS_STRUCT (type))
2325     /* Structure was already allocated.  Nothing more to do.  */
2326     return;
2327
2328   TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_CPLUS_STUFF;
2329   TYPE_RAW_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
2330     TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
2331   *(TYPE_RAW_CPLUS_SPECIFIC (type)) = cplus_struct_default;
2332 }
2333
2334 const struct gnat_aux_type gnat_aux_default =
2335   { NULL };
2336
2337 /* Set the TYPE's type-specific kind to TYPE_SPECIFIC_GNAT_STUFF,
2338    and allocate the associated gnat-specific data.  The gnat-specific
2339    data is also initialized to gnat_aux_default.  */
2340
2341 void
2342 allocate_gnat_aux_type (struct type *type)
2343 {
2344   TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_GNAT_STUFF;
2345   TYPE_GNAT_SPECIFIC (type) = (struct gnat_aux_type *)
2346     TYPE_ALLOC (type, sizeof (struct gnat_aux_type));
2347   *(TYPE_GNAT_SPECIFIC (type)) = gnat_aux_default;
2348 }
2349
2350 /* Helper function to initialize the standard scalar types.
2351
2352    If NAME is non-NULL, then it is used to initialize the type name.
2353    Note that NAME is not copied; it is required to have a lifetime at
2354    least as long as OBJFILE.  */
2355
2356 struct type *
2357 init_type (enum type_code code, int length, int flags,
2358            const char *name, struct objfile *objfile)
2359 {
2360   struct type *type;
2361
2362   type = alloc_type (objfile);
2363   TYPE_CODE (type) = code;
2364   TYPE_LENGTH (type) = length;
2365
2366   gdb_assert (!(flags & (TYPE_FLAG_MIN - 1)));
2367   if (flags & TYPE_FLAG_UNSIGNED)
2368     TYPE_UNSIGNED (type) = 1;
2369   if (flags & TYPE_FLAG_NOSIGN)
2370     TYPE_NOSIGN (type) = 1;
2371   if (flags & TYPE_FLAG_STUB)
2372     TYPE_STUB (type) = 1;
2373   if (flags & TYPE_FLAG_TARGET_STUB)
2374     TYPE_TARGET_STUB (type) = 1;
2375   if (flags & TYPE_FLAG_STATIC)
2376     TYPE_STATIC (type) = 1;
2377   if (flags & TYPE_FLAG_PROTOTYPED)
2378     TYPE_PROTOTYPED (type) = 1;
2379   if (flags & TYPE_FLAG_INCOMPLETE)
2380     TYPE_INCOMPLETE (type) = 1;
2381   if (flags & TYPE_FLAG_VARARGS)
2382     TYPE_VARARGS (type) = 1;
2383   if (flags & TYPE_FLAG_VECTOR)
2384     TYPE_VECTOR (type) = 1;
2385   if (flags & TYPE_FLAG_STUB_SUPPORTED)
2386     TYPE_STUB_SUPPORTED (type) = 1;
2387   if (flags & TYPE_FLAG_FIXED_INSTANCE)
2388     TYPE_FIXED_INSTANCE (type) = 1;
2389   if (flags & TYPE_FLAG_GNU_IFUNC)
2390     TYPE_GNU_IFUNC (type) = 1;
2391
2392   TYPE_NAME (type) = name;
2393
2394   /* C++ fancies.  */
2395
2396   if (name && strcmp (name, "char") == 0)
2397     TYPE_NOSIGN (type) = 1;
2398
2399   switch (code)
2400     {
2401       case TYPE_CODE_STRUCT:
2402       case TYPE_CODE_UNION:
2403       case TYPE_CODE_NAMESPACE:
2404         INIT_CPLUS_SPECIFIC (type);
2405         break;
2406       case TYPE_CODE_FLT:
2407         TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_FLOATFORMAT;
2408         break;
2409       case TYPE_CODE_FUNC:
2410         INIT_FUNC_SPECIFIC (type);
2411         break;
2412     }
2413   return type;
2414 }
2415 \f
2416 /* Queries on types.  */
2417
2418 int
2419 can_dereference (struct type *t)
2420 {
2421   /* FIXME: Should we return true for references as well as
2422      pointers?  */
2423   CHECK_TYPEDEF (t);
2424   return
2425     (t != NULL
2426      && TYPE_CODE (t) == TYPE_CODE_PTR
2427      && TYPE_CODE (TYPE_TARGET_TYPE (t)) != TYPE_CODE_VOID);
2428 }
2429
2430 int
2431 is_integral_type (struct type *t)
2432 {
2433   CHECK_TYPEDEF (t);
2434   return
2435     ((t != NULL)
2436      && ((TYPE_CODE (t) == TYPE_CODE_INT)
2437          || (TYPE_CODE (t) == TYPE_CODE_ENUM)
2438          || (TYPE_CODE (t) == TYPE_CODE_FLAGS)
2439          || (TYPE_CODE (t) == TYPE_CODE_CHAR)
2440          || (TYPE_CODE (t) == TYPE_CODE_RANGE)
2441          || (TYPE_CODE (t) == TYPE_CODE_BOOL)));
2442 }
2443
2444 /* Return true if TYPE is scalar.  */
2445
2446 static int
2447 is_scalar_type (struct type *type)
2448 {
2449   CHECK_TYPEDEF (type);
2450
2451   switch (TYPE_CODE (type))
2452     {
2453     case TYPE_CODE_ARRAY:
2454     case TYPE_CODE_STRUCT:
2455     case TYPE_CODE_UNION:
2456     case TYPE_CODE_SET:
2457     case TYPE_CODE_STRING:
2458       return 0;
2459     default:
2460       return 1;
2461     }
2462 }
2463
2464 /* Return true if T is scalar, or a composite type which in practice has
2465    the memory layout of a scalar type.  E.g., an array or struct with only
2466    one scalar element inside it, or a union with only scalar elements.  */
2467
2468 int
2469 is_scalar_type_recursive (struct type *t)
2470 {
2471   CHECK_TYPEDEF (t);
2472
2473   if (is_scalar_type (t))
2474     return 1;
2475   /* Are we dealing with an array or string of known dimensions?  */
2476   else if ((TYPE_CODE (t) == TYPE_CODE_ARRAY
2477             || TYPE_CODE (t) == TYPE_CODE_STRING) && TYPE_NFIELDS (t) == 1
2478            && TYPE_CODE (TYPE_INDEX_TYPE (t)) == TYPE_CODE_RANGE)
2479     {
2480       LONGEST low_bound, high_bound;
2481       struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (t));
2482
2483       get_discrete_bounds (TYPE_INDEX_TYPE (t), &low_bound, &high_bound);
2484
2485       return high_bound == low_bound && is_scalar_type_recursive (elt_type);
2486     }
2487   /* Are we dealing with a struct with one element?  */
2488   else if (TYPE_CODE (t) == TYPE_CODE_STRUCT && TYPE_NFIELDS (t) == 1)
2489     return is_scalar_type_recursive (TYPE_FIELD_TYPE (t, 0));
2490   else if (TYPE_CODE (t) == TYPE_CODE_UNION)
2491     {
2492       int i, n = TYPE_NFIELDS (t);
2493
2494       /* If all elements of the union are scalar, then the union is scalar.  */
2495       for (i = 0; i < n; i++)
2496         if (!is_scalar_type_recursive (TYPE_FIELD_TYPE (t, i)))
2497           return 0;
2498
2499       return 1;
2500     }
2501
2502   return 0;
2503 }
2504
2505 /* A helper function which returns true if types A and B represent the
2506    "same" class type.  This is true if the types have the same main
2507    type, or the same name.  */
2508
2509 int
2510 class_types_same_p (const struct type *a, const struct type *b)
2511 {
2512   return (TYPE_MAIN_TYPE (a) == TYPE_MAIN_TYPE (b)
2513           || (TYPE_NAME (a) && TYPE_NAME (b)
2514               && !strcmp (TYPE_NAME (a), TYPE_NAME (b))));
2515 }
2516
2517 /* If BASE is an ancestor of DCLASS return the distance between them.
2518    otherwise return -1;
2519    eg:
2520
2521    class A {};
2522    class B: public A {};
2523    class C: public B {};
2524    class D: C {};
2525
2526    distance_to_ancestor (A, A, 0) = 0
2527    distance_to_ancestor (A, B, 0) = 1
2528    distance_to_ancestor (A, C, 0) = 2
2529    distance_to_ancestor (A, D, 0) = 3
2530
2531    If PUBLIC is 1 then only public ancestors are considered,
2532    and the function returns the distance only if BASE is a public ancestor
2533    of DCLASS.
2534    Eg:
2535
2536    distance_to_ancestor (A, D, 1) = -1.  */
2537
2538 static int
2539 distance_to_ancestor (struct type *base, struct type *dclass, int public)
2540 {
2541   int i;
2542   int d;
2543
2544   CHECK_TYPEDEF (base);
2545   CHECK_TYPEDEF (dclass);
2546
2547   if (class_types_same_p (base, dclass))
2548     return 0;
2549
2550   for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
2551     {
2552       if (public && ! BASETYPE_VIA_PUBLIC (dclass, i))
2553         continue;
2554
2555       d = distance_to_ancestor (base, TYPE_BASECLASS (dclass, i), public);
2556       if (d >= 0)
2557         return 1 + d;
2558     }
2559
2560   return -1;
2561 }
2562
2563 /* Check whether BASE is an ancestor or base class or DCLASS
2564    Return 1 if so, and 0 if not.
2565    Note: If BASE and DCLASS are of the same type, this function
2566    will return 1. So for some class A, is_ancestor (A, A) will
2567    return 1.  */
2568
2569 int
2570 is_ancestor (struct type *base, struct type *dclass)
2571 {
2572   return distance_to_ancestor (base, dclass, 0) >= 0;
2573 }
2574
2575 /* Like is_ancestor, but only returns true when BASE is a public
2576    ancestor of DCLASS.  */
2577
2578 int
2579 is_public_ancestor (struct type *base, struct type *dclass)
2580 {
2581   return distance_to_ancestor (base, dclass, 1) >= 0;
2582 }
2583
2584 /* A helper function for is_unique_ancestor.  */
2585
2586 static int
2587 is_unique_ancestor_worker (struct type *base, struct type *dclass,
2588                            int *offset,
2589                            const gdb_byte *valaddr, int embedded_offset,
2590                            CORE_ADDR address, struct value *val)
2591 {
2592   int i, count = 0;
2593
2594   CHECK_TYPEDEF (base);
2595   CHECK_TYPEDEF (dclass);
2596
2597   for (i = 0; i < TYPE_N_BASECLASSES (dclass) && count < 2; ++i)
2598     {
2599       struct type *iter;
2600       int this_offset;
2601
2602       iter = check_typedef (TYPE_BASECLASS (dclass, i));
2603
2604       this_offset = baseclass_offset (dclass, i, valaddr, embedded_offset,
2605                                       address, val);
2606
2607       if (class_types_same_p (base, iter))
2608         {
2609           /* If this is the first subclass, set *OFFSET and set count
2610              to 1.  Otherwise, if this is at the same offset as
2611              previous instances, do nothing.  Otherwise, increment
2612              count.  */
2613           if (*offset == -1)
2614             {
2615               *offset = this_offset;
2616               count = 1;
2617             }
2618           else if (this_offset == *offset)
2619             {
2620               /* Nothing.  */
2621             }
2622           else
2623             ++count;
2624         }
2625       else
2626         count += is_unique_ancestor_worker (base, iter, offset,
2627                                             valaddr,
2628                                             embedded_offset + this_offset,
2629                                             address, val);
2630     }
2631
2632   return count;
2633 }
2634
2635 /* Like is_ancestor, but only returns true if BASE is a unique base
2636    class of the type of VAL.  */
2637
2638 int
2639 is_unique_ancestor (struct type *base, struct value *val)
2640 {
2641   int offset = -1;
2642
2643   return is_unique_ancestor_worker (base, value_type (val), &offset,
2644                                     value_contents_for_printing (val),
2645                                     value_embedded_offset (val),
2646                                     value_address (val), val) == 1;
2647 }
2648
2649 \f
2650 /* Overload resolution.  */
2651
2652 /* Return the sum of the rank of A with the rank of B.  */
2653
2654 struct rank
2655 sum_ranks (struct rank a, struct rank b)
2656 {
2657   struct rank c;
2658   c.rank = a.rank + b.rank;
2659   c.subrank = a.subrank + b.subrank;
2660   return c;
2661 }
2662
2663 /* Compare rank A and B and return:
2664    0 if a = b
2665    1 if a is better than b
2666   -1 if b is better than a.  */
2667
2668 int
2669 compare_ranks (struct rank a, struct rank b)
2670 {
2671   if (a.rank == b.rank)
2672     {
2673       if (a.subrank == b.subrank)
2674         return 0;
2675       if (a.subrank < b.subrank)
2676         return 1;
2677       if (a.subrank > b.subrank)
2678         return -1;
2679     }
2680
2681   if (a.rank < b.rank)
2682     return 1;
2683
2684   /* a.rank > b.rank */
2685   return -1;
2686 }
2687
2688 /* Functions for overload resolution begin here.  */
2689
2690 /* Compare two badness vectors A and B and return the result.
2691    0 => A and B are identical
2692    1 => A and B are incomparable
2693    2 => A is better than B
2694    3 => A is worse than B  */
2695
2696 int
2697 compare_badness (struct badness_vector *a, struct badness_vector *b)
2698 {
2699   int i;
2700   int tmp;
2701   short found_pos = 0;          /* any positives in c? */
2702   short found_neg = 0;          /* any negatives in c? */
2703
2704   /* differing lengths => incomparable */
2705   if (a->length != b->length)
2706     return 1;
2707
2708   /* Subtract b from a */
2709   for (i = 0; i < a->length; i++)
2710     {
2711       tmp = compare_ranks (b->rank[i], a->rank[i]);
2712       if (tmp > 0)
2713         found_pos = 1;
2714       else if (tmp < 0)
2715         found_neg = 1;
2716     }
2717
2718   if (found_pos)
2719     {
2720       if (found_neg)
2721         return 1;               /* incomparable */
2722       else
2723         return 3;               /* A > B */
2724     }
2725   else
2726     /* no positives */
2727     {
2728       if (found_neg)
2729         return 2;               /* A < B */
2730       else
2731         return 0;               /* A == B */
2732     }
2733 }
2734
2735 /* Rank a function by comparing its parameter types (PARMS, length
2736    NPARMS), to the types of an argument list (ARGS, length NARGS).
2737    Return a pointer to a badness vector.  This has NARGS + 1
2738    entries.  */
2739
2740 struct badness_vector *
2741 rank_function (struct type **parms, int nparms, 
2742                struct value **args, int nargs)
2743 {
2744   int i;
2745   struct badness_vector *bv;
2746   int min_len = nparms < nargs ? nparms : nargs;
2747
2748   bv = xmalloc (sizeof (struct badness_vector));
2749   bv->length = nargs + 1;       /* add 1 for the length-match rank.  */
2750   bv->rank = XNEWVEC (struct rank, nargs + 1);
2751
2752   /* First compare the lengths of the supplied lists.
2753      If there is a mismatch, set it to a high value.  */
2754
2755   /* pai/1997-06-03 FIXME: when we have debug info about default
2756      arguments and ellipsis parameter lists, we should consider those
2757      and rank the length-match more finely.  */
2758
2759   LENGTH_MATCH (bv) = (nargs != nparms)
2760                       ? LENGTH_MISMATCH_BADNESS
2761                       : EXACT_MATCH_BADNESS;
2762
2763   /* Now rank all the parameters of the candidate function.  */
2764   for (i = 1; i <= min_len; i++)
2765     bv->rank[i] = rank_one_type (parms[i - 1], value_type (args[i - 1]),
2766                                  args[i - 1]);
2767
2768   /* If more arguments than parameters, add dummy entries.  */
2769   for (i = min_len + 1; i <= nargs; i++)
2770     bv->rank[i] = TOO_FEW_PARAMS_BADNESS;
2771
2772   return bv;
2773 }
2774
2775 /* Compare the names of two integer types, assuming that any sign
2776    qualifiers have been checked already.  We do it this way because
2777    there may be an "int" in the name of one of the types.  */
2778
2779 static int
2780 integer_types_same_name_p (const char *first, const char *second)
2781 {
2782   int first_p, second_p;
2783
2784   /* If both are shorts, return 1; if neither is a short, keep
2785      checking.  */
2786   first_p = (strstr (first, "short") != NULL);
2787   second_p = (strstr (second, "short") != NULL);
2788   if (first_p && second_p)
2789     return 1;
2790   if (first_p || second_p)
2791     return 0;
2792
2793   /* Likewise for long.  */
2794   first_p = (strstr (first, "long") != NULL);
2795   second_p = (strstr (second, "long") != NULL);
2796   if (first_p && second_p)
2797     return 1;
2798   if (first_p || second_p)
2799     return 0;
2800
2801   /* Likewise for char.  */
2802   first_p = (strstr (first, "char") != NULL);
2803   second_p = (strstr (second, "char") != NULL);
2804   if (first_p && second_p)
2805     return 1;
2806   if (first_p || second_p)
2807     return 0;
2808
2809   /* They must both be ints.  */
2810   return 1;
2811 }
2812
2813 /* Compares type A to type B returns 1 if the represent the same type
2814    0 otherwise.  */
2815
2816 int
2817 types_equal (struct type *a, struct type *b)
2818 {
2819   /* Identical type pointers.  */
2820   /* However, this still doesn't catch all cases of same type for b
2821      and a.  The reason is that builtin types are different from
2822      the same ones constructed from the object.  */
2823   if (a == b)
2824     return 1;
2825
2826   /* Resolve typedefs */
2827   if (TYPE_CODE (a) == TYPE_CODE_TYPEDEF)
2828     a = check_typedef (a);
2829   if (TYPE_CODE (b) == TYPE_CODE_TYPEDEF)
2830     b = check_typedef (b);
2831
2832   /* If after resolving typedefs a and b are not of the same type
2833      code then they are not equal.  */
2834   if (TYPE_CODE (a) != TYPE_CODE (b))
2835     return 0;
2836
2837   /* If a and b are both pointers types or both reference types then
2838      they are equal of the same type iff the objects they refer to are
2839      of the same type.  */
2840   if (TYPE_CODE (a) == TYPE_CODE_PTR
2841       || TYPE_CODE (a) == TYPE_CODE_REF)
2842     return types_equal (TYPE_TARGET_TYPE (a),
2843                         TYPE_TARGET_TYPE (b));
2844
2845   /* Well, damnit, if the names are exactly the same, I'll say they
2846      are exactly the same.  This happens when we generate method
2847      stubs.  The types won't point to the same address, but they
2848      really are the same.  */
2849
2850   if (TYPE_NAME (a) && TYPE_NAME (b)
2851       && strcmp (TYPE_NAME (a), TYPE_NAME (b)) == 0)
2852     return 1;
2853
2854   /* Check if identical after resolving typedefs.  */
2855   if (a == b)
2856     return 1;
2857
2858   /* Two function types are equal if their argument and return types
2859      are equal.  */
2860   if (TYPE_CODE (a) == TYPE_CODE_FUNC)
2861     {
2862       int i;
2863
2864       if (TYPE_NFIELDS (a) != TYPE_NFIELDS (b))
2865         return 0;
2866       
2867       if (!types_equal (TYPE_TARGET_TYPE (a), TYPE_TARGET_TYPE (b)))
2868         return 0;
2869
2870       for (i = 0; i < TYPE_NFIELDS (a); ++i)
2871         if (!types_equal (TYPE_FIELD_TYPE (a, i), TYPE_FIELD_TYPE (b, i)))
2872           return 0;
2873
2874       return 1;
2875     }
2876
2877   return 0;
2878 }
2879 \f
2880 /* Deep comparison of types.  */
2881
2882 /* An entry in the type-equality bcache.  */
2883
2884 typedef struct type_equality_entry
2885 {
2886   struct type *type1, *type2;
2887 } type_equality_entry_d;
2888
2889 DEF_VEC_O (type_equality_entry_d);
2890
2891 /* A helper function to compare two strings.  Returns 1 if they are
2892    the same, 0 otherwise.  Handles NULLs properly.  */
2893
2894 static int
2895 compare_maybe_null_strings (const char *s, const char *t)
2896 {
2897   if (s == NULL && t != NULL)
2898     return 0;
2899   else if (s != NULL && t == NULL)
2900     return 0;
2901   else if (s == NULL && t== NULL)
2902     return 1;
2903   return strcmp (s, t) == 0;
2904 }
2905
2906 /* A helper function for check_types_worklist that checks two types for
2907    "deep" equality.  Returns non-zero if the types are considered the
2908    same, zero otherwise.  */
2909
2910 static int
2911 check_types_equal (struct type *type1, struct type *type2,
2912                    VEC (type_equality_entry_d) **worklist)
2913 {
2914   CHECK_TYPEDEF (type1);
2915   CHECK_TYPEDEF (type2);
2916
2917   if (type1 == type2)
2918     return 1;
2919
2920   if (TYPE_CODE (type1) != TYPE_CODE (type2)
2921       || TYPE_LENGTH (type1) != TYPE_LENGTH (type2)
2922       || TYPE_UNSIGNED (type1) != TYPE_UNSIGNED (type2)
2923       || TYPE_NOSIGN (type1) != TYPE_NOSIGN (type2)
2924       || TYPE_VARARGS (type1) != TYPE_VARARGS (type2)
2925       || TYPE_VECTOR (type1) != TYPE_VECTOR (type2)
2926       || TYPE_NOTTEXT (type1) != TYPE_NOTTEXT (type2)
2927       || TYPE_INSTANCE_FLAGS (type1) != TYPE_INSTANCE_FLAGS (type2)
2928       || TYPE_NFIELDS (type1) != TYPE_NFIELDS (type2))
2929     return 0;
2930
2931   if (!compare_maybe_null_strings (TYPE_TAG_NAME (type1),
2932                                    TYPE_TAG_NAME (type2)))
2933     return 0;
2934   if (!compare_maybe_null_strings (TYPE_NAME (type1), TYPE_NAME (type2)))
2935     return 0;
2936
2937   if (TYPE_CODE (type1) == TYPE_CODE_RANGE)
2938     {
2939       if (memcmp (TYPE_RANGE_DATA (type1), TYPE_RANGE_DATA (type2),
2940                   sizeof (*TYPE_RANGE_DATA (type1))) != 0)
2941         return 0;
2942     }
2943   else
2944     {
2945       int i;
2946
2947       for (i = 0; i < TYPE_NFIELDS (type1); ++i)
2948         {
2949           const struct field *field1 = &TYPE_FIELD (type1, i);
2950           const struct field *field2 = &TYPE_FIELD (type2, i);
2951           struct type_equality_entry entry;
2952
2953           if (FIELD_ARTIFICIAL (*field1) != FIELD_ARTIFICIAL (*field2)
2954               || FIELD_BITSIZE (*field1) != FIELD_BITSIZE (*field2)
2955               || FIELD_LOC_KIND (*field1) != FIELD_LOC_KIND (*field2))
2956             return 0;
2957           if (!compare_maybe_null_strings (FIELD_NAME (*field1),
2958                                            FIELD_NAME (*field2)))
2959             return 0;
2960           switch (FIELD_LOC_KIND (*field1))
2961             {
2962             case FIELD_LOC_KIND_BITPOS:
2963               if (FIELD_BITPOS (*field1) != FIELD_BITPOS (*field2))
2964                 return 0;
2965               break;
2966             case FIELD_LOC_KIND_ENUMVAL:
2967               if (FIELD_ENUMVAL (*field1) != FIELD_ENUMVAL (*field2))
2968                 return 0;
2969               break;
2970             case FIELD_LOC_KIND_PHYSADDR:
2971               if (FIELD_STATIC_PHYSADDR (*field1)
2972                   != FIELD_STATIC_PHYSADDR (*field2))
2973                 return 0;
2974               break;
2975             case FIELD_LOC_KIND_PHYSNAME:
2976               if (!compare_maybe_null_strings (FIELD_STATIC_PHYSNAME (*field1),
2977                                                FIELD_STATIC_PHYSNAME (*field2)))
2978                 return 0;
2979               break;
2980             case FIELD_LOC_KIND_DWARF_BLOCK:
2981               {
2982                 struct dwarf2_locexpr_baton *block1, *block2;
2983
2984                 block1 = FIELD_DWARF_BLOCK (*field1);
2985                 block2 = FIELD_DWARF_BLOCK (*field2);
2986                 if (block1->per_cu != block2->per_cu
2987                     || block1->size != block2->size
2988                     || memcmp (block1->data, block2->data, block1->size) != 0)
2989                   return 0;
2990               }
2991               break;
2992             default:
2993               internal_error (__FILE__, __LINE__, _("Unsupported field kind "
2994                                                     "%d by check_types_equal"),
2995                               FIELD_LOC_KIND (*field1));
2996             }
2997
2998           entry.type1 = FIELD_TYPE (*field1);
2999           entry.type2 = FIELD_TYPE (*field2);
3000           VEC_safe_push (type_equality_entry_d, *worklist, &entry);
3001         }
3002     }
3003
3004   if (TYPE_TARGET_TYPE (type1) != NULL)
3005     {
3006       struct type_equality_entry entry;
3007
3008       if (TYPE_TARGET_TYPE (type2) == NULL)
3009         return 0;
3010
3011       entry.type1 = TYPE_TARGET_TYPE (type1);
3012       entry.type2 = TYPE_TARGET_TYPE (type2);
3013       VEC_safe_push (type_equality_entry_d, *worklist, &entry);
3014     }
3015   else if (TYPE_TARGET_TYPE (type2) != NULL)
3016     return 0;
3017
3018   return 1;
3019 }
3020
3021 /* Check types on a worklist for equality.  Returns zero if any pair
3022    is not equal, non-zero if they are all considered equal.  */
3023
3024 static int
3025 check_types_worklist (VEC (type_equality_entry_d) **worklist,
3026                       struct bcache *cache)
3027 {
3028   while (!VEC_empty (type_equality_entry_d, *worklist))
3029     {
3030       struct type_equality_entry entry;
3031       int added;
3032
3033       entry = *VEC_last (type_equality_entry_d, *worklist);
3034       VEC_pop (type_equality_entry_d, *worklist);
3035
3036       /* If the type pair has already been visited, we know it is
3037          ok.  */
3038       bcache_full (&entry, sizeof (entry), cache, &added);
3039       if (!added)
3040         continue;
3041
3042       if (check_types_equal (entry.type1, entry.type2, worklist) == 0)
3043         return 0;
3044     }
3045
3046   return 1;
3047 }
3048
3049 /* Return non-zero if types TYPE1 and TYPE2 are equal, as determined by a
3050    "deep comparison".  Otherwise return zero.  */
3051
3052 int
3053 types_deeply_equal (struct type *type1, struct type *type2)
3054 {
3055   volatile struct gdb_exception except;
3056   int result = 0;
3057   struct bcache *cache;
3058   VEC (type_equality_entry_d) *worklist = NULL;
3059   struct type_equality_entry entry;
3060
3061   gdb_assert (type1 != NULL && type2 != NULL);
3062
3063   /* Early exit for the simple case.  */
3064   if (type1 == type2)
3065     return 1;
3066
3067   cache = bcache_xmalloc (NULL, NULL);
3068
3069   entry.type1 = type1;
3070   entry.type2 = type2;
3071   VEC_safe_push (type_equality_entry_d, worklist, &entry);
3072
3073   TRY_CATCH (except, RETURN_MASK_ALL)
3074     {
3075       result = check_types_worklist (&worklist, cache);
3076     }
3077   /* check_types_worklist calls several nested helper functions,
3078      some of which can raise a GDB Exception, so we just check
3079      and rethrow here.  If there is a GDB exception, a comparison
3080      is not capable (or trusted), so exit.  */
3081   bcache_xfree (cache);
3082   VEC_free (type_equality_entry_d, worklist);
3083   /* Rethrow if there was a problem.  */
3084   if (except.reason < 0)
3085     throw_exception (except);
3086
3087   return result;
3088 }
3089 \f
3090 /* Compare one type (PARM) for compatibility with another (ARG).
3091  * PARM is intended to be the parameter type of a function; and
3092  * ARG is the supplied argument's type.  This function tests if
3093  * the latter can be converted to the former.
3094  * VALUE is the argument's value or NULL if none (or called recursively)
3095  *
3096  * Return 0 if they are identical types;
3097  * Otherwise, return an integer which corresponds to how compatible
3098  * PARM is to ARG.  The higher the return value, the worse the match.
3099  * Generally the "bad" conversions are all uniformly assigned a 100.  */
3100
3101 struct rank
3102 rank_one_type (struct type *parm, struct type *arg, struct value *value)
3103 {
3104   struct rank rank = {0,0};
3105
3106   if (types_equal (parm, arg))
3107     return EXACT_MATCH_BADNESS;
3108
3109   /* Resolve typedefs */
3110   if (TYPE_CODE (parm) == TYPE_CODE_TYPEDEF)
3111     parm = check_typedef (parm);
3112   if (TYPE_CODE (arg) == TYPE_CODE_TYPEDEF)
3113     arg = check_typedef (arg);
3114
3115   /* See through references, since we can almost make non-references
3116      references.  */
3117   if (TYPE_CODE (arg) == TYPE_CODE_REF)
3118     return (sum_ranks (rank_one_type (parm, TYPE_TARGET_TYPE (arg), NULL),
3119                        REFERENCE_CONVERSION_BADNESS));
3120   if (TYPE_CODE (parm) == TYPE_CODE_REF)
3121     return (sum_ranks (rank_one_type (TYPE_TARGET_TYPE (parm), arg, NULL),
3122                        REFERENCE_CONVERSION_BADNESS));
3123   if (overload_debug)
3124   /* Debugging only.  */
3125     fprintf_filtered (gdb_stderr, 
3126                       "------ Arg is %s [%d], parm is %s [%d]\n",
3127                       TYPE_NAME (arg), TYPE_CODE (arg), 
3128                       TYPE_NAME (parm), TYPE_CODE (parm));
3129
3130   /* x -> y means arg of type x being supplied for parameter of type y.  */
3131
3132   switch (TYPE_CODE (parm))
3133     {
3134     case TYPE_CODE_PTR:
3135       switch (TYPE_CODE (arg))
3136         {
3137         case TYPE_CODE_PTR:
3138
3139           /* Allowed pointer conversions are:
3140              (a) pointer to void-pointer conversion.  */
3141           if (TYPE_CODE (TYPE_TARGET_TYPE (parm)) == TYPE_CODE_VOID)
3142             return VOID_PTR_CONVERSION_BADNESS;
3143
3144           /* (b) pointer to ancestor-pointer conversion.  */
3145           rank.subrank = distance_to_ancestor (TYPE_TARGET_TYPE (parm),
3146                                                TYPE_TARGET_TYPE (arg),
3147                                                0);
3148           if (rank.subrank >= 0)
3149             return sum_ranks (BASE_PTR_CONVERSION_BADNESS, rank);
3150
3151           return INCOMPATIBLE_TYPE_BADNESS;
3152         case TYPE_CODE_ARRAY:
3153           if (types_equal (TYPE_TARGET_TYPE (parm),
3154                            TYPE_TARGET_TYPE (arg)))
3155             return EXACT_MATCH_BADNESS;
3156           return INCOMPATIBLE_TYPE_BADNESS;
3157         case TYPE_CODE_FUNC:
3158           return rank_one_type (TYPE_TARGET_TYPE (parm), arg, NULL);
3159         case TYPE_CODE_INT:
3160           if (value != NULL && TYPE_CODE (value_type (value)) == TYPE_CODE_INT)
3161             {
3162               if (value_as_long (value) == 0)
3163                 {
3164                   /* Null pointer conversion: allow it to be cast to a pointer.
3165                      [4.10.1 of C++ standard draft n3290]  */
3166                   return NULL_POINTER_CONVERSION_BADNESS;
3167                 }
3168               else
3169                 {
3170                   /* If type checking is disabled, allow the conversion.  */
3171                   if (!strict_type_checking)
3172                     return NS_INTEGER_POINTER_CONVERSION_BADNESS;
3173                 }
3174             }
3175           /* fall through  */
3176         case TYPE_CODE_ENUM:
3177         case TYPE_CODE_FLAGS:
3178         case TYPE_CODE_CHAR:
3179         case TYPE_CODE_RANGE:
3180         case TYPE_CODE_BOOL:
3181         default:
3182           return INCOMPATIBLE_TYPE_BADNESS;
3183         }
3184     case TYPE_CODE_ARRAY:
3185       switch (TYPE_CODE (arg))
3186         {
3187         case TYPE_CODE_PTR:
3188         case TYPE_CODE_ARRAY:
3189           return rank_one_type (TYPE_TARGET_TYPE (parm), 
3190                                 TYPE_TARGET_TYPE (arg), NULL);
3191         default:
3192           return INCOMPATIBLE_TYPE_BADNESS;
3193         }
3194     case TYPE_CODE_FUNC:
3195       switch (TYPE_CODE (arg))
3196         {
3197         case TYPE_CODE_PTR:     /* funcptr -> func */
3198           return rank_one_type (parm, TYPE_TARGET_TYPE (arg), NULL);
3199         default:
3200           return INCOMPATIBLE_TYPE_BADNESS;
3201         }
3202     case TYPE_CODE_INT:
3203       switch (TYPE_CODE (arg))
3204         {
3205         case TYPE_CODE_INT:
3206           if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
3207             {
3208               /* Deal with signed, unsigned, and plain chars and
3209                  signed and unsigned ints.  */
3210               if (TYPE_NOSIGN (parm))
3211                 {
3212                   /* This case only for character types.  */
3213                   if (TYPE_NOSIGN (arg))
3214                     return EXACT_MATCH_BADNESS; /* plain char -> plain char */
3215                   else          /* signed/unsigned char -> plain char */
3216                     return INTEGER_CONVERSION_BADNESS;
3217                 }
3218               else if (TYPE_UNSIGNED (parm))
3219                 {
3220                   if (TYPE_UNSIGNED (arg))
3221                     {
3222                       /* unsigned int -> unsigned int, or 
3223                          unsigned long -> unsigned long */
3224                       if (integer_types_same_name_p (TYPE_NAME (parm), 
3225                                                      TYPE_NAME (arg)))
3226                         return EXACT_MATCH_BADNESS;
3227                       else if (integer_types_same_name_p (TYPE_NAME (arg), 
3228                                                           "int")
3229                                && integer_types_same_name_p (TYPE_NAME (parm),
3230                                                              "long"))
3231                         /* unsigned int -> unsigned long */
3232                         return INTEGER_PROMOTION_BADNESS;
3233                       else
3234                         /* unsigned long -> unsigned int */
3235                         return INTEGER_CONVERSION_BADNESS;
3236                     }
3237                   else
3238                     {
3239                       if (integer_types_same_name_p (TYPE_NAME (arg), 
3240                                                      "long")
3241                           && integer_types_same_name_p (TYPE_NAME (parm), 
3242                                                         "int"))
3243                         /* signed long -> unsigned int */
3244                         return INTEGER_CONVERSION_BADNESS;
3245                       else
3246                         /* signed int/long -> unsigned int/long */
3247                         return INTEGER_CONVERSION_BADNESS;
3248                     }
3249                 }
3250               else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
3251                 {
3252                   if (integer_types_same_name_p (TYPE_NAME (parm), 
3253                                                  TYPE_NAME (arg)))
3254                     return EXACT_MATCH_BADNESS;
3255                   else if (integer_types_same_name_p (TYPE_NAME (arg), 
3256                                                       "int")
3257                            && integer_types_same_name_p (TYPE_NAME (parm), 
3258                                                          "long"))
3259                     return INTEGER_PROMOTION_BADNESS;
3260                   else
3261                     return INTEGER_CONVERSION_BADNESS;
3262                 }
3263               else
3264                 return INTEGER_CONVERSION_BADNESS;
3265             }
3266           else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
3267             return INTEGER_PROMOTION_BADNESS;
3268           else
3269             return INTEGER_CONVERSION_BADNESS;
3270         case TYPE_CODE_ENUM:
3271         case TYPE_CODE_FLAGS:
3272         case TYPE_CODE_CHAR:
3273         case TYPE_CODE_RANGE:
3274         case TYPE_CODE_BOOL:
3275           if (TYPE_DECLARED_CLASS (arg))
3276             return INCOMPATIBLE_TYPE_BADNESS;
3277           return INTEGER_PROMOTION_BADNESS;
3278         case TYPE_CODE_FLT:
3279           return INT_FLOAT_CONVERSION_BADNESS;
3280         case TYPE_CODE_PTR:
3281           return NS_POINTER_CONVERSION_BADNESS;
3282         default:
3283           return INCOMPATIBLE_TYPE_BADNESS;
3284         }
3285       break;
3286     case TYPE_CODE_ENUM:
3287       switch (TYPE_CODE (arg))
3288         {
3289         case TYPE_CODE_INT:
3290         case TYPE_CODE_CHAR:
3291         case TYPE_CODE_RANGE:
3292         case TYPE_CODE_BOOL:
3293         case TYPE_CODE_ENUM:
3294           if (TYPE_DECLARED_CLASS (parm) || TYPE_DECLARED_CLASS (arg))
3295             return INCOMPATIBLE_TYPE_BADNESS;
3296           return INTEGER_CONVERSION_BADNESS;
3297         case TYPE_CODE_FLT:
3298           return INT_FLOAT_CONVERSION_BADNESS;
3299         default:
3300           return INCOMPATIBLE_TYPE_BADNESS;
3301         }
3302       break;
3303     case TYPE_CODE_CHAR:
3304       switch (TYPE_CODE (arg))
3305         {
3306         case TYPE_CODE_RANGE:
3307         case TYPE_CODE_BOOL:
3308         case TYPE_CODE_ENUM:
3309           if (TYPE_DECLARED_CLASS (arg))
3310             return INCOMPATIBLE_TYPE_BADNESS;
3311           return INTEGER_CONVERSION_BADNESS;
3312         case TYPE_CODE_FLT:
3313           return INT_FLOAT_CONVERSION_BADNESS;
3314         case TYPE_CODE_INT:
3315           if (TYPE_LENGTH (arg) > TYPE_LENGTH (parm))
3316             return INTEGER_CONVERSION_BADNESS;
3317           else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
3318             return INTEGER_PROMOTION_BADNESS;
3319           /* >>> !! else fall through !! <<< */
3320         case TYPE_CODE_CHAR:
3321           /* Deal with signed, unsigned, and plain chars for C++ and
3322              with int cases falling through from previous case.  */
3323           if (TYPE_NOSIGN (parm))
3324             {
3325               if (TYPE_NOSIGN (arg))
3326                 return EXACT_MATCH_BADNESS;
3327               else
3328                 return INTEGER_CONVERSION_BADNESS;
3329             }
3330           else if (TYPE_UNSIGNED (parm))
3331             {
3332               if (TYPE_UNSIGNED (arg))
3333                 return EXACT_MATCH_BADNESS;
3334               else
3335                 return INTEGER_PROMOTION_BADNESS;
3336             }
3337           else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
3338             return EXACT_MATCH_BADNESS;
3339           else
3340             return INTEGER_CONVERSION_BADNESS;
3341         default:
3342           return INCOMPATIBLE_TYPE_BADNESS;
3343         }
3344       break;
3345     case TYPE_CODE_RANGE:
3346       switch (TYPE_CODE (arg))
3347         {
3348         case TYPE_CODE_INT:
3349         case TYPE_CODE_CHAR:
3350         case TYPE_CODE_RANGE:
3351         case TYPE_CODE_BOOL:
3352         case TYPE_CODE_ENUM:
3353           return INTEGER_CONVERSION_BADNESS;
3354         case TYPE_CODE_FLT:
3355           return INT_FLOAT_CONVERSION_BADNESS;
3356         default:
3357           return INCOMPATIBLE_TYPE_BADNESS;
3358         }
3359       break;
3360     case TYPE_CODE_BOOL:
3361       switch (TYPE_CODE (arg))
3362         {
3363           /* n3290 draft, section 4.12.1 (conv.bool):
3364
3365              "A prvalue of arithmetic, unscoped enumeration, pointer, or
3366              pointer to member type can be converted to a prvalue of type
3367              bool.  A zero value, null pointer value, or null member pointer
3368              value is converted to false; any other value is converted to
3369              true.  A prvalue of type std::nullptr_t can be converted to a
3370              prvalue of type bool; the resulting value is false."  */
3371         case TYPE_CODE_INT:
3372         case TYPE_CODE_CHAR:
3373         case TYPE_CODE_ENUM:
3374         case TYPE_CODE_FLT:
3375         case TYPE_CODE_MEMBERPTR:
3376         case TYPE_CODE_PTR:
3377           return BOOL_CONVERSION_BADNESS;
3378         case TYPE_CODE_RANGE:
3379           return INCOMPATIBLE_TYPE_BADNESS;
3380         case TYPE_CODE_BOOL:
3381           return EXACT_MATCH_BADNESS;
3382         default:
3383           return INCOMPATIBLE_TYPE_BADNESS;
3384         }
3385       break;
3386     case TYPE_CODE_FLT:
3387       switch (TYPE_CODE (arg))
3388         {
3389         case TYPE_CODE_FLT:
3390           if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
3391             return FLOAT_PROMOTION_BADNESS;
3392           else if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
3393             return EXACT_MATCH_BADNESS;
3394           else
3395             return FLOAT_CONVERSION_BADNESS;
3396         case TYPE_CODE_INT:
3397         case TYPE_CODE_BOOL:
3398         case TYPE_CODE_ENUM:
3399         case TYPE_CODE_RANGE:
3400         case TYPE_CODE_CHAR:
3401           return INT_FLOAT_CONVERSION_BADNESS;
3402         default:
3403           return INCOMPATIBLE_TYPE_BADNESS;
3404         }
3405       break;
3406     case TYPE_CODE_COMPLEX:
3407       switch (TYPE_CODE (arg))
3408         {               /* Strictly not needed for C++, but...  */
3409         case TYPE_CODE_FLT:
3410           return FLOAT_PROMOTION_BADNESS;
3411         case TYPE_CODE_COMPLEX:
3412           return EXACT_MATCH_BADNESS;
3413         default:
3414           return INCOMPATIBLE_TYPE_BADNESS;
3415         }
3416       break;
3417     case TYPE_CODE_STRUCT:
3418       /* currently same as TYPE_CODE_CLASS.  */
3419       switch (TYPE_CODE (arg))
3420         {
3421         case TYPE_CODE_STRUCT:
3422           /* Check for derivation */
3423           rank.subrank = distance_to_ancestor (parm, arg, 0);
3424           if (rank.subrank >= 0)
3425             return sum_ranks (BASE_CONVERSION_BADNESS, rank);
3426           /* else fall through */
3427         default:
3428           return INCOMPATIBLE_TYPE_BADNESS;
3429         }
3430       break;
3431     case TYPE_CODE_UNION:
3432       switch (TYPE_CODE (arg))
3433         {
3434         case TYPE_CODE_UNION:
3435         default:
3436           return INCOMPATIBLE_TYPE_BADNESS;
3437         }
3438       break;
3439     case TYPE_CODE_MEMBERPTR:
3440       switch (TYPE_CODE (arg))
3441         {
3442         default:
3443           return INCOMPATIBLE_TYPE_BADNESS;
3444         }
3445       break;
3446     case TYPE_CODE_METHOD:
3447       switch (TYPE_CODE (arg))
3448         {
3449
3450         default:
3451           return INCOMPATIBLE_TYPE_BADNESS;
3452         }
3453       break;
3454     case TYPE_CODE_REF:
3455       switch (TYPE_CODE (arg))
3456         {
3457
3458         default:
3459           return INCOMPATIBLE_TYPE_BADNESS;
3460         }
3461
3462       break;
3463     case TYPE_CODE_SET:
3464       switch (TYPE_CODE (arg))
3465         {
3466           /* Not in C++ */
3467         case TYPE_CODE_SET:
3468           return rank_one_type (TYPE_FIELD_TYPE (parm, 0), 
3469                                 TYPE_FIELD_TYPE (arg, 0), NULL);
3470         default:
3471           return INCOMPATIBLE_TYPE_BADNESS;
3472         }
3473       break;
3474     case TYPE_CODE_VOID:
3475     default:
3476       return INCOMPATIBLE_TYPE_BADNESS;
3477     }                           /* switch (TYPE_CODE (arg)) */
3478 }
3479
3480 /* End of functions for overload resolution.  */
3481 \f
3482 /* Routines to pretty-print types.  */
3483
3484 static void
3485 print_bit_vector (B_TYPE *bits, int nbits)
3486 {
3487   int bitno;
3488
3489   for (bitno = 0; bitno < nbits; bitno++)
3490     {
3491       if ((bitno % 8) == 0)
3492         {
3493           puts_filtered (" ");
3494         }
3495       if (B_TST (bits, bitno))
3496         printf_filtered (("1"));
3497       else
3498         printf_filtered (("0"));
3499     }
3500 }
3501
3502 /* Note the first arg should be the "this" pointer, we may not want to
3503    include it since we may get into a infinitely recursive
3504    situation.  */
3505
3506 static void
3507 print_arg_types (struct field *args, int nargs, int spaces)
3508 {
3509   if (args != NULL)
3510     {
3511       int i;
3512
3513       for (i = 0; i < nargs; i++)
3514         recursive_dump_type (args[i].type, spaces + 2);
3515     }
3516 }
3517
3518 int
3519 field_is_static (struct field *f)
3520 {
3521   /* "static" fields are the fields whose location is not relative
3522      to the address of the enclosing struct.  It would be nice to
3523      have a dedicated flag that would be set for static fields when
3524      the type is being created.  But in practice, checking the field
3525      loc_kind should give us an accurate answer.  */
3526   return (FIELD_LOC_KIND (*f) == FIELD_LOC_KIND_PHYSNAME
3527           || FIELD_LOC_KIND (*f) == FIELD_LOC_KIND_PHYSADDR);
3528 }
3529
3530 static void
3531 dump_fn_fieldlists (struct type *type, int spaces)
3532 {
3533   int method_idx;
3534   int overload_idx;
3535   struct fn_field *f;
3536
3537   printfi_filtered (spaces, "fn_fieldlists ");
3538   gdb_print_host_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
3539   printf_filtered ("\n");
3540   for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
3541     {
3542       f = TYPE_FN_FIELDLIST1 (type, method_idx);
3543       printfi_filtered (spaces + 2, "[%d] name '%s' (",
3544                         method_idx,
3545                         TYPE_FN_FIELDLIST_NAME (type, method_idx));
3546       gdb_print_host_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
3547                               gdb_stdout);
3548       printf_filtered (_(") length %d\n"),
3549                        TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
3550       for (overload_idx = 0;
3551            overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
3552            overload_idx++)
3553         {
3554           printfi_filtered (spaces + 4, "[%d] physname '%s' (",
3555                             overload_idx,
3556                             TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
3557           gdb_print_host_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
3558                                   gdb_stdout);
3559           printf_filtered (")\n");
3560           printfi_filtered (spaces + 8, "type ");
3561           gdb_print_host_address (TYPE_FN_FIELD_TYPE (f, overload_idx), 
3562                                   gdb_stdout);
3563           printf_filtered ("\n");
3564
3565           recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
3566                                spaces + 8 + 2);
3567
3568           printfi_filtered (spaces + 8, "args ");
3569           gdb_print_host_address (TYPE_FN_FIELD_ARGS (f, overload_idx), 
3570                                   gdb_stdout);
3571           printf_filtered ("\n");
3572
3573           print_arg_types (TYPE_FN_FIELD_ARGS (f, overload_idx),
3574                            TYPE_NFIELDS (TYPE_FN_FIELD_TYPE (f, 
3575                                                              overload_idx)),
3576                            spaces);
3577           printfi_filtered (spaces + 8, "fcontext ");
3578           gdb_print_host_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
3579                                   gdb_stdout);
3580           printf_filtered ("\n");
3581
3582           printfi_filtered (spaces + 8, "is_const %d\n",
3583                             TYPE_FN_FIELD_CONST (f, overload_idx));
3584           printfi_filtered (spaces + 8, "is_volatile %d\n",
3585                             TYPE_FN_FIELD_VOLATILE (f, overload_idx));
3586           printfi_filtered (spaces + 8, "is_private %d\n",
3587                             TYPE_FN_FIELD_PRIVATE (f, overload_idx));
3588           printfi_filtered (spaces + 8, "is_protected %d\n",
3589                             TYPE_FN_FIELD_PROTECTED (f, overload_idx));
3590           printfi_filtered (spaces + 8, "is_stub %d\n",
3591                             TYPE_FN_FIELD_STUB (f, overload_idx));
3592           printfi_filtered (spaces + 8, "voffset %u\n",
3593                             TYPE_FN_FIELD_VOFFSET (f, overload_idx));
3594         }
3595     }
3596 }
3597
3598 static void
3599 print_cplus_stuff (struct type *type, int spaces)
3600 {
3601   printfi_filtered (spaces, "n_baseclasses %d\n",
3602                     TYPE_N_BASECLASSES (type));
3603   printfi_filtered (spaces, "nfn_fields %d\n",
3604                     TYPE_NFN_FIELDS (type));
3605   if (TYPE_N_BASECLASSES (type) > 0)
3606     {
3607       printfi_filtered (spaces, "virtual_field_bits (%d bits at *",
3608                         TYPE_N_BASECLASSES (type));
3609       gdb_print_host_address (TYPE_FIELD_VIRTUAL_BITS (type), 
3610                               gdb_stdout);
3611       printf_filtered (")");
3612
3613       print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
3614                         TYPE_N_BASECLASSES (type));
3615       puts_filtered ("\n");
3616     }
3617   if (TYPE_NFIELDS (type) > 0)
3618     {
3619       if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
3620         {
3621           printfi_filtered (spaces, 
3622                             "private_field_bits (%d bits at *",
3623                             TYPE_NFIELDS (type));
3624           gdb_print_host_address (TYPE_FIELD_PRIVATE_BITS (type), 
3625                                   gdb_stdout);
3626           printf_filtered (")");
3627           print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
3628                             TYPE_NFIELDS (type));
3629           puts_filtered ("\n");
3630         }
3631       if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
3632         {
3633           printfi_filtered (spaces, 
3634                             "protected_field_bits (%d bits at *",
3635                             TYPE_NFIELDS (type));
3636           gdb_print_host_address (TYPE_FIELD_PROTECTED_BITS (type), 
3637                                   gdb_stdout);
3638           printf_filtered (")");
3639           print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
3640                             TYPE_NFIELDS (type));
3641           puts_filtered ("\n");
3642         }
3643     }
3644   if (TYPE_NFN_FIELDS (type) > 0)
3645     {
3646       dump_fn_fieldlists (type, spaces);
3647     }
3648 }
3649
3650 /* Print the contents of the TYPE's type_specific union, assuming that
3651    its type-specific kind is TYPE_SPECIFIC_GNAT_STUFF.  */
3652
3653 static void
3654 print_gnat_stuff (struct type *type, int spaces)
3655 {
3656   struct type *descriptive_type = TYPE_DESCRIPTIVE_TYPE (type);
3657
3658   recursive_dump_type (descriptive_type, spaces + 2);
3659 }
3660
3661 static struct obstack dont_print_type_obstack;
3662
3663 void
3664 recursive_dump_type (struct type *type, int spaces)
3665 {
3666   int idx;
3667
3668   if (spaces == 0)
3669     obstack_begin (&dont_print_type_obstack, 0);
3670
3671   if (TYPE_NFIELDS (type) > 0
3672       || (HAVE_CPLUS_STRUCT (type) && TYPE_NFN_FIELDS (type) > 0))
3673     {
3674       struct type **first_dont_print
3675         = (struct type **) obstack_base (&dont_print_type_obstack);
3676
3677       int i = (struct type **) 
3678         obstack_next_free (&dont_print_type_obstack) - first_dont_print;
3679
3680       while (--i >= 0)
3681         {
3682           if (type == first_dont_print[i])
3683             {
3684               printfi_filtered (spaces, "type node ");
3685               gdb_print_host_address (type, gdb_stdout);
3686               printf_filtered (_(" <same as already seen type>\n"));
3687               return;
3688             }
3689         }
3690
3691       obstack_ptr_grow (&dont_print_type_obstack, type);
3692     }
3693
3694   printfi_filtered (spaces, "type node ");
3695   gdb_print_host_address (type, gdb_stdout);
3696   printf_filtered ("\n");
3697   printfi_filtered (spaces, "name '%s' (",
3698                     TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
3699   gdb_print_host_address (TYPE_NAME (type), gdb_stdout);
3700   printf_filtered (")\n");
3701   printfi_filtered (spaces, "tagname '%s' (",
3702                     TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) : "<NULL>");
3703   gdb_print_host_address (TYPE_TAG_NAME (type), gdb_stdout);
3704   printf_filtered (")\n");
3705   printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
3706   switch (TYPE_CODE (type))
3707     {
3708     case TYPE_CODE_UNDEF:
3709       printf_filtered ("(TYPE_CODE_UNDEF)");
3710       break;
3711     case TYPE_CODE_PTR:
3712       printf_filtered ("(TYPE_CODE_PTR)");
3713       break;
3714     case TYPE_CODE_ARRAY:
3715       printf_filtered ("(TYPE_CODE_ARRAY)");
3716       break;
3717     case TYPE_CODE_STRUCT:
3718       printf_filtered ("(TYPE_CODE_STRUCT)");
3719       break;
3720     case TYPE_CODE_UNION:
3721       printf_filtered ("(TYPE_CODE_UNION)");
3722       break;
3723     case TYPE_CODE_ENUM:
3724       printf_filtered ("(TYPE_CODE_ENUM)");
3725       break;
3726     case TYPE_CODE_FLAGS:
3727       printf_filtered ("(TYPE_CODE_FLAGS)");
3728       break;
3729     case TYPE_CODE_FUNC:
3730       printf_filtered ("(TYPE_CODE_FUNC)");
3731       break;
3732     case TYPE_CODE_INT:
3733       printf_filtered ("(TYPE_CODE_INT)");
3734       break;
3735     case TYPE_CODE_FLT:
3736       printf_filtered ("(TYPE_CODE_FLT)");
3737       break;
3738     case TYPE_CODE_VOID:
3739       printf_filtered ("(TYPE_CODE_VOID)");
3740       break;
3741     case TYPE_CODE_SET:
3742       printf_filtered ("(TYPE_CODE_SET)");
3743       break;
3744     case TYPE_CODE_RANGE:
3745       printf_filtered ("(TYPE_CODE_RANGE)");
3746       break;
3747     case TYPE_CODE_STRING:
3748       printf_filtered ("(TYPE_CODE_STRING)");
3749       break;
3750     case TYPE_CODE_ERROR:
3751       printf_filtered ("(TYPE_CODE_ERROR)");
3752       break;
3753     case TYPE_CODE_MEMBERPTR:
3754       printf_filtered ("(TYPE_CODE_MEMBERPTR)");
3755       break;
3756     case TYPE_CODE_METHODPTR:
3757       printf_filtered ("(TYPE_CODE_METHODPTR)");
3758       break;
3759     case TYPE_CODE_METHOD:
3760       printf_filtered ("(TYPE_CODE_METHOD)");
3761       break;
3762     case TYPE_CODE_REF:
3763       printf_filtered ("(TYPE_CODE_REF)");
3764       break;
3765     case TYPE_CODE_CHAR:
3766       printf_filtered ("(TYPE_CODE_CHAR)");
3767       break;
3768     case TYPE_CODE_BOOL:
3769       printf_filtered ("(TYPE_CODE_BOOL)");
3770       break;
3771     case TYPE_CODE_COMPLEX:
3772       printf_filtered ("(TYPE_CODE_COMPLEX)");
3773       break;
3774     case TYPE_CODE_TYPEDEF:
3775       printf_filtered ("(TYPE_CODE_TYPEDEF)");
3776       break;
3777     case TYPE_CODE_NAMESPACE:
3778       printf_filtered ("(TYPE_CODE_NAMESPACE)");
3779       break;
3780     default:
3781       printf_filtered ("(UNKNOWN TYPE CODE)");
3782       break;
3783     }
3784   puts_filtered ("\n");
3785   printfi_filtered (spaces, "length %d\n", TYPE_LENGTH (type));
3786   if (TYPE_OBJFILE_OWNED (type))
3787     {
3788       printfi_filtered (spaces, "objfile ");
3789       gdb_print_host_address (TYPE_OWNER (type).objfile, gdb_stdout);
3790     }
3791   else
3792     {
3793       printfi_filtered (spaces, "gdbarch ");
3794       gdb_print_host_address (TYPE_OWNER (type).gdbarch, gdb_stdout);
3795     }
3796   printf_filtered ("\n");
3797   printfi_filtered (spaces, "target_type ");
3798   gdb_print_host_address (TYPE_TARGET_TYPE (type), gdb_stdout);
3799   printf_filtered ("\n");
3800   if (TYPE_TARGET_TYPE (type) != NULL)
3801     {
3802       recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
3803     }
3804   printfi_filtered (spaces, "pointer_type ");
3805   gdb_print_host_address (TYPE_POINTER_TYPE (type), gdb_stdout);
3806   printf_filtered ("\n");
3807   printfi_filtered (spaces, "reference_type ");
3808   gdb_print_host_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
3809   printf_filtered ("\n");
3810   printfi_filtered (spaces, "type_chain ");
3811   gdb_print_host_address (TYPE_CHAIN (type), gdb_stdout);
3812   printf_filtered ("\n");
3813   printfi_filtered (spaces, "instance_flags 0x%x", 
3814                     TYPE_INSTANCE_FLAGS (type));
3815   if (TYPE_CONST (type))
3816     {
3817       puts_filtered (" TYPE_FLAG_CONST");
3818     }
3819   if (TYPE_VOLATILE (type))
3820     {
3821       puts_filtered (" TYPE_FLAG_VOLATILE");
3822     }
3823   if (TYPE_CODE_SPACE (type))
3824     {
3825       puts_filtered (" TYPE_FLAG_CODE_SPACE");
3826     }
3827   if (TYPE_DATA_SPACE (type))
3828     {
3829       puts_filtered (" TYPE_FLAG_DATA_SPACE");
3830     }
3831   if (TYPE_ADDRESS_CLASS_1 (type))
3832     {
3833       puts_filtered (" TYPE_FLAG_ADDRESS_CLASS_1");
3834     }
3835   if (TYPE_ADDRESS_CLASS_2 (type))
3836     {
3837       puts_filtered (" TYPE_FLAG_ADDRESS_CLASS_2");
3838     }
3839   if (TYPE_RESTRICT (type))
3840     {
3841       puts_filtered (" TYPE_FLAG_RESTRICT");
3842     }
3843   puts_filtered ("\n");
3844
3845   printfi_filtered (spaces, "flags");
3846   if (TYPE_UNSIGNED (type))
3847     {
3848       puts_filtered (" TYPE_FLAG_UNSIGNED");
3849     }
3850   if (TYPE_NOSIGN (type))
3851     {
3852       puts_filtered (" TYPE_FLAG_NOSIGN");
3853     }
3854   if (TYPE_STUB (type))
3855     {
3856       puts_filtered (" TYPE_FLAG_STUB");
3857     }
3858   if (TYPE_TARGET_STUB (type))
3859     {
3860       puts_filtered (" TYPE_FLAG_TARGET_STUB");
3861     }
3862   if (TYPE_STATIC (type))
3863     {
3864       puts_filtered (" TYPE_FLAG_STATIC");
3865     }
3866   if (TYPE_PROTOTYPED (type))
3867     {
3868       puts_filtered (" TYPE_FLAG_PROTOTYPED");
3869     }
3870   if (TYPE_INCOMPLETE (type))
3871     {
3872       puts_filtered (" TYPE_FLAG_INCOMPLETE");
3873     }
3874   if (TYPE_VARARGS (type))
3875     {
3876       puts_filtered (" TYPE_FLAG_VARARGS");
3877     }
3878   /* This is used for things like AltiVec registers on ppc.  Gcc emits
3879      an attribute for the array type, which tells whether or not we
3880      have a vector, instead of a regular array.  */
3881   if (TYPE_VECTOR (type))
3882     {
3883       puts_filtered (" TYPE_FLAG_VECTOR");
3884     }
3885   if (TYPE_FIXED_INSTANCE (type))
3886     {
3887       puts_filtered (" TYPE_FIXED_INSTANCE");
3888     }
3889   if (TYPE_STUB_SUPPORTED (type))
3890     {
3891       puts_filtered (" TYPE_STUB_SUPPORTED");
3892     }
3893   if (TYPE_NOTTEXT (type))
3894     {
3895       puts_filtered (" TYPE_NOTTEXT");
3896     }
3897   puts_filtered ("\n");
3898   printfi_filtered (spaces, "nfields %d ", TYPE_NFIELDS (type));
3899   gdb_print_host_address (TYPE_FIELDS (type), gdb_stdout);
3900   puts_filtered ("\n");
3901   for (idx = 0; idx < TYPE_NFIELDS (type); idx++)
3902     {
3903       if (TYPE_CODE (type) == TYPE_CODE_ENUM)
3904         printfi_filtered (spaces + 2,
3905                           "[%d] enumval %s type ",
3906                           idx, plongest (TYPE_FIELD_ENUMVAL (type, idx)));
3907       else
3908         printfi_filtered (spaces + 2,
3909                           "[%d] bitpos %d bitsize %d type ",
3910                           idx, TYPE_FIELD_BITPOS (type, idx),
3911                           TYPE_FIELD_BITSIZE (type, idx));
3912       gdb_print_host_address (TYPE_FIELD_TYPE (type, idx), gdb_stdout);
3913       printf_filtered (" name '%s' (",
3914                        TYPE_FIELD_NAME (type, idx) != NULL
3915                        ? TYPE_FIELD_NAME (type, idx)
3916                        : "<NULL>");
3917       gdb_print_host_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
3918       printf_filtered (")\n");
3919       if (TYPE_FIELD_TYPE (type, idx) != NULL)
3920         {
3921           recursive_dump_type (TYPE_FIELD_TYPE (type, idx), spaces + 4);
3922         }
3923     }
3924   if (TYPE_CODE (type) == TYPE_CODE_RANGE)
3925     {
3926       printfi_filtered (spaces, "low %s%s  high %s%s\n",
3927                         plongest (TYPE_LOW_BOUND (type)), 
3928                         TYPE_LOW_BOUND_UNDEFINED (type) ? " (undefined)" : "",
3929                         plongest (TYPE_HIGH_BOUND (type)),
3930                         TYPE_HIGH_BOUND_UNDEFINED (type) 
3931                         ? " (undefined)" : "");
3932     }
3933   printfi_filtered (spaces, "vptr_basetype ");
3934   gdb_print_host_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
3935   puts_filtered ("\n");
3936   if (TYPE_VPTR_BASETYPE (type) != NULL)
3937     {
3938       recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
3939     }
3940   printfi_filtered (spaces, "vptr_fieldno %d\n", 
3941                     TYPE_VPTR_FIELDNO (type));
3942
3943   switch (TYPE_SPECIFIC_FIELD (type))
3944     {
3945       case TYPE_SPECIFIC_CPLUS_STUFF:
3946         printfi_filtered (spaces, "cplus_stuff ");
3947         gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type), 
3948                                 gdb_stdout);
3949         puts_filtered ("\n");
3950         print_cplus_stuff (type, spaces);
3951         break;
3952
3953       case TYPE_SPECIFIC_GNAT_STUFF:
3954         printfi_filtered (spaces, "gnat_stuff ");
3955         gdb_print_host_address (TYPE_GNAT_SPECIFIC (type), gdb_stdout);
3956         puts_filtered ("\n");
3957         print_gnat_stuff (type, spaces);
3958         break;
3959
3960       case TYPE_SPECIFIC_FLOATFORMAT:
3961         printfi_filtered (spaces, "floatformat ");
3962         if (TYPE_FLOATFORMAT (type) == NULL)
3963           puts_filtered ("(null)");
3964         else
3965           {
3966             puts_filtered ("{ ");
3967             if (TYPE_FLOATFORMAT (type)[0] == NULL
3968                 || TYPE_FLOATFORMAT (type)[0]->name == NULL)
3969               puts_filtered ("(null)");
3970             else
3971               puts_filtered (TYPE_FLOATFORMAT (type)[0]->name);
3972
3973             puts_filtered (", ");
3974             if (TYPE_FLOATFORMAT (type)[1] == NULL
3975                 || TYPE_FLOATFORMAT (type)[1]->name == NULL)
3976               puts_filtered ("(null)");
3977             else
3978               puts_filtered (TYPE_FLOATFORMAT (type)[1]->name);
3979
3980             puts_filtered (" }");
3981           }
3982         puts_filtered ("\n");
3983         break;
3984
3985       case TYPE_SPECIFIC_FUNC:
3986         printfi_filtered (spaces, "calling_convention %d\n",
3987                           TYPE_CALLING_CONVENTION (type));
3988         /* tail_call_list is not printed.  */
3989         break;
3990     }
3991
3992   if (spaces == 0)
3993     obstack_free (&dont_print_type_obstack, NULL);
3994 }
3995 \f
3996 /* Trivial helpers for the libiberty hash table, for mapping one
3997    type to another.  */
3998
3999 struct type_pair
4000 {
4001   struct type *old, *new;
4002 };
4003
4004 static hashval_t
4005 type_pair_hash (const void *item)
4006 {
4007   const struct type_pair *pair = item;
4008
4009   return htab_hash_pointer (pair->old);
4010 }
4011
4012 static int
4013 type_pair_eq (const void *item_lhs, const void *item_rhs)
4014 {
4015   const struct type_pair *lhs = item_lhs, *rhs = item_rhs;
4016
4017   return lhs->old == rhs->old;
4018 }
4019
4020 /* Allocate the hash table used by copy_type_recursive to walk
4021    types without duplicates.  We use OBJFILE's obstack, because
4022    OBJFILE is about to be deleted.  */
4023
4024 htab_t
4025 create_copied_types_hash (struct objfile *objfile)
4026 {
4027   return htab_create_alloc_ex (1, type_pair_hash, type_pair_eq,
4028                                NULL, &objfile->objfile_obstack,
4029                                hashtab_obstack_allocate,
4030                                dummy_obstack_deallocate);
4031 }
4032
4033 /* Recursively copy (deep copy) TYPE, if it is associated with
4034    OBJFILE.  Return a new type allocated using malloc, a saved type if
4035    we have already visited TYPE (using COPIED_TYPES), or TYPE if it is
4036    not associated with OBJFILE.  */
4037
4038 struct type *
4039 copy_type_recursive (struct objfile *objfile, 
4040                      struct type *type,
4041                      htab_t copied_types)
4042 {
4043   struct type_pair *stored, pair;
4044   void **slot;
4045   struct type *new_type;
4046
4047   if (! TYPE_OBJFILE_OWNED (type))
4048     return type;
4049
4050   /* This type shouldn't be pointing to any types in other objfiles;
4051      if it did, the type might disappear unexpectedly.  */
4052   gdb_assert (TYPE_OBJFILE (type) == objfile);
4053
4054   pair.old = type;
4055   slot = htab_find_slot (copied_types, &pair, INSERT);
4056   if (*slot != NULL)
4057     return ((struct type_pair *) *slot)->new;
4058
4059   new_type = alloc_type_arch (get_type_arch (type));
4060
4061   /* We must add the new type to the hash table immediately, in case
4062      we encounter this type again during a recursive call below.  */
4063   stored
4064     = obstack_alloc (&objfile->objfile_obstack, sizeof (struct type_pair));
4065   stored->old = type;
4066   stored->new = new_type;
4067   *slot = stored;
4068
4069   /* Copy the common fields of types.  For the main type, we simply
4070      copy the entire thing and then update specific fields as needed.  */
4071   *TYPE_MAIN_TYPE (new_type) = *TYPE_MAIN_TYPE (type);
4072   TYPE_OBJFILE_OWNED (new_type) = 0;
4073   TYPE_OWNER (new_type).gdbarch = get_type_arch (type);
4074
4075   if (TYPE_NAME (type))
4076     TYPE_NAME (new_type) = xstrdup (TYPE_NAME (type));
4077   if (TYPE_TAG_NAME (type))
4078     TYPE_TAG_NAME (new_type) = xstrdup (TYPE_TAG_NAME (type));
4079
4080   TYPE_INSTANCE_FLAGS (new_type) = TYPE_INSTANCE_FLAGS (type);
4081   TYPE_LENGTH (new_type) = TYPE_LENGTH (type);
4082
4083   /* Copy the fields.  */
4084   if (TYPE_NFIELDS (type))
4085     {
4086       int i, nfields;
4087
4088       nfields = TYPE_NFIELDS (type);
4089       TYPE_FIELDS (new_type) = XCNEWVEC (struct field, nfields);
4090       for (i = 0; i < nfields; i++)
4091         {
4092           TYPE_FIELD_ARTIFICIAL (new_type, i) = 
4093             TYPE_FIELD_ARTIFICIAL (type, i);
4094           TYPE_FIELD_BITSIZE (new_type, i) = TYPE_FIELD_BITSIZE (type, i);
4095           if (TYPE_FIELD_TYPE (type, i))
4096             TYPE_FIELD_TYPE (new_type, i)
4097               = copy_type_recursive (objfile, TYPE_FIELD_TYPE (type, i),
4098                                      copied_types);
4099           if (TYPE_FIELD_NAME (type, i))
4100             TYPE_FIELD_NAME (new_type, i) = 
4101               xstrdup (TYPE_FIELD_NAME (type, i));
4102           switch (TYPE_FIELD_LOC_KIND (type, i))
4103             {
4104             case FIELD_LOC_KIND_BITPOS:
4105               SET_FIELD_BITPOS (TYPE_FIELD (new_type, i),
4106                                 TYPE_FIELD_BITPOS (type, i));
4107               break;
4108             case FIELD_LOC_KIND_ENUMVAL:
4109               SET_FIELD_ENUMVAL (TYPE_FIELD (new_type, i),
4110                                  TYPE_FIELD_ENUMVAL (type, i));
4111               break;
4112             case FIELD_LOC_KIND_PHYSADDR:
4113               SET_FIELD_PHYSADDR (TYPE_FIELD (new_type, i),
4114                                   TYPE_FIELD_STATIC_PHYSADDR (type, i));
4115               break;
4116             case FIELD_LOC_KIND_PHYSNAME:
4117               SET_FIELD_PHYSNAME (TYPE_FIELD (new_type, i),
4118                                   xstrdup (TYPE_FIELD_STATIC_PHYSNAME (type,
4119                                                                        i)));
4120               break;
4121             default:
4122               internal_error (__FILE__, __LINE__,
4123                               _("Unexpected type field location kind: %d"),
4124                               TYPE_FIELD_LOC_KIND (type, i));
4125             }
4126         }
4127     }
4128
4129   /* For range types, copy the bounds information.  */
4130   if (TYPE_CODE (type) == TYPE_CODE_RANGE)
4131     {
4132       TYPE_RANGE_DATA (new_type) = xmalloc (sizeof (struct range_bounds));
4133       *TYPE_RANGE_DATA (new_type) = *TYPE_RANGE_DATA (type);
4134     }
4135
4136   /* Copy the data location information.  */
4137   if (TYPE_DATA_LOCATION (type) != NULL)
4138     {
4139       TYPE_DATA_LOCATION (new_type)
4140         = TYPE_ALLOC (new_type, sizeof (struct dynamic_prop));
4141       memcpy (TYPE_DATA_LOCATION (new_type), TYPE_DATA_LOCATION (type),
4142               sizeof (struct dynamic_prop));
4143     }
4144
4145   /* Copy pointers to other types.  */
4146   if (TYPE_TARGET_TYPE (type))
4147     TYPE_TARGET_TYPE (new_type) = 
4148       copy_type_recursive (objfile, 
4149                            TYPE_TARGET_TYPE (type),
4150                            copied_types);
4151   if (TYPE_VPTR_BASETYPE (type))
4152     TYPE_VPTR_BASETYPE (new_type) = 
4153       copy_type_recursive (objfile,
4154                            TYPE_VPTR_BASETYPE (type),
4155                            copied_types);
4156   /* Maybe copy the type_specific bits.
4157
4158      NOTE drow/2005-12-09: We do not copy the C++-specific bits like
4159      base classes and methods.  There's no fundamental reason why we
4160      can't, but at the moment it is not needed.  */
4161
4162   if (TYPE_CODE (type) == TYPE_CODE_FLT)
4163     TYPE_FLOATFORMAT (new_type) = TYPE_FLOATFORMAT (type);
4164   else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
4165            || TYPE_CODE (type) == TYPE_CODE_UNION
4166            || TYPE_CODE (type) == TYPE_CODE_NAMESPACE)
4167     INIT_CPLUS_SPECIFIC (new_type);
4168
4169   return new_type;
4170 }
4171
4172 /* Make a copy of the given TYPE, except that the pointer & reference
4173    types are not preserved.
4174    
4175    This function assumes that the given type has an associated objfile.
4176    This objfile is used to allocate the new type.  */
4177
4178 struct type *
4179 copy_type (const struct type *type)
4180 {
4181   struct type *new_type;
4182
4183   gdb_assert (TYPE_OBJFILE_OWNED (type));
4184
4185   new_type = alloc_type_copy (type);
4186   TYPE_INSTANCE_FLAGS (new_type) = TYPE_INSTANCE_FLAGS (type);
4187   TYPE_LENGTH (new_type) = TYPE_LENGTH (type);
4188   memcpy (TYPE_MAIN_TYPE (new_type), TYPE_MAIN_TYPE (type),
4189           sizeof (struct main_type));
4190   if (TYPE_DATA_LOCATION (type) != NULL)
4191     {
4192       TYPE_DATA_LOCATION (new_type)
4193         = TYPE_ALLOC (new_type, sizeof (struct dynamic_prop));
4194       memcpy (TYPE_DATA_LOCATION (new_type), TYPE_DATA_LOCATION (type),
4195               sizeof (struct dynamic_prop));
4196     }
4197
4198   return new_type;
4199 }
4200 \f
4201 /* Helper functions to initialize architecture-specific types.  */
4202
4203 /* Allocate a type structure associated with GDBARCH and set its
4204    CODE, LENGTH, and NAME fields.  */
4205
4206 struct type *
4207 arch_type (struct gdbarch *gdbarch,
4208            enum type_code code, int length, char *name)
4209 {
4210   struct type *type;
4211
4212   type = alloc_type_arch (gdbarch);
4213   TYPE_CODE (type) = code;
4214   TYPE_LENGTH (type) = length;
4215
4216   if (name)
4217     TYPE_NAME (type) = xstrdup (name);
4218
4219   return type;
4220 }
4221
4222 /* Allocate a TYPE_CODE_INT type structure associated with GDBARCH.
4223    BIT is the type size in bits.  If UNSIGNED_P is non-zero, set
4224    the type's TYPE_UNSIGNED flag.  NAME is the type name.  */
4225
4226 struct type *
4227 arch_integer_type (struct gdbarch *gdbarch,
4228                    int bit, int unsigned_p, char *name)
4229 {
4230   struct type *t;
4231
4232   t = arch_type (gdbarch, TYPE_CODE_INT, bit / TARGET_CHAR_BIT, name);
4233   if (unsigned_p)
4234     TYPE_UNSIGNED (t) = 1;
4235   if (name && strcmp (name, "char") == 0)
4236     TYPE_NOSIGN (t) = 1;
4237
4238   return t;
4239 }
4240
4241 /* Allocate a TYPE_CODE_CHAR type structure associated with GDBARCH.
4242    BIT is the type size in bits.  If UNSIGNED_P is non-zero, set
4243    the type's TYPE_UNSIGNED flag.  NAME is the type name.  */
4244
4245 struct type *
4246 arch_character_type (struct gdbarch *gdbarch,
4247                      int bit, int unsigned_p, char *name)
4248 {
4249   struct type *t;
4250
4251   t = arch_type (gdbarch, TYPE_CODE_CHAR, bit / TARGET_CHAR_BIT, name);
4252   if (unsigned_p)
4253     TYPE_UNSIGNED (t) = 1;
4254
4255   return t;
4256 }
4257
4258 /* Allocate a TYPE_CODE_BOOL type structure associated with GDBARCH.
4259    BIT is the type size in bits.  If UNSIGNED_P is non-zero, set
4260    the type's TYPE_UNSIGNED flag.  NAME is the type name.  */
4261
4262 struct type *
4263 arch_boolean_type (struct gdbarch *gdbarch,
4264                    int bit, int unsigned_p, char *name)
4265 {
4266   struct type *t;
4267
4268   t = arch_type (gdbarch, TYPE_CODE_BOOL, bit / TARGET_CHAR_BIT, name);
4269   if (unsigned_p)
4270     TYPE_UNSIGNED (t) = 1;
4271
4272   return t;
4273 }
4274
4275 /* Allocate a TYPE_CODE_FLT type structure associated with GDBARCH.
4276    BIT is the type size in bits; if BIT equals -1, the size is
4277    determined by the floatformat.  NAME is the type name.  Set the
4278    TYPE_FLOATFORMAT from FLOATFORMATS.  */
4279
4280 struct type *
4281 arch_float_type (struct gdbarch *gdbarch,
4282                  int bit, char *name, const struct floatformat **floatformats)
4283 {
4284   struct type *t;
4285
4286   if (bit == -1)
4287     {
4288       gdb_assert (floatformats != NULL);
4289       gdb_assert (floatformats[0] != NULL && floatformats[1] != NULL);
4290       bit = floatformats[0]->totalsize;
4291     }
4292   gdb_assert (bit >= 0);
4293
4294   t = arch_type (gdbarch, TYPE_CODE_FLT, bit / TARGET_CHAR_BIT, name);
4295   TYPE_FLOATFORMAT (t) = floatformats;
4296   return t;
4297 }
4298
4299 /* Allocate a TYPE_CODE_COMPLEX type structure associated with GDBARCH.
4300    NAME is the type name.  TARGET_TYPE is the component float type.  */
4301
4302 struct type *
4303 arch_complex_type (struct gdbarch *gdbarch,
4304                    char *name, struct type *target_type)
4305 {
4306   struct type *t;
4307
4308   t = arch_type (gdbarch, TYPE_CODE_COMPLEX,
4309                  2 * TYPE_LENGTH (target_type), name);
4310   TYPE_TARGET_TYPE (t) = target_type;
4311   return t;
4312 }
4313
4314 /* Allocate a TYPE_CODE_FLAGS type structure associated with GDBARCH.
4315    NAME is the type name.  LENGTH is the size of the flag word in bytes.  */
4316
4317 struct type *
4318 arch_flags_type (struct gdbarch *gdbarch, char *name, int length)
4319 {
4320   int nfields = length * TARGET_CHAR_BIT;
4321   struct type *type;
4322
4323   type = arch_type (gdbarch, TYPE_CODE_FLAGS, length, name);
4324   TYPE_UNSIGNED (type) = 1;
4325   TYPE_NFIELDS (type) = nfields;
4326   TYPE_FIELDS (type) = TYPE_ZALLOC (type, nfields * sizeof (struct field));
4327
4328   return type;
4329 }
4330
4331 /* Add field to TYPE_CODE_FLAGS type TYPE to indicate the bit at
4332    position BITPOS is called NAME.  */
4333
4334 void
4335 append_flags_type_flag (struct type *type, int bitpos, char *name)
4336 {
4337   gdb_assert (TYPE_CODE (type) == TYPE_CODE_FLAGS);
4338   gdb_assert (bitpos < TYPE_NFIELDS (type));
4339   gdb_assert (bitpos >= 0);
4340
4341   if (name)
4342     {
4343       TYPE_FIELD_NAME (type, bitpos) = xstrdup (name);
4344       SET_FIELD_BITPOS (TYPE_FIELD (type, bitpos), bitpos);
4345     }
4346   else
4347     {
4348       /* Don't show this field to the user.  */
4349       SET_FIELD_BITPOS (TYPE_FIELD (type, bitpos), -1);
4350     }
4351 }
4352
4353 /* Allocate a TYPE_CODE_STRUCT or TYPE_CODE_UNION type structure (as
4354    specified by CODE) associated with GDBARCH.  NAME is the type name.  */
4355
4356 struct type *
4357 arch_composite_type (struct gdbarch *gdbarch, char *name, enum type_code code)
4358 {
4359   struct type *t;
4360
4361   gdb_assert (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION);
4362   t = arch_type (gdbarch, code, 0, NULL);
4363   TYPE_TAG_NAME (t) = name;
4364   INIT_CPLUS_SPECIFIC (t);
4365   return t;
4366 }
4367
4368 /* Add new field with name NAME and type FIELD to composite type T.
4369    Do not set the field's position or adjust the type's length;
4370    the caller should do so.  Return the new field.  */
4371
4372 struct field *
4373 append_composite_type_field_raw (struct type *t, char *name,
4374                                  struct type *field)
4375 {
4376   struct field *f;
4377
4378   TYPE_NFIELDS (t) = TYPE_NFIELDS (t) + 1;
4379   TYPE_FIELDS (t) = xrealloc (TYPE_FIELDS (t),
4380                               sizeof (struct field) * TYPE_NFIELDS (t));
4381   f = &(TYPE_FIELDS (t)[TYPE_NFIELDS (t) - 1]);
4382   memset (f, 0, sizeof f[0]);
4383   FIELD_TYPE (f[0]) = field;
4384   FIELD_NAME (f[0]) = name;
4385   return f;
4386 }
4387
4388 /* Add new field with name NAME and type FIELD to composite type T.
4389    ALIGNMENT (if non-zero) specifies the minimum field alignment.  */
4390
4391 void
4392 append_composite_type_field_aligned (struct type *t, char *name,
4393                                      struct type *field, int alignment)
4394 {
4395   struct field *f = append_composite_type_field_raw (t, name, field);
4396
4397   if (TYPE_CODE (t) == TYPE_CODE_UNION)
4398     {
4399       if (TYPE_LENGTH (t) < TYPE_LENGTH (field))
4400         TYPE_LENGTH (t) = TYPE_LENGTH (field);
4401     }
4402   else if (TYPE_CODE (t) == TYPE_CODE_STRUCT)
4403     {
4404       TYPE_LENGTH (t) = TYPE_LENGTH (t) + TYPE_LENGTH (field);
4405       if (TYPE_NFIELDS (t) > 1)
4406         {
4407           SET_FIELD_BITPOS (f[0],
4408                             (FIELD_BITPOS (f[-1])
4409                              + (TYPE_LENGTH (FIELD_TYPE (f[-1]))
4410                                 * TARGET_CHAR_BIT)));
4411
4412           if (alignment)
4413             {
4414               int left;
4415
4416               alignment *= TARGET_CHAR_BIT;
4417               left = FIELD_BITPOS (f[0]) % alignment;
4418
4419               if (left)
4420                 {
4421                   SET_FIELD_BITPOS (f[0], FIELD_BITPOS (f[0]) + (alignment - left));
4422                   TYPE_LENGTH (t) += (alignment - left) / TARGET_CHAR_BIT;
4423                 }
4424             }
4425         }
4426     }
4427 }
4428
4429 /* Add new field with name NAME and type FIELD to composite type T.  */
4430
4431 void
4432 append_composite_type_field (struct type *t, char *name,
4433                              struct type *field)
4434 {
4435   append_composite_type_field_aligned (t, name, field, 0);
4436 }
4437
4438 static struct gdbarch_data *gdbtypes_data;
4439
4440 const struct builtin_type *
4441 builtin_type (struct gdbarch *gdbarch)
4442 {
4443   return gdbarch_data (gdbarch, gdbtypes_data);
4444 }
4445
4446 static void *
4447 gdbtypes_post_init (struct gdbarch *gdbarch)
4448 {
4449   struct builtin_type *builtin_type
4450     = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct builtin_type);
4451
4452   /* Basic types.  */
4453   builtin_type->builtin_void
4454     = arch_type (gdbarch, TYPE_CODE_VOID, 1, "void");
4455   builtin_type->builtin_char
4456     = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
4457                          !gdbarch_char_signed (gdbarch), "char");
4458   builtin_type->builtin_signed_char
4459     = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
4460                          0, "signed char");
4461   builtin_type->builtin_unsigned_char
4462     = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
4463                          1, "unsigned char");
4464   builtin_type->builtin_short
4465     = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
4466                          0, "short");
4467   builtin_type->builtin_unsigned_short
4468     = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
4469                          1, "unsigned short");
4470   builtin_type->builtin_int
4471     = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
4472                          0, "int");
4473   builtin_type->builtin_unsigned_int
4474     = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
4475                          1, "unsigned int");
4476   builtin_type->builtin_long
4477     = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
4478                          0, "long");
4479   builtin_type->builtin_unsigned_long
4480     = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
4481                          1, "unsigned long");
4482   builtin_type->builtin_long_long
4483     = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
4484                          0, "long long");
4485   builtin_type->builtin_unsigned_long_long
4486     = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
4487                          1, "unsigned long long");
4488   builtin_type->builtin_float
4489     = arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
4490                        "float", gdbarch_float_format (gdbarch));
4491   builtin_type->builtin_double
4492     = arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
4493                        "double", gdbarch_double_format (gdbarch));
4494   builtin_type->builtin_long_double
4495     = arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
4496                        "long double", gdbarch_long_double_format (gdbarch));
4497   builtin_type->builtin_complex
4498     = arch_complex_type (gdbarch, "complex",
4499                          builtin_type->builtin_float);
4500   builtin_type->builtin_double_complex
4501     = arch_complex_type (gdbarch, "double complex",
4502                          builtin_type->builtin_double);
4503   builtin_type->builtin_string
4504     = arch_type (gdbarch, TYPE_CODE_STRING, 1, "string");
4505   builtin_type->builtin_bool
4506     = arch_type (gdbarch, TYPE_CODE_BOOL, 1, "bool");
4507
4508   /* The following three are about decimal floating point types, which
4509      are 32-bits, 64-bits and 128-bits respectively.  */
4510   builtin_type->builtin_decfloat
4511     = arch_type (gdbarch, TYPE_CODE_DECFLOAT, 32 / 8, "_Decimal32");
4512   builtin_type->builtin_decdouble
4513     = arch_type (gdbarch, TYPE_CODE_DECFLOAT, 64 / 8, "_Decimal64");
4514   builtin_type->builtin_declong
4515     = arch_type (gdbarch, TYPE_CODE_DECFLOAT, 128 / 8, "_Decimal128");
4516
4517   /* "True" character types.  */
4518   builtin_type->builtin_true_char
4519     = arch_character_type (gdbarch, TARGET_CHAR_BIT, 0, "true character");
4520   builtin_type->builtin_true_unsigned_char
4521     = arch_character_type (gdbarch, TARGET_CHAR_BIT, 1, "true character");
4522
4523   /* Fixed-size integer types.  */
4524   builtin_type->builtin_int0
4525     = arch_integer_type (gdbarch, 0, 0, "int0_t");
4526   builtin_type->builtin_int8
4527     = arch_integer_type (gdbarch, 8, 0, "int8_t");
4528   builtin_type->builtin_uint8
4529     = arch_integer_type (gdbarch, 8, 1, "uint8_t");
4530   builtin_type->builtin_int16
4531     = arch_integer_type (gdbarch, 16, 0, "int16_t");
4532   builtin_type->builtin_uint16
4533     = arch_integer_type (gdbarch, 16, 1, "uint16_t");
4534   builtin_type->builtin_int32
4535     = arch_integer_type (gdbarch, 32, 0, "int32_t");
4536   builtin_type->builtin_uint32
4537     = arch_integer_type (gdbarch, 32, 1, "uint32_t");
4538   builtin_type->builtin_int64
4539     = arch_integer_type (gdbarch, 64, 0, "int64_t");
4540   builtin_type->builtin_uint64
4541     = arch_integer_type (gdbarch, 64, 1, "uint64_t");
4542   builtin_type->builtin_int128
4543     = arch_integer_type (gdbarch, 128, 0, "int128_t");
4544   builtin_type->builtin_uint128
4545     = arch_integer_type (gdbarch, 128, 1, "uint128_t");
4546   TYPE_INSTANCE_FLAGS (builtin_type->builtin_int8) |=
4547     TYPE_INSTANCE_FLAG_NOTTEXT;
4548   TYPE_INSTANCE_FLAGS (builtin_type->builtin_uint8) |=
4549     TYPE_INSTANCE_FLAG_NOTTEXT;
4550
4551   /* Wide character types.  */
4552   builtin_type->builtin_char16
4553     = arch_integer_type (gdbarch, 16, 0, "char16_t");
4554   builtin_type->builtin_char32
4555     = arch_integer_type (gdbarch, 32, 0, "char32_t");
4556         
4557
4558   /* Default data/code pointer types.  */
4559   builtin_type->builtin_data_ptr
4560     = lookup_pointer_type (builtin_type->builtin_void);
4561   builtin_type->builtin_func_ptr
4562     = lookup_pointer_type (lookup_function_type (builtin_type->builtin_void));
4563   builtin_type->builtin_func_func
4564     = lookup_function_type (builtin_type->builtin_func_ptr);
4565
4566   /* This type represents a GDB internal function.  */
4567   builtin_type->internal_fn
4568     = arch_type (gdbarch, TYPE_CODE_INTERNAL_FUNCTION, 0,
4569                  "<internal function>");
4570
4571   /* This type represents an xmethod.  */
4572   builtin_type->xmethod
4573     = arch_type (gdbarch, TYPE_CODE_XMETHOD, 0, "<xmethod>");
4574
4575   return builtin_type;
4576 }
4577
4578 /* This set of objfile-based types is intended to be used by symbol
4579    readers as basic types.  */
4580
4581 static const struct objfile_data *objfile_type_data;
4582
4583 const struct objfile_type *
4584 objfile_type (struct objfile *objfile)
4585 {
4586   struct gdbarch *gdbarch;
4587   struct objfile_type *objfile_type
4588     = objfile_data (objfile, objfile_type_data);
4589
4590   if (objfile_type)
4591     return objfile_type;
4592
4593   objfile_type = OBSTACK_CALLOC (&objfile->objfile_obstack,
4594                                  1, struct objfile_type);
4595
4596   /* Use the objfile architecture to determine basic type properties.  */
4597   gdbarch = get_objfile_arch (objfile);
4598
4599   /* Basic types.  */
4600   objfile_type->builtin_void
4601     = init_type (TYPE_CODE_VOID, 1,
4602                  0,
4603                  "void", objfile);
4604
4605   objfile_type->builtin_char
4606     = init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4607                  (TYPE_FLAG_NOSIGN
4608                   | (gdbarch_char_signed (gdbarch) ? 0 : TYPE_FLAG_UNSIGNED)),
4609                  "char", objfile);
4610   objfile_type->builtin_signed_char
4611     = init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4612                  0,
4613                  "signed char", objfile);
4614   objfile_type->builtin_unsigned_char
4615     = init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4616                  TYPE_FLAG_UNSIGNED,
4617                  "unsigned char", objfile);
4618   objfile_type->builtin_short
4619     = init_type (TYPE_CODE_INT,
4620                  gdbarch_short_bit (gdbarch) / TARGET_CHAR_BIT,
4621                  0, "short", objfile);
4622   objfile_type->builtin_unsigned_short
4623     = init_type (TYPE_CODE_INT,
4624                  gdbarch_short_bit (gdbarch) / TARGET_CHAR_BIT,
4625                  TYPE_FLAG_UNSIGNED, "unsigned short", objfile);
4626   objfile_type->builtin_int
4627     = init_type (TYPE_CODE_INT,
4628                  gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT,
4629                  0, "int", objfile);
4630   objfile_type->builtin_unsigned_int
4631     = init_type (TYPE_CODE_INT,
4632                  gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT,
4633                  TYPE_FLAG_UNSIGNED, "unsigned int", objfile);
4634   objfile_type->builtin_long
4635     = init_type (TYPE_CODE_INT,
4636                  gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT,
4637                  0, "long", objfile);
4638   objfile_type->builtin_unsigned_long
4639     = init_type (TYPE_CODE_INT,
4640                  gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT,
4641                  TYPE_FLAG_UNSIGNED, "unsigned long", objfile);
4642   objfile_type->builtin_long_long
4643     = init_type (TYPE_CODE_INT,
4644                  gdbarch_long_long_bit (gdbarch) / TARGET_CHAR_BIT,
4645                  0, "long long", objfile);
4646   objfile_type->builtin_unsigned_long_long
4647     = init_type (TYPE_CODE_INT,
4648                  gdbarch_long_long_bit (gdbarch) / TARGET_CHAR_BIT,
4649                  TYPE_FLAG_UNSIGNED, "unsigned long long", objfile);
4650
4651   objfile_type->builtin_float
4652     = init_type (TYPE_CODE_FLT,
4653                  gdbarch_float_bit (gdbarch) / TARGET_CHAR_BIT,
4654                  0, "float", objfile);
4655   TYPE_FLOATFORMAT (objfile_type->builtin_float)
4656     = gdbarch_float_format (gdbarch);
4657   objfile_type->builtin_double
4658     = init_type (TYPE_CODE_FLT,
4659                  gdbarch_double_bit (gdbarch) / TARGET_CHAR_BIT,
4660                  0, "double", objfile);
4661   TYPE_FLOATFORMAT (objfile_type->builtin_double)
4662     = gdbarch_double_format (gdbarch);
4663   objfile_type->builtin_long_double
4664     = init_type (TYPE_CODE_FLT,
4665                  gdbarch_long_double_bit (gdbarch) / TARGET_CHAR_BIT,
4666                  0, "long double", objfile);
4667   TYPE_FLOATFORMAT (objfile_type->builtin_long_double)
4668     = gdbarch_long_double_format (gdbarch);
4669
4670   /* This type represents a type that was unrecognized in symbol read-in.  */
4671   objfile_type->builtin_error
4672     = init_type (TYPE_CODE_ERROR, 0, 0, "<unknown type>", objfile);
4673
4674   /* The following set of types is used for symbols with no
4675      debug information.  */
4676   objfile_type->nodebug_text_symbol
4677     = init_type (TYPE_CODE_FUNC, 1, 0,
4678                  "<text variable, no debug info>", objfile);
4679   TYPE_TARGET_TYPE (objfile_type->nodebug_text_symbol)
4680     = objfile_type->builtin_int;
4681   objfile_type->nodebug_text_gnu_ifunc_symbol
4682     = init_type (TYPE_CODE_FUNC, 1, TYPE_FLAG_GNU_IFUNC,
4683                  "<text gnu-indirect-function variable, no debug info>",
4684                  objfile);
4685   TYPE_TARGET_TYPE (objfile_type->nodebug_text_gnu_ifunc_symbol)
4686     = objfile_type->nodebug_text_symbol;
4687   objfile_type->nodebug_got_plt_symbol
4688     = init_type (TYPE_CODE_PTR, gdbarch_addr_bit (gdbarch) / 8, 0,
4689                  "<text from jump slot in .got.plt, no debug info>",
4690                  objfile);
4691   TYPE_TARGET_TYPE (objfile_type->nodebug_got_plt_symbol)
4692     = objfile_type->nodebug_text_symbol;
4693   objfile_type->nodebug_data_symbol
4694     = init_type (TYPE_CODE_INT,
4695                  gdbarch_int_bit (gdbarch) / HOST_CHAR_BIT, 0,
4696                  "<data variable, no debug info>", objfile);
4697   objfile_type->nodebug_unknown_symbol
4698     = init_type (TYPE_CODE_INT, 1, 0,
4699                  "<variable (not text or data), no debug info>", objfile);
4700   objfile_type->nodebug_tls_symbol
4701     = init_type (TYPE_CODE_INT,
4702                  gdbarch_int_bit (gdbarch) / HOST_CHAR_BIT, 0,
4703                  "<thread local variable, no debug info>", objfile);
4704
4705   /* NOTE: on some targets, addresses and pointers are not necessarily
4706      the same.
4707
4708      The upshot is:
4709      - gdb's `struct type' always describes the target's
4710        representation.
4711      - gdb's `struct value' objects should always hold values in
4712        target form.
4713      - gdb's CORE_ADDR values are addresses in the unified virtual
4714        address space that the assembler and linker work with.  Thus,
4715        since target_read_memory takes a CORE_ADDR as an argument, it
4716        can access any memory on the target, even if the processor has
4717        separate code and data address spaces.
4718
4719      In this context, objfile_type->builtin_core_addr is a bit odd:
4720      it's a target type for a value the target will never see.  It's
4721      only used to hold the values of (typeless) linker symbols, which
4722      are indeed in the unified virtual address space.  */
4723
4724   objfile_type->builtin_core_addr
4725     = init_type (TYPE_CODE_INT,
4726                  gdbarch_addr_bit (gdbarch) / 8,
4727                  TYPE_FLAG_UNSIGNED, "__CORE_ADDR", objfile);
4728
4729   set_objfile_data (objfile, objfile_type_data, objfile_type);
4730   return objfile_type;
4731 }
4732
4733 extern initialize_file_ftype _initialize_gdbtypes;
4734
4735 void
4736 _initialize_gdbtypes (void)
4737 {
4738   gdbtypes_data = gdbarch_data_register_post_init (gdbtypes_post_init);
4739   objfile_type_data = register_objfile_data ();
4740
4741   add_setshow_zuinteger_cmd ("overload", no_class, &overload_debug,
4742                              _("Set debugging of C++ overloading."),
4743                              _("Show debugging of C++ overloading."),
4744                              _("When enabled, ranking of the "
4745                                "functions is displayed."),
4746                              NULL,
4747                              show_overload_debug,
4748                              &setdebuglist, &showdebuglist);
4749
4750   /* Add user knob for controlling resolution of opaque types.  */
4751   add_setshow_boolean_cmd ("opaque-type-resolution", class_support,
4752                            &opaque_type_resolution,
4753                            _("Set resolution of opaque struct/class/union"
4754                              " types (if set before loading symbols)."),
4755                            _("Show resolution of opaque struct/class/union"
4756                              " types (if set before loading symbols)."),
4757                            NULL, NULL,
4758                            show_opaque_type_resolution,
4759                            &setlist, &showlist);
4760
4761   /* Add an option to permit non-strict type checking.  */
4762   add_setshow_boolean_cmd ("type", class_support,
4763                            &strict_type_checking,
4764                            _("Set strict type checking."),
4765                            _("Show strict type checking."),
4766                            NULL, NULL,
4767                            show_strict_type_checking,
4768                            &setchecklist, &showchecklist);
4769 }