]>
Commit | Line | Data |
---|---|---|
1 | /* Internal type definitions for GDB. | |
2 | ||
3 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, | |
4 | 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010 | |
5 | Free Software Foundation, Inc. | |
6 | ||
7 | Contributed by Cygnus Support, using pieces from other GDB modules. | |
8 | ||
9 | This file is part of GDB. | |
10 | ||
11 | This program is free software; you can redistribute it and/or modify | |
12 | it under the terms of the GNU General Public License as published by | |
13 | the Free Software Foundation; either version 3 of the License, or | |
14 | (at your option) any later version. | |
15 | ||
16 | This program is distributed in the hope that it will be useful, | |
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 | GNU General Public License for more details. | |
20 | ||
21 | You should have received a copy of the GNU General Public License | |
22 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
23 | ||
24 | #if !defined (GDBTYPES_H) | |
25 | #define GDBTYPES_H 1 | |
26 | ||
27 | #include "hashtab.h" | |
28 | ||
29 | /* Forward declarations for prototypes. */ | |
30 | struct field; | |
31 | struct block; | |
32 | struct value_print_options; | |
33 | struct language_defn; | |
34 | ||
35 | /* Some macros for char-based bitfields. */ | |
36 | ||
37 | #define B_SET(a,x) ((a)[(x)>>3] |= (1 << ((x)&7))) | |
38 | #define B_CLR(a,x) ((a)[(x)>>3] &= ~(1 << ((x)&7))) | |
39 | #define B_TST(a,x) ((a)[(x)>>3] & (1 << ((x)&7))) | |
40 | #define B_TYPE unsigned char | |
41 | #define B_BYTES(x) ( 1 + ((x)>>3) ) | |
42 | #define B_CLRALL(a,x) memset ((a), 0, B_BYTES(x)) | |
43 | ||
44 | /* Different kinds of data types are distinguished by the `code' field. */ | |
45 | ||
46 | enum type_code | |
47 | { | |
48 | TYPE_CODE_UNDEF, /* Not used; catches errors */ | |
49 | TYPE_CODE_PTR, /* Pointer type */ | |
50 | ||
51 | /* Array type with lower & upper bounds. | |
52 | ||
53 | Regardless of the language, GDB represents multidimensional | |
54 | array types the way C does: as arrays of arrays. So an | |
55 | instance of a GDB array type T can always be seen as a series | |
56 | of instances of TYPE_TARGET_TYPE (T) laid out sequentially in | |
57 | memory. | |
58 | ||
59 | Row-major languages like C lay out multi-dimensional arrays so | |
60 | that incrementing the rightmost index in a subscripting | |
61 | expression results in the smallest change in the address of the | |
62 | element referred to. Column-major languages like Fortran lay | |
63 | them out so that incrementing the leftmost index results in the | |
64 | smallest change. | |
65 | ||
66 | This means that, in column-major languages, working our way | |
67 | from type to target type corresponds to working through indices | |
68 | from right to left, not left to right. */ | |
69 | TYPE_CODE_ARRAY, | |
70 | ||
71 | TYPE_CODE_STRUCT, /* C struct or Pascal record */ | |
72 | TYPE_CODE_UNION, /* C union or Pascal variant part */ | |
73 | TYPE_CODE_ENUM, /* Enumeration type */ | |
74 | TYPE_CODE_FLAGS, /* Bit flags type */ | |
75 | TYPE_CODE_FUNC, /* Function type */ | |
76 | TYPE_CODE_INT, /* Integer type */ | |
77 | ||
78 | /* Floating type. This is *NOT* a complex type. Beware, there are parts | |
79 | of GDB which bogusly assume that TYPE_CODE_FLT can mean complex. */ | |
80 | TYPE_CODE_FLT, | |
81 | ||
82 | /* Void type. The length field specifies the length (probably always | |
83 | one) which is used in pointer arithmetic involving pointers to | |
84 | this type, but actually dereferencing such a pointer is invalid; | |
85 | a void type has no length and no actual representation in memory | |
86 | or registers. A pointer to a void type is a generic pointer. */ | |
87 | TYPE_CODE_VOID, | |
88 | ||
89 | TYPE_CODE_SET, /* Pascal sets */ | |
90 | TYPE_CODE_RANGE, /* Range (integers within spec'd bounds) */ | |
91 | ||
92 | /* A string type which is like an array of character but prints | |
93 | differently (at least for (the deleted) CHILL). It does not | |
94 | contain a length field as Pascal strings (for many Pascals, | |
95 | anyway) do; if we want to deal with such strings, we should use | |
96 | a new type code. */ | |
97 | TYPE_CODE_STRING, | |
98 | ||
99 | /* String of bits; like TYPE_CODE_SET but prints differently (at | |
100 | least for (the deleted) CHILL). */ | |
101 | TYPE_CODE_BITSTRING, | |
102 | ||
103 | /* Unknown type. The length field is valid if we were able to | |
104 | deduce that much about the type, or 0 if we don't even know that. */ | |
105 | TYPE_CODE_ERROR, | |
106 | ||
107 | /* C++ */ | |
108 | TYPE_CODE_METHOD, /* Method type */ | |
109 | ||
110 | /* Pointer-to-member-function type. This describes how to access a | |
111 | particular member function of a class (possibly a virtual | |
112 | member function). The representation may vary between different | |
113 | C++ ABIs. */ | |
114 | TYPE_CODE_METHODPTR, | |
115 | ||
116 | /* Pointer-to-member type. This is the offset within a class to some | |
117 | particular data member. The only currently supported representation | |
118 | uses an unbiased offset, with -1 representing NULL; this is used | |
119 | by the Itanium C++ ABI (used by GCC on all platforms). */ | |
120 | TYPE_CODE_MEMBERPTR, | |
121 | ||
122 | TYPE_CODE_REF, /* C++ Reference types */ | |
123 | ||
124 | TYPE_CODE_CHAR, /* *real* character type */ | |
125 | ||
126 | /* Boolean type. 0 is false, 1 is true, and other values are non-boolean | |
127 | (e.g. FORTRAN "logical" used as unsigned int). */ | |
128 | TYPE_CODE_BOOL, | |
129 | ||
130 | /* Fortran */ | |
131 | TYPE_CODE_COMPLEX, /* Complex float */ | |
132 | ||
133 | TYPE_CODE_TYPEDEF, | |
134 | ||
135 | TYPE_CODE_NAMESPACE, /* C++ namespace. */ | |
136 | ||
137 | TYPE_CODE_DECFLOAT, /* Decimal floating point. */ | |
138 | ||
139 | TYPE_CODE_MODULE, /* Fortran module. */ | |
140 | ||
141 | /* Internal function type. */ | |
142 | TYPE_CODE_INTERNAL_FUNCTION | |
143 | }; | |
144 | ||
145 | /* For now allow source to use TYPE_CODE_CLASS for C++ classes, as an | |
146 | alias for TYPE_CODE_STRUCT. This is for DWARF, which has a distinct | |
147 | "class" attribute. Perhaps we should actually have a separate TYPE_CODE | |
148 | so that we can print "class" or "struct" depending on what the debug | |
149 | info said. It's not clear we should bother. */ | |
150 | ||
151 | #define TYPE_CODE_CLASS TYPE_CODE_STRUCT | |
152 | ||
153 | /* Some constants representing each bit field in the main_type. See | |
154 | the bit-field-specific macros, below, for documentation of each | |
155 | constant in this enum. These enum values are only used with | |
156 | init_type. Note that the values are chosen not to conflict with | |
157 | type_instance_flag_value; this lets init_type error-check its | |
158 | input. */ | |
159 | ||
160 | enum type_flag_value | |
161 | { | |
162 | TYPE_FLAG_UNSIGNED = (1 << 7), | |
163 | TYPE_FLAG_NOSIGN = (1 << 8), | |
164 | TYPE_FLAG_STUB = (1 << 9), | |
165 | TYPE_FLAG_TARGET_STUB = (1 << 10), | |
166 | TYPE_FLAG_STATIC = (1 << 11), | |
167 | TYPE_FLAG_PROTOTYPED = (1 << 12), | |
168 | TYPE_FLAG_INCOMPLETE = (1 << 13), | |
169 | TYPE_FLAG_VARARGS = (1 << 14), | |
170 | TYPE_FLAG_VECTOR = (1 << 15), | |
171 | TYPE_FLAG_FIXED_INSTANCE = (1 << 16), | |
172 | TYPE_FLAG_STUB_SUPPORTED = (1 << 17), | |
173 | ||
174 | /* Used for error-checking. */ | |
175 | TYPE_FLAG_MIN = TYPE_FLAG_UNSIGNED | |
176 | }; | |
177 | ||
178 | /* Some bits for the type's instance_flags word. See the macros below | |
179 | for documentation on each bit. Note that if you add a value here, | |
180 | you must update the enum type_flag_value as well. */ | |
181 | enum type_instance_flag_value | |
182 | { | |
183 | TYPE_INSTANCE_FLAG_CONST = (1 << 0), | |
184 | TYPE_INSTANCE_FLAG_VOLATILE = (1 << 1), | |
185 | TYPE_INSTANCE_FLAG_CODE_SPACE = (1 << 2), | |
186 | TYPE_INSTANCE_FLAG_DATA_SPACE = (1 << 3), | |
187 | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1 = (1 << 4), | |
188 | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2 = (1 << 5), | |
189 | TYPE_INSTANCE_FLAG_NOTTEXT = (1 << 6), | |
190 | }; | |
191 | ||
192 | /* Unsigned integer type. If this is not set for a TYPE_CODE_INT, the | |
193 | type is signed (unless TYPE_FLAG_NOSIGN (below) is set). */ | |
194 | ||
195 | #define TYPE_UNSIGNED(t) (TYPE_MAIN_TYPE (t)->flag_unsigned) | |
196 | ||
197 | /* No sign for this type. In C++, "char", "signed char", and "unsigned | |
198 | char" are distinct types; so we need an extra flag to indicate the | |
199 | absence of a sign! */ | |
200 | ||
201 | #define TYPE_NOSIGN(t) (TYPE_MAIN_TYPE (t)->flag_nosign) | |
202 | ||
203 | /* This appears in a type's flags word if it is a stub type (e.g., if | |
204 | someone referenced a type that wasn't defined in a source file | |
205 | via (struct sir_not_appearing_in_this_film *)). */ | |
206 | ||
207 | #define TYPE_STUB(t) (TYPE_MAIN_TYPE (t)->flag_stub) | |
208 | ||
209 | /* The target type of this type is a stub type, and this type needs to | |
210 | be updated if it gets un-stubbed in check_typedef. | |
211 | Used for arrays and ranges, in which TYPE_LENGTH of the array/range | |
212 | gets set based on the TYPE_LENGTH of the target type. | |
213 | Also, set for TYPE_CODE_TYPEDEF. */ | |
214 | ||
215 | #define TYPE_TARGET_STUB(t) (TYPE_MAIN_TYPE (t)->flag_target_stub) | |
216 | ||
217 | /* Static type. If this is set, the corresponding type had | |
218 | * a static modifier. | |
219 | * Note: This may be unnecessary, since static data members | |
220 | * are indicated by other means (bitpos == -1) | |
221 | */ | |
222 | ||
223 | #define TYPE_STATIC(t) (TYPE_MAIN_TYPE (t)->flag_static) | |
224 | ||
225 | /* This is a function type which appears to have a prototype. We need this | |
226 | for function calls in order to tell us if it's necessary to coerce the args, | |
227 | or to just do the standard conversions. This is used with a short field. */ | |
228 | ||
229 | #define TYPE_PROTOTYPED(t) (TYPE_MAIN_TYPE (t)->flag_prototyped) | |
230 | ||
231 | /* This flag is used to indicate that processing for this type | |
232 | is incomplete. | |
233 | ||
234 | (Mostly intended for HP platforms, where class methods, for | |
235 | instance, can be encountered before their classes in the debug | |
236 | info; the incomplete type has to be marked so that the class and | |
237 | the method can be assigned correct types.) */ | |
238 | ||
239 | #define TYPE_INCOMPLETE(t) (TYPE_MAIN_TYPE (t)->flag_incomplete) | |
240 | ||
241 | /* FIXME drow/2002-06-03: Only used for methods, but applies as well | |
242 | to functions. */ | |
243 | ||
244 | #define TYPE_VARARGS(t) (TYPE_MAIN_TYPE (t)->flag_varargs) | |
245 | ||
246 | /* Identify a vector type. Gcc is handling this by adding an extra | |
247 | attribute to the array type. We slurp that in as a new flag of a | |
248 | type. This is used only in dwarf2read.c. */ | |
249 | #define TYPE_VECTOR(t) (TYPE_MAIN_TYPE (t)->flag_vector) | |
250 | ||
251 | /* The debugging formats (especially STABS) do not contain enough information | |
252 | to represent all Ada types---especially those whose size depends on | |
253 | dynamic quantities. Therefore, the GNAT Ada compiler includes | |
254 | extra information in the form of additional type definitions | |
255 | connected by naming conventions. This flag indicates that the | |
256 | type is an ordinary (unencoded) GDB type that has been created from | |
257 | the necessary run-time information, and does not need further | |
258 | interpretation. Optionally marks ordinary, fixed-size GDB type. */ | |
259 | ||
260 | #define TYPE_FIXED_INSTANCE(t) (TYPE_MAIN_TYPE (t)->flag_fixed_instance) | |
261 | ||
262 | /* This debug target supports TYPE_STUB(t). In the unsupported case we have to | |
263 | rely on NFIELDS to be zero etc., see TYPE_IS_OPAQUE (). | |
264 | TYPE_STUB(t) with !TYPE_STUB_SUPPORTED(t) may exist if we only guessed | |
265 | the TYPE_STUB(t) value (see dwarfread.c). */ | |
266 | ||
267 | #define TYPE_STUB_SUPPORTED(t) (TYPE_MAIN_TYPE (t)->flag_stub_supported) | |
268 | ||
269 | /* Not textual. By default, GDB treats all single byte integers as | |
270 | characters (or elements of strings) unless this flag is set. */ | |
271 | ||
272 | #define TYPE_NOTTEXT(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_NOTTEXT) | |
273 | ||
274 | /* Type owner. If TYPE_OBJFILE_OWNED is true, the type is owned by | |
275 | the objfile retrieved as TYPE_OBJFILE. Otherweise, the type is | |
276 | owned by an architecture; TYPE_OBJFILE is NULL in this case. */ | |
277 | ||
278 | #define TYPE_OBJFILE_OWNED(t) (TYPE_MAIN_TYPE (t)->flag_objfile_owned) | |
279 | #define TYPE_OWNER(t) TYPE_MAIN_TYPE(t)->owner | |
280 | #define TYPE_OBJFILE(t) (TYPE_OBJFILE_OWNED(t)? TYPE_OWNER(t).objfile : NULL) | |
281 | ||
282 | /* True if this type was declared using the "class" keyword. This is | |
283 | only valid for C++ structure types, and only used for displaying | |
284 | the type. If false, the structure was declared as a "struct". */ | |
285 | ||
286 | #define TYPE_DECLARED_CLASS(t) (TYPE_MAIN_TYPE (t)->flag_declared_class) | |
287 | ||
288 | /* Constant type. If this is set, the corresponding type has a | |
289 | * const modifier. | |
290 | */ | |
291 | ||
292 | #define TYPE_CONST(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_CONST) | |
293 | ||
294 | /* Volatile type. If this is set, the corresponding type has a | |
295 | * volatile modifier. | |
296 | */ | |
297 | ||
298 | #define TYPE_VOLATILE(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_VOLATILE) | |
299 | ||
300 | /* Instruction-space delimited type. This is for Harvard architectures | |
301 | which have separate instruction and data address spaces (and perhaps | |
302 | others). | |
303 | ||
304 | GDB usually defines a flat address space that is a superset of the | |
305 | architecture's two (or more) address spaces, but this is an extension | |
306 | of the architecture's model. | |
307 | ||
308 | If TYPE_FLAG_INST is set, an object of the corresponding type | |
309 | resides in instruction memory, even if its address (in the extended | |
310 | flat address space) does not reflect this. | |
311 | ||
312 | Similarly, if TYPE_FLAG_DATA is set, then an object of the | |
313 | corresponding type resides in the data memory space, even if | |
314 | this is not indicated by its (flat address space) address. | |
315 | ||
316 | If neither flag is set, the default space for functions / methods | |
317 | is instruction space, and for data objects is data memory. */ | |
318 | ||
319 | #define TYPE_CODE_SPACE(t) \ | |
320 | (TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_CODE_SPACE) | |
321 | ||
322 | #define TYPE_DATA_SPACE(t) \ | |
323 | (TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_DATA_SPACE) | |
324 | ||
325 | /* Address class flags. Some environments provide for pointers whose | |
326 | size is different from that of a normal pointer or address types | |
327 | where the bits are interpreted differently than normal addresses. The | |
328 | TYPE_FLAG_ADDRESS_CLASS_n flags may be used in target specific | |
329 | ways to represent these different types of address classes. */ | |
330 | #define TYPE_ADDRESS_CLASS_1(t) (TYPE_INSTANCE_FLAGS(t) \ | |
331 | & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1) | |
332 | #define TYPE_ADDRESS_CLASS_2(t) (TYPE_INSTANCE_FLAGS(t) \ | |
333 | & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2) | |
334 | #define TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL \ | |
335 | (TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1 | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2) | |
336 | #define TYPE_ADDRESS_CLASS_ALL(t) (TYPE_INSTANCE_FLAGS(t) \ | |
337 | & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL) | |
338 | ||
339 | /* Determine which field of the union main_type.fields[x].loc is used. */ | |
340 | ||
341 | enum field_loc_kind | |
342 | { | |
343 | FIELD_LOC_KIND_BITPOS, /* bitpos */ | |
344 | FIELD_LOC_KIND_PHYSADDR, /* physaddr */ | |
345 | FIELD_LOC_KIND_PHYSNAME /* physname */ | |
346 | }; | |
347 | ||
348 | /* A discriminant to determine which field in the main_type.type_specific | |
349 | union is being used, if any. | |
350 | ||
351 | For types such as TYPE_CODE_FLT or TYPE_CODE_FUNC, the use of this | |
352 | discriminant is really redundant, as we know from the type code | |
353 | which field is going to be used. As such, it would be possible to | |
354 | reduce the size of this enum in order to save a bit or two for | |
355 | other fields of struct main_type. But, since we still have extra | |
356 | room , and for the sake of clarity and consistency, we treat all fields | |
357 | of the union the same way. */ | |
358 | ||
359 | enum type_specific_kind | |
360 | { | |
361 | TYPE_SPECIFIC_NONE, | |
362 | TYPE_SPECIFIC_CPLUS_STUFF, | |
363 | TYPE_SPECIFIC_GNAT_STUFF, | |
364 | TYPE_SPECIFIC_FLOATFORMAT, | |
365 | TYPE_SPECIFIC_CALLING_CONVENTION | |
366 | }; | |
367 | ||
368 | /* This structure is space-critical. | |
369 | Its layout has been tweaked to reduce the space used. */ | |
370 | ||
371 | struct main_type | |
372 | { | |
373 | /* Code for kind of type */ | |
374 | ||
375 | ENUM_BITFIELD(type_code) code : 8; | |
376 | ||
377 | /* Flags about this type. These fields appear at this location | |
378 | because they packs nicely here. See the TYPE_* macros for | |
379 | documentation about these fields. */ | |
380 | ||
381 | unsigned int flag_unsigned : 1; | |
382 | unsigned int flag_nosign : 1; | |
383 | unsigned int flag_stub : 1; | |
384 | unsigned int flag_target_stub : 1; | |
385 | unsigned int flag_static : 1; | |
386 | unsigned int flag_prototyped : 1; | |
387 | unsigned int flag_incomplete : 1; | |
388 | unsigned int flag_varargs : 1; | |
389 | unsigned int flag_vector : 1; | |
390 | unsigned int flag_stub_supported : 1; | |
391 | unsigned int flag_fixed_instance : 1; | |
392 | unsigned int flag_objfile_owned : 1; | |
393 | /* True if this type was declared with "class" rather than | |
394 | "struct". */ | |
395 | unsigned int flag_declared_class : 1; | |
396 | ||
397 | /* A discriminant telling us which field of the type_specific union | |
398 | is being used for this type, if any. */ | |
399 | ENUM_BITFIELD(type_specific_kind) type_specific_field : 3; | |
400 | ||
401 | /* Number of fields described for this type. This field appears at | |
402 | this location because it packs nicely here. */ | |
403 | ||
404 | short nfields; | |
405 | ||
406 | /* Field number of the virtual function table pointer in | |
407 | VPTR_BASETYPE. If -1, we were unable to find the virtual | |
408 | function table pointer in initial symbol reading, and | |
409 | get_vptr_fieldno should be called to find it if possible. | |
410 | get_vptr_fieldno will update this field if possible. | |
411 | Otherwise the value is left at -1. | |
412 | ||
413 | Unused if this type does not have virtual functions. | |
414 | ||
415 | This field appears at this location because it packs nicely here. */ | |
416 | ||
417 | short vptr_fieldno; | |
418 | ||
419 | /* Name of this type, or NULL if none. | |
420 | ||
421 | This is used for printing only, except by poorly designed C++ code. | |
422 | For looking up a name, look for a symbol in the VAR_DOMAIN. */ | |
423 | ||
424 | char *name; | |
425 | ||
426 | /* Tag name for this type, or NULL if none. This means that the | |
427 | name of the type consists of a keyword followed by the tag name. | |
428 | Which keyword is determined by the type code ("struct" for | |
429 | TYPE_CODE_STRUCT, etc.). As far as I know C/C++ are the only languages | |
430 | with this feature. | |
431 | ||
432 | This is used for printing only, except by poorly designed C++ code. | |
433 | For looking up a name, look for a symbol in the STRUCT_DOMAIN. | |
434 | One more legitimate use is that if TYPE_FLAG_STUB is set, this is | |
435 | the name to use to look for definitions in other files. */ | |
436 | ||
437 | char *tag_name; | |
438 | ||
439 | /* Every type is now associated with a particular objfile, and the | |
440 | type is allocated on the objfile_obstack for that objfile. One problem | |
441 | however, is that there are times when gdb allocates new types while | |
442 | it is not in the process of reading symbols from a particular objfile. | |
443 | Fortunately, these happen when the type being created is a derived | |
444 | type of an existing type, such as in lookup_pointer_type(). So | |
445 | we can just allocate the new type using the same objfile as the | |
446 | existing type, but to do this we need a backpointer to the objfile | |
447 | from the existing type. Yes this is somewhat ugly, but without | |
448 | major overhaul of the internal type system, it can't be avoided | |
449 | for now. */ | |
450 | ||
451 | union type_owner | |
452 | { | |
453 | struct objfile *objfile; | |
454 | struct gdbarch *gdbarch; | |
455 | } owner; | |
456 | ||
457 | /* For a pointer type, describes the type of object pointed to. | |
458 | For an array type, describes the type of the elements. | |
459 | For a function or method type, describes the type of the return value. | |
460 | For a range type, describes the type of the full range. | |
461 | For a complex type, describes the type of each coordinate. | |
462 | For a special record or union type encoding a dynamic-sized type | |
463 | in GNAT, a memoized pointer to a corresponding static version of | |
464 | the type. | |
465 | Unused otherwise. */ | |
466 | ||
467 | struct type *target_type; | |
468 | ||
469 | /* For structure and union types, a description of each field. | |
470 | For set and pascal array types, there is one "field", | |
471 | whose type is the domain type of the set or array. | |
472 | For range types, there are two "fields", | |
473 | the minimum and maximum values (both inclusive). | |
474 | For enum types, each possible value is described by one "field". | |
475 | For a function or method type, a "field" for each parameter. | |
476 | For C++ classes, there is one field for each base class (if it is | |
477 | a derived class) plus one field for each class data member. Member | |
478 | functions are recorded elsewhere. | |
479 | ||
480 | Using a pointer to a separate array of fields | |
481 | allows all types to have the same size, which is useful | |
482 | because we can allocate the space for a type before | |
483 | we know what to put in it. */ | |
484 | ||
485 | union | |
486 | { | |
487 | struct field | |
488 | { | |
489 | union field_location | |
490 | { | |
491 | /* Position of this field, counting in bits from start of | |
492 | containing structure. | |
493 | For gdbarch_bits_big_endian=1 targets, it is the bit offset to the MSB. | |
494 | For gdbarch_bits_big_endian=0 targets, it is the bit offset to the LSB. | |
495 | For a range bound or enum value, this is the value itself. */ | |
496 | ||
497 | int bitpos; | |
498 | ||
499 | /* For a static field, if TYPE_FIELD_STATIC_HAS_ADDR then physaddr | |
500 | is the location (in the target) of the static field. | |
501 | Otherwise, physname is the mangled label of the static field. */ | |
502 | ||
503 | CORE_ADDR physaddr; | |
504 | char *physname; | |
505 | } | |
506 | loc; | |
507 | ||
508 | /* For a function or member type, this is 1 if the argument is marked | |
509 | artificial. Artificial arguments should not be shown to the | |
510 | user. For TYPE_CODE_RANGE it is set if the specific bound is not | |
511 | defined. */ | |
512 | unsigned int artificial : 1; | |
513 | ||
514 | /* Discriminant for union field_location. */ | |
515 | ENUM_BITFIELD(field_loc_kind) loc_kind : 2; | |
516 | ||
517 | /* Size of this field, in bits, or zero if not packed. | |
518 | If non-zero in an array type, indicates the element size in | |
519 | bits (used only in Ada at the moment). | |
520 | For an unpacked field, the field's type's length | |
521 | says how many bytes the field occupies. */ | |
522 | ||
523 | unsigned int bitsize : 29; | |
524 | ||
525 | /* In a struct or union type, type of this field. | |
526 | In a function or member type, type of this argument. | |
527 | In an array type, the domain-type of the array. */ | |
528 | ||
529 | struct type *type; | |
530 | ||
531 | /* Name of field, value or argument. | |
532 | NULL for range bounds, array domains, and member function | |
533 | arguments. */ | |
534 | ||
535 | char *name; | |
536 | } *fields; | |
537 | ||
538 | /* Union member used for range types. */ | |
539 | ||
540 | struct range_bounds | |
541 | { | |
542 | /* Low bound of range. */ | |
543 | ||
544 | LONGEST low; | |
545 | ||
546 | /* High bound of range. */ | |
547 | ||
548 | LONGEST high; | |
549 | ||
550 | /* Flags indicating whether the values of low and high are | |
551 | valid. When true, the respective range value is | |
552 | undefined. Currently used only for FORTRAN arrays. */ | |
553 | ||
554 | char low_undefined; | |
555 | char high_undefined; | |
556 | ||
557 | } *bounds; | |
558 | ||
559 | } flds_bnds; | |
560 | ||
561 | /* For types with virtual functions (TYPE_CODE_STRUCT), VPTR_BASETYPE | |
562 | is the base class which defined the virtual function table pointer. | |
563 | ||
564 | For types that are pointer to member types (TYPE_CODE_METHODPTR, | |
565 | TYPE_CODE_MEMBERPTR), VPTR_BASETYPE is the type that this pointer | |
566 | is a member of. | |
567 | ||
568 | For method types (TYPE_CODE_METHOD), VPTR_BASETYPE is the aggregate | |
569 | type that contains the method. | |
570 | ||
571 | Unused otherwise. */ | |
572 | ||
573 | struct type *vptr_basetype; | |
574 | ||
575 | /* Slot to point to additional language-specific fields of this type. */ | |
576 | ||
577 | union type_specific | |
578 | { | |
579 | /* CPLUS_STUFF is for TYPE_CODE_STRUCT. It is initialized to point to | |
580 | cplus_struct_default, a default static instance of a struct | |
581 | cplus_struct_type. */ | |
582 | ||
583 | struct cplus_struct_type *cplus_stuff; | |
584 | ||
585 | /* GNAT_STUFF is for types for which the GNAT Ada compiler | |
586 | provides additional information. */ | |
587 | struct gnat_aux_type *gnat_stuff; | |
588 | ||
589 | /* FLOATFORMAT is for TYPE_CODE_FLT. It is a pointer to two | |
590 | floatformat objects that describe the floating-point value | |
591 | that resides within the type. The first is for big endian | |
592 | targets and the second is for little endian targets. */ | |
593 | ||
594 | const struct floatformat **floatformat; | |
595 | ||
596 | /* For TYPE_CODE_FUNC types, the calling convention for targets | |
597 | supporting multiple ABIs. Right now this is only fetched from | |
598 | the Dwarf-2 DW_AT_calling_convention attribute. */ | |
599 | unsigned calling_convention; | |
600 | } type_specific; | |
601 | }; | |
602 | ||
603 | /* A ``struct type'' describes a particular instance of a type, with | |
604 | some particular qualification. */ | |
605 | struct type | |
606 | { | |
607 | /* Type that is a pointer to this type. | |
608 | NULL if no such pointer-to type is known yet. | |
609 | The debugger may add the address of such a type | |
610 | if it has to construct one later. */ | |
611 | ||
612 | struct type *pointer_type; | |
613 | ||
614 | /* C++: also need a reference type. */ | |
615 | ||
616 | struct type *reference_type; | |
617 | ||
618 | /* Variant chain. This points to a type that differs from this one only | |
619 | in qualifiers and length. Currently, the possible qualifiers are | |
620 | const, volatile, code-space, data-space, and address class. The | |
621 | length may differ only when one of the address class flags are set. | |
622 | The variants are linked in a circular ring and share MAIN_TYPE. */ | |
623 | struct type *chain; | |
624 | ||
625 | /* Flags specific to this instance of the type, indicating where | |
626 | on the ring we are. | |
627 | ||
628 | For TYPE_CODE_TYPEDEF the flags of the typedef type should be binary | |
629 | or-ed with the target type, with a special case for address class and | |
630 | space class. For example if this typedef does not specify any new | |
631 | qualifiers, TYPE_INSTANCE_FLAGS is 0 and the instance flags are | |
632 | completely inherited from the target type. No qualifiers can be cleared | |
633 | by the typedef. See also check_typedef. */ | |
634 | int instance_flags; | |
635 | ||
636 | /* Length of storage for a value of this type. This is what | |
637 | sizeof(type) would return; use it for address arithmetic, | |
638 | memory reads and writes, etc. This size includes padding. For | |
639 | example, an i386 extended-precision floating point value really | |
640 | only occupies ten bytes, but most ABI's declare its size to be | |
641 | 12 bytes, to preserve alignment. A `struct type' representing | |
642 | such a floating-point type would have a `length' value of 12, | |
643 | even though the last two bytes are unused. | |
644 | ||
645 | There's a bit of a host/target mess here, if you're concerned | |
646 | about machines whose bytes aren't eight bits long, or who don't | |
647 | have byte-addressed memory. Various places pass this to memcpy | |
648 | and such, meaning it must be in units of host bytes. Various | |
649 | other places expect they can calculate addresses by adding it | |
650 | and such, meaning it must be in units of target bytes. For | |
651 | some DSP targets, in which HOST_CHAR_BIT will (presumably) be 8 | |
652 | and TARGET_CHAR_BIT will be (say) 32, this is a problem. | |
653 | ||
654 | One fix would be to make this field in bits (requiring that it | |
655 | always be a multiple of HOST_CHAR_BIT and TARGET_CHAR_BIT) --- | |
656 | the other choice would be to make it consistently in units of | |
657 | HOST_CHAR_BIT. However, this would still fail to address | |
658 | machines based on a ternary or decimal representation. */ | |
659 | ||
660 | unsigned length; | |
661 | ||
662 | /* Core type, shared by a group of qualified types. */ | |
663 | struct main_type *main_type; | |
664 | }; | |
665 | ||
666 | #define NULL_TYPE ((struct type *) 0) | |
667 | ||
668 | /* C++ language-specific information for TYPE_CODE_STRUCT and TYPE_CODE_UNION | |
669 | nodes. */ | |
670 | ||
671 | struct cplus_struct_type | |
672 | { | |
673 | /* Number of base classes this type derives from. The baseclasses are | |
674 | stored in the first N_BASECLASSES fields (i.e. the `fields' field of | |
675 | the struct type). I think only the `type' field of such a field has | |
676 | any meaning. */ | |
677 | ||
678 | short n_baseclasses; | |
679 | ||
680 | /* Number of methods with unique names. All overloaded methods with | |
681 | the same name count only once. */ | |
682 | ||
683 | short nfn_fields; | |
684 | ||
685 | /* Number of methods described for this type, not including the | |
686 | methods that it derives from. */ | |
687 | ||
688 | short nfn_fields_total; | |
689 | ||
690 | /* Number of template arguments. */ | |
691 | unsigned short n_template_arguments; | |
692 | ||
693 | /* One if this struct is a dynamic class, as defined by the | |
694 | Itanium C++ ABI: if it requires a virtual table pointer, | |
695 | because it or any of its base classes have one or more virtual | |
696 | member functions or virtual base classes. Minus one if not | |
697 | dynamic. Zero if not yet computed. */ | |
698 | int is_dynamic : 2; | |
699 | ||
700 | /* For derived classes, the number of base classes is given by n_baseclasses | |
701 | and virtual_field_bits is a bit vector containing one bit per base class. | |
702 | If the base class is virtual, the corresponding bit will be set. | |
703 | I.E, given: | |
704 | ||
705 | class A{}; | |
706 | class B{}; | |
707 | class C : public B, public virtual A {}; | |
708 | ||
709 | B is a baseclass of C; A is a virtual baseclass for C. | |
710 | This is a C++ 2.0 language feature. */ | |
711 | ||
712 | B_TYPE *virtual_field_bits; | |
713 | ||
714 | /* For classes with private fields, the number of fields is given by | |
715 | nfields and private_field_bits is a bit vector containing one bit | |
716 | per field. | |
717 | If the field is private, the corresponding bit will be set. */ | |
718 | ||
719 | B_TYPE *private_field_bits; | |
720 | ||
721 | /* For classes with protected fields, the number of fields is given by | |
722 | nfields and protected_field_bits is a bit vector containing one bit | |
723 | per field. | |
724 | If the field is private, the corresponding bit will be set. */ | |
725 | ||
726 | B_TYPE *protected_field_bits; | |
727 | ||
728 | /* for classes with fields to be ignored, either this is optimized out | |
729 | or this field has length 0 */ | |
730 | ||
731 | B_TYPE *ignore_field_bits; | |
732 | ||
733 | /* For classes, structures, and unions, a description of each field, | |
734 | which consists of an overloaded name, followed by the types of | |
735 | arguments that the method expects, and then the name after it | |
736 | has been renamed to make it distinct. | |
737 | ||
738 | fn_fieldlists points to an array of nfn_fields of these. */ | |
739 | ||
740 | struct fn_fieldlist | |
741 | { | |
742 | ||
743 | /* The overloaded name. */ | |
744 | ||
745 | char *name; | |
746 | ||
747 | /* The number of methods with this name. */ | |
748 | ||
749 | int length; | |
750 | ||
751 | /* The list of methods. */ | |
752 | ||
753 | struct fn_field | |
754 | { | |
755 | ||
756 | /* If is_stub is clear, this is the mangled name which we can | |
757 | look up to find the address of the method (FIXME: it would | |
758 | be cleaner to have a pointer to the struct symbol here | |
759 | instead). */ | |
760 | ||
761 | /* If is_stub is set, this is the portion of the mangled | |
762 | name which specifies the arguments. For example, "ii", | |
763 | if there are two int arguments, or "" if there are no | |
764 | arguments. See gdb_mangle_name for the conversion from this | |
765 | format to the one used if is_stub is clear. */ | |
766 | ||
767 | char *physname; | |
768 | ||
769 | /* The function type for the method. | |
770 | (This comment used to say "The return value of the method", | |
771 | but that's wrong. The function type | |
772 | is expected here, i.e. something with TYPE_CODE_FUNC, | |
773 | and *not* the return-value type). */ | |
774 | ||
775 | struct type *type; | |
776 | ||
777 | /* For virtual functions. | |
778 | First baseclass that defines this virtual function. */ | |
779 | ||
780 | struct type *fcontext; | |
781 | ||
782 | /* Attributes. */ | |
783 | ||
784 | unsigned int is_const:1; | |
785 | unsigned int is_volatile:1; | |
786 | unsigned int is_private:1; | |
787 | unsigned int is_protected:1; | |
788 | unsigned int is_public:1; | |
789 | unsigned int is_abstract:1; | |
790 | unsigned int is_static:1; | |
791 | unsigned int is_final:1; | |
792 | unsigned int is_synchronized:1; | |
793 | unsigned int is_native:1; | |
794 | unsigned int is_artificial:1; | |
795 | ||
796 | /* A stub method only has some fields valid (but they are enough | |
797 | to reconstruct the rest of the fields). */ | |
798 | unsigned int is_stub:1; | |
799 | ||
800 | /* Unused. */ | |
801 | unsigned int dummy:4; | |
802 | ||
803 | /* Index into that baseclass's virtual function table, | |
804 | minus 2; else if static: VOFFSET_STATIC; else: 0. */ | |
805 | ||
806 | unsigned int voffset:16; | |
807 | ||
808 | #define VOFFSET_STATIC 1 | |
809 | ||
810 | } | |
811 | *fn_fields; | |
812 | ||
813 | } | |
814 | *fn_fieldlists; | |
815 | ||
816 | /* Pointer to information about enclosing scope, if this is a | |
817 | * local type. If it is not a local type, this is NULL | |
818 | */ | |
819 | struct local_type_info | |
820 | { | |
821 | char *file; | |
822 | int line; | |
823 | } | |
824 | *localtype_ptr; | |
825 | ||
826 | /* typedefs defined inside this class. TYPEDEF_FIELD points to an array of | |
827 | TYPEDEF_FIELD_COUNT elements. */ | |
828 | struct typedef_field | |
829 | { | |
830 | /* Unqualified name to be prefixed by owning class qualified name. */ | |
831 | const char *name; | |
832 | ||
833 | /* Type this typedef named NAME represents. */ | |
834 | struct type *type; | |
835 | } | |
836 | *typedef_field; | |
837 | unsigned typedef_field_count; | |
838 | ||
839 | /* The template arguments. This is an array with | |
840 | N_TEMPLATE_ARGUMENTS elements. This is NULL for non-template | |
841 | classes. */ | |
842 | struct symbol **template_arguments; | |
843 | }; | |
844 | ||
845 | /* Struct used in computing virtual base list */ | |
846 | struct vbase | |
847 | { | |
848 | struct type *vbasetype; /* pointer to virtual base */ | |
849 | struct vbase *next; /* next in chain */ | |
850 | }; | |
851 | ||
852 | /* Struct used for ranking a function for overload resolution */ | |
853 | struct badness_vector | |
854 | { | |
855 | int length; | |
856 | int *rank; | |
857 | }; | |
858 | ||
859 | /* GNAT Ada-specific information for various Ada types. */ | |
860 | struct gnat_aux_type | |
861 | { | |
862 | /* Parallel type used to encode information about dynamic types | |
863 | used in Ada (such as variant records, variable-size array, | |
864 | etc). */ | |
865 | struct type* descriptive_type; | |
866 | }; | |
867 | ||
868 | /* The default value of TYPE_CPLUS_SPECIFIC(T) points to the | |
869 | this shared static structure. */ | |
870 | ||
871 | extern const struct cplus_struct_type cplus_struct_default; | |
872 | ||
873 | extern void allocate_cplus_struct_type (struct type *); | |
874 | ||
875 | #define INIT_CPLUS_SPECIFIC(type) \ | |
876 | (TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_CPLUS_STUFF, \ | |
877 | TYPE_RAW_CPLUS_SPECIFIC (type) = (struct cplus_struct_type*) &cplus_struct_default) | |
878 | ||
879 | #define ALLOCATE_CPLUS_STRUCT_TYPE(type) allocate_cplus_struct_type (type) | |
880 | ||
881 | #define HAVE_CPLUS_STRUCT(type) \ | |
882 | (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_CPLUS_STUFF \ | |
883 | && TYPE_RAW_CPLUS_SPECIFIC (type) != &cplus_struct_default) | |
884 | ||
885 | extern const struct gnat_aux_type gnat_aux_default; | |
886 | ||
887 | extern void allocate_gnat_aux_type (struct type *); | |
888 | ||
889 | #define INIT_GNAT_SPECIFIC(type) \ | |
890 | (TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_GNAT_STUFF, \ | |
891 | TYPE_GNAT_SPECIFIC (type) = (struct gnat_aux_type *) &gnat_aux_default) | |
892 | #define ALLOCATE_GNAT_AUX_TYPE(type) allocate_gnat_aux_type (type) | |
893 | /* A macro that returns non-zero if the type-specific data should be | |
894 | read as "gnat-stuff". */ | |
895 | #define HAVE_GNAT_AUX_INFO(type) \ | |
896 | (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_GNAT_STUFF) | |
897 | ||
898 | #define TYPE_INSTANCE_FLAGS(thistype) (thistype)->instance_flags | |
899 | #define TYPE_MAIN_TYPE(thistype) (thistype)->main_type | |
900 | #define TYPE_NAME(thistype) TYPE_MAIN_TYPE(thistype)->name | |
901 | #define TYPE_TAG_NAME(type) TYPE_MAIN_TYPE(type)->tag_name | |
902 | #define TYPE_TARGET_TYPE(thistype) TYPE_MAIN_TYPE(thistype)->target_type | |
903 | #define TYPE_POINTER_TYPE(thistype) (thistype)->pointer_type | |
904 | #define TYPE_REFERENCE_TYPE(thistype) (thistype)->reference_type | |
905 | #define TYPE_CHAIN(thistype) (thistype)->chain | |
906 | /* Note that if thistype is a TYPEDEF type, you have to call check_typedef. | |
907 | But check_typedef does set the TYPE_LENGTH of the TYPEDEF type, | |
908 | so you only have to call check_typedef once. Since allocate_value | |
909 | calls check_typedef, TYPE_LENGTH (VALUE_TYPE (X)) is safe. */ | |
910 | #define TYPE_LENGTH(thistype) (thistype)->length | |
911 | /* Note that TYPE_CODE can be TYPE_CODE_TYPEDEF, so if you want the real | |
912 | type, you need to do TYPE_CODE (check_type (this_type)). */ | |
913 | #define TYPE_CODE(thistype) TYPE_MAIN_TYPE(thistype)->code | |
914 | #define TYPE_NFIELDS(thistype) TYPE_MAIN_TYPE(thistype)->nfields | |
915 | #define TYPE_FIELDS(thistype) TYPE_MAIN_TYPE(thistype)->flds_bnds.fields | |
916 | ||
917 | #define TYPE_INDEX_TYPE(type) TYPE_FIELD_TYPE (type, 0) | |
918 | #define TYPE_RANGE_DATA(thistype) TYPE_MAIN_TYPE(thistype)->flds_bnds.bounds | |
919 | #define TYPE_LOW_BOUND(range_type) TYPE_RANGE_DATA(range_type)->low | |
920 | #define TYPE_HIGH_BOUND(range_type) TYPE_RANGE_DATA(range_type)->high | |
921 | #define TYPE_LOW_BOUND_UNDEFINED(range_type) \ | |
922 | TYPE_RANGE_DATA(range_type)->low_undefined | |
923 | #define TYPE_HIGH_BOUND_UNDEFINED(range_type) \ | |
924 | TYPE_RANGE_DATA(range_type)->high_undefined | |
925 | ||
926 | /* Moto-specific stuff for FORTRAN arrays */ | |
927 | ||
928 | #define TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED(arraytype) \ | |
929 | TYPE_HIGH_BOUND_UNDEFINED(TYPE_INDEX_TYPE(arraytype)) | |
930 | #define TYPE_ARRAY_LOWER_BOUND_IS_UNDEFINED(arraytype) \ | |
931 | TYPE_LOW_BOUND_UNDEFINED(TYPE_INDEX_TYPE(arraytype)) | |
932 | ||
933 | #define TYPE_ARRAY_UPPER_BOUND_VALUE(arraytype) \ | |
934 | (TYPE_HIGH_BOUND(TYPE_INDEX_TYPE((arraytype)))) | |
935 | ||
936 | #define TYPE_ARRAY_LOWER_BOUND_VALUE(arraytype) \ | |
937 | (TYPE_LOW_BOUND(TYPE_INDEX_TYPE((arraytype)))) | |
938 | ||
939 | /* C++ */ | |
940 | ||
941 | #define TYPE_VPTR_BASETYPE(thistype) TYPE_MAIN_TYPE(thistype)->vptr_basetype | |
942 | #define TYPE_DOMAIN_TYPE(thistype) TYPE_MAIN_TYPE(thistype)->vptr_basetype | |
943 | #define TYPE_VPTR_FIELDNO(thistype) TYPE_MAIN_TYPE(thistype)->vptr_fieldno | |
944 | #define TYPE_FN_FIELDS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->fn_fields | |
945 | #define TYPE_NFN_FIELDS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->nfn_fields | |
946 | #define TYPE_NFN_FIELDS_TOTAL(thistype) TYPE_CPLUS_SPECIFIC(thistype)->nfn_fields_total | |
947 | #define TYPE_SPECIFIC_FIELD(thistype) \ | |
948 | TYPE_MAIN_TYPE(thistype)->type_specific_field | |
949 | #define TYPE_TYPE_SPECIFIC(thistype) TYPE_MAIN_TYPE(thistype)->type_specific | |
950 | /* We need this tap-dance with the TYPE_RAW_SPECIFIC because of the case | |
951 | where we're trying to print an Ada array using the C language. | |
952 | In that case, there is no "cplus_stuff", but the C language assumes | |
953 | that there is. What we do, in that case, is pretend that there is | |
954 | an implicit one which is the default cplus stuff. */ | |
955 | #define TYPE_CPLUS_SPECIFIC(thistype) \ | |
956 | (!HAVE_CPLUS_STRUCT(thistype) \ | |
957 | ? (struct cplus_struct_type*)&cplus_struct_default \ | |
958 | : TYPE_RAW_CPLUS_SPECIFIC(thistype)) | |
959 | #define TYPE_RAW_CPLUS_SPECIFIC(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.cplus_stuff | |
960 | #define TYPE_FLOATFORMAT(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.floatformat | |
961 | #define TYPE_GNAT_SPECIFIC(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.gnat_stuff | |
962 | #define TYPE_DESCRIPTIVE_TYPE(thistype) TYPE_GNAT_SPECIFIC(thistype)->descriptive_type | |
963 | #define TYPE_CALLING_CONVENTION(thistype) TYPE_MAIN_TYPE(thistype)->type_specific.calling_convention | |
964 | #define TYPE_BASECLASS(thistype,index) TYPE_FIELD_TYPE(thistype, index) | |
965 | #define TYPE_N_BASECLASSES(thistype) TYPE_CPLUS_SPECIFIC(thistype)->n_baseclasses | |
966 | #define TYPE_BASECLASS_NAME(thistype,index) TYPE_FIELD_NAME(thistype, index) | |
967 | #define TYPE_BASECLASS_BITPOS(thistype,index) TYPE_FIELD_BITPOS(thistype,index) | |
968 | #define BASETYPE_VIA_PUBLIC(thistype, index) \ | |
969 | ((!TYPE_FIELD_PRIVATE(thistype, index)) && (!TYPE_FIELD_PROTECTED(thistype, index))) | |
970 | #define TYPE_CPLUS_DYNAMIC(thistype) TYPE_CPLUS_SPECIFIC (thistype)->is_dynamic | |
971 | ||
972 | #define BASETYPE_VIA_VIRTUAL(thistype, index) \ | |
973 | (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits == NULL ? 0 \ | |
974 | : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (index))) | |
975 | ||
976 | #define FIELD_TYPE(thisfld) ((thisfld).type) | |
977 | #define FIELD_NAME(thisfld) ((thisfld).name) | |
978 | #define FIELD_LOC_KIND(thisfld) ((thisfld).loc_kind) | |
979 | #define FIELD_BITPOS(thisfld) ((thisfld).loc.bitpos) | |
980 | #define FIELD_STATIC_PHYSNAME(thisfld) ((thisfld).loc.physname) | |
981 | #define FIELD_STATIC_PHYSADDR(thisfld) ((thisfld).loc.physaddr) | |
982 | #define SET_FIELD_BITPOS(thisfld, bitpos) \ | |
983 | (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_BITPOS, \ | |
984 | FIELD_BITPOS (thisfld) = (bitpos)) | |
985 | #define SET_FIELD_PHYSNAME(thisfld, name) \ | |
986 | (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSNAME, \ | |
987 | FIELD_STATIC_PHYSNAME (thisfld) = (name)) | |
988 | #define SET_FIELD_PHYSADDR(thisfld, addr) \ | |
989 | (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSADDR, \ | |
990 | FIELD_STATIC_PHYSADDR (thisfld) = (addr)) | |
991 | #define FIELD_ARTIFICIAL(thisfld) ((thisfld).artificial) | |
992 | #define FIELD_BITSIZE(thisfld) ((thisfld).bitsize) | |
993 | ||
994 | #define TYPE_FIELD(thistype, n) TYPE_MAIN_TYPE(thistype)->flds_bnds.fields[n] | |
995 | #define TYPE_FIELD_TYPE(thistype, n) FIELD_TYPE(TYPE_FIELD(thistype, n)) | |
996 | #define TYPE_FIELD_NAME(thistype, n) FIELD_NAME(TYPE_FIELD(thistype, n)) | |
997 | #define TYPE_FIELD_LOC_KIND(thistype, n) FIELD_LOC_KIND (TYPE_FIELD (thistype, n)) | |
998 | #define TYPE_FIELD_BITPOS(thistype, n) FIELD_BITPOS (TYPE_FIELD (thistype, n)) | |
999 | #define TYPE_FIELD_STATIC_PHYSNAME(thistype, n) FIELD_STATIC_PHYSNAME (TYPE_FIELD (thistype, n)) | |
1000 | #define TYPE_FIELD_STATIC_PHYSADDR(thistype, n) FIELD_STATIC_PHYSADDR (TYPE_FIELD (thistype, n)) | |
1001 | #define TYPE_FIELD_ARTIFICIAL(thistype, n) FIELD_ARTIFICIAL(TYPE_FIELD(thistype,n)) | |
1002 | #define TYPE_FIELD_BITSIZE(thistype, n) FIELD_BITSIZE(TYPE_FIELD(thistype,n)) | |
1003 | #define TYPE_FIELD_PACKED(thistype, n) (FIELD_BITSIZE(TYPE_FIELD(thistype,n))!=0) | |
1004 | ||
1005 | #define TYPE_FIELD_PRIVATE_BITS(thistype) \ | |
1006 | TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits | |
1007 | #define TYPE_FIELD_PROTECTED_BITS(thistype) \ | |
1008 | TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits | |
1009 | #define TYPE_FIELD_IGNORE_BITS(thistype) \ | |
1010 | TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits | |
1011 | #define TYPE_FIELD_VIRTUAL_BITS(thistype) \ | |
1012 | TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits | |
1013 | #define SET_TYPE_FIELD_PRIVATE(thistype, n) \ | |
1014 | B_SET (TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n)) | |
1015 | #define SET_TYPE_FIELD_PROTECTED(thistype, n) \ | |
1016 | B_SET (TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n)) | |
1017 | #define SET_TYPE_FIELD_IGNORE(thistype, n) \ | |
1018 | B_SET (TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits, (n)) | |
1019 | #define SET_TYPE_FIELD_VIRTUAL(thistype, n) \ | |
1020 | B_SET (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n)) | |
1021 | #define TYPE_FIELD_PRIVATE(thistype, n) \ | |
1022 | (TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits == NULL ? 0 \ | |
1023 | : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n))) | |
1024 | #define TYPE_FIELD_PROTECTED(thistype, n) \ | |
1025 | (TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits == NULL ? 0 \ | |
1026 | : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n))) | |
1027 | #define TYPE_FIELD_IGNORE(thistype, n) \ | |
1028 | (TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits == NULL ? 0 \ | |
1029 | : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits, (n))) | |
1030 | #define TYPE_FIELD_VIRTUAL(thistype, n) \ | |
1031 | (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits == NULL ? 0 \ | |
1032 | : B_TST(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n))) | |
1033 | ||
1034 | #define TYPE_FN_FIELDLISTS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists | |
1035 | #define TYPE_FN_FIELDLIST(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n] | |
1036 | #define TYPE_FN_FIELDLIST1(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].fn_fields | |
1037 | #define TYPE_FN_FIELDLIST_NAME(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].name | |
1038 | #define TYPE_FN_FIELDLIST_LENGTH(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].length | |
1039 | ||
1040 | #define TYPE_N_TEMPLATE_ARGUMENTS(thistype) \ | |
1041 | TYPE_CPLUS_SPECIFIC (thistype)->n_template_arguments | |
1042 | #define TYPE_TEMPLATE_ARGUMENTS(thistype) \ | |
1043 | TYPE_CPLUS_SPECIFIC (thistype)->template_arguments | |
1044 | #define TYPE_TEMPLATE_ARGUMENT(thistype, n) \ | |
1045 | TYPE_CPLUS_SPECIFIC (thistype)->template_arguments[n] | |
1046 | ||
1047 | #define TYPE_FN_FIELD(thisfn, n) (thisfn)[n] | |
1048 | #define TYPE_FN_FIELD_PHYSNAME(thisfn, n) (thisfn)[n].physname | |
1049 | #define TYPE_FN_FIELD_TYPE(thisfn, n) (thisfn)[n].type | |
1050 | #define TYPE_FN_FIELD_ARGS(thisfn, n) TYPE_FIELDS ((thisfn)[n].type) | |
1051 | #define TYPE_FN_FIELD_CONST(thisfn, n) ((thisfn)[n].is_const) | |
1052 | #define TYPE_FN_FIELD_VOLATILE(thisfn, n) ((thisfn)[n].is_volatile) | |
1053 | #define TYPE_FN_FIELD_PRIVATE(thisfn, n) ((thisfn)[n].is_private) | |
1054 | #define TYPE_FN_FIELD_PROTECTED(thisfn, n) ((thisfn)[n].is_protected) | |
1055 | #define TYPE_FN_FIELD_PUBLIC(thisfn, n) ((thisfn)[n].is_public) | |
1056 | #define TYPE_FN_FIELD_STATIC(thisfn, n) ((thisfn)[n].is_static) | |
1057 | #define TYPE_FN_FIELD_FINAL(thisfn, n) ((thisfn)[n].is_final) | |
1058 | #define TYPE_FN_FIELD_SYNCHRONIZED(thisfn, n) ((thisfn)[n].is_synchronized) | |
1059 | #define TYPE_FN_FIELD_NATIVE(thisfn, n) ((thisfn)[n].is_native) | |
1060 | #define TYPE_FN_FIELD_ARTIFICIAL(thisfn, n) ((thisfn)[n].is_artificial) | |
1061 | #define TYPE_FN_FIELD_ABSTRACT(thisfn, n) ((thisfn)[n].is_abstract) | |
1062 | #define TYPE_FN_FIELD_STUB(thisfn, n) ((thisfn)[n].is_stub) | |
1063 | #define TYPE_FN_FIELD_FCONTEXT(thisfn, n) ((thisfn)[n].fcontext) | |
1064 | #define TYPE_FN_FIELD_VOFFSET(thisfn, n) ((thisfn)[n].voffset-2) | |
1065 | #define TYPE_FN_FIELD_VIRTUAL_P(thisfn, n) ((thisfn)[n].voffset > 1) | |
1066 | #define TYPE_FN_FIELD_STATIC_P(thisfn, n) ((thisfn)[n].voffset == VOFFSET_STATIC) | |
1067 | ||
1068 | #define TYPE_LOCALTYPE_PTR(thistype) (TYPE_CPLUS_SPECIFIC(thistype)->localtype_ptr) | |
1069 | #define TYPE_LOCALTYPE_FILE(thistype) (TYPE_CPLUS_SPECIFIC(thistype)->localtype_ptr->file) | |
1070 | #define TYPE_LOCALTYPE_LINE(thistype) (TYPE_CPLUS_SPECIFIC(thistype)->localtype_ptr->line) | |
1071 | ||
1072 | #define TYPE_TYPEDEF_FIELD_ARRAY(thistype) \ | |
1073 | TYPE_CPLUS_SPECIFIC (thistype)->typedef_field | |
1074 | #define TYPE_TYPEDEF_FIELD(thistype, n) \ | |
1075 | TYPE_CPLUS_SPECIFIC (thistype)->typedef_field[n] | |
1076 | #define TYPE_TYPEDEF_FIELD_NAME(thistype, n) \ | |
1077 | TYPE_TYPEDEF_FIELD (thistype, n).name | |
1078 | #define TYPE_TYPEDEF_FIELD_TYPE(thistype, n) \ | |
1079 | TYPE_TYPEDEF_FIELD (thistype, n).type | |
1080 | #define TYPE_TYPEDEF_FIELD_COUNT(thistype) \ | |
1081 | TYPE_CPLUS_SPECIFIC (thistype)->typedef_field_count | |
1082 | ||
1083 | #define TYPE_IS_OPAQUE(thistype) (((TYPE_CODE (thistype) == TYPE_CODE_STRUCT) || \ | |
1084 | (TYPE_CODE (thistype) == TYPE_CODE_UNION)) && \ | |
1085 | (TYPE_NFIELDS (thistype) == 0) && \ | |
1086 | (!HAVE_CPLUS_STRUCT (thistype) \ | |
1087 | || TYPE_NFN_FIELDS (thistype) == 0) && \ | |
1088 | (TYPE_STUB (thistype) || !TYPE_STUB_SUPPORTED (thistype))) | |
1089 | ||
1090 | /* A helper macro that returns the name of an error type. If the type | |
1091 | has a name, it is used; otherwise, a default is used. */ | |
1092 | #define TYPE_ERROR_NAME(type) \ | |
1093 | (TYPE_NAME (type) ? TYPE_NAME (type) : _("<error type>")) | |
1094 | ||
1095 | struct builtin_type | |
1096 | { | |
1097 | /* Integral types. */ | |
1098 | ||
1099 | /* Implicit size/sign (based on the the architecture's ABI). */ | |
1100 | struct type *builtin_void; | |
1101 | struct type *builtin_char; | |
1102 | struct type *builtin_short; | |
1103 | struct type *builtin_int; | |
1104 | struct type *builtin_long; | |
1105 | struct type *builtin_signed_char; | |
1106 | struct type *builtin_unsigned_char; | |
1107 | struct type *builtin_unsigned_short; | |
1108 | struct type *builtin_unsigned_int; | |
1109 | struct type *builtin_unsigned_long; | |
1110 | struct type *builtin_float; | |
1111 | struct type *builtin_double; | |
1112 | struct type *builtin_long_double; | |
1113 | struct type *builtin_complex; | |
1114 | struct type *builtin_double_complex; | |
1115 | struct type *builtin_string; | |
1116 | struct type *builtin_bool; | |
1117 | struct type *builtin_long_long; | |
1118 | struct type *builtin_unsigned_long_long; | |
1119 | struct type *builtin_decfloat; | |
1120 | struct type *builtin_decdouble; | |
1121 | struct type *builtin_declong; | |
1122 | ||
1123 | /* "True" character types. | |
1124 | We use these for the '/c' print format, because c_char is just a | |
1125 | one-byte integral type, which languages less laid back than C | |
1126 | will print as ... well, a one-byte integral type. */ | |
1127 | struct type *builtin_true_char; | |
1128 | struct type *builtin_true_unsigned_char; | |
1129 | ||
1130 | /* Explicit sizes - see C9X <intypes.h> for naming scheme. The "int0" | |
1131 | is for when an architecture needs to describe a register that has | |
1132 | no size. */ | |
1133 | struct type *builtin_int0; | |
1134 | struct type *builtin_int8; | |
1135 | struct type *builtin_uint8; | |
1136 | struct type *builtin_int16; | |
1137 | struct type *builtin_uint16; | |
1138 | struct type *builtin_int32; | |
1139 | struct type *builtin_uint32; | |
1140 | struct type *builtin_int64; | |
1141 | struct type *builtin_uint64; | |
1142 | struct type *builtin_int128; | |
1143 | struct type *builtin_uint128; | |
1144 | ||
1145 | /* Wide character types. */ | |
1146 | struct type *builtin_char16; | |
1147 | struct type *builtin_char32; | |
1148 | ||
1149 | /* Pointer types. */ | |
1150 | ||
1151 | /* `pointer to data' type. Some target platforms use an implicitly | |
1152 | {sign,zero} -extended 32-bit ABI pointer on a 64-bit ISA. */ | |
1153 | struct type *builtin_data_ptr; | |
1154 | ||
1155 | /* `pointer to function (returning void)' type. Harvard | |
1156 | architectures mean that ABI function and code pointers are not | |
1157 | interconvertible. Similarly, since ANSI, C standards have | |
1158 | explicitly said that pointers to functions and pointers to data | |
1159 | are not interconvertible --- that is, you can't cast a function | |
1160 | pointer to void * and back, and expect to get the same value. | |
1161 | However, all function pointer types are interconvertible, so void | |
1162 | (*) () can server as a generic function pointer. */ | |
1163 | struct type *builtin_func_ptr; | |
1164 | ||
1165 | ||
1166 | /* Special-purpose types. */ | |
1167 | ||
1168 | /* This type is used to represent a GDB internal function. */ | |
1169 | struct type *internal_fn; | |
1170 | }; | |
1171 | ||
1172 | /* Return the type table for the specified architecture. */ | |
1173 | extern const struct builtin_type *builtin_type (struct gdbarch *gdbarch); | |
1174 | ||
1175 | ||
1176 | /* Per-objfile types used by symbol readers. */ | |
1177 | ||
1178 | struct objfile_type | |
1179 | { | |
1180 | /* Basic types based on the objfile architecture. */ | |
1181 | struct type *builtin_void; | |
1182 | struct type *builtin_char; | |
1183 | struct type *builtin_short; | |
1184 | struct type *builtin_int; | |
1185 | struct type *builtin_long; | |
1186 | struct type *builtin_long_long; | |
1187 | struct type *builtin_signed_char; | |
1188 | struct type *builtin_unsigned_char; | |
1189 | struct type *builtin_unsigned_short; | |
1190 | struct type *builtin_unsigned_int; | |
1191 | struct type *builtin_unsigned_long; | |
1192 | struct type *builtin_unsigned_long_long; | |
1193 | struct type *builtin_float; | |
1194 | struct type *builtin_double; | |
1195 | struct type *builtin_long_double; | |
1196 | ||
1197 | /* This type is used to represent symbol addresses. */ | |
1198 | struct type *builtin_core_addr; | |
1199 | ||
1200 | /* This type represents a type that was unrecognized in symbol read-in. */ | |
1201 | struct type *builtin_error; | |
1202 | ||
1203 | /* Types used for symbols with no debug information. */ | |
1204 | struct type *nodebug_text_symbol; | |
1205 | struct type *nodebug_data_symbol; | |
1206 | struct type *nodebug_unknown_symbol; | |
1207 | struct type *nodebug_tls_symbol; | |
1208 | }; | |
1209 | ||
1210 | /* Return the type table for the specified objfile. */ | |
1211 | extern const struct objfile_type *objfile_type (struct objfile *objfile); | |
1212 | ||
1213 | ||
1214 | /* Explicit floating-point formats. See "floatformat.h". */ | |
1215 | extern const struct floatformat *floatformats_ieee_half[BFD_ENDIAN_UNKNOWN]; | |
1216 | extern const struct floatformat *floatformats_ieee_single[BFD_ENDIAN_UNKNOWN]; | |
1217 | extern const struct floatformat *floatformats_ieee_double[BFD_ENDIAN_UNKNOWN]; | |
1218 | extern const struct floatformat *floatformats_ieee_double_littlebyte_bigword[BFD_ENDIAN_UNKNOWN]; | |
1219 | extern const struct floatformat *floatformats_i387_ext[BFD_ENDIAN_UNKNOWN]; | |
1220 | extern const struct floatformat *floatformats_m68881_ext[BFD_ENDIAN_UNKNOWN]; | |
1221 | extern const struct floatformat *floatformats_arm_ext[BFD_ENDIAN_UNKNOWN]; | |
1222 | extern const struct floatformat *floatformats_ia64_spill[BFD_ENDIAN_UNKNOWN]; | |
1223 | extern const struct floatformat *floatformats_ia64_quad[BFD_ENDIAN_UNKNOWN]; | |
1224 | extern const struct floatformat *floatformats_vax_f[BFD_ENDIAN_UNKNOWN]; | |
1225 | extern const struct floatformat *floatformats_vax_d[BFD_ENDIAN_UNKNOWN]; | |
1226 | extern const struct floatformat *floatformats_ibm_long_double[BFD_ENDIAN_UNKNOWN]; | |
1227 | ||
1228 | ||
1229 | /* Allocate space for storing data associated with a particular type. | |
1230 | We ensure that the space is allocated using the same mechanism that | |
1231 | was used to allocate the space for the type structure itself. I.E. | |
1232 | if the type is on an objfile's objfile_obstack, then the space for data | |
1233 | associated with that type will also be allocated on the objfile_obstack. | |
1234 | If the type is not associated with any particular objfile (such as | |
1235 | builtin types), then the data space will be allocated with xmalloc, | |
1236 | the same as for the type structure. */ | |
1237 | ||
1238 | #define TYPE_ALLOC(t,size) \ | |
1239 | (TYPE_OBJFILE_OWNED (t) \ | |
1240 | ? obstack_alloc (&TYPE_OBJFILE (t) -> objfile_obstack, size) \ | |
1241 | : xmalloc (size)) | |
1242 | ||
1243 | #define TYPE_ZALLOC(t,size) \ | |
1244 | (TYPE_OBJFILE_OWNED (t) \ | |
1245 | ? memset (obstack_alloc (&TYPE_OBJFILE (t)->objfile_obstack, size), \ | |
1246 | 0, size) \ | |
1247 | : xzalloc (size)) | |
1248 | ||
1249 | /* Use alloc_type to allocate a type owned by an objfile. | |
1250 | Use alloc_type_arch to allocate a type owned by an architecture. | |
1251 | Use alloc_type_copy to allocate a type with the same owner as a | |
1252 | pre-existing template type, no matter whether objfile or gdbarch. */ | |
1253 | extern struct type *alloc_type (struct objfile *); | |
1254 | extern struct type *alloc_type_arch (struct gdbarch *); | |
1255 | extern struct type *alloc_type_copy (const struct type *); | |
1256 | ||
1257 | /* Return the type's architecture. For types owned by an architecture, | |
1258 | that architecture is returned. For types owned by an objfile, that | |
1259 | objfile's architecture is returned. */ | |
1260 | extern struct gdbarch *get_type_arch (const struct type *); | |
1261 | ||
1262 | /* Helper function to construct objfile-owned types. */ | |
1263 | extern struct type *init_type (enum type_code, int, int, char *, | |
1264 | struct objfile *); | |
1265 | ||
1266 | /* Helper functions to construct architecture-owned types. */ | |
1267 | extern struct type *arch_type (struct gdbarch *, enum type_code, int, char *); | |
1268 | extern struct type *arch_integer_type (struct gdbarch *, int, int, char *); | |
1269 | extern struct type *arch_character_type (struct gdbarch *, int, int, char *); | |
1270 | extern struct type *arch_boolean_type (struct gdbarch *, int, int, char *); | |
1271 | extern struct type *arch_float_type (struct gdbarch *, int, char *, | |
1272 | const struct floatformat **); | |
1273 | extern struct type *arch_complex_type (struct gdbarch *, char *, | |
1274 | struct type *); | |
1275 | ||
1276 | /* Helper functions to construct a struct or record type. An | |
1277 | initially empty type is created using arch_composite_type(). | |
1278 | Fields are then added using append_composite_type_field*(). A union | |
1279 | type has its size set to the largest field. A struct type has each | |
1280 | field packed against the previous. */ | |
1281 | ||
1282 | extern struct type *arch_composite_type (struct gdbarch *gdbarch, | |
1283 | char *name, enum type_code code); | |
1284 | extern void append_composite_type_field (struct type *t, char *name, | |
1285 | struct type *field); | |
1286 | extern void append_composite_type_field_aligned (struct type *t, | |
1287 | char *name, | |
1288 | struct type *field, | |
1289 | int alignment); | |
1290 | struct field *append_composite_type_field_raw (struct type *t, char *name, | |
1291 | struct type *field); | |
1292 | ||
1293 | /* Helper functions to construct a bit flags type. An initially empty | |
1294 | type is created using arch_flag_type(). Flags are then added using | |
1295 | append_flag_type_flag(). */ | |
1296 | extern struct type *arch_flags_type (struct gdbarch *gdbarch, | |
1297 | char *name, int length); | |
1298 | extern void append_flags_type_flag (struct type *type, int bitpos, char *name); | |
1299 | ||
1300 | extern void make_vector_type (struct type *array_type); | |
1301 | extern struct type *init_vector_type (struct type *elt_type, int n); | |
1302 | ||
1303 | extern struct type *lookup_reference_type (struct type *); | |
1304 | ||
1305 | extern struct type *make_reference_type (struct type *, struct type **); | |
1306 | ||
1307 | extern struct type *make_cv_type (int, int, struct type *, struct type **); | |
1308 | ||
1309 | extern void replace_type (struct type *, struct type *); | |
1310 | ||
1311 | extern int address_space_name_to_int (struct gdbarch *, char *); | |
1312 | ||
1313 | extern const char *address_space_int_to_name (struct gdbarch *, int); | |
1314 | ||
1315 | extern struct type *make_type_with_address_space (struct type *type, | |
1316 | int space_identifier); | |
1317 | ||
1318 | extern struct type *lookup_memberptr_type (struct type *, struct type *); | |
1319 | ||
1320 | extern struct type *lookup_methodptr_type (struct type *); | |
1321 | ||
1322 | extern void smash_to_method_type (struct type *type, struct type *domain, | |
1323 | struct type *to_type, struct field *args, | |
1324 | int nargs, int varargs); | |
1325 | ||
1326 | extern void smash_to_memberptr_type (struct type *, struct type *, | |
1327 | struct type *); | |
1328 | ||
1329 | extern void smash_to_methodptr_type (struct type *, struct type *); | |
1330 | ||
1331 | extern struct type *allocate_stub_method (struct type *); | |
1332 | ||
1333 | extern char *type_name_no_tag (const struct type *); | |
1334 | ||
1335 | extern struct type *lookup_struct_elt_type (struct type *, char *, int); | |
1336 | ||
1337 | extern struct type *make_pointer_type (struct type *, struct type **); | |
1338 | ||
1339 | extern struct type *lookup_pointer_type (struct type *); | |
1340 | ||
1341 | extern struct type *make_function_type (struct type *, struct type **); | |
1342 | ||
1343 | extern struct type *lookup_function_type (struct type *); | |
1344 | ||
1345 | extern struct type *create_range_type (struct type *, struct type *, LONGEST, | |
1346 | LONGEST); | |
1347 | ||
1348 | extern struct type *create_array_type (struct type *, struct type *, | |
1349 | struct type *); | |
1350 | extern struct type *lookup_array_range_type (struct type *, int, int); | |
1351 | ||
1352 | extern struct type *create_string_type (struct type *, struct type *, | |
1353 | struct type *); | |
1354 | extern struct type *lookup_string_range_type (struct type *, int, int); | |
1355 | ||
1356 | extern struct type *create_set_type (struct type *, struct type *); | |
1357 | ||
1358 | extern struct type *lookup_unsigned_typename (const struct language_defn *, | |
1359 | struct gdbarch *,char *); | |
1360 | ||
1361 | extern struct type *lookup_signed_typename (const struct language_defn *, | |
1362 | struct gdbarch *,char *); | |
1363 | ||
1364 | extern struct type *check_typedef (struct type *); | |
1365 | ||
1366 | #define CHECK_TYPEDEF(TYPE) \ | |
1367 | do { \ | |
1368 | (TYPE) = check_typedef (TYPE); \ | |
1369 | } while (0) | |
1370 | ||
1371 | extern void check_stub_method_group (struct type *, int); | |
1372 | ||
1373 | extern char *gdb_mangle_name (struct type *, int, int); | |
1374 | ||
1375 | extern struct type *lookup_typename (const struct language_defn *, | |
1376 | struct gdbarch *, char *, | |
1377 | const struct block *, int); | |
1378 | ||
1379 | extern struct type *lookup_template_type (char *, struct type *, | |
1380 | struct block *); | |
1381 | ||
1382 | extern int get_vptr_fieldno (struct type *, struct type **); | |
1383 | ||
1384 | extern int get_discrete_bounds (struct type *, LONGEST *, LONGEST *); | |
1385 | ||
1386 | extern int class_types_same_p (const struct type *, const struct type *); | |
1387 | ||
1388 | extern int is_ancestor (struct type *, struct type *); | |
1389 | ||
1390 | extern int is_public_ancestor (struct type *, struct type *); | |
1391 | ||
1392 | extern int is_unique_ancestor (struct type *, struct value *); | |
1393 | ||
1394 | /* Overload resolution */ | |
1395 | ||
1396 | #define LENGTH_MATCH(bv) ((bv)->rank[0]) | |
1397 | ||
1398 | /* Badness if parameter list length doesn't match arg list length */ | |
1399 | #define LENGTH_MISMATCH_BADNESS 100 | |
1400 | /* Dummy badness value for nonexistent parameter positions */ | |
1401 | #define TOO_FEW_PARAMS_BADNESS 100 | |
1402 | /* Badness if no conversion among types */ | |
1403 | #define INCOMPATIBLE_TYPE_BADNESS 100 | |
1404 | ||
1405 | /* Badness of integral promotion */ | |
1406 | #define INTEGER_PROMOTION_BADNESS 1 | |
1407 | /* Badness of floating promotion */ | |
1408 | #define FLOAT_PROMOTION_BADNESS 1 | |
1409 | /* Badness of converting a derived class pointer | |
1410 | to a base class pointer. */ | |
1411 | #define BASE_PTR_CONVERSION_BADNESS 1 | |
1412 | /* Badness of integral conversion */ | |
1413 | #define INTEGER_CONVERSION_BADNESS 2 | |
1414 | /* Badness of floating conversion */ | |
1415 | #define FLOAT_CONVERSION_BADNESS 2 | |
1416 | /* Badness of integer<->floating conversions */ | |
1417 | #define INT_FLOAT_CONVERSION_BADNESS 2 | |
1418 | /* Badness of converting to a boolean */ | |
1419 | #define BOOLEAN_CONVERSION_BADNESS 2 | |
1420 | /* Badness of pointer conversion */ | |
1421 | #define POINTER_CONVERSION_BADNESS 2 | |
1422 | /* Badness of conversion of pointer to void pointer */ | |
1423 | #define VOID_PTR_CONVERSION_BADNESS 2 | |
1424 | /* Badness of converting derived to base class */ | |
1425 | #define BASE_CONVERSION_BADNESS 2 | |
1426 | /* Badness of converting from non-reference to reference */ | |
1427 | #define REFERENCE_CONVERSION_BADNESS 2 | |
1428 | ||
1429 | /* Non-standard conversions allowed by the debugger */ | |
1430 | /* Converting a pointer to an int is usually OK */ | |
1431 | #define NS_POINTER_CONVERSION_BADNESS 10 | |
1432 | ||
1433 | ||
1434 | extern int compare_badness (struct badness_vector *, struct badness_vector *); | |
1435 | ||
1436 | extern struct badness_vector *rank_function (struct type **, int, | |
1437 | struct type **, int); | |
1438 | ||
1439 | extern int rank_one_type (struct type *, struct type *); | |
1440 | ||
1441 | extern void recursive_dump_type (struct type *, int); | |
1442 | ||
1443 | extern int field_is_static (struct field *); | |
1444 | ||
1445 | /* printcmd.c */ | |
1446 | ||
1447 | extern void print_scalar_formatted (const void *, struct type *, | |
1448 | const struct value_print_options *, | |
1449 | int, struct ui_file *); | |
1450 | ||
1451 | extern int can_dereference (struct type *); | |
1452 | ||
1453 | extern int is_integral_type (struct type *); | |
1454 | ||
1455 | extern void maintenance_print_type (char *, int); | |
1456 | ||
1457 | extern htab_t create_copied_types_hash (struct objfile *objfile); | |
1458 | ||
1459 | extern struct type *copy_type_recursive (struct objfile *objfile, | |
1460 | struct type *type, | |
1461 | htab_t copied_types); | |
1462 | ||
1463 | extern struct type *copy_type (const struct type *type); | |
1464 | ||
1465 | #endif /* GDBTYPES_H */ |