1 /* Support routines for manipulating internal types for GDB.
3 Copyright (C) 1992-2021 Free Software Foundation, Inc.
5 Contributed by Cygnus Support, using pieces from other GDB modules.
7 This file is part of GDB.
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.
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.
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/>. */
28 #include "expression.h"
33 #include "complaints.h"
37 #include "cp-support.h"
39 #include "dwarf2/loc.h"
41 #include "floatformat.h"
44 #include "gmp-utils.h"
46 /* Initialize BADNESS constants. */
48 const struct rank LENGTH_MISMATCH_BADNESS = {100,0};
50 const struct rank TOO_FEW_PARAMS_BADNESS = {100,0};
51 const struct rank INCOMPATIBLE_TYPE_BADNESS = {100,0};
53 const struct rank EXACT_MATCH_BADNESS = {0,0};
55 const struct rank INTEGER_PROMOTION_BADNESS = {1,0};
56 const struct rank FLOAT_PROMOTION_BADNESS = {1,0};
57 const struct rank BASE_PTR_CONVERSION_BADNESS = {1,0};
58 const struct rank CV_CONVERSION_BADNESS = {1, 0};
59 const struct rank INTEGER_CONVERSION_BADNESS = {2,0};
60 const struct rank FLOAT_CONVERSION_BADNESS = {2,0};
61 const struct rank INT_FLOAT_CONVERSION_BADNESS = {2,0};
62 const struct rank VOID_PTR_CONVERSION_BADNESS = {2,0};
63 const struct rank BOOL_CONVERSION_BADNESS = {3,0};
64 const struct rank BASE_CONVERSION_BADNESS = {2,0};
65 const struct rank REFERENCE_CONVERSION_BADNESS = {2,0};
66 const struct rank REFERENCE_SEE_THROUGH_BADNESS = {0,1};
67 const struct rank NULL_POINTER_CONVERSION_BADNESS = {2,0};
68 const struct rank NS_POINTER_CONVERSION_BADNESS = {10,0};
69 const struct rank NS_INTEGER_POINTER_CONVERSION_BADNESS = {3,0};
71 /* Floatformat pairs. */
72 const struct floatformat *floatformats_ieee_half[BFD_ENDIAN_UNKNOWN] = {
73 &floatformat_ieee_half_big,
74 &floatformat_ieee_half_little
76 const struct floatformat *floatformats_ieee_single[BFD_ENDIAN_UNKNOWN] = {
77 &floatformat_ieee_single_big,
78 &floatformat_ieee_single_little
80 const struct floatformat *floatformats_ieee_double[BFD_ENDIAN_UNKNOWN] = {
81 &floatformat_ieee_double_big,
82 &floatformat_ieee_double_little
84 const struct floatformat *floatformats_ieee_double_littlebyte_bigword[BFD_ENDIAN_UNKNOWN] = {
85 &floatformat_ieee_double_big,
86 &floatformat_ieee_double_littlebyte_bigword
88 const struct floatformat *floatformats_i387_ext[BFD_ENDIAN_UNKNOWN] = {
89 &floatformat_i387_ext,
92 const struct floatformat *floatformats_m68881_ext[BFD_ENDIAN_UNKNOWN] = {
93 &floatformat_m68881_ext,
94 &floatformat_m68881_ext
96 const struct floatformat *floatformats_arm_ext[BFD_ENDIAN_UNKNOWN] = {
97 &floatformat_arm_ext_big,
98 &floatformat_arm_ext_littlebyte_bigword
100 const struct floatformat *floatformats_ia64_spill[BFD_ENDIAN_UNKNOWN] = {
101 &floatformat_ia64_spill_big,
102 &floatformat_ia64_spill_little
104 const struct floatformat *floatformats_ia64_quad[BFD_ENDIAN_UNKNOWN] = {
105 &floatformat_ia64_quad_big,
106 &floatformat_ia64_quad_little
108 const struct floatformat *floatformats_vax_f[BFD_ENDIAN_UNKNOWN] = {
112 const struct floatformat *floatformats_vax_d[BFD_ENDIAN_UNKNOWN] = {
116 const struct floatformat *floatformats_ibm_long_double[BFD_ENDIAN_UNKNOWN] = {
117 &floatformat_ibm_long_double_big,
118 &floatformat_ibm_long_double_little
120 const struct floatformat *floatformats_bfloat16[BFD_ENDIAN_UNKNOWN] = {
121 &floatformat_bfloat16_big,
122 &floatformat_bfloat16_little
125 /* Should opaque types be resolved? */
127 static bool opaque_type_resolution = true;
129 /* See gdbtypes.h. */
131 unsigned int overload_debug = 0;
133 /* A flag to enable strict type checking. */
135 static bool strict_type_checking = true;
137 /* A function to show whether opaque types are resolved. */
140 show_opaque_type_resolution (struct ui_file *file, int from_tty,
141 struct cmd_list_element *c,
144 fprintf_filtered (file, _("Resolution of opaque struct/class/union types "
145 "(if set before loading symbols) is %s.\n"),
149 /* A function to show whether C++ overload debugging is enabled. */
152 show_overload_debug (struct ui_file *file, int from_tty,
153 struct cmd_list_element *c, const char *value)
155 fprintf_filtered (file, _("Debugging of C++ overloading is %s.\n"),
159 /* A function to show the status of strict type checking. */
162 show_strict_type_checking (struct ui_file *file, int from_tty,
163 struct cmd_list_element *c, const char *value)
165 fprintf_filtered (file, _("Strict type checking is %s.\n"), value);
169 /* Allocate a new OBJFILE-associated type structure and fill it
170 with some defaults. Space for the type structure is allocated
171 on the objfile's objfile_obstack. */
174 alloc_type (struct objfile *objfile)
178 gdb_assert (objfile != NULL);
180 /* Alloc the structure and start off with all fields zeroed. */
181 type = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct type);
182 TYPE_MAIN_TYPE (type) = OBSTACK_ZALLOC (&objfile->objfile_obstack,
184 OBJSTAT (objfile, n_types++);
186 type->set_owner (objfile);
188 /* Initialize the fields that might not be zero. */
190 type->set_code (TYPE_CODE_UNDEF);
191 TYPE_CHAIN (type) = type; /* Chain back to itself. */
196 /* Allocate a new GDBARCH-associated type structure and fill it
197 with some defaults. Space for the type structure is allocated
198 on the obstack associated with GDBARCH. */
201 alloc_type_arch (struct gdbarch *gdbarch)
205 gdb_assert (gdbarch != NULL);
207 /* Alloc the structure and start off with all fields zeroed. */
209 type = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct type);
210 TYPE_MAIN_TYPE (type) = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct main_type);
212 type->set_owner (gdbarch);
214 /* Initialize the fields that might not be zero. */
216 type->set_code (TYPE_CODE_UNDEF);
217 TYPE_CHAIN (type) = type; /* Chain back to itself. */
222 /* If TYPE is objfile-associated, allocate a new type structure
223 associated with the same objfile. If TYPE is gdbarch-associated,
224 allocate a new type structure associated with the same gdbarch. */
227 alloc_type_copy (const struct type *type)
229 if (type->is_objfile_owned ())
230 return alloc_type (type->objfile_owner ());
232 return alloc_type_arch (type->arch_owner ());
235 /* See gdbtypes.h. */
240 struct gdbarch *arch;
242 if (this->is_objfile_owned ())
243 arch = this->objfile_owner ()->arch ();
245 arch = this->arch_owner ();
247 /* The ARCH can be NULL if TYPE is associated with neither an objfile nor
248 a gdbarch, however, this is very rare, and even then, in most cases
249 that type::arch is called, we assume that a non-NULL value is
251 gdb_assert (arch != nullptr);
255 /* See gdbtypes.h. */
258 get_target_type (struct type *type)
262 type = TYPE_TARGET_TYPE (type);
264 type = check_typedef (type);
270 /* See gdbtypes.h. */
273 type_length_units (struct type *type)
275 int unit_size = gdbarch_addressable_memory_unit_size (type->arch ());
277 return TYPE_LENGTH (type) / unit_size;
280 /* Alloc a new type instance structure, fill it with some defaults,
281 and point it at OLDTYPE. Allocate the new type instance from the
282 same place as OLDTYPE. */
285 alloc_type_instance (struct type *oldtype)
289 /* Allocate the structure. */
291 if (!oldtype->is_objfile_owned ())
292 type = GDBARCH_OBSTACK_ZALLOC (oldtype->arch_owner (), struct type);
294 type = OBSTACK_ZALLOC (&oldtype->objfile_owner ()->objfile_obstack,
297 TYPE_MAIN_TYPE (type) = TYPE_MAIN_TYPE (oldtype);
299 TYPE_CHAIN (type) = type; /* Chain back to itself for now. */
304 /* Clear all remnants of the previous type at TYPE, in preparation for
305 replacing it with something else. Preserve owner information. */
308 smash_type (struct type *type)
310 bool objfile_owned = type->is_objfile_owned ();
311 objfile *objfile = type->objfile_owner ();
312 gdbarch *arch = type->arch_owner ();
314 memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
316 /* Restore owner information. */
318 type->set_owner (objfile);
320 type->set_owner (arch);
322 /* For now, delete the rings. */
323 TYPE_CHAIN (type) = type;
325 /* For now, leave the pointer/reference types alone. */
328 /* Lookup a pointer to a type TYPE. TYPEPTR, if nonzero, points
329 to a pointer to memory where the pointer type should be stored.
330 If *TYPEPTR is zero, update it to point to the pointer type we return.
331 We allocate new memory if needed. */
334 make_pointer_type (struct type *type, struct type **typeptr)
336 struct type *ntype; /* New type */
339 ntype = TYPE_POINTER_TYPE (type);
344 return ntype; /* Don't care about alloc,
345 and have new type. */
346 else if (*typeptr == 0)
348 *typeptr = ntype; /* Tracking alloc, and have new type. */
353 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
355 ntype = alloc_type_copy (type);
359 else /* We have storage, but need to reset it. */
362 chain = TYPE_CHAIN (ntype);
364 TYPE_CHAIN (ntype) = chain;
367 TYPE_TARGET_TYPE (ntype) = type;
368 TYPE_POINTER_TYPE (type) = ntype;
370 /* FIXME! Assumes the machine has only one representation for pointers! */
372 TYPE_LENGTH (ntype) = gdbarch_ptr_bit (type->arch ()) / TARGET_CHAR_BIT;
373 ntype->set_code (TYPE_CODE_PTR);
375 /* Mark pointers as unsigned. The target converts between pointers
376 and addresses (CORE_ADDRs) using gdbarch_pointer_to_address and
377 gdbarch_address_to_pointer. */
378 ntype->set_is_unsigned (true);
380 /* Update the length of all the other variants of this type. */
381 chain = TYPE_CHAIN (ntype);
382 while (chain != ntype)
384 TYPE_LENGTH (chain) = TYPE_LENGTH (ntype);
385 chain = TYPE_CHAIN (chain);
391 /* Given a type TYPE, return a type of pointers to that type.
392 May need to construct such a type if this is the first use. */
395 lookup_pointer_type (struct type *type)
397 return make_pointer_type (type, (struct type **) 0);
400 /* Lookup a C++ `reference' to a type TYPE. TYPEPTR, if nonzero,
401 points to a pointer to memory where the reference type should be
402 stored. If *TYPEPTR is zero, update it to point to the reference
403 type we return. We allocate new memory if needed. REFCODE denotes
404 the kind of reference type to lookup (lvalue or rvalue reference). */
407 make_reference_type (struct type *type, struct type **typeptr,
408 enum type_code refcode)
410 struct type *ntype; /* New type */
411 struct type **reftype;
414 gdb_assert (refcode == TYPE_CODE_REF || refcode == TYPE_CODE_RVALUE_REF);
416 ntype = (refcode == TYPE_CODE_REF ? TYPE_REFERENCE_TYPE (type)
417 : TYPE_RVALUE_REFERENCE_TYPE (type));
422 return ntype; /* Don't care about alloc,
423 and have new type. */
424 else if (*typeptr == 0)
426 *typeptr = ntype; /* Tracking alloc, and have new type. */
431 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
433 ntype = alloc_type_copy (type);
437 else /* We have storage, but need to reset it. */
440 chain = TYPE_CHAIN (ntype);
442 TYPE_CHAIN (ntype) = chain;
445 TYPE_TARGET_TYPE (ntype) = type;
446 reftype = (refcode == TYPE_CODE_REF ? &TYPE_REFERENCE_TYPE (type)
447 : &TYPE_RVALUE_REFERENCE_TYPE (type));
451 /* FIXME! Assume the machine has only one representation for
452 references, and that it matches the (only) representation for
455 TYPE_LENGTH (ntype) = gdbarch_ptr_bit (type->arch ()) / TARGET_CHAR_BIT;
456 ntype->set_code (refcode);
460 /* Update the length of all the other variants of this type. */
461 chain = TYPE_CHAIN (ntype);
462 while (chain != ntype)
464 TYPE_LENGTH (chain) = TYPE_LENGTH (ntype);
465 chain = TYPE_CHAIN (chain);
471 /* Same as above, but caller doesn't care about memory allocation
475 lookup_reference_type (struct type *type, enum type_code refcode)
477 return make_reference_type (type, (struct type **) 0, refcode);
480 /* Lookup the lvalue reference type for the type TYPE. */
483 lookup_lvalue_reference_type (struct type *type)
485 return lookup_reference_type (type, TYPE_CODE_REF);
488 /* Lookup the rvalue reference type for the type TYPE. */
491 lookup_rvalue_reference_type (struct type *type)
493 return lookup_reference_type (type, TYPE_CODE_RVALUE_REF);
496 /* Lookup a function type that returns type TYPE. TYPEPTR, if
497 nonzero, points to a pointer to memory where the function type
498 should be stored. If *TYPEPTR is zero, update it to point to the
499 function type we return. We allocate new memory if needed. */
502 make_function_type (struct type *type, struct type **typeptr)
504 struct type *ntype; /* New type */
506 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
508 ntype = alloc_type_copy (type);
512 else /* We have storage, but need to reset it. */
518 TYPE_TARGET_TYPE (ntype) = type;
520 TYPE_LENGTH (ntype) = 1;
521 ntype->set_code (TYPE_CODE_FUNC);
523 INIT_FUNC_SPECIFIC (ntype);
528 /* Given a type TYPE, return a type of functions that return that type.
529 May need to construct such a type if this is the first use. */
532 lookup_function_type (struct type *type)
534 return make_function_type (type, (struct type **) 0);
537 /* Given a type TYPE and argument types, return the appropriate
538 function type. If the final type in PARAM_TYPES is NULL, make a
542 lookup_function_type_with_arguments (struct type *type,
544 struct type **param_types)
546 struct type *fn = make_function_type (type, (struct type **) 0);
551 if (param_types[nparams - 1] == NULL)
554 fn->set_has_varargs (true);
556 else if (check_typedef (param_types[nparams - 1])->code ()
560 /* Caller should have ensured this. */
561 gdb_assert (nparams == 0);
562 fn->set_is_prototyped (true);
565 fn->set_is_prototyped (true);
568 fn->set_num_fields (nparams);
570 ((struct field *) TYPE_ZALLOC (fn, nparams * sizeof (struct field)));
571 for (i = 0; i < nparams; ++i)
572 fn->field (i).set_type (param_types[i]);
577 /* Identify address space identifier by name -- return a
578 type_instance_flags. */
581 address_space_name_to_type_instance_flags (struct gdbarch *gdbarch,
582 const char *space_identifier)
584 type_instance_flags type_flags;
586 /* Check for known address space delimiters. */
587 if (!strcmp (space_identifier, "code"))
588 return TYPE_INSTANCE_FLAG_CODE_SPACE;
589 else if (!strcmp (space_identifier, "data"))
590 return TYPE_INSTANCE_FLAG_DATA_SPACE;
591 else if (gdbarch_address_class_name_to_type_flags_p (gdbarch)
592 && gdbarch_address_class_name_to_type_flags (gdbarch,
597 error (_("Unknown address space specifier: \"%s\""), space_identifier);
600 /* Identify address space identifier by type_instance_flags and return
601 the string version of the adress space name. */
604 address_space_type_instance_flags_to_name (struct gdbarch *gdbarch,
605 type_instance_flags space_flag)
607 if (space_flag & TYPE_INSTANCE_FLAG_CODE_SPACE)
609 else if (space_flag & TYPE_INSTANCE_FLAG_DATA_SPACE)
611 else if ((space_flag & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
612 && gdbarch_address_class_type_flags_to_name_p (gdbarch))
613 return gdbarch_address_class_type_flags_to_name (gdbarch, space_flag);
618 /* Create a new type with instance flags NEW_FLAGS, based on TYPE.
620 If STORAGE is non-NULL, create the new type instance there.
621 STORAGE must be in the same obstack as TYPE. */
624 make_qualified_type (struct type *type, type_instance_flags new_flags,
625 struct type *storage)
632 if (ntype->instance_flags () == new_flags)
634 ntype = TYPE_CHAIN (ntype);
636 while (ntype != type);
638 /* Create a new type instance. */
640 ntype = alloc_type_instance (type);
643 /* If STORAGE was provided, it had better be in the same objfile
644 as TYPE. Otherwise, we can't link it into TYPE's cv chain:
645 if one objfile is freed and the other kept, we'd have
646 dangling pointers. */
647 gdb_assert (type->objfile_owner () == storage->objfile_owner ());
650 TYPE_MAIN_TYPE (ntype) = TYPE_MAIN_TYPE (type);
651 TYPE_CHAIN (ntype) = ntype;
654 /* Pointers or references to the original type are not relevant to
656 TYPE_POINTER_TYPE (ntype) = (struct type *) 0;
657 TYPE_REFERENCE_TYPE (ntype) = (struct type *) 0;
659 /* Chain the new qualified type to the old type. */
660 TYPE_CHAIN (ntype) = TYPE_CHAIN (type);
661 TYPE_CHAIN (type) = ntype;
663 /* Now set the instance flags and return the new type. */
664 ntype->set_instance_flags (new_flags);
666 /* Set length of new type to that of the original type. */
667 TYPE_LENGTH (ntype) = TYPE_LENGTH (type);
672 /* Make an address-space-delimited variant of a type -- a type that
673 is identical to the one supplied except that it has an address
674 space attribute attached to it (such as "code" or "data").
676 The space attributes "code" and "data" are for Harvard
677 architectures. The address space attributes are for architectures
678 which have alternately sized pointers or pointers with alternate
682 make_type_with_address_space (struct type *type,
683 type_instance_flags space_flag)
685 type_instance_flags new_flags = ((type->instance_flags ()
686 & ~(TYPE_INSTANCE_FLAG_CODE_SPACE
687 | TYPE_INSTANCE_FLAG_DATA_SPACE
688 | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL))
691 return make_qualified_type (type, new_flags, NULL);
694 /* Make a "c-v" variant of a type -- a type that is identical to the
695 one supplied except that it may have const or volatile attributes
696 CNST is a flag for setting the const attribute
697 VOLTL is a flag for setting the volatile attribute
698 TYPE is the base type whose variant we are creating.
700 If TYPEPTR and *TYPEPTR are non-zero, then *TYPEPTR points to
701 storage to hold the new qualified type; *TYPEPTR and TYPE must be
702 in the same objfile. Otherwise, allocate fresh memory for the new
703 type whereever TYPE lives. If TYPEPTR is non-zero, set it to the
704 new type we construct. */
707 make_cv_type (int cnst, int voltl,
709 struct type **typeptr)
711 struct type *ntype; /* New type */
713 type_instance_flags new_flags = (type->instance_flags ()
714 & ~(TYPE_INSTANCE_FLAG_CONST
715 | TYPE_INSTANCE_FLAG_VOLATILE));
718 new_flags |= TYPE_INSTANCE_FLAG_CONST;
721 new_flags |= TYPE_INSTANCE_FLAG_VOLATILE;
723 if (typeptr && *typeptr != NULL)
725 /* TYPE and *TYPEPTR must be in the same objfile. We can't have
726 a C-V variant chain that threads across objfiles: if one
727 objfile gets freed, then the other has a broken C-V chain.
729 This code used to try to copy over the main type from TYPE to
730 *TYPEPTR if they were in different objfiles, but that's
731 wrong, too: TYPE may have a field list or member function
732 lists, which refer to types of their own, etc. etc. The
733 whole shebang would need to be copied over recursively; you
734 can't have inter-objfile pointers. The only thing to do is
735 to leave stub types as stub types, and look them up afresh by
736 name each time you encounter them. */
737 gdb_assert ((*typeptr)->objfile_owner () == type->objfile_owner ());
740 ntype = make_qualified_type (type, new_flags,
741 typeptr ? *typeptr : NULL);
749 /* Make a 'restrict'-qualified version of TYPE. */
752 make_restrict_type (struct type *type)
754 return make_qualified_type (type,
755 (type->instance_flags ()
756 | TYPE_INSTANCE_FLAG_RESTRICT),
760 /* Make a type without const, volatile, or restrict. */
763 make_unqualified_type (struct type *type)
765 return make_qualified_type (type,
766 (type->instance_flags ()
767 & ~(TYPE_INSTANCE_FLAG_CONST
768 | TYPE_INSTANCE_FLAG_VOLATILE
769 | TYPE_INSTANCE_FLAG_RESTRICT)),
773 /* Make a '_Atomic'-qualified version of TYPE. */
776 make_atomic_type (struct type *type)
778 return make_qualified_type (type,
779 (type->instance_flags ()
780 | TYPE_INSTANCE_FLAG_ATOMIC),
784 /* Replace the contents of ntype with the type *type. This changes the
785 contents, rather than the pointer for TYPE_MAIN_TYPE (ntype); thus
786 the changes are propogated to all types in the TYPE_CHAIN.
788 In order to build recursive types, it's inevitable that we'll need
789 to update types in place --- but this sort of indiscriminate
790 smashing is ugly, and needs to be replaced with something more
791 controlled. TYPE_MAIN_TYPE is a step in this direction; it's not
792 clear if more steps are needed. */
795 replace_type (struct type *ntype, struct type *type)
799 /* These two types had better be in the same objfile. Otherwise,
800 the assignment of one type's main type structure to the other
801 will produce a type with references to objects (names; field
802 lists; etc.) allocated on an objfile other than its own. */
803 gdb_assert (ntype->objfile_owner () == type->objfile_owner ());
805 *TYPE_MAIN_TYPE (ntype) = *TYPE_MAIN_TYPE (type);
807 /* The type length is not a part of the main type. Update it for
808 each type on the variant chain. */
812 /* Assert that this element of the chain has no address-class bits
813 set in its flags. Such type variants might have type lengths
814 which are supposed to be different from the non-address-class
815 variants. This assertion shouldn't ever be triggered because
816 symbol readers which do construct address-class variants don't
817 call replace_type(). */
818 gdb_assert (TYPE_ADDRESS_CLASS_ALL (chain) == 0);
820 TYPE_LENGTH (chain) = TYPE_LENGTH (type);
821 chain = TYPE_CHAIN (chain);
823 while (ntype != chain);
825 /* Assert that the two types have equivalent instance qualifiers.
826 This should be true for at least all of our debug readers. */
827 gdb_assert (ntype->instance_flags () == type->instance_flags ());
830 /* Implement direct support for MEMBER_TYPE in GNU C++.
831 May need to construct such a type if this is the first use.
832 The TYPE is the type of the member. The DOMAIN is the type
833 of the aggregate that the member belongs to. */
836 lookup_memberptr_type (struct type *type, struct type *domain)
840 mtype = alloc_type_copy (type);
841 smash_to_memberptr_type (mtype, domain, type);
845 /* Return a pointer-to-method type, for a method of type TO_TYPE. */
848 lookup_methodptr_type (struct type *to_type)
852 mtype = alloc_type_copy (to_type);
853 smash_to_methodptr_type (mtype, to_type);
857 /* Allocate a stub method whose return type is TYPE. This apparently
858 happens for speed of symbol reading, since parsing out the
859 arguments to the method is cpu-intensive, the way we are doing it.
860 So, we will fill in arguments later. This always returns a fresh
864 allocate_stub_method (struct type *type)
868 mtype = alloc_type_copy (type);
869 mtype->set_code (TYPE_CODE_METHOD);
870 TYPE_LENGTH (mtype) = 1;
871 mtype->set_is_stub (true);
872 TYPE_TARGET_TYPE (mtype) = type;
873 /* TYPE_SELF_TYPE (mtype) = unknown yet */
877 /* See gdbtypes.h. */
880 operator== (const dynamic_prop &l, const dynamic_prop &r)
882 if (l.kind () != r.kind ())
890 return l.const_val () == r.const_val ();
891 case PROP_ADDR_OFFSET:
894 return l.baton () == r.baton ();
895 case PROP_VARIANT_PARTS:
896 return l.variant_parts () == r.variant_parts ();
898 return l.original_type () == r.original_type ();
901 gdb_assert_not_reached ("unhandled dynamic_prop kind");
904 /* See gdbtypes.h. */
907 operator== (const range_bounds &l, const range_bounds &r)
909 #define FIELD_EQ(FIELD) (l.FIELD == r.FIELD)
911 return (FIELD_EQ (low)
913 && FIELD_EQ (flag_upper_bound_is_count)
914 && FIELD_EQ (flag_bound_evaluated)
920 /* Create a range type with a dynamic range from LOW_BOUND to
921 HIGH_BOUND, inclusive. See create_range_type for further details. */
924 create_range_type (struct type *result_type, struct type *index_type,
925 const struct dynamic_prop *low_bound,
926 const struct dynamic_prop *high_bound,
929 /* The INDEX_TYPE should be a type capable of holding the upper and lower
930 bounds, as such a zero sized, or void type makes no sense. */
931 gdb_assert (index_type->code () != TYPE_CODE_VOID);
932 gdb_assert (TYPE_LENGTH (index_type) > 0);
934 if (result_type == NULL)
935 result_type = alloc_type_copy (index_type);
936 result_type->set_code (TYPE_CODE_RANGE);
937 TYPE_TARGET_TYPE (result_type) = index_type;
938 if (index_type->is_stub ())
939 result_type->set_target_is_stub (true);
941 TYPE_LENGTH (result_type) = TYPE_LENGTH (check_typedef (index_type));
944 = (struct range_bounds *) TYPE_ZALLOC (result_type, sizeof (range_bounds));
945 bounds->low = *low_bound;
946 bounds->high = *high_bound;
948 bounds->stride.set_const_val (0);
950 result_type->set_bounds (bounds);
952 if (index_type->code () == TYPE_CODE_FIXED_POINT)
953 result_type->set_is_unsigned (index_type->is_unsigned ());
954 /* Note that the signed-ness of a range type can't simply be copied
955 from the underlying type. Consider a case where the underlying
956 type is 'int', but the range type can hold 0..65535, and where
957 the range is further specified to fit into 16 bits. In this
958 case, if we copy the underlying type's sign, then reading some
959 range values will cause an unwanted sign extension. So, we have
960 some heuristics here instead. */
961 else if (low_bound->kind () == PROP_CONST && low_bound->const_val () >= 0)
962 result_type->set_is_unsigned (true);
963 /* Ada allows the declaration of range types whose upper bound is
964 less than the lower bound, so checking the lower bound is not
965 enough. Make sure we do not mark a range type whose upper bound
966 is negative as unsigned. */
967 if (high_bound->kind () == PROP_CONST && high_bound->const_val () < 0)
968 result_type->set_is_unsigned (false);
970 result_type->set_endianity_is_not_default
971 (index_type->endianity_is_not_default ());
976 /* See gdbtypes.h. */
979 create_range_type_with_stride (struct type *result_type,
980 struct type *index_type,
981 const struct dynamic_prop *low_bound,
982 const struct dynamic_prop *high_bound,
984 const struct dynamic_prop *stride,
987 result_type = create_range_type (result_type, index_type, low_bound,
990 gdb_assert (stride != nullptr);
991 result_type->bounds ()->stride = *stride;
992 result_type->bounds ()->flag_is_byte_stride = byte_stride_p;
999 /* Create a range type using either a blank type supplied in
1000 RESULT_TYPE, or creating a new type, inheriting the objfile from
1003 Indices will be of type INDEX_TYPE, and will range from LOW_BOUND
1004 to HIGH_BOUND, inclusive.
1006 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
1007 sure it is TYPE_CODE_UNDEF before we bash it into a range type? */
1010 create_static_range_type (struct type *result_type, struct type *index_type,
1011 LONGEST low_bound, LONGEST high_bound)
1013 struct dynamic_prop low, high;
1015 low.set_const_val (low_bound);
1016 high.set_const_val (high_bound);
1018 result_type = create_range_type (result_type, index_type, &low, &high, 0);
1023 /* Predicate tests whether BOUNDS are static. Returns 1 if all bounds values
1024 are static, otherwise returns 0. */
1027 has_static_range (const struct range_bounds *bounds)
1029 /* If the range doesn't have a defined stride then its stride field will
1030 be initialized to the constant 0. */
1031 return (bounds->low.kind () == PROP_CONST
1032 && bounds->high.kind () == PROP_CONST
1033 && bounds->stride.kind () == PROP_CONST);
1036 /* See gdbtypes.h. */
1038 gdb::optional<LONGEST>
1039 get_discrete_low_bound (struct type *type)
1041 type = check_typedef (type);
1042 switch (type->code ())
1044 case TYPE_CODE_RANGE:
1046 /* This function only works for ranges with a constant low bound. */
1047 if (type->bounds ()->low.kind () != PROP_CONST)
1050 LONGEST low = type->bounds ()->low.const_val ();
1052 if (TYPE_TARGET_TYPE (type)->code () == TYPE_CODE_ENUM)
1054 gdb::optional<LONGEST> low_pos
1055 = discrete_position (TYPE_TARGET_TYPE (type), low);
1057 if (low_pos.has_value ())
1064 case TYPE_CODE_ENUM:
1066 if (type->num_fields () > 0)
1068 /* The enums may not be sorted by value, so search all
1070 LONGEST low = TYPE_FIELD_ENUMVAL (type, 0);
1072 for (int i = 0; i < type->num_fields (); i++)
1074 if (TYPE_FIELD_ENUMVAL (type, i) < low)
1075 low = TYPE_FIELD_ENUMVAL (type, i);
1078 /* Set unsigned indicator if warranted. */
1080 type->set_is_unsigned (true);
1088 case TYPE_CODE_BOOL:
1092 if (TYPE_LENGTH (type) > sizeof (LONGEST)) /* Too big */
1095 if (!type->is_unsigned ())
1096 return -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
1099 case TYPE_CODE_CHAR:
1107 /* See gdbtypes.h. */
1109 gdb::optional<LONGEST>
1110 get_discrete_high_bound (struct type *type)
1112 type = check_typedef (type);
1113 switch (type->code ())
1115 case TYPE_CODE_RANGE:
1117 /* This function only works for ranges with a constant high bound. */
1118 if (type->bounds ()->high.kind () != PROP_CONST)
1121 LONGEST high = type->bounds ()->high.const_val ();
1123 if (TYPE_TARGET_TYPE (type)->code () == TYPE_CODE_ENUM)
1125 gdb::optional<LONGEST> high_pos
1126 = discrete_position (TYPE_TARGET_TYPE (type), high);
1128 if (high_pos.has_value ())
1135 case TYPE_CODE_ENUM:
1137 if (type->num_fields () > 0)
1139 /* The enums may not be sorted by value, so search all
1141 LONGEST high = TYPE_FIELD_ENUMVAL (type, 0);
1143 for (int i = 0; i < type->num_fields (); i++)
1145 if (TYPE_FIELD_ENUMVAL (type, i) > high)
1146 high = TYPE_FIELD_ENUMVAL (type, i);
1155 case TYPE_CODE_BOOL:
1159 if (TYPE_LENGTH (type) > sizeof (LONGEST)) /* Too big */
1162 if (!type->is_unsigned ())
1164 LONGEST low = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
1169 case TYPE_CODE_CHAR:
1171 /* This round-about calculation is to avoid shifting by
1172 TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
1173 if TYPE_LENGTH (type) == sizeof (LONGEST). */
1174 LONGEST high = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
1175 return (high - 1) | high;
1183 /* See gdbtypes.h. */
1186 get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp)
1188 gdb::optional<LONGEST> low = get_discrete_low_bound (type);
1189 if (!low.has_value ())
1192 gdb::optional<LONGEST> high = get_discrete_high_bound (type);
1193 if (!high.has_value ())
1202 /* See gdbtypes.h */
1205 get_array_bounds (struct type *type, LONGEST *low_bound, LONGEST *high_bound)
1207 struct type *index = type->index_type ();
1214 if (!get_discrete_bounds (index, &low, &high))
1226 /* Assuming that TYPE is a discrete type and VAL is a valid integer
1227 representation of a value of this type, save the corresponding
1228 position number in POS.
1230 Its differs from VAL only in the case of enumeration types. In
1231 this case, the position number of the value of the first listed
1232 enumeration literal is zero; the position number of the value of
1233 each subsequent enumeration literal is one more than that of its
1234 predecessor in the list.
1236 Return 1 if the operation was successful. Return zero otherwise,
1237 in which case the value of POS is unmodified.
1240 gdb::optional<LONGEST>
1241 discrete_position (struct type *type, LONGEST val)
1243 if (type->code () == TYPE_CODE_RANGE)
1244 type = TYPE_TARGET_TYPE (type);
1246 if (type->code () == TYPE_CODE_ENUM)
1250 for (i = 0; i < type->num_fields (); i += 1)
1252 if (val == TYPE_FIELD_ENUMVAL (type, i))
1256 /* Invalid enumeration value. */
1263 /* If the array TYPE has static bounds calculate and update its
1264 size, then return true. Otherwise return false and leave TYPE
1268 update_static_array_size (struct type *type)
1270 gdb_assert (type->code () == TYPE_CODE_ARRAY);
1272 struct type *range_type = type->index_type ();
1274 if (type->dyn_prop (DYN_PROP_BYTE_STRIDE) == nullptr
1275 && has_static_range (range_type->bounds ())
1276 && (!type_not_associated (type)
1277 && !type_not_allocated (type)))
1279 LONGEST low_bound, high_bound;
1281 struct type *element_type;
1283 /* If the array itself doesn't provide a stride value then take
1284 whatever stride the range provides. Don't update BIT_STRIDE as
1285 we don't want to place the stride value from the range into this
1286 arrays bit size field. */
1287 stride = TYPE_FIELD_BITSIZE (type, 0);
1289 stride = range_type->bit_stride ();
1291 if (!get_discrete_bounds (range_type, &low_bound, &high_bound))
1292 low_bound = high_bound = 0;
1294 element_type = check_typedef (TYPE_TARGET_TYPE (type));
1295 /* Be careful when setting the array length. Ada arrays can be
1296 empty arrays with the high_bound being smaller than the low_bound.
1297 In such cases, the array length should be zero. */
1298 if (high_bound < low_bound)
1299 TYPE_LENGTH (type) = 0;
1300 else if (stride != 0)
1302 /* Ensure that the type length is always positive, even in the
1303 case where (for example in Fortran) we have a negative
1304 stride. It is possible to have a single element array with a
1305 negative stride in Fortran (this doesn't mean anything
1306 special, it's still just a single element array) so do
1307 consider that case when touching this code. */
1308 LONGEST element_count = std::abs (high_bound - low_bound + 1);
1310 = ((std::abs (stride) * element_count) + 7) / 8;
1313 TYPE_LENGTH (type) =
1314 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
1316 /* If this array's element is itself an array with a bit stride,
1317 then we want to update this array's bit stride to reflect the
1318 size of the sub-array. Otherwise, we'll end up using the
1319 wrong size when trying to find elements of the outer
1321 if (element_type->code () == TYPE_CODE_ARRAY
1322 && TYPE_LENGTH (element_type) != 0
1323 && TYPE_FIELD_BITSIZE (element_type, 0) != 0
1324 && get_array_bounds (element_type, &low_bound, &high_bound)
1325 && high_bound >= low_bound)
1326 TYPE_FIELD_BITSIZE (type, 0)
1327 = ((high_bound - low_bound + 1)
1328 * TYPE_FIELD_BITSIZE (element_type, 0));
1336 /* Create an array type using either a blank type supplied in
1337 RESULT_TYPE, or creating a new type, inheriting the objfile from
1340 Elements will be of type ELEMENT_TYPE, the indices will be of type
1343 BYTE_STRIDE_PROP, when not NULL, provides the array's byte stride.
1344 This byte stride property is added to the resulting array type
1345 as a DYN_PROP_BYTE_STRIDE. As a consequence, the BYTE_STRIDE_PROP
1346 argument can only be used to create types that are objfile-owned
1347 (see add_dyn_prop), meaning that either this function must be called
1348 with an objfile-owned RESULT_TYPE, or an objfile-owned RANGE_TYPE.
1350 BIT_STRIDE is taken into account only when BYTE_STRIDE_PROP is NULL.
1351 If BIT_STRIDE is not zero, build a packed array type whose element
1352 size is BIT_STRIDE. Otherwise, ignore this parameter.
1354 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
1355 sure it is TYPE_CODE_UNDEF before we bash it into an array
1359 create_array_type_with_stride (struct type *result_type,
1360 struct type *element_type,
1361 struct type *range_type,
1362 struct dynamic_prop *byte_stride_prop,
1363 unsigned int bit_stride)
1365 if (byte_stride_prop != NULL
1366 && byte_stride_prop->kind () == PROP_CONST)
1368 /* The byte stride is actually not dynamic. Pretend we were
1369 called with bit_stride set instead of byte_stride_prop.
1370 This will give us the same result type, while avoiding
1371 the need to handle this as a special case. */
1372 bit_stride = byte_stride_prop->const_val () * 8;
1373 byte_stride_prop = NULL;
1376 if (result_type == NULL)
1377 result_type = alloc_type_copy (range_type);
1379 result_type->set_code (TYPE_CODE_ARRAY);
1380 TYPE_TARGET_TYPE (result_type) = element_type;
1382 result_type->set_num_fields (1);
1383 result_type->set_fields
1384 ((struct field *) TYPE_ZALLOC (result_type, sizeof (struct field)));
1385 result_type->set_index_type (range_type);
1386 if (byte_stride_prop != NULL)
1387 result_type->add_dyn_prop (DYN_PROP_BYTE_STRIDE, *byte_stride_prop);
1388 else if (bit_stride > 0)
1389 TYPE_FIELD_BITSIZE (result_type, 0) = bit_stride;
1391 if (!update_static_array_size (result_type))
1393 /* This type is dynamic and its length needs to be computed
1394 on demand. In the meantime, avoid leaving the TYPE_LENGTH
1395 undefined by setting it to zero. Although we are not expected
1396 to trust TYPE_LENGTH in this case, setting the size to zero
1397 allows us to avoid allocating objects of random sizes in case
1398 we accidently do. */
1399 TYPE_LENGTH (result_type) = 0;
1402 /* TYPE_TARGET_STUB will take care of zero length arrays. */
1403 if (TYPE_LENGTH (result_type) == 0)
1404 result_type->set_target_is_stub (true);
1409 /* Same as create_array_type_with_stride but with no bit_stride
1410 (BIT_STRIDE = 0), thus building an unpacked array. */
1413 create_array_type (struct type *result_type,
1414 struct type *element_type,
1415 struct type *range_type)
1417 return create_array_type_with_stride (result_type, element_type,
1418 range_type, NULL, 0);
1422 lookup_array_range_type (struct type *element_type,
1423 LONGEST low_bound, LONGEST high_bound)
1425 struct type *index_type;
1426 struct type *range_type;
1428 if (element_type->is_objfile_owned ())
1429 index_type = objfile_type (element_type->objfile_owner ())->builtin_int;
1431 index_type = builtin_type (element_type->arch_owner ())->builtin_int;
1433 range_type = create_static_range_type (NULL, index_type,
1434 low_bound, high_bound);
1436 return create_array_type (NULL, element_type, range_type);
1439 /* Create a string type using either a blank type supplied in
1440 RESULT_TYPE, or creating a new type. String types are similar
1441 enough to array of char types that we can use create_array_type to
1442 build the basic type and then bash it into a string type.
1444 For fixed length strings, the range type contains 0 as the lower
1445 bound and the length of the string minus one as the upper bound.
1447 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
1448 sure it is TYPE_CODE_UNDEF before we bash it into a string
1452 create_string_type (struct type *result_type,
1453 struct type *string_char_type,
1454 struct type *range_type)
1456 result_type = create_array_type (result_type,
1459 result_type->set_code (TYPE_CODE_STRING);
1464 lookup_string_range_type (struct type *string_char_type,
1465 LONGEST low_bound, LONGEST high_bound)
1467 struct type *result_type;
1469 result_type = lookup_array_range_type (string_char_type,
1470 low_bound, high_bound);
1471 result_type->set_code (TYPE_CODE_STRING);
1476 create_set_type (struct type *result_type, struct type *domain_type)
1478 if (result_type == NULL)
1479 result_type = alloc_type_copy (domain_type);
1481 result_type->set_code (TYPE_CODE_SET);
1482 result_type->set_num_fields (1);
1483 result_type->set_fields
1484 ((struct field *) TYPE_ZALLOC (result_type, sizeof (struct field)));
1486 if (!domain_type->is_stub ())
1488 LONGEST low_bound, high_bound, bit_length;
1490 if (!get_discrete_bounds (domain_type, &low_bound, &high_bound))
1491 low_bound = high_bound = 0;
1493 bit_length = high_bound - low_bound + 1;
1494 TYPE_LENGTH (result_type)
1495 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
1497 result_type->set_is_unsigned (true);
1499 result_type->field (0).set_type (domain_type);
1504 /* Convert ARRAY_TYPE to a vector type. This may modify ARRAY_TYPE
1505 and any array types nested inside it. */
1508 make_vector_type (struct type *array_type)
1510 struct type *inner_array, *elt_type;
1512 /* Find the innermost array type, in case the array is
1513 multi-dimensional. */
1514 inner_array = array_type;
1515 while (TYPE_TARGET_TYPE (inner_array)->code () == TYPE_CODE_ARRAY)
1516 inner_array = TYPE_TARGET_TYPE (inner_array);
1518 elt_type = TYPE_TARGET_TYPE (inner_array);
1519 if (elt_type->code () == TYPE_CODE_INT)
1521 type_instance_flags flags
1522 = elt_type->instance_flags () | TYPE_INSTANCE_FLAG_NOTTEXT;
1523 elt_type = make_qualified_type (elt_type, flags, NULL);
1524 TYPE_TARGET_TYPE (inner_array) = elt_type;
1527 array_type->set_is_vector (true);
1531 init_vector_type (struct type *elt_type, int n)
1533 struct type *array_type;
1535 array_type = lookup_array_range_type (elt_type, 0, n - 1);
1536 make_vector_type (array_type);
1540 /* Internal routine called by TYPE_SELF_TYPE to return the type that TYPE
1541 belongs to. In c++ this is the class of "this", but TYPE_THIS_TYPE is too
1542 confusing. "self" is a common enough replacement for "this".
1543 TYPE must be one of TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, or
1544 TYPE_CODE_METHOD. */
1547 internal_type_self_type (struct type *type)
1549 switch (type->code ())
1551 case TYPE_CODE_METHODPTR:
1552 case TYPE_CODE_MEMBERPTR:
1553 if (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_NONE)
1555 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_SELF_TYPE);
1556 return TYPE_MAIN_TYPE (type)->type_specific.self_type;
1557 case TYPE_CODE_METHOD:
1558 if (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_NONE)
1560 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_FUNC);
1561 return TYPE_MAIN_TYPE (type)->type_specific.func_stuff->self_type;
1563 gdb_assert_not_reached ("bad type");
1567 /* Set the type of the class that TYPE belongs to.
1568 In c++ this is the class of "this".
1569 TYPE must be one of TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, or
1570 TYPE_CODE_METHOD. */
1573 set_type_self_type (struct type *type, struct type *self_type)
1575 switch (type->code ())
1577 case TYPE_CODE_METHODPTR:
1578 case TYPE_CODE_MEMBERPTR:
1579 if (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_NONE)
1580 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_SELF_TYPE;
1581 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_SELF_TYPE);
1582 TYPE_MAIN_TYPE (type)->type_specific.self_type = self_type;
1584 case TYPE_CODE_METHOD:
1585 if (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_NONE)
1586 INIT_FUNC_SPECIFIC (type);
1587 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_FUNC);
1588 TYPE_MAIN_TYPE (type)->type_specific.func_stuff->self_type = self_type;
1591 gdb_assert_not_reached ("bad type");
1595 /* Smash TYPE to be a type of pointers to members of SELF_TYPE with type
1596 TO_TYPE. A member pointer is a wierd thing -- it amounts to a
1597 typed offset into a struct, e.g. "an int at offset 8". A MEMBER
1598 TYPE doesn't include the offset (that's the value of the MEMBER
1599 itself), but does include the structure type into which it points
1602 When "smashing" the type, we preserve the objfile that the old type
1603 pointed to, since we aren't changing where the type is actually
1607 smash_to_memberptr_type (struct type *type, struct type *self_type,
1608 struct type *to_type)
1611 type->set_code (TYPE_CODE_MEMBERPTR);
1612 TYPE_TARGET_TYPE (type) = to_type;
1613 set_type_self_type (type, self_type);
1614 /* Assume that a data member pointer is the same size as a normal
1616 TYPE_LENGTH (type) = gdbarch_ptr_bit (to_type->arch ()) / TARGET_CHAR_BIT;
1619 /* Smash TYPE to be a type of pointer to methods type TO_TYPE.
1621 When "smashing" the type, we preserve the objfile that the old type
1622 pointed to, since we aren't changing where the type is actually
1626 smash_to_methodptr_type (struct type *type, struct type *to_type)
1629 type->set_code (TYPE_CODE_METHODPTR);
1630 TYPE_TARGET_TYPE (type) = to_type;
1631 set_type_self_type (type, TYPE_SELF_TYPE (to_type));
1632 TYPE_LENGTH (type) = cplus_method_ptr_size (to_type);
1635 /* Smash TYPE to be a type of method of SELF_TYPE with type TO_TYPE.
1636 METHOD just means `function that gets an extra "this" argument'.
1638 When "smashing" the type, we preserve the objfile that the old type
1639 pointed to, since we aren't changing where the type is actually
1643 smash_to_method_type (struct type *type, struct type *self_type,
1644 struct type *to_type, struct field *args,
1645 int nargs, int varargs)
1648 type->set_code (TYPE_CODE_METHOD);
1649 TYPE_TARGET_TYPE (type) = to_type;
1650 set_type_self_type (type, self_type);
1651 type->set_fields (args);
1652 type->set_num_fields (nargs);
1654 type->set_has_varargs (true);
1655 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
1658 /* A wrapper of TYPE_NAME which calls error if the type is anonymous.
1659 Since GCC PR debug/47510 DWARF provides associated information to detect the
1660 anonymous class linkage name from its typedef.
1662 Parameter TYPE should not yet have CHECK_TYPEDEF applied, this function will
1666 type_name_or_error (struct type *type)
1668 struct type *saved_type = type;
1670 struct objfile *objfile;
1672 type = check_typedef (type);
1674 name = type->name ();
1678 name = saved_type->name ();
1679 objfile = saved_type->objfile_owner ();
1680 error (_("Invalid anonymous type %s [in module %s], GCC PR debug/47510 bug?"),
1681 name ? name : "<anonymous>",
1682 objfile ? objfile_name (objfile) : "<arch>");
1685 /* Lookup a typedef or primitive type named NAME, visible in lexical
1686 block BLOCK. If NOERR is nonzero, return zero if NAME is not
1687 suitably defined. */
1690 lookup_typename (const struct language_defn *language,
1692 const struct block *block, int noerr)
1696 sym = lookup_symbol_in_language (name, block, VAR_DOMAIN,
1697 language->la_language, NULL).symbol;
1698 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
1699 return SYMBOL_TYPE (sym);
1703 error (_("No type named %s."), name);
1707 lookup_unsigned_typename (const struct language_defn *language,
1710 char *uns = (char *) alloca (strlen (name) + 10);
1712 strcpy (uns, "unsigned ");
1713 strcpy (uns + 9, name);
1714 return lookup_typename (language, uns, NULL, 0);
1718 lookup_signed_typename (const struct language_defn *language, const char *name)
1721 char *uns = (char *) alloca (strlen (name) + 8);
1723 strcpy (uns, "signed ");
1724 strcpy (uns + 7, name);
1725 t = lookup_typename (language, uns, NULL, 1);
1726 /* If we don't find "signed FOO" just try again with plain "FOO". */
1729 return lookup_typename (language, name, NULL, 0);
1732 /* Lookup a structure type named "struct NAME",
1733 visible in lexical block BLOCK. */
1736 lookup_struct (const char *name, const struct block *block)
1740 sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0).symbol;
1744 error (_("No struct type named %s."), name);
1746 if (SYMBOL_TYPE (sym)->code () != TYPE_CODE_STRUCT)
1748 error (_("This context has class, union or enum %s, not a struct."),
1751 return (SYMBOL_TYPE (sym));
1754 /* Lookup a union type named "union NAME",
1755 visible in lexical block BLOCK. */
1758 lookup_union (const char *name, const struct block *block)
1763 sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0).symbol;
1766 error (_("No union type named %s."), name);
1768 t = SYMBOL_TYPE (sym);
1770 if (t->code () == TYPE_CODE_UNION)
1773 /* If we get here, it's not a union. */
1774 error (_("This context has class, struct or enum %s, not a union."),
1778 /* Lookup an enum type named "enum NAME",
1779 visible in lexical block BLOCK. */
1782 lookup_enum (const char *name, const struct block *block)
1786 sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0).symbol;
1789 error (_("No enum type named %s."), name);
1791 if (SYMBOL_TYPE (sym)->code () != TYPE_CODE_ENUM)
1793 error (_("This context has class, struct or union %s, not an enum."),
1796 return (SYMBOL_TYPE (sym));
1799 /* Lookup a template type named "template NAME<TYPE>",
1800 visible in lexical block BLOCK. */
1803 lookup_template_type (const char *name, struct type *type,
1804 const struct block *block)
1807 char *nam = (char *)
1808 alloca (strlen (name) + strlen (type->name ()) + 4);
1812 strcat (nam, type->name ());
1813 strcat (nam, " >"); /* FIXME, extra space still introduced in gcc? */
1815 sym = lookup_symbol (nam, block, VAR_DOMAIN, 0).symbol;
1819 error (_("No template type named %s."), name);
1821 if (SYMBOL_TYPE (sym)->code () != TYPE_CODE_STRUCT)
1823 error (_("This context has class, union or enum %s, not a struct."),
1826 return (SYMBOL_TYPE (sym));
1829 /* See gdbtypes.h. */
1832 lookup_struct_elt (struct type *type, const char *name, int noerr)
1838 type = check_typedef (type);
1839 if (type->code () != TYPE_CODE_PTR
1840 && type->code () != TYPE_CODE_REF)
1842 type = TYPE_TARGET_TYPE (type);
1845 if (type->code () != TYPE_CODE_STRUCT
1846 && type->code () != TYPE_CODE_UNION)
1848 std::string type_name = type_to_string (type);
1849 error (_("Type %s is not a structure or union type."),
1850 type_name.c_str ());
1853 for (i = type->num_fields () - 1; i >= TYPE_N_BASECLASSES (type); i--)
1855 const char *t_field_name = TYPE_FIELD_NAME (type, i);
1857 if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
1859 return {&type->field (i), TYPE_FIELD_BITPOS (type, i)};
1861 else if (!t_field_name || *t_field_name == '\0')
1864 = lookup_struct_elt (type->field (i).type (), name, 1);
1865 if (elt.field != NULL)
1867 elt.offset += TYPE_FIELD_BITPOS (type, i);
1873 /* OK, it's not in this class. Recursively check the baseclasses. */
1874 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1876 struct_elt elt = lookup_struct_elt (TYPE_BASECLASS (type, i), name, 1);
1877 if (elt.field != NULL)
1882 return {nullptr, 0};
1884 std::string type_name = type_to_string (type);
1885 error (_("Type %s has no component named %s."), type_name.c_str (), name);
1888 /* See gdbtypes.h. */
1891 lookup_struct_elt_type (struct type *type, const char *name, int noerr)
1893 struct_elt elt = lookup_struct_elt (type, name, noerr);
1894 if (elt.field != NULL)
1895 return elt.field->type ();
1900 /* Store in *MAX the largest number representable by unsigned integer type
1904 get_unsigned_type_max (struct type *type, ULONGEST *max)
1908 type = check_typedef (type);
1909 gdb_assert (type->code () == TYPE_CODE_INT && type->is_unsigned ());
1910 gdb_assert (TYPE_LENGTH (type) <= sizeof (ULONGEST));
1912 /* Written this way to avoid overflow. */
1913 n = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
1914 *max = ((((ULONGEST) 1 << (n - 1)) - 1) << 1) | 1;
1917 /* Store in *MIN, *MAX the smallest and largest numbers representable by
1918 signed integer type TYPE. */
1921 get_signed_type_minmax (struct type *type, LONGEST *min, LONGEST *max)
1925 type = check_typedef (type);
1926 gdb_assert (type->code () == TYPE_CODE_INT && !type->is_unsigned ());
1927 gdb_assert (TYPE_LENGTH (type) <= sizeof (LONGEST));
1929 n = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
1930 *min = -((ULONGEST) 1 << (n - 1));
1931 *max = ((ULONGEST) 1 << (n - 1)) - 1;
1934 /* Internal routine called by TYPE_VPTR_FIELDNO to return the value of
1935 cplus_stuff.vptr_fieldno.
1937 cplus_stuff is initialized to cplus_struct_default which does not
1938 set vptr_fieldno to -1 for portability reasons (IWBN to use C99
1939 designated initializers). We cope with that here. */
1942 internal_type_vptr_fieldno (struct type *type)
1944 type = check_typedef (type);
1945 gdb_assert (type->code () == TYPE_CODE_STRUCT
1946 || type->code () == TYPE_CODE_UNION);
1947 if (!HAVE_CPLUS_STRUCT (type))
1949 return TYPE_RAW_CPLUS_SPECIFIC (type)->vptr_fieldno;
1952 /* Set the value of cplus_stuff.vptr_fieldno. */
1955 set_type_vptr_fieldno (struct type *type, int fieldno)
1957 type = check_typedef (type);
1958 gdb_assert (type->code () == TYPE_CODE_STRUCT
1959 || type->code () == TYPE_CODE_UNION);
1960 if (!HAVE_CPLUS_STRUCT (type))
1961 ALLOCATE_CPLUS_STRUCT_TYPE (type);
1962 TYPE_RAW_CPLUS_SPECIFIC (type)->vptr_fieldno = fieldno;
1965 /* Internal routine called by TYPE_VPTR_BASETYPE to return the value of
1966 cplus_stuff.vptr_basetype. */
1969 internal_type_vptr_basetype (struct type *type)
1971 type = check_typedef (type);
1972 gdb_assert (type->code () == TYPE_CODE_STRUCT
1973 || type->code () == TYPE_CODE_UNION);
1974 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_CPLUS_STUFF);
1975 return TYPE_RAW_CPLUS_SPECIFIC (type)->vptr_basetype;
1978 /* Set the value of cplus_stuff.vptr_basetype. */
1981 set_type_vptr_basetype (struct type *type, struct type *basetype)
1983 type = check_typedef (type);
1984 gdb_assert (type->code () == TYPE_CODE_STRUCT
1985 || type->code () == TYPE_CODE_UNION);
1986 if (!HAVE_CPLUS_STRUCT (type))
1987 ALLOCATE_CPLUS_STRUCT_TYPE (type);
1988 TYPE_RAW_CPLUS_SPECIFIC (type)->vptr_basetype = basetype;
1991 /* Lookup the vptr basetype/fieldno values for TYPE.
1992 If found store vptr_basetype in *BASETYPEP if non-NULL, and return
1993 vptr_fieldno. Also, if found and basetype is from the same objfile,
1995 If not found, return -1 and ignore BASETYPEP.
1996 Callers should be aware that in some cases (for example,
1997 the type or one of its baseclasses is a stub type and we are
1998 debugging a .o file, or the compiler uses DWARF-2 and is not GCC),
1999 this function will not be able to find the
2000 virtual function table pointer, and vptr_fieldno will remain -1 and
2001 vptr_basetype will remain NULL or incomplete. */
2004 get_vptr_fieldno (struct type *type, struct type **basetypep)
2006 type = check_typedef (type);
2008 if (TYPE_VPTR_FIELDNO (type) < 0)
2012 /* We must start at zero in case the first (and only) baseclass
2013 is virtual (and hence we cannot share the table pointer). */
2014 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
2016 struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
2018 struct type *basetype;
2020 fieldno = get_vptr_fieldno (baseclass, &basetype);
2023 /* If the type comes from a different objfile we can't cache
2024 it, it may have a different lifetime. PR 2384 */
2025 if (type->objfile_owner () == basetype->objfile_owner ())
2027 set_type_vptr_fieldno (type, fieldno);
2028 set_type_vptr_basetype (type, basetype);
2031 *basetypep = basetype;
2042 *basetypep = TYPE_VPTR_BASETYPE (type);
2043 return TYPE_VPTR_FIELDNO (type);
2048 stub_noname_complaint (void)
2050 complaint (_("stub type has NULL name"));
2053 /* Return nonzero if TYPE has a DYN_PROP_BYTE_STRIDE dynamic property
2054 attached to it, and that property has a non-constant value. */
2057 array_type_has_dynamic_stride (struct type *type)
2059 struct dynamic_prop *prop = type->dyn_prop (DYN_PROP_BYTE_STRIDE);
2061 return (prop != NULL && prop->kind () != PROP_CONST);
2064 /* Worker for is_dynamic_type. */
2067 is_dynamic_type_internal (struct type *type, int top_level)
2069 type = check_typedef (type);
2071 /* We only want to recognize references at the outermost level. */
2072 if (top_level && type->code () == TYPE_CODE_REF)
2073 type = check_typedef (TYPE_TARGET_TYPE (type));
2075 /* Types that have a dynamic TYPE_DATA_LOCATION are considered
2076 dynamic, even if the type itself is statically defined.
2077 From a user's point of view, this may appear counter-intuitive;
2078 but it makes sense in this context, because the point is to determine
2079 whether any part of the type needs to be resolved before it can
2081 if (TYPE_DATA_LOCATION (type) != NULL
2082 && (TYPE_DATA_LOCATION_KIND (type) == PROP_LOCEXPR
2083 || TYPE_DATA_LOCATION_KIND (type) == PROP_LOCLIST))
2086 if (TYPE_ASSOCIATED_PROP (type))
2089 if (TYPE_ALLOCATED_PROP (type))
2092 struct dynamic_prop *prop = type->dyn_prop (DYN_PROP_VARIANT_PARTS);
2093 if (prop != nullptr && prop->kind () != PROP_TYPE)
2096 if (TYPE_HAS_DYNAMIC_LENGTH (type))
2099 switch (type->code ())
2101 case TYPE_CODE_RANGE:
2103 /* A range type is obviously dynamic if it has at least one
2104 dynamic bound. But also consider the range type to be
2105 dynamic when its subtype is dynamic, even if the bounds
2106 of the range type are static. It allows us to assume that
2107 the subtype of a static range type is also static. */
2108 return (!has_static_range (type->bounds ())
2109 || is_dynamic_type_internal (TYPE_TARGET_TYPE (type), 0));
2112 case TYPE_CODE_STRING:
2113 /* Strings are very much like an array of characters, and can be
2114 treated as one here. */
2115 case TYPE_CODE_ARRAY:
2117 gdb_assert (type->num_fields () == 1);
2119 /* The array is dynamic if either the bounds are dynamic... */
2120 if (is_dynamic_type_internal (type->index_type (), 0))
2122 /* ... or the elements it contains have a dynamic contents... */
2123 if (is_dynamic_type_internal (TYPE_TARGET_TYPE (type), 0))
2125 /* ... or if it has a dynamic stride... */
2126 if (array_type_has_dynamic_stride (type))
2131 case TYPE_CODE_STRUCT:
2132 case TYPE_CODE_UNION:
2136 bool is_cplus = HAVE_CPLUS_STRUCT (type);
2138 for (i = 0; i < type->num_fields (); ++i)
2140 /* Static fields can be ignored here. */
2141 if (field_is_static (&type->field (i)))
2143 /* If the field has dynamic type, then so does TYPE. */
2144 if (is_dynamic_type_internal (type->field (i).type (), 0))
2146 /* If the field is at a fixed offset, then it is not
2148 if (TYPE_FIELD_LOC_KIND (type, i) != FIELD_LOC_KIND_DWARF_BLOCK)
2150 /* Do not consider C++ virtual base types to be dynamic
2151 due to the field's offset being dynamic; these are
2152 handled via other means. */
2153 if (is_cplus && BASETYPE_VIA_VIRTUAL (type, i))
2164 /* See gdbtypes.h. */
2167 is_dynamic_type (struct type *type)
2169 return is_dynamic_type_internal (type, 1);
2172 static struct type *resolve_dynamic_type_internal
2173 (struct type *type, struct property_addr_info *addr_stack, int top_level);
2175 /* Given a dynamic range type (dyn_range_type) and a stack of
2176 struct property_addr_info elements, return a static version
2179 When RESOLVE_P is true then the returned static range is created by
2180 actually evaluating any dynamic properties within the range type, while
2181 when RESOLVE_P is false the returned static range has all of the bounds
2182 and stride information set to undefined. The RESOLVE_P set to false
2183 case will be used when evaluating a dynamic array that is not
2184 allocated, or not associated, i.e. the bounds information might not be
2187 static struct type *
2188 resolve_dynamic_range (struct type *dyn_range_type,
2189 struct property_addr_info *addr_stack,
2190 bool resolve_p = true)
2193 struct type *static_range_type, *static_target_type;
2194 struct dynamic_prop low_bound, high_bound, stride;
2196 gdb_assert (dyn_range_type->code () == TYPE_CODE_RANGE);
2198 const struct dynamic_prop *prop = &dyn_range_type->bounds ()->low;
2199 if (resolve_p && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2200 low_bound.set_const_val (value);
2202 low_bound.set_undefined ();
2204 prop = &dyn_range_type->bounds ()->high;
2205 if (resolve_p && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2207 high_bound.set_const_val (value);
2209 if (dyn_range_type->bounds ()->flag_upper_bound_is_count)
2210 high_bound.set_const_val
2211 (low_bound.const_val () + high_bound.const_val () - 1);
2214 high_bound.set_undefined ();
2216 bool byte_stride_p = dyn_range_type->bounds ()->flag_is_byte_stride;
2217 prop = &dyn_range_type->bounds ()->stride;
2218 if (resolve_p && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2220 stride.set_const_val (value);
2222 /* If we have a bit stride that is not an exact number of bytes then
2223 I really don't think this is going to work with current GDB, the
2224 array indexing code in GDB seems to be pretty heavily tied to byte
2225 offsets right now. Assuming 8 bits in a byte. */
2226 struct gdbarch *gdbarch = dyn_range_type->arch ();
2227 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
2228 if (!byte_stride_p && (value % (unit_size * 8)) != 0)
2229 error (_("bit strides that are not a multiple of the byte size "
2230 "are currently not supported"));
2234 stride.set_undefined ();
2235 byte_stride_p = true;
2239 = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (dyn_range_type),
2241 LONGEST bias = dyn_range_type->bounds ()->bias;
2242 static_range_type = create_range_type_with_stride
2243 (copy_type (dyn_range_type), static_target_type,
2244 &low_bound, &high_bound, bias, &stride, byte_stride_p);
2245 static_range_type->bounds ()->flag_bound_evaluated = 1;
2246 return static_range_type;
2249 /* Resolves dynamic bound values of an array or string type TYPE to static
2250 ones. ADDR_STACK is a stack of struct property_addr_info to be used if
2251 needed during the dynamic resolution.
2253 When RESOLVE_P is true then the dynamic properties of TYPE are
2254 evaluated, otherwise the dynamic properties of TYPE are not evaluated,
2255 instead we assume the array is not allocated/associated yet. */
2257 static struct type *
2258 resolve_dynamic_array_or_string (struct type *type,
2259 struct property_addr_info *addr_stack,
2260 bool resolve_p = true)
2263 struct type *elt_type;
2264 struct type *range_type;
2265 struct type *ary_dim;
2266 struct dynamic_prop *prop;
2267 unsigned int bit_stride = 0;
2269 /* For dynamic type resolution strings can be treated like arrays of
2271 gdb_assert (type->code () == TYPE_CODE_ARRAY
2272 || type->code () == TYPE_CODE_STRING);
2274 type = copy_type (type);
2276 /* Resolve the allocated and associated properties before doing anything
2277 else. If an array is not allocated or not associated then (at least
2278 for Fortran) there is no guarantee that the data to define the upper
2279 bound, lower bound, or stride will be correct. If RESOLVE_P is
2280 already false at this point then this is not the first dimension of
2281 the array and a more outer dimension has already marked this array as
2282 not allocated/associated, as such we just ignore this property. This
2283 is fine as GDB only checks the allocated/associated on the outer most
2284 dimension of the array. */
2285 prop = TYPE_ALLOCATED_PROP (type);
2286 if (prop != NULL && resolve_p
2287 && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2289 prop->set_const_val (value);
2294 prop = TYPE_ASSOCIATED_PROP (type);
2295 if (prop != NULL && resolve_p
2296 && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2298 prop->set_const_val (value);
2303 range_type = check_typedef (type->index_type ());
2304 range_type = resolve_dynamic_range (range_type, addr_stack, resolve_p);
2306 ary_dim = check_typedef (TYPE_TARGET_TYPE (type));
2307 if (ary_dim != NULL && ary_dim->code () == TYPE_CODE_ARRAY)
2308 elt_type = resolve_dynamic_array_or_string (ary_dim, addr_stack, resolve_p);
2310 elt_type = TYPE_TARGET_TYPE (type);
2312 prop = type->dyn_prop (DYN_PROP_BYTE_STRIDE);
2313 if (prop != NULL && resolve_p)
2315 if (dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2317 type->remove_dyn_prop (DYN_PROP_BYTE_STRIDE);
2318 bit_stride = (unsigned int) (value * 8);
2322 /* Could be a bug in our code, but it could also happen
2323 if the DWARF info is not correct. Issue a warning,
2324 and assume no byte/bit stride (leave bit_stride = 0). */
2325 warning (_("cannot determine array stride for type %s"),
2326 type->name () ? type->name () : "<no name>");
2330 bit_stride = TYPE_FIELD_BITSIZE (type, 0);
2332 return create_array_type_with_stride (type, elt_type, range_type, NULL,
2336 /* Resolve dynamic bounds of members of the union TYPE to static
2337 bounds. ADDR_STACK is a stack of struct property_addr_info
2338 to be used if needed during the dynamic resolution. */
2340 static struct type *
2341 resolve_dynamic_union (struct type *type,
2342 struct property_addr_info *addr_stack)
2344 struct type *resolved_type;
2346 unsigned int max_len = 0;
2348 gdb_assert (type->code () == TYPE_CODE_UNION);
2350 resolved_type = copy_type (type);
2351 resolved_type->set_fields
2353 TYPE_ALLOC (resolved_type,
2354 resolved_type->num_fields () * sizeof (struct field)));
2355 memcpy (resolved_type->fields (),
2357 resolved_type->num_fields () * sizeof (struct field));
2358 for (i = 0; i < resolved_type->num_fields (); ++i)
2362 if (field_is_static (&type->field (i)))
2365 t = resolve_dynamic_type_internal (resolved_type->field (i).type (),
2367 resolved_type->field (i).set_type (t);
2369 struct type *real_type = check_typedef (t);
2370 if (TYPE_LENGTH (real_type) > max_len)
2371 max_len = TYPE_LENGTH (real_type);
2374 TYPE_LENGTH (resolved_type) = max_len;
2375 return resolved_type;
2378 /* See gdbtypes.h. */
2381 variant::matches (ULONGEST value, bool is_unsigned) const
2383 for (const discriminant_range &range : discriminants)
2384 if (range.contains (value, is_unsigned))
2390 compute_variant_fields_inner (struct type *type,
2391 struct property_addr_info *addr_stack,
2392 const variant_part &part,
2393 std::vector<bool> &flags);
2395 /* A helper function to determine which variant fields will be active.
2396 This handles both the variant's direct fields, and any variant
2397 parts embedded in this variant. TYPE is the type we're examining.
2398 ADDR_STACK holds information about the concrete object. VARIANT is
2399 the current variant to be handled. FLAGS is where the results are
2400 stored -- this function sets the Nth element in FLAGS if the
2401 corresponding field is enabled. ENABLED is whether this variant is
2405 compute_variant_fields_recurse (struct type *type,
2406 struct property_addr_info *addr_stack,
2407 const variant &variant,
2408 std::vector<bool> &flags,
2411 for (int field = variant.first_field; field < variant.last_field; ++field)
2412 flags[field] = enabled;
2414 for (const variant_part &new_part : variant.parts)
2417 compute_variant_fields_inner (type, addr_stack, new_part, flags);
2420 for (const auto &sub_variant : new_part.variants)
2421 compute_variant_fields_recurse (type, addr_stack, sub_variant,
2427 /* A helper function to determine which variant fields will be active.
2428 This evaluates the discriminant, decides which variant (if any) is
2429 active, and then updates FLAGS to reflect which fields should be
2430 available. TYPE is the type we're examining. ADDR_STACK holds
2431 information about the concrete object. VARIANT is the current
2432 variant to be handled. FLAGS is where the results are stored --
2433 this function sets the Nth element in FLAGS if the corresponding
2434 field is enabled. */
2437 compute_variant_fields_inner (struct type *type,
2438 struct property_addr_info *addr_stack,
2439 const variant_part &part,
2440 std::vector<bool> &flags)
2442 /* Evaluate the discriminant. */
2443 gdb::optional<ULONGEST> discr_value;
2444 if (part.discriminant_index != -1)
2446 int idx = part.discriminant_index;
2448 if (TYPE_FIELD_LOC_KIND (type, idx) != FIELD_LOC_KIND_BITPOS)
2449 error (_("Cannot determine struct field location"
2450 " (invalid location kind)"));
2452 if (addr_stack->valaddr.data () != NULL)
2453 discr_value = unpack_field_as_long (type, addr_stack->valaddr.data (),
2457 CORE_ADDR addr = (addr_stack->addr
2458 + (TYPE_FIELD_BITPOS (type, idx)
2459 / TARGET_CHAR_BIT));
2461 LONGEST bitsize = TYPE_FIELD_BITSIZE (type, idx);
2462 LONGEST size = bitsize / 8;
2464 size = TYPE_LENGTH (type->field (idx).type ());
2466 gdb_byte bits[sizeof (ULONGEST)];
2467 read_memory (addr, bits, size);
2469 LONGEST bitpos = (TYPE_FIELD_BITPOS (type, idx)
2472 discr_value = unpack_bits_as_long (type->field (idx).type (),
2473 bits, bitpos, bitsize);
2477 /* Go through each variant and see which applies. */
2478 const variant *default_variant = nullptr;
2479 const variant *applied_variant = nullptr;
2480 for (const auto &variant : part.variants)
2482 if (variant.is_default ())
2483 default_variant = &variant;
2484 else if (discr_value.has_value ()
2485 && variant.matches (*discr_value, part.is_unsigned))
2487 applied_variant = &variant;
2491 if (applied_variant == nullptr)
2492 applied_variant = default_variant;
2494 for (const auto &variant : part.variants)
2495 compute_variant_fields_recurse (type, addr_stack, variant,
2496 flags, applied_variant == &variant);
2499 /* Determine which variant fields are available in TYPE. The enabled
2500 fields are stored in RESOLVED_TYPE. ADDR_STACK holds information
2501 about the concrete object. PARTS describes the top-level variant
2502 parts for this type. */
2505 compute_variant_fields (struct type *type,
2506 struct type *resolved_type,
2507 struct property_addr_info *addr_stack,
2508 const gdb::array_view<variant_part> &parts)
2510 /* Assume all fields are included by default. */
2511 std::vector<bool> flags (resolved_type->num_fields (), true);
2513 /* Now disable fields based on the variants that control them. */
2514 for (const auto &part : parts)
2515 compute_variant_fields_inner (type, addr_stack, part, flags);
2517 resolved_type->set_num_fields
2518 (std::count (flags.begin (), flags.end (), true));
2519 resolved_type->set_fields
2521 TYPE_ALLOC (resolved_type,
2522 resolved_type->num_fields () * sizeof (struct field)));
2525 for (int i = 0; i < type->num_fields (); ++i)
2530 resolved_type->field (out) = type->field (i);
2535 /* Resolve dynamic bounds of members of the struct TYPE to static
2536 bounds. ADDR_STACK is a stack of struct property_addr_info to
2537 be used if needed during the dynamic resolution. */
2539 static struct type *
2540 resolve_dynamic_struct (struct type *type,
2541 struct property_addr_info *addr_stack)
2543 struct type *resolved_type;
2545 unsigned resolved_type_bit_length = 0;
2547 gdb_assert (type->code () == TYPE_CODE_STRUCT);
2549 resolved_type = copy_type (type);
2551 dynamic_prop *variant_prop = resolved_type->dyn_prop (DYN_PROP_VARIANT_PARTS);
2552 if (variant_prop != nullptr && variant_prop->kind () == PROP_VARIANT_PARTS)
2554 compute_variant_fields (type, resolved_type, addr_stack,
2555 *variant_prop->variant_parts ());
2556 /* We want to leave the property attached, so that the Rust code
2557 can tell whether the type was originally an enum. */
2558 variant_prop->set_original_type (type);
2562 resolved_type->set_fields
2564 TYPE_ALLOC (resolved_type,
2565 resolved_type->num_fields () * sizeof (struct field)));
2566 if (type->num_fields () > 0)
2567 memcpy (resolved_type->fields (),
2569 resolved_type->num_fields () * sizeof (struct field));
2572 for (i = 0; i < resolved_type->num_fields (); ++i)
2574 unsigned new_bit_length;
2575 struct property_addr_info pinfo;
2577 if (field_is_static (&resolved_type->field (i)))
2580 if (TYPE_FIELD_LOC_KIND (resolved_type, i) == FIELD_LOC_KIND_DWARF_BLOCK)
2582 struct dwarf2_property_baton baton;
2584 = lookup_pointer_type (resolved_type->field (i).type ());
2585 baton.locexpr = *TYPE_FIELD_DWARF_BLOCK (resolved_type, i);
2587 struct dynamic_prop prop;
2588 prop.set_locexpr (&baton);
2591 if (dwarf2_evaluate_property (&prop, nullptr, addr_stack, &addr,
2593 SET_FIELD_BITPOS (resolved_type->field (i),
2594 TARGET_CHAR_BIT * (addr - addr_stack->addr));
2597 /* As we know this field is not a static field, the field's
2598 field_loc_kind should be FIELD_LOC_KIND_BITPOS. Verify
2599 this is the case, but only trigger a simple error rather
2600 than an internal error if that fails. While failing
2601 that verification indicates a bug in our code, the error
2602 is not severe enough to suggest to the user he stops
2603 his debugging session because of it. */
2604 if (TYPE_FIELD_LOC_KIND (resolved_type, i) != FIELD_LOC_KIND_BITPOS)
2605 error (_("Cannot determine struct field location"
2606 " (invalid location kind)"));
2608 pinfo.type = check_typedef (resolved_type->field (i).type ());
2609 pinfo.valaddr = addr_stack->valaddr;
2612 + (TYPE_FIELD_BITPOS (resolved_type, i) / TARGET_CHAR_BIT));
2613 pinfo.next = addr_stack;
2615 resolved_type->field (i).set_type
2616 (resolve_dynamic_type_internal (resolved_type->field (i).type (),
2618 gdb_assert (TYPE_FIELD_LOC_KIND (resolved_type, i)
2619 == FIELD_LOC_KIND_BITPOS);
2621 new_bit_length = TYPE_FIELD_BITPOS (resolved_type, i);
2622 if (TYPE_FIELD_BITSIZE (resolved_type, i) != 0)
2623 new_bit_length += TYPE_FIELD_BITSIZE (resolved_type, i);
2626 struct type *real_type
2627 = check_typedef (resolved_type->field (i).type ());
2629 new_bit_length += (TYPE_LENGTH (real_type) * TARGET_CHAR_BIT);
2632 /* Normally, we would use the position and size of the last field
2633 to determine the size of the enclosing structure. But GCC seems
2634 to be encoding the position of some fields incorrectly when
2635 the struct contains a dynamic field that is not placed last.
2636 So we compute the struct size based on the field that has
2637 the highest position + size - probably the best we can do. */
2638 if (new_bit_length > resolved_type_bit_length)
2639 resolved_type_bit_length = new_bit_length;
2642 /* The length of a type won't change for fortran, but it does for C and Ada.
2643 For fortran the size of dynamic fields might change over time but not the
2644 type length of the structure. If we adapt it, we run into problems
2645 when calculating the element offset for arrays of structs. */
2646 if (current_language->la_language != language_fortran)
2647 TYPE_LENGTH (resolved_type)
2648 = (resolved_type_bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
2650 /* The Ada language uses this field as a cache for static fixed types: reset
2651 it as RESOLVED_TYPE must have its own static fixed type. */
2652 TYPE_TARGET_TYPE (resolved_type) = NULL;
2654 return resolved_type;
2657 /* Worker for resolved_dynamic_type. */
2659 static struct type *
2660 resolve_dynamic_type_internal (struct type *type,
2661 struct property_addr_info *addr_stack,
2664 struct type *real_type = check_typedef (type);
2665 struct type *resolved_type = nullptr;
2666 struct dynamic_prop *prop;
2669 if (!is_dynamic_type_internal (real_type, top_level))
2672 gdb::optional<CORE_ADDR> type_length;
2673 prop = TYPE_DYNAMIC_LENGTH (type);
2675 && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2676 type_length = value;
2678 if (type->code () == TYPE_CODE_TYPEDEF)
2680 resolved_type = copy_type (type);
2681 TYPE_TARGET_TYPE (resolved_type)
2682 = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type), addr_stack,
2687 /* Before trying to resolve TYPE, make sure it is not a stub. */
2690 switch (type->code ())
2694 struct property_addr_info pinfo;
2696 pinfo.type = check_typedef (TYPE_TARGET_TYPE (type));
2698 if (addr_stack->valaddr.data () != NULL)
2699 pinfo.addr = extract_typed_address (addr_stack->valaddr.data (),
2702 pinfo.addr = read_memory_typed_address (addr_stack->addr, type);
2703 pinfo.next = addr_stack;
2705 resolved_type = copy_type (type);
2706 TYPE_TARGET_TYPE (resolved_type)
2707 = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type),
2712 case TYPE_CODE_STRING:
2713 /* Strings are very much like an array of characters, and can be
2714 treated as one here. */
2715 case TYPE_CODE_ARRAY:
2716 resolved_type = resolve_dynamic_array_or_string (type, addr_stack);
2719 case TYPE_CODE_RANGE:
2720 resolved_type = resolve_dynamic_range (type, addr_stack);
2723 case TYPE_CODE_UNION:
2724 resolved_type = resolve_dynamic_union (type, addr_stack);
2727 case TYPE_CODE_STRUCT:
2728 resolved_type = resolve_dynamic_struct (type, addr_stack);
2733 if (resolved_type == nullptr)
2736 if (type_length.has_value ())
2738 TYPE_LENGTH (resolved_type) = *type_length;
2739 resolved_type->remove_dyn_prop (DYN_PROP_BYTE_SIZE);
2742 /* Resolve data_location attribute. */
2743 prop = TYPE_DATA_LOCATION (resolved_type);
2745 && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2747 /* Start of Fortran hack. See comment in f-lang.h for what is going
2749 if (current_language->la_language == language_fortran
2750 && resolved_type->code () == TYPE_CODE_ARRAY)
2751 value = fortran_adjust_dynamic_array_base_address_hack (resolved_type,
2753 /* End of Fortran hack. */
2754 prop->set_const_val (value);
2757 return resolved_type;
2760 /* See gdbtypes.h */
2763 resolve_dynamic_type (struct type *type,
2764 gdb::array_view<const gdb_byte> valaddr,
2767 struct property_addr_info pinfo
2768 = {check_typedef (type), valaddr, addr, NULL};
2770 return resolve_dynamic_type_internal (type, &pinfo, 1);
2773 /* See gdbtypes.h */
2776 type::dyn_prop (dynamic_prop_node_kind prop_kind) const
2778 dynamic_prop_list *node = this->main_type->dyn_prop_list;
2780 while (node != NULL)
2782 if (node->prop_kind == prop_kind)
2789 /* See gdbtypes.h */
2792 type::add_dyn_prop (dynamic_prop_node_kind prop_kind, dynamic_prop prop)
2794 struct dynamic_prop_list *temp;
2796 gdb_assert (this->is_objfile_owned ());
2798 temp = XOBNEW (&this->objfile_owner ()->objfile_obstack,
2799 struct dynamic_prop_list);
2800 temp->prop_kind = prop_kind;
2802 temp->next = this->main_type->dyn_prop_list;
2804 this->main_type->dyn_prop_list = temp;
2807 /* See gdbtypes.h. */
2810 type::remove_dyn_prop (dynamic_prop_node_kind kind)
2812 struct dynamic_prop_list *prev_node, *curr_node;
2814 curr_node = this->main_type->dyn_prop_list;
2817 while (NULL != curr_node)
2819 if (curr_node->prop_kind == kind)
2821 /* Update the linked list but don't free anything.
2822 The property was allocated on objstack and it is not known
2823 if we are on top of it. Nevertheless, everything is released
2824 when the complete objstack is freed. */
2825 if (NULL == prev_node)
2826 this->main_type->dyn_prop_list = curr_node->next;
2828 prev_node->next = curr_node->next;
2833 prev_node = curr_node;
2834 curr_node = curr_node->next;
2838 /* Find the real type of TYPE. This function returns the real type,
2839 after removing all layers of typedefs, and completing opaque or stub
2840 types. Completion changes the TYPE argument, but stripping of
2843 Instance flags (e.g. const/volatile) are preserved as typedefs are
2844 stripped. If necessary a new qualified form of the underlying type
2847 NOTE: This will return a typedef if TYPE_TARGET_TYPE for the typedef has
2848 not been computed and we're either in the middle of reading symbols, or
2849 there was no name for the typedef in the debug info.
2851 NOTE: Lookup of opaque types can throw errors for invalid symbol files.
2852 QUITs in the symbol reading code can also throw.
2853 Thus this function can throw an exception.
2855 If TYPE is a TYPE_CODE_TYPEDEF, its length is updated to the length of
2858 If this is a stubbed struct (i.e. declared as struct foo *), see if
2859 we can find a full definition in some other file. If so, copy this
2860 definition, so we can use it in future. There used to be a comment
2861 (but not any code) that if we don't find a full definition, we'd
2862 set a flag so we don't spend time in the future checking the same
2863 type. That would be a mistake, though--we might load in more
2864 symbols which contain a full definition for the type. */
2867 check_typedef (struct type *type)
2869 struct type *orig_type = type;
2873 /* While we're removing typedefs, we don't want to lose qualifiers.
2874 E.g., const/volatile. */
2875 type_instance_flags instance_flags = type->instance_flags ();
2877 while (type->code () == TYPE_CODE_TYPEDEF)
2879 if (!TYPE_TARGET_TYPE (type))
2884 /* It is dangerous to call lookup_symbol if we are currently
2885 reading a symtab. Infinite recursion is one danger. */
2886 if (currently_reading_symtab)
2887 return make_qualified_type (type, instance_flags, NULL);
2889 name = type->name ();
2890 /* FIXME: shouldn't we look in STRUCT_DOMAIN and/or
2891 VAR_DOMAIN as appropriate? */
2894 stub_noname_complaint ();
2895 return make_qualified_type (type, instance_flags, NULL);
2897 sym = lookup_symbol (name, 0, STRUCT_DOMAIN, 0).symbol;
2899 TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
2900 else /* TYPE_CODE_UNDEF */
2901 TYPE_TARGET_TYPE (type) = alloc_type_arch (type->arch ());
2903 type = TYPE_TARGET_TYPE (type);
2905 /* Preserve the instance flags as we traverse down the typedef chain.
2907 Handling address spaces/classes is nasty, what do we do if there's a
2909 E.g., what if an outer typedef marks the type as class_1 and an inner
2910 typedef marks the type as class_2?
2911 This is the wrong place to do such error checking. We leave it to
2912 the code that created the typedef in the first place to flag the
2913 error. We just pick the outer address space (akin to letting the
2914 outer cast in a chain of casting win), instead of assuming
2915 "it can't happen". */
2917 const type_instance_flags ALL_SPACES
2918 = (TYPE_INSTANCE_FLAG_CODE_SPACE
2919 | TYPE_INSTANCE_FLAG_DATA_SPACE);
2920 const type_instance_flags ALL_CLASSES
2921 = TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL;
2923 type_instance_flags new_instance_flags = type->instance_flags ();
2925 /* Treat code vs data spaces and address classes separately. */
2926 if ((instance_flags & ALL_SPACES) != 0)
2927 new_instance_flags &= ~ALL_SPACES;
2928 if ((instance_flags & ALL_CLASSES) != 0)
2929 new_instance_flags &= ~ALL_CLASSES;
2931 instance_flags |= new_instance_flags;
2935 /* If this is a struct/class/union with no fields, then check
2936 whether a full definition exists somewhere else. This is for
2937 systems where a type definition with no fields is issued for such
2938 types, instead of identifying them as stub types in the first
2941 if (TYPE_IS_OPAQUE (type)
2942 && opaque_type_resolution
2943 && !currently_reading_symtab)
2945 const char *name = type->name ();
2946 struct type *newtype;
2950 stub_noname_complaint ();
2951 return make_qualified_type (type, instance_flags, NULL);
2953 newtype = lookup_transparent_type (name);
2957 /* If the resolved type and the stub are in the same
2958 objfile, then replace the stub type with the real deal.
2959 But if they're in separate objfiles, leave the stub
2960 alone; we'll just look up the transparent type every time
2961 we call check_typedef. We can't create pointers between
2962 types allocated to different objfiles, since they may
2963 have different lifetimes. Trying to copy NEWTYPE over to
2964 TYPE's objfile is pointless, too, since you'll have to
2965 move over any other types NEWTYPE refers to, which could
2966 be an unbounded amount of stuff. */
2967 if (newtype->objfile_owner () == type->objfile_owner ())
2968 type = make_qualified_type (newtype, type->instance_flags (), type);
2973 /* Otherwise, rely on the stub flag being set for opaque/stubbed
2975 else if (type->is_stub () && !currently_reading_symtab)
2977 const char *name = type->name ();
2978 /* FIXME: shouldn't we look in STRUCT_DOMAIN and/or VAR_DOMAIN
2984 stub_noname_complaint ();
2985 return make_qualified_type (type, instance_flags, NULL);
2987 sym = lookup_symbol (name, 0, STRUCT_DOMAIN, 0).symbol;
2990 /* Same as above for opaque types, we can replace the stub
2991 with the complete type only if they are in the same
2993 if (SYMBOL_TYPE (sym)->objfile_owner () == type->objfile_owner ())
2994 type = make_qualified_type (SYMBOL_TYPE (sym),
2995 type->instance_flags (), type);
2997 type = SYMBOL_TYPE (sym);
3001 if (type->target_is_stub ())
3003 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
3005 if (target_type->is_stub () || target_type->target_is_stub ())
3007 /* Nothing we can do. */
3009 else if (type->code () == TYPE_CODE_RANGE)
3011 TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
3012 type->set_target_is_stub (false);
3014 else if (type->code () == TYPE_CODE_ARRAY
3015 && update_static_array_size (type))
3016 type->set_target_is_stub (false);
3019 type = make_qualified_type (type, instance_flags, NULL);
3021 /* Cache TYPE_LENGTH for future use. */
3022 TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
3027 /* Parse a type expression in the string [P..P+LENGTH). If an error
3028 occurs, silently return a void type. */
3030 static struct type *
3031 safe_parse_type (struct gdbarch *gdbarch, const char *p, int length)
3033 struct ui_file *saved_gdb_stderr;
3034 struct type *type = NULL; /* Initialize to keep gcc happy. */
3036 /* Suppress error messages. */
3037 saved_gdb_stderr = gdb_stderr;
3038 gdb_stderr = &null_stream;
3040 /* Call parse_and_eval_type() without fear of longjmp()s. */
3043 type = parse_and_eval_type (p, length);
3045 catch (const gdb_exception_error &except)
3047 type = builtin_type (gdbarch)->builtin_void;
3050 /* Stop suppressing error messages. */
3051 gdb_stderr = saved_gdb_stderr;
3056 /* Ugly hack to convert method stubs into method types.
3058 He ain't kiddin'. This demangles the name of the method into a
3059 string including argument types, parses out each argument type,
3060 generates a string casting a zero to that type, evaluates the
3061 string, and stuffs the resulting type into an argtype vector!!!
3062 Then it knows the type of the whole function (including argument
3063 types for overloading), which info used to be in the stab's but was
3064 removed to hack back the space required for them. */
3067 check_stub_method (struct type *type, int method_id, int signature_id)
3069 struct gdbarch *gdbarch = type->arch ();
3071 char *mangled_name = gdb_mangle_name (type, method_id, signature_id);
3072 char *demangled_name = gdb_demangle (mangled_name,
3073 DMGL_PARAMS | DMGL_ANSI);
3074 char *argtypetext, *p;
3075 int depth = 0, argcount = 1;
3076 struct field *argtypes;
3079 /* Make sure we got back a function string that we can use. */
3081 p = strchr (demangled_name, '(');
3085 if (demangled_name == NULL || p == NULL)
3086 error (_("Internal: Cannot demangle mangled name `%s'."),
3089 /* Now, read in the parameters that define this type. */
3094 if (*p == '(' || *p == '<')
3098 else if (*p == ')' || *p == '>')
3102 else if (*p == ',' && depth == 0)
3110 /* If we read one argument and it was ``void'', don't count it. */
3111 if (startswith (argtypetext, "(void)"))
3114 /* We need one extra slot, for the THIS pointer. */
3116 argtypes = (struct field *)
3117 TYPE_ALLOC (type, (argcount + 1) * sizeof (struct field));
3120 /* Add THIS pointer for non-static methods. */
3121 f = TYPE_FN_FIELDLIST1 (type, method_id);
3122 if (TYPE_FN_FIELD_STATIC_P (f, signature_id))
3126 argtypes[0].set_type (lookup_pointer_type (type));
3130 if (*p != ')') /* () means no args, skip while. */
3135 if (depth <= 0 && (*p == ',' || *p == ')'))
3137 /* Avoid parsing of ellipsis, they will be handled below.
3138 Also avoid ``void'' as above. */
3139 if (strncmp (argtypetext, "...", p - argtypetext) != 0
3140 && strncmp (argtypetext, "void", p - argtypetext) != 0)
3142 argtypes[argcount].set_type
3143 (safe_parse_type (gdbarch, argtypetext, p - argtypetext));
3146 argtypetext = p + 1;
3149 if (*p == '(' || *p == '<')
3153 else if (*p == ')' || *p == '>')
3162 TYPE_FN_FIELD_PHYSNAME (f, signature_id) = mangled_name;
3164 /* Now update the old "stub" type into a real type. */
3165 mtype = TYPE_FN_FIELD_TYPE (f, signature_id);
3166 /* MTYPE may currently be a function (TYPE_CODE_FUNC).
3167 We want a method (TYPE_CODE_METHOD). */
3168 smash_to_method_type (mtype, type, TYPE_TARGET_TYPE (mtype),
3169 argtypes, argcount, p[-2] == '.');
3170 mtype->set_is_stub (false);
3171 TYPE_FN_FIELD_STUB (f, signature_id) = 0;
3173 xfree (demangled_name);
3176 /* This is the external interface to check_stub_method, above. This
3177 function unstubs all of the signatures for TYPE's METHOD_ID method
3178 name. After calling this function TYPE_FN_FIELD_STUB will be
3179 cleared for each signature and TYPE_FN_FIELDLIST_NAME will be
3182 This function unfortunately can not die until stabs do. */
3185 check_stub_method_group (struct type *type, int method_id)
3187 int len = TYPE_FN_FIELDLIST_LENGTH (type, method_id);
3188 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, method_id);
3190 for (int j = 0; j < len; j++)
3192 if (TYPE_FN_FIELD_STUB (f, j))
3193 check_stub_method (type, method_id, j);
3197 /* Ensure it is in .rodata (if available) by working around GCC PR 44690. */
3198 const struct cplus_struct_type cplus_struct_default = { };
3201 allocate_cplus_struct_type (struct type *type)
3203 if (HAVE_CPLUS_STRUCT (type))
3204 /* Structure was already allocated. Nothing more to do. */
3207 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_CPLUS_STUFF;
3208 TYPE_RAW_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
3209 TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
3210 *(TYPE_RAW_CPLUS_SPECIFIC (type)) = cplus_struct_default;
3211 set_type_vptr_fieldno (type, -1);
3214 const struct gnat_aux_type gnat_aux_default =
3217 /* Set the TYPE's type-specific kind to TYPE_SPECIFIC_GNAT_STUFF,
3218 and allocate the associated gnat-specific data. The gnat-specific
3219 data is also initialized to gnat_aux_default. */
3222 allocate_gnat_aux_type (struct type *type)
3224 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_GNAT_STUFF;
3225 TYPE_GNAT_SPECIFIC (type) = (struct gnat_aux_type *)
3226 TYPE_ALLOC (type, sizeof (struct gnat_aux_type));
3227 *(TYPE_GNAT_SPECIFIC (type)) = gnat_aux_default;
3230 /* Helper function to initialize a newly allocated type. Set type code
3231 to CODE and initialize the type-specific fields accordingly. */
3234 set_type_code (struct type *type, enum type_code code)
3236 type->set_code (code);
3240 case TYPE_CODE_STRUCT:
3241 case TYPE_CODE_UNION:
3242 case TYPE_CODE_NAMESPACE:
3243 INIT_CPLUS_SPECIFIC (type);
3246 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_FLOATFORMAT;
3248 case TYPE_CODE_FUNC:
3249 INIT_FUNC_SPECIFIC (type);
3251 case TYPE_CODE_FIXED_POINT:
3252 INIT_FIXED_POINT_SPECIFIC (type);
3257 /* Helper function to verify floating-point format and size.
3258 BIT is the type size in bits; if BIT equals -1, the size is
3259 determined by the floatformat. Returns size to be used. */
3262 verify_floatformat (int bit, const struct floatformat *floatformat)
3264 gdb_assert (floatformat != NULL);
3267 bit = floatformat->totalsize;
3269 gdb_assert (bit >= 0);
3270 gdb_assert (bit >= floatformat->totalsize);
3275 /* Return the floating-point format for a floating-point variable of
3278 const struct floatformat *
3279 floatformat_from_type (const struct type *type)
3281 gdb_assert (type->code () == TYPE_CODE_FLT);
3282 gdb_assert (TYPE_FLOATFORMAT (type));
3283 return TYPE_FLOATFORMAT (type);
3286 /* Helper function to initialize the standard scalar types.
3288 If NAME is non-NULL, then it is used to initialize the type name.
3289 Note that NAME is not copied; it is required to have a lifetime at
3290 least as long as OBJFILE. */
3293 init_type (struct objfile *objfile, enum type_code code, int bit,
3298 type = alloc_type (objfile);
3299 set_type_code (type, code);
3300 gdb_assert ((bit % TARGET_CHAR_BIT) == 0);
3301 TYPE_LENGTH (type) = bit / TARGET_CHAR_BIT;
3302 type->set_name (name);
3307 /* Allocate a TYPE_CODE_ERROR type structure associated with OBJFILE,
3308 to use with variables that have no debug info. NAME is the type
3311 static struct type *
3312 init_nodebug_var_type (struct objfile *objfile, const char *name)
3314 return init_type (objfile, TYPE_CODE_ERROR, 0, name);
3317 /* Allocate a TYPE_CODE_INT type structure associated with OBJFILE.
3318 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
3319 the type's TYPE_UNSIGNED flag. NAME is the type name. */
3322 init_integer_type (struct objfile *objfile,
3323 int bit, int unsigned_p, const char *name)
3327 t = init_type (objfile, TYPE_CODE_INT, bit, name);
3329 t->set_is_unsigned (true);
3331 TYPE_SPECIFIC_FIELD (t) = TYPE_SPECIFIC_INT;
3332 TYPE_MAIN_TYPE (t)->type_specific.int_stuff.bit_size = bit;
3333 TYPE_MAIN_TYPE (t)->type_specific.int_stuff.bit_offset = 0;
3338 /* Allocate a TYPE_CODE_CHAR type structure associated with OBJFILE.
3339 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
3340 the type's TYPE_UNSIGNED flag. NAME is the type name. */
3343 init_character_type (struct objfile *objfile,
3344 int bit, int unsigned_p, const char *name)
3348 t = init_type (objfile, TYPE_CODE_CHAR, bit, name);
3350 t->set_is_unsigned (true);
3355 /* Allocate a TYPE_CODE_BOOL type structure associated with OBJFILE.
3356 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
3357 the type's TYPE_UNSIGNED flag. NAME is the type name. */
3360 init_boolean_type (struct objfile *objfile,
3361 int bit, int unsigned_p, const char *name)
3365 t = init_type (objfile, TYPE_CODE_BOOL, bit, name);
3367 t->set_is_unsigned (true);
3369 TYPE_SPECIFIC_FIELD (t) = TYPE_SPECIFIC_INT;
3370 TYPE_MAIN_TYPE (t)->type_specific.int_stuff.bit_size = bit;
3371 TYPE_MAIN_TYPE (t)->type_specific.int_stuff.bit_offset = 0;
3376 /* Allocate a TYPE_CODE_FLT type structure associated with OBJFILE.
3377 BIT is the type size in bits; if BIT equals -1, the size is
3378 determined by the floatformat. NAME is the type name. Set the
3379 TYPE_FLOATFORMAT from FLOATFORMATS. BYTE_ORDER is the byte order
3380 to use. If it is BFD_ENDIAN_UNKNOWN (the default), then the byte
3381 order of the objfile's architecture is used. */
3384 init_float_type (struct objfile *objfile,
3385 int bit, const char *name,
3386 const struct floatformat **floatformats,
3387 enum bfd_endian byte_order)
3389 if (byte_order == BFD_ENDIAN_UNKNOWN)
3391 struct gdbarch *gdbarch = objfile->arch ();
3392 byte_order = gdbarch_byte_order (gdbarch);
3394 const struct floatformat *fmt = floatformats[byte_order];
3397 bit = verify_floatformat (bit, fmt);
3398 t = init_type (objfile, TYPE_CODE_FLT, bit, name);
3399 TYPE_FLOATFORMAT (t) = fmt;
3404 /* Allocate a TYPE_CODE_DECFLOAT type structure associated with OBJFILE.
3405 BIT is the type size in bits. NAME is the type name. */
3408 init_decfloat_type (struct objfile *objfile, int bit, const char *name)
3412 t = init_type (objfile, TYPE_CODE_DECFLOAT, bit, name);
3416 /* Return true if init_complex_type can be called with TARGET_TYPE. */
3419 can_create_complex_type (struct type *target_type)
3421 return (target_type->code () == TYPE_CODE_INT
3422 || target_type->code () == TYPE_CODE_FLT);
3425 /* Allocate a TYPE_CODE_COMPLEX type structure. NAME is the type
3426 name. TARGET_TYPE is the component type. */
3429 init_complex_type (const char *name, struct type *target_type)
3433 gdb_assert (can_create_complex_type (target_type));
3435 if (TYPE_MAIN_TYPE (target_type)->flds_bnds.complex_type == nullptr)
3437 if (name == nullptr && target_type->name () != nullptr)
3440 = (char *) TYPE_ALLOC (target_type,
3441 strlen (target_type->name ())
3442 + strlen ("_Complex ") + 1);
3443 strcpy (new_name, "_Complex ");
3444 strcat (new_name, target_type->name ());
3448 t = alloc_type_copy (target_type);
3449 set_type_code (t, TYPE_CODE_COMPLEX);
3450 TYPE_LENGTH (t) = 2 * TYPE_LENGTH (target_type);
3453 TYPE_TARGET_TYPE (t) = target_type;
3454 TYPE_MAIN_TYPE (target_type)->flds_bnds.complex_type = t;
3457 return TYPE_MAIN_TYPE (target_type)->flds_bnds.complex_type;
3460 /* Allocate a TYPE_CODE_PTR type structure associated with OBJFILE.
3461 BIT is the pointer type size in bits. NAME is the type name.
3462 TARGET_TYPE is the pointer target type. Always sets the pointer type's
3463 TYPE_UNSIGNED flag. */
3466 init_pointer_type (struct objfile *objfile,
3467 int bit, const char *name, struct type *target_type)
3471 t = init_type (objfile, TYPE_CODE_PTR, bit, name);
3472 TYPE_TARGET_TYPE (t) = target_type;
3473 t->set_is_unsigned (true);
3477 /* Allocate a TYPE_CODE_FIXED_POINT type structure associated with OBJFILE.
3478 BIT is the pointer type size in bits.
3479 UNSIGNED_P should be nonzero if the type is unsigned.
3480 NAME is the type name. */
3483 init_fixed_point_type (struct objfile *objfile,
3484 int bit, int unsigned_p, const char *name)
3488 t = init_type (objfile, TYPE_CODE_FIXED_POINT, bit, name);
3490 t->set_is_unsigned (true);
3495 /* See gdbtypes.h. */
3498 type_raw_align (struct type *type)
3500 if (type->align_log2 != 0)
3501 return 1 << (type->align_log2 - 1);
3505 /* See gdbtypes.h. */
3508 type_align (struct type *type)
3510 /* Check alignment provided in the debug information. */
3511 unsigned raw_align = type_raw_align (type);
3515 /* Allow the architecture to provide an alignment. */
3516 ULONGEST align = gdbarch_type_align (type->arch (), type);
3520 switch (type->code ())
3523 case TYPE_CODE_FUNC:
3524 case TYPE_CODE_FLAGS:
3526 case TYPE_CODE_RANGE:
3528 case TYPE_CODE_ENUM:
3530 case TYPE_CODE_RVALUE_REF:
3531 case TYPE_CODE_CHAR:
3532 case TYPE_CODE_BOOL:
3533 case TYPE_CODE_DECFLOAT:
3534 case TYPE_CODE_METHODPTR:
3535 case TYPE_CODE_MEMBERPTR:
3536 align = type_length_units (check_typedef (type));
3539 case TYPE_CODE_ARRAY:
3540 case TYPE_CODE_COMPLEX:
3541 case TYPE_CODE_TYPEDEF:
3542 align = type_align (TYPE_TARGET_TYPE (type));
3545 case TYPE_CODE_STRUCT:
3546 case TYPE_CODE_UNION:
3548 int number_of_non_static_fields = 0;
3549 for (unsigned i = 0; i < type->num_fields (); ++i)
3551 if (!field_is_static (&type->field (i)))
3553 number_of_non_static_fields++;
3554 ULONGEST f_align = type_align (type->field (i).type ());
3557 /* Don't pretend we know something we don't. */
3561 if (f_align > align)
3565 /* A struct with no fields, or with only static fields has an
3567 if (number_of_non_static_fields == 0)
3573 case TYPE_CODE_STRING:
3574 /* Not sure what to do here, and these can't appear in C or C++
3578 case TYPE_CODE_VOID:
3582 case TYPE_CODE_ERROR:
3583 case TYPE_CODE_METHOD:
3588 if ((align & (align - 1)) != 0)
3590 /* Not a power of 2, so pass. */
3597 /* See gdbtypes.h. */
3600 set_type_align (struct type *type, ULONGEST align)
3602 /* Must be a power of 2. Zero is ok. */
3603 gdb_assert ((align & (align - 1)) == 0);
3605 unsigned result = 0;
3612 if (result >= (1 << TYPE_ALIGN_BITS))
3615 type->align_log2 = result;
3620 /* Queries on types. */
3623 can_dereference (struct type *t)
3625 /* FIXME: Should we return true for references as well as
3627 t = check_typedef (t);
3630 && t->code () == TYPE_CODE_PTR
3631 && TYPE_TARGET_TYPE (t)->code () != TYPE_CODE_VOID);
3635 is_integral_type (struct type *t)
3637 t = check_typedef (t);
3640 && !is_fixed_point_type (t)
3641 && ((t->code () == TYPE_CODE_INT)
3642 || (t->code () == TYPE_CODE_ENUM)
3643 || (t->code () == TYPE_CODE_FLAGS)
3644 || (t->code () == TYPE_CODE_CHAR)
3645 || (t->code () == TYPE_CODE_RANGE)
3646 || (t->code () == TYPE_CODE_BOOL)));
3650 is_floating_type (struct type *t)
3652 t = check_typedef (t);
3655 && ((t->code () == TYPE_CODE_FLT)
3656 || (t->code () == TYPE_CODE_DECFLOAT)));
3659 /* Return true if TYPE is scalar. */
3662 is_scalar_type (struct type *type)
3664 type = check_typedef (type);
3666 if (is_fixed_point_type (type))
3667 return 0; /* Implemented as a scalar, but more like a floating point. */
3669 switch (type->code ())
3671 case TYPE_CODE_ARRAY:
3672 case TYPE_CODE_STRUCT:
3673 case TYPE_CODE_UNION:
3675 case TYPE_CODE_STRING:
3682 /* Return true if T is scalar, or a composite type which in practice has
3683 the memory layout of a scalar type. E.g., an array or struct with only
3684 one scalar element inside it, or a union with only scalar elements. */
3687 is_scalar_type_recursive (struct type *t)
3689 t = check_typedef (t);
3691 if (is_scalar_type (t))
3693 /* Are we dealing with an array or string of known dimensions? */
3694 else if ((t->code () == TYPE_CODE_ARRAY
3695 || t->code () == TYPE_CODE_STRING) && t->num_fields () == 1
3696 && t->index_type ()->code () == TYPE_CODE_RANGE)
3698 LONGEST low_bound, high_bound;
3699 struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (t));
3701 if (get_discrete_bounds (t->index_type (), &low_bound, &high_bound))
3702 return (high_bound == low_bound
3703 && is_scalar_type_recursive (elt_type));
3707 /* Are we dealing with a struct with one element? */
3708 else if (t->code () == TYPE_CODE_STRUCT && t->num_fields () == 1)
3709 return is_scalar_type_recursive (t->field (0).type ());
3710 else if (t->code () == TYPE_CODE_UNION)
3712 int i, n = t->num_fields ();
3714 /* If all elements of the union are scalar, then the union is scalar. */
3715 for (i = 0; i < n; i++)
3716 if (!is_scalar_type_recursive (t->field (i).type ()))
3725 /* Return true is T is a class or a union. False otherwise. */
3728 class_or_union_p (const struct type *t)
3730 return (t->code () == TYPE_CODE_STRUCT
3731 || t->code () == TYPE_CODE_UNION);
3734 /* A helper function which returns true if types A and B represent the
3735 "same" class type. This is true if the types have the same main
3736 type, or the same name. */
3739 class_types_same_p (const struct type *a, const struct type *b)
3741 return (TYPE_MAIN_TYPE (a) == TYPE_MAIN_TYPE (b)
3742 || (a->name () && b->name ()
3743 && !strcmp (a->name (), b->name ())));
3746 /* If BASE is an ancestor of DCLASS return the distance between them.
3747 otherwise return -1;
3751 class B: public A {};
3752 class C: public B {};
3755 distance_to_ancestor (A, A, 0) = 0
3756 distance_to_ancestor (A, B, 0) = 1
3757 distance_to_ancestor (A, C, 0) = 2
3758 distance_to_ancestor (A, D, 0) = 3
3760 If PUBLIC is 1 then only public ancestors are considered,
3761 and the function returns the distance only if BASE is a public ancestor
3765 distance_to_ancestor (A, D, 1) = -1. */
3768 distance_to_ancestor (struct type *base, struct type *dclass, int is_public)
3773 base = check_typedef (base);
3774 dclass = check_typedef (dclass);
3776 if (class_types_same_p (base, dclass))
3779 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
3781 if (is_public && ! BASETYPE_VIA_PUBLIC (dclass, i))
3784 d = distance_to_ancestor (base, TYPE_BASECLASS (dclass, i), is_public);
3792 /* Check whether BASE is an ancestor or base class or DCLASS
3793 Return 1 if so, and 0 if not.
3794 Note: If BASE and DCLASS are of the same type, this function
3795 will return 1. So for some class A, is_ancestor (A, A) will
3799 is_ancestor (struct type *base, struct type *dclass)
3801 return distance_to_ancestor (base, dclass, 0) >= 0;
3804 /* Like is_ancestor, but only returns true when BASE is a public
3805 ancestor of DCLASS. */
3808 is_public_ancestor (struct type *base, struct type *dclass)
3810 return distance_to_ancestor (base, dclass, 1) >= 0;
3813 /* A helper function for is_unique_ancestor. */
3816 is_unique_ancestor_worker (struct type *base, struct type *dclass,
3818 const gdb_byte *valaddr, int embedded_offset,
3819 CORE_ADDR address, struct value *val)
3823 base = check_typedef (base);
3824 dclass = check_typedef (dclass);
3826 for (i = 0; i < TYPE_N_BASECLASSES (dclass) && count < 2; ++i)
3831 iter = check_typedef (TYPE_BASECLASS (dclass, i));
3833 this_offset = baseclass_offset (dclass, i, valaddr, embedded_offset,
3836 if (class_types_same_p (base, iter))
3838 /* If this is the first subclass, set *OFFSET and set count
3839 to 1. Otherwise, if this is at the same offset as
3840 previous instances, do nothing. Otherwise, increment
3844 *offset = this_offset;
3847 else if (this_offset == *offset)
3855 count += is_unique_ancestor_worker (base, iter, offset,
3857 embedded_offset + this_offset,
3864 /* Like is_ancestor, but only returns true if BASE is a unique base
3865 class of the type of VAL. */
3868 is_unique_ancestor (struct type *base, struct value *val)
3872 return is_unique_ancestor_worker (base, value_type (val), &offset,
3873 value_contents_for_printing (val),
3874 value_embedded_offset (val),
3875 value_address (val), val) == 1;
3878 /* See gdbtypes.h. */
3881 type_byte_order (const struct type *type)
3883 bfd_endian byteorder = gdbarch_byte_order (type->arch ());
3884 if (type->endianity_is_not_default ())
3886 if (byteorder == BFD_ENDIAN_BIG)
3887 return BFD_ENDIAN_LITTLE;
3890 gdb_assert (byteorder == BFD_ENDIAN_LITTLE);
3891 return BFD_ENDIAN_BIG;
3899 /* Overload resolution. */
3901 /* Return the sum of the rank of A with the rank of B. */
3904 sum_ranks (struct rank a, struct rank b)
3907 c.rank = a.rank + b.rank;
3908 c.subrank = a.subrank + b.subrank;
3912 /* Compare rank A and B and return:
3914 1 if a is better than b
3915 -1 if b is better than a. */
3918 compare_ranks (struct rank a, struct rank b)
3920 if (a.rank == b.rank)
3922 if (a.subrank == b.subrank)
3924 if (a.subrank < b.subrank)
3926 if (a.subrank > b.subrank)
3930 if (a.rank < b.rank)
3933 /* a.rank > b.rank */
3937 /* Functions for overload resolution begin here. */
3939 /* Compare two badness vectors A and B and return the result.
3940 0 => A and B are identical
3941 1 => A and B are incomparable
3942 2 => A is better than B
3943 3 => A is worse than B */
3946 compare_badness (const badness_vector &a, const badness_vector &b)
3950 short found_pos = 0; /* any positives in c? */
3951 short found_neg = 0; /* any negatives in c? */
3953 /* differing sizes => incomparable */
3954 if (a.size () != b.size ())
3957 /* Subtract b from a */
3958 for (i = 0; i < a.size (); i++)
3960 tmp = compare_ranks (b[i], a[i]);
3970 return 1; /* incomparable */
3972 return 3; /* A > B */
3978 return 2; /* A < B */
3980 return 0; /* A == B */
3984 /* Rank a function by comparing its parameter types (PARMS), to the
3985 types of an argument list (ARGS). Return the badness vector. This
3986 has ARGS.size() + 1 entries. */
3989 rank_function (gdb::array_view<type *> parms,
3990 gdb::array_view<value *> args)
3992 /* add 1 for the length-match rank. */
3994 bv.reserve (1 + args.size ());
3996 /* First compare the lengths of the supplied lists.
3997 If there is a mismatch, set it to a high value. */
3999 /* pai/1997-06-03 FIXME: when we have debug info about default
4000 arguments and ellipsis parameter lists, we should consider those
4001 and rank the length-match more finely. */
4003 bv.push_back ((args.size () != parms.size ())
4004 ? LENGTH_MISMATCH_BADNESS
4005 : EXACT_MATCH_BADNESS);
4007 /* Now rank all the parameters of the candidate function. */
4008 size_t min_len = std::min (parms.size (), args.size ());
4010 for (size_t i = 0; i < min_len; i++)
4011 bv.push_back (rank_one_type (parms[i], value_type (args[i]),
4014 /* If more arguments than parameters, add dummy entries. */
4015 for (size_t i = min_len; i < args.size (); i++)
4016 bv.push_back (TOO_FEW_PARAMS_BADNESS);
4021 /* Compare the names of two integer types, assuming that any sign
4022 qualifiers have been checked already. We do it this way because
4023 there may be an "int" in the name of one of the types. */
4026 integer_types_same_name_p (const char *first, const char *second)
4028 int first_p, second_p;
4030 /* If both are shorts, return 1; if neither is a short, keep
4032 first_p = (strstr (first, "short") != NULL);
4033 second_p = (strstr (second, "short") != NULL);
4034 if (first_p && second_p)
4036 if (first_p || second_p)
4039 /* Likewise for long. */
4040 first_p = (strstr (first, "long") != NULL);
4041 second_p = (strstr (second, "long") != NULL);
4042 if (first_p && second_p)
4044 if (first_p || second_p)
4047 /* Likewise for char. */
4048 first_p = (strstr (first, "char") != NULL);
4049 second_p = (strstr (second, "char") != NULL);
4050 if (first_p && second_p)
4052 if (first_p || second_p)
4055 /* They must both be ints. */
4059 /* Compares type A to type B. Returns true if they represent the same
4060 type, false otherwise. */
4063 types_equal (struct type *a, struct type *b)
4065 /* Identical type pointers. */
4066 /* However, this still doesn't catch all cases of same type for b
4067 and a. The reason is that builtin types are different from
4068 the same ones constructed from the object. */
4072 /* Resolve typedefs */
4073 if (a->code () == TYPE_CODE_TYPEDEF)
4074 a = check_typedef (a);
4075 if (b->code () == TYPE_CODE_TYPEDEF)
4076 b = check_typedef (b);
4078 /* If after resolving typedefs a and b are not of the same type
4079 code then they are not equal. */
4080 if (a->code () != b->code ())
4083 /* If a and b are both pointers types or both reference types then
4084 they are equal of the same type iff the objects they refer to are
4085 of the same type. */
4086 if (a->code () == TYPE_CODE_PTR
4087 || a->code () == TYPE_CODE_REF)
4088 return types_equal (TYPE_TARGET_TYPE (a),
4089 TYPE_TARGET_TYPE (b));
4091 /* Well, damnit, if the names are exactly the same, I'll say they
4092 are exactly the same. This happens when we generate method
4093 stubs. The types won't point to the same address, but they
4094 really are the same. */
4096 if (a->name () && b->name ()
4097 && strcmp (a->name (), b->name ()) == 0)
4100 /* Check if identical after resolving typedefs. */
4104 /* Two function types are equal if their argument and return types
4106 if (a->code () == TYPE_CODE_FUNC)
4110 if (a->num_fields () != b->num_fields ())
4113 if (!types_equal (TYPE_TARGET_TYPE (a), TYPE_TARGET_TYPE (b)))
4116 for (i = 0; i < a->num_fields (); ++i)
4117 if (!types_equal (a->field (i).type (), b->field (i).type ()))
4126 /* Deep comparison of types. */
4128 /* An entry in the type-equality bcache. */
4130 struct type_equality_entry
4132 type_equality_entry (struct type *t1, struct type *t2)
4138 struct type *type1, *type2;
4141 /* A helper function to compare two strings. Returns true if they are
4142 the same, false otherwise. Handles NULLs properly. */
4145 compare_maybe_null_strings (const char *s, const char *t)
4147 if (s == NULL || t == NULL)
4149 return strcmp (s, t) == 0;
4152 /* A helper function for check_types_worklist that checks two types for
4153 "deep" equality. Returns true if the types are considered the
4154 same, false otherwise. */
4157 check_types_equal (struct type *type1, struct type *type2,
4158 std::vector<type_equality_entry> *worklist)
4160 type1 = check_typedef (type1);
4161 type2 = check_typedef (type2);
4166 if (type1->code () != type2->code ()
4167 || TYPE_LENGTH (type1) != TYPE_LENGTH (type2)
4168 || type1->is_unsigned () != type2->is_unsigned ()
4169 || type1->has_no_signedness () != type2->has_no_signedness ()
4170 || type1->endianity_is_not_default () != type2->endianity_is_not_default ()
4171 || type1->has_varargs () != type2->has_varargs ()
4172 || type1->is_vector () != type2->is_vector ()
4173 || TYPE_NOTTEXT (type1) != TYPE_NOTTEXT (type2)
4174 || type1->instance_flags () != type2->instance_flags ()
4175 || type1->num_fields () != type2->num_fields ())
4178 if (!compare_maybe_null_strings (type1->name (), type2->name ()))
4180 if (!compare_maybe_null_strings (type1->name (), type2->name ()))
4183 if (type1->code () == TYPE_CODE_RANGE)
4185 if (*type1->bounds () != *type2->bounds ())
4192 for (i = 0; i < type1->num_fields (); ++i)
4194 const struct field *field1 = &type1->field (i);
4195 const struct field *field2 = &type2->field (i);
4197 if (FIELD_ARTIFICIAL (*field1) != FIELD_ARTIFICIAL (*field2)
4198 || FIELD_BITSIZE (*field1) != FIELD_BITSIZE (*field2)
4199 || FIELD_LOC_KIND (*field1) != FIELD_LOC_KIND (*field2))
4201 if (!compare_maybe_null_strings (FIELD_NAME (*field1),
4202 FIELD_NAME (*field2)))
4204 switch (FIELD_LOC_KIND (*field1))
4206 case FIELD_LOC_KIND_BITPOS:
4207 if (FIELD_BITPOS (*field1) != FIELD_BITPOS (*field2))
4210 case FIELD_LOC_KIND_ENUMVAL:
4211 if (FIELD_ENUMVAL (*field1) != FIELD_ENUMVAL (*field2))
4213 /* Don't compare types of enum fields, because they don't
4216 case FIELD_LOC_KIND_PHYSADDR:
4217 if (FIELD_STATIC_PHYSADDR (*field1)
4218 != FIELD_STATIC_PHYSADDR (*field2))
4221 case FIELD_LOC_KIND_PHYSNAME:
4222 if (!compare_maybe_null_strings (FIELD_STATIC_PHYSNAME (*field1),
4223 FIELD_STATIC_PHYSNAME (*field2)))
4226 case FIELD_LOC_KIND_DWARF_BLOCK:
4228 struct dwarf2_locexpr_baton *block1, *block2;
4230 block1 = FIELD_DWARF_BLOCK (*field1);
4231 block2 = FIELD_DWARF_BLOCK (*field2);
4232 if (block1->per_cu != block2->per_cu
4233 || block1->size != block2->size
4234 || memcmp (block1->data, block2->data, block1->size) != 0)
4239 internal_error (__FILE__, __LINE__, _("Unsupported field kind "
4240 "%d by check_types_equal"),
4241 FIELD_LOC_KIND (*field1));
4244 worklist->emplace_back (field1->type (), field2->type ());
4248 if (TYPE_TARGET_TYPE (type1) != NULL)
4250 if (TYPE_TARGET_TYPE (type2) == NULL)
4253 worklist->emplace_back (TYPE_TARGET_TYPE (type1),
4254 TYPE_TARGET_TYPE (type2));
4256 else if (TYPE_TARGET_TYPE (type2) != NULL)
4262 /* Check types on a worklist for equality. Returns false if any pair
4263 is not equal, true if they are all considered equal. */
4266 check_types_worklist (std::vector<type_equality_entry> *worklist,
4269 while (!worklist->empty ())
4273 struct type_equality_entry entry = std::move (worklist->back ());
4274 worklist->pop_back ();
4276 /* If the type pair has already been visited, we know it is
4278 cache->insert (&entry, sizeof (entry), &added);
4282 if (!check_types_equal (entry.type1, entry.type2, worklist))
4289 /* Return true if types TYPE1 and TYPE2 are equal, as determined by a
4290 "deep comparison". Otherwise return false. */
4293 types_deeply_equal (struct type *type1, struct type *type2)
4295 std::vector<type_equality_entry> worklist;
4297 gdb_assert (type1 != NULL && type2 != NULL);
4299 /* Early exit for the simple case. */
4304 worklist.emplace_back (type1, type2);
4305 return check_types_worklist (&worklist, &cache);
4308 /* Allocated status of type TYPE. Return zero if type TYPE is allocated.
4309 Otherwise return one. */
4312 type_not_allocated (const struct type *type)
4314 struct dynamic_prop *prop = TYPE_ALLOCATED_PROP (type);
4316 return (prop != nullptr && prop->kind () == PROP_CONST
4317 && prop->const_val () == 0);
4320 /* Associated status of type TYPE. Return zero if type TYPE is associated.
4321 Otherwise return one. */
4324 type_not_associated (const struct type *type)
4326 struct dynamic_prop *prop = TYPE_ASSOCIATED_PROP (type);
4328 return (prop != nullptr && prop->kind () == PROP_CONST
4329 && prop->const_val () == 0);
4332 /* rank_one_type helper for when PARM's type code is TYPE_CODE_PTR. */
4335 rank_one_type_parm_ptr (struct type *parm, struct type *arg, struct value *value)
4337 struct rank rank = {0,0};
4339 switch (arg->code ())
4343 /* Allowed pointer conversions are:
4344 (a) pointer to void-pointer conversion. */
4345 if (TYPE_TARGET_TYPE (parm)->code () == TYPE_CODE_VOID)
4346 return VOID_PTR_CONVERSION_BADNESS;
4348 /* (b) pointer to ancestor-pointer conversion. */
4349 rank.subrank = distance_to_ancestor (TYPE_TARGET_TYPE (parm),
4350 TYPE_TARGET_TYPE (arg),
4352 if (rank.subrank >= 0)
4353 return sum_ranks (BASE_PTR_CONVERSION_BADNESS, rank);
4355 return INCOMPATIBLE_TYPE_BADNESS;
4356 case TYPE_CODE_ARRAY:
4358 struct type *t1 = TYPE_TARGET_TYPE (parm);
4359 struct type *t2 = TYPE_TARGET_TYPE (arg);
4361 if (types_equal (t1, t2))
4363 /* Make sure they are CV equal. */
4364 if (TYPE_CONST (t1) != TYPE_CONST (t2))
4365 rank.subrank |= CV_CONVERSION_CONST;
4366 if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2))
4367 rank.subrank |= CV_CONVERSION_VOLATILE;
4368 if (rank.subrank != 0)
4369 return sum_ranks (CV_CONVERSION_BADNESS, rank);
4370 return EXACT_MATCH_BADNESS;
4372 return INCOMPATIBLE_TYPE_BADNESS;
4374 case TYPE_CODE_FUNC:
4375 return rank_one_type (TYPE_TARGET_TYPE (parm), arg, NULL);
4377 if (value != NULL && value_type (value)->code () == TYPE_CODE_INT)
4379 if (value_as_long (value) == 0)
4381 /* Null pointer conversion: allow it to be cast to a pointer.
4382 [4.10.1 of C++ standard draft n3290] */
4383 return NULL_POINTER_CONVERSION_BADNESS;
4387 /* If type checking is disabled, allow the conversion. */
4388 if (!strict_type_checking)
4389 return NS_INTEGER_POINTER_CONVERSION_BADNESS;
4393 case TYPE_CODE_ENUM:
4394 case TYPE_CODE_FLAGS:
4395 case TYPE_CODE_CHAR:
4396 case TYPE_CODE_RANGE:
4397 case TYPE_CODE_BOOL:
4399 return INCOMPATIBLE_TYPE_BADNESS;
4403 /* rank_one_type helper for when PARM's type code is TYPE_CODE_ARRAY. */
4406 rank_one_type_parm_array (struct type *parm, struct type *arg, struct value *value)
4408 switch (arg->code ())
4411 case TYPE_CODE_ARRAY:
4412 return rank_one_type (TYPE_TARGET_TYPE (parm),
4413 TYPE_TARGET_TYPE (arg), NULL);
4415 return INCOMPATIBLE_TYPE_BADNESS;
4419 /* rank_one_type helper for when PARM's type code is TYPE_CODE_FUNC. */
4422 rank_one_type_parm_func (struct type *parm, struct type *arg, struct value *value)
4424 switch (arg->code ())
4426 case TYPE_CODE_PTR: /* funcptr -> func */
4427 return rank_one_type (parm, TYPE_TARGET_TYPE (arg), NULL);
4429 return INCOMPATIBLE_TYPE_BADNESS;
4433 /* rank_one_type helper for when PARM's type code is TYPE_CODE_INT. */
4436 rank_one_type_parm_int (struct type *parm, struct type *arg, struct value *value)
4438 switch (arg->code ())
4441 if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
4443 /* Deal with signed, unsigned, and plain chars and
4444 signed and unsigned ints. */
4445 if (parm->has_no_signedness ())
4447 /* This case only for character types. */
4448 if (arg->has_no_signedness ())
4449 return EXACT_MATCH_BADNESS; /* plain char -> plain char */
4450 else /* signed/unsigned char -> plain char */
4451 return INTEGER_CONVERSION_BADNESS;
4453 else if (parm->is_unsigned ())
4455 if (arg->is_unsigned ())
4457 /* unsigned int -> unsigned int, or
4458 unsigned long -> unsigned long */
4459 if (integer_types_same_name_p (parm->name (),
4461 return EXACT_MATCH_BADNESS;
4462 else if (integer_types_same_name_p (arg->name (),
4464 && integer_types_same_name_p (parm->name (),
4466 /* unsigned int -> unsigned long */
4467 return INTEGER_PROMOTION_BADNESS;
4469 /* unsigned long -> unsigned int */
4470 return INTEGER_CONVERSION_BADNESS;
4474 if (integer_types_same_name_p (arg->name (),
4476 && integer_types_same_name_p (parm->name (),
4478 /* signed long -> unsigned int */
4479 return INTEGER_CONVERSION_BADNESS;
4481 /* signed int/long -> unsigned int/long */
4482 return INTEGER_CONVERSION_BADNESS;
4485 else if (!arg->has_no_signedness () && !arg->is_unsigned ())
4487 if (integer_types_same_name_p (parm->name (),
4489 return EXACT_MATCH_BADNESS;
4490 else if (integer_types_same_name_p (arg->name (),
4492 && integer_types_same_name_p (parm->name (),
4494 return INTEGER_PROMOTION_BADNESS;
4496 return INTEGER_CONVERSION_BADNESS;
4499 return INTEGER_CONVERSION_BADNESS;
4501 else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
4502 return INTEGER_PROMOTION_BADNESS;
4504 return INTEGER_CONVERSION_BADNESS;
4505 case TYPE_CODE_ENUM:
4506 case TYPE_CODE_FLAGS:
4507 case TYPE_CODE_CHAR:
4508 case TYPE_CODE_RANGE:
4509 case TYPE_CODE_BOOL:
4510 if (TYPE_DECLARED_CLASS (arg))
4511 return INCOMPATIBLE_TYPE_BADNESS;
4512 return INTEGER_PROMOTION_BADNESS;
4514 return INT_FLOAT_CONVERSION_BADNESS;
4516 return NS_POINTER_CONVERSION_BADNESS;
4518 return INCOMPATIBLE_TYPE_BADNESS;
4522 /* rank_one_type helper for when PARM's type code is TYPE_CODE_ENUM. */
4525 rank_one_type_parm_enum (struct type *parm, struct type *arg, struct value *value)
4527 switch (arg->code ())
4530 case TYPE_CODE_CHAR:
4531 case TYPE_CODE_RANGE:
4532 case TYPE_CODE_BOOL:
4533 case TYPE_CODE_ENUM:
4534 if (TYPE_DECLARED_CLASS (parm) || TYPE_DECLARED_CLASS (arg))
4535 return INCOMPATIBLE_TYPE_BADNESS;
4536 return INTEGER_CONVERSION_BADNESS;
4538 return INT_FLOAT_CONVERSION_BADNESS;
4540 return INCOMPATIBLE_TYPE_BADNESS;
4544 /* rank_one_type helper for when PARM's type code is TYPE_CODE_CHAR. */
4547 rank_one_type_parm_char (struct type *parm, struct type *arg, struct value *value)
4549 switch (arg->code ())
4551 case TYPE_CODE_RANGE:
4552 case TYPE_CODE_BOOL:
4553 case TYPE_CODE_ENUM:
4554 if (TYPE_DECLARED_CLASS (arg))
4555 return INCOMPATIBLE_TYPE_BADNESS;
4556 return INTEGER_CONVERSION_BADNESS;
4558 return INT_FLOAT_CONVERSION_BADNESS;
4560 if (TYPE_LENGTH (arg) > TYPE_LENGTH (parm))
4561 return INTEGER_CONVERSION_BADNESS;
4562 else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
4563 return INTEGER_PROMOTION_BADNESS;
4565 case TYPE_CODE_CHAR:
4566 /* Deal with signed, unsigned, and plain chars for C++ and
4567 with int cases falling through from previous case. */
4568 if (parm->has_no_signedness ())
4570 if (arg->has_no_signedness ())
4571 return EXACT_MATCH_BADNESS;
4573 return INTEGER_CONVERSION_BADNESS;
4575 else if (parm->is_unsigned ())
4577 if (arg->is_unsigned ())
4578 return EXACT_MATCH_BADNESS;
4580 return INTEGER_PROMOTION_BADNESS;
4582 else if (!arg->has_no_signedness () && !arg->is_unsigned ())
4583 return EXACT_MATCH_BADNESS;
4585 return INTEGER_CONVERSION_BADNESS;
4587 return INCOMPATIBLE_TYPE_BADNESS;
4591 /* rank_one_type helper for when PARM's type code is TYPE_CODE_RANGE. */
4594 rank_one_type_parm_range (struct type *parm, struct type *arg, struct value *value)
4596 switch (arg->code ())
4599 case TYPE_CODE_CHAR:
4600 case TYPE_CODE_RANGE:
4601 case TYPE_CODE_BOOL:
4602 case TYPE_CODE_ENUM:
4603 return INTEGER_CONVERSION_BADNESS;
4605 return INT_FLOAT_CONVERSION_BADNESS;
4607 return INCOMPATIBLE_TYPE_BADNESS;
4611 /* rank_one_type helper for when PARM's type code is TYPE_CODE_BOOL. */
4614 rank_one_type_parm_bool (struct type *parm, struct type *arg, struct value *value)
4616 switch (arg->code ())
4618 /* n3290 draft, section 4.12.1 (conv.bool):
4620 "A prvalue of arithmetic, unscoped enumeration, pointer, or
4621 pointer to member type can be converted to a prvalue of type
4622 bool. A zero value, null pointer value, or null member pointer
4623 value is converted to false; any other value is converted to
4624 true. A prvalue of type std::nullptr_t can be converted to a
4625 prvalue of type bool; the resulting value is false." */
4627 case TYPE_CODE_CHAR:
4628 case TYPE_CODE_ENUM:
4630 case TYPE_CODE_MEMBERPTR:
4632 return BOOL_CONVERSION_BADNESS;
4633 case TYPE_CODE_RANGE:
4634 return INCOMPATIBLE_TYPE_BADNESS;
4635 case TYPE_CODE_BOOL:
4636 return EXACT_MATCH_BADNESS;
4638 return INCOMPATIBLE_TYPE_BADNESS;
4642 /* rank_one_type helper for when PARM's type code is TYPE_CODE_FLOAT. */
4645 rank_one_type_parm_float (struct type *parm, struct type *arg, struct value *value)
4647 switch (arg->code ())
4650 if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
4651 return FLOAT_PROMOTION_BADNESS;
4652 else if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
4653 return EXACT_MATCH_BADNESS;
4655 return FLOAT_CONVERSION_BADNESS;
4657 case TYPE_CODE_BOOL:
4658 case TYPE_CODE_ENUM:
4659 case TYPE_CODE_RANGE:
4660 case TYPE_CODE_CHAR:
4661 return INT_FLOAT_CONVERSION_BADNESS;
4663 return INCOMPATIBLE_TYPE_BADNESS;
4667 /* rank_one_type helper for when PARM's type code is TYPE_CODE_COMPLEX. */
4670 rank_one_type_parm_complex (struct type *parm, struct type *arg, struct value *value)
4672 switch (arg->code ())
4673 { /* Strictly not needed for C++, but... */
4675 return FLOAT_PROMOTION_BADNESS;
4676 case TYPE_CODE_COMPLEX:
4677 return EXACT_MATCH_BADNESS;
4679 return INCOMPATIBLE_TYPE_BADNESS;
4683 /* rank_one_type helper for when PARM's type code is TYPE_CODE_STRUCT. */
4686 rank_one_type_parm_struct (struct type *parm, struct type *arg, struct value *value)
4688 struct rank rank = {0, 0};
4690 switch (arg->code ())
4692 case TYPE_CODE_STRUCT:
4693 /* Check for derivation */
4694 rank.subrank = distance_to_ancestor (parm, arg, 0);
4695 if (rank.subrank >= 0)
4696 return sum_ranks (BASE_CONVERSION_BADNESS, rank);
4699 return INCOMPATIBLE_TYPE_BADNESS;
4703 /* rank_one_type helper for when PARM's type code is TYPE_CODE_SET. */
4706 rank_one_type_parm_set (struct type *parm, struct type *arg, struct value *value)
4708 switch (arg->code ())
4712 return rank_one_type (parm->field (0).type (),
4713 arg->field (0).type (), NULL);
4715 return INCOMPATIBLE_TYPE_BADNESS;
4719 /* Compare one type (PARM) for compatibility with another (ARG).
4720 * PARM is intended to be the parameter type of a function; and
4721 * ARG is the supplied argument's type. This function tests if
4722 * the latter can be converted to the former.
4723 * VALUE is the argument's value or NULL if none (or called recursively)
4725 * Return 0 if they are identical types;
4726 * Otherwise, return an integer which corresponds to how compatible
4727 * PARM is to ARG. The higher the return value, the worse the match.
4728 * Generally the "bad" conversions are all uniformly assigned a 100. */
4731 rank_one_type (struct type *parm, struct type *arg, struct value *value)
4733 struct rank rank = {0,0};
4735 /* Resolve typedefs */
4736 if (parm->code () == TYPE_CODE_TYPEDEF)
4737 parm = check_typedef (parm);
4738 if (arg->code () == TYPE_CODE_TYPEDEF)
4739 arg = check_typedef (arg);
4741 if (TYPE_IS_REFERENCE (parm) && value != NULL)
4743 if (VALUE_LVAL (value) == not_lval)
4745 /* Rvalues should preferably bind to rvalue references or const
4746 lvalue references. */
4747 if (parm->code () == TYPE_CODE_RVALUE_REF)
4748 rank.subrank = REFERENCE_CONVERSION_RVALUE;
4749 else if (TYPE_CONST (TYPE_TARGET_TYPE (parm)))
4750 rank.subrank = REFERENCE_CONVERSION_CONST_LVALUE;
4752 return INCOMPATIBLE_TYPE_BADNESS;
4753 return sum_ranks (rank, REFERENCE_CONVERSION_BADNESS);
4757 /* It's illegal to pass an lvalue as an rvalue. */
4758 if (parm->code () == TYPE_CODE_RVALUE_REF)
4759 return INCOMPATIBLE_TYPE_BADNESS;
4763 if (types_equal (parm, arg))
4765 struct type *t1 = parm;
4766 struct type *t2 = arg;
4768 /* For pointers and references, compare target type. */
4769 if (parm->code () == TYPE_CODE_PTR || TYPE_IS_REFERENCE (parm))
4771 t1 = TYPE_TARGET_TYPE (parm);
4772 t2 = TYPE_TARGET_TYPE (arg);
4775 /* Make sure they are CV equal, too. */
4776 if (TYPE_CONST (t1) != TYPE_CONST (t2))
4777 rank.subrank |= CV_CONVERSION_CONST;
4778 if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2))
4779 rank.subrank |= CV_CONVERSION_VOLATILE;
4780 if (rank.subrank != 0)
4781 return sum_ranks (CV_CONVERSION_BADNESS, rank);
4782 return EXACT_MATCH_BADNESS;
4785 /* See through references, since we can almost make non-references
4788 if (TYPE_IS_REFERENCE (arg))
4789 return (sum_ranks (rank_one_type (parm, TYPE_TARGET_TYPE (arg), NULL),
4790 REFERENCE_SEE_THROUGH_BADNESS));
4791 if (TYPE_IS_REFERENCE (parm))
4792 return (sum_ranks (rank_one_type (TYPE_TARGET_TYPE (parm), arg, NULL),
4793 REFERENCE_SEE_THROUGH_BADNESS));
4795 /* Debugging only. */
4796 fprintf_filtered (gdb_stderr,
4797 "------ Arg is %s [%d], parm is %s [%d]\n",
4798 arg->name (), arg->code (),
4799 parm->name (), parm->code ());
4801 /* x -> y means arg of type x being supplied for parameter of type y. */
4803 switch (parm->code ())
4806 return rank_one_type_parm_ptr (parm, arg, value);
4807 case TYPE_CODE_ARRAY:
4808 return rank_one_type_parm_array (parm, arg, value);
4809 case TYPE_CODE_FUNC:
4810 return rank_one_type_parm_func (parm, arg, value);
4812 return rank_one_type_parm_int (parm, arg, value);
4813 case TYPE_CODE_ENUM:
4814 return rank_one_type_parm_enum (parm, arg, value);
4815 case TYPE_CODE_CHAR:
4816 return rank_one_type_parm_char (parm, arg, value);
4817 case TYPE_CODE_RANGE:
4818 return rank_one_type_parm_range (parm, arg, value);
4819 case TYPE_CODE_BOOL:
4820 return rank_one_type_parm_bool (parm, arg, value);
4822 return rank_one_type_parm_float (parm, arg, value);
4823 case TYPE_CODE_COMPLEX:
4824 return rank_one_type_parm_complex (parm, arg, value);
4825 case TYPE_CODE_STRUCT:
4826 return rank_one_type_parm_struct (parm, arg, value);
4828 return rank_one_type_parm_set (parm, arg, value);
4830 return INCOMPATIBLE_TYPE_BADNESS;
4831 } /* switch (arg->code ()) */
4834 /* End of functions for overload resolution. */
4836 /* Routines to pretty-print types. */
4839 print_bit_vector (B_TYPE *bits, int nbits)
4843 for (bitno = 0; bitno < nbits; bitno++)
4845 if ((bitno % 8) == 0)
4847 puts_filtered (" ");
4849 if (B_TST (bits, bitno))
4850 printf_filtered (("1"));
4852 printf_filtered (("0"));
4856 /* Note the first arg should be the "this" pointer, we may not want to
4857 include it since we may get into a infinitely recursive
4861 print_args (struct field *args, int nargs, int spaces)
4867 for (i = 0; i < nargs; i++)
4869 printf_filtered ("%*s[%d] name '%s'\n", spaces, "", i,
4870 args[i].name != NULL ? args[i].name : "<NULL>");
4871 recursive_dump_type (args[i].type (), spaces + 2);
4877 field_is_static (struct field *f)
4879 /* "static" fields are the fields whose location is not relative
4880 to the address of the enclosing struct. It would be nice to
4881 have a dedicated flag that would be set for static fields when
4882 the type is being created. But in practice, checking the field
4883 loc_kind should give us an accurate answer. */
4884 return (FIELD_LOC_KIND (*f) == FIELD_LOC_KIND_PHYSNAME
4885 || FIELD_LOC_KIND (*f) == FIELD_LOC_KIND_PHYSADDR);
4889 dump_fn_fieldlists (struct type *type, int spaces)
4895 printf_filtered ("%*sfn_fieldlists ", spaces, "");
4896 gdb_print_host_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
4897 printf_filtered ("\n");
4898 for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
4900 f = TYPE_FN_FIELDLIST1 (type, method_idx);
4901 printf_filtered ("%*s[%d] name '%s' (", spaces + 2, "",
4903 TYPE_FN_FIELDLIST_NAME (type, method_idx));
4904 gdb_print_host_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
4906 printf_filtered (_(") length %d\n"),
4907 TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
4908 for (overload_idx = 0;
4909 overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
4912 printf_filtered ("%*s[%d] physname '%s' (",
4913 spaces + 4, "", overload_idx,
4914 TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
4915 gdb_print_host_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
4917 printf_filtered (")\n");
4918 printf_filtered ("%*stype ", spaces + 8, "");
4919 gdb_print_host_address (TYPE_FN_FIELD_TYPE (f, overload_idx),
4921 printf_filtered ("\n");
4923 recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
4926 printf_filtered ("%*sargs ", spaces + 8, "");
4927 gdb_print_host_address (TYPE_FN_FIELD_ARGS (f, overload_idx),
4929 printf_filtered ("\n");
4930 print_args (TYPE_FN_FIELD_ARGS (f, overload_idx),
4931 TYPE_FN_FIELD_TYPE (f, overload_idx)->num_fields (),
4933 printf_filtered ("%*sfcontext ", spaces + 8, "");
4934 gdb_print_host_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
4936 printf_filtered ("\n");
4938 printf_filtered ("%*sis_const %d\n", spaces + 8, "",
4939 TYPE_FN_FIELD_CONST (f, overload_idx));
4940 printf_filtered ("%*sis_volatile %d\n", spaces + 8, "",
4941 TYPE_FN_FIELD_VOLATILE (f, overload_idx));
4942 printf_filtered ("%*sis_private %d\n", spaces + 8, "",
4943 TYPE_FN_FIELD_PRIVATE (f, overload_idx));
4944 printf_filtered ("%*sis_protected %d\n", spaces + 8, "",
4945 TYPE_FN_FIELD_PROTECTED (f, overload_idx));
4946 printf_filtered ("%*sis_stub %d\n", spaces + 8, "",
4947 TYPE_FN_FIELD_STUB (f, overload_idx));
4948 printf_filtered ("%*sdefaulted %d\n", spaces + 8, "",
4949 TYPE_FN_FIELD_DEFAULTED (f, overload_idx));
4950 printf_filtered ("%*sis_deleted %d\n", spaces + 8, "",
4951 TYPE_FN_FIELD_DELETED (f, overload_idx));
4952 printf_filtered ("%*svoffset %u\n", spaces + 8, "",
4953 TYPE_FN_FIELD_VOFFSET (f, overload_idx));
4959 print_cplus_stuff (struct type *type, int spaces)
4961 printf_filtered ("%*svptr_fieldno %d\n", spaces, "",
4962 TYPE_VPTR_FIELDNO (type));
4963 printf_filtered ("%*svptr_basetype ", spaces, "");
4964 gdb_print_host_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
4965 puts_filtered ("\n");
4966 if (TYPE_VPTR_BASETYPE (type) != NULL)
4967 recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
4969 printf_filtered ("%*sn_baseclasses %d\n", spaces, "",
4970 TYPE_N_BASECLASSES (type));
4971 printf_filtered ("%*snfn_fields %d\n", spaces, "",
4972 TYPE_NFN_FIELDS (type));
4973 if (TYPE_N_BASECLASSES (type) > 0)
4975 printf_filtered ("%*svirtual_field_bits (%d bits at *",
4976 spaces, "", TYPE_N_BASECLASSES (type));
4977 gdb_print_host_address (TYPE_FIELD_VIRTUAL_BITS (type),
4979 printf_filtered (")");
4981 print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
4982 TYPE_N_BASECLASSES (type));
4983 puts_filtered ("\n");
4985 if (type->num_fields () > 0)
4987 if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
4989 printf_filtered ("%*sprivate_field_bits (%d bits at *",
4990 spaces, "", type->num_fields ());
4991 gdb_print_host_address (TYPE_FIELD_PRIVATE_BITS (type),
4993 printf_filtered (")");
4994 print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
4995 type->num_fields ());
4996 puts_filtered ("\n");
4998 if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
5000 printf_filtered ("%*sprotected_field_bits (%d bits at *",
5001 spaces, "", type->num_fields ());
5002 gdb_print_host_address (TYPE_FIELD_PROTECTED_BITS (type),
5004 printf_filtered (")");
5005 print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
5006 type->num_fields ());
5007 puts_filtered ("\n");
5010 if (TYPE_NFN_FIELDS (type) > 0)
5012 dump_fn_fieldlists (type, spaces);
5015 printf_filtered ("%*scalling_convention %d\n", spaces, "",
5016 TYPE_CPLUS_CALLING_CONVENTION (type));
5019 /* Print the contents of the TYPE's type_specific union, assuming that
5020 its type-specific kind is TYPE_SPECIFIC_GNAT_STUFF. */
5023 print_gnat_stuff (struct type *type, int spaces)
5025 struct type *descriptive_type = TYPE_DESCRIPTIVE_TYPE (type);
5027 if (descriptive_type == NULL)
5028 printf_filtered ("%*sno descriptive type\n", spaces + 2, "");
5031 printf_filtered ("%*sdescriptive type\n", spaces + 2, "");
5032 recursive_dump_type (descriptive_type, spaces + 4);
5036 /* Print the contents of the TYPE's type_specific union, assuming that
5037 its type-specific kind is TYPE_SPECIFIC_FIXED_POINT. */
5040 print_fixed_point_type_info (struct type *type, int spaces)
5042 printf_filtered ("%*sscaling factor: %s\n", spaces + 2, "",
5043 type->fixed_point_scaling_factor ().str ().c_str ());
5046 static struct obstack dont_print_type_obstack;
5048 /* Print the dynamic_prop PROP. */
5051 dump_dynamic_prop (dynamic_prop const& prop)
5053 switch (prop.kind ())
5056 printf_filtered ("%s", plongest (prop.const_val ()));
5058 case PROP_UNDEFINED:
5059 printf_filtered ("(undefined)");
5063 printf_filtered ("(dynamic)");
5066 gdb_assert_not_reached ("unhandled prop kind");
5072 recursive_dump_type (struct type *type, int spaces)
5077 obstack_begin (&dont_print_type_obstack, 0);
5079 if (type->num_fields () > 0
5080 || (HAVE_CPLUS_STRUCT (type) && TYPE_NFN_FIELDS (type) > 0))
5082 struct type **first_dont_print
5083 = (struct type **) obstack_base (&dont_print_type_obstack);
5085 int i = (struct type **)
5086 obstack_next_free (&dont_print_type_obstack) - first_dont_print;
5090 if (type == first_dont_print[i])
5092 printf_filtered ("%*stype node ", spaces, "");
5093 gdb_print_host_address (type, gdb_stdout);
5094 printf_filtered (_(" <same as already seen type>\n"));
5099 obstack_ptr_grow (&dont_print_type_obstack, type);
5102 printf_filtered ("%*stype node ", spaces, "");
5103 gdb_print_host_address (type, gdb_stdout);
5104 printf_filtered ("\n");
5105 printf_filtered ("%*sname '%s' (", spaces, "",
5106 type->name () ? type->name () : "<NULL>");
5107 gdb_print_host_address (type->name (), gdb_stdout);
5108 printf_filtered (")\n");
5109 printf_filtered ("%*scode 0x%x ", spaces, "", type->code ());
5110 switch (type->code ())
5112 case TYPE_CODE_UNDEF:
5113 printf_filtered ("(TYPE_CODE_UNDEF)");
5116 printf_filtered ("(TYPE_CODE_PTR)");
5118 case TYPE_CODE_ARRAY:
5119 printf_filtered ("(TYPE_CODE_ARRAY)");
5121 case TYPE_CODE_STRUCT:
5122 printf_filtered ("(TYPE_CODE_STRUCT)");
5124 case TYPE_CODE_UNION:
5125 printf_filtered ("(TYPE_CODE_UNION)");
5127 case TYPE_CODE_ENUM:
5128 printf_filtered ("(TYPE_CODE_ENUM)");
5130 case TYPE_CODE_FLAGS:
5131 printf_filtered ("(TYPE_CODE_FLAGS)");
5133 case TYPE_CODE_FUNC:
5134 printf_filtered ("(TYPE_CODE_FUNC)");
5137 printf_filtered ("(TYPE_CODE_INT)");
5140 printf_filtered ("(TYPE_CODE_FLT)");
5142 case TYPE_CODE_VOID:
5143 printf_filtered ("(TYPE_CODE_VOID)");
5146 printf_filtered ("(TYPE_CODE_SET)");
5148 case TYPE_CODE_RANGE:
5149 printf_filtered ("(TYPE_CODE_RANGE)");
5151 case TYPE_CODE_STRING:
5152 printf_filtered ("(TYPE_CODE_STRING)");
5154 case TYPE_CODE_ERROR:
5155 printf_filtered ("(TYPE_CODE_ERROR)");
5157 case TYPE_CODE_MEMBERPTR:
5158 printf_filtered ("(TYPE_CODE_MEMBERPTR)");
5160 case TYPE_CODE_METHODPTR:
5161 printf_filtered ("(TYPE_CODE_METHODPTR)");
5163 case TYPE_CODE_METHOD:
5164 printf_filtered ("(TYPE_CODE_METHOD)");
5167 printf_filtered ("(TYPE_CODE_REF)");
5169 case TYPE_CODE_CHAR:
5170 printf_filtered ("(TYPE_CODE_CHAR)");
5172 case TYPE_CODE_BOOL:
5173 printf_filtered ("(TYPE_CODE_BOOL)");
5175 case TYPE_CODE_COMPLEX:
5176 printf_filtered ("(TYPE_CODE_COMPLEX)");
5178 case TYPE_CODE_TYPEDEF:
5179 printf_filtered ("(TYPE_CODE_TYPEDEF)");
5181 case TYPE_CODE_NAMESPACE:
5182 printf_filtered ("(TYPE_CODE_NAMESPACE)");
5184 case TYPE_CODE_FIXED_POINT:
5185 printf_filtered ("(TYPE_CODE_FIXED_POINT)");
5188 printf_filtered ("(UNKNOWN TYPE CODE)");
5191 puts_filtered ("\n");
5192 printf_filtered ("%*slength %s\n", spaces, "",
5193 pulongest (TYPE_LENGTH (type)));
5194 if (type->is_objfile_owned ())
5196 printf_filtered ("%*sobjfile ", spaces, "");
5197 gdb_print_host_address (type->objfile_owner (), gdb_stdout);
5201 printf_filtered ("%*sgdbarch ", spaces, "");
5202 gdb_print_host_address (type->arch_owner (), gdb_stdout);
5204 printf_filtered ("\n");
5205 printf_filtered ("%*starget_type ", spaces, "");
5206 gdb_print_host_address (TYPE_TARGET_TYPE (type), gdb_stdout);
5207 printf_filtered ("\n");
5208 if (TYPE_TARGET_TYPE (type) != NULL)
5210 recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
5212 printf_filtered ("%*spointer_type ", spaces, "");
5213 gdb_print_host_address (TYPE_POINTER_TYPE (type), gdb_stdout);
5214 printf_filtered ("\n");
5215 printf_filtered ("%*sreference_type ", spaces, "");
5216 gdb_print_host_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
5217 printf_filtered ("\n");
5218 printf_filtered ("%*stype_chain ", spaces, "");
5219 gdb_print_host_address (TYPE_CHAIN (type), gdb_stdout);
5220 printf_filtered ("\n");
5221 printf_filtered ("%*sinstance_flags 0x%x", spaces, "",
5222 (unsigned) type->instance_flags ());
5223 if (TYPE_CONST (type))
5225 puts_filtered (" TYPE_CONST");
5227 if (TYPE_VOLATILE (type))
5229 puts_filtered (" TYPE_VOLATILE");
5231 if (TYPE_CODE_SPACE (type))
5233 puts_filtered (" TYPE_CODE_SPACE");
5235 if (TYPE_DATA_SPACE (type))
5237 puts_filtered (" TYPE_DATA_SPACE");
5239 if (TYPE_ADDRESS_CLASS_1 (type))
5241 puts_filtered (" TYPE_ADDRESS_CLASS_1");
5243 if (TYPE_ADDRESS_CLASS_2 (type))
5245 puts_filtered (" TYPE_ADDRESS_CLASS_2");
5247 if (TYPE_RESTRICT (type))
5249 puts_filtered (" TYPE_RESTRICT");
5251 if (TYPE_ATOMIC (type))
5253 puts_filtered (" TYPE_ATOMIC");
5255 puts_filtered ("\n");
5257 printf_filtered ("%*sflags", spaces, "");
5258 if (type->is_unsigned ())
5260 puts_filtered (" TYPE_UNSIGNED");
5262 if (type->has_no_signedness ())
5264 puts_filtered (" TYPE_NOSIGN");
5266 if (type->endianity_is_not_default ())
5268 puts_filtered (" TYPE_ENDIANITY_NOT_DEFAULT");
5270 if (type->is_stub ())
5272 puts_filtered (" TYPE_STUB");
5274 if (type->target_is_stub ())
5276 puts_filtered (" TYPE_TARGET_STUB");
5278 if (type->is_prototyped ())
5280 puts_filtered (" TYPE_PROTOTYPED");
5282 if (type->has_varargs ())
5284 puts_filtered (" TYPE_VARARGS");
5286 /* This is used for things like AltiVec registers on ppc. Gcc emits
5287 an attribute for the array type, which tells whether or not we
5288 have a vector, instead of a regular array. */
5289 if (type->is_vector ())
5291 puts_filtered (" TYPE_VECTOR");
5293 if (type->is_fixed_instance ())
5295 puts_filtered (" TYPE_FIXED_INSTANCE");
5297 if (type->stub_is_supported ())
5299 puts_filtered (" TYPE_STUB_SUPPORTED");
5301 if (TYPE_NOTTEXT (type))
5303 puts_filtered (" TYPE_NOTTEXT");
5305 puts_filtered ("\n");
5306 printf_filtered ("%*snfields %d ", spaces, "", type->num_fields ());
5307 if (TYPE_ASSOCIATED_PROP (type) != nullptr
5308 || TYPE_ALLOCATED_PROP (type) != nullptr)
5310 printf_filtered ("%*s", spaces, "");
5311 if (TYPE_ASSOCIATED_PROP (type) != nullptr)
5313 printf_filtered ("associated ");
5314 dump_dynamic_prop (*TYPE_ASSOCIATED_PROP (type));
5316 if (TYPE_ALLOCATED_PROP (type) != nullptr)
5318 if (TYPE_ASSOCIATED_PROP (type) != nullptr)
5319 printf_filtered (" ");
5320 printf_filtered ("allocated ");
5321 dump_dynamic_prop (*TYPE_ALLOCATED_PROP (type));
5323 printf_filtered ("\n");
5325 gdb_print_host_address (type->fields (), gdb_stdout);
5326 puts_filtered ("\n");
5327 for (idx = 0; idx < type->num_fields (); idx++)
5329 if (type->code () == TYPE_CODE_ENUM)
5330 printf_filtered ("%*s[%d] enumval %s type ", spaces + 2, "",
5331 idx, plongest (TYPE_FIELD_ENUMVAL (type, idx)));
5333 printf_filtered ("%*s[%d] bitpos %s bitsize %d type ", spaces + 2, "",
5334 idx, plongest (TYPE_FIELD_BITPOS (type, idx)),
5335 TYPE_FIELD_BITSIZE (type, idx));
5336 gdb_print_host_address (type->field (idx).type (), gdb_stdout);
5337 printf_filtered (" name '%s' (",
5338 TYPE_FIELD_NAME (type, idx) != NULL
5339 ? TYPE_FIELD_NAME (type, idx)
5341 gdb_print_host_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
5342 printf_filtered (")\n");
5343 if (type->field (idx).type () != NULL)
5345 recursive_dump_type (type->field (idx).type (), spaces + 4);
5348 if (type->code () == TYPE_CODE_RANGE)
5350 printf_filtered ("%*slow ", spaces, "");
5351 dump_dynamic_prop (type->bounds ()->low);
5352 printf_filtered (" high ");
5353 dump_dynamic_prop (type->bounds ()->high);
5354 printf_filtered ("\n");
5357 switch (TYPE_SPECIFIC_FIELD (type))
5359 case TYPE_SPECIFIC_CPLUS_STUFF:
5360 printf_filtered ("%*scplus_stuff ", spaces, "");
5361 gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type),
5363 puts_filtered ("\n");
5364 print_cplus_stuff (type, spaces);
5367 case TYPE_SPECIFIC_GNAT_STUFF:
5368 printf_filtered ("%*sgnat_stuff ", spaces, "");
5369 gdb_print_host_address (TYPE_GNAT_SPECIFIC (type), gdb_stdout);
5370 puts_filtered ("\n");
5371 print_gnat_stuff (type, spaces);
5374 case TYPE_SPECIFIC_FLOATFORMAT:
5375 printf_filtered ("%*sfloatformat ", spaces, "");
5376 if (TYPE_FLOATFORMAT (type) == NULL
5377 || TYPE_FLOATFORMAT (type)->name == NULL)
5378 puts_filtered ("(null)");
5380 puts_filtered (TYPE_FLOATFORMAT (type)->name);
5381 puts_filtered ("\n");
5384 case TYPE_SPECIFIC_FUNC:
5385 printf_filtered ("%*scalling_convention %d\n", spaces, "",
5386 TYPE_CALLING_CONVENTION (type));
5387 /* tail_call_list is not printed. */
5390 case TYPE_SPECIFIC_SELF_TYPE:
5391 printf_filtered ("%*sself_type ", spaces, "");
5392 gdb_print_host_address (TYPE_SELF_TYPE (type), gdb_stdout);
5393 puts_filtered ("\n");
5396 case TYPE_SPECIFIC_FIXED_POINT:
5397 printf_filtered ("%*sfixed_point_info ", spaces, "");
5398 print_fixed_point_type_info (type, spaces);
5399 puts_filtered ("\n");
5402 case TYPE_SPECIFIC_INT:
5403 if (type->bit_size_differs_p ())
5405 unsigned bit_size = type->bit_size ();
5406 unsigned bit_off = type->bit_offset ();
5407 printf_filtered ("%*s bit size = %u, bit offset = %u\n", spaces, "",
5414 obstack_free (&dont_print_type_obstack, NULL);
5417 /* Trivial helpers for the libiberty hash table, for mapping one
5420 struct type_pair : public allocate_on_obstack
5422 type_pair (struct type *old_, struct type *newobj_)
5423 : old (old_), newobj (newobj_)
5426 struct type * const old, * const newobj;
5430 type_pair_hash (const void *item)
5432 const struct type_pair *pair = (const struct type_pair *) item;
5434 return htab_hash_pointer (pair->old);
5438 type_pair_eq (const void *item_lhs, const void *item_rhs)
5440 const struct type_pair *lhs = (const struct type_pair *) item_lhs;
5441 const struct type_pair *rhs = (const struct type_pair *) item_rhs;
5443 return lhs->old == rhs->old;
5446 /* Allocate the hash table used by copy_type_recursive to walk
5447 types without duplicates. We use OBJFILE's obstack, because
5448 OBJFILE is about to be deleted. */
5451 create_copied_types_hash (struct objfile *objfile)
5453 return htab_up (htab_create_alloc_ex (1, type_pair_hash, type_pair_eq,
5454 NULL, &objfile->objfile_obstack,
5455 hashtab_obstack_allocate,
5456 dummy_obstack_deallocate));
5459 /* Recursively copy (deep copy) a dynamic attribute list of a type. */
5461 static struct dynamic_prop_list *
5462 copy_dynamic_prop_list (struct obstack *objfile_obstack,
5463 struct dynamic_prop_list *list)
5465 struct dynamic_prop_list *copy = list;
5466 struct dynamic_prop_list **node_ptr = ©
5468 while (*node_ptr != NULL)
5470 struct dynamic_prop_list *node_copy;
5472 node_copy = ((struct dynamic_prop_list *)
5473 obstack_copy (objfile_obstack, *node_ptr,
5474 sizeof (struct dynamic_prop_list)));
5475 node_copy->prop = (*node_ptr)->prop;
5476 *node_ptr = node_copy;
5478 node_ptr = &node_copy->next;
5484 /* Recursively copy (deep copy) TYPE, if it is associated with
5485 OBJFILE. Return a new type owned by the gdbarch associated with the type, a
5486 saved type if we have already visited TYPE (using COPIED_TYPES), or TYPE if
5487 it is not associated with OBJFILE. */
5490 copy_type_recursive (struct objfile *objfile,
5492 htab_t copied_types)
5495 struct type *new_type;
5497 if (!type->is_objfile_owned ())
5500 /* This type shouldn't be pointing to any types in other objfiles;
5501 if it did, the type might disappear unexpectedly. */
5502 gdb_assert (type->objfile_owner () == objfile);
5504 struct type_pair pair (type, nullptr);
5506 slot = htab_find_slot (copied_types, &pair, INSERT);
5508 return ((struct type_pair *) *slot)->newobj;
5510 new_type = alloc_type_arch (type->arch ());
5512 /* We must add the new type to the hash table immediately, in case
5513 we encounter this type again during a recursive call below. */
5514 struct type_pair *stored
5515 = new (&objfile->objfile_obstack) struct type_pair (type, new_type);
5519 /* Copy the common fields of types. For the main type, we simply
5520 copy the entire thing and then update specific fields as needed. */
5521 *TYPE_MAIN_TYPE (new_type) = *TYPE_MAIN_TYPE (type);
5523 new_type->set_owner (type->arch ());
5526 new_type->set_name (xstrdup (type->name ()));
5528 new_type->set_instance_flags (type->instance_flags ());
5529 TYPE_LENGTH (new_type) = TYPE_LENGTH (type);
5531 /* Copy the fields. */
5532 if (type->num_fields ())
5536 nfields = type->num_fields ();
5537 new_type->set_fields
5539 TYPE_ZALLOC (new_type, nfields * sizeof (struct field)));
5541 for (i = 0; i < nfields; i++)
5543 TYPE_FIELD_ARTIFICIAL (new_type, i) =
5544 TYPE_FIELD_ARTIFICIAL (type, i);
5545 TYPE_FIELD_BITSIZE (new_type, i) = TYPE_FIELD_BITSIZE (type, i);
5546 if (type->field (i).type ())
5547 new_type->field (i).set_type
5548 (copy_type_recursive (objfile, type->field (i).type (),
5550 if (TYPE_FIELD_NAME (type, i))
5551 TYPE_FIELD_NAME (new_type, i) =
5552 xstrdup (TYPE_FIELD_NAME (type, i));
5553 switch (TYPE_FIELD_LOC_KIND (type, i))
5555 case FIELD_LOC_KIND_BITPOS:
5556 SET_FIELD_BITPOS (new_type->field (i),
5557 TYPE_FIELD_BITPOS (type, i));
5559 case FIELD_LOC_KIND_ENUMVAL:
5560 SET_FIELD_ENUMVAL (new_type->field (i),
5561 TYPE_FIELD_ENUMVAL (type, i));
5563 case FIELD_LOC_KIND_PHYSADDR:
5564 SET_FIELD_PHYSADDR (new_type->field (i),
5565 TYPE_FIELD_STATIC_PHYSADDR (type, i));
5567 case FIELD_LOC_KIND_PHYSNAME:
5568 SET_FIELD_PHYSNAME (new_type->field (i),
5569 xstrdup (TYPE_FIELD_STATIC_PHYSNAME (type,
5573 internal_error (__FILE__, __LINE__,
5574 _("Unexpected type field location kind: %d"),
5575 TYPE_FIELD_LOC_KIND (type, i));
5580 /* For range types, copy the bounds information. */
5581 if (type->code () == TYPE_CODE_RANGE)
5583 range_bounds *bounds
5584 = ((struct range_bounds *) TYPE_ALLOC
5585 (new_type, sizeof (struct range_bounds)));
5587 *bounds = *type->bounds ();
5588 new_type->set_bounds (bounds);
5591 if (type->main_type->dyn_prop_list != NULL)
5592 new_type->main_type->dyn_prop_list
5593 = copy_dynamic_prop_list (&objfile->objfile_obstack,
5594 type->main_type->dyn_prop_list);
5597 /* Copy pointers to other types. */
5598 if (TYPE_TARGET_TYPE (type))
5599 TYPE_TARGET_TYPE (new_type) =
5600 copy_type_recursive (objfile,
5601 TYPE_TARGET_TYPE (type),
5604 /* Maybe copy the type_specific bits.
5606 NOTE drow/2005-12-09: We do not copy the C++-specific bits like
5607 base classes and methods. There's no fundamental reason why we
5608 can't, but at the moment it is not needed. */
5610 switch (TYPE_SPECIFIC_FIELD (type))
5612 case TYPE_SPECIFIC_NONE:
5614 case TYPE_SPECIFIC_FUNC:
5615 INIT_FUNC_SPECIFIC (new_type);
5616 TYPE_CALLING_CONVENTION (new_type) = TYPE_CALLING_CONVENTION (type);
5617 TYPE_NO_RETURN (new_type) = TYPE_NO_RETURN (type);
5618 TYPE_TAIL_CALL_LIST (new_type) = NULL;
5620 case TYPE_SPECIFIC_FLOATFORMAT:
5621 TYPE_FLOATFORMAT (new_type) = TYPE_FLOATFORMAT (type);
5623 case TYPE_SPECIFIC_CPLUS_STUFF:
5624 INIT_CPLUS_SPECIFIC (new_type);
5626 case TYPE_SPECIFIC_GNAT_STUFF:
5627 INIT_GNAT_SPECIFIC (new_type);
5629 case TYPE_SPECIFIC_SELF_TYPE:
5630 set_type_self_type (new_type,
5631 copy_type_recursive (objfile, TYPE_SELF_TYPE (type),
5634 case TYPE_SPECIFIC_FIXED_POINT:
5635 INIT_FIXED_POINT_SPECIFIC (new_type);
5636 new_type->fixed_point_info ().scaling_factor
5637 = type->fixed_point_info ().scaling_factor;
5639 case TYPE_SPECIFIC_INT:
5640 TYPE_SPECIFIC_FIELD (new_type) = TYPE_SPECIFIC_INT;
5641 TYPE_MAIN_TYPE (new_type)->type_specific.int_stuff
5642 = TYPE_MAIN_TYPE (type)->type_specific.int_stuff;
5646 gdb_assert_not_reached ("bad type_specific_kind");
5652 /* Make a copy of the given TYPE, except that the pointer & reference
5653 types are not preserved.
5655 This function assumes that the given type has an associated objfile.
5656 This objfile is used to allocate the new type. */
5659 copy_type (const struct type *type)
5661 struct type *new_type;
5663 gdb_assert (type->is_objfile_owned ());
5665 new_type = alloc_type_copy (type);
5666 new_type->set_instance_flags (type->instance_flags ());
5667 TYPE_LENGTH (new_type) = TYPE_LENGTH (type);
5668 memcpy (TYPE_MAIN_TYPE (new_type), TYPE_MAIN_TYPE (type),
5669 sizeof (struct main_type));
5670 if (type->main_type->dyn_prop_list != NULL)
5671 new_type->main_type->dyn_prop_list
5672 = copy_dynamic_prop_list (&type->objfile_owner ()->objfile_obstack,
5673 type->main_type->dyn_prop_list);
5678 /* Helper functions to initialize architecture-specific types. */
5680 /* Allocate a type structure associated with GDBARCH and set its
5681 CODE, LENGTH, and NAME fields. */
5684 arch_type (struct gdbarch *gdbarch,
5685 enum type_code code, int bit, const char *name)
5689 type = alloc_type_arch (gdbarch);
5690 set_type_code (type, code);
5691 gdb_assert ((bit % TARGET_CHAR_BIT) == 0);
5692 TYPE_LENGTH (type) = bit / TARGET_CHAR_BIT;
5695 type->set_name (gdbarch_obstack_strdup (gdbarch, name));
5700 /* Allocate a TYPE_CODE_INT type structure associated with GDBARCH.
5701 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
5702 the type's TYPE_UNSIGNED flag. NAME is the type name. */
5705 arch_integer_type (struct gdbarch *gdbarch,
5706 int bit, int unsigned_p, const char *name)
5710 t = arch_type (gdbarch, TYPE_CODE_INT, bit, name);
5712 t->set_is_unsigned (true);
5717 /* Allocate a TYPE_CODE_CHAR type structure associated with GDBARCH.
5718 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
5719 the type's TYPE_UNSIGNED flag. NAME is the type name. */
5722 arch_character_type (struct gdbarch *gdbarch,
5723 int bit, int unsigned_p, const char *name)
5727 t = arch_type (gdbarch, TYPE_CODE_CHAR, bit, name);
5729 t->set_is_unsigned (true);
5734 /* Allocate a TYPE_CODE_BOOL type structure associated with GDBARCH.
5735 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
5736 the type's TYPE_UNSIGNED flag. NAME is the type name. */
5739 arch_boolean_type (struct gdbarch *gdbarch,
5740 int bit, int unsigned_p, const char *name)
5744 t = arch_type (gdbarch, TYPE_CODE_BOOL, bit, name);
5746 t->set_is_unsigned (true);
5751 /* Allocate a TYPE_CODE_FLT type structure associated with GDBARCH.
5752 BIT is the type size in bits; if BIT equals -1, the size is
5753 determined by the floatformat. NAME is the type name. Set the
5754 TYPE_FLOATFORMAT from FLOATFORMATS. */
5757 arch_float_type (struct gdbarch *gdbarch,
5758 int bit, const char *name,
5759 const struct floatformat **floatformats)
5761 const struct floatformat *fmt = floatformats[gdbarch_byte_order (gdbarch)];
5764 bit = verify_floatformat (bit, fmt);
5765 t = arch_type (gdbarch, TYPE_CODE_FLT, bit, name);
5766 TYPE_FLOATFORMAT (t) = fmt;
5771 /* Allocate a TYPE_CODE_DECFLOAT type structure associated with GDBARCH.
5772 BIT is the type size in bits. NAME is the type name. */
5775 arch_decfloat_type (struct gdbarch *gdbarch, int bit, const char *name)
5779 t = arch_type (gdbarch, TYPE_CODE_DECFLOAT, bit, name);
5783 /* Allocate a TYPE_CODE_PTR type structure associated with GDBARCH.
5784 BIT is the pointer type size in bits. NAME is the type name.
5785 TARGET_TYPE is the pointer target type. Always sets the pointer type's
5786 TYPE_UNSIGNED flag. */
5789 arch_pointer_type (struct gdbarch *gdbarch,
5790 int bit, const char *name, struct type *target_type)
5794 t = arch_type (gdbarch, TYPE_CODE_PTR, bit, name);
5795 TYPE_TARGET_TYPE (t) = target_type;
5796 t->set_is_unsigned (true);
5800 /* Allocate a TYPE_CODE_FLAGS type structure associated with GDBARCH.
5801 NAME is the type name. BIT is the size of the flag word in bits. */
5804 arch_flags_type (struct gdbarch *gdbarch, const char *name, int bit)
5808 type = arch_type (gdbarch, TYPE_CODE_FLAGS, bit, name);
5809 type->set_is_unsigned (true);
5810 type->set_num_fields (0);
5811 /* Pre-allocate enough space assuming every field is one bit. */
5813 ((struct field *) TYPE_ZALLOC (type, bit * sizeof (struct field)));
5818 /* Add field to TYPE_CODE_FLAGS type TYPE to indicate the bit at
5819 position BITPOS is called NAME. Pass NAME as "" for fields that
5820 should not be printed. */
5823 append_flags_type_field (struct type *type, int start_bitpos, int nr_bits,
5824 struct type *field_type, const char *name)
5826 int type_bitsize = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
5827 int field_nr = type->num_fields ();
5829 gdb_assert (type->code () == TYPE_CODE_FLAGS);
5830 gdb_assert (type->num_fields () + 1 <= type_bitsize);
5831 gdb_assert (start_bitpos >= 0 && start_bitpos < type_bitsize);
5832 gdb_assert (nr_bits >= 1 && nr_bits <= type_bitsize);
5833 gdb_assert (name != NULL);
5835 TYPE_FIELD_NAME (type, field_nr) = xstrdup (name);
5836 type->field (field_nr).set_type (field_type);
5837 SET_FIELD_BITPOS (type->field (field_nr), start_bitpos);
5838 TYPE_FIELD_BITSIZE (type, field_nr) = nr_bits;
5839 type->set_num_fields (type->num_fields () + 1);
5842 /* Special version of append_flags_type_field to add a flag field.
5843 Add field to TYPE_CODE_FLAGS type TYPE to indicate the bit at
5844 position BITPOS is called NAME. */
5847 append_flags_type_flag (struct type *type, int bitpos, const char *name)
5849 append_flags_type_field (type, bitpos, 1,
5850 builtin_type (type->arch ())->builtin_bool,
5854 /* Allocate a TYPE_CODE_STRUCT or TYPE_CODE_UNION type structure (as
5855 specified by CODE) associated with GDBARCH. NAME is the type name. */
5858 arch_composite_type (struct gdbarch *gdbarch, const char *name,
5859 enum type_code code)
5863 gdb_assert (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION);
5864 t = arch_type (gdbarch, code, 0, NULL);
5866 INIT_CPLUS_SPECIFIC (t);
5870 /* Add new field with name NAME and type FIELD to composite type T.
5871 Do not set the field's position or adjust the type's length;
5872 the caller should do so. Return the new field. */
5875 append_composite_type_field_raw (struct type *t, const char *name,
5880 t->set_num_fields (t->num_fields () + 1);
5881 t->set_fields (XRESIZEVEC (struct field, t->fields (),
5883 f = &t->field (t->num_fields () - 1);
5884 memset (f, 0, sizeof f[0]);
5885 f[0].set_type (field);
5886 FIELD_NAME (f[0]) = name;
5890 /* Add new field with name NAME and type FIELD to composite type T.
5891 ALIGNMENT (if non-zero) specifies the minimum field alignment. */
5894 append_composite_type_field_aligned (struct type *t, const char *name,
5895 struct type *field, int alignment)
5897 struct field *f = append_composite_type_field_raw (t, name, field);
5899 if (t->code () == TYPE_CODE_UNION)
5901 if (TYPE_LENGTH (t) < TYPE_LENGTH (field))
5902 TYPE_LENGTH (t) = TYPE_LENGTH (field);
5904 else if (t->code () == TYPE_CODE_STRUCT)
5906 TYPE_LENGTH (t) = TYPE_LENGTH (t) + TYPE_LENGTH (field);
5907 if (t->num_fields () > 1)
5909 SET_FIELD_BITPOS (f[0],
5910 (FIELD_BITPOS (f[-1])
5911 + (TYPE_LENGTH (f[-1].type ())
5912 * TARGET_CHAR_BIT)));
5918 alignment *= TARGET_CHAR_BIT;
5919 left = FIELD_BITPOS (f[0]) % alignment;
5923 SET_FIELD_BITPOS (f[0], FIELD_BITPOS (f[0]) + (alignment - left));
5924 TYPE_LENGTH (t) += (alignment - left) / TARGET_CHAR_BIT;
5931 /* Add new field with name NAME and type FIELD to composite type T. */
5934 append_composite_type_field (struct type *t, const char *name,
5937 append_composite_type_field_aligned (t, name, field, 0);
5942 /* We manage the lifetimes of fixed_point_type_info objects by
5943 attaching them to the objfile. Currently, these objects are
5944 modified during construction, and GMP does not provide a way to
5945 hash the contents of an mpq_t; so it's a bit of a pain to hash-cons
5946 them. If we did do this, they could be moved to the per-BFD and
5947 shared across objfiles. */
5948 typedef std::vector<std::unique_ptr<fixed_point_type_info>>
5949 fixed_point_type_storage;
5951 /* Key used for managing the storage of fixed-point type info. */
5952 static const struct objfile_key<fixed_point_type_storage>
5953 fixed_point_objfile_key;
5955 /* See gdbtypes.h. */
5958 allocate_fixed_point_type_info (struct type *type)
5960 std::unique_ptr<fixed_point_type_info> up (new fixed_point_type_info);
5961 fixed_point_type_info *info;
5963 if (type->is_objfile_owned ())
5965 fixed_point_type_storage *storage
5966 = fixed_point_objfile_key.get (type->objfile_owner ());
5967 if (storage == nullptr)
5968 storage = fixed_point_objfile_key.emplace (type->objfile_owner ());
5970 storage->push_back (std::move (up));
5974 /* We just leak the memory, because that's what we do generally
5975 for non-objfile-attached types. */
5976 info = up.release ();
5979 type->set_fixed_point_info (info);
5982 /* See gdbtypes.h. */
5985 is_fixed_point_type (struct type *type)
5987 while (check_typedef (type)->code () == TYPE_CODE_RANGE)
5988 type = TYPE_TARGET_TYPE (check_typedef (type));
5989 type = check_typedef (type);
5991 return type->code () == TYPE_CODE_FIXED_POINT;
5994 /* See gdbtypes.h. */
5997 type::fixed_point_type_base_type ()
5999 struct type *type = this;
6001 while (check_typedef (type)->code () == TYPE_CODE_RANGE)
6002 type = TYPE_TARGET_TYPE (check_typedef (type));
6003 type = check_typedef (type);
6005 gdb_assert (type->code () == TYPE_CODE_FIXED_POINT);
6009 /* See gdbtypes.h. */
6012 type::fixed_point_scaling_factor ()
6014 struct type *type = this->fixed_point_type_base_type ();
6016 return type->fixed_point_info ().scaling_factor;
6021 static struct gdbarch_data *gdbtypes_data;
6023 const struct builtin_type *
6024 builtin_type (struct gdbarch *gdbarch)
6026 return (const struct builtin_type *) gdbarch_data (gdbarch, gdbtypes_data);
6030 gdbtypes_post_init (struct gdbarch *gdbarch)
6032 struct builtin_type *builtin_type
6033 = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct builtin_type);
6036 builtin_type->builtin_void
6037 = arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT, "void");
6038 builtin_type->builtin_char
6039 = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
6040 !gdbarch_char_signed (gdbarch), "char");
6041 builtin_type->builtin_char->set_has_no_signedness (true);
6042 builtin_type->builtin_signed_char
6043 = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
6045 builtin_type->builtin_unsigned_char
6046 = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
6047 1, "unsigned char");
6048 builtin_type->builtin_short
6049 = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
6051 builtin_type->builtin_unsigned_short
6052 = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
6053 1, "unsigned short");
6054 builtin_type->builtin_int
6055 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
6057 builtin_type->builtin_unsigned_int
6058 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
6060 builtin_type->builtin_long
6061 = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
6063 builtin_type->builtin_unsigned_long
6064 = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
6065 1, "unsigned long");
6066 builtin_type->builtin_long_long
6067 = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
6069 builtin_type->builtin_unsigned_long_long
6070 = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
6071 1, "unsigned long long");
6072 builtin_type->builtin_half
6073 = arch_float_type (gdbarch, gdbarch_half_bit (gdbarch),
6074 "half", gdbarch_half_format (gdbarch));
6075 builtin_type->builtin_float
6076 = arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
6077 "float", gdbarch_float_format (gdbarch));
6078 builtin_type->builtin_bfloat16
6079 = arch_float_type (gdbarch, gdbarch_bfloat16_bit (gdbarch),
6080 "bfloat16", gdbarch_bfloat16_format (gdbarch));
6081 builtin_type->builtin_double
6082 = arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
6083 "double", gdbarch_double_format (gdbarch));
6084 builtin_type->builtin_long_double
6085 = arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
6086 "long double", gdbarch_long_double_format (gdbarch));
6087 builtin_type->builtin_complex
6088 = init_complex_type ("complex", builtin_type->builtin_float);
6089 builtin_type->builtin_double_complex
6090 = init_complex_type ("double complex", builtin_type->builtin_double);
6091 builtin_type->builtin_string
6092 = arch_type (gdbarch, TYPE_CODE_STRING, TARGET_CHAR_BIT, "string");
6093 builtin_type->builtin_bool
6094 = arch_type (gdbarch, TYPE_CODE_BOOL, TARGET_CHAR_BIT, "bool");
6096 /* The following three are about decimal floating point types, which
6097 are 32-bits, 64-bits and 128-bits respectively. */
6098 builtin_type->builtin_decfloat
6099 = arch_decfloat_type (gdbarch, 32, "_Decimal32");
6100 builtin_type->builtin_decdouble
6101 = arch_decfloat_type (gdbarch, 64, "_Decimal64");
6102 builtin_type->builtin_declong
6103 = arch_decfloat_type (gdbarch, 128, "_Decimal128");
6105 /* "True" character types. */
6106 builtin_type->builtin_true_char
6107 = arch_character_type (gdbarch, TARGET_CHAR_BIT, 0, "true character");
6108 builtin_type->builtin_true_unsigned_char
6109 = arch_character_type (gdbarch, TARGET_CHAR_BIT, 1, "true character");
6111 /* Fixed-size integer types. */
6112 builtin_type->builtin_int0
6113 = arch_integer_type (gdbarch, 0, 0, "int0_t");
6114 builtin_type->builtin_int8
6115 = arch_integer_type (gdbarch, 8, 0, "int8_t");
6116 builtin_type->builtin_uint8
6117 = arch_integer_type (gdbarch, 8, 1, "uint8_t");
6118 builtin_type->builtin_int16
6119 = arch_integer_type (gdbarch, 16, 0, "int16_t");
6120 builtin_type->builtin_uint16
6121 = arch_integer_type (gdbarch, 16, 1, "uint16_t");
6122 builtin_type->builtin_int24
6123 = arch_integer_type (gdbarch, 24, 0, "int24_t");
6124 builtin_type->builtin_uint24
6125 = arch_integer_type (gdbarch, 24, 1, "uint24_t");
6126 builtin_type->builtin_int32
6127 = arch_integer_type (gdbarch, 32, 0, "int32_t");
6128 builtin_type->builtin_uint32
6129 = arch_integer_type (gdbarch, 32, 1, "uint32_t");
6130 builtin_type->builtin_int64
6131 = arch_integer_type (gdbarch, 64, 0, "int64_t");
6132 builtin_type->builtin_uint64
6133 = arch_integer_type (gdbarch, 64, 1, "uint64_t");
6134 builtin_type->builtin_int128
6135 = arch_integer_type (gdbarch, 128, 0, "int128_t");
6136 builtin_type->builtin_uint128
6137 = arch_integer_type (gdbarch, 128, 1, "uint128_t");
6139 builtin_type->builtin_int8->set_instance_flags
6140 (builtin_type->builtin_int8->instance_flags ()
6141 | TYPE_INSTANCE_FLAG_NOTTEXT);
6143 builtin_type->builtin_uint8->set_instance_flags
6144 (builtin_type->builtin_uint8->instance_flags ()
6145 | TYPE_INSTANCE_FLAG_NOTTEXT);
6147 /* Wide character types. */
6148 builtin_type->builtin_char16
6149 = arch_integer_type (gdbarch, 16, 1, "char16_t");
6150 builtin_type->builtin_char32
6151 = arch_integer_type (gdbarch, 32, 1, "char32_t");
6152 builtin_type->builtin_wchar
6153 = arch_integer_type (gdbarch, gdbarch_wchar_bit (gdbarch),
6154 !gdbarch_wchar_signed (gdbarch), "wchar_t");
6156 /* Default data/code pointer types. */
6157 builtin_type->builtin_data_ptr
6158 = lookup_pointer_type (builtin_type->builtin_void);
6159 builtin_type->builtin_func_ptr
6160 = lookup_pointer_type (lookup_function_type (builtin_type->builtin_void));
6161 builtin_type->builtin_func_func
6162 = lookup_function_type (builtin_type->builtin_func_ptr);
6164 /* This type represents a GDB internal function. */
6165 builtin_type->internal_fn
6166 = arch_type (gdbarch, TYPE_CODE_INTERNAL_FUNCTION, 0,
6167 "<internal function>");
6169 /* This type represents an xmethod. */
6170 builtin_type->xmethod
6171 = arch_type (gdbarch, TYPE_CODE_XMETHOD, 0, "<xmethod>");
6173 return builtin_type;
6176 /* This set of objfile-based types is intended to be used by symbol
6177 readers as basic types. */
6179 static const struct objfile_key<struct objfile_type,
6180 gdb::noop_deleter<struct objfile_type>>
6183 const struct objfile_type *
6184 objfile_type (struct objfile *objfile)
6186 struct gdbarch *gdbarch;
6187 struct objfile_type *objfile_type = objfile_type_data.get (objfile);
6190 return objfile_type;
6192 objfile_type = OBSTACK_CALLOC (&objfile->objfile_obstack,
6193 1, struct objfile_type);
6195 /* Use the objfile architecture to determine basic type properties. */
6196 gdbarch = objfile->arch ();
6199 objfile_type->builtin_void
6200 = init_type (objfile, TYPE_CODE_VOID, TARGET_CHAR_BIT, "void");
6201 objfile_type->builtin_char
6202 = init_integer_type (objfile, TARGET_CHAR_BIT,
6203 !gdbarch_char_signed (gdbarch), "char");
6204 objfile_type->builtin_char->set_has_no_signedness (true);
6205 objfile_type->builtin_signed_char
6206 = init_integer_type (objfile, TARGET_CHAR_BIT,
6208 objfile_type->builtin_unsigned_char
6209 = init_integer_type (objfile, TARGET_CHAR_BIT,
6210 1, "unsigned char");
6211 objfile_type->builtin_short
6212 = init_integer_type (objfile, gdbarch_short_bit (gdbarch),
6214 objfile_type->builtin_unsigned_short
6215 = init_integer_type (objfile, gdbarch_short_bit (gdbarch),
6216 1, "unsigned short");
6217 objfile_type->builtin_int
6218 = init_integer_type (objfile, gdbarch_int_bit (gdbarch),
6220 objfile_type->builtin_unsigned_int
6221 = init_integer_type (objfile, gdbarch_int_bit (gdbarch),
6223 objfile_type->builtin_long
6224 = init_integer_type (objfile, gdbarch_long_bit (gdbarch),
6226 objfile_type->builtin_unsigned_long
6227 = init_integer_type (objfile, gdbarch_long_bit (gdbarch),
6228 1, "unsigned long");
6229 objfile_type->builtin_long_long
6230 = init_integer_type (objfile, gdbarch_long_long_bit (gdbarch),
6232 objfile_type->builtin_unsigned_long_long
6233 = init_integer_type (objfile, gdbarch_long_long_bit (gdbarch),
6234 1, "unsigned long long");
6235 objfile_type->builtin_float
6236 = init_float_type (objfile, gdbarch_float_bit (gdbarch),
6237 "float", gdbarch_float_format (gdbarch));
6238 objfile_type->builtin_double
6239 = init_float_type (objfile, gdbarch_double_bit (gdbarch),
6240 "double", gdbarch_double_format (gdbarch));
6241 objfile_type->builtin_long_double
6242 = init_float_type (objfile, gdbarch_long_double_bit (gdbarch),
6243 "long double", gdbarch_long_double_format (gdbarch));
6245 /* This type represents a type that was unrecognized in symbol read-in. */
6246 objfile_type->builtin_error
6247 = init_type (objfile, TYPE_CODE_ERROR, 0, "<unknown type>");
6249 /* The following set of types is used for symbols with no
6250 debug information. */
6251 objfile_type->nodebug_text_symbol
6252 = init_type (objfile, TYPE_CODE_FUNC, TARGET_CHAR_BIT,
6253 "<text variable, no debug info>");
6255 objfile_type->nodebug_text_gnu_ifunc_symbol
6256 = init_type (objfile, TYPE_CODE_FUNC, TARGET_CHAR_BIT,
6257 "<text gnu-indirect-function variable, no debug info>");
6258 objfile_type->nodebug_text_gnu_ifunc_symbol->set_is_gnu_ifunc (true);
6260 objfile_type->nodebug_got_plt_symbol
6261 = init_pointer_type (objfile, gdbarch_addr_bit (gdbarch),
6262 "<text from jump slot in .got.plt, no debug info>",
6263 objfile_type->nodebug_text_symbol);
6264 objfile_type->nodebug_data_symbol
6265 = init_nodebug_var_type (objfile, "<data variable, no debug info>");
6266 objfile_type->nodebug_unknown_symbol
6267 = init_nodebug_var_type (objfile, "<variable (not text or data), no debug info>");
6268 objfile_type->nodebug_tls_symbol
6269 = init_nodebug_var_type (objfile, "<thread local variable, no debug info>");
6271 /* NOTE: on some targets, addresses and pointers are not necessarily
6275 - gdb's `struct type' always describes the target's
6277 - gdb's `struct value' objects should always hold values in
6279 - gdb's CORE_ADDR values are addresses in the unified virtual
6280 address space that the assembler and linker work with. Thus,
6281 since target_read_memory takes a CORE_ADDR as an argument, it
6282 can access any memory on the target, even if the processor has
6283 separate code and data address spaces.
6285 In this context, objfile_type->builtin_core_addr is a bit odd:
6286 it's a target type for a value the target will never see. It's
6287 only used to hold the values of (typeless) linker symbols, which
6288 are indeed in the unified virtual address space. */
6290 objfile_type->builtin_core_addr
6291 = init_integer_type (objfile, gdbarch_addr_bit (gdbarch), 1,
6294 objfile_type_data.set (objfile, objfile_type);
6295 return objfile_type;
6298 void _initialize_gdbtypes ();
6300 _initialize_gdbtypes ()
6302 gdbtypes_data = gdbarch_data_register_post_init (gdbtypes_post_init);
6304 add_setshow_zuinteger_cmd ("overload", no_class, &overload_debug,
6305 _("Set debugging of C++ overloading."),
6306 _("Show debugging of C++ overloading."),
6307 _("When enabled, ranking of the "
6308 "functions is displayed."),
6310 show_overload_debug,
6311 &setdebuglist, &showdebuglist);
6313 /* Add user knob for controlling resolution of opaque types. */
6314 add_setshow_boolean_cmd ("opaque-type-resolution", class_support,
6315 &opaque_type_resolution,
6316 _("Set resolution of opaque struct/class/union"
6317 " types (if set before loading symbols)."),
6318 _("Show resolution of opaque struct/class/union"
6319 " types (if set before loading symbols)."),
6321 show_opaque_type_resolution,
6322 &setlist, &showlist);
6324 /* Add an option to permit non-strict type checking. */
6325 add_setshow_boolean_cmd ("type", class_support,
6326 &strict_type_checking,
6327 _("Set strict type checking."),
6328 _("Show strict type checking."),
6330 show_strict_type_checking,
6331 &setchecklist, &showchecklist);