gdb: remove TYPE_RANGE_DATA macro
[deliverable/binutils-gdb.git] / gdb / gdbtypes.c
1 /* Support routines for manipulating internal types for GDB.
2
3 Copyright (C) 1992-2020 Free Software Foundation, Inc.
4
5 Contributed by Cygnus Support, using pieces from other GDB modules.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include "bfd.h"
24 #include "symtab.h"
25 #include "symfile.h"
26 #include "objfiles.h"
27 #include "gdbtypes.h"
28 #include "expression.h"
29 #include "language.h"
30 #include "target.h"
31 #include "value.h"
32 #include "demangle.h"
33 #include "complaints.h"
34 #include "gdbcmd.h"
35 #include "cp-abi.h"
36 #include "hashtab.h"
37 #include "cp-support.h"
38 #include "bcache.h"
39 #include "dwarf2/loc.h"
40 #include "gdbcore.h"
41 #include "floatformat.h"
42 #include <algorithm>
43
44 /* Initialize BADNESS constants. */
45
46 const struct rank LENGTH_MISMATCH_BADNESS = {100,0};
47
48 const struct rank TOO_FEW_PARAMS_BADNESS = {100,0};
49 const struct rank INCOMPATIBLE_TYPE_BADNESS = {100,0};
50
51 const struct rank EXACT_MATCH_BADNESS = {0,0};
52
53 const struct rank INTEGER_PROMOTION_BADNESS = {1,0};
54 const struct rank FLOAT_PROMOTION_BADNESS = {1,0};
55 const struct rank BASE_PTR_CONVERSION_BADNESS = {1,0};
56 const struct rank CV_CONVERSION_BADNESS = {1, 0};
57 const struct rank INTEGER_CONVERSION_BADNESS = {2,0};
58 const struct rank FLOAT_CONVERSION_BADNESS = {2,0};
59 const struct rank INT_FLOAT_CONVERSION_BADNESS = {2,0};
60 const struct rank VOID_PTR_CONVERSION_BADNESS = {2,0};
61 const struct rank BOOL_CONVERSION_BADNESS = {3,0};
62 const struct rank BASE_CONVERSION_BADNESS = {2,0};
63 const struct rank REFERENCE_CONVERSION_BADNESS = {2,0};
64 const struct rank REFERENCE_SEE_THROUGH_BADNESS = {0,1};
65 const struct rank NULL_POINTER_CONVERSION_BADNESS = {2,0};
66 const struct rank NS_POINTER_CONVERSION_BADNESS = {10,0};
67 const struct rank NS_INTEGER_POINTER_CONVERSION_BADNESS = {3,0};
68
69 /* Floatformat pairs. */
70 const struct floatformat *floatformats_ieee_half[BFD_ENDIAN_UNKNOWN] = {
71 &floatformat_ieee_half_big,
72 &floatformat_ieee_half_little
73 };
74 const struct floatformat *floatformats_ieee_single[BFD_ENDIAN_UNKNOWN] = {
75 &floatformat_ieee_single_big,
76 &floatformat_ieee_single_little
77 };
78 const struct floatformat *floatformats_ieee_double[BFD_ENDIAN_UNKNOWN] = {
79 &floatformat_ieee_double_big,
80 &floatformat_ieee_double_little
81 };
82 const struct floatformat *floatformats_ieee_double_littlebyte_bigword[BFD_ENDIAN_UNKNOWN] = {
83 &floatformat_ieee_double_big,
84 &floatformat_ieee_double_littlebyte_bigword
85 };
86 const struct floatformat *floatformats_i387_ext[BFD_ENDIAN_UNKNOWN] = {
87 &floatformat_i387_ext,
88 &floatformat_i387_ext
89 };
90 const struct floatformat *floatformats_m68881_ext[BFD_ENDIAN_UNKNOWN] = {
91 &floatformat_m68881_ext,
92 &floatformat_m68881_ext
93 };
94 const struct floatformat *floatformats_arm_ext[BFD_ENDIAN_UNKNOWN] = {
95 &floatformat_arm_ext_big,
96 &floatformat_arm_ext_littlebyte_bigword
97 };
98 const struct floatformat *floatformats_ia64_spill[BFD_ENDIAN_UNKNOWN] = {
99 &floatformat_ia64_spill_big,
100 &floatformat_ia64_spill_little
101 };
102 const struct floatformat *floatformats_ia64_quad[BFD_ENDIAN_UNKNOWN] = {
103 &floatformat_ia64_quad_big,
104 &floatformat_ia64_quad_little
105 };
106 const struct floatformat *floatformats_vax_f[BFD_ENDIAN_UNKNOWN] = {
107 &floatformat_vax_f,
108 &floatformat_vax_f
109 };
110 const struct floatformat *floatformats_vax_d[BFD_ENDIAN_UNKNOWN] = {
111 &floatformat_vax_d,
112 &floatformat_vax_d
113 };
114 const struct floatformat *floatformats_ibm_long_double[BFD_ENDIAN_UNKNOWN] = {
115 &floatformat_ibm_long_double_big,
116 &floatformat_ibm_long_double_little
117 };
118
119 /* Should opaque types be resolved? */
120
121 static bool opaque_type_resolution = true;
122
123 /* See gdbtypes.h. */
124
125 unsigned int overload_debug = 0;
126
127 /* A flag to enable strict type checking. */
128
129 static bool strict_type_checking = true;
130
131 /* A function to show whether opaque types are resolved. */
132
133 static void
134 show_opaque_type_resolution (struct ui_file *file, int from_tty,
135 struct cmd_list_element *c,
136 const char *value)
137 {
138 fprintf_filtered (file, _("Resolution of opaque struct/class/union types "
139 "(if set before loading symbols) is %s.\n"),
140 value);
141 }
142
143 /* A function to show whether C++ overload debugging is enabled. */
144
145 static void
146 show_overload_debug (struct ui_file *file, int from_tty,
147 struct cmd_list_element *c, const char *value)
148 {
149 fprintf_filtered (file, _("Debugging of C++ overloading is %s.\n"),
150 value);
151 }
152
153 /* A function to show the status of strict type checking. */
154
155 static void
156 show_strict_type_checking (struct ui_file *file, int from_tty,
157 struct cmd_list_element *c, const char *value)
158 {
159 fprintf_filtered (file, _("Strict type checking is %s.\n"), value);
160 }
161
162 \f
163 /* Allocate a new OBJFILE-associated type structure and fill it
164 with some defaults. Space for the type structure is allocated
165 on the objfile's objfile_obstack. */
166
167 struct type *
168 alloc_type (struct objfile *objfile)
169 {
170 struct type *type;
171
172 gdb_assert (objfile != NULL);
173
174 /* Alloc the structure and start off with all fields zeroed. */
175 type = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct type);
176 TYPE_MAIN_TYPE (type) = OBSTACK_ZALLOC (&objfile->objfile_obstack,
177 struct main_type);
178 OBJSTAT (objfile, n_types++);
179
180 TYPE_OBJFILE_OWNED (type) = 1;
181 TYPE_OWNER (type).objfile = objfile;
182
183 /* Initialize the fields that might not be zero. */
184
185 type->set_code (TYPE_CODE_UNDEF);
186 TYPE_CHAIN (type) = type; /* Chain back to itself. */
187
188 return type;
189 }
190
191 /* Allocate a new GDBARCH-associated type structure and fill it
192 with some defaults. Space for the type structure is allocated
193 on the obstack associated with GDBARCH. */
194
195 struct type *
196 alloc_type_arch (struct gdbarch *gdbarch)
197 {
198 struct type *type;
199
200 gdb_assert (gdbarch != NULL);
201
202 /* Alloc the structure and start off with all fields zeroed. */
203
204 type = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct type);
205 TYPE_MAIN_TYPE (type) = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct main_type);
206
207 TYPE_OBJFILE_OWNED (type) = 0;
208 TYPE_OWNER (type).gdbarch = gdbarch;
209
210 /* Initialize the fields that might not be zero. */
211
212 type->set_code (TYPE_CODE_UNDEF);
213 TYPE_CHAIN (type) = type; /* Chain back to itself. */
214
215 return type;
216 }
217
218 /* If TYPE is objfile-associated, allocate a new type structure
219 associated with the same objfile. If TYPE is gdbarch-associated,
220 allocate a new type structure associated with the same gdbarch. */
221
222 struct type *
223 alloc_type_copy (const struct type *type)
224 {
225 if (TYPE_OBJFILE_OWNED (type))
226 return alloc_type (TYPE_OWNER (type).objfile);
227 else
228 return alloc_type_arch (TYPE_OWNER (type).gdbarch);
229 }
230
231 /* If TYPE is gdbarch-associated, return that architecture.
232 If TYPE is objfile-associated, return that objfile's architecture. */
233
234 struct gdbarch *
235 get_type_arch (const struct type *type)
236 {
237 struct gdbarch *arch;
238
239 if (TYPE_OBJFILE_OWNED (type))
240 arch = TYPE_OWNER (type).objfile->arch ();
241 else
242 arch = TYPE_OWNER (type).gdbarch;
243
244 /* The ARCH can be NULL if TYPE is associated with neither an objfile nor
245 a gdbarch, however, this is very rare, and even then, in most cases
246 that get_type_arch is called, we assume that a non-NULL value is
247 returned. */
248 gdb_assert (arch != NULL);
249 return arch;
250 }
251
252 /* See gdbtypes.h. */
253
254 struct type *
255 get_target_type (struct type *type)
256 {
257 if (type != NULL)
258 {
259 type = TYPE_TARGET_TYPE (type);
260 if (type != NULL)
261 type = check_typedef (type);
262 }
263
264 return type;
265 }
266
267 /* See gdbtypes.h. */
268
269 unsigned int
270 type_length_units (struct type *type)
271 {
272 struct gdbarch *arch = get_type_arch (type);
273 int unit_size = gdbarch_addressable_memory_unit_size (arch);
274
275 return TYPE_LENGTH (type) / unit_size;
276 }
277
278 /* Alloc a new type instance structure, fill it with some defaults,
279 and point it at OLDTYPE. Allocate the new type instance from the
280 same place as OLDTYPE. */
281
282 static struct type *
283 alloc_type_instance (struct type *oldtype)
284 {
285 struct type *type;
286
287 /* Allocate the structure. */
288
289 if (! TYPE_OBJFILE_OWNED (oldtype))
290 type = GDBARCH_OBSTACK_ZALLOC (get_type_arch (oldtype), struct type);
291 else
292 type = OBSTACK_ZALLOC (&TYPE_OBJFILE (oldtype)->objfile_obstack,
293 struct type);
294
295 TYPE_MAIN_TYPE (type) = TYPE_MAIN_TYPE (oldtype);
296
297 TYPE_CHAIN (type) = type; /* Chain back to itself for now. */
298
299 return type;
300 }
301
302 /* Clear all remnants of the previous type at TYPE, in preparation for
303 replacing it with something else. Preserve owner information. */
304
305 static void
306 smash_type (struct type *type)
307 {
308 int objfile_owned = TYPE_OBJFILE_OWNED (type);
309 union type_owner owner = TYPE_OWNER (type);
310
311 memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
312
313 /* Restore owner information. */
314 TYPE_OBJFILE_OWNED (type) = objfile_owned;
315 TYPE_OWNER (type) = owner;
316
317 /* For now, delete the rings. */
318 TYPE_CHAIN (type) = type;
319
320 /* For now, leave the pointer/reference types alone. */
321 }
322
323 /* Lookup a pointer to a type TYPE. TYPEPTR, if nonzero, points
324 to a pointer to memory where the pointer type should be stored.
325 If *TYPEPTR is zero, update it to point to the pointer type we return.
326 We allocate new memory if needed. */
327
328 struct type *
329 make_pointer_type (struct type *type, struct type **typeptr)
330 {
331 struct type *ntype; /* New type */
332 struct type *chain;
333
334 ntype = TYPE_POINTER_TYPE (type);
335
336 if (ntype)
337 {
338 if (typeptr == 0)
339 return ntype; /* Don't care about alloc,
340 and have new type. */
341 else if (*typeptr == 0)
342 {
343 *typeptr = ntype; /* Tracking alloc, and have new type. */
344 return ntype;
345 }
346 }
347
348 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
349 {
350 ntype = alloc_type_copy (type);
351 if (typeptr)
352 *typeptr = ntype;
353 }
354 else /* We have storage, but need to reset it. */
355 {
356 ntype = *typeptr;
357 chain = TYPE_CHAIN (ntype);
358 smash_type (ntype);
359 TYPE_CHAIN (ntype) = chain;
360 }
361
362 TYPE_TARGET_TYPE (ntype) = type;
363 TYPE_POINTER_TYPE (type) = ntype;
364
365 /* FIXME! Assumes the machine has only one representation for pointers! */
366
367 TYPE_LENGTH (ntype)
368 = gdbarch_ptr_bit (get_type_arch (type)) / TARGET_CHAR_BIT;
369 ntype->set_code (TYPE_CODE_PTR);
370
371 /* Mark pointers as unsigned. The target converts between pointers
372 and addresses (CORE_ADDRs) using gdbarch_pointer_to_address and
373 gdbarch_address_to_pointer. */
374 TYPE_UNSIGNED (ntype) = 1;
375
376 /* Update the length of all the other variants of this type. */
377 chain = TYPE_CHAIN (ntype);
378 while (chain != ntype)
379 {
380 TYPE_LENGTH (chain) = TYPE_LENGTH (ntype);
381 chain = TYPE_CHAIN (chain);
382 }
383
384 return ntype;
385 }
386
387 /* Given a type TYPE, return a type of pointers to that type.
388 May need to construct such a type if this is the first use. */
389
390 struct type *
391 lookup_pointer_type (struct type *type)
392 {
393 return make_pointer_type (type, (struct type **) 0);
394 }
395
396 /* Lookup a C++ `reference' to a type TYPE. TYPEPTR, if nonzero,
397 points to a pointer to memory where the reference type should be
398 stored. If *TYPEPTR is zero, update it to point to the reference
399 type we return. We allocate new memory if needed. REFCODE denotes
400 the kind of reference type to lookup (lvalue or rvalue reference). */
401
402 struct type *
403 make_reference_type (struct type *type, struct type **typeptr,
404 enum type_code refcode)
405 {
406 struct type *ntype; /* New type */
407 struct type **reftype;
408 struct type *chain;
409
410 gdb_assert (refcode == TYPE_CODE_REF || refcode == TYPE_CODE_RVALUE_REF);
411
412 ntype = (refcode == TYPE_CODE_REF ? TYPE_REFERENCE_TYPE (type)
413 : TYPE_RVALUE_REFERENCE_TYPE (type));
414
415 if (ntype)
416 {
417 if (typeptr == 0)
418 return ntype; /* Don't care about alloc,
419 and have new type. */
420 else if (*typeptr == 0)
421 {
422 *typeptr = ntype; /* Tracking alloc, and have new type. */
423 return ntype;
424 }
425 }
426
427 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
428 {
429 ntype = alloc_type_copy (type);
430 if (typeptr)
431 *typeptr = ntype;
432 }
433 else /* We have storage, but need to reset it. */
434 {
435 ntype = *typeptr;
436 chain = TYPE_CHAIN (ntype);
437 smash_type (ntype);
438 TYPE_CHAIN (ntype) = chain;
439 }
440
441 TYPE_TARGET_TYPE (ntype) = type;
442 reftype = (refcode == TYPE_CODE_REF ? &TYPE_REFERENCE_TYPE (type)
443 : &TYPE_RVALUE_REFERENCE_TYPE (type));
444
445 *reftype = ntype;
446
447 /* FIXME! Assume the machine has only one representation for
448 references, and that it matches the (only) representation for
449 pointers! */
450
451 TYPE_LENGTH (ntype) =
452 gdbarch_ptr_bit (get_type_arch (type)) / TARGET_CHAR_BIT;
453 ntype->set_code (refcode);
454
455 *reftype = ntype;
456
457 /* Update the length of all the other variants of this type. */
458 chain = TYPE_CHAIN (ntype);
459 while (chain != ntype)
460 {
461 TYPE_LENGTH (chain) = TYPE_LENGTH (ntype);
462 chain = TYPE_CHAIN (chain);
463 }
464
465 return ntype;
466 }
467
468 /* Same as above, but caller doesn't care about memory allocation
469 details. */
470
471 struct type *
472 lookup_reference_type (struct type *type, enum type_code refcode)
473 {
474 return make_reference_type (type, (struct type **) 0, refcode);
475 }
476
477 /* Lookup the lvalue reference type for the type TYPE. */
478
479 struct type *
480 lookup_lvalue_reference_type (struct type *type)
481 {
482 return lookup_reference_type (type, TYPE_CODE_REF);
483 }
484
485 /* Lookup the rvalue reference type for the type TYPE. */
486
487 struct type *
488 lookup_rvalue_reference_type (struct type *type)
489 {
490 return lookup_reference_type (type, TYPE_CODE_RVALUE_REF);
491 }
492
493 /* Lookup a function type that returns type TYPE. TYPEPTR, if
494 nonzero, points to a pointer to memory where the function type
495 should be stored. If *TYPEPTR is zero, update it to point to the
496 function type we return. We allocate new memory if needed. */
497
498 struct type *
499 make_function_type (struct type *type, struct type **typeptr)
500 {
501 struct type *ntype; /* New type */
502
503 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
504 {
505 ntype = alloc_type_copy (type);
506 if (typeptr)
507 *typeptr = ntype;
508 }
509 else /* We have storage, but need to reset it. */
510 {
511 ntype = *typeptr;
512 smash_type (ntype);
513 }
514
515 TYPE_TARGET_TYPE (ntype) = type;
516
517 TYPE_LENGTH (ntype) = 1;
518 ntype->set_code (TYPE_CODE_FUNC);
519
520 INIT_FUNC_SPECIFIC (ntype);
521
522 return ntype;
523 }
524
525 /* Given a type TYPE, return a type of functions that return that type.
526 May need to construct such a type if this is the first use. */
527
528 struct type *
529 lookup_function_type (struct type *type)
530 {
531 return make_function_type (type, (struct type **) 0);
532 }
533
534 /* Given a type TYPE and argument types, return the appropriate
535 function type. If the final type in PARAM_TYPES is NULL, make a
536 varargs function. */
537
538 struct type *
539 lookup_function_type_with_arguments (struct type *type,
540 int nparams,
541 struct type **param_types)
542 {
543 struct type *fn = make_function_type (type, (struct type **) 0);
544 int i;
545
546 if (nparams > 0)
547 {
548 if (param_types[nparams - 1] == NULL)
549 {
550 --nparams;
551 TYPE_VARARGS (fn) = 1;
552 }
553 else if (check_typedef (param_types[nparams - 1])->code ()
554 == TYPE_CODE_VOID)
555 {
556 --nparams;
557 /* Caller should have ensured this. */
558 gdb_assert (nparams == 0);
559 TYPE_PROTOTYPED (fn) = 1;
560 }
561 else
562 TYPE_PROTOTYPED (fn) = 1;
563 }
564
565 fn->set_num_fields (nparams);
566 fn->set_fields
567 ((struct field *) TYPE_ZALLOC (fn, nparams * sizeof (struct field)));
568 for (i = 0; i < nparams; ++i)
569 fn->field (i).set_type (param_types[i]);
570
571 return fn;
572 }
573
574 /* Identify address space identifier by name --
575 return the integer flag defined in gdbtypes.h. */
576
577 int
578 address_space_name_to_int (struct gdbarch *gdbarch,
579 const char *space_identifier)
580 {
581 int type_flags;
582
583 /* Check for known address space delimiters. */
584 if (!strcmp (space_identifier, "code"))
585 return TYPE_INSTANCE_FLAG_CODE_SPACE;
586 else if (!strcmp (space_identifier, "data"))
587 return TYPE_INSTANCE_FLAG_DATA_SPACE;
588 else if (gdbarch_address_class_name_to_type_flags_p (gdbarch)
589 && gdbarch_address_class_name_to_type_flags (gdbarch,
590 space_identifier,
591 &type_flags))
592 return type_flags;
593 else
594 error (_("Unknown address space specifier: \"%s\""), space_identifier);
595 }
596
597 /* Identify address space identifier by integer flag as defined in
598 gdbtypes.h -- return the string version of the adress space name. */
599
600 const char *
601 address_space_int_to_name (struct gdbarch *gdbarch, int space_flag)
602 {
603 if (space_flag & TYPE_INSTANCE_FLAG_CODE_SPACE)
604 return "code";
605 else if (space_flag & TYPE_INSTANCE_FLAG_DATA_SPACE)
606 return "data";
607 else if ((space_flag & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
608 && gdbarch_address_class_type_flags_to_name_p (gdbarch))
609 return gdbarch_address_class_type_flags_to_name (gdbarch, space_flag);
610 else
611 return NULL;
612 }
613
614 /* Create a new type with instance flags NEW_FLAGS, based on TYPE.
615
616 If STORAGE is non-NULL, create the new type instance there.
617 STORAGE must be in the same obstack as TYPE. */
618
619 static struct type *
620 make_qualified_type (struct type *type, int new_flags,
621 struct type *storage)
622 {
623 struct type *ntype;
624
625 ntype = type;
626 do
627 {
628 if (TYPE_INSTANCE_FLAGS (ntype) == new_flags)
629 return ntype;
630 ntype = TYPE_CHAIN (ntype);
631 }
632 while (ntype != type);
633
634 /* Create a new type instance. */
635 if (storage == NULL)
636 ntype = alloc_type_instance (type);
637 else
638 {
639 /* If STORAGE was provided, it had better be in the same objfile
640 as TYPE. Otherwise, we can't link it into TYPE's cv chain:
641 if one objfile is freed and the other kept, we'd have
642 dangling pointers. */
643 gdb_assert (TYPE_OBJFILE (type) == TYPE_OBJFILE (storage));
644
645 ntype = storage;
646 TYPE_MAIN_TYPE (ntype) = TYPE_MAIN_TYPE (type);
647 TYPE_CHAIN (ntype) = ntype;
648 }
649
650 /* Pointers or references to the original type are not relevant to
651 the new type. */
652 TYPE_POINTER_TYPE (ntype) = (struct type *) 0;
653 TYPE_REFERENCE_TYPE (ntype) = (struct type *) 0;
654
655 /* Chain the new qualified type to the old type. */
656 TYPE_CHAIN (ntype) = TYPE_CHAIN (type);
657 TYPE_CHAIN (type) = ntype;
658
659 /* Now set the instance flags and return the new type. */
660 TYPE_INSTANCE_FLAGS (ntype) = new_flags;
661
662 /* Set length of new type to that of the original type. */
663 TYPE_LENGTH (ntype) = TYPE_LENGTH (type);
664
665 return ntype;
666 }
667
668 /* Make an address-space-delimited variant of a type -- a type that
669 is identical to the one supplied except that it has an address
670 space attribute attached to it (such as "code" or "data").
671
672 The space attributes "code" and "data" are for Harvard
673 architectures. The address space attributes are for architectures
674 which have alternately sized pointers or pointers with alternate
675 representations. */
676
677 struct type *
678 make_type_with_address_space (struct type *type, int space_flag)
679 {
680 int new_flags = ((TYPE_INSTANCE_FLAGS (type)
681 & ~(TYPE_INSTANCE_FLAG_CODE_SPACE
682 | TYPE_INSTANCE_FLAG_DATA_SPACE
683 | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL))
684 | space_flag);
685
686 return make_qualified_type (type, new_flags, NULL);
687 }
688
689 /* Make a "c-v" variant of a type -- a type that is identical to the
690 one supplied except that it may have const or volatile attributes
691 CNST is a flag for setting the const attribute
692 VOLTL is a flag for setting the volatile attribute
693 TYPE is the base type whose variant we are creating.
694
695 If TYPEPTR and *TYPEPTR are non-zero, then *TYPEPTR points to
696 storage to hold the new qualified type; *TYPEPTR and TYPE must be
697 in the same objfile. Otherwise, allocate fresh memory for the new
698 type whereever TYPE lives. If TYPEPTR is non-zero, set it to the
699 new type we construct. */
700
701 struct type *
702 make_cv_type (int cnst, int voltl,
703 struct type *type,
704 struct type **typeptr)
705 {
706 struct type *ntype; /* New type */
707
708 int new_flags = (TYPE_INSTANCE_FLAGS (type)
709 & ~(TYPE_INSTANCE_FLAG_CONST
710 | TYPE_INSTANCE_FLAG_VOLATILE));
711
712 if (cnst)
713 new_flags |= TYPE_INSTANCE_FLAG_CONST;
714
715 if (voltl)
716 new_flags |= TYPE_INSTANCE_FLAG_VOLATILE;
717
718 if (typeptr && *typeptr != NULL)
719 {
720 /* TYPE and *TYPEPTR must be in the same objfile. We can't have
721 a C-V variant chain that threads across objfiles: if one
722 objfile gets freed, then the other has a broken C-V chain.
723
724 This code used to try to copy over the main type from TYPE to
725 *TYPEPTR if they were in different objfiles, but that's
726 wrong, too: TYPE may have a field list or member function
727 lists, which refer to types of their own, etc. etc. The
728 whole shebang would need to be copied over recursively; you
729 can't have inter-objfile pointers. The only thing to do is
730 to leave stub types as stub types, and look them up afresh by
731 name each time you encounter them. */
732 gdb_assert (TYPE_OBJFILE (*typeptr) == TYPE_OBJFILE (type));
733 }
734
735 ntype = make_qualified_type (type, new_flags,
736 typeptr ? *typeptr : NULL);
737
738 if (typeptr != NULL)
739 *typeptr = ntype;
740
741 return ntype;
742 }
743
744 /* Make a 'restrict'-qualified version of TYPE. */
745
746 struct type *
747 make_restrict_type (struct type *type)
748 {
749 return make_qualified_type (type,
750 (TYPE_INSTANCE_FLAGS (type)
751 | TYPE_INSTANCE_FLAG_RESTRICT),
752 NULL);
753 }
754
755 /* Make a type without const, volatile, or restrict. */
756
757 struct type *
758 make_unqualified_type (struct type *type)
759 {
760 return make_qualified_type (type,
761 (TYPE_INSTANCE_FLAGS (type)
762 & ~(TYPE_INSTANCE_FLAG_CONST
763 | TYPE_INSTANCE_FLAG_VOLATILE
764 | TYPE_INSTANCE_FLAG_RESTRICT)),
765 NULL);
766 }
767
768 /* Make a '_Atomic'-qualified version of TYPE. */
769
770 struct type *
771 make_atomic_type (struct type *type)
772 {
773 return make_qualified_type (type,
774 (TYPE_INSTANCE_FLAGS (type)
775 | TYPE_INSTANCE_FLAG_ATOMIC),
776 NULL);
777 }
778
779 /* Replace the contents of ntype with the type *type. This changes the
780 contents, rather than the pointer for TYPE_MAIN_TYPE (ntype); thus
781 the changes are propogated to all types in the TYPE_CHAIN.
782
783 In order to build recursive types, it's inevitable that we'll need
784 to update types in place --- but this sort of indiscriminate
785 smashing is ugly, and needs to be replaced with something more
786 controlled. TYPE_MAIN_TYPE is a step in this direction; it's not
787 clear if more steps are needed. */
788
789 void
790 replace_type (struct type *ntype, struct type *type)
791 {
792 struct type *chain;
793
794 /* These two types had better be in the same objfile. Otherwise,
795 the assignment of one type's main type structure to the other
796 will produce a type with references to objects (names; field
797 lists; etc.) allocated on an objfile other than its own. */
798 gdb_assert (TYPE_OBJFILE (ntype) == TYPE_OBJFILE (type));
799
800 *TYPE_MAIN_TYPE (ntype) = *TYPE_MAIN_TYPE (type);
801
802 /* The type length is not a part of the main type. Update it for
803 each type on the variant chain. */
804 chain = ntype;
805 do
806 {
807 /* Assert that this element of the chain has no address-class bits
808 set in its flags. Such type variants might have type lengths
809 which are supposed to be different from the non-address-class
810 variants. This assertion shouldn't ever be triggered because
811 symbol readers which do construct address-class variants don't
812 call replace_type(). */
813 gdb_assert (TYPE_ADDRESS_CLASS_ALL (chain) == 0);
814
815 TYPE_LENGTH (chain) = TYPE_LENGTH (type);
816 chain = TYPE_CHAIN (chain);
817 }
818 while (ntype != chain);
819
820 /* Assert that the two types have equivalent instance qualifiers.
821 This should be true for at least all of our debug readers. */
822 gdb_assert (TYPE_INSTANCE_FLAGS (ntype) == TYPE_INSTANCE_FLAGS (type));
823 }
824
825 /* Implement direct support for MEMBER_TYPE in GNU C++.
826 May need to construct such a type if this is the first use.
827 The TYPE is the type of the member. The DOMAIN is the type
828 of the aggregate that the member belongs to. */
829
830 struct type *
831 lookup_memberptr_type (struct type *type, struct type *domain)
832 {
833 struct type *mtype;
834
835 mtype = alloc_type_copy (type);
836 smash_to_memberptr_type (mtype, domain, type);
837 return mtype;
838 }
839
840 /* Return a pointer-to-method type, for a method of type TO_TYPE. */
841
842 struct type *
843 lookup_methodptr_type (struct type *to_type)
844 {
845 struct type *mtype;
846
847 mtype = alloc_type_copy (to_type);
848 smash_to_methodptr_type (mtype, to_type);
849 return mtype;
850 }
851
852 /* Allocate a stub method whose return type is TYPE. This apparently
853 happens for speed of symbol reading, since parsing out the
854 arguments to the method is cpu-intensive, the way we are doing it.
855 So, we will fill in arguments later. This always returns a fresh
856 type. */
857
858 struct type *
859 allocate_stub_method (struct type *type)
860 {
861 struct type *mtype;
862
863 mtype = alloc_type_copy (type);
864 mtype->set_code (TYPE_CODE_METHOD);
865 TYPE_LENGTH (mtype) = 1;
866 TYPE_STUB (mtype) = 1;
867 TYPE_TARGET_TYPE (mtype) = type;
868 /* TYPE_SELF_TYPE (mtype) = unknown yet */
869 return mtype;
870 }
871
872 /* See gdbtypes.h. */
873
874 bool
875 operator== (const dynamic_prop &l, const dynamic_prop &r)
876 {
877 if (l.kind != r.kind)
878 return false;
879
880 switch (l.kind)
881 {
882 case PROP_UNDEFINED:
883 return true;
884 case PROP_CONST:
885 return l.data.const_val == r.data.const_val;
886 case PROP_ADDR_OFFSET:
887 case PROP_LOCEXPR:
888 case PROP_LOCLIST:
889 return l.data.baton == r.data.baton;
890 case PROP_VARIANT_PARTS:
891 return l.data.variant_parts == r.data.variant_parts;
892 case PROP_TYPE:
893 return l.data.original_type == r.data.original_type;
894 }
895
896 gdb_assert_not_reached ("unhandled dynamic_prop kind");
897 }
898
899 /* See gdbtypes.h. */
900
901 bool
902 operator== (const range_bounds &l, const range_bounds &r)
903 {
904 #define FIELD_EQ(FIELD) (l.FIELD == r.FIELD)
905
906 return (FIELD_EQ (low)
907 && FIELD_EQ (high)
908 && FIELD_EQ (flag_upper_bound_is_count)
909 && FIELD_EQ (flag_bound_evaluated)
910 && FIELD_EQ (bias));
911
912 #undef FIELD_EQ
913 }
914
915 /* Create a range type with a dynamic range from LOW_BOUND to
916 HIGH_BOUND, inclusive. See create_range_type for further details. */
917
918 struct type *
919 create_range_type (struct type *result_type, struct type *index_type,
920 const struct dynamic_prop *low_bound,
921 const struct dynamic_prop *high_bound,
922 LONGEST bias)
923 {
924 /* The INDEX_TYPE should be a type capable of holding the upper and lower
925 bounds, as such a zero sized, or void type makes no sense. */
926 gdb_assert (index_type->code () != TYPE_CODE_VOID);
927 gdb_assert (TYPE_LENGTH (index_type) > 0);
928
929 if (result_type == NULL)
930 result_type = alloc_type_copy (index_type);
931 result_type->set_code (TYPE_CODE_RANGE);
932 TYPE_TARGET_TYPE (result_type) = index_type;
933 if (TYPE_STUB (index_type))
934 TYPE_TARGET_STUB (result_type) = 1;
935 else
936 TYPE_LENGTH (result_type) = TYPE_LENGTH (check_typedef (index_type));
937
938 range_bounds *bounds
939 = (struct range_bounds *) TYPE_ZALLOC (result_type, sizeof (range_bounds));
940 bounds->low = *low_bound;
941 bounds->high = *high_bound;
942 bounds->bias = bias;
943
944 /* Initialize the stride to be a constant, the value will already be zero
945 thanks to the use of TYPE_ZALLOC above. */
946 bounds->stride.kind = PROP_CONST;
947
948 result_type->set_bounds (bounds);
949
950 if (low_bound->kind == PROP_CONST && low_bound->data.const_val >= 0)
951 TYPE_UNSIGNED (result_type) = 1;
952
953 /* Ada allows the declaration of range types whose upper bound is
954 less than the lower bound, so checking the lower bound is not
955 enough. Make sure we do not mark a range type whose upper bound
956 is negative as unsigned. */
957 if (high_bound->kind == PROP_CONST && high_bound->data.const_val < 0)
958 TYPE_UNSIGNED (result_type) = 0;
959
960 TYPE_ENDIANITY_NOT_DEFAULT (result_type)
961 = TYPE_ENDIANITY_NOT_DEFAULT (index_type);
962
963 return result_type;
964 }
965
966 /* See gdbtypes.h. */
967
968 struct type *
969 create_range_type_with_stride (struct type *result_type,
970 struct type *index_type,
971 const struct dynamic_prop *low_bound,
972 const struct dynamic_prop *high_bound,
973 LONGEST bias,
974 const struct dynamic_prop *stride,
975 bool byte_stride_p)
976 {
977 result_type = create_range_type (result_type, index_type, low_bound,
978 high_bound, bias);
979
980 gdb_assert (stride != nullptr);
981 result_type->bounds ()->stride = *stride;
982 result_type->bounds ()->flag_is_byte_stride = byte_stride_p;
983
984 return result_type;
985 }
986
987
988
989 /* Create a range type using either a blank type supplied in
990 RESULT_TYPE, or creating a new type, inheriting the objfile from
991 INDEX_TYPE.
992
993 Indices will be of type INDEX_TYPE, and will range from LOW_BOUND
994 to HIGH_BOUND, inclusive.
995
996 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
997 sure it is TYPE_CODE_UNDEF before we bash it into a range type? */
998
999 struct type *
1000 create_static_range_type (struct type *result_type, struct type *index_type,
1001 LONGEST low_bound, LONGEST high_bound)
1002 {
1003 struct dynamic_prop low, high;
1004
1005 low.kind = PROP_CONST;
1006 low.data.const_val = low_bound;
1007
1008 high.kind = PROP_CONST;
1009 high.data.const_val = high_bound;
1010
1011 result_type = create_range_type (result_type, index_type, &low, &high, 0);
1012
1013 return result_type;
1014 }
1015
1016 /* Predicate tests whether BOUNDS are static. Returns 1 if all bounds values
1017 are static, otherwise returns 0. */
1018
1019 static bool
1020 has_static_range (const struct range_bounds *bounds)
1021 {
1022 /* If the range doesn't have a defined stride then its stride field will
1023 be initialized to the constant 0. */
1024 return (bounds->low.kind == PROP_CONST
1025 && bounds->high.kind == PROP_CONST
1026 && bounds->stride.kind == PROP_CONST);
1027 }
1028
1029
1030 /* Set *LOWP and *HIGHP to the lower and upper bounds of discrete type
1031 TYPE. Return 1 if type is a range type, 0 if it is discrete (and
1032 bounds will fit in LONGEST), or -1 otherwise. */
1033
1034 int
1035 get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp)
1036 {
1037 type = check_typedef (type);
1038 switch (type->code ())
1039 {
1040 case TYPE_CODE_RANGE:
1041 *lowp = TYPE_LOW_BOUND (type);
1042 *highp = TYPE_HIGH_BOUND (type);
1043 if (TYPE_TARGET_TYPE (type)->code () == TYPE_CODE_ENUM)
1044 {
1045 if (!discrete_position (TYPE_TARGET_TYPE (type), *lowp, lowp)
1046 || ! discrete_position (TYPE_TARGET_TYPE (type), *highp, highp))
1047 return 0;
1048 }
1049 return 1;
1050 case TYPE_CODE_ENUM:
1051 if (type->num_fields () > 0)
1052 {
1053 /* The enums may not be sorted by value, so search all
1054 entries. */
1055 int i;
1056
1057 *lowp = *highp = TYPE_FIELD_ENUMVAL (type, 0);
1058 for (i = 0; i < type->num_fields (); i++)
1059 {
1060 if (TYPE_FIELD_ENUMVAL (type, i) < *lowp)
1061 *lowp = TYPE_FIELD_ENUMVAL (type, i);
1062 if (TYPE_FIELD_ENUMVAL (type, i) > *highp)
1063 *highp = TYPE_FIELD_ENUMVAL (type, i);
1064 }
1065
1066 /* Set unsigned indicator if warranted. */
1067 if (*lowp >= 0)
1068 {
1069 TYPE_UNSIGNED (type) = 1;
1070 }
1071 }
1072 else
1073 {
1074 *lowp = 0;
1075 *highp = -1;
1076 }
1077 return 0;
1078 case TYPE_CODE_BOOL:
1079 *lowp = 0;
1080 *highp = 1;
1081 return 0;
1082 case TYPE_CODE_INT:
1083 if (TYPE_LENGTH (type) > sizeof (LONGEST)) /* Too big */
1084 return -1;
1085 if (!TYPE_UNSIGNED (type))
1086 {
1087 *lowp = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
1088 *highp = -*lowp - 1;
1089 return 0;
1090 }
1091 /* fall through */
1092 case TYPE_CODE_CHAR:
1093 *lowp = 0;
1094 /* This round-about calculation is to avoid shifting by
1095 TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
1096 if TYPE_LENGTH (type) == sizeof (LONGEST). */
1097 *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
1098 *highp = (*highp - 1) | *highp;
1099 return 0;
1100 default:
1101 return -1;
1102 }
1103 }
1104
1105 /* Assuming TYPE is a simple, non-empty array type, compute its upper
1106 and lower bound. Save the low bound into LOW_BOUND if not NULL.
1107 Save the high bound into HIGH_BOUND if not NULL.
1108
1109 Return 1 if the operation was successful. Return zero otherwise,
1110 in which case the values of LOW_BOUND and HIGH_BOUNDS are unmodified.
1111
1112 We now simply use get_discrete_bounds call to get the values
1113 of the low and high bounds.
1114 get_discrete_bounds can return three values:
1115 1, meaning that index is a range,
1116 0, meaning that index is a discrete type,
1117 or -1 for failure. */
1118
1119 int
1120 get_array_bounds (struct type *type, LONGEST *low_bound, LONGEST *high_bound)
1121 {
1122 struct type *index = type->index_type ();
1123 LONGEST low = 0;
1124 LONGEST high = 0;
1125 int res;
1126
1127 if (index == NULL)
1128 return 0;
1129
1130 res = get_discrete_bounds (index, &low, &high);
1131 if (res == -1)
1132 return 0;
1133
1134 /* Check if the array bounds are undefined. */
1135 if (res == 1
1136 && ((low_bound && TYPE_ARRAY_LOWER_BOUND_IS_UNDEFINED (type))
1137 || (high_bound && TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED (type))))
1138 return 0;
1139
1140 if (low_bound)
1141 *low_bound = low;
1142
1143 if (high_bound)
1144 *high_bound = high;
1145
1146 return 1;
1147 }
1148
1149 /* Assuming that TYPE is a discrete type and VAL is a valid integer
1150 representation of a value of this type, save the corresponding
1151 position number in POS.
1152
1153 Its differs from VAL only in the case of enumeration types. In
1154 this case, the position number of the value of the first listed
1155 enumeration literal is zero; the position number of the value of
1156 each subsequent enumeration literal is one more than that of its
1157 predecessor in the list.
1158
1159 Return 1 if the operation was successful. Return zero otherwise,
1160 in which case the value of POS is unmodified.
1161 */
1162
1163 int
1164 discrete_position (struct type *type, LONGEST val, LONGEST *pos)
1165 {
1166 if (type->code () == TYPE_CODE_RANGE)
1167 type = TYPE_TARGET_TYPE (type);
1168
1169 if (type->code () == TYPE_CODE_ENUM)
1170 {
1171 int i;
1172
1173 for (i = 0; i < type->num_fields (); i += 1)
1174 {
1175 if (val == TYPE_FIELD_ENUMVAL (type, i))
1176 {
1177 *pos = i;
1178 return 1;
1179 }
1180 }
1181 /* Invalid enumeration value. */
1182 return 0;
1183 }
1184 else
1185 {
1186 *pos = val;
1187 return 1;
1188 }
1189 }
1190
1191 /* If the array TYPE has static bounds calculate and update its
1192 size, then return true. Otherwise return false and leave TYPE
1193 unchanged. */
1194
1195 static bool
1196 update_static_array_size (struct type *type)
1197 {
1198 gdb_assert (type->code () == TYPE_CODE_ARRAY);
1199
1200 struct type *range_type = type->index_type ();
1201
1202 if (type->dyn_prop (DYN_PROP_BYTE_STRIDE) == nullptr
1203 && has_static_range (range_type->bounds ())
1204 && (!type_not_associated (type)
1205 && !type_not_allocated (type)))
1206 {
1207 LONGEST low_bound, high_bound;
1208 int stride;
1209 struct type *element_type;
1210
1211 /* If the array itself doesn't provide a stride value then take
1212 whatever stride the range provides. Don't update BIT_STRIDE as
1213 we don't want to place the stride value from the range into this
1214 arrays bit size field. */
1215 stride = TYPE_FIELD_BITSIZE (type, 0);
1216 if (stride == 0)
1217 stride = TYPE_BIT_STRIDE (range_type);
1218
1219 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
1220 low_bound = high_bound = 0;
1221 element_type = check_typedef (TYPE_TARGET_TYPE (type));
1222 /* Be careful when setting the array length. Ada arrays can be
1223 empty arrays with the high_bound being smaller than the low_bound.
1224 In such cases, the array length should be zero. */
1225 if (high_bound < low_bound)
1226 TYPE_LENGTH (type) = 0;
1227 else if (stride != 0)
1228 {
1229 /* Ensure that the type length is always positive, even in the
1230 case where (for example in Fortran) we have a negative
1231 stride. It is possible to have a single element array with a
1232 negative stride in Fortran (this doesn't mean anything
1233 special, it's still just a single element array) so do
1234 consider that case when touching this code. */
1235 LONGEST element_count = std::abs (high_bound - low_bound + 1);
1236 TYPE_LENGTH (type)
1237 = ((std::abs (stride) * element_count) + 7) / 8;
1238 }
1239 else
1240 TYPE_LENGTH (type) =
1241 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
1242
1243 return true;
1244 }
1245
1246 return false;
1247 }
1248
1249 /* Create an array type using either a blank type supplied in
1250 RESULT_TYPE, or creating a new type, inheriting the objfile from
1251 RANGE_TYPE.
1252
1253 Elements will be of type ELEMENT_TYPE, the indices will be of type
1254 RANGE_TYPE.
1255
1256 BYTE_STRIDE_PROP, when not NULL, provides the array's byte stride.
1257 This byte stride property is added to the resulting array type
1258 as a DYN_PROP_BYTE_STRIDE. As a consequence, the BYTE_STRIDE_PROP
1259 argument can only be used to create types that are objfile-owned
1260 (see add_dyn_prop), meaning that either this function must be called
1261 with an objfile-owned RESULT_TYPE, or an objfile-owned RANGE_TYPE.
1262
1263 BIT_STRIDE is taken into account only when BYTE_STRIDE_PROP is NULL.
1264 If BIT_STRIDE is not zero, build a packed array type whose element
1265 size is BIT_STRIDE. Otherwise, ignore this parameter.
1266
1267 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
1268 sure it is TYPE_CODE_UNDEF before we bash it into an array
1269 type? */
1270
1271 struct type *
1272 create_array_type_with_stride (struct type *result_type,
1273 struct type *element_type,
1274 struct type *range_type,
1275 struct dynamic_prop *byte_stride_prop,
1276 unsigned int bit_stride)
1277 {
1278 if (byte_stride_prop != NULL
1279 && byte_stride_prop->kind == PROP_CONST)
1280 {
1281 /* The byte stride is actually not dynamic. Pretend we were
1282 called with bit_stride set instead of byte_stride_prop.
1283 This will give us the same result type, while avoiding
1284 the need to handle this as a special case. */
1285 bit_stride = byte_stride_prop->data.const_val * 8;
1286 byte_stride_prop = NULL;
1287 }
1288
1289 if (result_type == NULL)
1290 result_type = alloc_type_copy (range_type);
1291
1292 result_type->set_code (TYPE_CODE_ARRAY);
1293 TYPE_TARGET_TYPE (result_type) = element_type;
1294
1295 result_type->set_num_fields (1);
1296 result_type->set_fields
1297 ((struct field *) TYPE_ZALLOC (result_type, sizeof (struct field)));
1298 result_type->set_index_type (range_type);
1299 if (byte_stride_prop != NULL)
1300 result_type->add_dyn_prop (DYN_PROP_BYTE_STRIDE, *byte_stride_prop);
1301 else if (bit_stride > 0)
1302 TYPE_FIELD_BITSIZE (result_type, 0) = bit_stride;
1303
1304 if (!update_static_array_size (result_type))
1305 {
1306 /* This type is dynamic and its length needs to be computed
1307 on demand. In the meantime, avoid leaving the TYPE_LENGTH
1308 undefined by setting it to zero. Although we are not expected
1309 to trust TYPE_LENGTH in this case, setting the size to zero
1310 allows us to avoid allocating objects of random sizes in case
1311 we accidently do. */
1312 TYPE_LENGTH (result_type) = 0;
1313 }
1314
1315 /* TYPE_TARGET_STUB will take care of zero length arrays. */
1316 if (TYPE_LENGTH (result_type) == 0)
1317 TYPE_TARGET_STUB (result_type) = 1;
1318
1319 return result_type;
1320 }
1321
1322 /* Same as create_array_type_with_stride but with no bit_stride
1323 (BIT_STRIDE = 0), thus building an unpacked array. */
1324
1325 struct type *
1326 create_array_type (struct type *result_type,
1327 struct type *element_type,
1328 struct type *range_type)
1329 {
1330 return create_array_type_with_stride (result_type, element_type,
1331 range_type, NULL, 0);
1332 }
1333
1334 struct type *
1335 lookup_array_range_type (struct type *element_type,
1336 LONGEST low_bound, LONGEST high_bound)
1337 {
1338 struct type *index_type;
1339 struct type *range_type;
1340
1341 if (TYPE_OBJFILE_OWNED (element_type))
1342 index_type = objfile_type (TYPE_OWNER (element_type).objfile)->builtin_int;
1343 else
1344 index_type = builtin_type (get_type_arch (element_type))->builtin_int;
1345 range_type = create_static_range_type (NULL, index_type,
1346 low_bound, high_bound);
1347
1348 return create_array_type (NULL, element_type, range_type);
1349 }
1350
1351 /* Create a string type using either a blank type supplied in
1352 RESULT_TYPE, or creating a new type. String types are similar
1353 enough to array of char types that we can use create_array_type to
1354 build the basic type and then bash it into a string type.
1355
1356 For fixed length strings, the range type contains 0 as the lower
1357 bound and the length of the string minus one as the upper bound.
1358
1359 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
1360 sure it is TYPE_CODE_UNDEF before we bash it into a string
1361 type? */
1362
1363 struct type *
1364 create_string_type (struct type *result_type,
1365 struct type *string_char_type,
1366 struct type *range_type)
1367 {
1368 result_type = create_array_type (result_type,
1369 string_char_type,
1370 range_type);
1371 result_type->set_code (TYPE_CODE_STRING);
1372 return result_type;
1373 }
1374
1375 struct type *
1376 lookup_string_range_type (struct type *string_char_type,
1377 LONGEST low_bound, LONGEST high_bound)
1378 {
1379 struct type *result_type;
1380
1381 result_type = lookup_array_range_type (string_char_type,
1382 low_bound, high_bound);
1383 result_type->set_code (TYPE_CODE_STRING);
1384 return result_type;
1385 }
1386
1387 struct type *
1388 create_set_type (struct type *result_type, struct type *domain_type)
1389 {
1390 if (result_type == NULL)
1391 result_type = alloc_type_copy (domain_type);
1392
1393 result_type->set_code (TYPE_CODE_SET);
1394 result_type->set_num_fields (1);
1395 result_type->set_fields
1396 ((struct field *) TYPE_ZALLOC (result_type, sizeof (struct field)));
1397
1398 if (!TYPE_STUB (domain_type))
1399 {
1400 LONGEST low_bound, high_bound, bit_length;
1401
1402 if (get_discrete_bounds (domain_type, &low_bound, &high_bound) < 0)
1403 low_bound = high_bound = 0;
1404 bit_length = high_bound - low_bound + 1;
1405 TYPE_LENGTH (result_type)
1406 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
1407 if (low_bound >= 0)
1408 TYPE_UNSIGNED (result_type) = 1;
1409 }
1410 result_type->field (0).set_type (domain_type);
1411
1412 return result_type;
1413 }
1414
1415 /* Convert ARRAY_TYPE to a vector type. This may modify ARRAY_TYPE
1416 and any array types nested inside it. */
1417
1418 void
1419 make_vector_type (struct type *array_type)
1420 {
1421 struct type *inner_array, *elt_type;
1422 int flags;
1423
1424 /* Find the innermost array type, in case the array is
1425 multi-dimensional. */
1426 inner_array = array_type;
1427 while (TYPE_TARGET_TYPE (inner_array)->code () == TYPE_CODE_ARRAY)
1428 inner_array = TYPE_TARGET_TYPE (inner_array);
1429
1430 elt_type = TYPE_TARGET_TYPE (inner_array);
1431 if (elt_type->code () == TYPE_CODE_INT)
1432 {
1433 flags = TYPE_INSTANCE_FLAGS (elt_type) | TYPE_INSTANCE_FLAG_NOTTEXT;
1434 elt_type = make_qualified_type (elt_type, flags, NULL);
1435 TYPE_TARGET_TYPE (inner_array) = elt_type;
1436 }
1437
1438 TYPE_VECTOR (array_type) = 1;
1439 }
1440
1441 struct type *
1442 init_vector_type (struct type *elt_type, int n)
1443 {
1444 struct type *array_type;
1445
1446 array_type = lookup_array_range_type (elt_type, 0, n - 1);
1447 make_vector_type (array_type);
1448 return array_type;
1449 }
1450
1451 /* Internal routine called by TYPE_SELF_TYPE to return the type that TYPE
1452 belongs to. In c++ this is the class of "this", but TYPE_THIS_TYPE is too
1453 confusing. "self" is a common enough replacement for "this".
1454 TYPE must be one of TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, or
1455 TYPE_CODE_METHOD. */
1456
1457 struct type *
1458 internal_type_self_type (struct type *type)
1459 {
1460 switch (type->code ())
1461 {
1462 case TYPE_CODE_METHODPTR:
1463 case TYPE_CODE_MEMBERPTR:
1464 if (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_NONE)
1465 return NULL;
1466 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_SELF_TYPE);
1467 return TYPE_MAIN_TYPE (type)->type_specific.self_type;
1468 case TYPE_CODE_METHOD:
1469 if (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_NONE)
1470 return NULL;
1471 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_FUNC);
1472 return TYPE_MAIN_TYPE (type)->type_specific.func_stuff->self_type;
1473 default:
1474 gdb_assert_not_reached ("bad type");
1475 }
1476 }
1477
1478 /* Set the type of the class that TYPE belongs to.
1479 In c++ this is the class of "this".
1480 TYPE must be one of TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, or
1481 TYPE_CODE_METHOD. */
1482
1483 void
1484 set_type_self_type (struct type *type, struct type *self_type)
1485 {
1486 switch (type->code ())
1487 {
1488 case TYPE_CODE_METHODPTR:
1489 case TYPE_CODE_MEMBERPTR:
1490 if (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_NONE)
1491 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_SELF_TYPE;
1492 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_SELF_TYPE);
1493 TYPE_MAIN_TYPE (type)->type_specific.self_type = self_type;
1494 break;
1495 case TYPE_CODE_METHOD:
1496 if (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_NONE)
1497 INIT_FUNC_SPECIFIC (type);
1498 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_FUNC);
1499 TYPE_MAIN_TYPE (type)->type_specific.func_stuff->self_type = self_type;
1500 break;
1501 default:
1502 gdb_assert_not_reached ("bad type");
1503 }
1504 }
1505
1506 /* Smash TYPE to be a type of pointers to members of SELF_TYPE with type
1507 TO_TYPE. A member pointer is a wierd thing -- it amounts to a
1508 typed offset into a struct, e.g. "an int at offset 8". A MEMBER
1509 TYPE doesn't include the offset (that's the value of the MEMBER
1510 itself), but does include the structure type into which it points
1511 (for some reason).
1512
1513 When "smashing" the type, we preserve the objfile that the old type
1514 pointed to, since we aren't changing where the type is actually
1515 allocated. */
1516
1517 void
1518 smash_to_memberptr_type (struct type *type, struct type *self_type,
1519 struct type *to_type)
1520 {
1521 smash_type (type);
1522 type->set_code (TYPE_CODE_MEMBERPTR);
1523 TYPE_TARGET_TYPE (type) = to_type;
1524 set_type_self_type (type, self_type);
1525 /* Assume that a data member pointer is the same size as a normal
1526 pointer. */
1527 TYPE_LENGTH (type)
1528 = gdbarch_ptr_bit (get_type_arch (to_type)) / TARGET_CHAR_BIT;
1529 }
1530
1531 /* Smash TYPE to be a type of pointer to methods type TO_TYPE.
1532
1533 When "smashing" the type, we preserve the objfile that the old type
1534 pointed to, since we aren't changing where the type is actually
1535 allocated. */
1536
1537 void
1538 smash_to_methodptr_type (struct type *type, struct type *to_type)
1539 {
1540 smash_type (type);
1541 type->set_code (TYPE_CODE_METHODPTR);
1542 TYPE_TARGET_TYPE (type) = to_type;
1543 set_type_self_type (type, TYPE_SELF_TYPE (to_type));
1544 TYPE_LENGTH (type) = cplus_method_ptr_size (to_type);
1545 }
1546
1547 /* Smash TYPE to be a type of method of SELF_TYPE with type TO_TYPE.
1548 METHOD just means `function that gets an extra "this" argument'.
1549
1550 When "smashing" the type, we preserve the objfile that the old type
1551 pointed to, since we aren't changing where the type is actually
1552 allocated. */
1553
1554 void
1555 smash_to_method_type (struct type *type, struct type *self_type,
1556 struct type *to_type, struct field *args,
1557 int nargs, int varargs)
1558 {
1559 smash_type (type);
1560 type->set_code (TYPE_CODE_METHOD);
1561 TYPE_TARGET_TYPE (type) = to_type;
1562 set_type_self_type (type, self_type);
1563 type->set_fields (args);
1564 type->set_num_fields (nargs);
1565 if (varargs)
1566 TYPE_VARARGS (type) = 1;
1567 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
1568 }
1569
1570 /* A wrapper of TYPE_NAME which calls error if the type is anonymous.
1571 Since GCC PR debug/47510 DWARF provides associated information to detect the
1572 anonymous class linkage name from its typedef.
1573
1574 Parameter TYPE should not yet have CHECK_TYPEDEF applied, this function will
1575 apply it itself. */
1576
1577 const char *
1578 type_name_or_error (struct type *type)
1579 {
1580 struct type *saved_type = type;
1581 const char *name;
1582 struct objfile *objfile;
1583
1584 type = check_typedef (type);
1585
1586 name = type->name ();
1587 if (name != NULL)
1588 return name;
1589
1590 name = saved_type->name ();
1591 objfile = TYPE_OBJFILE (saved_type);
1592 error (_("Invalid anonymous type %s [in module %s], GCC PR debug/47510 bug?"),
1593 name ? name : "<anonymous>",
1594 objfile ? objfile_name (objfile) : "<arch>");
1595 }
1596
1597 /* Lookup a typedef or primitive type named NAME, visible in lexical
1598 block BLOCK. If NOERR is nonzero, return zero if NAME is not
1599 suitably defined. */
1600
1601 struct type *
1602 lookup_typename (const struct language_defn *language,
1603 const char *name,
1604 const struct block *block, int noerr)
1605 {
1606 struct symbol *sym;
1607
1608 sym = lookup_symbol_in_language (name, block, VAR_DOMAIN,
1609 language->la_language, NULL).symbol;
1610 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
1611 return SYMBOL_TYPE (sym);
1612
1613 if (noerr)
1614 return NULL;
1615 error (_("No type named %s."), name);
1616 }
1617
1618 struct type *
1619 lookup_unsigned_typename (const struct language_defn *language,
1620 const char *name)
1621 {
1622 char *uns = (char *) alloca (strlen (name) + 10);
1623
1624 strcpy (uns, "unsigned ");
1625 strcpy (uns + 9, name);
1626 return lookup_typename (language, uns, NULL, 0);
1627 }
1628
1629 struct type *
1630 lookup_signed_typename (const struct language_defn *language, const char *name)
1631 {
1632 struct type *t;
1633 char *uns = (char *) alloca (strlen (name) + 8);
1634
1635 strcpy (uns, "signed ");
1636 strcpy (uns + 7, name);
1637 t = lookup_typename (language, uns, NULL, 1);
1638 /* If we don't find "signed FOO" just try again with plain "FOO". */
1639 if (t != NULL)
1640 return t;
1641 return lookup_typename (language, name, NULL, 0);
1642 }
1643
1644 /* Lookup a structure type named "struct NAME",
1645 visible in lexical block BLOCK. */
1646
1647 struct type *
1648 lookup_struct (const char *name, const struct block *block)
1649 {
1650 struct symbol *sym;
1651
1652 sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0).symbol;
1653
1654 if (sym == NULL)
1655 {
1656 error (_("No struct type named %s."), name);
1657 }
1658 if (SYMBOL_TYPE (sym)->code () != TYPE_CODE_STRUCT)
1659 {
1660 error (_("This context has class, union or enum %s, not a struct."),
1661 name);
1662 }
1663 return (SYMBOL_TYPE (sym));
1664 }
1665
1666 /* Lookup a union type named "union NAME",
1667 visible in lexical block BLOCK. */
1668
1669 struct type *
1670 lookup_union (const char *name, const struct block *block)
1671 {
1672 struct symbol *sym;
1673 struct type *t;
1674
1675 sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0).symbol;
1676
1677 if (sym == NULL)
1678 error (_("No union type named %s."), name);
1679
1680 t = SYMBOL_TYPE (sym);
1681
1682 if (t->code () == TYPE_CODE_UNION)
1683 return t;
1684
1685 /* If we get here, it's not a union. */
1686 error (_("This context has class, struct or enum %s, not a union."),
1687 name);
1688 }
1689
1690 /* Lookup an enum type named "enum NAME",
1691 visible in lexical block BLOCK. */
1692
1693 struct type *
1694 lookup_enum (const char *name, const struct block *block)
1695 {
1696 struct symbol *sym;
1697
1698 sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0).symbol;
1699 if (sym == NULL)
1700 {
1701 error (_("No enum type named %s."), name);
1702 }
1703 if (SYMBOL_TYPE (sym)->code () != TYPE_CODE_ENUM)
1704 {
1705 error (_("This context has class, struct or union %s, not an enum."),
1706 name);
1707 }
1708 return (SYMBOL_TYPE (sym));
1709 }
1710
1711 /* Lookup a template type named "template NAME<TYPE>",
1712 visible in lexical block BLOCK. */
1713
1714 struct type *
1715 lookup_template_type (const char *name, struct type *type,
1716 const struct block *block)
1717 {
1718 struct symbol *sym;
1719 char *nam = (char *)
1720 alloca (strlen (name) + strlen (type->name ()) + 4);
1721
1722 strcpy (nam, name);
1723 strcat (nam, "<");
1724 strcat (nam, type->name ());
1725 strcat (nam, " >"); /* FIXME, extra space still introduced in gcc? */
1726
1727 sym = lookup_symbol (nam, block, VAR_DOMAIN, 0).symbol;
1728
1729 if (sym == NULL)
1730 {
1731 error (_("No template type named %s."), name);
1732 }
1733 if (SYMBOL_TYPE (sym)->code () != TYPE_CODE_STRUCT)
1734 {
1735 error (_("This context has class, union or enum %s, not a struct."),
1736 name);
1737 }
1738 return (SYMBOL_TYPE (sym));
1739 }
1740
1741 /* See gdbtypes.h. */
1742
1743 struct_elt
1744 lookup_struct_elt (struct type *type, const char *name, int noerr)
1745 {
1746 int i;
1747
1748 for (;;)
1749 {
1750 type = check_typedef (type);
1751 if (type->code () != TYPE_CODE_PTR
1752 && type->code () != TYPE_CODE_REF)
1753 break;
1754 type = TYPE_TARGET_TYPE (type);
1755 }
1756
1757 if (type->code () != TYPE_CODE_STRUCT
1758 && type->code () != TYPE_CODE_UNION)
1759 {
1760 std::string type_name = type_to_string (type);
1761 error (_("Type %s is not a structure or union type."),
1762 type_name.c_str ());
1763 }
1764
1765 for (i = type->num_fields () - 1; i >= TYPE_N_BASECLASSES (type); i--)
1766 {
1767 const char *t_field_name = TYPE_FIELD_NAME (type, i);
1768
1769 if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
1770 {
1771 return {&type->field (i), TYPE_FIELD_BITPOS (type, i)};
1772 }
1773 else if (!t_field_name || *t_field_name == '\0')
1774 {
1775 struct_elt elt
1776 = lookup_struct_elt (type->field (i).type (), name, 1);
1777 if (elt.field != NULL)
1778 {
1779 elt.offset += TYPE_FIELD_BITPOS (type, i);
1780 return elt;
1781 }
1782 }
1783 }
1784
1785 /* OK, it's not in this class. Recursively check the baseclasses. */
1786 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1787 {
1788 struct_elt elt = lookup_struct_elt (TYPE_BASECLASS (type, i), name, 1);
1789 if (elt.field != NULL)
1790 return elt;
1791 }
1792
1793 if (noerr)
1794 return {nullptr, 0};
1795
1796 std::string type_name = type_to_string (type);
1797 error (_("Type %s has no component named %s."), type_name.c_str (), name);
1798 }
1799
1800 /* See gdbtypes.h. */
1801
1802 struct type *
1803 lookup_struct_elt_type (struct type *type, const char *name, int noerr)
1804 {
1805 struct_elt elt = lookup_struct_elt (type, name, noerr);
1806 if (elt.field != NULL)
1807 return elt.field->type ();
1808 else
1809 return NULL;
1810 }
1811
1812 /* Store in *MAX the largest number representable by unsigned integer type
1813 TYPE. */
1814
1815 void
1816 get_unsigned_type_max (struct type *type, ULONGEST *max)
1817 {
1818 unsigned int n;
1819
1820 type = check_typedef (type);
1821 gdb_assert (type->code () == TYPE_CODE_INT && TYPE_UNSIGNED (type));
1822 gdb_assert (TYPE_LENGTH (type) <= sizeof (ULONGEST));
1823
1824 /* Written this way to avoid overflow. */
1825 n = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
1826 *max = ((((ULONGEST) 1 << (n - 1)) - 1) << 1) | 1;
1827 }
1828
1829 /* Store in *MIN, *MAX the smallest and largest numbers representable by
1830 signed integer type TYPE. */
1831
1832 void
1833 get_signed_type_minmax (struct type *type, LONGEST *min, LONGEST *max)
1834 {
1835 unsigned int n;
1836
1837 type = check_typedef (type);
1838 gdb_assert (type->code () == TYPE_CODE_INT && !TYPE_UNSIGNED (type));
1839 gdb_assert (TYPE_LENGTH (type) <= sizeof (LONGEST));
1840
1841 n = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
1842 *min = -((ULONGEST) 1 << (n - 1));
1843 *max = ((ULONGEST) 1 << (n - 1)) - 1;
1844 }
1845
1846 /* Internal routine called by TYPE_VPTR_FIELDNO to return the value of
1847 cplus_stuff.vptr_fieldno.
1848
1849 cplus_stuff is initialized to cplus_struct_default which does not
1850 set vptr_fieldno to -1 for portability reasons (IWBN to use C99
1851 designated initializers). We cope with that here. */
1852
1853 int
1854 internal_type_vptr_fieldno (struct type *type)
1855 {
1856 type = check_typedef (type);
1857 gdb_assert (type->code () == TYPE_CODE_STRUCT
1858 || type->code () == TYPE_CODE_UNION);
1859 if (!HAVE_CPLUS_STRUCT (type))
1860 return -1;
1861 return TYPE_RAW_CPLUS_SPECIFIC (type)->vptr_fieldno;
1862 }
1863
1864 /* Set the value of cplus_stuff.vptr_fieldno. */
1865
1866 void
1867 set_type_vptr_fieldno (struct type *type, int fieldno)
1868 {
1869 type = check_typedef (type);
1870 gdb_assert (type->code () == TYPE_CODE_STRUCT
1871 || type->code () == TYPE_CODE_UNION);
1872 if (!HAVE_CPLUS_STRUCT (type))
1873 ALLOCATE_CPLUS_STRUCT_TYPE (type);
1874 TYPE_RAW_CPLUS_SPECIFIC (type)->vptr_fieldno = fieldno;
1875 }
1876
1877 /* Internal routine called by TYPE_VPTR_BASETYPE to return the value of
1878 cplus_stuff.vptr_basetype. */
1879
1880 struct type *
1881 internal_type_vptr_basetype (struct type *type)
1882 {
1883 type = check_typedef (type);
1884 gdb_assert (type->code () == TYPE_CODE_STRUCT
1885 || type->code () == TYPE_CODE_UNION);
1886 gdb_assert (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_CPLUS_STUFF);
1887 return TYPE_RAW_CPLUS_SPECIFIC (type)->vptr_basetype;
1888 }
1889
1890 /* Set the value of cplus_stuff.vptr_basetype. */
1891
1892 void
1893 set_type_vptr_basetype (struct type *type, struct type *basetype)
1894 {
1895 type = check_typedef (type);
1896 gdb_assert (type->code () == TYPE_CODE_STRUCT
1897 || type->code () == TYPE_CODE_UNION);
1898 if (!HAVE_CPLUS_STRUCT (type))
1899 ALLOCATE_CPLUS_STRUCT_TYPE (type);
1900 TYPE_RAW_CPLUS_SPECIFIC (type)->vptr_basetype = basetype;
1901 }
1902
1903 /* Lookup the vptr basetype/fieldno values for TYPE.
1904 If found store vptr_basetype in *BASETYPEP if non-NULL, and return
1905 vptr_fieldno. Also, if found and basetype is from the same objfile,
1906 cache the results.
1907 If not found, return -1 and ignore BASETYPEP.
1908 Callers should be aware that in some cases (for example,
1909 the type or one of its baseclasses is a stub type and we are
1910 debugging a .o file, or the compiler uses DWARF-2 and is not GCC),
1911 this function will not be able to find the
1912 virtual function table pointer, and vptr_fieldno will remain -1 and
1913 vptr_basetype will remain NULL or incomplete. */
1914
1915 int
1916 get_vptr_fieldno (struct type *type, struct type **basetypep)
1917 {
1918 type = check_typedef (type);
1919
1920 if (TYPE_VPTR_FIELDNO (type) < 0)
1921 {
1922 int i;
1923
1924 /* We must start at zero in case the first (and only) baseclass
1925 is virtual (and hence we cannot share the table pointer). */
1926 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
1927 {
1928 struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
1929 int fieldno;
1930 struct type *basetype;
1931
1932 fieldno = get_vptr_fieldno (baseclass, &basetype);
1933 if (fieldno >= 0)
1934 {
1935 /* If the type comes from a different objfile we can't cache
1936 it, it may have a different lifetime. PR 2384 */
1937 if (TYPE_OBJFILE (type) == TYPE_OBJFILE (basetype))
1938 {
1939 set_type_vptr_fieldno (type, fieldno);
1940 set_type_vptr_basetype (type, basetype);
1941 }
1942 if (basetypep)
1943 *basetypep = basetype;
1944 return fieldno;
1945 }
1946 }
1947
1948 /* Not found. */
1949 return -1;
1950 }
1951 else
1952 {
1953 if (basetypep)
1954 *basetypep = TYPE_VPTR_BASETYPE (type);
1955 return TYPE_VPTR_FIELDNO (type);
1956 }
1957 }
1958
1959 static void
1960 stub_noname_complaint (void)
1961 {
1962 complaint (_("stub type has NULL name"));
1963 }
1964
1965 /* Return nonzero if TYPE has a DYN_PROP_BYTE_STRIDE dynamic property
1966 attached to it, and that property has a non-constant value. */
1967
1968 static int
1969 array_type_has_dynamic_stride (struct type *type)
1970 {
1971 struct dynamic_prop *prop = type->dyn_prop (DYN_PROP_BYTE_STRIDE);
1972
1973 return (prop != NULL && prop->kind != PROP_CONST);
1974 }
1975
1976 /* Worker for is_dynamic_type. */
1977
1978 static int
1979 is_dynamic_type_internal (struct type *type, int top_level)
1980 {
1981 type = check_typedef (type);
1982
1983 /* We only want to recognize references at the outermost level. */
1984 if (top_level && type->code () == TYPE_CODE_REF)
1985 type = check_typedef (TYPE_TARGET_TYPE (type));
1986
1987 /* Types that have a dynamic TYPE_DATA_LOCATION are considered
1988 dynamic, even if the type itself is statically defined.
1989 From a user's point of view, this may appear counter-intuitive;
1990 but it makes sense in this context, because the point is to determine
1991 whether any part of the type needs to be resolved before it can
1992 be exploited. */
1993 if (TYPE_DATA_LOCATION (type) != NULL
1994 && (TYPE_DATA_LOCATION_KIND (type) == PROP_LOCEXPR
1995 || TYPE_DATA_LOCATION_KIND (type) == PROP_LOCLIST))
1996 return 1;
1997
1998 if (TYPE_ASSOCIATED_PROP (type))
1999 return 1;
2000
2001 if (TYPE_ALLOCATED_PROP (type))
2002 return 1;
2003
2004 struct dynamic_prop *prop = type->dyn_prop (DYN_PROP_VARIANT_PARTS);
2005 if (prop != nullptr && prop->kind != PROP_TYPE)
2006 return 1;
2007
2008 if (TYPE_HAS_DYNAMIC_LENGTH (type))
2009 return 1;
2010
2011 switch (type->code ())
2012 {
2013 case TYPE_CODE_RANGE:
2014 {
2015 /* A range type is obviously dynamic if it has at least one
2016 dynamic bound. But also consider the range type to be
2017 dynamic when its subtype is dynamic, even if the bounds
2018 of the range type are static. It allows us to assume that
2019 the subtype of a static range type is also static. */
2020 return (!has_static_range (type->bounds ())
2021 || is_dynamic_type_internal (TYPE_TARGET_TYPE (type), 0));
2022 }
2023
2024 case TYPE_CODE_STRING:
2025 /* Strings are very much like an array of characters, and can be
2026 treated as one here. */
2027 case TYPE_CODE_ARRAY:
2028 {
2029 gdb_assert (type->num_fields () == 1);
2030
2031 /* The array is dynamic if either the bounds are dynamic... */
2032 if (is_dynamic_type_internal (type->index_type (), 0))
2033 return 1;
2034 /* ... or the elements it contains have a dynamic contents... */
2035 if (is_dynamic_type_internal (TYPE_TARGET_TYPE (type), 0))
2036 return 1;
2037 /* ... or if it has a dynamic stride... */
2038 if (array_type_has_dynamic_stride (type))
2039 return 1;
2040 return 0;
2041 }
2042
2043 case TYPE_CODE_STRUCT:
2044 case TYPE_CODE_UNION:
2045 {
2046 int i;
2047
2048 bool is_cplus = HAVE_CPLUS_STRUCT (type);
2049
2050 for (i = 0; i < type->num_fields (); ++i)
2051 {
2052 /* Static fields can be ignored here. */
2053 if (field_is_static (&type->field (i)))
2054 continue;
2055 /* If the field has dynamic type, then so does TYPE. */
2056 if (is_dynamic_type_internal (type->field (i).type (), 0))
2057 return 1;
2058 /* If the field is at a fixed offset, then it is not
2059 dynamic. */
2060 if (TYPE_FIELD_LOC_KIND (type, i) != FIELD_LOC_KIND_DWARF_BLOCK)
2061 continue;
2062 /* Do not consider C++ virtual base types to be dynamic
2063 due to the field's offset being dynamic; these are
2064 handled via other means. */
2065 if (is_cplus && BASETYPE_VIA_VIRTUAL (type, i))
2066 continue;
2067 return 1;
2068 }
2069 }
2070 break;
2071 }
2072
2073 return 0;
2074 }
2075
2076 /* See gdbtypes.h. */
2077
2078 int
2079 is_dynamic_type (struct type *type)
2080 {
2081 return is_dynamic_type_internal (type, 1);
2082 }
2083
2084 static struct type *resolve_dynamic_type_internal
2085 (struct type *type, struct property_addr_info *addr_stack, int top_level);
2086
2087 /* Given a dynamic range type (dyn_range_type) and a stack of
2088 struct property_addr_info elements, return a static version
2089 of that type. */
2090
2091 static struct type *
2092 resolve_dynamic_range (struct type *dyn_range_type,
2093 struct property_addr_info *addr_stack)
2094 {
2095 CORE_ADDR value;
2096 struct type *static_range_type, *static_target_type;
2097 struct dynamic_prop low_bound, high_bound, stride;
2098
2099 gdb_assert (dyn_range_type->code () == TYPE_CODE_RANGE);
2100
2101 const struct dynamic_prop *prop = &dyn_range_type->bounds ()->low;
2102 if (dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2103 {
2104 low_bound.kind = PROP_CONST;
2105 low_bound.data.const_val = value;
2106 }
2107 else
2108 {
2109 low_bound.kind = PROP_UNDEFINED;
2110 low_bound.data.const_val = 0;
2111 }
2112
2113 prop = &dyn_range_type->bounds ()->high;
2114 if (dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2115 {
2116 high_bound.kind = PROP_CONST;
2117 high_bound.data.const_val = value;
2118
2119 if (dyn_range_type->bounds ()->flag_upper_bound_is_count)
2120 high_bound.data.const_val
2121 = low_bound.data.const_val + high_bound.data.const_val - 1;
2122 }
2123 else
2124 {
2125 high_bound.kind = PROP_UNDEFINED;
2126 high_bound.data.const_val = 0;
2127 }
2128
2129 bool byte_stride_p = dyn_range_type->bounds ()->flag_is_byte_stride;
2130 prop = &dyn_range_type->bounds ()->stride;
2131 if (dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2132 {
2133 stride.kind = PROP_CONST;
2134 stride.data.const_val = value;
2135
2136 /* If we have a bit stride that is not an exact number of bytes then
2137 I really don't think this is going to work with current GDB, the
2138 array indexing code in GDB seems to be pretty heavily tied to byte
2139 offsets right now. Assuming 8 bits in a byte. */
2140 struct gdbarch *gdbarch = get_type_arch (dyn_range_type);
2141 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
2142 if (!byte_stride_p && (value % (unit_size * 8)) != 0)
2143 error (_("bit strides that are not a multiple of the byte size "
2144 "are currently not supported"));
2145 }
2146 else
2147 {
2148 stride.kind = PROP_UNDEFINED;
2149 stride.data.const_val = 0;
2150 byte_stride_p = true;
2151 }
2152
2153 static_target_type
2154 = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (dyn_range_type),
2155 addr_stack, 0);
2156 LONGEST bias = dyn_range_type->bounds ()->bias;
2157 static_range_type = create_range_type_with_stride
2158 (copy_type (dyn_range_type), static_target_type,
2159 &low_bound, &high_bound, bias, &stride, byte_stride_p);
2160 static_range_type->bounds ()->flag_bound_evaluated = 1;
2161 return static_range_type;
2162 }
2163
2164 /* Resolves dynamic bound values of an array or string type TYPE to static
2165 ones. ADDR_STACK is a stack of struct property_addr_info to be used if
2166 needed during the dynamic resolution. */
2167
2168 static struct type *
2169 resolve_dynamic_array_or_string (struct type *type,
2170 struct property_addr_info *addr_stack)
2171 {
2172 CORE_ADDR value;
2173 struct type *elt_type;
2174 struct type *range_type;
2175 struct type *ary_dim;
2176 struct dynamic_prop *prop;
2177 unsigned int bit_stride = 0;
2178
2179 /* For dynamic type resolution strings can be treated like arrays of
2180 characters. */
2181 gdb_assert (type->code () == TYPE_CODE_ARRAY
2182 || type->code () == TYPE_CODE_STRING);
2183
2184 type = copy_type (type);
2185
2186 elt_type = type;
2187 range_type = check_typedef (elt_type->index_type ());
2188 range_type = resolve_dynamic_range (range_type, addr_stack);
2189
2190 /* Resolve allocated/associated here before creating a new array type, which
2191 will update the length of the array accordingly. */
2192 prop = TYPE_ALLOCATED_PROP (type);
2193 if (prop != NULL && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2194 {
2195 TYPE_DYN_PROP_ADDR (prop) = value;
2196 TYPE_DYN_PROP_KIND (prop) = PROP_CONST;
2197 }
2198 prop = TYPE_ASSOCIATED_PROP (type);
2199 if (prop != NULL && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2200 {
2201 TYPE_DYN_PROP_ADDR (prop) = value;
2202 TYPE_DYN_PROP_KIND (prop) = PROP_CONST;
2203 }
2204
2205 ary_dim = check_typedef (TYPE_TARGET_TYPE (elt_type));
2206
2207 if (ary_dim != NULL && ary_dim->code () == TYPE_CODE_ARRAY)
2208 elt_type = resolve_dynamic_array_or_string (ary_dim, addr_stack);
2209 else
2210 elt_type = TYPE_TARGET_TYPE (type);
2211
2212 prop = type->dyn_prop (DYN_PROP_BYTE_STRIDE);
2213 if (prop != NULL)
2214 {
2215 if (dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2216 {
2217 type->remove_dyn_prop (DYN_PROP_BYTE_STRIDE);
2218 bit_stride = (unsigned int) (value * 8);
2219 }
2220 else
2221 {
2222 /* Could be a bug in our code, but it could also happen
2223 if the DWARF info is not correct. Issue a warning,
2224 and assume no byte/bit stride (leave bit_stride = 0). */
2225 warning (_("cannot determine array stride for type %s"),
2226 type->name () ? type->name () : "<no name>");
2227 }
2228 }
2229 else
2230 bit_stride = TYPE_FIELD_BITSIZE (type, 0);
2231
2232 return create_array_type_with_stride (type, elt_type, range_type, NULL,
2233 bit_stride);
2234 }
2235
2236 /* Resolve dynamic bounds of members of the union TYPE to static
2237 bounds. ADDR_STACK is a stack of struct property_addr_info
2238 to be used if needed during the dynamic resolution. */
2239
2240 static struct type *
2241 resolve_dynamic_union (struct type *type,
2242 struct property_addr_info *addr_stack)
2243 {
2244 struct type *resolved_type;
2245 int i;
2246 unsigned int max_len = 0;
2247
2248 gdb_assert (type->code () == TYPE_CODE_UNION);
2249
2250 resolved_type = copy_type (type);
2251 resolved_type->set_fields
2252 ((struct field *)
2253 TYPE_ALLOC (resolved_type,
2254 resolved_type->num_fields () * sizeof (struct field)));
2255 memcpy (resolved_type->fields (),
2256 type->fields (),
2257 resolved_type->num_fields () * sizeof (struct field));
2258 for (i = 0; i < resolved_type->num_fields (); ++i)
2259 {
2260 struct type *t;
2261
2262 if (field_is_static (&type->field (i)))
2263 continue;
2264
2265 t = resolve_dynamic_type_internal (resolved_type->field (i).type (),
2266 addr_stack, 0);
2267 resolved_type->field (i).set_type (t);
2268
2269 struct type *real_type = check_typedef (t);
2270 if (TYPE_LENGTH (real_type) > max_len)
2271 max_len = TYPE_LENGTH (real_type);
2272 }
2273
2274 TYPE_LENGTH (resolved_type) = max_len;
2275 return resolved_type;
2276 }
2277
2278 /* See gdbtypes.h. */
2279
2280 bool
2281 variant::matches (ULONGEST value, bool is_unsigned) const
2282 {
2283 for (const discriminant_range &range : discriminants)
2284 if (range.contains (value, is_unsigned))
2285 return true;
2286 return false;
2287 }
2288
2289 static void
2290 compute_variant_fields_inner (struct type *type,
2291 struct property_addr_info *addr_stack,
2292 const variant_part &part,
2293 std::vector<bool> &flags);
2294
2295 /* A helper function to determine which variant fields will be active.
2296 This handles both the variant's direct fields, and any variant
2297 parts embedded in this variant. TYPE is the type we're examining.
2298 ADDR_STACK holds information about the concrete object. VARIANT is
2299 the current variant to be handled. FLAGS is where the results are
2300 stored -- this function sets the Nth element in FLAGS if the
2301 corresponding field is enabled. ENABLED is whether this variant is
2302 enabled or not. */
2303
2304 static void
2305 compute_variant_fields_recurse (struct type *type,
2306 struct property_addr_info *addr_stack,
2307 const variant &variant,
2308 std::vector<bool> &flags,
2309 bool enabled)
2310 {
2311 for (int field = variant.first_field; field < variant.last_field; ++field)
2312 flags[field] = enabled;
2313
2314 for (const variant_part &new_part : variant.parts)
2315 {
2316 if (enabled)
2317 compute_variant_fields_inner (type, addr_stack, new_part, flags);
2318 else
2319 {
2320 for (const auto &sub_variant : new_part.variants)
2321 compute_variant_fields_recurse (type, addr_stack, sub_variant,
2322 flags, enabled);
2323 }
2324 }
2325 }
2326
2327 /* A helper function to determine which variant fields will be active.
2328 This evaluates the discriminant, decides which variant (if any) is
2329 active, and then updates FLAGS to reflect which fields should be
2330 available. TYPE is the type we're examining. ADDR_STACK holds
2331 information about the concrete object. VARIANT is the current
2332 variant to be handled. FLAGS is where the results are stored --
2333 this function sets the Nth element in FLAGS if the corresponding
2334 field is enabled. */
2335
2336 static void
2337 compute_variant_fields_inner (struct type *type,
2338 struct property_addr_info *addr_stack,
2339 const variant_part &part,
2340 std::vector<bool> &flags)
2341 {
2342 /* Evaluate the discriminant. */
2343 gdb::optional<ULONGEST> discr_value;
2344 if (part.discriminant_index != -1)
2345 {
2346 int idx = part.discriminant_index;
2347
2348 if (TYPE_FIELD_LOC_KIND (type, idx) != FIELD_LOC_KIND_BITPOS)
2349 error (_("Cannot determine struct field location"
2350 " (invalid location kind)"));
2351
2352 if (addr_stack->valaddr.data () != NULL)
2353 discr_value = unpack_field_as_long (type, addr_stack->valaddr.data (),
2354 idx);
2355 else
2356 {
2357 CORE_ADDR addr = (addr_stack->addr
2358 + (TYPE_FIELD_BITPOS (type, idx)
2359 / TARGET_CHAR_BIT));
2360
2361 LONGEST bitsize = TYPE_FIELD_BITSIZE (type, idx);
2362 LONGEST size = bitsize / 8;
2363 if (size == 0)
2364 size = TYPE_LENGTH (type->field (idx).type ());
2365
2366 gdb_byte bits[sizeof (ULONGEST)];
2367 read_memory (addr, bits, size);
2368
2369 LONGEST bitpos = (TYPE_FIELD_BITPOS (type, idx)
2370 % TARGET_CHAR_BIT);
2371
2372 discr_value = unpack_bits_as_long (type->field (idx).type (),
2373 bits, bitpos, bitsize);
2374 }
2375 }
2376
2377 /* Go through each variant and see which applies. */
2378 const variant *default_variant = nullptr;
2379 const variant *applied_variant = nullptr;
2380 for (const auto &variant : part.variants)
2381 {
2382 if (variant.is_default ())
2383 default_variant = &variant;
2384 else if (discr_value.has_value ()
2385 && variant.matches (*discr_value, part.is_unsigned))
2386 {
2387 applied_variant = &variant;
2388 break;
2389 }
2390 }
2391 if (applied_variant == nullptr)
2392 applied_variant = default_variant;
2393
2394 for (const auto &variant : part.variants)
2395 compute_variant_fields_recurse (type, addr_stack, variant,
2396 flags, applied_variant == &variant);
2397 }
2398
2399 /* Determine which variant fields are available in TYPE. The enabled
2400 fields are stored in RESOLVED_TYPE. ADDR_STACK holds information
2401 about the concrete object. PARTS describes the top-level variant
2402 parts for this type. */
2403
2404 static void
2405 compute_variant_fields (struct type *type,
2406 struct type *resolved_type,
2407 struct property_addr_info *addr_stack,
2408 const gdb::array_view<variant_part> &parts)
2409 {
2410 /* Assume all fields are included by default. */
2411 std::vector<bool> flags (resolved_type->num_fields (), true);
2412
2413 /* Now disable fields based on the variants that control them. */
2414 for (const auto &part : parts)
2415 compute_variant_fields_inner (type, addr_stack, part, flags);
2416
2417 resolved_type->set_num_fields
2418 (std::count (flags.begin (), flags.end (), true));
2419 resolved_type->set_fields
2420 ((struct field *)
2421 TYPE_ALLOC (resolved_type,
2422 resolved_type->num_fields () * sizeof (struct field)));
2423
2424 int out = 0;
2425 for (int i = 0; i < type->num_fields (); ++i)
2426 {
2427 if (!flags[i])
2428 continue;
2429
2430 resolved_type->field (out) = type->field (i);
2431 ++out;
2432 }
2433 }
2434
2435 /* Resolve dynamic bounds of members of the struct TYPE to static
2436 bounds. ADDR_STACK is a stack of struct property_addr_info to
2437 be used if needed during the dynamic resolution. */
2438
2439 static struct type *
2440 resolve_dynamic_struct (struct type *type,
2441 struct property_addr_info *addr_stack)
2442 {
2443 struct type *resolved_type;
2444 int i;
2445 unsigned resolved_type_bit_length = 0;
2446
2447 gdb_assert (type->code () == TYPE_CODE_STRUCT);
2448 gdb_assert (type->num_fields () > 0);
2449
2450 resolved_type = copy_type (type);
2451
2452 dynamic_prop *variant_prop = resolved_type->dyn_prop (DYN_PROP_VARIANT_PARTS);
2453 if (variant_prop != nullptr && variant_prop->kind == PROP_VARIANT_PARTS)
2454 {
2455 compute_variant_fields (type, resolved_type, addr_stack,
2456 *variant_prop->data.variant_parts);
2457 /* We want to leave the property attached, so that the Rust code
2458 can tell whether the type was originally an enum. */
2459 variant_prop->kind = PROP_TYPE;
2460 variant_prop->data.original_type = type;
2461 }
2462 else
2463 {
2464 resolved_type->set_fields
2465 ((struct field *)
2466 TYPE_ALLOC (resolved_type,
2467 resolved_type->num_fields () * sizeof (struct field)));
2468 memcpy (resolved_type->fields (),
2469 type->fields (),
2470 resolved_type->num_fields () * sizeof (struct field));
2471 }
2472
2473 for (i = 0; i < resolved_type->num_fields (); ++i)
2474 {
2475 unsigned new_bit_length;
2476 struct property_addr_info pinfo;
2477
2478 if (field_is_static (&resolved_type->field (i)))
2479 continue;
2480
2481 if (TYPE_FIELD_LOC_KIND (resolved_type, i) == FIELD_LOC_KIND_DWARF_BLOCK)
2482 {
2483 struct dwarf2_property_baton baton;
2484 baton.property_type
2485 = lookup_pointer_type (resolved_type->field (i).type ());
2486 baton.locexpr = *TYPE_FIELD_DWARF_BLOCK (resolved_type, i);
2487
2488 struct dynamic_prop prop;
2489 prop.kind = PROP_LOCEXPR;
2490 prop.data.baton = &baton;
2491
2492 CORE_ADDR addr;
2493 if (dwarf2_evaluate_property (&prop, nullptr, addr_stack, &addr,
2494 true))
2495 SET_FIELD_BITPOS (resolved_type->field (i),
2496 TARGET_CHAR_BIT * (addr - addr_stack->addr));
2497 }
2498
2499 /* As we know this field is not a static field, the field's
2500 field_loc_kind should be FIELD_LOC_KIND_BITPOS. Verify
2501 this is the case, but only trigger a simple error rather
2502 than an internal error if that fails. While failing
2503 that verification indicates a bug in our code, the error
2504 is not severe enough to suggest to the user he stops
2505 his debugging session because of it. */
2506 if (TYPE_FIELD_LOC_KIND (resolved_type, i) != FIELD_LOC_KIND_BITPOS)
2507 error (_("Cannot determine struct field location"
2508 " (invalid location kind)"));
2509
2510 pinfo.type = check_typedef (resolved_type->field (i).type ());
2511 pinfo.valaddr = addr_stack->valaddr;
2512 pinfo.addr
2513 = (addr_stack->addr
2514 + (TYPE_FIELD_BITPOS (resolved_type, i) / TARGET_CHAR_BIT));
2515 pinfo.next = addr_stack;
2516
2517 resolved_type->field (i).set_type
2518 (resolve_dynamic_type_internal (resolved_type->field (i).type (),
2519 &pinfo, 0));
2520 gdb_assert (TYPE_FIELD_LOC_KIND (resolved_type, i)
2521 == FIELD_LOC_KIND_BITPOS);
2522
2523 new_bit_length = TYPE_FIELD_BITPOS (resolved_type, i);
2524 if (TYPE_FIELD_BITSIZE (resolved_type, i) != 0)
2525 new_bit_length += TYPE_FIELD_BITSIZE (resolved_type, i);
2526 else
2527 {
2528 struct type *real_type
2529 = check_typedef (resolved_type->field (i).type ());
2530
2531 new_bit_length += (TYPE_LENGTH (real_type) * TARGET_CHAR_BIT);
2532 }
2533
2534 /* Normally, we would use the position and size of the last field
2535 to determine the size of the enclosing structure. But GCC seems
2536 to be encoding the position of some fields incorrectly when
2537 the struct contains a dynamic field that is not placed last.
2538 So we compute the struct size based on the field that has
2539 the highest position + size - probably the best we can do. */
2540 if (new_bit_length > resolved_type_bit_length)
2541 resolved_type_bit_length = new_bit_length;
2542 }
2543
2544 /* The length of a type won't change for fortran, but it does for C and Ada.
2545 For fortran the size of dynamic fields might change over time but not the
2546 type length of the structure. If we adapt it, we run into problems
2547 when calculating the element offset for arrays of structs. */
2548 if (current_language->la_language != language_fortran)
2549 TYPE_LENGTH (resolved_type)
2550 = (resolved_type_bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
2551
2552 /* The Ada language uses this field as a cache for static fixed types: reset
2553 it as RESOLVED_TYPE must have its own static fixed type. */
2554 TYPE_TARGET_TYPE (resolved_type) = NULL;
2555
2556 return resolved_type;
2557 }
2558
2559 /* Worker for resolved_dynamic_type. */
2560
2561 static struct type *
2562 resolve_dynamic_type_internal (struct type *type,
2563 struct property_addr_info *addr_stack,
2564 int top_level)
2565 {
2566 struct type *real_type = check_typedef (type);
2567 struct type *resolved_type = nullptr;
2568 struct dynamic_prop *prop;
2569 CORE_ADDR value;
2570
2571 if (!is_dynamic_type_internal (real_type, top_level))
2572 return type;
2573
2574 gdb::optional<CORE_ADDR> type_length;
2575 prop = TYPE_DYNAMIC_LENGTH (type);
2576 if (prop != NULL
2577 && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2578 type_length = value;
2579
2580 if (type->code () == TYPE_CODE_TYPEDEF)
2581 {
2582 resolved_type = copy_type (type);
2583 TYPE_TARGET_TYPE (resolved_type)
2584 = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type), addr_stack,
2585 top_level);
2586 }
2587 else
2588 {
2589 /* Before trying to resolve TYPE, make sure it is not a stub. */
2590 type = real_type;
2591
2592 switch (type->code ())
2593 {
2594 case TYPE_CODE_REF:
2595 {
2596 struct property_addr_info pinfo;
2597
2598 pinfo.type = check_typedef (TYPE_TARGET_TYPE (type));
2599 pinfo.valaddr = {};
2600 if (addr_stack->valaddr.data () != NULL)
2601 pinfo.addr = extract_typed_address (addr_stack->valaddr.data (),
2602 type);
2603 else
2604 pinfo.addr = read_memory_typed_address (addr_stack->addr, type);
2605 pinfo.next = addr_stack;
2606
2607 resolved_type = copy_type (type);
2608 TYPE_TARGET_TYPE (resolved_type)
2609 = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (type),
2610 &pinfo, top_level);
2611 break;
2612 }
2613
2614 case TYPE_CODE_STRING:
2615 /* Strings are very much like an array of characters, and can be
2616 treated as one here. */
2617 case TYPE_CODE_ARRAY:
2618 resolved_type = resolve_dynamic_array_or_string (type, addr_stack);
2619 break;
2620
2621 case TYPE_CODE_RANGE:
2622 resolved_type = resolve_dynamic_range (type, addr_stack);
2623 break;
2624
2625 case TYPE_CODE_UNION:
2626 resolved_type = resolve_dynamic_union (type, addr_stack);
2627 break;
2628
2629 case TYPE_CODE_STRUCT:
2630 resolved_type = resolve_dynamic_struct (type, addr_stack);
2631 break;
2632 }
2633 }
2634
2635 if (resolved_type == nullptr)
2636 return type;
2637
2638 if (type_length.has_value ())
2639 {
2640 TYPE_LENGTH (resolved_type) = *type_length;
2641 resolved_type->remove_dyn_prop (DYN_PROP_BYTE_SIZE);
2642 }
2643
2644 /* Resolve data_location attribute. */
2645 prop = TYPE_DATA_LOCATION (resolved_type);
2646 if (prop != NULL
2647 && dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
2648 {
2649 TYPE_DYN_PROP_ADDR (prop) = value;
2650 TYPE_DYN_PROP_KIND (prop) = PROP_CONST;
2651 }
2652
2653 return resolved_type;
2654 }
2655
2656 /* See gdbtypes.h */
2657
2658 struct type *
2659 resolve_dynamic_type (struct type *type,
2660 gdb::array_view<const gdb_byte> valaddr,
2661 CORE_ADDR addr)
2662 {
2663 struct property_addr_info pinfo
2664 = {check_typedef (type), valaddr, addr, NULL};
2665
2666 return resolve_dynamic_type_internal (type, &pinfo, 1);
2667 }
2668
2669 /* See gdbtypes.h */
2670
2671 dynamic_prop *
2672 type::dyn_prop (dynamic_prop_node_kind prop_kind) const
2673 {
2674 dynamic_prop_list *node = this->main_type->dyn_prop_list;
2675
2676 while (node != NULL)
2677 {
2678 if (node->prop_kind == prop_kind)
2679 return &node->prop;
2680 node = node->next;
2681 }
2682 return NULL;
2683 }
2684
2685 /* See gdbtypes.h */
2686
2687 void
2688 type::add_dyn_prop (dynamic_prop_node_kind prop_kind, dynamic_prop prop)
2689 {
2690 struct dynamic_prop_list *temp;
2691
2692 gdb_assert (TYPE_OBJFILE_OWNED (this));
2693
2694 temp = XOBNEW (&TYPE_OBJFILE (this)->objfile_obstack,
2695 struct dynamic_prop_list);
2696 temp->prop_kind = prop_kind;
2697 temp->prop = prop;
2698 temp->next = this->main_type->dyn_prop_list;
2699
2700 this->main_type->dyn_prop_list = temp;
2701 }
2702
2703 /* See gdbtypes.h. */
2704
2705 void
2706 type::remove_dyn_prop (dynamic_prop_node_kind kind)
2707 {
2708 struct dynamic_prop_list *prev_node, *curr_node;
2709
2710 curr_node = this->main_type->dyn_prop_list;
2711 prev_node = NULL;
2712
2713 while (NULL != curr_node)
2714 {
2715 if (curr_node->prop_kind == kind)
2716 {
2717 /* Update the linked list but don't free anything.
2718 The property was allocated on objstack and it is not known
2719 if we are on top of it. Nevertheless, everything is released
2720 when the complete objstack is freed. */
2721 if (NULL == prev_node)
2722 this->main_type->dyn_prop_list = curr_node->next;
2723 else
2724 prev_node->next = curr_node->next;
2725
2726 return;
2727 }
2728
2729 prev_node = curr_node;
2730 curr_node = curr_node->next;
2731 }
2732 }
2733
2734 /* Find the real type of TYPE. This function returns the real type,
2735 after removing all layers of typedefs, and completing opaque or stub
2736 types. Completion changes the TYPE argument, but stripping of
2737 typedefs does not.
2738
2739 Instance flags (e.g. const/volatile) are preserved as typedefs are
2740 stripped. If necessary a new qualified form of the underlying type
2741 is created.
2742
2743 NOTE: This will return a typedef if TYPE_TARGET_TYPE for the typedef has
2744 not been computed and we're either in the middle of reading symbols, or
2745 there was no name for the typedef in the debug info.
2746
2747 NOTE: Lookup of opaque types can throw errors for invalid symbol files.
2748 QUITs in the symbol reading code can also throw.
2749 Thus this function can throw an exception.
2750
2751 If TYPE is a TYPE_CODE_TYPEDEF, its length is updated to the length of
2752 the target type.
2753
2754 If this is a stubbed struct (i.e. declared as struct foo *), see if
2755 we can find a full definition in some other file. If so, copy this
2756 definition, so we can use it in future. There used to be a comment
2757 (but not any code) that if we don't find a full definition, we'd
2758 set a flag so we don't spend time in the future checking the same
2759 type. That would be a mistake, though--we might load in more
2760 symbols which contain a full definition for the type. */
2761
2762 struct type *
2763 check_typedef (struct type *type)
2764 {
2765 struct type *orig_type = type;
2766 /* While we're removing typedefs, we don't want to lose qualifiers.
2767 E.g., const/volatile. */
2768 int instance_flags = TYPE_INSTANCE_FLAGS (type);
2769
2770 gdb_assert (type);
2771
2772 while (type->code () == TYPE_CODE_TYPEDEF)
2773 {
2774 if (!TYPE_TARGET_TYPE (type))
2775 {
2776 const char *name;
2777 struct symbol *sym;
2778
2779 /* It is dangerous to call lookup_symbol if we are currently
2780 reading a symtab. Infinite recursion is one danger. */
2781 if (currently_reading_symtab)
2782 return make_qualified_type (type, instance_flags, NULL);
2783
2784 name = type->name ();
2785 /* FIXME: shouldn't we look in STRUCT_DOMAIN and/or
2786 VAR_DOMAIN as appropriate? */
2787 if (name == NULL)
2788 {
2789 stub_noname_complaint ();
2790 return make_qualified_type (type, instance_flags, NULL);
2791 }
2792 sym = lookup_symbol (name, 0, STRUCT_DOMAIN, 0).symbol;
2793 if (sym)
2794 TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
2795 else /* TYPE_CODE_UNDEF */
2796 TYPE_TARGET_TYPE (type) = alloc_type_arch (get_type_arch (type));
2797 }
2798 type = TYPE_TARGET_TYPE (type);
2799
2800 /* Preserve the instance flags as we traverse down the typedef chain.
2801
2802 Handling address spaces/classes is nasty, what do we do if there's a
2803 conflict?
2804 E.g., what if an outer typedef marks the type as class_1 and an inner
2805 typedef marks the type as class_2?
2806 This is the wrong place to do such error checking. We leave it to
2807 the code that created the typedef in the first place to flag the
2808 error. We just pick the outer address space (akin to letting the
2809 outer cast in a chain of casting win), instead of assuming
2810 "it can't happen". */
2811 {
2812 const int ALL_SPACES = (TYPE_INSTANCE_FLAG_CODE_SPACE
2813 | TYPE_INSTANCE_FLAG_DATA_SPACE);
2814 const int ALL_CLASSES = TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL;
2815 int new_instance_flags = TYPE_INSTANCE_FLAGS (type);
2816
2817 /* Treat code vs data spaces and address classes separately. */
2818 if ((instance_flags & ALL_SPACES) != 0)
2819 new_instance_flags &= ~ALL_SPACES;
2820 if ((instance_flags & ALL_CLASSES) != 0)
2821 new_instance_flags &= ~ALL_CLASSES;
2822
2823 instance_flags |= new_instance_flags;
2824 }
2825 }
2826
2827 /* If this is a struct/class/union with no fields, then check
2828 whether a full definition exists somewhere else. This is for
2829 systems where a type definition with no fields is issued for such
2830 types, instead of identifying them as stub types in the first
2831 place. */
2832
2833 if (TYPE_IS_OPAQUE (type)
2834 && opaque_type_resolution
2835 && !currently_reading_symtab)
2836 {
2837 const char *name = type->name ();
2838 struct type *newtype;
2839
2840 if (name == NULL)
2841 {
2842 stub_noname_complaint ();
2843 return make_qualified_type (type, instance_flags, NULL);
2844 }
2845 newtype = lookup_transparent_type (name);
2846
2847 if (newtype)
2848 {
2849 /* If the resolved type and the stub are in the same
2850 objfile, then replace the stub type with the real deal.
2851 But if they're in separate objfiles, leave the stub
2852 alone; we'll just look up the transparent type every time
2853 we call check_typedef. We can't create pointers between
2854 types allocated to different objfiles, since they may
2855 have different lifetimes. Trying to copy NEWTYPE over to
2856 TYPE's objfile is pointless, too, since you'll have to
2857 move over any other types NEWTYPE refers to, which could
2858 be an unbounded amount of stuff. */
2859 if (TYPE_OBJFILE (newtype) == TYPE_OBJFILE (type))
2860 type = make_qualified_type (newtype,
2861 TYPE_INSTANCE_FLAGS (type),
2862 type);
2863 else
2864 type = newtype;
2865 }
2866 }
2867 /* Otherwise, rely on the stub flag being set for opaque/stubbed
2868 types. */
2869 else if (TYPE_STUB (type) && !currently_reading_symtab)
2870 {
2871 const char *name = type->name ();
2872 /* FIXME: shouldn't we look in STRUCT_DOMAIN and/or VAR_DOMAIN
2873 as appropriate? */
2874 struct symbol *sym;
2875
2876 if (name == NULL)
2877 {
2878 stub_noname_complaint ();
2879 return make_qualified_type (type, instance_flags, NULL);
2880 }
2881 sym = lookup_symbol (name, 0, STRUCT_DOMAIN, 0).symbol;
2882 if (sym)
2883 {
2884 /* Same as above for opaque types, we can replace the stub
2885 with the complete type only if they are in the same
2886 objfile. */
2887 if (TYPE_OBJFILE (SYMBOL_TYPE (sym)) == TYPE_OBJFILE (type))
2888 type = make_qualified_type (SYMBOL_TYPE (sym),
2889 TYPE_INSTANCE_FLAGS (type),
2890 type);
2891 else
2892 type = SYMBOL_TYPE (sym);
2893 }
2894 }
2895
2896 if (TYPE_TARGET_STUB (type))
2897 {
2898 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
2899
2900 if (TYPE_STUB (target_type) || TYPE_TARGET_STUB (target_type))
2901 {
2902 /* Nothing we can do. */
2903 }
2904 else if (type->code () == TYPE_CODE_RANGE)
2905 {
2906 TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
2907 TYPE_TARGET_STUB (type) = 0;
2908 }
2909 else if (type->code () == TYPE_CODE_ARRAY
2910 && update_static_array_size (type))
2911 TYPE_TARGET_STUB (type) = 0;
2912 }
2913
2914 type = make_qualified_type (type, instance_flags, NULL);
2915
2916 /* Cache TYPE_LENGTH for future use. */
2917 TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
2918
2919 return type;
2920 }
2921
2922 /* Parse a type expression in the string [P..P+LENGTH). If an error
2923 occurs, silently return a void type. */
2924
2925 static struct type *
2926 safe_parse_type (struct gdbarch *gdbarch, char *p, int length)
2927 {
2928 struct ui_file *saved_gdb_stderr;
2929 struct type *type = NULL; /* Initialize to keep gcc happy. */
2930
2931 /* Suppress error messages. */
2932 saved_gdb_stderr = gdb_stderr;
2933 gdb_stderr = &null_stream;
2934
2935 /* Call parse_and_eval_type() without fear of longjmp()s. */
2936 try
2937 {
2938 type = parse_and_eval_type (p, length);
2939 }
2940 catch (const gdb_exception_error &except)
2941 {
2942 type = builtin_type (gdbarch)->builtin_void;
2943 }
2944
2945 /* Stop suppressing error messages. */
2946 gdb_stderr = saved_gdb_stderr;
2947
2948 return type;
2949 }
2950
2951 /* Ugly hack to convert method stubs into method types.
2952
2953 He ain't kiddin'. This demangles the name of the method into a
2954 string including argument types, parses out each argument type,
2955 generates a string casting a zero to that type, evaluates the
2956 string, and stuffs the resulting type into an argtype vector!!!
2957 Then it knows the type of the whole function (including argument
2958 types for overloading), which info used to be in the stab's but was
2959 removed to hack back the space required for them. */
2960
2961 static void
2962 check_stub_method (struct type *type, int method_id, int signature_id)
2963 {
2964 struct gdbarch *gdbarch = get_type_arch (type);
2965 struct fn_field *f;
2966 char *mangled_name = gdb_mangle_name (type, method_id, signature_id);
2967 char *demangled_name = gdb_demangle (mangled_name,
2968 DMGL_PARAMS | DMGL_ANSI);
2969 char *argtypetext, *p;
2970 int depth = 0, argcount = 1;
2971 struct field *argtypes;
2972 struct type *mtype;
2973
2974 /* Make sure we got back a function string that we can use. */
2975 if (demangled_name)
2976 p = strchr (demangled_name, '(');
2977 else
2978 p = NULL;
2979
2980 if (demangled_name == NULL || p == NULL)
2981 error (_("Internal: Cannot demangle mangled name `%s'."),
2982 mangled_name);
2983
2984 /* Now, read in the parameters that define this type. */
2985 p += 1;
2986 argtypetext = p;
2987 while (*p)
2988 {
2989 if (*p == '(' || *p == '<')
2990 {
2991 depth += 1;
2992 }
2993 else if (*p == ')' || *p == '>')
2994 {
2995 depth -= 1;
2996 }
2997 else if (*p == ',' && depth == 0)
2998 {
2999 argcount += 1;
3000 }
3001
3002 p += 1;
3003 }
3004
3005 /* If we read one argument and it was ``void'', don't count it. */
3006 if (startswith (argtypetext, "(void)"))
3007 argcount -= 1;
3008
3009 /* We need one extra slot, for the THIS pointer. */
3010
3011 argtypes = (struct field *)
3012 TYPE_ALLOC (type, (argcount + 1) * sizeof (struct field));
3013 p = argtypetext;
3014
3015 /* Add THIS pointer for non-static methods. */
3016 f = TYPE_FN_FIELDLIST1 (type, method_id);
3017 if (TYPE_FN_FIELD_STATIC_P (f, signature_id))
3018 argcount = 0;
3019 else
3020 {
3021 argtypes[0].set_type (lookup_pointer_type (type));
3022 argcount = 1;
3023 }
3024
3025 if (*p != ')') /* () means no args, skip while. */
3026 {
3027 depth = 0;
3028 while (*p)
3029 {
3030 if (depth <= 0 && (*p == ',' || *p == ')'))
3031 {
3032 /* Avoid parsing of ellipsis, they will be handled below.
3033 Also avoid ``void'' as above. */
3034 if (strncmp (argtypetext, "...", p - argtypetext) != 0
3035 && strncmp (argtypetext, "void", p - argtypetext) != 0)
3036 {
3037 argtypes[argcount].set_type
3038 (safe_parse_type (gdbarch, argtypetext, p - argtypetext));
3039 argcount += 1;
3040 }
3041 argtypetext = p + 1;
3042 }
3043
3044 if (*p == '(' || *p == '<')
3045 {
3046 depth += 1;
3047 }
3048 else if (*p == ')' || *p == '>')
3049 {
3050 depth -= 1;
3051 }
3052
3053 p += 1;
3054 }
3055 }
3056
3057 TYPE_FN_FIELD_PHYSNAME (f, signature_id) = mangled_name;
3058
3059 /* Now update the old "stub" type into a real type. */
3060 mtype = TYPE_FN_FIELD_TYPE (f, signature_id);
3061 /* MTYPE may currently be a function (TYPE_CODE_FUNC).
3062 We want a method (TYPE_CODE_METHOD). */
3063 smash_to_method_type (mtype, type, TYPE_TARGET_TYPE (mtype),
3064 argtypes, argcount, p[-2] == '.');
3065 TYPE_STUB (mtype) = 0;
3066 TYPE_FN_FIELD_STUB (f, signature_id) = 0;
3067
3068 xfree (demangled_name);
3069 }
3070
3071 /* This is the external interface to check_stub_method, above. This
3072 function unstubs all of the signatures for TYPE's METHOD_ID method
3073 name. After calling this function TYPE_FN_FIELD_STUB will be
3074 cleared for each signature and TYPE_FN_FIELDLIST_NAME will be
3075 correct.
3076
3077 This function unfortunately can not die until stabs do. */
3078
3079 void
3080 check_stub_method_group (struct type *type, int method_id)
3081 {
3082 int len = TYPE_FN_FIELDLIST_LENGTH (type, method_id);
3083 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, method_id);
3084
3085 for (int j = 0; j < len; j++)
3086 {
3087 if (TYPE_FN_FIELD_STUB (f, j))
3088 check_stub_method (type, method_id, j);
3089 }
3090 }
3091
3092 /* Ensure it is in .rodata (if available) by working around GCC PR 44690. */
3093 const struct cplus_struct_type cplus_struct_default = { };
3094
3095 void
3096 allocate_cplus_struct_type (struct type *type)
3097 {
3098 if (HAVE_CPLUS_STRUCT (type))
3099 /* Structure was already allocated. Nothing more to do. */
3100 return;
3101
3102 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_CPLUS_STUFF;
3103 TYPE_RAW_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
3104 TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
3105 *(TYPE_RAW_CPLUS_SPECIFIC (type)) = cplus_struct_default;
3106 set_type_vptr_fieldno (type, -1);
3107 }
3108
3109 const struct gnat_aux_type gnat_aux_default =
3110 { NULL };
3111
3112 /* Set the TYPE's type-specific kind to TYPE_SPECIFIC_GNAT_STUFF,
3113 and allocate the associated gnat-specific data. The gnat-specific
3114 data is also initialized to gnat_aux_default. */
3115
3116 void
3117 allocate_gnat_aux_type (struct type *type)
3118 {
3119 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_GNAT_STUFF;
3120 TYPE_GNAT_SPECIFIC (type) = (struct gnat_aux_type *)
3121 TYPE_ALLOC (type, sizeof (struct gnat_aux_type));
3122 *(TYPE_GNAT_SPECIFIC (type)) = gnat_aux_default;
3123 }
3124
3125 /* Helper function to initialize a newly allocated type. Set type code
3126 to CODE and initialize the type-specific fields accordingly. */
3127
3128 static void
3129 set_type_code (struct type *type, enum type_code code)
3130 {
3131 type->set_code (code);
3132
3133 switch (code)
3134 {
3135 case TYPE_CODE_STRUCT:
3136 case TYPE_CODE_UNION:
3137 case TYPE_CODE_NAMESPACE:
3138 INIT_CPLUS_SPECIFIC (type);
3139 break;
3140 case TYPE_CODE_FLT:
3141 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_FLOATFORMAT;
3142 break;
3143 case TYPE_CODE_FUNC:
3144 INIT_FUNC_SPECIFIC (type);
3145 break;
3146 }
3147 }
3148
3149 /* Helper function to verify floating-point format and size.
3150 BIT is the type size in bits; if BIT equals -1, the size is
3151 determined by the floatformat. Returns size to be used. */
3152
3153 static int
3154 verify_floatformat (int bit, const struct floatformat *floatformat)
3155 {
3156 gdb_assert (floatformat != NULL);
3157
3158 if (bit == -1)
3159 bit = floatformat->totalsize;
3160
3161 gdb_assert (bit >= 0);
3162 gdb_assert (bit >= floatformat->totalsize);
3163
3164 return bit;
3165 }
3166
3167 /* Return the floating-point format for a floating-point variable of
3168 type TYPE. */
3169
3170 const struct floatformat *
3171 floatformat_from_type (const struct type *type)
3172 {
3173 gdb_assert (type->code () == TYPE_CODE_FLT);
3174 gdb_assert (TYPE_FLOATFORMAT (type));
3175 return TYPE_FLOATFORMAT (type);
3176 }
3177
3178 /* Helper function to initialize the standard scalar types.
3179
3180 If NAME is non-NULL, then it is used to initialize the type name.
3181 Note that NAME is not copied; it is required to have a lifetime at
3182 least as long as OBJFILE. */
3183
3184 struct type *
3185 init_type (struct objfile *objfile, enum type_code code, int bit,
3186 const char *name)
3187 {
3188 struct type *type;
3189
3190 type = alloc_type (objfile);
3191 set_type_code (type, code);
3192 gdb_assert ((bit % TARGET_CHAR_BIT) == 0);
3193 TYPE_LENGTH (type) = bit / TARGET_CHAR_BIT;
3194 type->set_name (name);
3195
3196 return type;
3197 }
3198
3199 /* Allocate a TYPE_CODE_ERROR type structure associated with OBJFILE,
3200 to use with variables that have no debug info. NAME is the type
3201 name. */
3202
3203 static struct type *
3204 init_nodebug_var_type (struct objfile *objfile, const char *name)
3205 {
3206 return init_type (objfile, TYPE_CODE_ERROR, 0, name);
3207 }
3208
3209 /* Allocate a TYPE_CODE_INT type structure associated with OBJFILE.
3210 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
3211 the type's TYPE_UNSIGNED flag. NAME is the type name. */
3212
3213 struct type *
3214 init_integer_type (struct objfile *objfile,
3215 int bit, int unsigned_p, const char *name)
3216 {
3217 struct type *t;
3218
3219 t = init_type (objfile, TYPE_CODE_INT, bit, name);
3220 if (unsigned_p)
3221 TYPE_UNSIGNED (t) = 1;
3222
3223 return t;
3224 }
3225
3226 /* Allocate a TYPE_CODE_CHAR type structure associated with OBJFILE.
3227 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
3228 the type's TYPE_UNSIGNED flag. NAME is the type name. */
3229
3230 struct type *
3231 init_character_type (struct objfile *objfile,
3232 int bit, int unsigned_p, const char *name)
3233 {
3234 struct type *t;
3235
3236 t = init_type (objfile, TYPE_CODE_CHAR, bit, name);
3237 if (unsigned_p)
3238 TYPE_UNSIGNED (t) = 1;
3239
3240 return t;
3241 }
3242
3243 /* Allocate a TYPE_CODE_BOOL type structure associated with OBJFILE.
3244 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
3245 the type's TYPE_UNSIGNED flag. NAME is the type name. */
3246
3247 struct type *
3248 init_boolean_type (struct objfile *objfile,
3249 int bit, int unsigned_p, const char *name)
3250 {
3251 struct type *t;
3252
3253 t = init_type (objfile, TYPE_CODE_BOOL, bit, name);
3254 if (unsigned_p)
3255 TYPE_UNSIGNED (t) = 1;
3256
3257 return t;
3258 }
3259
3260 /* Allocate a TYPE_CODE_FLT type structure associated with OBJFILE.
3261 BIT is the type size in bits; if BIT equals -1, the size is
3262 determined by the floatformat. NAME is the type name. Set the
3263 TYPE_FLOATFORMAT from FLOATFORMATS. BYTE_ORDER is the byte order
3264 to use. If it is BFD_ENDIAN_UNKNOWN (the default), then the byte
3265 order of the objfile's architecture is used. */
3266
3267 struct type *
3268 init_float_type (struct objfile *objfile,
3269 int bit, const char *name,
3270 const struct floatformat **floatformats,
3271 enum bfd_endian byte_order)
3272 {
3273 if (byte_order == BFD_ENDIAN_UNKNOWN)
3274 {
3275 struct gdbarch *gdbarch = objfile->arch ();
3276 byte_order = gdbarch_byte_order (gdbarch);
3277 }
3278 const struct floatformat *fmt = floatformats[byte_order];
3279 struct type *t;
3280
3281 bit = verify_floatformat (bit, fmt);
3282 t = init_type (objfile, TYPE_CODE_FLT, bit, name);
3283 TYPE_FLOATFORMAT (t) = fmt;
3284
3285 return t;
3286 }
3287
3288 /* Allocate a TYPE_CODE_DECFLOAT type structure associated with OBJFILE.
3289 BIT is the type size in bits. NAME is the type name. */
3290
3291 struct type *
3292 init_decfloat_type (struct objfile *objfile, int bit, const char *name)
3293 {
3294 struct type *t;
3295
3296 t = init_type (objfile, TYPE_CODE_DECFLOAT, bit, name);
3297 return t;
3298 }
3299
3300 /* Allocate a TYPE_CODE_COMPLEX type structure. NAME is the type
3301 name. TARGET_TYPE is the component type. */
3302
3303 struct type *
3304 init_complex_type (const char *name, struct type *target_type)
3305 {
3306 struct type *t;
3307
3308 gdb_assert (target_type->code () == TYPE_CODE_INT
3309 || target_type->code () == TYPE_CODE_FLT);
3310
3311 if (TYPE_MAIN_TYPE (target_type)->flds_bnds.complex_type == nullptr)
3312 {
3313 if (name == nullptr)
3314 {
3315 char *new_name
3316 = (char *) TYPE_ALLOC (target_type,
3317 strlen (target_type->name ())
3318 + strlen ("_Complex ") + 1);
3319 strcpy (new_name, "_Complex ");
3320 strcat (new_name, target_type->name ());
3321 name = new_name;
3322 }
3323
3324 t = alloc_type_copy (target_type);
3325 set_type_code (t, TYPE_CODE_COMPLEX);
3326 TYPE_LENGTH (t) = 2 * TYPE_LENGTH (target_type);
3327 t->set_name (name);
3328
3329 TYPE_TARGET_TYPE (t) = target_type;
3330 TYPE_MAIN_TYPE (target_type)->flds_bnds.complex_type = t;
3331 }
3332
3333 return TYPE_MAIN_TYPE (target_type)->flds_bnds.complex_type;
3334 }
3335
3336 /* Allocate a TYPE_CODE_PTR type structure associated with OBJFILE.
3337 BIT is the pointer type size in bits. NAME is the type name.
3338 TARGET_TYPE is the pointer target type. Always sets the pointer type's
3339 TYPE_UNSIGNED flag. */
3340
3341 struct type *
3342 init_pointer_type (struct objfile *objfile,
3343 int bit, const char *name, struct type *target_type)
3344 {
3345 struct type *t;
3346
3347 t = init_type (objfile, TYPE_CODE_PTR, bit, name);
3348 TYPE_TARGET_TYPE (t) = target_type;
3349 TYPE_UNSIGNED (t) = 1;
3350 return t;
3351 }
3352
3353 /* See gdbtypes.h. */
3354
3355 unsigned
3356 type_raw_align (struct type *type)
3357 {
3358 if (type->align_log2 != 0)
3359 return 1 << (type->align_log2 - 1);
3360 return 0;
3361 }
3362
3363 /* See gdbtypes.h. */
3364
3365 unsigned
3366 type_align (struct type *type)
3367 {
3368 /* Check alignment provided in the debug information. */
3369 unsigned raw_align = type_raw_align (type);
3370 if (raw_align != 0)
3371 return raw_align;
3372
3373 /* Allow the architecture to provide an alignment. */
3374 struct gdbarch *arch = get_type_arch (type);
3375 ULONGEST align = gdbarch_type_align (arch, type);
3376 if (align != 0)
3377 return align;
3378
3379 switch (type->code ())
3380 {
3381 case TYPE_CODE_PTR:
3382 case TYPE_CODE_FUNC:
3383 case TYPE_CODE_FLAGS:
3384 case TYPE_CODE_INT:
3385 case TYPE_CODE_RANGE:
3386 case TYPE_CODE_FLT:
3387 case TYPE_CODE_ENUM:
3388 case TYPE_CODE_REF:
3389 case TYPE_CODE_RVALUE_REF:
3390 case TYPE_CODE_CHAR:
3391 case TYPE_CODE_BOOL:
3392 case TYPE_CODE_DECFLOAT:
3393 case TYPE_CODE_METHODPTR:
3394 case TYPE_CODE_MEMBERPTR:
3395 align = type_length_units (check_typedef (type));
3396 break;
3397
3398 case TYPE_CODE_ARRAY:
3399 case TYPE_CODE_COMPLEX:
3400 case TYPE_CODE_TYPEDEF:
3401 align = type_align (TYPE_TARGET_TYPE (type));
3402 break;
3403
3404 case TYPE_CODE_STRUCT:
3405 case TYPE_CODE_UNION:
3406 {
3407 int number_of_non_static_fields = 0;
3408 for (unsigned i = 0; i < type->num_fields (); ++i)
3409 {
3410 if (!field_is_static (&type->field (i)))
3411 {
3412 number_of_non_static_fields++;
3413 ULONGEST f_align = type_align (type->field (i).type ());
3414 if (f_align == 0)
3415 {
3416 /* Don't pretend we know something we don't. */
3417 align = 0;
3418 break;
3419 }
3420 if (f_align > align)
3421 align = f_align;
3422 }
3423 }
3424 /* A struct with no fields, or with only static fields has an
3425 alignment of 1. */
3426 if (number_of_non_static_fields == 0)
3427 align = 1;
3428 }
3429 break;
3430
3431 case TYPE_CODE_SET:
3432 case TYPE_CODE_STRING:
3433 /* Not sure what to do here, and these can't appear in C or C++
3434 anyway. */
3435 break;
3436
3437 case TYPE_CODE_VOID:
3438 align = 1;
3439 break;
3440
3441 case TYPE_CODE_ERROR:
3442 case TYPE_CODE_METHOD:
3443 default:
3444 break;
3445 }
3446
3447 if ((align & (align - 1)) != 0)
3448 {
3449 /* Not a power of 2, so pass. */
3450 align = 0;
3451 }
3452
3453 return align;
3454 }
3455
3456 /* See gdbtypes.h. */
3457
3458 bool
3459 set_type_align (struct type *type, ULONGEST align)
3460 {
3461 /* Must be a power of 2. Zero is ok. */
3462 gdb_assert ((align & (align - 1)) == 0);
3463
3464 unsigned result = 0;
3465 while (align != 0)
3466 {
3467 ++result;
3468 align >>= 1;
3469 }
3470
3471 if (result >= (1 << TYPE_ALIGN_BITS))
3472 return false;
3473
3474 type->align_log2 = result;
3475 return true;
3476 }
3477
3478 \f
3479 /* Queries on types. */
3480
3481 int
3482 can_dereference (struct type *t)
3483 {
3484 /* FIXME: Should we return true for references as well as
3485 pointers? */
3486 t = check_typedef (t);
3487 return
3488 (t != NULL
3489 && t->code () == TYPE_CODE_PTR
3490 && TYPE_TARGET_TYPE (t)->code () != TYPE_CODE_VOID);
3491 }
3492
3493 int
3494 is_integral_type (struct type *t)
3495 {
3496 t = check_typedef (t);
3497 return
3498 ((t != NULL)
3499 && ((t->code () == TYPE_CODE_INT)
3500 || (t->code () == TYPE_CODE_ENUM)
3501 || (t->code () == TYPE_CODE_FLAGS)
3502 || (t->code () == TYPE_CODE_CHAR)
3503 || (t->code () == TYPE_CODE_RANGE)
3504 || (t->code () == TYPE_CODE_BOOL)));
3505 }
3506
3507 int
3508 is_floating_type (struct type *t)
3509 {
3510 t = check_typedef (t);
3511 return
3512 ((t != NULL)
3513 && ((t->code () == TYPE_CODE_FLT)
3514 || (t->code () == TYPE_CODE_DECFLOAT)));
3515 }
3516
3517 /* Return true if TYPE is scalar. */
3518
3519 int
3520 is_scalar_type (struct type *type)
3521 {
3522 type = check_typedef (type);
3523
3524 switch (type->code ())
3525 {
3526 case TYPE_CODE_ARRAY:
3527 case TYPE_CODE_STRUCT:
3528 case TYPE_CODE_UNION:
3529 case TYPE_CODE_SET:
3530 case TYPE_CODE_STRING:
3531 return 0;
3532 default:
3533 return 1;
3534 }
3535 }
3536
3537 /* Return true if T is scalar, or a composite type which in practice has
3538 the memory layout of a scalar type. E.g., an array or struct with only
3539 one scalar element inside it, or a union with only scalar elements. */
3540
3541 int
3542 is_scalar_type_recursive (struct type *t)
3543 {
3544 t = check_typedef (t);
3545
3546 if (is_scalar_type (t))
3547 return 1;
3548 /* Are we dealing with an array or string of known dimensions? */
3549 else if ((t->code () == TYPE_CODE_ARRAY
3550 || t->code () == TYPE_CODE_STRING) && t->num_fields () == 1
3551 && t->index_type ()->code () == TYPE_CODE_RANGE)
3552 {
3553 LONGEST low_bound, high_bound;
3554 struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (t));
3555
3556 get_discrete_bounds (t->index_type (), &low_bound, &high_bound);
3557
3558 return high_bound == low_bound && is_scalar_type_recursive (elt_type);
3559 }
3560 /* Are we dealing with a struct with one element? */
3561 else if (t->code () == TYPE_CODE_STRUCT && t->num_fields () == 1)
3562 return is_scalar_type_recursive (t->field (0).type ());
3563 else if (t->code () == TYPE_CODE_UNION)
3564 {
3565 int i, n = t->num_fields ();
3566
3567 /* If all elements of the union are scalar, then the union is scalar. */
3568 for (i = 0; i < n; i++)
3569 if (!is_scalar_type_recursive (t->field (i).type ()))
3570 return 0;
3571
3572 return 1;
3573 }
3574
3575 return 0;
3576 }
3577
3578 /* Return true is T is a class or a union. False otherwise. */
3579
3580 int
3581 class_or_union_p (const struct type *t)
3582 {
3583 return (t->code () == TYPE_CODE_STRUCT
3584 || t->code () == TYPE_CODE_UNION);
3585 }
3586
3587 /* A helper function which returns true if types A and B represent the
3588 "same" class type. This is true if the types have the same main
3589 type, or the same name. */
3590
3591 int
3592 class_types_same_p (const struct type *a, const struct type *b)
3593 {
3594 return (TYPE_MAIN_TYPE (a) == TYPE_MAIN_TYPE (b)
3595 || (a->name () && b->name ()
3596 && !strcmp (a->name (), b->name ())));
3597 }
3598
3599 /* If BASE is an ancestor of DCLASS return the distance between them.
3600 otherwise return -1;
3601 eg:
3602
3603 class A {};
3604 class B: public A {};
3605 class C: public B {};
3606 class D: C {};
3607
3608 distance_to_ancestor (A, A, 0) = 0
3609 distance_to_ancestor (A, B, 0) = 1
3610 distance_to_ancestor (A, C, 0) = 2
3611 distance_to_ancestor (A, D, 0) = 3
3612
3613 If PUBLIC is 1 then only public ancestors are considered,
3614 and the function returns the distance only if BASE is a public ancestor
3615 of DCLASS.
3616 Eg:
3617
3618 distance_to_ancestor (A, D, 1) = -1. */
3619
3620 static int
3621 distance_to_ancestor (struct type *base, struct type *dclass, int is_public)
3622 {
3623 int i;
3624 int d;
3625
3626 base = check_typedef (base);
3627 dclass = check_typedef (dclass);
3628
3629 if (class_types_same_p (base, dclass))
3630 return 0;
3631
3632 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
3633 {
3634 if (is_public && ! BASETYPE_VIA_PUBLIC (dclass, i))
3635 continue;
3636
3637 d = distance_to_ancestor (base, TYPE_BASECLASS (dclass, i), is_public);
3638 if (d >= 0)
3639 return 1 + d;
3640 }
3641
3642 return -1;
3643 }
3644
3645 /* Check whether BASE is an ancestor or base class or DCLASS
3646 Return 1 if so, and 0 if not.
3647 Note: If BASE and DCLASS are of the same type, this function
3648 will return 1. So for some class A, is_ancestor (A, A) will
3649 return 1. */
3650
3651 int
3652 is_ancestor (struct type *base, struct type *dclass)
3653 {
3654 return distance_to_ancestor (base, dclass, 0) >= 0;
3655 }
3656
3657 /* Like is_ancestor, but only returns true when BASE is a public
3658 ancestor of DCLASS. */
3659
3660 int
3661 is_public_ancestor (struct type *base, struct type *dclass)
3662 {
3663 return distance_to_ancestor (base, dclass, 1) >= 0;
3664 }
3665
3666 /* A helper function for is_unique_ancestor. */
3667
3668 static int
3669 is_unique_ancestor_worker (struct type *base, struct type *dclass,
3670 int *offset,
3671 const gdb_byte *valaddr, int embedded_offset,
3672 CORE_ADDR address, struct value *val)
3673 {
3674 int i, count = 0;
3675
3676 base = check_typedef (base);
3677 dclass = check_typedef (dclass);
3678
3679 for (i = 0; i < TYPE_N_BASECLASSES (dclass) && count < 2; ++i)
3680 {
3681 struct type *iter;
3682 int this_offset;
3683
3684 iter = check_typedef (TYPE_BASECLASS (dclass, i));
3685
3686 this_offset = baseclass_offset (dclass, i, valaddr, embedded_offset,
3687 address, val);
3688
3689 if (class_types_same_p (base, iter))
3690 {
3691 /* If this is the first subclass, set *OFFSET and set count
3692 to 1. Otherwise, if this is at the same offset as
3693 previous instances, do nothing. Otherwise, increment
3694 count. */
3695 if (*offset == -1)
3696 {
3697 *offset = this_offset;
3698 count = 1;
3699 }
3700 else if (this_offset == *offset)
3701 {
3702 /* Nothing. */
3703 }
3704 else
3705 ++count;
3706 }
3707 else
3708 count += is_unique_ancestor_worker (base, iter, offset,
3709 valaddr,
3710 embedded_offset + this_offset,
3711 address, val);
3712 }
3713
3714 return count;
3715 }
3716
3717 /* Like is_ancestor, but only returns true if BASE is a unique base
3718 class of the type of VAL. */
3719
3720 int
3721 is_unique_ancestor (struct type *base, struct value *val)
3722 {
3723 int offset = -1;
3724
3725 return is_unique_ancestor_worker (base, value_type (val), &offset,
3726 value_contents_for_printing (val),
3727 value_embedded_offset (val),
3728 value_address (val), val) == 1;
3729 }
3730
3731 /* See gdbtypes.h. */
3732
3733 enum bfd_endian
3734 type_byte_order (const struct type *type)
3735 {
3736 bfd_endian byteorder = gdbarch_byte_order (get_type_arch (type));
3737 if (TYPE_ENDIANITY_NOT_DEFAULT (type))
3738 {
3739 if (byteorder == BFD_ENDIAN_BIG)
3740 return BFD_ENDIAN_LITTLE;
3741 else
3742 {
3743 gdb_assert (byteorder == BFD_ENDIAN_LITTLE);
3744 return BFD_ENDIAN_BIG;
3745 }
3746 }
3747
3748 return byteorder;
3749 }
3750
3751 \f
3752 /* Overload resolution. */
3753
3754 /* Return the sum of the rank of A with the rank of B. */
3755
3756 struct rank
3757 sum_ranks (struct rank a, struct rank b)
3758 {
3759 struct rank c;
3760 c.rank = a.rank + b.rank;
3761 c.subrank = a.subrank + b.subrank;
3762 return c;
3763 }
3764
3765 /* Compare rank A and B and return:
3766 0 if a = b
3767 1 if a is better than b
3768 -1 if b is better than a. */
3769
3770 int
3771 compare_ranks (struct rank a, struct rank b)
3772 {
3773 if (a.rank == b.rank)
3774 {
3775 if (a.subrank == b.subrank)
3776 return 0;
3777 if (a.subrank < b.subrank)
3778 return 1;
3779 if (a.subrank > b.subrank)
3780 return -1;
3781 }
3782
3783 if (a.rank < b.rank)
3784 return 1;
3785
3786 /* a.rank > b.rank */
3787 return -1;
3788 }
3789
3790 /* Functions for overload resolution begin here. */
3791
3792 /* Compare two badness vectors A and B and return the result.
3793 0 => A and B are identical
3794 1 => A and B are incomparable
3795 2 => A is better than B
3796 3 => A is worse than B */
3797
3798 int
3799 compare_badness (const badness_vector &a, const badness_vector &b)
3800 {
3801 int i;
3802 int tmp;
3803 short found_pos = 0; /* any positives in c? */
3804 short found_neg = 0; /* any negatives in c? */
3805
3806 /* differing sizes => incomparable */
3807 if (a.size () != b.size ())
3808 return 1;
3809
3810 /* Subtract b from a */
3811 for (i = 0; i < a.size (); i++)
3812 {
3813 tmp = compare_ranks (b[i], a[i]);
3814 if (tmp > 0)
3815 found_pos = 1;
3816 else if (tmp < 0)
3817 found_neg = 1;
3818 }
3819
3820 if (found_pos)
3821 {
3822 if (found_neg)
3823 return 1; /* incomparable */
3824 else
3825 return 3; /* A > B */
3826 }
3827 else
3828 /* no positives */
3829 {
3830 if (found_neg)
3831 return 2; /* A < B */
3832 else
3833 return 0; /* A == B */
3834 }
3835 }
3836
3837 /* Rank a function by comparing its parameter types (PARMS), to the
3838 types of an argument list (ARGS). Return the badness vector. This
3839 has ARGS.size() + 1 entries. */
3840
3841 badness_vector
3842 rank_function (gdb::array_view<type *> parms,
3843 gdb::array_view<value *> args)
3844 {
3845 /* add 1 for the length-match rank. */
3846 badness_vector bv;
3847 bv.reserve (1 + args.size ());
3848
3849 /* First compare the lengths of the supplied lists.
3850 If there is a mismatch, set it to a high value. */
3851
3852 /* pai/1997-06-03 FIXME: when we have debug info about default
3853 arguments and ellipsis parameter lists, we should consider those
3854 and rank the length-match more finely. */
3855
3856 bv.push_back ((args.size () != parms.size ())
3857 ? LENGTH_MISMATCH_BADNESS
3858 : EXACT_MATCH_BADNESS);
3859
3860 /* Now rank all the parameters of the candidate function. */
3861 size_t min_len = std::min (parms.size (), args.size ());
3862
3863 for (size_t i = 0; i < min_len; i++)
3864 bv.push_back (rank_one_type (parms[i], value_type (args[i]),
3865 args[i]));
3866
3867 /* If more arguments than parameters, add dummy entries. */
3868 for (size_t i = min_len; i < args.size (); i++)
3869 bv.push_back (TOO_FEW_PARAMS_BADNESS);
3870
3871 return bv;
3872 }
3873
3874 /* Compare the names of two integer types, assuming that any sign
3875 qualifiers have been checked already. We do it this way because
3876 there may be an "int" in the name of one of the types. */
3877
3878 static int
3879 integer_types_same_name_p (const char *first, const char *second)
3880 {
3881 int first_p, second_p;
3882
3883 /* If both are shorts, return 1; if neither is a short, keep
3884 checking. */
3885 first_p = (strstr (first, "short") != NULL);
3886 second_p = (strstr (second, "short") != NULL);
3887 if (first_p && second_p)
3888 return 1;
3889 if (first_p || second_p)
3890 return 0;
3891
3892 /* Likewise for long. */
3893 first_p = (strstr (first, "long") != NULL);
3894 second_p = (strstr (second, "long") != NULL);
3895 if (first_p && second_p)
3896 return 1;
3897 if (first_p || second_p)
3898 return 0;
3899
3900 /* Likewise for char. */
3901 first_p = (strstr (first, "char") != NULL);
3902 second_p = (strstr (second, "char") != NULL);
3903 if (first_p && second_p)
3904 return 1;
3905 if (first_p || second_p)
3906 return 0;
3907
3908 /* They must both be ints. */
3909 return 1;
3910 }
3911
3912 /* Compares type A to type B. Returns true if they represent the same
3913 type, false otherwise. */
3914
3915 bool
3916 types_equal (struct type *a, struct type *b)
3917 {
3918 /* Identical type pointers. */
3919 /* However, this still doesn't catch all cases of same type for b
3920 and a. The reason is that builtin types are different from
3921 the same ones constructed from the object. */
3922 if (a == b)
3923 return true;
3924
3925 /* Resolve typedefs */
3926 if (a->code () == TYPE_CODE_TYPEDEF)
3927 a = check_typedef (a);
3928 if (b->code () == TYPE_CODE_TYPEDEF)
3929 b = check_typedef (b);
3930
3931 /* If after resolving typedefs a and b are not of the same type
3932 code then they are not equal. */
3933 if (a->code () != b->code ())
3934 return false;
3935
3936 /* If a and b are both pointers types or both reference types then
3937 they are equal of the same type iff the objects they refer to are
3938 of the same type. */
3939 if (a->code () == TYPE_CODE_PTR
3940 || a->code () == TYPE_CODE_REF)
3941 return types_equal (TYPE_TARGET_TYPE (a),
3942 TYPE_TARGET_TYPE (b));
3943
3944 /* Well, damnit, if the names are exactly the same, I'll say they
3945 are exactly the same. This happens when we generate method
3946 stubs. The types won't point to the same address, but they
3947 really are the same. */
3948
3949 if (a->name () && b->name ()
3950 && strcmp (a->name (), b->name ()) == 0)
3951 return true;
3952
3953 /* Check if identical after resolving typedefs. */
3954 if (a == b)
3955 return true;
3956
3957 /* Two function types are equal if their argument and return types
3958 are equal. */
3959 if (a->code () == TYPE_CODE_FUNC)
3960 {
3961 int i;
3962
3963 if (a->num_fields () != b->num_fields ())
3964 return false;
3965
3966 if (!types_equal (TYPE_TARGET_TYPE (a), TYPE_TARGET_TYPE (b)))
3967 return false;
3968
3969 for (i = 0; i < a->num_fields (); ++i)
3970 if (!types_equal (a->field (i).type (), b->field (i).type ()))
3971 return false;
3972
3973 return true;
3974 }
3975
3976 return false;
3977 }
3978 \f
3979 /* Deep comparison of types. */
3980
3981 /* An entry in the type-equality bcache. */
3982
3983 struct type_equality_entry
3984 {
3985 type_equality_entry (struct type *t1, struct type *t2)
3986 : type1 (t1),
3987 type2 (t2)
3988 {
3989 }
3990
3991 struct type *type1, *type2;
3992 };
3993
3994 /* A helper function to compare two strings. Returns true if they are
3995 the same, false otherwise. Handles NULLs properly. */
3996
3997 static bool
3998 compare_maybe_null_strings (const char *s, const char *t)
3999 {
4000 if (s == NULL || t == NULL)
4001 return s == t;
4002 return strcmp (s, t) == 0;
4003 }
4004
4005 /* A helper function for check_types_worklist that checks two types for
4006 "deep" equality. Returns true if the types are considered the
4007 same, false otherwise. */
4008
4009 static bool
4010 check_types_equal (struct type *type1, struct type *type2,
4011 std::vector<type_equality_entry> *worklist)
4012 {
4013 type1 = check_typedef (type1);
4014 type2 = check_typedef (type2);
4015
4016 if (type1 == type2)
4017 return true;
4018
4019 if (type1->code () != type2->code ()
4020 || TYPE_LENGTH (type1) != TYPE_LENGTH (type2)
4021 || TYPE_UNSIGNED (type1) != TYPE_UNSIGNED (type2)
4022 || TYPE_NOSIGN (type1) != TYPE_NOSIGN (type2)
4023 || TYPE_ENDIANITY_NOT_DEFAULT (type1) != TYPE_ENDIANITY_NOT_DEFAULT (type2)
4024 || TYPE_VARARGS (type1) != TYPE_VARARGS (type2)
4025 || TYPE_VECTOR (type1) != TYPE_VECTOR (type2)
4026 || TYPE_NOTTEXT (type1) != TYPE_NOTTEXT (type2)
4027 || TYPE_INSTANCE_FLAGS (type1) != TYPE_INSTANCE_FLAGS (type2)
4028 || type1->num_fields () != type2->num_fields ())
4029 return false;
4030
4031 if (!compare_maybe_null_strings (type1->name (), type2->name ()))
4032 return false;
4033 if (!compare_maybe_null_strings (type1->name (), type2->name ()))
4034 return false;
4035
4036 if (type1->code () == TYPE_CODE_RANGE)
4037 {
4038 if (*type1->bounds () != *type2->bounds ())
4039 return false;
4040 }
4041 else
4042 {
4043 int i;
4044
4045 for (i = 0; i < type1->num_fields (); ++i)
4046 {
4047 const struct field *field1 = &type1->field (i);
4048 const struct field *field2 = &type2->field (i);
4049
4050 if (FIELD_ARTIFICIAL (*field1) != FIELD_ARTIFICIAL (*field2)
4051 || FIELD_BITSIZE (*field1) != FIELD_BITSIZE (*field2)
4052 || FIELD_LOC_KIND (*field1) != FIELD_LOC_KIND (*field2))
4053 return false;
4054 if (!compare_maybe_null_strings (FIELD_NAME (*field1),
4055 FIELD_NAME (*field2)))
4056 return false;
4057 switch (FIELD_LOC_KIND (*field1))
4058 {
4059 case FIELD_LOC_KIND_BITPOS:
4060 if (FIELD_BITPOS (*field1) != FIELD_BITPOS (*field2))
4061 return false;
4062 break;
4063 case FIELD_LOC_KIND_ENUMVAL:
4064 if (FIELD_ENUMVAL (*field1) != FIELD_ENUMVAL (*field2))
4065 return false;
4066 break;
4067 case FIELD_LOC_KIND_PHYSADDR:
4068 if (FIELD_STATIC_PHYSADDR (*field1)
4069 != FIELD_STATIC_PHYSADDR (*field2))
4070 return false;
4071 break;
4072 case FIELD_LOC_KIND_PHYSNAME:
4073 if (!compare_maybe_null_strings (FIELD_STATIC_PHYSNAME (*field1),
4074 FIELD_STATIC_PHYSNAME (*field2)))
4075 return false;
4076 break;
4077 case FIELD_LOC_KIND_DWARF_BLOCK:
4078 {
4079 struct dwarf2_locexpr_baton *block1, *block2;
4080
4081 block1 = FIELD_DWARF_BLOCK (*field1);
4082 block2 = FIELD_DWARF_BLOCK (*field2);
4083 if (block1->per_cu != block2->per_cu
4084 || block1->size != block2->size
4085 || memcmp (block1->data, block2->data, block1->size) != 0)
4086 return false;
4087 }
4088 break;
4089 default:
4090 internal_error (__FILE__, __LINE__, _("Unsupported field kind "
4091 "%d by check_types_equal"),
4092 FIELD_LOC_KIND (*field1));
4093 }
4094
4095 worklist->emplace_back (field1->type (), field2->type ());
4096 }
4097 }
4098
4099 if (TYPE_TARGET_TYPE (type1) != NULL)
4100 {
4101 if (TYPE_TARGET_TYPE (type2) == NULL)
4102 return false;
4103
4104 worklist->emplace_back (TYPE_TARGET_TYPE (type1),
4105 TYPE_TARGET_TYPE (type2));
4106 }
4107 else if (TYPE_TARGET_TYPE (type2) != NULL)
4108 return false;
4109
4110 return true;
4111 }
4112
4113 /* Check types on a worklist for equality. Returns false if any pair
4114 is not equal, true if they are all considered equal. */
4115
4116 static bool
4117 check_types_worklist (std::vector<type_equality_entry> *worklist,
4118 gdb::bcache *cache)
4119 {
4120 while (!worklist->empty ())
4121 {
4122 int added;
4123
4124 struct type_equality_entry entry = std::move (worklist->back ());
4125 worklist->pop_back ();
4126
4127 /* If the type pair has already been visited, we know it is
4128 ok. */
4129 cache->insert (&entry, sizeof (entry), &added);
4130 if (!added)
4131 continue;
4132
4133 if (!check_types_equal (entry.type1, entry.type2, worklist))
4134 return false;
4135 }
4136
4137 return true;
4138 }
4139
4140 /* Return true if types TYPE1 and TYPE2 are equal, as determined by a
4141 "deep comparison". Otherwise return false. */
4142
4143 bool
4144 types_deeply_equal (struct type *type1, struct type *type2)
4145 {
4146 std::vector<type_equality_entry> worklist;
4147
4148 gdb_assert (type1 != NULL && type2 != NULL);
4149
4150 /* Early exit for the simple case. */
4151 if (type1 == type2)
4152 return true;
4153
4154 gdb::bcache cache (nullptr, nullptr);
4155 worklist.emplace_back (type1, type2);
4156 return check_types_worklist (&worklist, &cache);
4157 }
4158
4159 /* Allocated status of type TYPE. Return zero if type TYPE is allocated.
4160 Otherwise return one. */
4161
4162 int
4163 type_not_allocated (const struct type *type)
4164 {
4165 struct dynamic_prop *prop = TYPE_ALLOCATED_PROP (type);
4166
4167 return (prop && TYPE_DYN_PROP_KIND (prop) == PROP_CONST
4168 && !TYPE_DYN_PROP_ADDR (prop));
4169 }
4170
4171 /* Associated status of type TYPE. Return zero if type TYPE is associated.
4172 Otherwise return one. */
4173
4174 int
4175 type_not_associated (const struct type *type)
4176 {
4177 struct dynamic_prop *prop = TYPE_ASSOCIATED_PROP (type);
4178
4179 return (prop && TYPE_DYN_PROP_KIND (prop) == PROP_CONST
4180 && !TYPE_DYN_PROP_ADDR (prop));
4181 }
4182
4183 /* rank_one_type helper for when PARM's type code is TYPE_CODE_PTR. */
4184
4185 static struct rank
4186 rank_one_type_parm_ptr (struct type *parm, struct type *arg, struct value *value)
4187 {
4188 struct rank rank = {0,0};
4189
4190 switch (arg->code ())
4191 {
4192 case TYPE_CODE_PTR:
4193
4194 /* Allowed pointer conversions are:
4195 (a) pointer to void-pointer conversion. */
4196 if (TYPE_TARGET_TYPE (parm)->code () == TYPE_CODE_VOID)
4197 return VOID_PTR_CONVERSION_BADNESS;
4198
4199 /* (b) pointer to ancestor-pointer conversion. */
4200 rank.subrank = distance_to_ancestor (TYPE_TARGET_TYPE (parm),
4201 TYPE_TARGET_TYPE (arg),
4202 0);
4203 if (rank.subrank >= 0)
4204 return sum_ranks (BASE_PTR_CONVERSION_BADNESS, rank);
4205
4206 return INCOMPATIBLE_TYPE_BADNESS;
4207 case TYPE_CODE_ARRAY:
4208 {
4209 struct type *t1 = TYPE_TARGET_TYPE (parm);
4210 struct type *t2 = TYPE_TARGET_TYPE (arg);
4211
4212 if (types_equal (t1, t2))
4213 {
4214 /* Make sure they are CV equal. */
4215 if (TYPE_CONST (t1) != TYPE_CONST (t2))
4216 rank.subrank |= CV_CONVERSION_CONST;
4217 if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2))
4218 rank.subrank |= CV_CONVERSION_VOLATILE;
4219 if (rank.subrank != 0)
4220 return sum_ranks (CV_CONVERSION_BADNESS, rank);
4221 return EXACT_MATCH_BADNESS;
4222 }
4223 return INCOMPATIBLE_TYPE_BADNESS;
4224 }
4225 case TYPE_CODE_FUNC:
4226 return rank_one_type (TYPE_TARGET_TYPE (parm), arg, NULL);
4227 case TYPE_CODE_INT:
4228 if (value != NULL && value_type (value)->code () == TYPE_CODE_INT)
4229 {
4230 if (value_as_long (value) == 0)
4231 {
4232 /* Null pointer conversion: allow it to be cast to a pointer.
4233 [4.10.1 of C++ standard draft n3290] */
4234 return NULL_POINTER_CONVERSION_BADNESS;
4235 }
4236 else
4237 {
4238 /* If type checking is disabled, allow the conversion. */
4239 if (!strict_type_checking)
4240 return NS_INTEGER_POINTER_CONVERSION_BADNESS;
4241 }
4242 }
4243 /* fall through */
4244 case TYPE_CODE_ENUM:
4245 case TYPE_CODE_FLAGS:
4246 case TYPE_CODE_CHAR:
4247 case TYPE_CODE_RANGE:
4248 case TYPE_CODE_BOOL:
4249 default:
4250 return INCOMPATIBLE_TYPE_BADNESS;
4251 }
4252 }
4253
4254 /* rank_one_type helper for when PARM's type code is TYPE_CODE_ARRAY. */
4255
4256 static struct rank
4257 rank_one_type_parm_array (struct type *parm, struct type *arg, struct value *value)
4258 {
4259 switch (arg->code ())
4260 {
4261 case TYPE_CODE_PTR:
4262 case TYPE_CODE_ARRAY:
4263 return rank_one_type (TYPE_TARGET_TYPE (parm),
4264 TYPE_TARGET_TYPE (arg), NULL);
4265 default:
4266 return INCOMPATIBLE_TYPE_BADNESS;
4267 }
4268 }
4269
4270 /* rank_one_type helper for when PARM's type code is TYPE_CODE_FUNC. */
4271
4272 static struct rank
4273 rank_one_type_parm_func (struct type *parm, struct type *arg, struct value *value)
4274 {
4275 switch (arg->code ())
4276 {
4277 case TYPE_CODE_PTR: /* funcptr -> func */
4278 return rank_one_type (parm, TYPE_TARGET_TYPE (arg), NULL);
4279 default:
4280 return INCOMPATIBLE_TYPE_BADNESS;
4281 }
4282 }
4283
4284 /* rank_one_type helper for when PARM's type code is TYPE_CODE_INT. */
4285
4286 static struct rank
4287 rank_one_type_parm_int (struct type *parm, struct type *arg, struct value *value)
4288 {
4289 switch (arg->code ())
4290 {
4291 case TYPE_CODE_INT:
4292 if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
4293 {
4294 /* Deal with signed, unsigned, and plain chars and
4295 signed and unsigned ints. */
4296 if (TYPE_NOSIGN (parm))
4297 {
4298 /* This case only for character types. */
4299 if (TYPE_NOSIGN (arg))
4300 return EXACT_MATCH_BADNESS; /* plain char -> plain char */
4301 else /* signed/unsigned char -> plain char */
4302 return INTEGER_CONVERSION_BADNESS;
4303 }
4304 else if (TYPE_UNSIGNED (parm))
4305 {
4306 if (TYPE_UNSIGNED (arg))
4307 {
4308 /* unsigned int -> unsigned int, or
4309 unsigned long -> unsigned long */
4310 if (integer_types_same_name_p (parm->name (),
4311 arg->name ()))
4312 return EXACT_MATCH_BADNESS;
4313 else if (integer_types_same_name_p (arg->name (),
4314 "int")
4315 && integer_types_same_name_p (parm->name (),
4316 "long"))
4317 /* unsigned int -> unsigned long */
4318 return INTEGER_PROMOTION_BADNESS;
4319 else
4320 /* unsigned long -> unsigned int */
4321 return INTEGER_CONVERSION_BADNESS;
4322 }
4323 else
4324 {
4325 if (integer_types_same_name_p (arg->name (),
4326 "long")
4327 && integer_types_same_name_p (parm->name (),
4328 "int"))
4329 /* signed long -> unsigned int */
4330 return INTEGER_CONVERSION_BADNESS;
4331 else
4332 /* signed int/long -> unsigned int/long */
4333 return INTEGER_CONVERSION_BADNESS;
4334 }
4335 }
4336 else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
4337 {
4338 if (integer_types_same_name_p (parm->name (),
4339 arg->name ()))
4340 return EXACT_MATCH_BADNESS;
4341 else if (integer_types_same_name_p (arg->name (),
4342 "int")
4343 && integer_types_same_name_p (parm->name (),
4344 "long"))
4345 return INTEGER_PROMOTION_BADNESS;
4346 else
4347 return INTEGER_CONVERSION_BADNESS;
4348 }
4349 else
4350 return INTEGER_CONVERSION_BADNESS;
4351 }
4352 else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
4353 return INTEGER_PROMOTION_BADNESS;
4354 else
4355 return INTEGER_CONVERSION_BADNESS;
4356 case TYPE_CODE_ENUM:
4357 case TYPE_CODE_FLAGS:
4358 case TYPE_CODE_CHAR:
4359 case TYPE_CODE_RANGE:
4360 case TYPE_CODE_BOOL:
4361 if (TYPE_DECLARED_CLASS (arg))
4362 return INCOMPATIBLE_TYPE_BADNESS;
4363 return INTEGER_PROMOTION_BADNESS;
4364 case TYPE_CODE_FLT:
4365 return INT_FLOAT_CONVERSION_BADNESS;
4366 case TYPE_CODE_PTR:
4367 return NS_POINTER_CONVERSION_BADNESS;
4368 default:
4369 return INCOMPATIBLE_TYPE_BADNESS;
4370 }
4371 }
4372
4373 /* rank_one_type helper for when PARM's type code is TYPE_CODE_ENUM. */
4374
4375 static struct rank
4376 rank_one_type_parm_enum (struct type *parm, struct type *arg, struct value *value)
4377 {
4378 switch (arg->code ())
4379 {
4380 case TYPE_CODE_INT:
4381 case TYPE_CODE_CHAR:
4382 case TYPE_CODE_RANGE:
4383 case TYPE_CODE_BOOL:
4384 case TYPE_CODE_ENUM:
4385 if (TYPE_DECLARED_CLASS (parm) || TYPE_DECLARED_CLASS (arg))
4386 return INCOMPATIBLE_TYPE_BADNESS;
4387 return INTEGER_CONVERSION_BADNESS;
4388 case TYPE_CODE_FLT:
4389 return INT_FLOAT_CONVERSION_BADNESS;
4390 default:
4391 return INCOMPATIBLE_TYPE_BADNESS;
4392 }
4393 }
4394
4395 /* rank_one_type helper for when PARM's type code is TYPE_CODE_CHAR. */
4396
4397 static struct rank
4398 rank_one_type_parm_char (struct type *parm, struct type *arg, struct value *value)
4399 {
4400 switch (arg->code ())
4401 {
4402 case TYPE_CODE_RANGE:
4403 case TYPE_CODE_BOOL:
4404 case TYPE_CODE_ENUM:
4405 if (TYPE_DECLARED_CLASS (arg))
4406 return INCOMPATIBLE_TYPE_BADNESS;
4407 return INTEGER_CONVERSION_BADNESS;
4408 case TYPE_CODE_FLT:
4409 return INT_FLOAT_CONVERSION_BADNESS;
4410 case TYPE_CODE_INT:
4411 if (TYPE_LENGTH (arg) > TYPE_LENGTH (parm))
4412 return INTEGER_CONVERSION_BADNESS;
4413 else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
4414 return INTEGER_PROMOTION_BADNESS;
4415 /* fall through */
4416 case TYPE_CODE_CHAR:
4417 /* Deal with signed, unsigned, and plain chars for C++ and
4418 with int cases falling through from previous case. */
4419 if (TYPE_NOSIGN (parm))
4420 {
4421 if (TYPE_NOSIGN (arg))
4422 return EXACT_MATCH_BADNESS;
4423 else
4424 return INTEGER_CONVERSION_BADNESS;
4425 }
4426 else if (TYPE_UNSIGNED (parm))
4427 {
4428 if (TYPE_UNSIGNED (arg))
4429 return EXACT_MATCH_BADNESS;
4430 else
4431 return INTEGER_PROMOTION_BADNESS;
4432 }
4433 else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
4434 return EXACT_MATCH_BADNESS;
4435 else
4436 return INTEGER_CONVERSION_BADNESS;
4437 default:
4438 return INCOMPATIBLE_TYPE_BADNESS;
4439 }
4440 }
4441
4442 /* rank_one_type helper for when PARM's type code is TYPE_CODE_RANGE. */
4443
4444 static struct rank
4445 rank_one_type_parm_range (struct type *parm, struct type *arg, struct value *value)
4446 {
4447 switch (arg->code ())
4448 {
4449 case TYPE_CODE_INT:
4450 case TYPE_CODE_CHAR:
4451 case TYPE_CODE_RANGE:
4452 case TYPE_CODE_BOOL:
4453 case TYPE_CODE_ENUM:
4454 return INTEGER_CONVERSION_BADNESS;
4455 case TYPE_CODE_FLT:
4456 return INT_FLOAT_CONVERSION_BADNESS;
4457 default:
4458 return INCOMPATIBLE_TYPE_BADNESS;
4459 }
4460 }
4461
4462 /* rank_one_type helper for when PARM's type code is TYPE_CODE_BOOL. */
4463
4464 static struct rank
4465 rank_one_type_parm_bool (struct type *parm, struct type *arg, struct value *value)
4466 {
4467 switch (arg->code ())
4468 {
4469 /* n3290 draft, section 4.12.1 (conv.bool):
4470
4471 "A prvalue of arithmetic, unscoped enumeration, pointer, or
4472 pointer to member type can be converted to a prvalue of type
4473 bool. A zero value, null pointer value, or null member pointer
4474 value is converted to false; any other value is converted to
4475 true. A prvalue of type std::nullptr_t can be converted to a
4476 prvalue of type bool; the resulting value is false." */
4477 case TYPE_CODE_INT:
4478 case TYPE_CODE_CHAR:
4479 case TYPE_CODE_ENUM:
4480 case TYPE_CODE_FLT:
4481 case TYPE_CODE_MEMBERPTR:
4482 case TYPE_CODE_PTR:
4483 return BOOL_CONVERSION_BADNESS;
4484 case TYPE_CODE_RANGE:
4485 return INCOMPATIBLE_TYPE_BADNESS;
4486 case TYPE_CODE_BOOL:
4487 return EXACT_MATCH_BADNESS;
4488 default:
4489 return INCOMPATIBLE_TYPE_BADNESS;
4490 }
4491 }
4492
4493 /* rank_one_type helper for when PARM's type code is TYPE_CODE_FLOAT. */
4494
4495 static struct rank
4496 rank_one_type_parm_float (struct type *parm, struct type *arg, struct value *value)
4497 {
4498 switch (arg->code ())
4499 {
4500 case TYPE_CODE_FLT:
4501 if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
4502 return FLOAT_PROMOTION_BADNESS;
4503 else if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
4504 return EXACT_MATCH_BADNESS;
4505 else
4506 return FLOAT_CONVERSION_BADNESS;
4507 case TYPE_CODE_INT:
4508 case TYPE_CODE_BOOL:
4509 case TYPE_CODE_ENUM:
4510 case TYPE_CODE_RANGE:
4511 case TYPE_CODE_CHAR:
4512 return INT_FLOAT_CONVERSION_BADNESS;
4513 default:
4514 return INCOMPATIBLE_TYPE_BADNESS;
4515 }
4516 }
4517
4518 /* rank_one_type helper for when PARM's type code is TYPE_CODE_COMPLEX. */
4519
4520 static struct rank
4521 rank_one_type_parm_complex (struct type *parm, struct type *arg, struct value *value)
4522 {
4523 switch (arg->code ())
4524 { /* Strictly not needed for C++, but... */
4525 case TYPE_CODE_FLT:
4526 return FLOAT_PROMOTION_BADNESS;
4527 case TYPE_CODE_COMPLEX:
4528 return EXACT_MATCH_BADNESS;
4529 default:
4530 return INCOMPATIBLE_TYPE_BADNESS;
4531 }
4532 }
4533
4534 /* rank_one_type helper for when PARM's type code is TYPE_CODE_STRUCT. */
4535
4536 static struct rank
4537 rank_one_type_parm_struct (struct type *parm, struct type *arg, struct value *value)
4538 {
4539 struct rank rank = {0, 0};
4540
4541 switch (arg->code ())
4542 {
4543 case TYPE_CODE_STRUCT:
4544 /* Check for derivation */
4545 rank.subrank = distance_to_ancestor (parm, arg, 0);
4546 if (rank.subrank >= 0)
4547 return sum_ranks (BASE_CONVERSION_BADNESS, rank);
4548 /* fall through */
4549 default:
4550 return INCOMPATIBLE_TYPE_BADNESS;
4551 }
4552 }
4553
4554 /* rank_one_type helper for when PARM's type code is TYPE_CODE_SET. */
4555
4556 static struct rank
4557 rank_one_type_parm_set (struct type *parm, struct type *arg, struct value *value)
4558 {
4559 switch (arg->code ())
4560 {
4561 /* Not in C++ */
4562 case TYPE_CODE_SET:
4563 return rank_one_type (parm->field (0).type (),
4564 arg->field (0).type (), NULL);
4565 default:
4566 return INCOMPATIBLE_TYPE_BADNESS;
4567 }
4568 }
4569
4570 /* Compare one type (PARM) for compatibility with another (ARG).
4571 * PARM is intended to be the parameter type of a function; and
4572 * ARG is the supplied argument's type. This function tests if
4573 * the latter can be converted to the former.
4574 * VALUE is the argument's value or NULL if none (or called recursively)
4575 *
4576 * Return 0 if they are identical types;
4577 * Otherwise, return an integer which corresponds to how compatible
4578 * PARM is to ARG. The higher the return value, the worse the match.
4579 * Generally the "bad" conversions are all uniformly assigned a 100. */
4580
4581 struct rank
4582 rank_one_type (struct type *parm, struct type *arg, struct value *value)
4583 {
4584 struct rank rank = {0,0};
4585
4586 /* Resolve typedefs */
4587 if (parm->code () == TYPE_CODE_TYPEDEF)
4588 parm = check_typedef (parm);
4589 if (arg->code () == TYPE_CODE_TYPEDEF)
4590 arg = check_typedef (arg);
4591
4592 if (TYPE_IS_REFERENCE (parm) && value != NULL)
4593 {
4594 if (VALUE_LVAL (value) == not_lval)
4595 {
4596 /* Rvalues should preferably bind to rvalue references or const
4597 lvalue references. */
4598 if (parm->code () == TYPE_CODE_RVALUE_REF)
4599 rank.subrank = REFERENCE_CONVERSION_RVALUE;
4600 else if (TYPE_CONST (TYPE_TARGET_TYPE (parm)))
4601 rank.subrank = REFERENCE_CONVERSION_CONST_LVALUE;
4602 else
4603 return INCOMPATIBLE_TYPE_BADNESS;
4604 return sum_ranks (rank, REFERENCE_CONVERSION_BADNESS);
4605 }
4606 else
4607 {
4608 /* It's illegal to pass an lvalue as an rvalue. */
4609 if (parm->code () == TYPE_CODE_RVALUE_REF)
4610 return INCOMPATIBLE_TYPE_BADNESS;
4611 }
4612 }
4613
4614 if (types_equal (parm, arg))
4615 {
4616 struct type *t1 = parm;
4617 struct type *t2 = arg;
4618
4619 /* For pointers and references, compare target type. */
4620 if (parm->code () == TYPE_CODE_PTR || TYPE_IS_REFERENCE (parm))
4621 {
4622 t1 = TYPE_TARGET_TYPE (parm);
4623 t2 = TYPE_TARGET_TYPE (arg);
4624 }
4625
4626 /* Make sure they are CV equal, too. */
4627 if (TYPE_CONST (t1) != TYPE_CONST (t2))
4628 rank.subrank |= CV_CONVERSION_CONST;
4629 if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2))
4630 rank.subrank |= CV_CONVERSION_VOLATILE;
4631 if (rank.subrank != 0)
4632 return sum_ranks (CV_CONVERSION_BADNESS, rank);
4633 return EXACT_MATCH_BADNESS;
4634 }
4635
4636 /* See through references, since we can almost make non-references
4637 references. */
4638
4639 if (TYPE_IS_REFERENCE (arg))
4640 return (sum_ranks (rank_one_type (parm, TYPE_TARGET_TYPE (arg), NULL),
4641 REFERENCE_SEE_THROUGH_BADNESS));
4642 if (TYPE_IS_REFERENCE (parm))
4643 return (sum_ranks (rank_one_type (TYPE_TARGET_TYPE (parm), arg, NULL),
4644 REFERENCE_SEE_THROUGH_BADNESS));
4645 if (overload_debug)
4646 /* Debugging only. */
4647 fprintf_filtered (gdb_stderr,
4648 "------ Arg is %s [%d], parm is %s [%d]\n",
4649 arg->name (), arg->code (),
4650 parm->name (), parm->code ());
4651
4652 /* x -> y means arg of type x being supplied for parameter of type y. */
4653
4654 switch (parm->code ())
4655 {
4656 case TYPE_CODE_PTR:
4657 return rank_one_type_parm_ptr (parm, arg, value);
4658 case TYPE_CODE_ARRAY:
4659 return rank_one_type_parm_array (parm, arg, value);
4660 case TYPE_CODE_FUNC:
4661 return rank_one_type_parm_func (parm, arg, value);
4662 case TYPE_CODE_INT:
4663 return rank_one_type_parm_int (parm, arg, value);
4664 case TYPE_CODE_ENUM:
4665 return rank_one_type_parm_enum (parm, arg, value);
4666 case TYPE_CODE_CHAR:
4667 return rank_one_type_parm_char (parm, arg, value);
4668 case TYPE_CODE_RANGE:
4669 return rank_one_type_parm_range (parm, arg, value);
4670 case TYPE_CODE_BOOL:
4671 return rank_one_type_parm_bool (parm, arg, value);
4672 case TYPE_CODE_FLT:
4673 return rank_one_type_parm_float (parm, arg, value);
4674 case TYPE_CODE_COMPLEX:
4675 return rank_one_type_parm_complex (parm, arg, value);
4676 case TYPE_CODE_STRUCT:
4677 return rank_one_type_parm_struct (parm, arg, value);
4678 case TYPE_CODE_SET:
4679 return rank_one_type_parm_set (parm, arg, value);
4680 default:
4681 return INCOMPATIBLE_TYPE_BADNESS;
4682 } /* switch (arg->code ()) */
4683 }
4684
4685 /* End of functions for overload resolution. */
4686 \f
4687 /* Routines to pretty-print types. */
4688
4689 static void
4690 print_bit_vector (B_TYPE *bits, int nbits)
4691 {
4692 int bitno;
4693
4694 for (bitno = 0; bitno < nbits; bitno++)
4695 {
4696 if ((bitno % 8) == 0)
4697 {
4698 puts_filtered (" ");
4699 }
4700 if (B_TST (bits, bitno))
4701 printf_filtered (("1"));
4702 else
4703 printf_filtered (("0"));
4704 }
4705 }
4706
4707 /* Note the first arg should be the "this" pointer, we may not want to
4708 include it since we may get into a infinitely recursive
4709 situation. */
4710
4711 static void
4712 print_args (struct field *args, int nargs, int spaces)
4713 {
4714 if (args != NULL)
4715 {
4716 int i;
4717
4718 for (i = 0; i < nargs; i++)
4719 {
4720 printfi_filtered (spaces, "[%d] name '%s'\n", i,
4721 args[i].name != NULL ? args[i].name : "<NULL>");
4722 recursive_dump_type (args[i].type (), spaces + 2);
4723 }
4724 }
4725 }
4726
4727 int
4728 field_is_static (struct field *f)
4729 {
4730 /* "static" fields are the fields whose location is not relative
4731 to the address of the enclosing struct. It would be nice to
4732 have a dedicated flag that would be set for static fields when
4733 the type is being created. But in practice, checking the field
4734 loc_kind should give us an accurate answer. */
4735 return (FIELD_LOC_KIND (*f) == FIELD_LOC_KIND_PHYSNAME
4736 || FIELD_LOC_KIND (*f) == FIELD_LOC_KIND_PHYSADDR);
4737 }
4738
4739 static void
4740 dump_fn_fieldlists (struct type *type, int spaces)
4741 {
4742 int method_idx;
4743 int overload_idx;
4744 struct fn_field *f;
4745
4746 printfi_filtered (spaces, "fn_fieldlists ");
4747 gdb_print_host_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
4748 printf_filtered ("\n");
4749 for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
4750 {
4751 f = TYPE_FN_FIELDLIST1 (type, method_idx);
4752 printfi_filtered (spaces + 2, "[%d] name '%s' (",
4753 method_idx,
4754 TYPE_FN_FIELDLIST_NAME (type, method_idx));
4755 gdb_print_host_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
4756 gdb_stdout);
4757 printf_filtered (_(") length %d\n"),
4758 TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
4759 for (overload_idx = 0;
4760 overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
4761 overload_idx++)
4762 {
4763 printfi_filtered (spaces + 4, "[%d] physname '%s' (",
4764 overload_idx,
4765 TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
4766 gdb_print_host_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
4767 gdb_stdout);
4768 printf_filtered (")\n");
4769 printfi_filtered (spaces + 8, "type ");
4770 gdb_print_host_address (TYPE_FN_FIELD_TYPE (f, overload_idx),
4771 gdb_stdout);
4772 printf_filtered ("\n");
4773
4774 recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
4775 spaces + 8 + 2);
4776
4777 printfi_filtered (spaces + 8, "args ");
4778 gdb_print_host_address (TYPE_FN_FIELD_ARGS (f, overload_idx),
4779 gdb_stdout);
4780 printf_filtered ("\n");
4781 print_args (TYPE_FN_FIELD_ARGS (f, overload_idx),
4782 TYPE_FN_FIELD_TYPE (f, overload_idx)->num_fields (),
4783 spaces + 8 + 2);
4784 printfi_filtered (spaces + 8, "fcontext ");
4785 gdb_print_host_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
4786 gdb_stdout);
4787 printf_filtered ("\n");
4788
4789 printfi_filtered (spaces + 8, "is_const %d\n",
4790 TYPE_FN_FIELD_CONST (f, overload_idx));
4791 printfi_filtered (spaces + 8, "is_volatile %d\n",
4792 TYPE_FN_FIELD_VOLATILE (f, overload_idx));
4793 printfi_filtered (spaces + 8, "is_private %d\n",
4794 TYPE_FN_FIELD_PRIVATE (f, overload_idx));
4795 printfi_filtered (spaces + 8, "is_protected %d\n",
4796 TYPE_FN_FIELD_PROTECTED (f, overload_idx));
4797 printfi_filtered (spaces + 8, "is_stub %d\n",
4798 TYPE_FN_FIELD_STUB (f, overload_idx));
4799 printfi_filtered (spaces + 8, "defaulted %d\n",
4800 TYPE_FN_FIELD_DEFAULTED (f, overload_idx));
4801 printfi_filtered (spaces + 8, "is_deleted %d\n",
4802 TYPE_FN_FIELD_DELETED (f, overload_idx));
4803 printfi_filtered (spaces + 8, "voffset %u\n",
4804 TYPE_FN_FIELD_VOFFSET (f, overload_idx));
4805 }
4806 }
4807 }
4808
4809 static void
4810 print_cplus_stuff (struct type *type, int spaces)
4811 {
4812 printfi_filtered (spaces, "vptr_fieldno %d\n", TYPE_VPTR_FIELDNO (type));
4813 printfi_filtered (spaces, "vptr_basetype ");
4814 gdb_print_host_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
4815 puts_filtered ("\n");
4816 if (TYPE_VPTR_BASETYPE (type) != NULL)
4817 recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
4818
4819 printfi_filtered (spaces, "n_baseclasses %d\n",
4820 TYPE_N_BASECLASSES (type));
4821 printfi_filtered (spaces, "nfn_fields %d\n",
4822 TYPE_NFN_FIELDS (type));
4823 if (TYPE_N_BASECLASSES (type) > 0)
4824 {
4825 printfi_filtered (spaces, "virtual_field_bits (%d bits at *",
4826 TYPE_N_BASECLASSES (type));
4827 gdb_print_host_address (TYPE_FIELD_VIRTUAL_BITS (type),
4828 gdb_stdout);
4829 printf_filtered (")");
4830
4831 print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
4832 TYPE_N_BASECLASSES (type));
4833 puts_filtered ("\n");
4834 }
4835 if (type->num_fields () > 0)
4836 {
4837 if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
4838 {
4839 printfi_filtered (spaces,
4840 "private_field_bits (%d bits at *",
4841 type->num_fields ());
4842 gdb_print_host_address (TYPE_FIELD_PRIVATE_BITS (type),
4843 gdb_stdout);
4844 printf_filtered (")");
4845 print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
4846 type->num_fields ());
4847 puts_filtered ("\n");
4848 }
4849 if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
4850 {
4851 printfi_filtered (spaces,
4852 "protected_field_bits (%d bits at *",
4853 type->num_fields ());
4854 gdb_print_host_address (TYPE_FIELD_PROTECTED_BITS (type),
4855 gdb_stdout);
4856 printf_filtered (")");
4857 print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
4858 type->num_fields ());
4859 puts_filtered ("\n");
4860 }
4861 }
4862 if (TYPE_NFN_FIELDS (type) > 0)
4863 {
4864 dump_fn_fieldlists (type, spaces);
4865 }
4866
4867 printfi_filtered (spaces, "calling_convention %d\n",
4868 TYPE_CPLUS_CALLING_CONVENTION (type));
4869 }
4870
4871 /* Print the contents of the TYPE's type_specific union, assuming that
4872 its type-specific kind is TYPE_SPECIFIC_GNAT_STUFF. */
4873
4874 static void
4875 print_gnat_stuff (struct type *type, int spaces)
4876 {
4877 struct type *descriptive_type = TYPE_DESCRIPTIVE_TYPE (type);
4878
4879 if (descriptive_type == NULL)
4880 printfi_filtered (spaces + 2, "no descriptive type\n");
4881 else
4882 {
4883 printfi_filtered (spaces + 2, "descriptive type\n");
4884 recursive_dump_type (descriptive_type, spaces + 4);
4885 }
4886 }
4887
4888 static struct obstack dont_print_type_obstack;
4889
4890 void
4891 recursive_dump_type (struct type *type, int spaces)
4892 {
4893 int idx;
4894
4895 if (spaces == 0)
4896 obstack_begin (&dont_print_type_obstack, 0);
4897
4898 if (type->num_fields () > 0
4899 || (HAVE_CPLUS_STRUCT (type) && TYPE_NFN_FIELDS (type) > 0))
4900 {
4901 struct type **first_dont_print
4902 = (struct type **) obstack_base (&dont_print_type_obstack);
4903
4904 int i = (struct type **)
4905 obstack_next_free (&dont_print_type_obstack) - first_dont_print;
4906
4907 while (--i >= 0)
4908 {
4909 if (type == first_dont_print[i])
4910 {
4911 printfi_filtered (spaces, "type node ");
4912 gdb_print_host_address (type, gdb_stdout);
4913 printf_filtered (_(" <same as already seen type>\n"));
4914 return;
4915 }
4916 }
4917
4918 obstack_ptr_grow (&dont_print_type_obstack, type);
4919 }
4920
4921 printfi_filtered (spaces, "type node ");
4922 gdb_print_host_address (type, gdb_stdout);
4923 printf_filtered ("\n");
4924 printfi_filtered (spaces, "name '%s' (",
4925 type->name () ? type->name () : "<NULL>");
4926 gdb_print_host_address (type->name (), gdb_stdout);
4927 printf_filtered (")\n");
4928 printfi_filtered (spaces, "code 0x%x ", type->code ());
4929 switch (type->code ())
4930 {
4931 case TYPE_CODE_UNDEF:
4932 printf_filtered ("(TYPE_CODE_UNDEF)");
4933 break;
4934 case TYPE_CODE_PTR:
4935 printf_filtered ("(TYPE_CODE_PTR)");
4936 break;
4937 case TYPE_CODE_ARRAY:
4938 printf_filtered ("(TYPE_CODE_ARRAY)");
4939 break;
4940 case TYPE_CODE_STRUCT:
4941 printf_filtered ("(TYPE_CODE_STRUCT)");
4942 break;
4943 case TYPE_CODE_UNION:
4944 printf_filtered ("(TYPE_CODE_UNION)");
4945 break;
4946 case TYPE_CODE_ENUM:
4947 printf_filtered ("(TYPE_CODE_ENUM)");
4948 break;
4949 case TYPE_CODE_FLAGS:
4950 printf_filtered ("(TYPE_CODE_FLAGS)");
4951 break;
4952 case TYPE_CODE_FUNC:
4953 printf_filtered ("(TYPE_CODE_FUNC)");
4954 break;
4955 case TYPE_CODE_INT:
4956 printf_filtered ("(TYPE_CODE_INT)");
4957 break;
4958 case TYPE_CODE_FLT:
4959 printf_filtered ("(TYPE_CODE_FLT)");
4960 break;
4961 case TYPE_CODE_VOID:
4962 printf_filtered ("(TYPE_CODE_VOID)");
4963 break;
4964 case TYPE_CODE_SET:
4965 printf_filtered ("(TYPE_CODE_SET)");
4966 break;
4967 case TYPE_CODE_RANGE:
4968 printf_filtered ("(TYPE_CODE_RANGE)");
4969 break;
4970 case TYPE_CODE_STRING:
4971 printf_filtered ("(TYPE_CODE_STRING)");
4972 break;
4973 case TYPE_CODE_ERROR:
4974 printf_filtered ("(TYPE_CODE_ERROR)");
4975 break;
4976 case TYPE_CODE_MEMBERPTR:
4977 printf_filtered ("(TYPE_CODE_MEMBERPTR)");
4978 break;
4979 case TYPE_CODE_METHODPTR:
4980 printf_filtered ("(TYPE_CODE_METHODPTR)");
4981 break;
4982 case TYPE_CODE_METHOD:
4983 printf_filtered ("(TYPE_CODE_METHOD)");
4984 break;
4985 case TYPE_CODE_REF:
4986 printf_filtered ("(TYPE_CODE_REF)");
4987 break;
4988 case TYPE_CODE_CHAR:
4989 printf_filtered ("(TYPE_CODE_CHAR)");
4990 break;
4991 case TYPE_CODE_BOOL:
4992 printf_filtered ("(TYPE_CODE_BOOL)");
4993 break;
4994 case TYPE_CODE_COMPLEX:
4995 printf_filtered ("(TYPE_CODE_COMPLEX)");
4996 break;
4997 case TYPE_CODE_TYPEDEF:
4998 printf_filtered ("(TYPE_CODE_TYPEDEF)");
4999 break;
5000 case TYPE_CODE_NAMESPACE:
5001 printf_filtered ("(TYPE_CODE_NAMESPACE)");
5002 break;
5003 default:
5004 printf_filtered ("(UNKNOWN TYPE CODE)");
5005 break;
5006 }
5007 puts_filtered ("\n");
5008 printfi_filtered (spaces, "length %s\n", pulongest (TYPE_LENGTH (type)));
5009 if (TYPE_OBJFILE_OWNED (type))
5010 {
5011 printfi_filtered (spaces, "objfile ");
5012 gdb_print_host_address (TYPE_OWNER (type).objfile, gdb_stdout);
5013 }
5014 else
5015 {
5016 printfi_filtered (spaces, "gdbarch ");
5017 gdb_print_host_address (TYPE_OWNER (type).gdbarch, gdb_stdout);
5018 }
5019 printf_filtered ("\n");
5020 printfi_filtered (spaces, "target_type ");
5021 gdb_print_host_address (TYPE_TARGET_TYPE (type), gdb_stdout);
5022 printf_filtered ("\n");
5023 if (TYPE_TARGET_TYPE (type) != NULL)
5024 {
5025 recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
5026 }
5027 printfi_filtered (spaces, "pointer_type ");
5028 gdb_print_host_address (TYPE_POINTER_TYPE (type), gdb_stdout);
5029 printf_filtered ("\n");
5030 printfi_filtered (spaces, "reference_type ");
5031 gdb_print_host_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
5032 printf_filtered ("\n");
5033 printfi_filtered (spaces, "type_chain ");
5034 gdb_print_host_address (TYPE_CHAIN (type), gdb_stdout);
5035 printf_filtered ("\n");
5036 printfi_filtered (spaces, "instance_flags 0x%x",
5037 TYPE_INSTANCE_FLAGS (type));
5038 if (TYPE_CONST (type))
5039 {
5040 puts_filtered (" TYPE_CONST");
5041 }
5042 if (TYPE_VOLATILE (type))
5043 {
5044 puts_filtered (" TYPE_VOLATILE");
5045 }
5046 if (TYPE_CODE_SPACE (type))
5047 {
5048 puts_filtered (" TYPE_CODE_SPACE");
5049 }
5050 if (TYPE_DATA_SPACE (type))
5051 {
5052 puts_filtered (" TYPE_DATA_SPACE");
5053 }
5054 if (TYPE_ADDRESS_CLASS_1 (type))
5055 {
5056 puts_filtered (" TYPE_ADDRESS_CLASS_1");
5057 }
5058 if (TYPE_ADDRESS_CLASS_2 (type))
5059 {
5060 puts_filtered (" TYPE_ADDRESS_CLASS_2");
5061 }
5062 if (TYPE_RESTRICT (type))
5063 {
5064 puts_filtered (" TYPE_RESTRICT");
5065 }
5066 if (TYPE_ATOMIC (type))
5067 {
5068 puts_filtered (" TYPE_ATOMIC");
5069 }
5070 puts_filtered ("\n");
5071
5072 printfi_filtered (spaces, "flags");
5073 if (TYPE_UNSIGNED (type))
5074 {
5075 puts_filtered (" TYPE_UNSIGNED");
5076 }
5077 if (TYPE_NOSIGN (type))
5078 {
5079 puts_filtered (" TYPE_NOSIGN");
5080 }
5081 if (TYPE_ENDIANITY_NOT_DEFAULT (type))
5082 {
5083 puts_filtered (" TYPE_ENDIANITY_NOT_DEFAULT");
5084 }
5085 if (TYPE_STUB (type))
5086 {
5087 puts_filtered (" TYPE_STUB");
5088 }
5089 if (TYPE_TARGET_STUB (type))
5090 {
5091 puts_filtered (" TYPE_TARGET_STUB");
5092 }
5093 if (TYPE_PROTOTYPED (type))
5094 {
5095 puts_filtered (" TYPE_PROTOTYPED");
5096 }
5097 if (TYPE_VARARGS (type))
5098 {
5099 puts_filtered (" TYPE_VARARGS");
5100 }
5101 /* This is used for things like AltiVec registers on ppc. Gcc emits
5102 an attribute for the array type, which tells whether or not we
5103 have a vector, instead of a regular array. */
5104 if (TYPE_VECTOR (type))
5105 {
5106 puts_filtered (" TYPE_VECTOR");
5107 }
5108 if (TYPE_FIXED_INSTANCE (type))
5109 {
5110 puts_filtered (" TYPE_FIXED_INSTANCE");
5111 }
5112 if (TYPE_STUB_SUPPORTED (type))
5113 {
5114 puts_filtered (" TYPE_STUB_SUPPORTED");
5115 }
5116 if (TYPE_NOTTEXT (type))
5117 {
5118 puts_filtered (" TYPE_NOTTEXT");
5119 }
5120 puts_filtered ("\n");
5121 printfi_filtered (spaces, "nfields %d ", type->num_fields ());
5122 gdb_print_host_address (type->fields (), gdb_stdout);
5123 puts_filtered ("\n");
5124 for (idx = 0; idx < type->num_fields (); idx++)
5125 {
5126 if (type->code () == TYPE_CODE_ENUM)
5127 printfi_filtered (spaces + 2,
5128 "[%d] enumval %s type ",
5129 idx, plongest (TYPE_FIELD_ENUMVAL (type, idx)));
5130 else
5131 printfi_filtered (spaces + 2,
5132 "[%d] bitpos %s bitsize %d type ",
5133 idx, plongest (TYPE_FIELD_BITPOS (type, idx)),
5134 TYPE_FIELD_BITSIZE (type, idx));
5135 gdb_print_host_address (type->field (idx).type (), gdb_stdout);
5136 printf_filtered (" name '%s' (",
5137 TYPE_FIELD_NAME (type, idx) != NULL
5138 ? TYPE_FIELD_NAME (type, idx)
5139 : "<NULL>");
5140 gdb_print_host_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
5141 printf_filtered (")\n");
5142 if (type->field (idx).type () != NULL)
5143 {
5144 recursive_dump_type (type->field (idx).type (), spaces + 4);
5145 }
5146 }
5147 if (type->code () == TYPE_CODE_RANGE)
5148 {
5149 printfi_filtered (spaces, "low %s%s high %s%s\n",
5150 plongest (TYPE_LOW_BOUND (type)),
5151 TYPE_LOW_BOUND_UNDEFINED (type) ? " (undefined)" : "",
5152 plongest (TYPE_HIGH_BOUND (type)),
5153 TYPE_HIGH_BOUND_UNDEFINED (type)
5154 ? " (undefined)" : "");
5155 }
5156
5157 switch (TYPE_SPECIFIC_FIELD (type))
5158 {
5159 case TYPE_SPECIFIC_CPLUS_STUFF:
5160 printfi_filtered (spaces, "cplus_stuff ");
5161 gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type),
5162 gdb_stdout);
5163 puts_filtered ("\n");
5164 print_cplus_stuff (type, spaces);
5165 break;
5166
5167 case TYPE_SPECIFIC_GNAT_STUFF:
5168 printfi_filtered (spaces, "gnat_stuff ");
5169 gdb_print_host_address (TYPE_GNAT_SPECIFIC (type), gdb_stdout);
5170 puts_filtered ("\n");
5171 print_gnat_stuff (type, spaces);
5172 break;
5173
5174 case TYPE_SPECIFIC_FLOATFORMAT:
5175 printfi_filtered (spaces, "floatformat ");
5176 if (TYPE_FLOATFORMAT (type) == NULL
5177 || TYPE_FLOATFORMAT (type)->name == NULL)
5178 puts_filtered ("(null)");
5179 else
5180 puts_filtered (TYPE_FLOATFORMAT (type)->name);
5181 puts_filtered ("\n");
5182 break;
5183
5184 case TYPE_SPECIFIC_FUNC:
5185 printfi_filtered (spaces, "calling_convention %d\n",
5186 TYPE_CALLING_CONVENTION (type));
5187 /* tail_call_list is not printed. */
5188 break;
5189
5190 case TYPE_SPECIFIC_SELF_TYPE:
5191 printfi_filtered (spaces, "self_type ");
5192 gdb_print_host_address (TYPE_SELF_TYPE (type), gdb_stdout);
5193 puts_filtered ("\n");
5194 break;
5195 }
5196
5197 if (spaces == 0)
5198 obstack_free (&dont_print_type_obstack, NULL);
5199 }
5200 \f
5201 /* Trivial helpers for the libiberty hash table, for mapping one
5202 type to another. */
5203
5204 struct type_pair : public allocate_on_obstack
5205 {
5206 type_pair (struct type *old_, struct type *newobj_)
5207 : old (old_), newobj (newobj_)
5208 {}
5209
5210 struct type * const old, * const newobj;
5211 };
5212
5213 static hashval_t
5214 type_pair_hash (const void *item)
5215 {
5216 const struct type_pair *pair = (const struct type_pair *) item;
5217
5218 return htab_hash_pointer (pair->old);
5219 }
5220
5221 static int
5222 type_pair_eq (const void *item_lhs, const void *item_rhs)
5223 {
5224 const struct type_pair *lhs = (const struct type_pair *) item_lhs;
5225 const struct type_pair *rhs = (const struct type_pair *) item_rhs;
5226
5227 return lhs->old == rhs->old;
5228 }
5229
5230 /* Allocate the hash table used by copy_type_recursive to walk
5231 types without duplicates. We use OBJFILE's obstack, because
5232 OBJFILE is about to be deleted. */
5233
5234 htab_t
5235 create_copied_types_hash (struct objfile *objfile)
5236 {
5237 return htab_create_alloc_ex (1, type_pair_hash, type_pair_eq,
5238 NULL, &objfile->objfile_obstack,
5239 hashtab_obstack_allocate,
5240 dummy_obstack_deallocate);
5241 }
5242
5243 /* Recursively copy (deep copy) a dynamic attribute list of a type. */
5244
5245 static struct dynamic_prop_list *
5246 copy_dynamic_prop_list (struct obstack *objfile_obstack,
5247 struct dynamic_prop_list *list)
5248 {
5249 struct dynamic_prop_list *copy = list;
5250 struct dynamic_prop_list **node_ptr = &copy;
5251
5252 while (*node_ptr != NULL)
5253 {
5254 struct dynamic_prop_list *node_copy;
5255
5256 node_copy = ((struct dynamic_prop_list *)
5257 obstack_copy (objfile_obstack, *node_ptr,
5258 sizeof (struct dynamic_prop_list)));
5259 node_copy->prop = (*node_ptr)->prop;
5260 *node_ptr = node_copy;
5261
5262 node_ptr = &node_copy->next;
5263 }
5264
5265 return copy;
5266 }
5267
5268 /* Recursively copy (deep copy) TYPE, if it is associated with
5269 OBJFILE. Return a new type owned by the gdbarch associated with the type, a
5270 saved type if we have already visited TYPE (using COPIED_TYPES), or TYPE if
5271 it is not associated with OBJFILE. */
5272
5273 struct type *
5274 copy_type_recursive (struct objfile *objfile,
5275 struct type *type,
5276 htab_t copied_types)
5277 {
5278 void **slot;
5279 struct type *new_type;
5280
5281 if (! TYPE_OBJFILE_OWNED (type))
5282 return type;
5283
5284 /* This type shouldn't be pointing to any types in other objfiles;
5285 if it did, the type might disappear unexpectedly. */
5286 gdb_assert (TYPE_OBJFILE (type) == objfile);
5287
5288 struct type_pair pair (type, nullptr);
5289
5290 slot = htab_find_slot (copied_types, &pair, INSERT);
5291 if (*slot != NULL)
5292 return ((struct type_pair *) *slot)->newobj;
5293
5294 new_type = alloc_type_arch (get_type_arch (type));
5295
5296 /* We must add the new type to the hash table immediately, in case
5297 we encounter this type again during a recursive call below. */
5298 struct type_pair *stored
5299 = new (&objfile->objfile_obstack) struct type_pair (type, new_type);
5300
5301 *slot = stored;
5302
5303 /* Copy the common fields of types. For the main type, we simply
5304 copy the entire thing and then update specific fields as needed. */
5305 *TYPE_MAIN_TYPE (new_type) = *TYPE_MAIN_TYPE (type);
5306 TYPE_OBJFILE_OWNED (new_type) = 0;
5307 TYPE_OWNER (new_type).gdbarch = get_type_arch (type);
5308
5309 if (type->name ())
5310 new_type->set_name (xstrdup (type->name ()));
5311
5312 TYPE_INSTANCE_FLAGS (new_type) = TYPE_INSTANCE_FLAGS (type);
5313 TYPE_LENGTH (new_type) = TYPE_LENGTH (type);
5314
5315 /* Copy the fields. */
5316 if (type->num_fields ())
5317 {
5318 int i, nfields;
5319
5320 nfields = type->num_fields ();
5321 new_type->set_fields
5322 ((struct field *)
5323 TYPE_ZALLOC (new_type, nfields * sizeof (struct field)));
5324
5325 for (i = 0; i < nfields; i++)
5326 {
5327 TYPE_FIELD_ARTIFICIAL (new_type, i) =
5328 TYPE_FIELD_ARTIFICIAL (type, i);
5329 TYPE_FIELD_BITSIZE (new_type, i) = TYPE_FIELD_BITSIZE (type, i);
5330 if (type->field (i).type ())
5331 new_type->field (i).set_type
5332 (copy_type_recursive (objfile, type->field (i).type (),
5333 copied_types));
5334 if (TYPE_FIELD_NAME (type, i))
5335 TYPE_FIELD_NAME (new_type, i) =
5336 xstrdup (TYPE_FIELD_NAME (type, i));
5337 switch (TYPE_FIELD_LOC_KIND (type, i))
5338 {
5339 case FIELD_LOC_KIND_BITPOS:
5340 SET_FIELD_BITPOS (new_type->field (i),
5341 TYPE_FIELD_BITPOS (type, i));
5342 break;
5343 case FIELD_LOC_KIND_ENUMVAL:
5344 SET_FIELD_ENUMVAL (new_type->field (i),
5345 TYPE_FIELD_ENUMVAL (type, i));
5346 break;
5347 case FIELD_LOC_KIND_PHYSADDR:
5348 SET_FIELD_PHYSADDR (new_type->field (i),
5349 TYPE_FIELD_STATIC_PHYSADDR (type, i));
5350 break;
5351 case FIELD_LOC_KIND_PHYSNAME:
5352 SET_FIELD_PHYSNAME (new_type->field (i),
5353 xstrdup (TYPE_FIELD_STATIC_PHYSNAME (type,
5354 i)));
5355 break;
5356 default:
5357 internal_error (__FILE__, __LINE__,
5358 _("Unexpected type field location kind: %d"),
5359 TYPE_FIELD_LOC_KIND (type, i));
5360 }
5361 }
5362 }
5363
5364 /* For range types, copy the bounds information. */
5365 if (type->code () == TYPE_CODE_RANGE)
5366 {
5367 range_bounds *bounds
5368 = ((struct range_bounds *) TYPE_ALLOC
5369 (new_type, sizeof (struct range_bounds)));
5370
5371 *bounds = *type->bounds ();
5372 new_type->set_bounds (bounds);
5373 }
5374
5375 if (type->main_type->dyn_prop_list != NULL)
5376 new_type->main_type->dyn_prop_list
5377 = copy_dynamic_prop_list (&objfile->objfile_obstack,
5378 type->main_type->dyn_prop_list);
5379
5380
5381 /* Copy pointers to other types. */
5382 if (TYPE_TARGET_TYPE (type))
5383 TYPE_TARGET_TYPE (new_type) =
5384 copy_type_recursive (objfile,
5385 TYPE_TARGET_TYPE (type),
5386 copied_types);
5387
5388 /* Maybe copy the type_specific bits.
5389
5390 NOTE drow/2005-12-09: We do not copy the C++-specific bits like
5391 base classes and methods. There's no fundamental reason why we
5392 can't, but at the moment it is not needed. */
5393
5394 switch (TYPE_SPECIFIC_FIELD (type))
5395 {
5396 case TYPE_SPECIFIC_NONE:
5397 break;
5398 case TYPE_SPECIFIC_FUNC:
5399 INIT_FUNC_SPECIFIC (new_type);
5400 TYPE_CALLING_CONVENTION (new_type) = TYPE_CALLING_CONVENTION (type);
5401 TYPE_NO_RETURN (new_type) = TYPE_NO_RETURN (type);
5402 TYPE_TAIL_CALL_LIST (new_type) = NULL;
5403 break;
5404 case TYPE_SPECIFIC_FLOATFORMAT:
5405 TYPE_FLOATFORMAT (new_type) = TYPE_FLOATFORMAT (type);
5406 break;
5407 case TYPE_SPECIFIC_CPLUS_STUFF:
5408 INIT_CPLUS_SPECIFIC (new_type);
5409 break;
5410 case TYPE_SPECIFIC_GNAT_STUFF:
5411 INIT_GNAT_SPECIFIC (new_type);
5412 break;
5413 case TYPE_SPECIFIC_SELF_TYPE:
5414 set_type_self_type (new_type,
5415 copy_type_recursive (objfile, TYPE_SELF_TYPE (type),
5416 copied_types));
5417 break;
5418 default:
5419 gdb_assert_not_reached ("bad type_specific_kind");
5420 }
5421
5422 return new_type;
5423 }
5424
5425 /* Make a copy of the given TYPE, except that the pointer & reference
5426 types are not preserved.
5427
5428 This function assumes that the given type has an associated objfile.
5429 This objfile is used to allocate the new type. */
5430
5431 struct type *
5432 copy_type (const struct type *type)
5433 {
5434 struct type *new_type;
5435
5436 gdb_assert (TYPE_OBJFILE_OWNED (type));
5437
5438 new_type = alloc_type_copy (type);
5439 TYPE_INSTANCE_FLAGS (new_type) = TYPE_INSTANCE_FLAGS (type);
5440 TYPE_LENGTH (new_type) = TYPE_LENGTH (type);
5441 memcpy (TYPE_MAIN_TYPE (new_type), TYPE_MAIN_TYPE (type),
5442 sizeof (struct main_type));
5443 if (type->main_type->dyn_prop_list != NULL)
5444 new_type->main_type->dyn_prop_list
5445 = copy_dynamic_prop_list (&TYPE_OBJFILE (type) -> objfile_obstack,
5446 type->main_type->dyn_prop_list);
5447
5448 return new_type;
5449 }
5450 \f
5451 /* Helper functions to initialize architecture-specific types. */
5452
5453 /* Allocate a type structure associated with GDBARCH and set its
5454 CODE, LENGTH, and NAME fields. */
5455
5456 struct type *
5457 arch_type (struct gdbarch *gdbarch,
5458 enum type_code code, int bit, const char *name)
5459 {
5460 struct type *type;
5461
5462 type = alloc_type_arch (gdbarch);
5463 set_type_code (type, code);
5464 gdb_assert ((bit % TARGET_CHAR_BIT) == 0);
5465 TYPE_LENGTH (type) = bit / TARGET_CHAR_BIT;
5466
5467 if (name)
5468 type->set_name (gdbarch_obstack_strdup (gdbarch, name));
5469
5470 return type;
5471 }
5472
5473 /* Allocate a TYPE_CODE_INT type structure associated with GDBARCH.
5474 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
5475 the type's TYPE_UNSIGNED flag. NAME is the type name. */
5476
5477 struct type *
5478 arch_integer_type (struct gdbarch *gdbarch,
5479 int bit, int unsigned_p, const char *name)
5480 {
5481 struct type *t;
5482
5483 t = arch_type (gdbarch, TYPE_CODE_INT, bit, name);
5484 if (unsigned_p)
5485 TYPE_UNSIGNED (t) = 1;
5486
5487 return t;
5488 }
5489
5490 /* Allocate a TYPE_CODE_CHAR type structure associated with GDBARCH.
5491 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
5492 the type's TYPE_UNSIGNED flag. NAME is the type name. */
5493
5494 struct type *
5495 arch_character_type (struct gdbarch *gdbarch,
5496 int bit, int unsigned_p, const char *name)
5497 {
5498 struct type *t;
5499
5500 t = arch_type (gdbarch, TYPE_CODE_CHAR, bit, name);
5501 if (unsigned_p)
5502 TYPE_UNSIGNED (t) = 1;
5503
5504 return t;
5505 }
5506
5507 /* Allocate a TYPE_CODE_BOOL type structure associated with GDBARCH.
5508 BIT is the type size in bits. If UNSIGNED_P is non-zero, set
5509 the type's TYPE_UNSIGNED flag. NAME is the type name. */
5510
5511 struct type *
5512 arch_boolean_type (struct gdbarch *gdbarch,
5513 int bit, int unsigned_p, const char *name)
5514 {
5515 struct type *t;
5516
5517 t = arch_type (gdbarch, TYPE_CODE_BOOL, bit, name);
5518 if (unsigned_p)
5519 TYPE_UNSIGNED (t) = 1;
5520
5521 return t;
5522 }
5523
5524 /* Allocate a TYPE_CODE_FLT type structure associated with GDBARCH.
5525 BIT is the type size in bits; if BIT equals -1, the size is
5526 determined by the floatformat. NAME is the type name. Set the
5527 TYPE_FLOATFORMAT from FLOATFORMATS. */
5528
5529 struct type *
5530 arch_float_type (struct gdbarch *gdbarch,
5531 int bit, const char *name,
5532 const struct floatformat **floatformats)
5533 {
5534 const struct floatformat *fmt = floatformats[gdbarch_byte_order (gdbarch)];
5535 struct type *t;
5536
5537 bit = verify_floatformat (bit, fmt);
5538 t = arch_type (gdbarch, TYPE_CODE_FLT, bit, name);
5539 TYPE_FLOATFORMAT (t) = fmt;
5540
5541 return t;
5542 }
5543
5544 /* Allocate a TYPE_CODE_DECFLOAT type structure associated with GDBARCH.
5545 BIT is the type size in bits. NAME is the type name. */
5546
5547 struct type *
5548 arch_decfloat_type (struct gdbarch *gdbarch, int bit, const char *name)
5549 {
5550 struct type *t;
5551
5552 t = arch_type (gdbarch, TYPE_CODE_DECFLOAT, bit, name);
5553 return t;
5554 }
5555
5556 /* Allocate a TYPE_CODE_PTR type structure associated with GDBARCH.
5557 BIT is the pointer type size in bits. NAME is the type name.
5558 TARGET_TYPE is the pointer target type. Always sets the pointer type's
5559 TYPE_UNSIGNED flag. */
5560
5561 struct type *
5562 arch_pointer_type (struct gdbarch *gdbarch,
5563 int bit, const char *name, struct type *target_type)
5564 {
5565 struct type *t;
5566
5567 t = arch_type (gdbarch, TYPE_CODE_PTR, bit, name);
5568 TYPE_TARGET_TYPE (t) = target_type;
5569 TYPE_UNSIGNED (t) = 1;
5570 return t;
5571 }
5572
5573 /* Allocate a TYPE_CODE_FLAGS type structure associated with GDBARCH.
5574 NAME is the type name. BIT is the size of the flag word in bits. */
5575
5576 struct type *
5577 arch_flags_type (struct gdbarch *gdbarch, const char *name, int bit)
5578 {
5579 struct type *type;
5580
5581 type = arch_type (gdbarch, TYPE_CODE_FLAGS, bit, name);
5582 TYPE_UNSIGNED (type) = 1;
5583 type->set_num_fields (0);
5584 /* Pre-allocate enough space assuming every field is one bit. */
5585 type->set_fields
5586 ((struct field *) TYPE_ZALLOC (type, bit * sizeof (struct field)));
5587
5588 return type;
5589 }
5590
5591 /* Add field to TYPE_CODE_FLAGS type TYPE to indicate the bit at
5592 position BITPOS is called NAME. Pass NAME as "" for fields that
5593 should not be printed. */
5594
5595 void
5596 append_flags_type_field (struct type *type, int start_bitpos, int nr_bits,
5597 struct type *field_type, const char *name)
5598 {
5599 int type_bitsize = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
5600 int field_nr = type->num_fields ();
5601
5602 gdb_assert (type->code () == TYPE_CODE_FLAGS);
5603 gdb_assert (type->num_fields () + 1 <= type_bitsize);
5604 gdb_assert (start_bitpos >= 0 && start_bitpos < type_bitsize);
5605 gdb_assert (nr_bits >= 1 && nr_bits <= type_bitsize);
5606 gdb_assert (name != NULL);
5607
5608 TYPE_FIELD_NAME (type, field_nr) = xstrdup (name);
5609 type->field (field_nr).set_type (field_type);
5610 SET_FIELD_BITPOS (type->field (field_nr), start_bitpos);
5611 TYPE_FIELD_BITSIZE (type, field_nr) = nr_bits;
5612 type->set_num_fields (type->num_fields () + 1);
5613 }
5614
5615 /* Special version of append_flags_type_field to add a flag field.
5616 Add field to TYPE_CODE_FLAGS type TYPE to indicate the bit at
5617 position BITPOS is called NAME. */
5618
5619 void
5620 append_flags_type_flag (struct type *type, int bitpos, const char *name)
5621 {
5622 struct gdbarch *gdbarch = get_type_arch (type);
5623
5624 append_flags_type_field (type, bitpos, 1,
5625 builtin_type (gdbarch)->builtin_bool,
5626 name);
5627 }
5628
5629 /* Allocate a TYPE_CODE_STRUCT or TYPE_CODE_UNION type structure (as
5630 specified by CODE) associated with GDBARCH. NAME is the type name. */
5631
5632 struct type *
5633 arch_composite_type (struct gdbarch *gdbarch, const char *name,
5634 enum type_code code)
5635 {
5636 struct type *t;
5637
5638 gdb_assert (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION);
5639 t = arch_type (gdbarch, code, 0, NULL);
5640 t->set_name (name);
5641 INIT_CPLUS_SPECIFIC (t);
5642 return t;
5643 }
5644
5645 /* Add new field with name NAME and type FIELD to composite type T.
5646 Do not set the field's position or adjust the type's length;
5647 the caller should do so. Return the new field. */
5648
5649 struct field *
5650 append_composite_type_field_raw (struct type *t, const char *name,
5651 struct type *field)
5652 {
5653 struct field *f;
5654
5655 t->set_num_fields (t->num_fields () + 1);
5656 t->set_fields (XRESIZEVEC (struct field, t->fields (),
5657 t->num_fields ()));
5658 f = &t->field (t->num_fields () - 1);
5659 memset (f, 0, sizeof f[0]);
5660 f[0].set_type (field);
5661 FIELD_NAME (f[0]) = name;
5662 return f;
5663 }
5664
5665 /* Add new field with name NAME and type FIELD to composite type T.
5666 ALIGNMENT (if non-zero) specifies the minimum field alignment. */
5667
5668 void
5669 append_composite_type_field_aligned (struct type *t, const char *name,
5670 struct type *field, int alignment)
5671 {
5672 struct field *f = append_composite_type_field_raw (t, name, field);
5673
5674 if (t->code () == TYPE_CODE_UNION)
5675 {
5676 if (TYPE_LENGTH (t) < TYPE_LENGTH (field))
5677 TYPE_LENGTH (t) = TYPE_LENGTH (field);
5678 }
5679 else if (t->code () == TYPE_CODE_STRUCT)
5680 {
5681 TYPE_LENGTH (t) = TYPE_LENGTH (t) + TYPE_LENGTH (field);
5682 if (t->num_fields () > 1)
5683 {
5684 SET_FIELD_BITPOS (f[0],
5685 (FIELD_BITPOS (f[-1])
5686 + (TYPE_LENGTH (f[-1].type ())
5687 * TARGET_CHAR_BIT)));
5688
5689 if (alignment)
5690 {
5691 int left;
5692
5693 alignment *= TARGET_CHAR_BIT;
5694 left = FIELD_BITPOS (f[0]) % alignment;
5695
5696 if (left)
5697 {
5698 SET_FIELD_BITPOS (f[0], FIELD_BITPOS (f[0]) + (alignment - left));
5699 TYPE_LENGTH (t) += (alignment - left) / TARGET_CHAR_BIT;
5700 }
5701 }
5702 }
5703 }
5704 }
5705
5706 /* Add new field with name NAME and type FIELD to composite type T. */
5707
5708 void
5709 append_composite_type_field (struct type *t, const char *name,
5710 struct type *field)
5711 {
5712 append_composite_type_field_aligned (t, name, field, 0);
5713 }
5714
5715 static struct gdbarch_data *gdbtypes_data;
5716
5717 const struct builtin_type *
5718 builtin_type (struct gdbarch *gdbarch)
5719 {
5720 return (const struct builtin_type *) gdbarch_data (gdbarch, gdbtypes_data);
5721 }
5722
5723 static void *
5724 gdbtypes_post_init (struct gdbarch *gdbarch)
5725 {
5726 struct builtin_type *builtin_type
5727 = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct builtin_type);
5728
5729 /* Basic types. */
5730 builtin_type->builtin_void
5731 = arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT, "void");
5732 builtin_type->builtin_char
5733 = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
5734 !gdbarch_char_signed (gdbarch), "char");
5735 TYPE_NOSIGN (builtin_type->builtin_char) = 1;
5736 builtin_type->builtin_signed_char
5737 = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
5738 0, "signed char");
5739 builtin_type->builtin_unsigned_char
5740 = arch_integer_type (gdbarch, TARGET_CHAR_BIT,
5741 1, "unsigned char");
5742 builtin_type->builtin_short
5743 = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
5744 0, "short");
5745 builtin_type->builtin_unsigned_short
5746 = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
5747 1, "unsigned short");
5748 builtin_type->builtin_int
5749 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
5750 0, "int");
5751 builtin_type->builtin_unsigned_int
5752 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
5753 1, "unsigned int");
5754 builtin_type->builtin_long
5755 = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
5756 0, "long");
5757 builtin_type->builtin_unsigned_long
5758 = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
5759 1, "unsigned long");
5760 builtin_type->builtin_long_long
5761 = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
5762 0, "long long");
5763 builtin_type->builtin_unsigned_long_long
5764 = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
5765 1, "unsigned long long");
5766 builtin_type->builtin_half
5767 = arch_float_type (gdbarch, gdbarch_half_bit (gdbarch),
5768 "half", gdbarch_half_format (gdbarch));
5769 builtin_type->builtin_float
5770 = arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
5771 "float", gdbarch_float_format (gdbarch));
5772 builtin_type->builtin_double
5773 = arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
5774 "double", gdbarch_double_format (gdbarch));
5775 builtin_type->builtin_long_double
5776 = arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
5777 "long double", gdbarch_long_double_format (gdbarch));
5778 builtin_type->builtin_complex
5779 = init_complex_type ("complex", builtin_type->builtin_float);
5780 builtin_type->builtin_double_complex
5781 = init_complex_type ("double complex", builtin_type->builtin_double);
5782 builtin_type->builtin_string
5783 = arch_type (gdbarch, TYPE_CODE_STRING, TARGET_CHAR_BIT, "string");
5784 builtin_type->builtin_bool
5785 = arch_type (gdbarch, TYPE_CODE_BOOL, TARGET_CHAR_BIT, "bool");
5786
5787 /* The following three are about decimal floating point types, which
5788 are 32-bits, 64-bits and 128-bits respectively. */
5789 builtin_type->builtin_decfloat
5790 = arch_decfloat_type (gdbarch, 32, "_Decimal32");
5791 builtin_type->builtin_decdouble
5792 = arch_decfloat_type (gdbarch, 64, "_Decimal64");
5793 builtin_type->builtin_declong
5794 = arch_decfloat_type (gdbarch, 128, "_Decimal128");
5795
5796 /* "True" character types. */
5797 builtin_type->builtin_true_char
5798 = arch_character_type (gdbarch, TARGET_CHAR_BIT, 0, "true character");
5799 builtin_type->builtin_true_unsigned_char
5800 = arch_character_type (gdbarch, TARGET_CHAR_BIT, 1, "true character");
5801
5802 /* Fixed-size integer types. */
5803 builtin_type->builtin_int0
5804 = arch_integer_type (gdbarch, 0, 0, "int0_t");
5805 builtin_type->builtin_int8
5806 = arch_integer_type (gdbarch, 8, 0, "int8_t");
5807 builtin_type->builtin_uint8
5808 = arch_integer_type (gdbarch, 8, 1, "uint8_t");
5809 builtin_type->builtin_int16
5810 = arch_integer_type (gdbarch, 16, 0, "int16_t");
5811 builtin_type->builtin_uint16
5812 = arch_integer_type (gdbarch, 16, 1, "uint16_t");
5813 builtin_type->builtin_int24
5814 = arch_integer_type (gdbarch, 24, 0, "int24_t");
5815 builtin_type->builtin_uint24
5816 = arch_integer_type (gdbarch, 24, 1, "uint24_t");
5817 builtin_type->builtin_int32
5818 = arch_integer_type (gdbarch, 32, 0, "int32_t");
5819 builtin_type->builtin_uint32
5820 = arch_integer_type (gdbarch, 32, 1, "uint32_t");
5821 builtin_type->builtin_int64
5822 = arch_integer_type (gdbarch, 64, 0, "int64_t");
5823 builtin_type->builtin_uint64
5824 = arch_integer_type (gdbarch, 64, 1, "uint64_t");
5825 builtin_type->builtin_int128
5826 = arch_integer_type (gdbarch, 128, 0, "int128_t");
5827 builtin_type->builtin_uint128
5828 = arch_integer_type (gdbarch, 128, 1, "uint128_t");
5829 TYPE_INSTANCE_FLAGS (builtin_type->builtin_int8) |=
5830 TYPE_INSTANCE_FLAG_NOTTEXT;
5831 TYPE_INSTANCE_FLAGS (builtin_type->builtin_uint8) |=
5832 TYPE_INSTANCE_FLAG_NOTTEXT;
5833
5834 /* Wide character types. */
5835 builtin_type->builtin_char16
5836 = arch_integer_type (gdbarch, 16, 1, "char16_t");
5837 builtin_type->builtin_char32
5838 = arch_integer_type (gdbarch, 32, 1, "char32_t");
5839 builtin_type->builtin_wchar
5840 = arch_integer_type (gdbarch, gdbarch_wchar_bit (gdbarch),
5841 !gdbarch_wchar_signed (gdbarch), "wchar_t");
5842
5843 /* Default data/code pointer types. */
5844 builtin_type->builtin_data_ptr
5845 = lookup_pointer_type (builtin_type->builtin_void);
5846 builtin_type->builtin_func_ptr
5847 = lookup_pointer_type (lookup_function_type (builtin_type->builtin_void));
5848 builtin_type->builtin_func_func
5849 = lookup_function_type (builtin_type->builtin_func_ptr);
5850
5851 /* This type represents a GDB internal function. */
5852 builtin_type->internal_fn
5853 = arch_type (gdbarch, TYPE_CODE_INTERNAL_FUNCTION, 0,
5854 "<internal function>");
5855
5856 /* This type represents an xmethod. */
5857 builtin_type->xmethod
5858 = arch_type (gdbarch, TYPE_CODE_XMETHOD, 0, "<xmethod>");
5859
5860 return builtin_type;
5861 }
5862
5863 /* This set of objfile-based types is intended to be used by symbol
5864 readers as basic types. */
5865
5866 static const struct objfile_key<struct objfile_type,
5867 gdb::noop_deleter<struct objfile_type>>
5868 objfile_type_data;
5869
5870 const struct objfile_type *
5871 objfile_type (struct objfile *objfile)
5872 {
5873 struct gdbarch *gdbarch;
5874 struct objfile_type *objfile_type = objfile_type_data.get (objfile);
5875
5876 if (objfile_type)
5877 return objfile_type;
5878
5879 objfile_type = OBSTACK_CALLOC (&objfile->objfile_obstack,
5880 1, struct objfile_type);
5881
5882 /* Use the objfile architecture to determine basic type properties. */
5883 gdbarch = objfile->arch ();
5884
5885 /* Basic types. */
5886 objfile_type->builtin_void
5887 = init_type (objfile, TYPE_CODE_VOID, TARGET_CHAR_BIT, "void");
5888 objfile_type->builtin_char
5889 = init_integer_type (objfile, TARGET_CHAR_BIT,
5890 !gdbarch_char_signed (gdbarch), "char");
5891 TYPE_NOSIGN (objfile_type->builtin_char) = 1;
5892 objfile_type->builtin_signed_char
5893 = init_integer_type (objfile, TARGET_CHAR_BIT,
5894 0, "signed char");
5895 objfile_type->builtin_unsigned_char
5896 = init_integer_type (objfile, TARGET_CHAR_BIT,
5897 1, "unsigned char");
5898 objfile_type->builtin_short
5899 = init_integer_type (objfile, gdbarch_short_bit (gdbarch),
5900 0, "short");
5901 objfile_type->builtin_unsigned_short
5902 = init_integer_type (objfile, gdbarch_short_bit (gdbarch),
5903 1, "unsigned short");
5904 objfile_type->builtin_int
5905 = init_integer_type (objfile, gdbarch_int_bit (gdbarch),
5906 0, "int");
5907 objfile_type->builtin_unsigned_int
5908 = init_integer_type (objfile, gdbarch_int_bit (gdbarch),
5909 1, "unsigned int");
5910 objfile_type->builtin_long
5911 = init_integer_type (objfile, gdbarch_long_bit (gdbarch),
5912 0, "long");
5913 objfile_type->builtin_unsigned_long
5914 = init_integer_type (objfile, gdbarch_long_bit (gdbarch),
5915 1, "unsigned long");
5916 objfile_type->builtin_long_long
5917 = init_integer_type (objfile, gdbarch_long_long_bit (gdbarch),
5918 0, "long long");
5919 objfile_type->builtin_unsigned_long_long
5920 = init_integer_type (objfile, gdbarch_long_long_bit (gdbarch),
5921 1, "unsigned long long");
5922 objfile_type->builtin_float
5923 = init_float_type (objfile, gdbarch_float_bit (gdbarch),
5924 "float", gdbarch_float_format (gdbarch));
5925 objfile_type->builtin_double
5926 = init_float_type (objfile, gdbarch_double_bit (gdbarch),
5927 "double", gdbarch_double_format (gdbarch));
5928 objfile_type->builtin_long_double
5929 = init_float_type (objfile, gdbarch_long_double_bit (gdbarch),
5930 "long double", gdbarch_long_double_format (gdbarch));
5931
5932 /* This type represents a type that was unrecognized in symbol read-in. */
5933 objfile_type->builtin_error
5934 = init_type (objfile, TYPE_CODE_ERROR, 0, "<unknown type>");
5935
5936 /* The following set of types is used for symbols with no
5937 debug information. */
5938 objfile_type->nodebug_text_symbol
5939 = init_type (objfile, TYPE_CODE_FUNC, TARGET_CHAR_BIT,
5940 "<text variable, no debug info>");
5941 objfile_type->nodebug_text_gnu_ifunc_symbol
5942 = init_type (objfile, TYPE_CODE_FUNC, TARGET_CHAR_BIT,
5943 "<text gnu-indirect-function variable, no debug info>");
5944 TYPE_GNU_IFUNC (objfile_type->nodebug_text_gnu_ifunc_symbol) = 1;
5945 objfile_type->nodebug_got_plt_symbol
5946 = init_pointer_type (objfile, gdbarch_addr_bit (gdbarch),
5947 "<text from jump slot in .got.plt, no debug info>",
5948 objfile_type->nodebug_text_symbol);
5949 objfile_type->nodebug_data_symbol
5950 = init_nodebug_var_type (objfile, "<data variable, no debug info>");
5951 objfile_type->nodebug_unknown_symbol
5952 = init_nodebug_var_type (objfile, "<variable (not text or data), no debug info>");
5953 objfile_type->nodebug_tls_symbol
5954 = init_nodebug_var_type (objfile, "<thread local variable, no debug info>");
5955
5956 /* NOTE: on some targets, addresses and pointers are not necessarily
5957 the same.
5958
5959 The upshot is:
5960 - gdb's `struct type' always describes the target's
5961 representation.
5962 - gdb's `struct value' objects should always hold values in
5963 target form.
5964 - gdb's CORE_ADDR values are addresses in the unified virtual
5965 address space that the assembler and linker work with. Thus,
5966 since target_read_memory takes a CORE_ADDR as an argument, it
5967 can access any memory on the target, even if the processor has
5968 separate code and data address spaces.
5969
5970 In this context, objfile_type->builtin_core_addr is a bit odd:
5971 it's a target type for a value the target will never see. It's
5972 only used to hold the values of (typeless) linker symbols, which
5973 are indeed in the unified virtual address space. */
5974
5975 objfile_type->builtin_core_addr
5976 = init_integer_type (objfile, gdbarch_addr_bit (gdbarch), 1,
5977 "__CORE_ADDR");
5978
5979 objfile_type_data.set (objfile, objfile_type);
5980 return objfile_type;
5981 }
5982
5983 void _initialize_gdbtypes ();
5984 void
5985 _initialize_gdbtypes ()
5986 {
5987 gdbtypes_data = gdbarch_data_register_post_init (gdbtypes_post_init);
5988
5989 add_setshow_zuinteger_cmd ("overload", no_class, &overload_debug,
5990 _("Set debugging of C++ overloading."),
5991 _("Show debugging of C++ overloading."),
5992 _("When enabled, ranking of the "
5993 "functions is displayed."),
5994 NULL,
5995 show_overload_debug,
5996 &setdebuglist, &showdebuglist);
5997
5998 /* Add user knob for controlling resolution of opaque types. */
5999 add_setshow_boolean_cmd ("opaque-type-resolution", class_support,
6000 &opaque_type_resolution,
6001 _("Set resolution of opaque struct/class/union"
6002 " types (if set before loading symbols)."),
6003 _("Show resolution of opaque struct/class/union"
6004 " types (if set before loading symbols)."),
6005 NULL, NULL,
6006 show_opaque_type_resolution,
6007 &setlist, &showlist);
6008
6009 /* Add an option to permit non-strict type checking. */
6010 add_setshow_boolean_cmd ("type", class_support,
6011 &strict_type_checking,
6012 _("Set strict type checking."),
6013 _("Show strict type checking."),
6014 NULL, NULL,
6015 show_strict_type_checking,
6016 &setchecklist, &showchecklist);
6017 }
This page took 0.156987 seconds and 5 git commands to generate.