gdb: Don't leak memory with TYPE_ALLOC / TYPE_ZALLOC
[deliverable/binutils-gdb.git] / gdb / gdbtypes.h
1
2 /* Internal type definitions for GDB.
3
4 Copyright (C) 1992-2018 Free Software Foundation, Inc.
5
6 Contributed by Cygnus Support, using pieces from other GDB modules.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22
23 #if !defined (GDBTYPES_H)
24 #define GDBTYPES_H 1
25
26 /* * \page gdbtypes GDB Types
27
28 GDB represents all the different kinds of types in programming
29 languages using a common representation defined in gdbtypes.h.
30
31 The main data structure is main_type; it consists of a code (such
32 as #TYPE_CODE_ENUM for enumeration types), a number of
33 generally-useful fields such as the printable name, and finally a
34 field main_type::type_specific that is a union of info specific to
35 particular languages or other special cases (such as calling
36 convention).
37
38 The available type codes are defined in enum #type_code. The enum
39 includes codes both for types that are common across a variety
40 of languages, and for types that are language-specific.
41
42 Most accesses to type fields go through macros such as
43 #TYPE_CODE(thistype) and #TYPE_FN_FIELD_CONST(thisfn, n). These are
44 written such that they can be used as both rvalues and lvalues.
45 */
46
47 #include "hashtab.h"
48 #include "common/offset-type.h"
49 #include "common/enum-flags.h"
50 #include "common/underlying.h"
51 #include "common/print-utils.h"
52 #include "gdbarch.h"
53
54 /* Forward declarations for prototypes. */
55 struct field;
56 struct block;
57 struct value_print_options;
58 struct language_defn;
59
60 /* These declarations are DWARF-specific as some of the gdbtypes.h data types
61 are already DWARF-specific. */
62
63 /* * Offset relative to the start of its containing CU (compilation
64 unit). */
65 DEFINE_OFFSET_TYPE (cu_offset, unsigned int);
66
67 /* * Offset relative to the start of its .debug_info or .debug_types
68 section. */
69 DEFINE_OFFSET_TYPE (sect_offset, uint64_t);
70
71 static inline char *
72 sect_offset_str (sect_offset offset)
73 {
74 return hex_string (to_underlying (offset));
75 }
76
77 /* Some macros for char-based bitfields. */
78
79 #define B_SET(a,x) ((a)[(x)>>3] |= (1 << ((x)&7)))
80 #define B_CLR(a,x) ((a)[(x)>>3] &= ~(1 << ((x)&7)))
81 #define B_TST(a,x) ((a)[(x)>>3] & (1 << ((x)&7)))
82 #define B_TYPE unsigned char
83 #define B_BYTES(x) ( 1 + ((x)>>3) )
84 #define B_CLRALL(a,x) memset ((a), 0, B_BYTES(x))
85
86 /* * Different kinds of data types are distinguished by the `code'
87 field. */
88
89 enum type_code
90 {
91 TYPE_CODE_BITSTRING = -1, /**< Deprecated */
92 TYPE_CODE_UNDEF = 0, /**< Not used; catches errors */
93 TYPE_CODE_PTR, /**< Pointer type */
94
95 /* * Array type with lower & upper bounds.
96
97 Regardless of the language, GDB represents multidimensional
98 array types the way C does: as arrays of arrays. So an
99 instance of a GDB array type T can always be seen as a series
100 of instances of TYPE_TARGET_TYPE (T) laid out sequentially in
101 memory.
102
103 Row-major languages like C lay out multi-dimensional arrays so
104 that incrementing the rightmost index in a subscripting
105 expression results in the smallest change in the address of the
106 element referred to. Column-major languages like Fortran lay
107 them out so that incrementing the leftmost index results in the
108 smallest change.
109
110 This means that, in column-major languages, working our way
111 from type to target type corresponds to working through indices
112 from right to left, not left to right. */
113 TYPE_CODE_ARRAY,
114
115 TYPE_CODE_STRUCT, /**< C struct or Pascal record */
116 TYPE_CODE_UNION, /**< C union or Pascal variant part */
117 TYPE_CODE_ENUM, /**< Enumeration type */
118 TYPE_CODE_FLAGS, /**< Bit flags type */
119 TYPE_CODE_FUNC, /**< Function type */
120 TYPE_CODE_INT, /**< Integer type */
121
122 /* * Floating type. This is *NOT* a complex type. Beware, there
123 are parts of GDB which bogusly assume that TYPE_CODE_FLT can
124 mean complex. */
125 TYPE_CODE_FLT,
126
127 /* * Void type. The length field specifies the length (probably
128 always one) which is used in pointer arithmetic involving
129 pointers to this type, but actually dereferencing such a
130 pointer is invalid; a void type has no length and no actual
131 representation in memory or registers. A pointer to a void
132 type is a generic pointer. */
133 TYPE_CODE_VOID,
134
135 TYPE_CODE_SET, /**< Pascal sets */
136 TYPE_CODE_RANGE, /**< Range (integers within spec'd bounds). */
137
138 /* * A string type which is like an array of character but prints
139 differently. It does not contain a length field as Pascal
140 strings (for many Pascals, anyway) do; if we want to deal with
141 such strings, we should use a new type code. */
142 TYPE_CODE_STRING,
143
144 /* * Unknown type. The length field is valid if we were able to
145 deduce that much about the type, or 0 if we don't even know
146 that. */
147 TYPE_CODE_ERROR,
148
149 /* C++ */
150 TYPE_CODE_METHOD, /**< Method type */
151
152 /* * Pointer-to-member-function type. This describes how to access a
153 particular member function of a class (possibly a virtual
154 member function). The representation may vary between different
155 C++ ABIs. */
156 TYPE_CODE_METHODPTR,
157
158 /* * Pointer-to-member type. This is the offset within a class to
159 some particular data member. The only currently supported
160 representation uses an unbiased offset, with -1 representing
161 NULL; this is used by the Itanium C++ ABI (used by GCC on all
162 platforms). */
163 TYPE_CODE_MEMBERPTR,
164
165 TYPE_CODE_REF, /**< C++ Reference types */
166
167 TYPE_CODE_RVALUE_REF, /**< C++ rvalue reference types */
168
169 TYPE_CODE_CHAR, /**< *real* character type */
170
171 /* * Boolean type. 0 is false, 1 is true, and other values are
172 non-boolean (e.g. FORTRAN "logical" used as unsigned int). */
173 TYPE_CODE_BOOL,
174
175 /* Fortran */
176 TYPE_CODE_COMPLEX, /**< Complex float */
177
178 TYPE_CODE_TYPEDEF,
179
180 TYPE_CODE_NAMESPACE, /**< C++ namespace. */
181
182 TYPE_CODE_DECFLOAT, /**< Decimal floating point. */
183
184 TYPE_CODE_MODULE, /**< Fortran module. */
185
186 /* * Internal function type. */
187 TYPE_CODE_INTERNAL_FUNCTION,
188
189 /* * Methods implemented in extension languages. */
190 TYPE_CODE_XMETHOD
191 };
192
193 /* * Some bits for the type's instance_flags word. See the macros
194 below for documentation on each bit. */
195
196 enum type_instance_flag_value
197 {
198 TYPE_INSTANCE_FLAG_CONST = (1 << 0),
199 TYPE_INSTANCE_FLAG_VOLATILE = (1 << 1),
200 TYPE_INSTANCE_FLAG_CODE_SPACE = (1 << 2),
201 TYPE_INSTANCE_FLAG_DATA_SPACE = (1 << 3),
202 TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1 = (1 << 4),
203 TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2 = (1 << 5),
204 TYPE_INSTANCE_FLAG_NOTTEXT = (1 << 6),
205 TYPE_INSTANCE_FLAG_RESTRICT = (1 << 7),
206 TYPE_INSTANCE_FLAG_ATOMIC = (1 << 8)
207 };
208
209 DEF_ENUM_FLAGS_TYPE (enum type_instance_flag_value, type_instance_flags);
210
211 /* * Unsigned integer type. If this is not set for a TYPE_CODE_INT,
212 the type is signed (unless TYPE_NOSIGN (below) is set). */
213
214 #define TYPE_UNSIGNED(t) (TYPE_MAIN_TYPE (t)->flag_unsigned)
215
216 /* * No sign for this type. In C++, "char", "signed char", and
217 "unsigned char" are distinct types; so we need an extra flag to
218 indicate the absence of a sign! */
219
220 #define TYPE_NOSIGN(t) (TYPE_MAIN_TYPE (t)->flag_nosign)
221
222 /* * This appears in a type's flags word if it is a stub type (e.g.,
223 if someone referenced a type that wasn't defined in a source file
224 via (struct sir_not_appearing_in_this_film *)). */
225
226 #define TYPE_STUB(t) (TYPE_MAIN_TYPE (t)->flag_stub)
227
228 /* * The target type of this type is a stub type, and this type needs
229 to be updated if it gets un-stubbed in check_typedef. Used for
230 arrays and ranges, in which TYPE_LENGTH of the array/range gets set
231 based on the TYPE_LENGTH of the target type. Also, set for
232 TYPE_CODE_TYPEDEF. */
233
234 #define TYPE_TARGET_STUB(t) (TYPE_MAIN_TYPE (t)->flag_target_stub)
235
236 /* * This is a function type which appears to have a prototype. We
237 need this for function calls in order to tell us if it's necessary
238 to coerce the args, or to just do the standard conversions. This
239 is used with a short field. */
240
241 #define TYPE_PROTOTYPED(t) (TYPE_MAIN_TYPE (t)->flag_prototyped)
242
243 /* * This flag is used to indicate that processing for this type
244 is incomplete.
245
246 (Mostly intended for HP platforms, where class methods, for
247 instance, can be encountered before their classes in the debug
248 info; the incomplete type has to be marked so that the class and
249 the method can be assigned correct types.) */
250
251 #define TYPE_INCOMPLETE(t) (TYPE_MAIN_TYPE (t)->flag_incomplete)
252
253 /* * FIXME drow/2002-06-03: Only used for methods, but applies as well
254 to functions. */
255
256 #define TYPE_VARARGS(t) (TYPE_MAIN_TYPE (t)->flag_varargs)
257
258 /* * Identify a vector type. Gcc is handling this by adding an extra
259 attribute to the array type. We slurp that in as a new flag of a
260 type. This is used only in dwarf2read.c. */
261 #define TYPE_VECTOR(t) (TYPE_MAIN_TYPE (t)->flag_vector)
262
263 /* * The debugging formats (especially STABS) do not contain enough
264 information to represent all Ada types---especially those whose
265 size depends on dynamic quantities. Therefore, the GNAT Ada
266 compiler includes extra information in the form of additional type
267 definitions connected by naming conventions. This flag indicates
268 that the type is an ordinary (unencoded) GDB type that has been
269 created from the necessary run-time information, and does not need
270 further interpretation. Optionally marks ordinary, fixed-size GDB
271 type. */
272
273 #define TYPE_FIXED_INSTANCE(t) (TYPE_MAIN_TYPE (t)->flag_fixed_instance)
274
275 /* * This debug target supports TYPE_STUB(t). In the unsupported case
276 we have to rely on NFIELDS to be zero etc., see TYPE_IS_OPAQUE().
277 TYPE_STUB(t) with !TYPE_STUB_SUPPORTED(t) may exist if we only
278 guessed the TYPE_STUB(t) value (see dwarfread.c). */
279
280 #define TYPE_STUB_SUPPORTED(t) (TYPE_MAIN_TYPE (t)->flag_stub_supported)
281
282 /* * Not textual. By default, GDB treats all single byte integers as
283 characters (or elements of strings) unless this flag is set. */
284
285 #define TYPE_NOTTEXT(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_NOTTEXT)
286
287 /* * Used only for TYPE_CODE_FUNC where it specifies the real function
288 address is returned by this function call. TYPE_TARGET_TYPE
289 determines the final returned function type to be presented to
290 user. */
291
292 #define TYPE_GNU_IFUNC(t) (TYPE_MAIN_TYPE (t)->flag_gnu_ifunc)
293
294 /* * Type owner. If TYPE_OBJFILE_OWNED is true, the type is owned by
295 the objfile retrieved as TYPE_OBJFILE. Otherweise, the type is
296 owned by an architecture; TYPE_OBJFILE is NULL in this case. */
297
298 #define TYPE_OBJFILE_OWNED(t) (TYPE_MAIN_TYPE (t)->flag_objfile_owned)
299 #define TYPE_OWNER(t) TYPE_MAIN_TYPE(t)->owner
300 #define TYPE_OBJFILE(t) (TYPE_OBJFILE_OWNED(t)? TYPE_OWNER(t).objfile : NULL)
301
302 /* * True if this type was declared using the "class" keyword. This is
303 only valid for C++ structure and enum types. If false, a structure
304 was declared as a "struct"; if true it was declared "class". For
305 enum types, this is true when "enum class" or "enum struct" was
306 used to declare the type.. */
307
308 #define TYPE_DECLARED_CLASS(t) (TYPE_MAIN_TYPE (t)->flag_declared_class)
309
310 /* * True if this type is a "flag" enum. A flag enum is one where all
311 the values are pairwise disjoint when "and"ed together. This
312 affects how enum values are printed. */
313
314 #define TYPE_FLAG_ENUM(t) (TYPE_MAIN_TYPE (t)->flag_flag_enum)
315
316 /* * True if this type is a discriminated union type. Only valid for
317 TYPE_CODE_UNION. A discriminated union stores a reference to the
318 discriminant field along with the discriminator values in a dynamic
319 property. */
320
321 #define TYPE_FLAG_DISCRIMINATED_UNION(t) \
322 (TYPE_MAIN_TYPE (t)->flag_discriminated_union)
323
324 /* * Constant type. If this is set, the corresponding type has a
325 const modifier. */
326
327 #define TYPE_CONST(t) ((TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_CONST) != 0)
328
329 /* * Volatile type. If this is set, the corresponding type has a
330 volatile modifier. */
331
332 #define TYPE_VOLATILE(t) \
333 ((TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_VOLATILE) != 0)
334
335 /* * Restrict type. If this is set, the corresponding type has a
336 restrict modifier. */
337
338 #define TYPE_RESTRICT(t) \
339 ((TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_RESTRICT) != 0)
340
341 /* * Atomic type. If this is set, the corresponding type has an
342 _Atomic modifier. */
343
344 #define TYPE_ATOMIC(t) \
345 ((TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_ATOMIC) != 0)
346
347 /* * True if this type represents either an lvalue or lvalue reference type. */
348
349 #define TYPE_IS_REFERENCE(t) \
350 (TYPE_CODE (t) == TYPE_CODE_REF || TYPE_CODE (t) == TYPE_CODE_RVALUE_REF)
351
352 /* * Instruction-space delimited type. This is for Harvard architectures
353 which have separate instruction and data address spaces (and perhaps
354 others).
355
356 GDB usually defines a flat address space that is a superset of the
357 architecture's two (or more) address spaces, but this is an extension
358 of the architecture's model.
359
360 If TYPE_INSTANCE_FLAG_CODE_SPACE is set, an object of the corresponding type
361 resides in instruction memory, even if its address (in the extended
362 flat address space) does not reflect this.
363
364 Similarly, if TYPE_INSTANCE_FLAG_DATA_SPACE is set, then an object of the
365 corresponding type resides in the data memory space, even if
366 this is not indicated by its (flat address space) address.
367
368 If neither flag is set, the default space for functions / methods
369 is instruction space, and for data objects is data memory. */
370
371 #define TYPE_CODE_SPACE(t) \
372 ((TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_CODE_SPACE) != 0)
373
374 #define TYPE_DATA_SPACE(t) \
375 ((TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_DATA_SPACE) != 0)
376
377 /* * Address class flags. Some environments provide for pointers
378 whose size is different from that of a normal pointer or address
379 types where the bits are interpreted differently than normal
380 addresses. The TYPE_INSTANCE_FLAG_ADDRESS_CLASS_n flags may be used in
381 target specific ways to represent these different types of address
382 classes. */
383
384 #define TYPE_ADDRESS_CLASS_1(t) (TYPE_INSTANCE_FLAGS(t) \
385 & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1)
386 #define TYPE_ADDRESS_CLASS_2(t) (TYPE_INSTANCE_FLAGS(t) \
387 & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2)
388 #define TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL \
389 (TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1 | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2)
390 #define TYPE_ADDRESS_CLASS_ALL(t) (TYPE_INSTANCE_FLAGS(t) \
391 & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
392
393 /* * Information needed for a discriminated union. A discriminated
394 union is handled somewhat differently from an ordinary union.
395
396 One field is designated as the discriminant. Only one other field
397 is active at a time; which one depends on the value of the
398 discriminant and the data in this structure.
399
400 Additionally, it is possible to have a univariant discriminated
401 union. In this case, the union has just a single field, which is
402 assumed to be the only active variant -- in this case no
403 discriminant is provided. */
404
405 struct discriminant_info
406 {
407 /* * The index of the discriminant field. If -1, then this union
408 must have just a single field. */
409
410 int discriminant_index;
411
412 /* * The index of the default branch of the union. If -1, then
413 there is no default branch. */
414
415 int default_index;
416
417 /* * The discriminant values corresponding to each branch. This has
418 a number of entries equal to the number of fields in this union.
419 If discriminant_index is not -1, then that entry in this array is
420 not used. If default_index is not -1, then that entry in this
421 array is not used. */
422
423 ULONGEST discriminants[1];
424 };
425
426 enum dynamic_prop_kind
427 {
428 PROP_UNDEFINED, /* Not defined. */
429 PROP_CONST, /* Constant. */
430 PROP_ADDR_OFFSET, /* Address offset. */
431 PROP_LOCEXPR, /* Location expression. */
432 PROP_LOCLIST /* Location list. */
433 };
434
435 union dynamic_prop_data
436 {
437 /* Storage for constant property. */
438
439 LONGEST const_val;
440
441 /* Storage for dynamic property. */
442
443 void *baton;
444 };
445
446 /* * Used to store a dynamic property. */
447
448 struct dynamic_prop
449 {
450 /* Determine which field of the union dynamic_prop.data is used. */
451 enum dynamic_prop_kind kind;
452
453 /* Storage for dynamic or static value. */
454 union dynamic_prop_data data;
455 };
456
457 /* Compare two dynamic_prop objects for equality. dynamic_prop
458 instances are equal iff they have the same type and storage. */
459 extern bool operator== (const dynamic_prop &l, const dynamic_prop &r);
460
461 /* Compare two dynamic_prop objects for inequality. */
462 static inline bool operator!= (const dynamic_prop &l, const dynamic_prop &r)
463 {
464 return !(l == r);
465 }
466
467 /* * Define a type's dynamic property node kind. */
468 enum dynamic_prop_node_kind
469 {
470 /* A property providing a type's data location.
471 Evaluating this field yields to the location of an object's data. */
472 DYN_PROP_DATA_LOCATION,
473
474 /* A property representing DW_AT_allocated. The presence of this attribute
475 indicates that the object of the type can be allocated/deallocated. */
476 DYN_PROP_ALLOCATED,
477
478 /* A property representing DW_AT_allocated. The presence of this attribute
479 indicated that the object of the type can be associated. */
480 DYN_PROP_ASSOCIATED,
481
482 /* A property providing an array's byte stride. */
483 DYN_PROP_BYTE_STRIDE,
484
485 /* A property holding information about a discriminated union. */
486 DYN_PROP_DISCRIMINATED,
487 };
488
489 /* * List for dynamic type attributes. */
490 struct dynamic_prop_list
491 {
492 /* The kind of dynamic prop in this node. */
493 enum dynamic_prop_node_kind prop_kind;
494
495 /* The dynamic property itself. */
496 struct dynamic_prop prop;
497
498 /* A pointer to the next dynamic property. */
499 struct dynamic_prop_list *next;
500 };
501
502 /* * Determine which field of the union main_type.fields[x].loc is
503 used. */
504
505 enum field_loc_kind
506 {
507 FIELD_LOC_KIND_BITPOS, /**< bitpos */
508 FIELD_LOC_KIND_ENUMVAL, /**< enumval */
509 FIELD_LOC_KIND_PHYSADDR, /**< physaddr */
510 FIELD_LOC_KIND_PHYSNAME, /**< physname */
511 FIELD_LOC_KIND_DWARF_BLOCK /**< dwarf_block */
512 };
513
514 /* * A discriminant to determine which field in the
515 main_type.type_specific union is being used, if any.
516
517 For types such as TYPE_CODE_FLT, the use of this
518 discriminant is really redundant, as we know from the type code
519 which field is going to be used. As such, it would be possible to
520 reduce the size of this enum in order to save a bit or two for
521 other fields of struct main_type. But, since we still have extra
522 room , and for the sake of clarity and consistency, we treat all fields
523 of the union the same way. */
524
525 enum type_specific_kind
526 {
527 TYPE_SPECIFIC_NONE,
528 TYPE_SPECIFIC_CPLUS_STUFF,
529 TYPE_SPECIFIC_GNAT_STUFF,
530 TYPE_SPECIFIC_FLOATFORMAT,
531 /* Note: This is used by TYPE_CODE_FUNC and TYPE_CODE_METHOD. */
532 TYPE_SPECIFIC_FUNC,
533 TYPE_SPECIFIC_SELF_TYPE
534 };
535
536 union type_owner
537 {
538 struct objfile *objfile;
539 struct gdbarch *gdbarch;
540 };
541
542 union field_location
543 {
544 /* * Position of this field, counting in bits from start of
545 containing structure. For gdbarch_bits_big_endian=1
546 targets, it is the bit offset to the MSB. For
547 gdbarch_bits_big_endian=0 targets, it is the bit offset to
548 the LSB. */
549
550 LONGEST bitpos;
551
552 /* * Enum value. */
553 LONGEST enumval;
554
555 /* * For a static field, if TYPE_FIELD_STATIC_HAS_ADDR then
556 physaddr is the location (in the target) of the static
557 field. Otherwise, physname is the mangled label of the
558 static field. */
559
560 CORE_ADDR physaddr;
561 const char *physname;
562
563 /* * The field location can be computed by evaluating the
564 following DWARF block. Its DATA is allocated on
565 objfile_obstack - no CU load is needed to access it. */
566
567 struct dwarf2_locexpr_baton *dwarf_block;
568 };
569
570 struct field
571 {
572 union field_location loc;
573
574 /* * For a function or member type, this is 1 if the argument is
575 marked artificial. Artificial arguments should not be shown
576 to the user. For TYPE_CODE_RANGE it is set if the specific
577 bound is not defined. */
578
579 unsigned int artificial : 1;
580
581 /* * Discriminant for union field_location. */
582
583 ENUM_BITFIELD(field_loc_kind) loc_kind : 3;
584
585 /* * Size of this field, in bits, or zero if not packed.
586 If non-zero in an array type, indicates the element size in
587 bits (used only in Ada at the moment).
588 For an unpacked field, the field's type's length
589 says how many bytes the field occupies. */
590
591 unsigned int bitsize : 28;
592
593 /* * In a struct or union type, type of this field.
594 - In a function or member type, type of this argument.
595 - In an array type, the domain-type of the array. */
596
597 struct type *type;
598
599 /* * Name of field, value or argument.
600 NULL for range bounds, array domains, and member function
601 arguments. */
602
603 const char *name;
604 };
605
606 struct range_bounds
607 {
608 /* * Low bound of range. */
609
610 struct dynamic_prop low;
611
612 /* * High bound of range. */
613
614 struct dynamic_prop high;
615
616 /* True if HIGH range bound contains the number of elements in the
617 subrange. This affects how the final hight bound is computed. */
618
619 int flag_upper_bound_is_count : 1;
620
621 /* True if LOW or/and HIGH are resolved into a static bound from
622 a dynamic one. */
623
624 int flag_bound_evaluated : 1;
625 };
626
627 /* Compare two range_bounds objects for equality. Simply does
628 memberwise comparison. */
629 extern bool operator== (const range_bounds &l, const range_bounds &r);
630
631 /* Compare two range_bounds objects for inequality. */
632 static inline bool operator!= (const range_bounds &l, const range_bounds &r)
633 {
634 return !(l == r);
635 }
636
637 union type_specific
638 {
639 /* * CPLUS_STUFF is for TYPE_CODE_STRUCT. It is initialized to
640 point to cplus_struct_default, a default static instance of a
641 struct cplus_struct_type. */
642
643 struct cplus_struct_type *cplus_stuff;
644
645 /* * GNAT_STUFF is for types for which the GNAT Ada compiler
646 provides additional information. */
647
648 struct gnat_aux_type *gnat_stuff;
649
650 /* * FLOATFORMAT is for TYPE_CODE_FLT. It is a pointer to a
651 floatformat object that describes the floating-point value
652 that resides within the type. */
653
654 const struct floatformat *floatformat;
655
656 /* * For TYPE_CODE_FUNC and TYPE_CODE_METHOD types. */
657
658 struct func_type *func_stuff;
659
660 /* * For types that are pointer to member types (TYPE_CODE_METHODPTR,
661 TYPE_CODE_MEMBERPTR), SELF_TYPE is the type that this pointer
662 is a member of. */
663
664 struct type *self_type;
665 };
666
667 /* * Main structure representing a type in GDB.
668
669 This structure is space-critical. Its layout has been tweaked to
670 reduce the space used. */
671
672 struct main_type
673 {
674 /* * Code for kind of type. */
675
676 ENUM_BITFIELD(type_code) code : 8;
677
678 /* * Flags about this type. These fields appear at this location
679 because they packs nicely here. See the TYPE_* macros for
680 documentation about these fields. */
681
682 unsigned int flag_unsigned : 1;
683 unsigned int flag_nosign : 1;
684 unsigned int flag_stub : 1;
685 unsigned int flag_target_stub : 1;
686 unsigned int flag_static : 1;
687 unsigned int flag_prototyped : 1;
688 unsigned int flag_incomplete : 1;
689 unsigned int flag_varargs : 1;
690 unsigned int flag_vector : 1;
691 unsigned int flag_stub_supported : 1;
692 unsigned int flag_gnu_ifunc : 1;
693 unsigned int flag_fixed_instance : 1;
694 unsigned int flag_objfile_owned : 1;
695
696 /* * True if this type was declared with "class" rather than
697 "struct". */
698
699 unsigned int flag_declared_class : 1;
700
701 /* * True if this is an enum type with disjoint values. This
702 affects how the enum is printed. */
703
704 unsigned int flag_flag_enum : 1;
705
706 /* * True if this type is a discriminated union type. Only valid
707 for TYPE_CODE_UNION. A discriminated union stores a reference to
708 the discriminant field along with the discriminator values in a
709 dynamic property. */
710
711 unsigned int flag_discriminated_union : 1;
712
713 /* * A discriminant telling us which field of the type_specific
714 union is being used for this type, if any. */
715
716 ENUM_BITFIELD(type_specific_kind) type_specific_field : 3;
717
718 /* * Number of fields described for this type. This field appears
719 at this location because it packs nicely here. */
720
721 short nfields;
722
723 /* * Name of this type, or NULL if none.
724
725 This is used for printing only. For looking up a name, look for
726 a symbol in the VAR_DOMAIN. This is generally allocated in the
727 objfile's obstack. However coffread.c uses malloc. */
728
729 const char *name;
730
731 /* * Every type is now associated with a particular objfile, and the
732 type is allocated on the objfile_obstack for that objfile. One
733 problem however, is that there are times when gdb allocates new
734 types while it is not in the process of reading symbols from a
735 particular objfile. Fortunately, these happen when the type
736 being created is a derived type of an existing type, such as in
737 lookup_pointer_type(). So we can just allocate the new type
738 using the same objfile as the existing type, but to do this we
739 need a backpointer to the objfile from the existing type. Yes
740 this is somewhat ugly, but without major overhaul of the internal
741 type system, it can't be avoided for now. */
742
743 union type_owner owner;
744
745 /* * For a pointer type, describes the type of object pointed to.
746 - For an array type, describes the type of the elements.
747 - For a function or method type, describes the type of the return value.
748 - For a range type, describes the type of the full range.
749 - For a complex type, describes the type of each coordinate.
750 - For a special record or union type encoding a dynamic-sized type
751 in GNAT, a memoized pointer to a corresponding static version of
752 the type.
753 - Unused otherwise. */
754
755 struct type *target_type;
756
757 /* * For structure and union types, a description of each field.
758 For set and pascal array types, there is one "field",
759 whose type is the domain type of the set or array.
760 For range types, there are two "fields",
761 the minimum and maximum values (both inclusive).
762 For enum types, each possible value is described by one "field".
763 For a function or method type, a "field" for each parameter.
764 For C++ classes, there is one field for each base class (if it is
765 a derived class) plus one field for each class data member. Member
766 functions are recorded elsewhere.
767
768 Using a pointer to a separate array of fields
769 allows all types to have the same size, which is useful
770 because we can allocate the space for a type before
771 we know what to put in it. */
772
773 union
774 {
775 struct field *fields;
776
777 /* * Union member used for range types. */
778
779 struct range_bounds *bounds;
780
781 } flds_bnds;
782
783 /* * Slot to point to additional language-specific fields of this
784 type. */
785
786 union type_specific type_specific;
787
788 /* * Contains all dynamic type properties. */
789 struct dynamic_prop_list *dyn_prop_list;
790 };
791
792 /* * Number of bits allocated for alignment. */
793
794 #define TYPE_ALIGN_BITS 8
795
796 /* * A ``struct type'' describes a particular instance of a type, with
797 some particular qualification. */
798
799 struct type
800 {
801 /* * Type that is a pointer to this type.
802 NULL if no such pointer-to type is known yet.
803 The debugger may add the address of such a type
804 if it has to construct one later. */
805
806 struct type *pointer_type;
807
808 /* * C++: also need a reference type. */
809
810 struct type *reference_type;
811
812 /* * A C++ rvalue reference type added in C++11. */
813
814 struct type *rvalue_reference_type;
815
816 /* * Variant chain. This points to a type that differs from this
817 one only in qualifiers and length. Currently, the possible
818 qualifiers are const, volatile, code-space, data-space, and
819 address class. The length may differ only when one of the
820 address class flags are set. The variants are linked in a
821 circular ring and share MAIN_TYPE. */
822
823 struct type *chain;
824
825 /* * The alignment for this type. Zero means that the alignment was
826 not specified in the debug info. Note that this is stored in a
827 funny way: as the log base 2 (plus 1) of the alignment; so a
828 value of 1 means the alignment is 1, and a value of 9 means the
829 alignment is 256. */
830
831 unsigned align_log2 : TYPE_ALIGN_BITS;
832
833 /* * Flags specific to this instance of the type, indicating where
834 on the ring we are.
835
836 For TYPE_CODE_TYPEDEF the flags of the typedef type should be
837 binary or-ed with the target type, with a special case for
838 address class and space class. For example if this typedef does
839 not specify any new qualifiers, TYPE_INSTANCE_FLAGS is 0 and the
840 instance flags are completely inherited from the target type. No
841 qualifiers can be cleared by the typedef. See also
842 check_typedef. */
843 unsigned instance_flags : 9;
844
845 /* * Length of storage for a value of this type. The value is the
846 expression in host bytes of what sizeof(type) would return. This
847 size includes padding. For example, an i386 extended-precision
848 floating point value really only occupies ten bytes, but most
849 ABI's declare its size to be 12 bytes, to preserve alignment.
850 A `struct type' representing such a floating-point type would
851 have a `length' value of 12, even though the last two bytes are
852 unused.
853
854 Since this field is expressed in host bytes, its value is appropriate
855 to pass to memcpy and such (it is assumed that GDB itself always runs
856 on an 8-bits addressable architecture). However, when using it for
857 target address arithmetic (e.g. adding it to a target address), the
858 type_length_units function should be used in order to get the length
859 expressed in target addressable memory units. */
860
861 unsigned int length;
862
863 /* * Core type, shared by a group of qualified types. */
864
865 struct main_type *main_type;
866 };
867
868 #define NULL_TYPE ((struct type *) 0)
869
870 struct fn_fieldlist
871 {
872
873 /* * The overloaded name.
874 This is generally allocated in the objfile's obstack.
875 However stabsread.c sometimes uses malloc. */
876
877 const char *name;
878
879 /* * The number of methods with this name. */
880
881 int length;
882
883 /* * The list of methods. */
884
885 struct fn_field *fn_fields;
886 };
887
888
889
890 struct fn_field
891 {
892 /* * If is_stub is clear, this is the mangled name which we can look
893 up to find the address of the method (FIXME: it would be cleaner
894 to have a pointer to the struct symbol here instead).
895
896 If is_stub is set, this is the portion of the mangled name which
897 specifies the arguments. For example, "ii", if there are two int
898 arguments, or "" if there are no arguments. See gdb_mangle_name
899 for the conversion from this format to the one used if is_stub is
900 clear. */
901
902 const char *physname;
903
904 /* * The function type for the method.
905
906 (This comment used to say "The return value of the method", but
907 that's wrong. The function type is expected here, i.e. something
908 with TYPE_CODE_METHOD, and *not* the return-value type). */
909
910 struct type *type;
911
912 /* * For virtual functions. First baseclass that defines this
913 virtual function. */
914
915 struct type *fcontext;
916
917 /* Attributes. */
918
919 unsigned int is_const:1;
920 unsigned int is_volatile:1;
921 unsigned int is_private:1;
922 unsigned int is_protected:1;
923 unsigned int is_artificial:1;
924
925 /* * A stub method only has some fields valid (but they are enough
926 to reconstruct the rest of the fields). */
927
928 unsigned int is_stub:1;
929
930 /* * True if this function is a constructor, false otherwise. */
931
932 unsigned int is_constructor : 1;
933
934 /* * Unused. */
935
936 unsigned int dummy:9;
937
938 /* * Index into that baseclass's virtual function table, minus 2;
939 else if static: VOFFSET_STATIC; else: 0. */
940
941 unsigned int voffset:16;
942
943 #define VOFFSET_STATIC 1
944
945 };
946
947 struct decl_field
948 {
949 /* * Unqualified name to be prefixed by owning class qualified
950 name. */
951
952 const char *name;
953
954 /* * Type this typedef named NAME represents. */
955
956 struct type *type;
957
958 /* * True if this field was declared protected, false otherwise. */
959 unsigned int is_protected : 1;
960
961 /* * True if this field was declared private, false otherwise. */
962 unsigned int is_private : 1;
963 };
964
965 /* * C++ language-specific information for TYPE_CODE_STRUCT and
966 TYPE_CODE_UNION nodes. */
967
968 struct cplus_struct_type
969 {
970 /* * Number of base classes this type derives from. The
971 baseclasses are stored in the first N_BASECLASSES fields
972 (i.e. the `fields' field of the struct type). The only fields
973 of struct field that are used are: type, name, loc.bitpos. */
974
975 short n_baseclasses;
976
977 /* * Field number of the virtual function table pointer in VPTR_BASETYPE.
978 All access to this field must be through TYPE_VPTR_FIELDNO as one
979 thing it does is check whether the field has been initialized.
980 Initially TYPE_RAW_CPLUS_SPECIFIC has the value of cplus_struct_default,
981 which for portability reasons doesn't initialize this field.
982 TYPE_VPTR_FIELDNO returns -1 for this case.
983
984 If -1, we were unable to find the virtual function table pointer in
985 initial symbol reading, and get_vptr_fieldno should be called to find
986 it if possible. get_vptr_fieldno will update this field if possible.
987 Otherwise the value is left at -1.
988
989 Unused if this type does not have virtual functions. */
990
991 short vptr_fieldno;
992
993 /* * Number of methods with unique names. All overloaded methods
994 with the same name count only once. */
995
996 short nfn_fields;
997
998 /* * Number of template arguments. */
999
1000 unsigned short n_template_arguments;
1001
1002 /* * One if this struct is a dynamic class, as defined by the
1003 Itanium C++ ABI: if it requires a virtual table pointer,
1004 because it or any of its base classes have one or more virtual
1005 member functions or virtual base classes. Minus one if not
1006 dynamic. Zero if not yet computed. */
1007
1008 int is_dynamic : 2;
1009
1010 /* * The base class which defined the virtual function table pointer. */
1011
1012 struct type *vptr_basetype;
1013
1014 /* * For derived classes, the number of base classes is given by
1015 n_baseclasses and virtual_field_bits is a bit vector containing
1016 one bit per base class. If the base class is virtual, the
1017 corresponding bit will be set.
1018 I.E, given:
1019
1020 class A{};
1021 class B{};
1022 class C : public B, public virtual A {};
1023
1024 B is a baseclass of C; A is a virtual baseclass for C.
1025 This is a C++ 2.0 language feature. */
1026
1027 B_TYPE *virtual_field_bits;
1028
1029 /* * For classes with private fields, the number of fields is
1030 given by nfields and private_field_bits is a bit vector
1031 containing one bit per field.
1032
1033 If the field is private, the corresponding bit will be set. */
1034
1035 B_TYPE *private_field_bits;
1036
1037 /* * For classes with protected fields, the number of fields is
1038 given by nfields and protected_field_bits is a bit vector
1039 containing one bit per field.
1040
1041 If the field is private, the corresponding bit will be set. */
1042
1043 B_TYPE *protected_field_bits;
1044
1045 /* * For classes with fields to be ignored, either this is
1046 optimized out or this field has length 0. */
1047
1048 B_TYPE *ignore_field_bits;
1049
1050 /* * For classes, structures, and unions, a description of each
1051 field, which consists of an overloaded name, followed by the
1052 types of arguments that the method expects, and then the name
1053 after it has been renamed to make it distinct.
1054
1055 fn_fieldlists points to an array of nfn_fields of these. */
1056
1057 struct fn_fieldlist *fn_fieldlists;
1058
1059 /* * typedefs defined inside this class. typedef_field points to
1060 an array of typedef_field_count elements. */
1061
1062 struct decl_field *typedef_field;
1063
1064 unsigned typedef_field_count;
1065
1066 /* * The nested types defined by this type. nested_types points to
1067 an array of nested_types_count elements. */
1068
1069 struct decl_field *nested_types;
1070
1071 unsigned nested_types_count;
1072
1073 /* * The template arguments. This is an array with
1074 N_TEMPLATE_ARGUMENTS elements. This is NULL for non-template
1075 classes. */
1076
1077 struct symbol **template_arguments;
1078 };
1079
1080 /* * Struct used to store conversion rankings. */
1081
1082 struct rank
1083 {
1084 short rank;
1085
1086 /* * When two conversions are of the same type and therefore have
1087 the same rank, subrank is used to differentiate the two.
1088
1089 Eg: Two derived-class-pointer to base-class-pointer conversions
1090 would both have base pointer conversion rank, but the
1091 conversion with the shorter distance to the ancestor is
1092 preferable. 'subrank' would be used to reflect that. */
1093
1094 short subrank;
1095 };
1096
1097 /* * Struct used for ranking a function for overload resolution. */
1098
1099 struct badness_vector
1100 {
1101 int length;
1102 struct rank *rank;
1103 };
1104
1105 /* * GNAT Ada-specific information for various Ada types. */
1106
1107 struct gnat_aux_type
1108 {
1109 /* * Parallel type used to encode information about dynamic types
1110 used in Ada (such as variant records, variable-size array,
1111 etc). */
1112 struct type* descriptive_type;
1113 };
1114
1115 /* * For TYPE_CODE_FUNC and TYPE_CODE_METHOD types. */
1116
1117 struct func_type
1118 {
1119 /* * The calling convention for targets supporting multiple ABIs.
1120 Right now this is only fetched from the Dwarf-2
1121 DW_AT_calling_convention attribute. The value is one of the
1122 DW_CC enum dwarf_calling_convention constants. */
1123
1124 unsigned calling_convention : 8;
1125
1126 /* * Whether this function normally returns to its caller. It is
1127 set from the DW_AT_noreturn attribute if set on the
1128 DW_TAG_subprogram. */
1129
1130 unsigned int is_noreturn : 1;
1131
1132 /* * Only those DW_TAG_call_site's in this function that have
1133 DW_AT_call_tail_call set are linked in this list. Function
1134 without its tail call list complete
1135 (DW_AT_call_all_tail_calls or its superset
1136 DW_AT_call_all_calls) has TAIL_CALL_LIST NULL, even if some
1137 DW_TAG_call_site's exist in such function. */
1138
1139 struct call_site *tail_call_list;
1140
1141 /* * For method types (TYPE_CODE_METHOD), the aggregate type that
1142 contains the method. */
1143
1144 struct type *self_type;
1145 };
1146
1147 /* struct call_site_parameter can be referenced in callees by several ways. */
1148
1149 enum call_site_parameter_kind
1150 {
1151 /* * Use field call_site_parameter.u.dwarf_reg. */
1152 CALL_SITE_PARAMETER_DWARF_REG,
1153
1154 /* * Use field call_site_parameter.u.fb_offset. */
1155 CALL_SITE_PARAMETER_FB_OFFSET,
1156
1157 /* * Use field call_site_parameter.u.param_offset. */
1158 CALL_SITE_PARAMETER_PARAM_OFFSET
1159 };
1160
1161 struct call_site_target
1162 {
1163 union field_location loc;
1164
1165 /* * Discriminant for union field_location. */
1166
1167 ENUM_BITFIELD(field_loc_kind) loc_kind : 3;
1168 };
1169
1170 union call_site_parameter_u
1171 {
1172 /* * DW_TAG_formal_parameter's DW_AT_location's DW_OP_regX
1173 as DWARF register number, for register passed
1174 parameters. */
1175
1176 int dwarf_reg;
1177
1178 /* * Offset from the callee's frame base, for stack passed
1179 parameters. This equals offset from the caller's stack
1180 pointer. */
1181
1182 CORE_ADDR fb_offset;
1183
1184 /* * Offset relative to the start of this PER_CU to
1185 DW_TAG_formal_parameter which is referenced by both
1186 caller and the callee. */
1187
1188 cu_offset param_cu_off;
1189 };
1190
1191 struct call_site_parameter
1192 {
1193 ENUM_BITFIELD (call_site_parameter_kind) kind : 2;
1194
1195 union call_site_parameter_u u;
1196
1197 /* * DW_TAG_formal_parameter's DW_AT_call_value. It is never NULL. */
1198
1199 const gdb_byte *value;
1200 size_t value_size;
1201
1202 /* * DW_TAG_formal_parameter's DW_AT_call_data_value.
1203 It may be NULL if not provided by DWARF. */
1204
1205 const gdb_byte *data_value;
1206 size_t data_value_size;
1207 };
1208
1209 /* * A place where a function gets called from, represented by
1210 DW_TAG_call_site. It can be looked up from symtab->call_site_htab. */
1211
1212 struct call_site
1213 {
1214 /* * Address of the first instruction after this call. It must be
1215 the first field as we overload core_addr_hash and core_addr_eq
1216 for it. */
1217
1218 CORE_ADDR pc;
1219
1220 /* * List successor with head in FUNC_TYPE.TAIL_CALL_LIST. */
1221
1222 struct call_site *tail_call_next;
1223
1224 /* * Describe DW_AT_call_target. Missing attribute uses
1225 FIELD_LOC_KIND_DWARF_BLOCK with FIELD_DWARF_BLOCK == NULL. */
1226
1227 struct call_site_target target;
1228
1229 /* * Size of the PARAMETER array. */
1230
1231 unsigned parameter_count;
1232
1233 /* * CU of the function where the call is located. It gets used
1234 for DWARF blocks execution in the parameter array below. */
1235
1236 struct dwarf2_per_cu_data *per_cu;
1237
1238 /* * Describe DW_TAG_call_site's DW_TAG_formal_parameter. */
1239
1240 struct call_site_parameter parameter[1];
1241 };
1242
1243 /* * The default value of TYPE_CPLUS_SPECIFIC(T) points to this shared
1244 static structure. */
1245
1246 extern const struct cplus_struct_type cplus_struct_default;
1247
1248 extern void allocate_cplus_struct_type (struct type *);
1249
1250 #define INIT_CPLUS_SPECIFIC(type) \
1251 (TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_CPLUS_STUFF, \
1252 TYPE_RAW_CPLUS_SPECIFIC (type) = (struct cplus_struct_type*) \
1253 &cplus_struct_default)
1254
1255 #define ALLOCATE_CPLUS_STRUCT_TYPE(type) allocate_cplus_struct_type (type)
1256
1257 #define HAVE_CPLUS_STRUCT(type) \
1258 (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_CPLUS_STUFF \
1259 && TYPE_RAW_CPLUS_SPECIFIC (type) != &cplus_struct_default)
1260
1261 extern const struct gnat_aux_type gnat_aux_default;
1262
1263 extern void allocate_gnat_aux_type (struct type *);
1264
1265 #define INIT_GNAT_SPECIFIC(type) \
1266 (TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_GNAT_STUFF, \
1267 TYPE_GNAT_SPECIFIC (type) = (struct gnat_aux_type *) &gnat_aux_default)
1268 #define ALLOCATE_GNAT_AUX_TYPE(type) allocate_gnat_aux_type (type)
1269 /* * A macro that returns non-zero if the type-specific data should be
1270 read as "gnat-stuff". */
1271 #define HAVE_GNAT_AUX_INFO(type) \
1272 (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_GNAT_STUFF)
1273
1274 #define INIT_FUNC_SPECIFIC(type) \
1275 (TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_FUNC, \
1276 TYPE_MAIN_TYPE (type)->type_specific.func_stuff = (struct func_type *) \
1277 TYPE_ZALLOC (type, \
1278 sizeof (*TYPE_MAIN_TYPE (type)->type_specific.func_stuff)))
1279
1280 #define TYPE_INSTANCE_FLAGS(thistype) (thistype)->instance_flags
1281 #define TYPE_MAIN_TYPE(thistype) (thistype)->main_type
1282 #define TYPE_NAME(thistype) TYPE_MAIN_TYPE(thistype)->name
1283 #define TYPE_TARGET_TYPE(thistype) TYPE_MAIN_TYPE(thistype)->target_type
1284 #define TYPE_POINTER_TYPE(thistype) (thistype)->pointer_type
1285 #define TYPE_REFERENCE_TYPE(thistype) (thistype)->reference_type
1286 #define TYPE_RVALUE_REFERENCE_TYPE(thistype) (thistype)->rvalue_reference_type
1287 #define TYPE_CHAIN(thistype) (thistype)->chain
1288 /* * Note that if thistype is a TYPEDEF type, you have to call check_typedef.
1289 But check_typedef does set the TYPE_LENGTH of the TYPEDEF type,
1290 so you only have to call check_typedef once. Since allocate_value
1291 calls check_typedef, TYPE_LENGTH (VALUE_TYPE (X)) is safe. */
1292 #define TYPE_LENGTH(thistype) (thistype)->length
1293
1294 /* * Return the alignment of the type in target addressable memory
1295 units, or 0 if no alignment was specified. */
1296 #define TYPE_RAW_ALIGN(thistype) type_raw_align (thistype)
1297
1298 /* * Return the alignment of the type in target addressable memory
1299 units, or 0 if no alignment was specified. */
1300 extern unsigned type_raw_align (struct type *);
1301
1302 /* * Return the alignment of the type in target addressable memory
1303 units. Return 0 if the alignment cannot be determined; but note
1304 that this makes an effort to compute the alignment even it it was
1305 not specified in the debug info. */
1306 extern unsigned type_align (struct type *);
1307
1308 /* * Set the alignment of the type. The alignment must be a power of
1309 2. Returns false if the given value does not fit in the available
1310 space in struct type. */
1311 extern bool set_type_align (struct type *, ULONGEST);
1312
1313 /* * Note that TYPE_CODE can be TYPE_CODE_TYPEDEF, so if you want the real
1314 type, you need to do TYPE_CODE (check_type (this_type)). */
1315 #define TYPE_CODE(thistype) TYPE_MAIN_TYPE(thistype)->code
1316 #define TYPE_NFIELDS(thistype) TYPE_MAIN_TYPE(thistype)->nfields
1317 #define TYPE_FIELDS(thistype) TYPE_MAIN_TYPE(thistype)->flds_bnds.fields
1318
1319 #define TYPE_INDEX_TYPE(type) TYPE_FIELD_TYPE (type, 0)
1320 #define TYPE_RANGE_DATA(thistype) TYPE_MAIN_TYPE(thistype)->flds_bnds.bounds
1321 #define TYPE_LOW_BOUND(range_type) \
1322 TYPE_RANGE_DATA(range_type)->low.data.const_val
1323 #define TYPE_HIGH_BOUND(range_type) \
1324 TYPE_RANGE_DATA(range_type)->high.data.const_val
1325 #define TYPE_LOW_BOUND_UNDEFINED(range_type) \
1326 (TYPE_RANGE_DATA(range_type)->low.kind == PROP_UNDEFINED)
1327 #define TYPE_HIGH_BOUND_UNDEFINED(range_type) \
1328 (TYPE_RANGE_DATA(range_type)->high.kind == PROP_UNDEFINED)
1329 #define TYPE_HIGH_BOUND_KIND(range_type) \
1330 TYPE_RANGE_DATA(range_type)->high.kind
1331 #define TYPE_LOW_BOUND_KIND(range_type) \
1332 TYPE_RANGE_DATA(range_type)->low.kind
1333
1334 /* Property accessors for the type data location. */
1335 #define TYPE_DATA_LOCATION(thistype) \
1336 get_dyn_prop (DYN_PROP_DATA_LOCATION, thistype)
1337 #define TYPE_DATA_LOCATION_BATON(thistype) \
1338 TYPE_DATA_LOCATION (thistype)->data.baton
1339 #define TYPE_DATA_LOCATION_ADDR(thistype) \
1340 TYPE_DATA_LOCATION (thistype)->data.const_val
1341 #define TYPE_DATA_LOCATION_KIND(thistype) \
1342 TYPE_DATA_LOCATION (thistype)->kind
1343
1344 /* Property accessors for the type allocated/associated. */
1345 #define TYPE_ALLOCATED_PROP(thistype) \
1346 get_dyn_prop (DYN_PROP_ALLOCATED, thistype)
1347 #define TYPE_ASSOCIATED_PROP(thistype) \
1348 get_dyn_prop (DYN_PROP_ASSOCIATED, thistype)
1349
1350 /* Attribute accessors for dynamic properties. */
1351 #define TYPE_DYN_PROP_LIST(thistype) \
1352 TYPE_MAIN_TYPE(thistype)->dyn_prop_list
1353 #define TYPE_DYN_PROP_BATON(dynprop) \
1354 dynprop->data.baton
1355 #define TYPE_DYN_PROP_ADDR(dynprop) \
1356 dynprop->data.const_val
1357 #define TYPE_DYN_PROP_KIND(dynprop) \
1358 dynprop->kind
1359
1360
1361 /* Moto-specific stuff for FORTRAN arrays. */
1362
1363 #define TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED(arraytype) \
1364 TYPE_HIGH_BOUND_UNDEFINED(TYPE_INDEX_TYPE(arraytype))
1365 #define TYPE_ARRAY_LOWER_BOUND_IS_UNDEFINED(arraytype) \
1366 TYPE_LOW_BOUND_UNDEFINED(TYPE_INDEX_TYPE(arraytype))
1367
1368 #define TYPE_ARRAY_UPPER_BOUND_VALUE(arraytype) \
1369 (TYPE_HIGH_BOUND(TYPE_INDEX_TYPE((arraytype))))
1370
1371 #define TYPE_ARRAY_LOWER_BOUND_VALUE(arraytype) \
1372 (TYPE_LOW_BOUND(TYPE_INDEX_TYPE((arraytype))))
1373
1374 /* C++ */
1375
1376 #define TYPE_SELF_TYPE(thistype) internal_type_self_type (thistype)
1377 /* Do not call this, use TYPE_SELF_TYPE. */
1378 extern struct type *internal_type_self_type (struct type *);
1379 extern void set_type_self_type (struct type *, struct type *);
1380
1381 extern int internal_type_vptr_fieldno (struct type *);
1382 extern void set_type_vptr_fieldno (struct type *, int);
1383 extern struct type *internal_type_vptr_basetype (struct type *);
1384 extern void set_type_vptr_basetype (struct type *, struct type *);
1385 #define TYPE_VPTR_FIELDNO(thistype) internal_type_vptr_fieldno (thistype)
1386 #define TYPE_VPTR_BASETYPE(thistype) internal_type_vptr_basetype (thistype)
1387
1388 #define TYPE_NFN_FIELDS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->nfn_fields
1389 #define TYPE_SPECIFIC_FIELD(thistype) \
1390 TYPE_MAIN_TYPE(thistype)->type_specific_field
1391 /* We need this tap-dance with the TYPE_RAW_SPECIFIC because of the case
1392 where we're trying to print an Ada array using the C language.
1393 In that case, there is no "cplus_stuff", but the C language assumes
1394 that there is. What we do, in that case, is pretend that there is
1395 an implicit one which is the default cplus stuff. */
1396 #define TYPE_CPLUS_SPECIFIC(thistype) \
1397 (!HAVE_CPLUS_STRUCT(thistype) \
1398 ? (struct cplus_struct_type*)&cplus_struct_default \
1399 : TYPE_RAW_CPLUS_SPECIFIC(thistype))
1400 #define TYPE_RAW_CPLUS_SPECIFIC(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.cplus_stuff
1401 #define TYPE_FLOATFORMAT(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.floatformat
1402 #define TYPE_GNAT_SPECIFIC(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.gnat_stuff
1403 #define TYPE_DESCRIPTIVE_TYPE(thistype) TYPE_GNAT_SPECIFIC(thistype)->descriptive_type
1404 #define TYPE_CALLING_CONVENTION(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->calling_convention
1405 #define TYPE_NO_RETURN(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->is_noreturn
1406 #define TYPE_TAIL_CALL_LIST(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->tail_call_list
1407 #define TYPE_BASECLASS(thistype,index) TYPE_FIELD_TYPE(thistype, index)
1408 #define TYPE_N_BASECLASSES(thistype) TYPE_CPLUS_SPECIFIC(thistype)->n_baseclasses
1409 #define TYPE_BASECLASS_NAME(thistype,index) TYPE_FIELD_NAME(thistype, index)
1410 #define TYPE_BASECLASS_BITPOS(thistype,index) TYPE_FIELD_BITPOS(thistype,index)
1411 #define BASETYPE_VIA_PUBLIC(thistype, index) \
1412 ((!TYPE_FIELD_PRIVATE(thistype, index)) && (!TYPE_FIELD_PROTECTED(thistype, index)))
1413 #define TYPE_CPLUS_DYNAMIC(thistype) TYPE_CPLUS_SPECIFIC (thistype)->is_dynamic
1414
1415 #define BASETYPE_VIA_VIRTUAL(thistype, index) \
1416 (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits == NULL ? 0 \
1417 : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (index)))
1418
1419 #define FIELD_TYPE(thisfld) ((thisfld).type)
1420 #define FIELD_NAME(thisfld) ((thisfld).name)
1421 #define FIELD_LOC_KIND(thisfld) ((thisfld).loc_kind)
1422 #define FIELD_BITPOS_LVAL(thisfld) ((thisfld).loc.bitpos)
1423 #define FIELD_BITPOS(thisfld) (FIELD_BITPOS_LVAL (thisfld) + 0)
1424 #define FIELD_ENUMVAL_LVAL(thisfld) ((thisfld).loc.enumval)
1425 #define FIELD_ENUMVAL(thisfld) (FIELD_ENUMVAL_LVAL (thisfld) + 0)
1426 #define FIELD_STATIC_PHYSNAME(thisfld) ((thisfld).loc.physname)
1427 #define FIELD_STATIC_PHYSADDR(thisfld) ((thisfld).loc.physaddr)
1428 #define FIELD_DWARF_BLOCK(thisfld) ((thisfld).loc.dwarf_block)
1429 #define SET_FIELD_BITPOS(thisfld, bitpos) \
1430 (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_BITPOS, \
1431 FIELD_BITPOS_LVAL (thisfld) = (bitpos))
1432 #define SET_FIELD_ENUMVAL(thisfld, enumval) \
1433 (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_ENUMVAL, \
1434 FIELD_ENUMVAL_LVAL (thisfld) = (enumval))
1435 #define SET_FIELD_PHYSNAME(thisfld, name) \
1436 (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSNAME, \
1437 FIELD_STATIC_PHYSNAME (thisfld) = (name))
1438 #define SET_FIELD_PHYSADDR(thisfld, addr) \
1439 (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSADDR, \
1440 FIELD_STATIC_PHYSADDR (thisfld) = (addr))
1441 #define SET_FIELD_DWARF_BLOCK(thisfld, addr) \
1442 (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_DWARF_BLOCK, \
1443 FIELD_DWARF_BLOCK (thisfld) = (addr))
1444 #define FIELD_ARTIFICIAL(thisfld) ((thisfld).artificial)
1445 #define FIELD_BITSIZE(thisfld) ((thisfld).bitsize)
1446
1447 #define TYPE_FIELD(thistype, n) TYPE_MAIN_TYPE(thistype)->flds_bnds.fields[n]
1448 #define TYPE_FIELD_TYPE(thistype, n) FIELD_TYPE(TYPE_FIELD(thistype, n))
1449 #define TYPE_FIELD_NAME(thistype, n) FIELD_NAME(TYPE_FIELD(thistype, n))
1450 #define TYPE_FIELD_LOC_KIND(thistype, n) FIELD_LOC_KIND (TYPE_FIELD (thistype, n))
1451 #define TYPE_FIELD_BITPOS(thistype, n) FIELD_BITPOS (TYPE_FIELD (thistype, n))
1452 #define TYPE_FIELD_ENUMVAL(thistype, n) FIELD_ENUMVAL (TYPE_FIELD (thistype, n))
1453 #define TYPE_FIELD_STATIC_PHYSNAME(thistype, n) FIELD_STATIC_PHYSNAME (TYPE_FIELD (thistype, n))
1454 #define TYPE_FIELD_STATIC_PHYSADDR(thistype, n) FIELD_STATIC_PHYSADDR (TYPE_FIELD (thistype, n))
1455 #define TYPE_FIELD_DWARF_BLOCK(thistype, n) FIELD_DWARF_BLOCK (TYPE_FIELD (thistype, n))
1456 #define TYPE_FIELD_ARTIFICIAL(thistype, n) FIELD_ARTIFICIAL(TYPE_FIELD(thistype,n))
1457 #define TYPE_FIELD_BITSIZE(thistype, n) FIELD_BITSIZE(TYPE_FIELD(thistype,n))
1458 #define TYPE_FIELD_PACKED(thistype, n) (FIELD_BITSIZE(TYPE_FIELD(thistype,n))!=0)
1459
1460 #define TYPE_FIELD_PRIVATE_BITS(thistype) \
1461 TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits
1462 #define TYPE_FIELD_PROTECTED_BITS(thistype) \
1463 TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits
1464 #define TYPE_FIELD_IGNORE_BITS(thistype) \
1465 TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits
1466 #define TYPE_FIELD_VIRTUAL_BITS(thistype) \
1467 TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits
1468 #define SET_TYPE_FIELD_PRIVATE(thistype, n) \
1469 B_SET (TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n))
1470 #define SET_TYPE_FIELD_PROTECTED(thistype, n) \
1471 B_SET (TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n))
1472 #define SET_TYPE_FIELD_IGNORE(thistype, n) \
1473 B_SET (TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits, (n))
1474 #define SET_TYPE_FIELD_VIRTUAL(thistype, n) \
1475 B_SET (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n))
1476 #define TYPE_FIELD_PRIVATE(thistype, n) \
1477 (TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits == NULL ? 0 \
1478 : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n)))
1479 #define TYPE_FIELD_PROTECTED(thistype, n) \
1480 (TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits == NULL ? 0 \
1481 : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n)))
1482 #define TYPE_FIELD_IGNORE(thistype, n) \
1483 (TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits == NULL ? 0 \
1484 : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits, (n)))
1485 #define TYPE_FIELD_VIRTUAL(thistype, n) \
1486 (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits == NULL ? 0 \
1487 : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n)))
1488
1489 #define TYPE_FN_FIELDLISTS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists
1490 #define TYPE_FN_FIELDLIST(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n]
1491 #define TYPE_FN_FIELDLIST1(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].fn_fields
1492 #define TYPE_FN_FIELDLIST_NAME(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].name
1493 #define TYPE_FN_FIELDLIST_LENGTH(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].length
1494
1495 #define TYPE_N_TEMPLATE_ARGUMENTS(thistype) \
1496 TYPE_CPLUS_SPECIFIC (thistype)->n_template_arguments
1497 #define TYPE_TEMPLATE_ARGUMENTS(thistype) \
1498 TYPE_CPLUS_SPECIFIC (thistype)->template_arguments
1499 #define TYPE_TEMPLATE_ARGUMENT(thistype, n) \
1500 TYPE_CPLUS_SPECIFIC (thistype)->template_arguments[n]
1501
1502 #define TYPE_FN_FIELD(thisfn, n) (thisfn)[n]
1503 #define TYPE_FN_FIELD_PHYSNAME(thisfn, n) (thisfn)[n].physname
1504 #define TYPE_FN_FIELD_TYPE(thisfn, n) (thisfn)[n].type
1505 #define TYPE_FN_FIELD_ARGS(thisfn, n) TYPE_FIELDS ((thisfn)[n].type)
1506 #define TYPE_FN_FIELD_CONST(thisfn, n) ((thisfn)[n].is_const)
1507 #define TYPE_FN_FIELD_VOLATILE(thisfn, n) ((thisfn)[n].is_volatile)
1508 #define TYPE_FN_FIELD_PRIVATE(thisfn, n) ((thisfn)[n].is_private)
1509 #define TYPE_FN_FIELD_PROTECTED(thisfn, n) ((thisfn)[n].is_protected)
1510 #define TYPE_FN_FIELD_ARTIFICIAL(thisfn, n) ((thisfn)[n].is_artificial)
1511 #define TYPE_FN_FIELD_STUB(thisfn, n) ((thisfn)[n].is_stub)
1512 #define TYPE_FN_FIELD_CONSTRUCTOR(thisfn, n) ((thisfn)[n].is_constructor)
1513 #define TYPE_FN_FIELD_FCONTEXT(thisfn, n) ((thisfn)[n].fcontext)
1514 #define TYPE_FN_FIELD_VOFFSET(thisfn, n) ((thisfn)[n].voffset-2)
1515 #define TYPE_FN_FIELD_VIRTUAL_P(thisfn, n) ((thisfn)[n].voffset > 1)
1516 #define TYPE_FN_FIELD_STATIC_P(thisfn, n) ((thisfn)[n].voffset == VOFFSET_STATIC)
1517
1518 /* Accessors for typedefs defined by a class. */
1519 #define TYPE_TYPEDEF_FIELD_ARRAY(thistype) \
1520 TYPE_CPLUS_SPECIFIC (thistype)->typedef_field
1521 #define TYPE_TYPEDEF_FIELD(thistype, n) \
1522 TYPE_CPLUS_SPECIFIC (thistype)->typedef_field[n]
1523 #define TYPE_TYPEDEF_FIELD_NAME(thistype, n) \
1524 TYPE_TYPEDEF_FIELD (thistype, n).name
1525 #define TYPE_TYPEDEF_FIELD_TYPE(thistype, n) \
1526 TYPE_TYPEDEF_FIELD (thistype, n).type
1527 #define TYPE_TYPEDEF_FIELD_COUNT(thistype) \
1528 TYPE_CPLUS_SPECIFIC (thistype)->typedef_field_count
1529 #define TYPE_TYPEDEF_FIELD_PROTECTED(thistype, n) \
1530 TYPE_TYPEDEF_FIELD (thistype, n).is_protected
1531 #define TYPE_TYPEDEF_FIELD_PRIVATE(thistype, n) \
1532 TYPE_TYPEDEF_FIELD (thistype, n).is_private
1533
1534 #define TYPE_NESTED_TYPES_ARRAY(thistype) \
1535 TYPE_CPLUS_SPECIFIC (thistype)->nested_types
1536 #define TYPE_NESTED_TYPES_FIELD(thistype, n) \
1537 TYPE_CPLUS_SPECIFIC (thistype)->nested_types[n]
1538 #define TYPE_NESTED_TYPES_FIELD_NAME(thistype, n) \
1539 TYPE_NESTED_TYPES_FIELD (thistype, n).name
1540 #define TYPE_NESTED_TYPES_FIELD_TYPE(thistype, n) \
1541 TYPE_NESTED_TYPES_FIELD (thistype, n).type
1542 #define TYPE_NESTED_TYPES_COUNT(thistype) \
1543 TYPE_CPLUS_SPECIFIC (thistype)->nested_types_count
1544 #define TYPE_NESTED_TYPES_FIELD_PROTECTED(thistype, n) \
1545 TYPE_NESTED_TYPES_FIELD (thistype, n).is_protected
1546 #define TYPE_NESTED_TYPES_FIELD_PRIVATE(thistype, n) \
1547 TYPE_NESTED_TYPES_FIELD (thistype, n).is_private
1548
1549 #define TYPE_IS_OPAQUE(thistype) \
1550 (((TYPE_CODE (thistype) == TYPE_CODE_STRUCT) \
1551 || (TYPE_CODE (thistype) == TYPE_CODE_UNION)) \
1552 && (TYPE_NFIELDS (thistype) == 0) \
1553 && (!HAVE_CPLUS_STRUCT (thistype) \
1554 || TYPE_NFN_FIELDS (thistype) == 0) \
1555 && (TYPE_STUB (thistype) || !TYPE_STUB_SUPPORTED (thistype)))
1556
1557 /* * A helper macro that returns the name of a type or "unnamed type"
1558 if the type has no name. */
1559
1560 #define TYPE_SAFE_NAME(type) \
1561 (TYPE_NAME (type) ? TYPE_NAME (type) : _("<unnamed type>"))
1562
1563 /* * A helper macro that returns the name of an error type. If the
1564 type has a name, it is used; otherwise, a default is used. */
1565
1566 #define TYPE_ERROR_NAME(type) \
1567 (TYPE_NAME (type) ? TYPE_NAME (type) : _("<error type>"))
1568
1569 /* Given TYPE, return its floatformat. */
1570 const struct floatformat *floatformat_from_type (const struct type *type);
1571
1572 struct builtin_type
1573 {
1574 /* Integral types. */
1575
1576 /* Implicit size/sign (based on the architecture's ABI). */
1577 struct type *builtin_void;
1578 struct type *builtin_char;
1579 struct type *builtin_short;
1580 struct type *builtin_int;
1581 struct type *builtin_long;
1582 struct type *builtin_signed_char;
1583 struct type *builtin_unsigned_char;
1584 struct type *builtin_unsigned_short;
1585 struct type *builtin_unsigned_int;
1586 struct type *builtin_unsigned_long;
1587 struct type *builtin_float;
1588 struct type *builtin_double;
1589 struct type *builtin_long_double;
1590 struct type *builtin_complex;
1591 struct type *builtin_double_complex;
1592 struct type *builtin_string;
1593 struct type *builtin_bool;
1594 struct type *builtin_long_long;
1595 struct type *builtin_unsigned_long_long;
1596 struct type *builtin_decfloat;
1597 struct type *builtin_decdouble;
1598 struct type *builtin_declong;
1599
1600 /* "True" character types.
1601 We use these for the '/c' print format, because c_char is just a
1602 one-byte integral type, which languages less laid back than C
1603 will print as ... well, a one-byte integral type. */
1604 struct type *builtin_true_char;
1605 struct type *builtin_true_unsigned_char;
1606
1607 /* Explicit sizes - see C9X <intypes.h> for naming scheme. The "int0"
1608 is for when an architecture needs to describe a register that has
1609 no size. */
1610 struct type *builtin_int0;
1611 struct type *builtin_int8;
1612 struct type *builtin_uint8;
1613 struct type *builtin_int16;
1614 struct type *builtin_uint16;
1615 struct type *builtin_int24;
1616 struct type *builtin_uint24;
1617 struct type *builtin_int32;
1618 struct type *builtin_uint32;
1619 struct type *builtin_int64;
1620 struct type *builtin_uint64;
1621 struct type *builtin_int128;
1622 struct type *builtin_uint128;
1623
1624 /* Wide character types. */
1625 struct type *builtin_char16;
1626 struct type *builtin_char32;
1627 struct type *builtin_wchar;
1628
1629 /* Pointer types. */
1630
1631 /* * `pointer to data' type. Some target platforms use an implicitly
1632 {sign,zero} -extended 32-bit ABI pointer on a 64-bit ISA. */
1633 struct type *builtin_data_ptr;
1634
1635 /* * `pointer to function (returning void)' type. Harvard
1636 architectures mean that ABI function and code pointers are not
1637 interconvertible. Similarly, since ANSI, C standards have
1638 explicitly said that pointers to functions and pointers to data
1639 are not interconvertible --- that is, you can't cast a function
1640 pointer to void * and back, and expect to get the same value.
1641 However, all function pointer types are interconvertible, so void
1642 (*) () can server as a generic function pointer. */
1643
1644 struct type *builtin_func_ptr;
1645
1646 /* * `function returning pointer to function (returning void)' type.
1647 The final void return type is not significant for it. */
1648
1649 struct type *builtin_func_func;
1650
1651 /* Special-purpose types. */
1652
1653 /* * This type is used to represent a GDB internal function. */
1654
1655 struct type *internal_fn;
1656
1657 /* * This type is used to represent an xmethod. */
1658 struct type *xmethod;
1659 };
1660
1661 /* * Return the type table for the specified architecture. */
1662
1663 extern const struct builtin_type *builtin_type (struct gdbarch *gdbarch);
1664
1665 /* * Per-objfile types used by symbol readers. */
1666
1667 struct objfile_type
1668 {
1669 /* Basic types based on the objfile architecture. */
1670 struct type *builtin_void;
1671 struct type *builtin_char;
1672 struct type *builtin_short;
1673 struct type *builtin_int;
1674 struct type *builtin_long;
1675 struct type *builtin_long_long;
1676 struct type *builtin_signed_char;
1677 struct type *builtin_unsigned_char;
1678 struct type *builtin_unsigned_short;
1679 struct type *builtin_unsigned_int;
1680 struct type *builtin_unsigned_long;
1681 struct type *builtin_unsigned_long_long;
1682 struct type *builtin_float;
1683 struct type *builtin_double;
1684 struct type *builtin_long_double;
1685
1686 /* * This type is used to represent symbol addresses. */
1687 struct type *builtin_core_addr;
1688
1689 /* * This type represents a type that was unrecognized in symbol
1690 read-in. */
1691 struct type *builtin_error;
1692
1693 /* * Types used for symbols with no debug information. */
1694 struct type *nodebug_text_symbol;
1695 struct type *nodebug_text_gnu_ifunc_symbol;
1696 struct type *nodebug_got_plt_symbol;
1697 struct type *nodebug_data_symbol;
1698 struct type *nodebug_unknown_symbol;
1699 struct type *nodebug_tls_symbol;
1700 };
1701
1702 /* * Return the type table for the specified objfile. */
1703
1704 extern const struct objfile_type *objfile_type (struct objfile *objfile);
1705
1706 /* Explicit floating-point formats. See "floatformat.h". */
1707 extern const struct floatformat *floatformats_ieee_half[BFD_ENDIAN_UNKNOWN];
1708 extern const struct floatformat *floatformats_ieee_single[BFD_ENDIAN_UNKNOWN];
1709 extern const struct floatformat *floatformats_ieee_double[BFD_ENDIAN_UNKNOWN];
1710 extern const struct floatformat *floatformats_ieee_double_littlebyte_bigword[BFD_ENDIAN_UNKNOWN];
1711 extern const struct floatformat *floatformats_i387_ext[BFD_ENDIAN_UNKNOWN];
1712 extern const struct floatformat *floatformats_m68881_ext[BFD_ENDIAN_UNKNOWN];
1713 extern const struct floatformat *floatformats_arm_ext[BFD_ENDIAN_UNKNOWN];
1714 extern const struct floatformat *floatformats_ia64_spill[BFD_ENDIAN_UNKNOWN];
1715 extern const struct floatformat *floatformats_ia64_quad[BFD_ENDIAN_UNKNOWN];
1716 extern const struct floatformat *floatformats_vax_f[BFD_ENDIAN_UNKNOWN];
1717 extern const struct floatformat *floatformats_vax_d[BFD_ENDIAN_UNKNOWN];
1718 extern const struct floatformat *floatformats_ibm_long_double[BFD_ENDIAN_UNKNOWN];
1719
1720
1721 /* Allocate space for storing data associated with a particular
1722 type. We ensure that the space is allocated using the same
1723 mechanism that was used to allocate the space for the type
1724 structure itself. I.e. if the type is on an objfile's
1725 objfile_obstack, then the space for data associated with that type
1726 will also be allocated on the objfile_obstack. If the type is
1727 associated with a gdbarch, then the space for data associated with that
1728 type will also be allocated on the gdbarch_obstack.
1729
1730 If a type is not associated with neither an objfile or a gdbarch then
1731 you should not use this macro to allocate space for data, instead you
1732 should call xmalloc directly, and ensure the memory is correctly freed
1733 when it is no longer needed. */
1734
1735 #define TYPE_ALLOC(t,size) \
1736 (obstack_alloc ((TYPE_OBJFILE_OWNED (t) \
1737 ? &TYPE_OBJFILE (t)->objfile_obstack \
1738 : gdbarch_obstack (TYPE_OWNER (t).gdbarch)), \
1739 size))
1740
1741
1742 /* See comment on TYPE_ALLOC. */
1743
1744 #define TYPE_ZALLOC(t,size) (memset (TYPE_ALLOC (t, size), 0, size))
1745
1746 /* Use alloc_type to allocate a type owned by an objfile. Use
1747 alloc_type_arch to allocate a type owned by an architecture. Use
1748 alloc_type_copy to allocate a type with the same owner as a
1749 pre-existing template type, no matter whether objfile or
1750 gdbarch. */
1751 extern struct type *alloc_type (struct objfile *);
1752 extern struct type *alloc_type_arch (struct gdbarch *);
1753 extern struct type *alloc_type_copy (const struct type *);
1754
1755 /* * Return the type's architecture. For types owned by an
1756 architecture, that architecture is returned. For types owned by an
1757 objfile, that objfile's architecture is returned. */
1758
1759 extern struct gdbarch *get_type_arch (const struct type *);
1760
1761 /* * This returns the target type (or NULL) of TYPE, also skipping
1762 past typedefs. */
1763
1764 extern struct type *get_target_type (struct type *type);
1765
1766 /* Return the equivalent of TYPE_LENGTH, but in number of target
1767 addressable memory units of the associated gdbarch instead of bytes. */
1768
1769 extern unsigned int type_length_units (struct type *type);
1770
1771 /* * Helper function to construct objfile-owned types. */
1772
1773 extern struct type *init_type (struct objfile *, enum type_code, int,
1774 const char *);
1775 extern struct type *init_integer_type (struct objfile *, int, int,
1776 const char *);
1777 extern struct type *init_character_type (struct objfile *, int, int,
1778 const char *);
1779 extern struct type *init_boolean_type (struct objfile *, int, int,
1780 const char *);
1781 extern struct type *init_float_type (struct objfile *, int, const char *,
1782 const struct floatformat **);
1783 extern struct type *init_decfloat_type (struct objfile *, int, const char *);
1784 extern struct type *init_complex_type (struct objfile *, const char *,
1785 struct type *);
1786 extern struct type *init_pointer_type (struct objfile *, int, const char *,
1787 struct type *);
1788
1789 /* Helper functions to construct architecture-owned types. */
1790 extern struct type *arch_type (struct gdbarch *, enum type_code, int,
1791 const char *);
1792 extern struct type *arch_integer_type (struct gdbarch *, int, int,
1793 const char *);
1794 extern struct type *arch_character_type (struct gdbarch *, int, int,
1795 const char *);
1796 extern struct type *arch_boolean_type (struct gdbarch *, int, int,
1797 const char *);
1798 extern struct type *arch_float_type (struct gdbarch *, int, const char *,
1799 const struct floatformat **);
1800 extern struct type *arch_decfloat_type (struct gdbarch *, int, const char *);
1801 extern struct type *arch_complex_type (struct gdbarch *, const char *,
1802 struct type *);
1803 extern struct type *arch_pointer_type (struct gdbarch *, int, const char *,
1804 struct type *);
1805
1806 /* Helper functions to construct a struct or record type. An
1807 initially empty type is created using arch_composite_type().
1808 Fields are then added using append_composite_type_field*(). A union
1809 type has its size set to the largest field. A struct type has each
1810 field packed against the previous. */
1811
1812 extern struct type *arch_composite_type (struct gdbarch *gdbarch,
1813 const char *name, enum type_code code);
1814 extern void append_composite_type_field (struct type *t, const char *name,
1815 struct type *field);
1816 extern void append_composite_type_field_aligned (struct type *t,
1817 const char *name,
1818 struct type *field,
1819 int alignment);
1820 struct field *append_composite_type_field_raw (struct type *t, const char *name,
1821 struct type *field);
1822
1823 /* Helper functions to construct a bit flags type. An initially empty
1824 type is created using arch_flag_type(). Flags are then added using
1825 append_flag_type_field() and append_flag_type_flag(). */
1826 extern struct type *arch_flags_type (struct gdbarch *gdbarch,
1827 const char *name, int bit);
1828 extern void append_flags_type_field (struct type *type,
1829 int start_bitpos, int nr_bits,
1830 struct type *field_type, const char *name);
1831 extern void append_flags_type_flag (struct type *type, int bitpos,
1832 const char *name);
1833
1834 extern void make_vector_type (struct type *array_type);
1835 extern struct type *init_vector_type (struct type *elt_type, int n);
1836
1837 extern struct type *lookup_reference_type (struct type *, enum type_code);
1838 extern struct type *lookup_lvalue_reference_type (struct type *);
1839 extern struct type *lookup_rvalue_reference_type (struct type *);
1840
1841
1842 extern struct type *make_reference_type (struct type *, struct type **,
1843 enum type_code);
1844
1845 extern struct type *make_cv_type (int, int, struct type *, struct type **);
1846
1847 extern struct type *make_restrict_type (struct type *);
1848
1849 extern struct type *make_unqualified_type (struct type *);
1850
1851 extern struct type *make_atomic_type (struct type *);
1852
1853 extern void replace_type (struct type *, struct type *);
1854
1855 extern int address_space_name_to_int (struct gdbarch *, char *);
1856
1857 extern const char *address_space_int_to_name (struct gdbarch *, int);
1858
1859 extern struct type *make_type_with_address_space (struct type *type,
1860 int space_identifier);
1861
1862 extern struct type *lookup_memberptr_type (struct type *, struct type *);
1863
1864 extern struct type *lookup_methodptr_type (struct type *);
1865
1866 extern void smash_to_method_type (struct type *type, struct type *self_type,
1867 struct type *to_type, struct field *args,
1868 int nargs, int varargs);
1869
1870 extern void smash_to_memberptr_type (struct type *, struct type *,
1871 struct type *);
1872
1873 extern void smash_to_methodptr_type (struct type *, struct type *);
1874
1875 extern struct type *allocate_stub_method (struct type *);
1876
1877 extern const char *type_name_or_error (struct type *type);
1878
1879 extern struct type *lookup_struct_elt_type (struct type *, const char *, int);
1880
1881 extern struct type *make_pointer_type (struct type *, struct type **);
1882
1883 extern struct type *lookup_pointer_type (struct type *);
1884
1885 extern struct type *make_function_type (struct type *, struct type **);
1886
1887 extern struct type *lookup_function_type (struct type *);
1888
1889 extern struct type *lookup_function_type_with_arguments (struct type *,
1890 int,
1891 struct type **);
1892
1893 extern struct type *create_static_range_type (struct type *, struct type *,
1894 LONGEST, LONGEST);
1895
1896
1897 extern struct type *create_array_type_with_stride
1898 (struct type *, struct type *, struct type *,
1899 struct dynamic_prop *, unsigned int);
1900
1901 extern struct type *create_range_type (struct type *, struct type *,
1902 const struct dynamic_prop *,
1903 const struct dynamic_prop *);
1904
1905 extern struct type *create_array_type (struct type *, struct type *,
1906 struct type *);
1907
1908 extern struct type *lookup_array_range_type (struct type *, LONGEST, LONGEST);
1909
1910 extern struct type *create_string_type (struct type *, struct type *,
1911 struct type *);
1912 extern struct type *lookup_string_range_type (struct type *, LONGEST, LONGEST);
1913
1914 extern struct type *create_set_type (struct type *, struct type *);
1915
1916 extern struct type *lookup_unsigned_typename (const struct language_defn *,
1917 struct gdbarch *, const char *);
1918
1919 extern struct type *lookup_signed_typename (const struct language_defn *,
1920 struct gdbarch *, const char *);
1921
1922 extern void get_unsigned_type_max (struct type *, ULONGEST *);
1923
1924 extern void get_signed_type_minmax (struct type *, LONGEST *, LONGEST *);
1925
1926 /* * Resolve all dynamic values of a type e.g. array bounds to static values.
1927 ADDR specifies the location of the variable the type is bound to.
1928 If TYPE has no dynamic properties return TYPE; otherwise a new type with
1929 static properties is returned. */
1930 extern struct type *resolve_dynamic_type (struct type *type,
1931 const gdb_byte *valaddr,
1932 CORE_ADDR addr);
1933
1934 /* * Predicate if the type has dynamic values, which are not resolved yet. */
1935 extern int is_dynamic_type (struct type *type);
1936
1937 /* * Return the dynamic property of the requested KIND from TYPE's
1938 list of dynamic properties. */
1939 extern struct dynamic_prop *get_dyn_prop
1940 (enum dynamic_prop_node_kind kind, const struct type *type);
1941
1942 /* * Given a dynamic property PROP of a given KIND, add this dynamic
1943 property to the given TYPE.
1944
1945 This function assumes that TYPE is objfile-owned. */
1946 extern void add_dyn_prop
1947 (enum dynamic_prop_node_kind kind, struct dynamic_prop prop,
1948 struct type *type);
1949
1950 extern void remove_dyn_prop (enum dynamic_prop_node_kind prop_kind,
1951 struct type *type);
1952
1953 extern struct type *check_typedef (struct type *);
1954
1955 extern void check_stub_method_group (struct type *, int);
1956
1957 extern char *gdb_mangle_name (struct type *, int, int);
1958
1959 extern struct type *lookup_typename (const struct language_defn *,
1960 struct gdbarch *, const char *,
1961 const struct block *, int);
1962
1963 extern struct type *lookup_template_type (char *, struct type *,
1964 const struct block *);
1965
1966 extern int get_vptr_fieldno (struct type *, struct type **);
1967
1968 extern int get_discrete_bounds (struct type *, LONGEST *, LONGEST *);
1969
1970 extern int get_array_bounds (struct type *type, LONGEST *low_bound,
1971 LONGEST *high_bound);
1972
1973 extern int discrete_position (struct type *type, LONGEST val, LONGEST *pos);
1974
1975 extern int class_types_same_p (const struct type *, const struct type *);
1976
1977 extern int is_ancestor (struct type *, struct type *);
1978
1979 extern int is_public_ancestor (struct type *, struct type *);
1980
1981 extern int is_unique_ancestor (struct type *, struct value *);
1982
1983 /* Overload resolution */
1984
1985 #define LENGTH_MATCH(bv) ((bv)->rank[0])
1986
1987 /* * Badness if parameter list length doesn't match arg list length. */
1988 extern const struct rank LENGTH_MISMATCH_BADNESS;
1989
1990 /* * Dummy badness value for nonexistent parameter positions. */
1991 extern const struct rank TOO_FEW_PARAMS_BADNESS;
1992 /* * Badness if no conversion among types. */
1993 extern const struct rank INCOMPATIBLE_TYPE_BADNESS;
1994
1995 /* * Badness of an exact match. */
1996 extern const struct rank EXACT_MATCH_BADNESS;
1997
1998 /* * Badness of integral promotion. */
1999 extern const struct rank INTEGER_PROMOTION_BADNESS;
2000 /* * Badness of floating promotion. */
2001 extern const struct rank FLOAT_PROMOTION_BADNESS;
2002 /* * Badness of converting a derived class pointer
2003 to a base class pointer. */
2004 extern const struct rank BASE_PTR_CONVERSION_BADNESS;
2005 /* * Badness of integral conversion. */
2006 extern const struct rank INTEGER_CONVERSION_BADNESS;
2007 /* * Badness of floating conversion. */
2008 extern const struct rank FLOAT_CONVERSION_BADNESS;
2009 /* * Badness of integer<->floating conversions. */
2010 extern const struct rank INT_FLOAT_CONVERSION_BADNESS;
2011 /* * Badness of conversion of pointer to void pointer. */
2012 extern const struct rank VOID_PTR_CONVERSION_BADNESS;
2013 /* * Badness of conversion to boolean. */
2014 extern const struct rank BOOL_CONVERSION_BADNESS;
2015 /* * Badness of converting derived to base class. */
2016 extern const struct rank BASE_CONVERSION_BADNESS;
2017 /* * Badness of converting from non-reference to reference. Subrank
2018 is the type of reference conversion being done. */
2019 extern const struct rank REFERENCE_CONVERSION_BADNESS;
2020 /* * Conversion to rvalue reference. */
2021 #define REFERENCE_CONVERSION_RVALUE 1
2022 /* * Conversion to const lvalue reference. */
2023 #define REFERENCE_CONVERSION_CONST_LVALUE 2
2024
2025 /* * Badness of converting integer 0 to NULL pointer. */
2026 extern const struct rank NULL_POINTER_CONVERSION;
2027 /* * Badness of cv-conversion. Subrank is a flag describing the conversions
2028 being done. */
2029 extern const struct rank CV_CONVERSION_BADNESS;
2030 #define CV_CONVERSION_CONST 1
2031 #define CV_CONVERSION_VOLATILE 2
2032
2033 /* Non-standard conversions allowed by the debugger */
2034
2035 /* * Converting a pointer to an int is usually OK. */
2036 extern const struct rank NS_POINTER_CONVERSION_BADNESS;
2037
2038 /* * Badness of converting a (non-zero) integer constant
2039 to a pointer. */
2040 extern const struct rank NS_INTEGER_POINTER_CONVERSION_BADNESS;
2041
2042 extern struct rank sum_ranks (struct rank a, struct rank b);
2043 extern int compare_ranks (struct rank a, struct rank b);
2044
2045 extern int compare_badness (struct badness_vector *, struct badness_vector *);
2046
2047 extern struct badness_vector *rank_function (struct type **, int,
2048 struct value **, int);
2049
2050 extern struct rank rank_one_type (struct type *, struct type *,
2051 struct value *);
2052
2053 extern void recursive_dump_type (struct type *, int);
2054
2055 extern int field_is_static (struct field *);
2056
2057 /* printcmd.c */
2058
2059 extern void print_scalar_formatted (const gdb_byte *, struct type *,
2060 const struct value_print_options *,
2061 int, struct ui_file *);
2062
2063 extern int can_dereference (struct type *);
2064
2065 extern int is_integral_type (struct type *);
2066
2067 extern int is_floating_type (struct type *);
2068
2069 extern int is_scalar_type (struct type *type);
2070
2071 extern int is_scalar_type_recursive (struct type *);
2072
2073 extern int class_or_union_p (const struct type *);
2074
2075 extern void maintenance_print_type (const char *, int);
2076
2077 extern htab_t create_copied_types_hash (struct objfile *objfile);
2078
2079 extern struct type *copy_type_recursive (struct objfile *objfile,
2080 struct type *type,
2081 htab_t copied_types);
2082
2083 extern struct type *copy_type (const struct type *type);
2084
2085 extern bool types_equal (struct type *, struct type *);
2086
2087 extern bool types_deeply_equal (struct type *, struct type *);
2088
2089 extern int type_not_allocated (const struct type *type);
2090
2091 extern int type_not_associated (const struct type *type);
2092
2093 #endif /* GDBTYPES_H */
This page took 0.112107 seconds and 4 git commands to generate.