* Makefile.in (vax_tdep_h): Define.
[deliverable/binutils-gdb.git] / gdb / gdbtypes.c
CommitLineData
c906108c 1/* Support routines for manipulating internal types for GDB.
d7f0b9ce 2 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
b6ba6518 3 Free Software Foundation, Inc.
c906108c
SS
4 Contributed by Cygnus Support, using pieces from other GDB modules.
5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
24#include "gdb_string.h"
25#include "bfd.h"
26#include "symtab.h"
27#include "symfile.h"
28#include "objfiles.h"
29#include "gdbtypes.h"
30#include "expression.h"
31#include "language.h"
32#include "target.h"
33#include "value.h"
34#include "demangle.h"
35#include "complaints.h"
36#include "gdbcmd.h"
c91ecb25 37#include "wrapper.h"
015a42b4 38#include "cp-abi.h"
a02fd225 39#include "gdb_assert.h"
c906108c
SS
40
41/* These variables point to the objects
42 representing the predefined C data types. */
43
44struct type *builtin_type_void;
45struct type *builtin_type_char;
9e0b60a8 46struct type *builtin_type_true_char;
c906108c
SS
47struct type *builtin_type_short;
48struct type *builtin_type_int;
49struct type *builtin_type_long;
50struct type *builtin_type_long_long;
51struct type *builtin_type_signed_char;
52struct type *builtin_type_unsigned_char;
53struct type *builtin_type_unsigned_short;
54struct type *builtin_type_unsigned_int;
55struct type *builtin_type_unsigned_long;
56struct type *builtin_type_unsigned_long_long;
57struct type *builtin_type_float;
58struct type *builtin_type_double;
59struct type *builtin_type_long_double;
60struct type *builtin_type_complex;
61struct type *builtin_type_double_complex;
62struct type *builtin_type_string;
63struct type *builtin_type_int8;
64struct type *builtin_type_uint8;
65struct type *builtin_type_int16;
66struct type *builtin_type_uint16;
67struct type *builtin_type_int32;
68struct type *builtin_type_uint32;
69struct type *builtin_type_int64;
70struct type *builtin_type_uint64;
8b982acf
EZ
71struct type *builtin_type_int128;
72struct type *builtin_type_uint128;
c906108c 73struct type *builtin_type_bool;
ac3aafc7
EZ
74
75/* 128 bit long vector types */
3139facc 76struct type *builtin_type_v2_double;
ac3aafc7 77struct type *builtin_type_v4_float;
3139facc 78struct type *builtin_type_v2_int64;
ac3aafc7
EZ
79struct type *builtin_type_v4_int32;
80struct type *builtin_type_v8_int16;
81struct type *builtin_type_v16_int8;
82/* 64 bit long vector types */
6599f021 83struct type *builtin_type_v2_float;
ac3aafc7
EZ
84struct type *builtin_type_v2_int32;
85struct type *builtin_type_v4_int16;
86struct type *builtin_type_v8_int8;
87
917317f4 88struct type *builtin_type_v4sf;
c2d11a7d 89struct type *builtin_type_v4si;
08cf96df 90struct type *builtin_type_v16qi;
c2d11a7d 91struct type *builtin_type_v8qi;
08cf96df 92struct type *builtin_type_v8hi;
c2d11a7d
JM
93struct type *builtin_type_v4hi;
94struct type *builtin_type_v2si;
08cf96df 95struct type *builtin_type_vec128;
3139facc 96struct type *builtin_type_vec128i;
598f52df
AC
97struct type *builtin_type_ieee_single_big;
98struct type *builtin_type_ieee_single_little;
99struct type *builtin_type_ieee_double_big;
100struct type *builtin_type_ieee_double_little;
101struct type *builtin_type_ieee_double_littlebyte_bigword;
102struct type *builtin_type_i387_ext;
103struct type *builtin_type_m68881_ext;
104struct type *builtin_type_i960_ext;
105struct type *builtin_type_m88110_ext;
106struct type *builtin_type_m88110_harris_ext;
107struct type *builtin_type_arm_ext_big;
108struct type *builtin_type_arm_ext_littlebyte_bigword;
109struct type *builtin_type_ia64_spill_big;
110struct type *builtin_type_ia64_spill_little;
111struct type *builtin_type_ia64_quad_big;
112struct type *builtin_type_ia64_quad_little;
090a2205 113struct type *builtin_type_void_data_ptr;
ee3a7b7f 114struct type *builtin_type_void_func_ptr;
c4093a6a
JM
115struct type *builtin_type_CORE_ADDR;
116struct type *builtin_type_bfd_vma;
c906108c
SS
117
118int opaque_type_resolution = 1;
5d161b24 119int overload_debug = 0;
c906108c 120
c5aa993b
JM
121struct extra
122 {
123 char str[128];
124 int len;
8c990f3c 125 }; /* maximum extension is 128! FIXME */
c906108c 126
a14ed312
KB
127static void add_name (struct extra *, char *);
128static void add_mangled_type (struct extra *, struct type *);
c906108c 129#if 0
a14ed312 130static void cfront_mangle_name (struct type *, int, int);
c906108c 131#endif
a14ed312 132static void print_bit_vector (B_TYPE *, int);
ad2f7632 133static void print_arg_types (struct field *, int, int);
a14ed312
KB
134static void dump_fn_fieldlists (struct type *, int);
135static void print_cplus_stuff (struct type *, int);
136static void virtual_base_list_aux (struct type *dclass);
7a292a7a 137
c906108c
SS
138
139/* Alloc a new type structure and fill it with some defaults. If
140 OBJFILE is non-NULL, then allocate the space for the type structure
2fdde8f8
DJ
141 in that objfile's type_obstack. Otherwise allocate the new type structure
142 by xmalloc () (for permanent types). */
c906108c
SS
143
144struct type *
fba45db2 145alloc_type (struct objfile *objfile)
c906108c
SS
146{
147 register struct type *type;
148
149 /* Alloc the structure and start off with all fields zeroed. */
150
151 if (objfile == NULL)
152 {
2fdde8f8
DJ
153 type = xmalloc (sizeof (struct type));
154 memset (type, 0, sizeof (struct type));
155 TYPE_MAIN_TYPE (type) = xmalloc (sizeof (struct main_type));
c906108c
SS
156 }
157 else
158 {
2fdde8f8
DJ
159 type = obstack_alloc (&objfile->type_obstack,
160 sizeof (struct type));
161 memset (type, 0, sizeof (struct type));
162 TYPE_MAIN_TYPE (type) = obstack_alloc (&objfile->type_obstack,
163 sizeof (struct main_type));
c906108c
SS
164 OBJSTAT (objfile, n_types++);
165 }
2fdde8f8 166 memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
c906108c
SS
167
168 /* Initialize the fields that might not be zero. */
169
170 TYPE_CODE (type) = TYPE_CODE_UNDEF;
171 TYPE_OBJFILE (type) = objfile;
172 TYPE_VPTR_FIELDNO (type) = -1;
2fdde8f8 173 TYPE_CHAIN (type) = type; /* Chain back to itself. */
c906108c
SS
174
175 return (type);
176}
177
2fdde8f8
DJ
178/* Alloc a new type instance structure, fill it with some defaults,
179 and point it at OLDTYPE. Allocate the new type instance from the
180 same place as OLDTYPE. */
181
182static struct type *
183alloc_type_instance (struct type *oldtype)
184{
185 struct type *type;
186
187 /* Allocate the structure. */
188
189 if (TYPE_OBJFILE (oldtype) == NULL)
190 {
191 type = xmalloc (sizeof (struct type));
192 memset (type, 0, sizeof (struct type));
193 }
194 else
195 {
196 type = obstack_alloc (&TYPE_OBJFILE (oldtype)->type_obstack,
197 sizeof (struct type));
198 memset (type, 0, sizeof (struct type));
199 }
200 TYPE_MAIN_TYPE (type) = TYPE_MAIN_TYPE (oldtype);
201
202 TYPE_CHAIN (type) = type; /* Chain back to itself for now. */
203
204 return (type);
205}
206
207/* Clear all remnants of the previous type at TYPE, in preparation for
208 replacing it with something else. */
209static void
210smash_type (struct type *type)
211{
212 memset (TYPE_MAIN_TYPE (type), 0, sizeof (struct main_type));
213
214 /* For now, delete the rings. */
215 TYPE_CHAIN (type) = type;
216
217 /* For now, leave the pointer/reference types alone. */
218}
219
c906108c
SS
220/* Lookup a pointer to a type TYPE. TYPEPTR, if nonzero, points
221 to a pointer to memory where the pointer type should be stored.
222 If *TYPEPTR is zero, update it to point to the pointer type we return.
223 We allocate new memory if needed. */
224
225struct type *
fba45db2 226make_pointer_type (struct type *type, struct type **typeptr)
c906108c 227{
c5aa993b 228 register struct type *ntype; /* New type */
c906108c
SS
229 struct objfile *objfile;
230
231 ntype = TYPE_POINTER_TYPE (type);
232
c5aa993b 233 if (ntype)
c906108c 234 {
c5aa993b
JM
235 if (typeptr == 0)
236 return ntype; /* Don't care about alloc, and have new type. */
c906108c 237 else if (*typeptr == 0)
c5aa993b 238 {
c906108c
SS
239 *typeptr = ntype; /* Tracking alloc, and we have new type. */
240 return ntype;
c5aa993b 241 }
c906108c
SS
242 }
243
244 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
245 {
246 ntype = alloc_type (TYPE_OBJFILE (type));
247 if (typeptr)
248 *typeptr = ntype;
249 }
c5aa993b
JM
250 else
251 /* We have storage, but need to reset it. */
c906108c
SS
252 {
253 ntype = *typeptr;
254 objfile = TYPE_OBJFILE (ntype);
2fdde8f8 255 smash_type (ntype);
c906108c
SS
256 TYPE_OBJFILE (ntype) = objfile;
257 }
258
259 TYPE_TARGET_TYPE (ntype) = type;
260 TYPE_POINTER_TYPE (type) = ntype;
261
262 /* FIXME! Assume the machine has only one representation for pointers! */
263
264 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
265 TYPE_CODE (ntype) = TYPE_CODE_PTR;
266
67b2adb2
AC
267 /* Mark pointers as unsigned. The target converts between pointers
268 and addresses (CORE_ADDRs) using POINTER_TO_ADDRESS() and
269 ADDRESS_TO_POINTER(). */
c906108c 270 TYPE_FLAGS (ntype) |= TYPE_FLAG_UNSIGNED;
c5aa993b 271
c906108c
SS
272 if (!TYPE_POINTER_TYPE (type)) /* Remember it, if don't have one. */
273 TYPE_POINTER_TYPE (type) = ntype;
274
275 return ntype;
276}
277
278/* Given a type TYPE, return a type of pointers to that type.
279 May need to construct such a type if this is the first use. */
280
281struct type *
fba45db2 282lookup_pointer_type (struct type *type)
c906108c 283{
c5aa993b 284 return make_pointer_type (type, (struct type **) 0);
c906108c
SS
285}
286
287/* Lookup a C++ `reference' to a type TYPE. TYPEPTR, if nonzero, points
288 to a pointer to memory where the reference type should be stored.
289 If *TYPEPTR is zero, update it to point to the reference type we return.
290 We allocate new memory if needed. */
291
292struct type *
fba45db2 293make_reference_type (struct type *type, struct type **typeptr)
c906108c 294{
c5aa993b 295 register struct type *ntype; /* New type */
c906108c
SS
296 struct objfile *objfile;
297
298 ntype = TYPE_REFERENCE_TYPE (type);
299
c5aa993b 300 if (ntype)
c906108c 301 {
c5aa993b
JM
302 if (typeptr == 0)
303 return ntype; /* Don't care about alloc, and have new type. */
c906108c 304 else if (*typeptr == 0)
c5aa993b 305 {
c906108c
SS
306 *typeptr = ntype; /* Tracking alloc, and we have new type. */
307 return ntype;
c5aa993b 308 }
c906108c
SS
309 }
310
311 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
312 {
313 ntype = alloc_type (TYPE_OBJFILE (type));
314 if (typeptr)
315 *typeptr = ntype;
316 }
c5aa993b
JM
317 else
318 /* We have storage, but need to reset it. */
c906108c
SS
319 {
320 ntype = *typeptr;
321 objfile = TYPE_OBJFILE (ntype);
2fdde8f8 322 smash_type (ntype);
c906108c
SS
323 TYPE_OBJFILE (ntype) = objfile;
324 }
325
326 TYPE_TARGET_TYPE (ntype) = type;
327 TYPE_REFERENCE_TYPE (type) = ntype;
328
329 /* FIXME! Assume the machine has only one representation for references,
330 and that it matches the (only) representation for pointers! */
331
332 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
333 TYPE_CODE (ntype) = TYPE_CODE_REF;
c5aa993b 334
c906108c
SS
335 if (!TYPE_REFERENCE_TYPE (type)) /* Remember it, if don't have one. */
336 TYPE_REFERENCE_TYPE (type) = ntype;
337
338 return ntype;
339}
340
341/* Same as above, but caller doesn't care about memory allocation details. */
342
343struct type *
fba45db2 344lookup_reference_type (struct type *type)
c906108c 345{
c5aa993b 346 return make_reference_type (type, (struct type **) 0);
c906108c
SS
347}
348
349/* Lookup a function type that returns type TYPE. TYPEPTR, if nonzero, points
350 to a pointer to memory where the function type should be stored.
351 If *TYPEPTR is zero, update it to point to the function type we return.
352 We allocate new memory if needed. */
353
354struct type *
fba45db2 355make_function_type (struct type *type, struct type **typeptr)
c906108c 356{
c5aa993b 357 register struct type *ntype; /* New type */
c906108c
SS
358 struct objfile *objfile;
359
360 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
361 {
362 ntype = alloc_type (TYPE_OBJFILE (type));
363 if (typeptr)
364 *typeptr = ntype;
365 }
c5aa993b
JM
366 else
367 /* We have storage, but need to reset it. */
c906108c
SS
368 {
369 ntype = *typeptr;
370 objfile = TYPE_OBJFILE (ntype);
2fdde8f8 371 smash_type (ntype);
c906108c
SS
372 TYPE_OBJFILE (ntype) = objfile;
373 }
374
375 TYPE_TARGET_TYPE (ntype) = type;
376
377 TYPE_LENGTH (ntype) = 1;
378 TYPE_CODE (ntype) = TYPE_CODE_FUNC;
c5aa993b 379
c906108c
SS
380 return ntype;
381}
382
383
384/* Given a type TYPE, return a type of functions that return that type.
385 May need to construct such a type if this is the first use. */
386
387struct type *
fba45db2 388lookup_function_type (struct type *type)
c906108c 389{
c5aa993b 390 return make_function_type (type, (struct type **) 0);
c906108c
SS
391}
392
47663de5
MS
393/* Identify address space identifier by name --
394 return the integer flag defined in gdbtypes.h. */
395extern int
396address_space_name_to_int (char *space_identifier)
397{
398 /* Check for known address space delimiters. */
399 if (!strcmp (space_identifier, "code"))
400 return TYPE_FLAG_CODE_SPACE;
401 else if (!strcmp (space_identifier, "data"))
402 return TYPE_FLAG_DATA_SPACE;
403 else
404 error ("Unknown address space specifier: \"%s\"", space_identifier);
405}
406
407/* Identify address space identifier by integer flag as defined in
408 gdbtypes.h -- return the string version of the adress space name. */
409
410extern char *
411address_space_int_to_name (int space_flag)
412{
413 if (space_flag & TYPE_FLAG_CODE_SPACE)
414 return "code";
415 else if (space_flag & TYPE_FLAG_DATA_SPACE)
416 return "data";
417 else
418 return NULL;
419}
420
2fdde8f8
DJ
421/* Create a new type with instance flags NEW_FLAGS, based on TYPE.
422 If STORAGE is non-NULL, create the new type instance there. */
47663de5
MS
423
424struct type *
2fdde8f8
DJ
425make_qualified_type (struct type *type, int new_flags,
426 struct type *storage)
47663de5
MS
427{
428 struct type *ntype;
429
430 ntype = type;
431 do {
2fdde8f8 432 if (TYPE_INSTANCE_FLAGS (ntype) == new_flags)
47663de5 433 return ntype;
2fdde8f8 434 ntype = TYPE_CHAIN (ntype);
47663de5
MS
435 } while (ntype != type);
436
2fdde8f8
DJ
437 /* Create a new type instance. */
438 if (storage == NULL)
439 ntype = alloc_type_instance (type);
440 else
441 {
442 ntype = storage;
443 TYPE_MAIN_TYPE (ntype) = TYPE_MAIN_TYPE (type);
444 TYPE_CHAIN (ntype) = ntype;
445 }
47663de5
MS
446
447 /* Pointers or references to the original type are not relevant to
2fdde8f8 448 the new type. */
47663de5
MS
449 TYPE_POINTER_TYPE (ntype) = (struct type *) 0;
450 TYPE_REFERENCE_TYPE (ntype) = (struct type *) 0;
47663de5 451
2fdde8f8
DJ
452 /* Chain the new qualified type to the old type. */
453 TYPE_CHAIN (ntype) = TYPE_CHAIN (type);
454 TYPE_CHAIN (type) = ntype;
455
456 /* Now set the instance flags and return the new type. */
457 TYPE_INSTANCE_FLAGS (ntype) = new_flags;
47663de5 458
47663de5
MS
459 return ntype;
460}
461
2fdde8f8
DJ
462/* Make an address-space-delimited variant of a type -- a type that
463 is identical to the one supplied except that it has an address
464 space attribute attached to it (such as "code" or "data").
465
466 This is for Harvard architectures. */
467
468struct type *
469make_type_with_address_space (struct type *type, int space_flag)
470{
471 struct type *ntype;
472 int new_flags = ((TYPE_INSTANCE_FLAGS (type)
473 & ~(TYPE_FLAG_CODE_SPACE | TYPE_FLAG_DATA_SPACE))
474 | space_flag);
475
476 return make_qualified_type (type, new_flags, NULL);
477}
c906108c
SS
478
479/* Make a "c-v" variant of a type -- a type that is identical to the
480 one supplied except that it may have const or volatile attributes
481 CNST is a flag for setting the const attribute
482 VOLTL is a flag for setting the volatile attribute
483 TYPE is the base type whose variant we are creating.
484 TYPEPTR, if nonzero, points
485 to a pointer to memory where the reference type should be stored.
486 If *TYPEPTR is zero, update it to point to the reference type we return.
487 We allocate new memory if needed. */
488
489struct type *
fba45db2 490make_cv_type (int cnst, int voltl, struct type *type, struct type **typeptr)
c906108c 491{
c5aa993b
JM
492 register struct type *ntype; /* New type */
493 register struct type *tmp_type = type; /* tmp type */
c906108c
SS
494 struct objfile *objfile;
495
2fdde8f8
DJ
496 int new_flags = (TYPE_INSTANCE_FLAGS (type)
497 & ~(TYPE_FLAG_CONST | TYPE_FLAG_VOLATILE));
c906108c 498
c906108c 499 if (cnst)
2fdde8f8 500 new_flags |= TYPE_FLAG_CONST;
c906108c
SS
501
502 if (voltl)
2fdde8f8 503 new_flags |= TYPE_FLAG_VOLATILE;
a02fd225 504
2fdde8f8 505 if (typeptr && *typeptr != NULL)
a02fd225 506 {
2fdde8f8
DJ
507 /* Objfile is per-core-type. This const-qualified type had best
508 belong to the same objfile as the type it is qualifying, unless
509 we are overwriting a stub type, in which case the safest thing
510 to do is to copy the core type into the new objfile. */
a02fd225 511
2fdde8f8
DJ
512 gdb_assert (TYPE_OBJFILE (*typeptr) == TYPE_OBJFILE (type)
513 || TYPE_STUB (*typeptr));
514 if (TYPE_OBJFILE (*typeptr) != TYPE_OBJFILE (type))
515 {
516 TYPE_MAIN_TYPE (*typeptr)
517 = TYPE_ALLOC (*typeptr, sizeof (struct main_type));
518 *TYPE_MAIN_TYPE (*typeptr)
519 = *TYPE_MAIN_TYPE (type);
520 }
521 }
522
523 ntype = make_qualified_type (type, new_flags, typeptr ? *typeptr : NULL);
c906108c 524
2fdde8f8
DJ
525 if (typeptr != NULL)
526 *typeptr = ntype;
a02fd225 527
2fdde8f8 528 return ntype;
a02fd225 529}
c906108c 530
2fdde8f8
DJ
531/* Replace the contents of ntype with the type *type. This changes the
532 contents, rather than the pointer for TYPE_MAIN_TYPE (ntype); thus
533 the changes are propogated to all types in the TYPE_CHAIN.
dd6bda65 534
cda6c68a
JB
535 In order to build recursive types, it's inevitable that we'll need
536 to update types in place --- but this sort of indiscriminate
537 smashing is ugly, and needs to be replaced with something more
2fdde8f8
DJ
538 controlled. TYPE_MAIN_TYPE is a step in this direction; it's not
539 clear if more steps are needed. */
dd6bda65
DJ
540void
541replace_type (struct type *ntype, struct type *type)
542{
543 struct type *cv_chain, *as_chain, *ptr, *ref;
544
2fdde8f8 545 *TYPE_MAIN_TYPE (ntype) = *TYPE_MAIN_TYPE (type);
dd6bda65 546
2fdde8f8
DJ
547 /* Assert that the two types have equivalent instance qualifiers.
548 This should be true for at least all of our debug readers. */
549 gdb_assert (TYPE_INSTANCE_FLAGS (ntype) == TYPE_INSTANCE_FLAGS (type));
dd6bda65
DJ
550}
551
c906108c
SS
552/* Implement direct support for MEMBER_TYPE in GNU C++.
553 May need to construct such a type if this is the first use.
554 The TYPE is the type of the member. The DOMAIN is the type
555 of the aggregate that the member belongs to. */
556
557struct type *
fba45db2 558lookup_member_type (struct type *type, struct type *domain)
c906108c
SS
559{
560 register struct type *mtype;
561
562 mtype = alloc_type (TYPE_OBJFILE (type));
563 smash_to_member_type (mtype, domain, type);
564 return (mtype);
565}
566
7b83ea04 567/* Allocate a stub method whose return type is TYPE.
c906108c
SS
568 This apparently happens for speed of symbol reading, since parsing
569 out the arguments to the method is cpu-intensive, the way we are doing
570 it. So, we will fill in arguments later.
571 This always returns a fresh type. */
572
573struct type *
fba45db2 574allocate_stub_method (struct type *type)
c906108c
SS
575{
576 struct type *mtype;
577
7e956337
FF
578 mtype = init_type (TYPE_CODE_METHOD, 1, TYPE_FLAG_STUB, NULL,
579 TYPE_OBJFILE (type));
c906108c
SS
580 TYPE_TARGET_TYPE (mtype) = type;
581 /* _DOMAIN_TYPE (mtype) = unknown yet */
c906108c
SS
582 return (mtype);
583}
584
585/* Create a range type using either a blank type supplied in RESULT_TYPE,
586 or creating a new type, inheriting the objfile from INDEX_TYPE.
587
588 Indices will be of type INDEX_TYPE, and will range from LOW_BOUND to
589 HIGH_BOUND, inclusive.
590
591 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
592 sure it is TYPE_CODE_UNDEF before we bash it into a range type? */
593
594struct type *
fba45db2
KB
595create_range_type (struct type *result_type, struct type *index_type,
596 int low_bound, int high_bound)
c906108c
SS
597{
598 if (result_type == NULL)
599 {
600 result_type = alloc_type (TYPE_OBJFILE (index_type));
601 }
602 TYPE_CODE (result_type) = TYPE_CODE_RANGE;
603 TYPE_TARGET_TYPE (result_type) = index_type;
74a9bb82 604 if (TYPE_STUB (index_type))
c906108c
SS
605 TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
606 else
607 TYPE_LENGTH (result_type) = TYPE_LENGTH (check_typedef (index_type));
608 TYPE_NFIELDS (result_type) = 2;
609 TYPE_FIELDS (result_type) = (struct field *)
610 TYPE_ALLOC (result_type, 2 * sizeof (struct field));
611 memset (TYPE_FIELDS (result_type), 0, 2 * sizeof (struct field));
612 TYPE_FIELD_BITPOS (result_type, 0) = low_bound;
613 TYPE_FIELD_BITPOS (result_type, 1) = high_bound;
c5aa993b
JM
614 TYPE_FIELD_TYPE (result_type, 0) = builtin_type_int; /* FIXME */
615 TYPE_FIELD_TYPE (result_type, 1) = builtin_type_int; /* FIXME */
c906108c 616
c5aa993b 617 if (low_bound >= 0)
c906108c
SS
618 TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
619
620 return (result_type);
621}
622
623/* Set *LOWP and *HIGHP to the lower and upper bounds of discrete type TYPE.
624 Return 1 of type is a range type, 0 if it is discrete (and bounds
625 will fit in LONGEST), or -1 otherwise. */
626
627int
fba45db2 628get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp)
c906108c
SS
629{
630 CHECK_TYPEDEF (type);
631 switch (TYPE_CODE (type))
632 {
633 case TYPE_CODE_RANGE:
634 *lowp = TYPE_LOW_BOUND (type);
635 *highp = TYPE_HIGH_BOUND (type);
636 return 1;
637 case TYPE_CODE_ENUM:
638 if (TYPE_NFIELDS (type) > 0)
639 {
640 /* The enums may not be sorted by value, so search all
641 entries */
642 int i;
643
644 *lowp = *highp = TYPE_FIELD_BITPOS (type, 0);
645 for (i = 0; i < TYPE_NFIELDS (type); i++)
646 {
647 if (TYPE_FIELD_BITPOS (type, i) < *lowp)
648 *lowp = TYPE_FIELD_BITPOS (type, i);
649 if (TYPE_FIELD_BITPOS (type, i) > *highp)
650 *highp = TYPE_FIELD_BITPOS (type, i);
651 }
652
653 /* Set unsigned indicator if warranted. */
c5aa993b 654 if (*lowp >= 0)
c906108c
SS
655 {
656 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
657 }
658 }
659 else
660 {
661 *lowp = 0;
662 *highp = -1;
663 }
664 return 0;
665 case TYPE_CODE_BOOL:
666 *lowp = 0;
667 *highp = 1;
668 return 0;
669 case TYPE_CODE_INT:
c5aa993b 670 if (TYPE_LENGTH (type) > sizeof (LONGEST)) /* Too big */
c906108c
SS
671 return -1;
672 if (!TYPE_UNSIGNED (type))
673 {
c5aa993b 674 *lowp = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
c906108c
SS
675 *highp = -*lowp - 1;
676 return 0;
677 }
678 /* ... fall through for unsigned ints ... */
679 case TYPE_CODE_CHAR:
680 *lowp = 0;
681 /* This round-about calculation is to avoid shifting by
7b83ea04
AC
682 TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
683 if TYPE_LENGTH (type) == sizeof (LONGEST). */
c906108c
SS
684 *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
685 *highp = (*highp - 1) | *highp;
686 return 0;
687 default:
688 return -1;
689 }
690}
691
692/* Create an array type using either a blank type supplied in RESULT_TYPE,
693 or creating a new type, inheriting the objfile from RANGE_TYPE.
694
695 Elements will be of type ELEMENT_TYPE, the indices will be of type
696 RANGE_TYPE.
697
698 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
699 sure it is TYPE_CODE_UNDEF before we bash it into an array type? */
700
701struct type *
fba45db2
KB
702create_array_type (struct type *result_type, struct type *element_type,
703 struct type *range_type)
c906108c
SS
704{
705 LONGEST low_bound, high_bound;
706
707 if (result_type == NULL)
708 {
709 result_type = alloc_type (TYPE_OBJFILE (range_type));
710 }
711 TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
712 TYPE_TARGET_TYPE (result_type) = element_type;
713 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
714 low_bound = high_bound = 0;
715 CHECK_TYPEDEF (element_type);
716 TYPE_LENGTH (result_type) =
717 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
718 TYPE_NFIELDS (result_type) = 1;
719 TYPE_FIELDS (result_type) =
720 (struct field *) TYPE_ALLOC (result_type, sizeof (struct field));
721 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
722 TYPE_FIELD_TYPE (result_type, 0) = range_type;
723 TYPE_VPTR_FIELDNO (result_type) = -1;
724
725 /* TYPE_FLAG_TARGET_STUB will take care of zero length arrays */
726 if (TYPE_LENGTH (result_type) == 0)
727 TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
728
729 return (result_type);
730}
731
732/* Create a string type using either a blank type supplied in RESULT_TYPE,
733 or creating a new type. String types are similar enough to array of
734 char types that we can use create_array_type to build the basic type
735 and then bash it into a string type.
736
737 For fixed length strings, the range type contains 0 as the lower
738 bound and the length of the string minus one as the upper bound.
739
740 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
741 sure it is TYPE_CODE_UNDEF before we bash it into a string type? */
742
743struct type *
fba45db2 744create_string_type (struct type *result_type, struct type *range_type)
c906108c
SS
745{
746 result_type = create_array_type (result_type,
747 *current_language->string_char_type,
748 range_type);
749 TYPE_CODE (result_type) = TYPE_CODE_STRING;
750 return (result_type);
751}
752
753struct type *
fba45db2 754create_set_type (struct type *result_type, struct type *domain_type)
c906108c
SS
755{
756 LONGEST low_bound, high_bound, bit_length;
757 if (result_type == NULL)
758 {
759 result_type = alloc_type (TYPE_OBJFILE (domain_type));
760 }
761 TYPE_CODE (result_type) = TYPE_CODE_SET;
762 TYPE_NFIELDS (result_type) = 1;
763 TYPE_FIELDS (result_type) = (struct field *)
764 TYPE_ALLOC (result_type, 1 * sizeof (struct field));
765 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
766
74a9bb82 767 if (!TYPE_STUB (domain_type))
c906108c
SS
768 {
769 if (get_discrete_bounds (domain_type, &low_bound, &high_bound) < 0)
770 low_bound = high_bound = 0;
771 bit_length = high_bound - low_bound + 1;
772 TYPE_LENGTH (result_type)
773 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
774 }
775 TYPE_FIELD_TYPE (result_type, 0) = domain_type;
776
c5aa993b 777 if (low_bound >= 0)
c906108c
SS
778 TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
779
780 return (result_type);
781}
782
917317f4
JM
783/* Construct and return a type of the form:
784 struct NAME { ELT_TYPE ELT_NAME[N]; }
785 We use these types for SIMD registers. For example, the type of
786 the SSE registers on the late x86-family processors is:
787 struct __builtin_v4sf { float f[4]; }
788 built by the function call:
789 init_simd_type ("__builtin_v4sf", builtin_type_float, "f", 4)
790 The type returned is a permanent type, allocated using malloc; it
791 doesn't live in any objfile's obstack. */
c2d11a7d 792static struct type *
917317f4
JM
793init_simd_type (char *name,
794 struct type *elt_type,
795 char *elt_name,
796 int n)
797{
73d322b1
EZ
798 struct type *simd_type;
799 struct type *array_type;
800
801 simd_type = init_composite_type (name, TYPE_CODE_STRUCT);
802 array_type = create_array_type (0, elt_type,
803 create_range_type (0, builtin_type_int,
804 0, n-1));
805 append_composite_type_field (simd_type, elt_name, array_type);
806 return simd_type;
917317f4
JM
807}
808
ac3aafc7
EZ
809static struct type *
810init_vector_type (struct type *elt_type, int n)
811{
812 struct type *array_type;
813
814 array_type = create_array_type (0, elt_type,
815 create_range_type (0, builtin_type_int,
816 0, n-1));
817 TYPE_FLAGS (array_type) |= TYPE_FLAG_VECTOR;
818 return array_type;
819}
820
08cf96df
EZ
821static struct type *
822build_builtin_type_vec128 (void)
823{
824 /* Construct a type for the 128 bit registers. The type we're
825 building is this: */
826#if 0
ac3aafc7 827 union __gdb_builtin_type_vec128
08cf96df 828 {
ac3aafc7
EZ
829 int128_t uint128;
830 float v4_float[4];
831 int32_t v4_int32[4];
832 int16_t v8_int16[8];
833 int8_t v16_int8[16];
08cf96df
EZ
834 };
835#endif
836
837 struct type *t;
08cf96df 838
73d322b1
EZ
839 t = init_composite_type ("__gdb_builtin_type_vec128", TYPE_CODE_UNION);
840 append_composite_type_field (t, "uint128", builtin_type_int128);
ac3aafc7
EZ
841 append_composite_type_field (t, "v4_float", builtin_type_v4_float);
842 append_composite_type_field (t, "v4_int32", builtin_type_v4_int32);
843 append_composite_type_field (t, "v8_int16", builtin_type_v8_int16);
844 append_composite_type_field (t, "v16_int8", builtin_type_v16_int8);
08cf96df
EZ
845
846 return t;
847}
917317f4 848
3139facc
MH
849static struct type *
850build_builtin_type_vec128i (void)
851{
852 /* 128-bit Intel SIMD registers */
853 struct type *t;
854
855 t = init_composite_type ("__gdb_builtin_type_vec128i", TYPE_CODE_UNION);
856 append_composite_type_field (t, "v4_float", builtin_type_v4_float);
857 append_composite_type_field (t, "v2_double", builtin_type_v2_double);
858 append_composite_type_field (t, "v16_int8", builtin_type_v16_int8);
859 append_composite_type_field (t, "v8_int16", builtin_type_v8_int16);
860 append_composite_type_field (t, "v4_int32", builtin_type_v4_int32);
861 append_composite_type_field (t, "v2_int64", builtin_type_v2_int64);
862 append_composite_type_field (t, "uint128", builtin_type_int128);
863
864 return t;
865}
866
7b83ea04 867/* Smash TYPE to be a type of members of DOMAIN with type TO_TYPE.
c906108c
SS
868 A MEMBER is a wierd thing -- it amounts to a typed offset into
869 a struct, e.g. "an int at offset 8". A MEMBER TYPE doesn't
870 include the offset (that's the value of the MEMBER itself), but does
871 include the structure type into which it points (for some reason).
872
873 When "smashing" the type, we preserve the objfile that the
874 old type pointed to, since we aren't changing where the type is actually
875 allocated. */
876
877void
fba45db2
KB
878smash_to_member_type (struct type *type, struct type *domain,
879 struct type *to_type)
c906108c
SS
880{
881 struct objfile *objfile;
882
883 objfile = TYPE_OBJFILE (type);
884
2fdde8f8 885 smash_type (type);
c906108c
SS
886 TYPE_OBJFILE (type) = objfile;
887 TYPE_TARGET_TYPE (type) = to_type;
888 TYPE_DOMAIN_TYPE (type) = domain;
889 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
890 TYPE_CODE (type) = TYPE_CODE_MEMBER;
891}
892
893/* Smash TYPE to be a type of method of DOMAIN with type TO_TYPE.
894 METHOD just means `function that gets an extra "this" argument'.
895
896 When "smashing" the type, we preserve the objfile that the
897 old type pointed to, since we aren't changing where the type is actually
898 allocated. */
899
900void
fba45db2 901smash_to_method_type (struct type *type, struct type *domain,
ad2f7632
DJ
902 struct type *to_type, struct field *args,
903 int nargs, int varargs)
c906108c
SS
904{
905 struct objfile *objfile;
906
907 objfile = TYPE_OBJFILE (type);
908
2fdde8f8 909 smash_type (type);
c906108c
SS
910 TYPE_OBJFILE (type) = objfile;
911 TYPE_TARGET_TYPE (type) = to_type;
912 TYPE_DOMAIN_TYPE (type) = domain;
ad2f7632
DJ
913 TYPE_FIELDS (type) = args;
914 TYPE_NFIELDS (type) = nargs;
915 if (varargs)
916 TYPE_FLAGS (type) |= TYPE_FLAG_VARARGS;
c906108c
SS
917 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
918 TYPE_CODE (type) = TYPE_CODE_METHOD;
919}
920
921/* Return a typename for a struct/union/enum type without "struct ",
922 "union ", or "enum ". If the type has a NULL name, return NULL. */
923
924char *
fba45db2 925type_name_no_tag (register const struct type *type)
c906108c
SS
926{
927 if (TYPE_TAG_NAME (type) != NULL)
928 return TYPE_TAG_NAME (type);
929
930 /* Is there code which expects this to return the name if there is no
931 tag name? My guess is that this is mainly used for C++ in cases where
932 the two will always be the same. */
933 return TYPE_NAME (type);
934}
935
7b83ea04 936/* Lookup a primitive type named NAME.
c5aa993b 937 Return zero if NAME is not a primitive type. */
c906108c
SS
938
939struct type *
fba45db2 940lookup_primitive_typename (char *name)
c906108c 941{
c5aa993b
JM
942 struct type **const *p;
943
944 for (p = current_language->la_builtin_type_vector; *p != NULL; p++)
945 {
0004e5a2 946 if (STREQ (TYPE_NAME (**p), name))
c5aa993b
JM
947 {
948 return (**p);
949 }
950 }
951 return (NULL);
c906108c
SS
952}
953
954/* Lookup a typedef or primitive type named NAME,
955 visible in lexical block BLOCK.
956 If NOERR is nonzero, return zero if NAME is not suitably defined. */
957
958struct type *
fba45db2 959lookup_typename (char *name, struct block *block, int noerr)
c906108c
SS
960{
961 register struct symbol *sym;
962 register struct type *tmp;
963
964 sym = lookup_symbol (name, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
965 if (sym == NULL || SYMBOL_CLASS (sym) != LOC_TYPEDEF)
966 {
967 tmp = lookup_primitive_typename (name);
968 if (tmp)
969 {
970 return (tmp);
971 }
972 else if (!tmp && noerr)
973 {
974 return (NULL);
975 }
976 else
977 {
978 error ("No type named %s.", name);
979 }
980 }
981 return (SYMBOL_TYPE (sym));
982}
983
984struct type *
fba45db2 985lookup_unsigned_typename (char *name)
c906108c
SS
986{
987 char *uns = alloca (strlen (name) + 10);
988
989 strcpy (uns, "unsigned ");
990 strcpy (uns + 9, name);
991 return (lookup_typename (uns, (struct block *) NULL, 0));
992}
993
994struct type *
fba45db2 995lookup_signed_typename (char *name)
c906108c
SS
996{
997 struct type *t;
998 char *uns = alloca (strlen (name) + 8);
999
1000 strcpy (uns, "signed ");
1001 strcpy (uns + 7, name);
1002 t = lookup_typename (uns, (struct block *) NULL, 1);
1003 /* If we don't find "signed FOO" just try again with plain "FOO". */
1004 if (t != NULL)
1005 return t;
1006 return lookup_typename (name, (struct block *) NULL, 0);
1007}
1008
1009/* Lookup a structure type named "struct NAME",
1010 visible in lexical block BLOCK. */
1011
1012struct type *
fba45db2 1013lookup_struct (char *name, struct block *block)
c906108c
SS
1014{
1015 register struct symbol *sym;
1016
1017 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
1018 (struct symtab **) NULL);
1019
1020 if (sym == NULL)
1021 {
1022 error ("No struct type named %s.", name);
1023 }
1024 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
1025 {
1026 error ("This context has class, union or enum %s, not a struct.", name);
1027 }
1028 return (SYMBOL_TYPE (sym));
1029}
1030
1031/* Lookup a union type named "union NAME",
1032 visible in lexical block BLOCK. */
1033
1034struct type *
fba45db2 1035lookup_union (char *name, struct block *block)
c906108c
SS
1036{
1037 register struct symbol *sym;
c5aa993b 1038 struct type *t;
c906108c
SS
1039
1040 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
1041 (struct symtab **) NULL);
1042
1043 if (sym == NULL)
1044 error ("No union type named %s.", name);
1045
c5aa993b 1046 t = SYMBOL_TYPE (sym);
c906108c
SS
1047
1048 if (TYPE_CODE (t) == TYPE_CODE_UNION)
1049 return (t);
1050
1051 /* C++ unions may come out with TYPE_CODE_CLASS, but we look at
1052 * a further "declared_type" field to discover it is really a union.
1053 */
c5aa993b
JM
1054 if (HAVE_CPLUS_STRUCT (t))
1055 if (TYPE_DECLARED_TYPE (t) == DECLARED_TYPE_UNION)
c906108c
SS
1056 return (t);
1057
1058 /* If we get here, it's not a union */
1059 error ("This context has class, struct or enum %s, not a union.", name);
1060}
1061
1062
1063/* Lookup an enum type named "enum NAME",
1064 visible in lexical block BLOCK. */
1065
1066struct type *
fba45db2 1067lookup_enum (char *name, struct block *block)
c906108c
SS
1068{
1069 register struct symbol *sym;
1070
c5aa993b 1071 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
c906108c
SS
1072 (struct symtab **) NULL);
1073 if (sym == NULL)
1074 {
1075 error ("No enum type named %s.", name);
1076 }
1077 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_ENUM)
1078 {
1079 error ("This context has class, struct or union %s, not an enum.", name);
1080 }
1081 return (SYMBOL_TYPE (sym));
1082}
1083
1084/* Lookup a template type named "template NAME<TYPE>",
1085 visible in lexical block BLOCK. */
1086
1087struct type *
fba45db2 1088lookup_template_type (char *name, struct type *type, struct block *block)
c906108c
SS
1089{
1090 struct symbol *sym;
0004e5a2 1091 char *nam = (char *) alloca (strlen (name) + strlen (TYPE_NAME (type)) + 4);
c906108c
SS
1092 strcpy (nam, name);
1093 strcat (nam, "<");
0004e5a2 1094 strcat (nam, TYPE_NAME (type));
c5aa993b 1095 strcat (nam, " >"); /* FIXME, extra space still introduced in gcc? */
c906108c 1096
c5aa993b 1097 sym = lookup_symbol (nam, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
c906108c
SS
1098
1099 if (sym == NULL)
1100 {
1101 error ("No template type named %s.", name);
1102 }
1103 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
1104 {
1105 error ("This context has class, union or enum %s, not a struct.", name);
1106 }
1107 return (SYMBOL_TYPE (sym));
1108}
1109
7b83ea04 1110/* Given a type TYPE, lookup the type of the component of type named NAME.
c906108c
SS
1111
1112 TYPE can be either a struct or union, or a pointer or reference to a struct or
1113 union. If it is a pointer or reference, its target type is automatically used.
1114 Thus '.' and '->' are interchangable, as specified for the definitions of the
1115 expression element types STRUCTOP_STRUCT and STRUCTOP_PTR.
1116
1117 If NOERR is nonzero, return zero if NAME is not suitably defined.
1118 If NAME is the name of a baseclass type, return that type. */
1119
1120struct type *
fba45db2 1121lookup_struct_elt_type (struct type *type, char *name, int noerr)
c906108c
SS
1122{
1123 int i;
1124
1125 for (;;)
1126 {
1127 CHECK_TYPEDEF (type);
1128 if (TYPE_CODE (type) != TYPE_CODE_PTR
1129 && TYPE_CODE (type) != TYPE_CODE_REF)
1130 break;
1131 type = TYPE_TARGET_TYPE (type);
1132 }
1133
1134 if (TYPE_CODE (type) != TYPE_CODE_STRUCT &&
1135 TYPE_CODE (type) != TYPE_CODE_UNION)
1136 {
1137 target_terminal_ours ();
1138 gdb_flush (gdb_stdout);
1139 fprintf_unfiltered (gdb_stderr, "Type ");
1140 type_print (type, "", gdb_stderr, -1);
1141 error (" is not a structure or union type.");
1142 }
1143
1144#if 0
1145 /* FIXME: This change put in by Michael seems incorrect for the case where
1146 the structure tag name is the same as the member name. I.E. when doing
1147 "ptype bell->bar" for "struct foo { int bar; int foo; } bell;"
1148 Disabled by fnf. */
1149 {
1150 char *typename;
1151
1152 typename = type_name_no_tag (type);
1153 if (typename != NULL && STREQ (typename, name))
1154 return type;
1155 }
1156#endif
1157
1158 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1159 {
1160 char *t_field_name = TYPE_FIELD_NAME (type, i);
1161
db577aea 1162 if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
c906108c
SS
1163 {
1164 return TYPE_FIELD_TYPE (type, i);
1165 }
1166 }
1167
1168 /* OK, it's not in this class. Recursively check the baseclasses. */
1169 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1170 {
1171 struct type *t;
1172
1173 t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, noerr);
1174 if (t != NULL)
1175 {
1176 return t;
1177 }
1178 }
1179
1180 if (noerr)
1181 {
1182 return NULL;
1183 }
c5aa993b 1184
c906108c
SS
1185 target_terminal_ours ();
1186 gdb_flush (gdb_stdout);
1187 fprintf_unfiltered (gdb_stderr, "Type ");
1188 type_print (type, "", gdb_stderr, -1);
1189 fprintf_unfiltered (gdb_stderr, " has no component named ");
1190 fputs_filtered (name, gdb_stderr);
1191 error (".");
c5aa993b 1192 return (struct type *) -1; /* For lint */
c906108c
SS
1193}
1194
1195/* If possible, make the vptr_fieldno and vptr_basetype fields of TYPE
1196 valid. Callers should be aware that in some cases (for example,
1197 the type or one of its baseclasses is a stub type and we are
1198 debugging a .o file), this function will not be able to find the virtual
1199 function table pointer, and vptr_fieldno will remain -1 and vptr_basetype
1200 will remain NULL. */
1201
1202void
fba45db2 1203fill_in_vptr_fieldno (struct type *type)
c906108c
SS
1204{
1205 CHECK_TYPEDEF (type);
1206
1207 if (TYPE_VPTR_FIELDNO (type) < 0)
1208 {
1209 int i;
1210
1211 /* We must start at zero in case the first (and only) baseclass is
7b83ea04 1212 virtual (and hence we cannot share the table pointer). */
c906108c
SS
1213 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
1214 {
1215 fill_in_vptr_fieldno (TYPE_BASECLASS (type, i));
1216 if (TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i)) >= 0)
1217 {
1218 TYPE_VPTR_FIELDNO (type)
1219 = TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i));
1220 TYPE_VPTR_BASETYPE (type)
1221 = TYPE_VPTR_BASETYPE (TYPE_BASECLASS (type, i));
1222 break;
1223 }
1224 }
1225 }
1226}
1227
1228/* Find the method and field indices for the destructor in class type T.
1229 Return 1 if the destructor was found, otherwise, return 0. */
1230
1231int
fba45db2 1232get_destructor_fn_field (struct type *t, int *method_indexp, int *field_indexp)
c906108c
SS
1233{
1234 int i;
1235
1236 for (i = 0; i < TYPE_NFN_FIELDS (t); i++)
1237 {
1238 int j;
1239 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
1240
1241 for (j = 0; j < TYPE_FN_FIELDLIST_LENGTH (t, i); j++)
1242 {
015a42b4 1243 if (is_destructor_name (TYPE_FN_FIELD_PHYSNAME (f, j)) != 0)
c906108c
SS
1244 {
1245 *method_indexp = i;
1246 *field_indexp = j;
1247 return 1;
1248 }
1249 }
1250 }
1251 return 0;
1252}
1253
1254/* Added by Bryan Boreham, Kewill, Sun Sep 17 18:07:17 1989.
1255
1256 If this is a stubbed struct (i.e. declared as struct foo *), see if
1257 we can find a full definition in some other file. If so, copy this
1258 definition, so we can use it in future. There used to be a comment (but
1259 not any code) that if we don't find a full definition, we'd set a flag
1260 so we don't spend time in the future checking the same type. That would
1261 be a mistake, though--we might load in more symbols which contain a
1262 full definition for the type.
1263
7b83ea04 1264 This used to be coded as a macro, but I don't think it is called
c906108c
SS
1265 often enough to merit such treatment. */
1266
1267struct complaint stub_noname_complaint =
c5aa993b 1268{"stub type has NULL name", 0, 0};
c906108c
SS
1269
1270struct type *
a02fd225 1271check_typedef (struct type *type)
c906108c
SS
1272{
1273 struct type *orig_type = type;
a02fd225
DJ
1274 int is_const, is_volatile;
1275
c906108c
SS
1276 while (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
1277 {
1278 if (!TYPE_TARGET_TYPE (type))
1279 {
c5aa993b 1280 char *name;
c906108c
SS
1281 struct symbol *sym;
1282
1283 /* It is dangerous to call lookup_symbol if we are currently
1284 reading a symtab. Infinite recursion is one danger. */
1285 if (currently_reading_symtab)
1286 return type;
1287
1288 name = type_name_no_tag (type);
1289 /* FIXME: shouldn't we separately check the TYPE_NAME and the
1290 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
1291 as appropriate? (this code was written before TYPE_NAME and
1292 TYPE_TAG_NAME were separate). */
1293 if (name == NULL)
1294 {
1295 complain (&stub_noname_complaint);
1296 return type;
1297 }
c5aa993b 1298 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
c906108c
SS
1299 (struct symtab **) NULL);
1300 if (sym)
1301 TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
1302 else
c5aa993b 1303 TYPE_TARGET_TYPE (type) = alloc_type (NULL); /* TYPE_CODE_UNDEF */
c906108c
SS
1304 }
1305 type = TYPE_TARGET_TYPE (type);
1306 }
1307
a02fd225
DJ
1308 is_const = TYPE_CONST (type);
1309 is_volatile = TYPE_VOLATILE (type);
1310
c906108c
SS
1311 /* If this is a struct/class/union with no fields, then check whether a
1312 full definition exists somewhere else. This is for systems where a
1313 type definition with no fields is issued for such types, instead of
c5aa993b
JM
1314 identifying them as stub types in the first place */
1315
c906108c
SS
1316 if (TYPE_IS_OPAQUE (type) && opaque_type_resolution && !currently_reading_symtab)
1317 {
c5aa993b
JM
1318 char *name = type_name_no_tag (type);
1319 struct type *newtype;
c906108c
SS
1320 if (name == NULL)
1321 {
1322 complain (&stub_noname_complaint);
1323 return type;
1324 }
1325 newtype = lookup_transparent_type (name);
1326 if (newtype)
a02fd225 1327 make_cv_type (is_const, is_volatile, newtype, &type);
c906108c
SS
1328 }
1329 /* Otherwise, rely on the stub flag being set for opaque/stubbed types */
74a9bb82 1330 else if (TYPE_STUB (type) && !currently_reading_symtab)
c906108c 1331 {
c5aa993b 1332 char *name = type_name_no_tag (type);
c906108c 1333 /* FIXME: shouldn't we separately check the TYPE_NAME and the
7b83ea04
AC
1334 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
1335 as appropriate? (this code was written before TYPE_NAME and
1336 TYPE_TAG_NAME were separate). */
c906108c
SS
1337 struct symbol *sym;
1338 if (name == NULL)
1339 {
1340 complain (&stub_noname_complaint);
1341 return type;
1342 }
1343 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0, (struct symtab **) NULL);
1344 if (sym)
a02fd225 1345 make_cv_type (is_const, is_volatile, SYMBOL_TYPE (sym), &type);
c906108c
SS
1346 }
1347
74a9bb82 1348 if (TYPE_TARGET_STUB (type))
c906108c
SS
1349 {
1350 struct type *range_type;
1351 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
1352
74a9bb82 1353 if (TYPE_STUB (target_type) || TYPE_TARGET_STUB (target_type))
c5aa993b
JM
1354 {
1355 }
c906108c
SS
1356 else if (TYPE_CODE (type) == TYPE_CODE_ARRAY
1357 && TYPE_NFIELDS (type) == 1
1358 && (TYPE_CODE (range_type = TYPE_FIELD_TYPE (type, 0))
1359 == TYPE_CODE_RANGE))
1360 {
1361 /* Now recompute the length of the array type, based on its
1362 number of elements and the target type's length. */
1363 TYPE_LENGTH (type) =
1364 ((TYPE_FIELD_BITPOS (range_type, 1)
1365 - TYPE_FIELD_BITPOS (range_type, 0)
1366 + 1)
1367 * TYPE_LENGTH (target_type));
1368 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1369 }
1370 else if (TYPE_CODE (type) == TYPE_CODE_RANGE)
1371 {
1372 TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
1373 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1374 }
1375 }
1376 /* Cache TYPE_LENGTH for future use. */
1377 TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
1378 return type;
1379}
1380
1381/* New code added to support parsing of Cfront stabs strings */
c906108c
SS
1382#define INIT_EXTRA { pextras->len=0; pextras->str[0]='\0'; }
1383#define ADD_EXTRA(c) { pextras->str[pextras->len++]=c; }
1384
c5aa993b 1385static void
fba45db2 1386add_name (struct extra *pextras, char *n)
c906108c
SS
1387{
1388 int nlen;
1389
c5aa993b 1390 if ((nlen = (n ? strlen (n) : 0)) == 0)
c906108c 1391 return;
c5aa993b
JM
1392 sprintf (pextras->str + pextras->len, "%d%s", nlen, n);
1393 pextras->len = strlen (pextras->str);
c906108c
SS
1394}
1395
c5aa993b 1396static void
fba45db2 1397add_mangled_type (struct extra *pextras, struct type *t)
c906108c
SS
1398{
1399 enum type_code tcode;
1400 int tlen, tflags;
c5aa993b 1401 char *tname;
c906108c 1402
c5aa993b
JM
1403 tcode = TYPE_CODE (t);
1404 tlen = TYPE_LENGTH (t);
1405 tflags = TYPE_FLAGS (t);
1406 tname = TYPE_NAME (t);
c906108c
SS
1407 /* args of "..." seem to get mangled as "e" */
1408
c5aa993b
JM
1409 switch (tcode)
1410 {
1411 case TYPE_CODE_INT:
1412 if (tflags == 1)
1413 ADD_EXTRA ('U');
1414 switch (tlen)
1415 {
1416 case 1:
1417 ADD_EXTRA ('c');
1418 break;
1419 case 2:
1420 ADD_EXTRA ('s');
1421 break;
1422 case 4:
1423 {
1424 char *pname;
1425 if ((pname = strrchr (tname, 'l'), pname) && !strcmp (pname, "long"))
9846de1b
JM
1426 {
1427 ADD_EXTRA ('l');
1428 }
1429 else
1430 {
1431 ADD_EXTRA ('i');
1432 }
c5aa993b
JM
1433 }
1434 break;
1435 default:
1436 {
1437
1438 static struct complaint msg =
1439 {"Bad int type code length x%x\n", 0, 0};
1440
1441 complain (&msg, tlen);
1442
1443 }
1444 }
1445 break;
1446 case TYPE_CODE_FLT:
1447 switch (tlen)
1448 {
1449 case 4:
1450 ADD_EXTRA ('f');
1451 break;
1452 case 8:
1453 ADD_EXTRA ('d');
1454 break;
1455 case 16:
1456 ADD_EXTRA ('r');
1457 break;
1458 default:
1459 {
1460 static struct complaint msg =
1461 {"Bad float type code length x%x\n", 0, 0};
1462 complain (&msg, tlen);
1463 }
1464 }
1465 break;
1466 case TYPE_CODE_REF:
1467 ADD_EXTRA ('R');
1468 /* followed by what it's a ref to */
1469 break;
1470 case TYPE_CODE_PTR:
1471 ADD_EXTRA ('P');
1472 /* followed by what it's a ptr to */
1473 break;
1474 case TYPE_CODE_TYPEDEF:
1475 {
1476 static struct complaint msg =
1477 {"Typedefs in overloaded functions not yet supported\n", 0, 0};
1478 complain (&msg);
1479 }
c906108c
SS
1480 /* followed by type bytes & name */
1481 break;
1482 case TYPE_CODE_FUNC:
c5aa993b 1483 ADD_EXTRA ('F');
c906108c
SS
1484 /* followed by func's arg '_' & ret types */
1485 break;
1486 case TYPE_CODE_VOID:
c5aa993b 1487 ADD_EXTRA ('v');
c906108c
SS
1488 break;
1489 case TYPE_CODE_METHOD:
c5aa993b 1490 ADD_EXTRA ('M');
c906108c 1491 /* followed by name of class and func's arg '_' & ret types */
c5aa993b
JM
1492 add_name (pextras, tname);
1493 ADD_EXTRA ('F'); /* then mangle function */
c906108c 1494 break;
c5aa993b
JM
1495 case TYPE_CODE_STRUCT: /* C struct */
1496 case TYPE_CODE_UNION: /* C union */
1497 case TYPE_CODE_ENUM: /* Enumeration type */
c906108c 1498 /* followed by name of type */
c5aa993b 1499 add_name (pextras, tname);
c906108c
SS
1500 break;
1501
c5aa993b
JM
1502 /* errors possible types/not supported */
1503 case TYPE_CODE_CHAR:
1504 case TYPE_CODE_ARRAY: /* Array type */
1505 case TYPE_CODE_MEMBER: /* Member type */
c906108c 1506 case TYPE_CODE_BOOL:
c5aa993b 1507 case TYPE_CODE_COMPLEX: /* Complex float */
c906108c 1508 case TYPE_CODE_UNDEF:
c5aa993b
JM
1509 case TYPE_CODE_SET: /* Pascal sets */
1510 case TYPE_CODE_RANGE:
c906108c
SS
1511 case TYPE_CODE_STRING:
1512 case TYPE_CODE_BITSTRING:
1513 case TYPE_CODE_ERROR:
c5aa993b 1514 default:
c906108c 1515 {
c5aa993b
JM
1516 static struct complaint msg =
1517 {"Unknown type code x%x\n", 0, 0};
1518 complain (&msg, tcode);
c906108c
SS
1519 }
1520 }
0004e5a2
DJ
1521 if (TYPE_TARGET_TYPE (t))
1522 add_mangled_type (pextras, TYPE_TARGET_TYPE (t));
c906108c
SS
1523}
1524
1525#if 0
1526void
fba45db2 1527cfront_mangle_name (struct type *type, int i, int j)
c906108c 1528{
c5aa993b
JM
1529 struct fn_field *f;
1530 char *mangled_name = gdb_mangle_name (type, i, j);
1531
1532 f = TYPE_FN_FIELDLIST1 (type, i); /* moved from below */
1533
7b83ea04 1534 /* kludge to support cfront methods - gdb expects to find "F" for
c5aa993b
JM
1535 ARM_mangled names, so when we mangle, we have to add it here */
1536 if (ARM_DEMANGLING)
1537 {
1538 int k;
1539 char *arm_mangled_name;
1540 struct fn_field *method = &f[j];
1541 char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
1542 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
1543 char *newname = type_name_no_tag (type);
1544
1545 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
1546 int nargs = TYPE_NFIELDS (ftype); /* number of args */
1547 struct extra extras, *pextras = &extras;
1548 INIT_EXTRA
c906108c
SS
1549
1550 if (TYPE_FN_FIELD_STATIC_P (f, j)) /* j for sublist within this list */
c5aa993b
JM
1551 ADD_EXTRA ('S')
1552 ADD_EXTRA ('F')
c906108c 1553 /* add args here! */
c5aa993b
JM
1554 if (nargs <= 1) /* no args besides this */
1555 ADD_EXTRA ('v')
1556 else
1557 {
1558 for (k = 1; k < nargs; k++)
1559 {
1560 struct type *t;
1561 t = TYPE_FIELD_TYPE (ftype, k);
1562 add_mangled_type (pextras, t);
1563 }
1564 }
1565 ADD_EXTRA ('\0')
1566 printf ("add_mangled_type: %s\n", extras.str); /* FIXME */
3c37485b 1567 xasprintf (&arm_mangled_name, "%s%s", mangled_name, extras.str);
b8c9b27d 1568 xfree (mangled_name);
c5aa993b
JM
1569 mangled_name = arm_mangled_name;
1570 }
c906108c 1571}
c5aa993b 1572#endif /* 0 */
c906108c
SS
1573
1574#undef ADD_EXTRA
1575/* End of new code added to support parsing of Cfront stabs strings */
1576
c91ecb25
ND
1577/* Parse a type expression in the string [P..P+LENGTH). If an error occurs,
1578 silently return builtin_type_void. */
1579
1580struct type *
1581safe_parse_type (char *p, int length)
1582{
1583 struct ui_file *saved_gdb_stderr;
1584 struct type *type;
1585
1586 /* Suppress error messages. */
1587 saved_gdb_stderr = gdb_stderr;
1588 gdb_stderr = ui_file_new ();
1589
1590 /* Call parse_and_eval_type() without fear of longjmp()s. */
1591 if (!gdb_parse_and_eval_type (p, length, &type))
1592 type = builtin_type_void;
1593
1594 /* Stop suppressing error messages. */
1595 ui_file_delete (gdb_stderr);
1596 gdb_stderr = saved_gdb_stderr;
1597
1598 return type;
1599}
1600
c906108c
SS
1601/* Ugly hack to convert method stubs into method types.
1602
1603 He ain't kiddin'. This demangles the name of the method into a string
1604 including argument types, parses out each argument type, generates
1605 a string casting a zero to that type, evaluates the string, and stuffs
1606 the resulting type into an argtype vector!!! Then it knows the type
1607 of the whole function (including argument types for overloading),
1608 which info used to be in the stab's but was removed to hack back
1609 the space required for them. */
1610
1611void
fba45db2 1612check_stub_method (struct type *type, int method_id, int signature_id)
c906108c
SS
1613{
1614 struct fn_field *f;
1615 char *mangled_name = gdb_mangle_name (type, method_id, signature_id);
1616 char *demangled_name = cplus_demangle (mangled_name,
1617 DMGL_PARAMS | DMGL_ANSI);
1618 char *argtypetext, *p;
1619 int depth = 0, argcount = 1;
ad2f7632 1620 struct field *argtypes;
c906108c
SS
1621 struct type *mtype;
1622
1623 /* Make sure we got back a function string that we can use. */
1624 if (demangled_name)
1625 p = strchr (demangled_name, '(');
502dcf4e
AC
1626 else
1627 p = NULL;
c906108c
SS
1628
1629 if (demangled_name == NULL || p == NULL)
1630 error ("Internal: Cannot demangle mangled name `%s'.", mangled_name);
1631
1632 /* Now, read in the parameters that define this type. */
1633 p += 1;
1634 argtypetext = p;
1635 while (*p)
1636 {
070ad9f0 1637 if (*p == '(' || *p == '<')
c906108c
SS
1638 {
1639 depth += 1;
1640 }
070ad9f0 1641 else if (*p == ')' || *p == '>')
c906108c
SS
1642 {
1643 depth -= 1;
1644 }
1645 else if (*p == ',' && depth == 0)
1646 {
1647 argcount += 1;
1648 }
1649
1650 p += 1;
1651 }
1652
ad2f7632
DJ
1653 /* If we read one argument and it was ``void'', don't count it. */
1654 if (strncmp (argtypetext, "(void)", 6) == 0)
1655 argcount -= 1;
c906108c 1656
ad2f7632
DJ
1657 /* We need one extra slot, for the THIS pointer. */
1658
1659 argtypes = (struct field *)
1660 TYPE_ALLOC (type, (argcount + 1) * sizeof (struct field));
c906108c 1661 p = argtypetext;
4a1970e4
DJ
1662
1663 /* Add THIS pointer for non-static methods. */
1664 f = TYPE_FN_FIELDLIST1 (type, method_id);
1665 if (TYPE_FN_FIELD_STATIC_P (f, signature_id))
1666 argcount = 0;
1667 else
1668 {
ad2f7632 1669 argtypes[0].type = lookup_pointer_type (type);
4a1970e4
DJ
1670 argcount = 1;
1671 }
c906108c 1672
c5aa993b 1673 if (*p != ')') /* () means no args, skip while */
c906108c
SS
1674 {
1675 depth = 0;
1676 while (*p)
1677 {
1678 if (depth <= 0 && (*p == ',' || *p == ')'))
1679 {
ad2f7632
DJ
1680 /* Avoid parsing of ellipsis, they will be handled below.
1681 Also avoid ``void'' as above. */
1682 if (strncmp (argtypetext, "...", p - argtypetext) != 0
1683 && strncmp (argtypetext, "void", p - argtypetext) != 0)
c906108c 1684 {
ad2f7632 1685 argtypes[argcount].type =
c91ecb25 1686 safe_parse_type (argtypetext, p - argtypetext);
c906108c
SS
1687 argcount += 1;
1688 }
1689 argtypetext = p + 1;
1690 }
1691
070ad9f0 1692 if (*p == '(' || *p == '<')
c906108c
SS
1693 {
1694 depth += 1;
1695 }
070ad9f0 1696 else if (*p == ')' || *p == '>')
c906108c
SS
1697 {
1698 depth -= 1;
1699 }
1700
1701 p += 1;
1702 }
1703 }
1704
c906108c
SS
1705 TYPE_FN_FIELD_PHYSNAME (f, signature_id) = mangled_name;
1706
1707 /* Now update the old "stub" type into a real type. */
1708 mtype = TYPE_FN_FIELD_TYPE (f, signature_id);
1709 TYPE_DOMAIN_TYPE (mtype) = type;
ad2f7632
DJ
1710 TYPE_FIELDS (mtype) = argtypes;
1711 TYPE_NFIELDS (mtype) = argcount;
c906108c
SS
1712 TYPE_FLAGS (mtype) &= ~TYPE_FLAG_STUB;
1713 TYPE_FN_FIELD_STUB (f, signature_id) = 0;
ad2f7632
DJ
1714 if (p[-2] == '.')
1715 TYPE_FLAGS (mtype) |= TYPE_FLAG_VARARGS;
1716
1717 xfree (demangled_name);
c906108c
SS
1718}
1719
1720const struct cplus_struct_type cplus_struct_default;
1721
1722void
fba45db2 1723allocate_cplus_struct_type (struct type *type)
c906108c
SS
1724{
1725 if (!HAVE_CPLUS_STRUCT (type))
1726 {
1727 TYPE_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
1728 TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
c5aa993b 1729 *(TYPE_CPLUS_SPECIFIC (type)) = cplus_struct_default;
c906108c
SS
1730 }
1731}
1732
1733/* Helper function to initialize the standard scalar types.
1734
1735 If NAME is non-NULL and OBJFILE is non-NULL, then we make a copy
1736 of the string pointed to by name in the type_obstack for that objfile,
1737 and initialize the type name to that copy. There are places (mipsread.c
1738 in particular, where init_type is called with a NULL value for NAME). */
1739
1740struct type *
fba45db2
KB
1741init_type (enum type_code code, int length, int flags, char *name,
1742 struct objfile *objfile)
c906108c
SS
1743{
1744 register struct type *type;
1745
1746 type = alloc_type (objfile);
1747 TYPE_CODE (type) = code;
1748 TYPE_LENGTH (type) = length;
1749 TYPE_FLAGS (type) |= flags;
1750 if ((name != NULL) && (objfile != NULL))
1751 {
1752 TYPE_NAME (type) =
c5aa993b 1753 obsavestring (name, strlen (name), &objfile->type_obstack);
c906108c
SS
1754 }
1755 else
1756 {
1757 TYPE_NAME (type) = name;
1758 }
1759
1760 /* C++ fancies. */
1761
1762 if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION)
1763 {
1764 INIT_CPLUS_SPECIFIC (type);
1765 }
1766 return (type);
1767}
1768
0e101458
AC
1769/* Helper function. Create an empty composite type. */
1770
1771struct type *
1772init_composite_type (char *name, enum type_code code)
1773{
1774 struct type *t;
1775 gdb_assert (code == TYPE_CODE_STRUCT
1776 || code == TYPE_CODE_UNION);
1777 t = init_type (code, 0, 0, NULL, NULL);
1778 TYPE_TAG_NAME (t) = name;
1779 return t;
1780}
1781
1782/* Helper function. Append a field to a composite type. */
1783
1784void
1785append_composite_type_field (struct type *t, char *name, struct type *field)
1786{
1787 struct field *f;
1788 TYPE_NFIELDS (t) = TYPE_NFIELDS (t) + 1;
1789 TYPE_FIELDS (t) = xrealloc (TYPE_FIELDS (t),
1790 sizeof (struct field) * TYPE_NFIELDS (t));
1791 f = &(TYPE_FIELDS (t)[TYPE_NFIELDS (t) - 1]);
1792 memset (f, 0, sizeof f[0]);
1793 FIELD_TYPE (f[0]) = field;
1794 FIELD_NAME (f[0]) = name;
1795 if (TYPE_CODE (t) == TYPE_CODE_UNION)
1796 {
73d322b1 1797 if (TYPE_LENGTH (t) < TYPE_LENGTH (field))
0e101458
AC
1798 TYPE_LENGTH (t) = TYPE_LENGTH (field);
1799 }
1800 else if (TYPE_CODE (t) == TYPE_CODE_STRUCT)
1801 {
1802 TYPE_LENGTH (t) = TYPE_LENGTH (t) + TYPE_LENGTH (field);
1803 if (TYPE_NFIELDS (t) > 1)
1804 {
1805 FIELD_BITPOS (f[0]) = (FIELD_BITPOS (f[-1])
1806 + TYPE_LENGTH (field) * TARGET_CHAR_BIT);
1807 }
1808 }
1809}
1810
c906108c
SS
1811/* Look up a fundamental type for the specified objfile.
1812 May need to construct such a type if this is the first use.
1813
1814 Some object file formats (ELF, COFF, etc) do not define fundamental
1815 types such as "int" or "double". Others (stabs for example), do
1816 define fundamental types.
1817
1818 For the formats which don't provide fundamental types, gdb can create
1819 such types, using defaults reasonable for the current language and
1820 the current target machine.
1821
1822 NOTE: This routine is obsolescent. Each debugging format reader
1823 should manage it's own fundamental types, either creating them from
1824 suitable defaults or reading them from the debugging information,
1825 whichever is appropriate. The DWARF reader has already been
1826 fixed to do this. Once the other readers are fixed, this routine
1827 will go away. Also note that fundamental types should be managed
1828 on a compilation unit basis in a multi-language environment, not
1829 on a linkage unit basis as is done here. */
1830
1831
1832struct type *
fba45db2 1833lookup_fundamental_type (struct objfile *objfile, int typeid)
c906108c
SS
1834{
1835 register struct type **typep;
1836 register int nbytes;
1837
1838 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
1839 {
1840 error ("internal error - invalid fundamental type id %d", typeid);
1841 }
1842
1843 /* If this is the first time we need a fundamental type for this objfile
1844 then we need to initialize the vector of type pointers. */
c5aa993b
JM
1845
1846 if (objfile->fundamental_types == NULL)
c906108c
SS
1847 {
1848 nbytes = FT_NUM_MEMBERS * sizeof (struct type *);
c5aa993b
JM
1849 objfile->fundamental_types = (struct type **)
1850 obstack_alloc (&objfile->type_obstack, nbytes);
1851 memset ((char *) objfile->fundamental_types, 0, nbytes);
c906108c
SS
1852 OBJSTAT (objfile, n_types += FT_NUM_MEMBERS);
1853 }
1854
1855 /* Look for this particular type in the fundamental type vector. If one is
1856 not found, create and install one appropriate for the current language. */
1857
c5aa993b 1858 typep = objfile->fundamental_types + typeid;
c906108c
SS
1859 if (*typep == NULL)
1860 {
1861 *typep = create_fundamental_type (objfile, typeid);
1862 }
1863
1864 return (*typep);
1865}
1866
1867int
fba45db2 1868can_dereference (struct type *t)
c906108c
SS
1869{
1870 /* FIXME: Should we return true for references as well as pointers? */
1871 CHECK_TYPEDEF (t);
1872 return
1873 (t != NULL
1874 && TYPE_CODE (t) == TYPE_CODE_PTR
1875 && TYPE_CODE (TYPE_TARGET_TYPE (t)) != TYPE_CODE_VOID);
1876}
1877
adf40b2e 1878int
fba45db2 1879is_integral_type (struct type *t)
adf40b2e
JM
1880{
1881 CHECK_TYPEDEF (t);
1882 return
1883 ((t != NULL)
d4f3574e
SS
1884 && ((TYPE_CODE (t) == TYPE_CODE_INT)
1885 || (TYPE_CODE (t) == TYPE_CODE_ENUM)
1886 || (TYPE_CODE (t) == TYPE_CODE_CHAR)
1887 || (TYPE_CODE (t) == TYPE_CODE_RANGE)
1888 || (TYPE_CODE (t) == TYPE_CODE_BOOL)));
adf40b2e
JM
1889}
1890
c906108c
SS
1891/* Chill varying string and arrays are represented as follows:
1892
1893 struct { int __var_length; ELEMENT_TYPE[MAX_SIZE] __var_data};
1894
1895 Return true if TYPE is such a Chill varying type. */
1896
1897int
fba45db2 1898chill_varying_type (struct type *type)
c906108c
SS
1899{
1900 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
1901 || TYPE_NFIELDS (type) != 2
1902 || strcmp (TYPE_FIELD_NAME (type, 0), "__var_length") != 0)
1903 return 0;
1904 return 1;
1905}
1906
7b83ea04 1907/* Check whether BASE is an ancestor or base class or DCLASS
c906108c
SS
1908 Return 1 if so, and 0 if not.
1909 Note: callers may want to check for identity of the types before
1910 calling this function -- identical types are considered to satisfy
1911 the ancestor relationship even if they're identical */
1912
1913int
fba45db2 1914is_ancestor (struct type *base, struct type *dclass)
c906108c
SS
1915{
1916 int i;
c5aa993b 1917
c906108c
SS
1918 CHECK_TYPEDEF (base);
1919 CHECK_TYPEDEF (dclass);
1920
1921 if (base == dclass)
1922 return 1;
6b1ba9a0
ND
1923 if (TYPE_NAME (base) && TYPE_NAME (dclass) &&
1924 !strcmp (TYPE_NAME (base), TYPE_NAME (dclass)))
1925 return 1;
c906108c
SS
1926
1927 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
1928 if (is_ancestor (base, TYPE_BASECLASS (dclass, i)))
1929 return 1;
1930
1931 return 0;
1932}
1933
1934
1935
1936/* See whether DCLASS has a virtual table. This routine is aimed at
1937 the HP/Taligent ANSI C++ runtime model, and may not work with other
1938 runtime models. Return 1 => Yes, 0 => No. */
1939
1940int
fba45db2 1941has_vtable (struct type *dclass)
c906108c
SS
1942{
1943 /* In the HP ANSI C++ runtime model, a class has a vtable only if it
1944 has virtual functions or virtual bases. */
1945
1946 register int i;
1947
c5aa993b 1948 if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
c906108c 1949 return 0;
c5aa993b 1950
c906108c 1951 /* First check for the presence of virtual bases */
c5aa993b
JM
1952 if (TYPE_FIELD_VIRTUAL_BITS (dclass))
1953 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
1954 if (B_TST (TYPE_FIELD_VIRTUAL_BITS (dclass), i))
1955 return 1;
1956
c906108c 1957 /* Next check for virtual functions */
c5aa993b
JM
1958 if (TYPE_FN_FIELDLISTS (dclass))
1959 for (i = 0; i < TYPE_NFN_FIELDS (dclass); i++)
1960 if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (dclass, i), 0))
c906108c 1961 return 1;
c5aa993b
JM
1962
1963 /* Recurse on non-virtual bases to see if any of them needs a vtable */
1964 if (TYPE_FIELD_VIRTUAL_BITS (dclass))
1965 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
1966 if ((!B_TST (TYPE_FIELD_VIRTUAL_BITS (dclass), i)) &&
1967 (has_vtable (TYPE_FIELD_TYPE (dclass, i))))
1968 return 1;
1969
1970 /* Well, maybe we don't need a virtual table */
c906108c
SS
1971 return 0;
1972}
1973
1974/* Return a pointer to the "primary base class" of DCLASS.
c5aa993b 1975
c906108c
SS
1976 A NULL return indicates that DCLASS has no primary base, or that it
1977 couldn't be found (insufficient information).
c5aa993b 1978
c906108c
SS
1979 This routine is aimed at the HP/Taligent ANSI C++ runtime model,
1980 and may not work with other runtime models. */
1981
1982struct type *
fba45db2 1983primary_base_class (struct type *dclass)
c906108c
SS
1984{
1985 /* In HP ANSI C++'s runtime model, a "primary base class" of a class
1986 is the first directly inherited, non-virtual base class that
1987 requires a virtual table */
1988
1989 register int i;
1990
c5aa993b 1991 if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
c906108c
SS
1992 return NULL;
1993
c5aa993b
JM
1994 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
1995 if (!TYPE_FIELD_VIRTUAL (dclass, i) &&
1996 has_vtable (TYPE_FIELD_TYPE (dclass, i)))
1997 return TYPE_FIELD_TYPE (dclass, i);
c906108c
SS
1998
1999 return NULL;
2000}
2001
2002/* Global manipulated by virtual_base_list[_aux]() */
2003
c5aa993b 2004static struct vbase *current_vbase_list = NULL;
c906108c
SS
2005
2006/* Return a pointer to a null-terminated list of struct vbase
2007 items. The vbasetype pointer of each item in the list points to the
2008 type information for a virtual base of the argument DCLASS.
c5aa993b 2009
7b83ea04 2010 Helper function for virtual_base_list().
c906108c
SS
2011 Note: the list goes backward, right-to-left. virtual_base_list()
2012 copies the items out in reverse order. */
2013
7a292a7a 2014static void
fba45db2 2015virtual_base_list_aux (struct type *dclass)
c906108c 2016{
c5aa993b 2017 struct vbase *tmp_vbase;
c906108c
SS
2018 register int i;
2019
c5aa993b 2020 if (TYPE_CODE (dclass) != TYPE_CODE_CLASS)
7a292a7a 2021 return;
c906108c
SS
2022
2023 for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
2024 {
2025 /* Recurse on this ancestor, first */
c5aa993b 2026 virtual_base_list_aux (TYPE_FIELD_TYPE (dclass, i));
c906108c
SS
2027
2028 /* If this current base is itself virtual, add it to the list */
c5aa993b
JM
2029 if (BASETYPE_VIA_VIRTUAL (dclass, i))
2030 {
2031 struct type *basetype = TYPE_FIELD_TYPE (dclass, i);
2032
2033 /* Check if base already recorded */
2034 tmp_vbase = current_vbase_list;
2035 while (tmp_vbase)
2036 {
2037 if (tmp_vbase->vbasetype == basetype)
2038 break; /* found it */
2039 tmp_vbase = tmp_vbase->next;
2040 }
2041
2042 if (!tmp_vbase) /* normal exit from loop */
2043 {
2044 /* Allocate new item for this virtual base */
2045 tmp_vbase = (struct vbase *) xmalloc (sizeof (struct vbase));
2046
2047 /* Stick it on at the end of the list */
2048 tmp_vbase->vbasetype = basetype;
2049 tmp_vbase->next = current_vbase_list;
2050 current_vbase_list = tmp_vbase;
2051 }
2052 } /* if virtual */
2053 } /* for loop over bases */
c906108c
SS
2054}
2055
2056
2057/* Compute the list of virtual bases in the right order. Virtual
2058 bases are laid out in the object's memory area in order of their
2059 occurrence in a depth-first, left-to-right search through the
2060 ancestors.
c5aa993b 2061
c906108c
SS
2062 Argument DCLASS is the type whose virtual bases are required.
2063 Return value is the address of a null-terminated array of pointers
2064 to struct type items.
c5aa993b 2065
c906108c
SS
2066 This routine is aimed at the HP/Taligent ANSI C++ runtime model,
2067 and may not work with other runtime models.
c5aa993b 2068
c906108c
SS
2069 This routine merely hands off the argument to virtual_base_list_aux()
2070 and then copies the result into an array to save space. */
2071
2072struct type **
fba45db2 2073virtual_base_list (struct type *dclass)
c906108c 2074{
c5aa993b
JM
2075 register struct vbase *tmp_vbase;
2076 register struct vbase *tmp_vbase_2;
c906108c
SS
2077 register int i;
2078 int count;
c5aa993b 2079 struct type **vbase_array;
c906108c
SS
2080
2081 current_vbase_list = NULL;
c5aa993b 2082 virtual_base_list_aux (dclass);
c906108c 2083
c5aa993b 2084 for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; i++, tmp_vbase = tmp_vbase->next)
c906108c
SS
2085 /* no body */ ;
2086
2087 count = i;
2088
c5aa993b 2089 vbase_array = (struct type **) xmalloc ((count + 1) * sizeof (struct type *));
c906108c 2090
c5aa993b 2091 for (i = count - 1, tmp_vbase = current_vbase_list; i >= 0; i--, tmp_vbase = tmp_vbase->next)
c906108c
SS
2092 vbase_array[i] = tmp_vbase->vbasetype;
2093
2094 /* Get rid of constructed chain */
2095 tmp_vbase_2 = tmp_vbase = current_vbase_list;
2096 while (tmp_vbase)
2097 {
2098 tmp_vbase = tmp_vbase->next;
b8c9b27d 2099 xfree (tmp_vbase_2);
c906108c
SS
2100 tmp_vbase_2 = tmp_vbase;
2101 }
c5aa993b 2102
c906108c
SS
2103 vbase_array[count] = NULL;
2104 return vbase_array;
2105}
2106
2107/* Return the length of the virtual base list of the type DCLASS. */
2108
2109int
fba45db2 2110virtual_base_list_length (struct type *dclass)
c906108c
SS
2111{
2112 register int i;
c5aa993b
JM
2113 register struct vbase *tmp_vbase;
2114
c906108c 2115 current_vbase_list = NULL;
c5aa993b 2116 virtual_base_list_aux (dclass);
c906108c 2117
c5aa993b 2118 for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; i++, tmp_vbase = tmp_vbase->next)
c906108c
SS
2119 /* no body */ ;
2120 return i;
2121}
2122
2123/* Return the number of elements of the virtual base list of the type
2124 DCLASS, ignoring those appearing in the primary base (and its
2125 primary base, recursively). */
2126
2127int
fba45db2 2128virtual_base_list_length_skip_primaries (struct type *dclass)
c906108c
SS
2129{
2130 register int i;
c5aa993b
JM
2131 register struct vbase *tmp_vbase;
2132 struct type *primary;
c906108c
SS
2133
2134 primary = TYPE_RUNTIME_PTR (dclass) ? TYPE_PRIMARY_BASE (dclass) : NULL;
2135
2136 if (!primary)
2137 return virtual_base_list_length (dclass);
2138
2139 current_vbase_list = NULL;
c5aa993b 2140 virtual_base_list_aux (dclass);
c906108c 2141
c5aa993b 2142 for (i = 0, tmp_vbase = current_vbase_list; tmp_vbase != NULL; tmp_vbase = tmp_vbase->next)
c906108c
SS
2143 {
2144 if (virtual_base_index (tmp_vbase->vbasetype, primary) >= 0)
c5aa993b 2145 continue;
c906108c
SS
2146 i++;
2147 }
2148 return i;
2149}
2150
2151
2152/* Return the index (position) of type BASE, which is a virtual base
2153 class of DCLASS, in the latter's virtual base list. A return of -1
2154 indicates "not found" or a problem. */
2155
2156int
fba45db2 2157virtual_base_index (struct type *base, struct type *dclass)
c906108c 2158{
c5aa993b 2159 register struct type *vbase;
c906108c
SS
2160 register int i;
2161
c5aa993b
JM
2162 if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS) ||
2163 (TYPE_CODE (base) != TYPE_CODE_CLASS))
c906108c
SS
2164 return -1;
2165
2166 i = 0;
015a42b4 2167 vbase = virtual_base_list (dclass)[0];
c906108c
SS
2168 while (vbase)
2169 {
2170 if (vbase == base)
c5aa993b 2171 break;
015a42b4 2172 vbase = virtual_base_list (dclass)[++i];
c906108c
SS
2173 }
2174
2175 return vbase ? i : -1;
2176}
2177
2178
2179
2180/* Return the index (position) of type BASE, which is a virtual base
2181 class of DCLASS, in the latter's virtual base list. Skip over all
2182 bases that may appear in the virtual base list of the primary base
2183 class of DCLASS (recursively). A return of -1 indicates "not
2184 found" or a problem. */
2185
2186int
fba45db2 2187virtual_base_index_skip_primaries (struct type *base, struct type *dclass)
c906108c 2188{
c5aa993b 2189 register struct type *vbase;
c906108c 2190 register int i, j;
c5aa993b 2191 struct type *primary;
c906108c 2192
c5aa993b
JM
2193 if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS) ||
2194 (TYPE_CODE (base) != TYPE_CODE_CLASS))
c906108c
SS
2195 return -1;
2196
c5aa993b 2197 primary = TYPE_RUNTIME_PTR (dclass) ? TYPE_PRIMARY_BASE (dclass) : NULL;
c906108c
SS
2198
2199 j = -1;
2200 i = 0;
015a42b4 2201 vbase = virtual_base_list (dclass)[0];
c906108c
SS
2202 while (vbase)
2203 {
c5aa993b
JM
2204 if (!primary || (virtual_base_index_skip_primaries (vbase, primary) < 0))
2205 j++;
c906108c 2206 if (vbase == base)
c5aa993b 2207 break;
015a42b4 2208 vbase = virtual_base_list (dclass)[++i];
c906108c
SS
2209 }
2210
2211 return vbase ? j : -1;
2212}
2213
2214/* Return position of a derived class DCLASS in the list of
2215 * primary bases starting with the remotest ancestor.
2216 * Position returned is 0-based. */
2217
2218int
fba45db2 2219class_index_in_primary_list (struct type *dclass)
c906108c 2220{
c5aa993b 2221 struct type *pbc; /* primary base class */
c906108c 2222
c5aa993b 2223 /* Simply recurse on primary base */
c906108c
SS
2224 pbc = TYPE_PRIMARY_BASE (dclass);
2225 if (pbc)
2226 return 1 + class_index_in_primary_list (pbc);
2227 else
2228 return 0;
2229}
2230
2231/* Return a count of the number of virtual functions a type has.
2232 * This includes all the virtual functions it inherits from its
2233 * base classes too.
2234 */
2235
2236/* pai: FIXME This doesn't do the right thing: count redefined virtual
2237 * functions only once (latest redefinition)
2238 */
2239
2240int
fba45db2 2241count_virtual_fns (struct type *dclass)
c906108c 2242{
c5aa993b 2243 int fn, oi; /* function and overloaded instance indices */
c5aa993b
JM
2244 int vfuncs; /* count to return */
2245
2246 /* recurse on bases that can share virtual table */
2247 struct type *pbc = primary_base_class (dclass);
c906108c
SS
2248 if (pbc)
2249 vfuncs = count_virtual_fns (pbc);
7f7e9482
AC
2250 else
2251 vfuncs = 0;
c5aa993b 2252
c906108c
SS
2253 for (fn = 0; fn < TYPE_NFN_FIELDS (dclass); fn++)
2254 for (oi = 0; oi < TYPE_FN_FIELDLIST_LENGTH (dclass, fn); oi++)
2255 if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (dclass, fn), oi))
c5aa993b 2256 vfuncs++;
c906108c
SS
2257
2258 return vfuncs;
2259}
c906108c
SS
2260\f
2261
c5aa993b 2262
c906108c
SS
2263/* Functions for overload resolution begin here */
2264
2265/* Compare two badness vectors A and B and return the result.
2266 * 0 => A and B are identical
2267 * 1 => A and B are incomparable
2268 * 2 => A is better than B
2269 * 3 => A is worse than B */
2270
2271int
fba45db2 2272compare_badness (struct badness_vector *a, struct badness_vector *b)
c906108c
SS
2273{
2274 int i;
2275 int tmp;
c5aa993b
JM
2276 short found_pos = 0; /* any positives in c? */
2277 short found_neg = 0; /* any negatives in c? */
2278
2279 /* differing lengths => incomparable */
c906108c
SS
2280 if (a->length != b->length)
2281 return 1;
2282
c5aa993b
JM
2283 /* Subtract b from a */
2284 for (i = 0; i < a->length; i++)
c906108c
SS
2285 {
2286 tmp = a->rank[i] - b->rank[i];
2287 if (tmp > 0)
c5aa993b 2288 found_pos = 1;
c906108c 2289 else if (tmp < 0)
c5aa993b 2290 found_neg = 1;
c906108c
SS
2291 }
2292
2293 if (found_pos)
2294 {
2295 if (found_neg)
c5aa993b 2296 return 1; /* incomparable */
c906108c 2297 else
c5aa993b 2298 return 3; /* A > B */
c906108c 2299 }
c5aa993b
JM
2300 else
2301 /* no positives */
c906108c
SS
2302 {
2303 if (found_neg)
c5aa993b 2304 return 2; /* A < B */
c906108c 2305 else
c5aa993b 2306 return 0; /* A == B */
c906108c
SS
2307 }
2308}
2309
2310/* Rank a function by comparing its parameter types (PARMS, length NPARMS),
2311 * to the types of an argument list (ARGS, length NARGS).
2312 * Return a pointer to a badness vector. This has NARGS + 1 entries. */
2313
2314struct badness_vector *
fba45db2 2315rank_function (struct type **parms, int nparms, struct type **args, int nargs)
c906108c
SS
2316{
2317 int i;
c5aa993b 2318 struct badness_vector *bv;
c906108c
SS
2319 int min_len = nparms < nargs ? nparms : nargs;
2320
2321 bv = xmalloc (sizeof (struct badness_vector));
c5aa993b 2322 bv->length = nargs + 1; /* add 1 for the length-match rank */
c906108c
SS
2323 bv->rank = xmalloc ((nargs + 1) * sizeof (int));
2324
2325 /* First compare the lengths of the supplied lists.
2326 * If there is a mismatch, set it to a high value. */
c5aa993b 2327
c906108c
SS
2328 /* pai/1997-06-03 FIXME: when we have debug info about default
2329 * arguments and ellipsis parameter lists, we should consider those
2330 * and rank the length-match more finely. */
2331
2332 LENGTH_MATCH (bv) = (nargs != nparms) ? LENGTH_MISMATCH_BADNESS : 0;
2333
2334 /* Now rank all the parameters of the candidate function */
74cc24b0
DB
2335 for (i = 1; i <= min_len; i++)
2336 bv->rank[i] = rank_one_type (parms[i-1], args[i-1]);
c906108c 2337
c5aa993b
JM
2338 /* If more arguments than parameters, add dummy entries */
2339 for (i = min_len + 1; i <= nargs; i++)
c906108c
SS
2340 bv->rank[i] = TOO_FEW_PARAMS_BADNESS;
2341
2342 return bv;
2343}
2344
2345/* Compare one type (PARM) for compatibility with another (ARG).
2346 * PARM is intended to be the parameter type of a function; and
2347 * ARG is the supplied argument's type. This function tests if
2348 * the latter can be converted to the former.
2349 *
2350 * Return 0 if they are identical types;
2351 * Otherwise, return an integer which corresponds to how compatible
2352 * PARM is to ARG. The higher the return value, the worse the match.
2353 * Generally the "bad" conversions are all uniformly assigned a 100 */
2354
2355int
fba45db2 2356rank_one_type (struct type *parm, struct type *arg)
c906108c
SS
2357{
2358 /* Identical type pointers */
2359 /* However, this still doesn't catch all cases of same type for arg
2360 * and param. The reason is that builtin types are different from
2361 * the same ones constructed from the object. */
2362 if (parm == arg)
2363 return 0;
2364
2365 /* Resolve typedefs */
2366 if (TYPE_CODE (parm) == TYPE_CODE_TYPEDEF)
2367 parm = check_typedef (parm);
2368 if (TYPE_CODE (arg) == TYPE_CODE_TYPEDEF)
2369 arg = check_typedef (arg);
2370
070ad9f0
DB
2371 /*
2372 Well, damnit, if the names are exactly the same,
2373 i'll say they are exactly the same. This happens when we generate
2374 method stubs. The types won't point to the same address, but they
2375 really are the same.
2376 */
2377
6b1ba9a0
ND
2378 if (TYPE_NAME (parm) && TYPE_NAME (arg) &&
2379 !strcmp (TYPE_NAME (parm), TYPE_NAME (arg)))
070ad9f0
DB
2380 return 0;
2381
c906108c
SS
2382 /* Check if identical after resolving typedefs */
2383 if (parm == arg)
2384 return 0;
2385
db577aea
AC
2386 /* See through references, since we can almost make non-references
2387 references. */
2388 if (TYPE_CODE (arg) == TYPE_CODE_REF)
6b1ba9a0 2389 return (rank_one_type (parm, TYPE_TARGET_TYPE (arg))
db577aea
AC
2390 + REFERENCE_CONVERSION_BADNESS);
2391 if (TYPE_CODE (parm) == TYPE_CODE_REF)
6b1ba9a0 2392 return (rank_one_type (TYPE_TARGET_TYPE (parm), arg)
db577aea 2393 + REFERENCE_CONVERSION_BADNESS);
5d161b24 2394 if (overload_debug)
db577aea 2395 /* Debugging only. */
5d161b24
DB
2396 fprintf_filtered (gdb_stderr,"------ Arg is %s [%d], parm is %s [%d]\n",
2397 TYPE_NAME (arg), TYPE_CODE (arg), TYPE_NAME (parm), TYPE_CODE (parm));
c906108c
SS
2398
2399 /* x -> y means arg of type x being supplied for parameter of type y */
2400
2401 switch (TYPE_CODE (parm))
2402 {
c5aa993b
JM
2403 case TYPE_CODE_PTR:
2404 switch (TYPE_CODE (arg))
2405 {
2406 case TYPE_CODE_PTR:
2407 if (TYPE_CODE (TYPE_TARGET_TYPE (parm)) == TYPE_CODE_VOID)
2408 return VOID_PTR_CONVERSION_BADNESS;
2409 else
2410 return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2411 case TYPE_CODE_ARRAY:
2412 return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2413 case TYPE_CODE_FUNC:
2414 return rank_one_type (TYPE_TARGET_TYPE (parm), arg);
2415 case TYPE_CODE_INT:
2416 case TYPE_CODE_ENUM:
2417 case TYPE_CODE_CHAR:
2418 case TYPE_CODE_RANGE:
2419 case TYPE_CODE_BOOL:
2420 return POINTER_CONVERSION_BADNESS;
2421 default:
2422 return INCOMPATIBLE_TYPE_BADNESS;
2423 }
2424 case TYPE_CODE_ARRAY:
2425 switch (TYPE_CODE (arg))
2426 {
2427 case TYPE_CODE_PTR:
2428 case TYPE_CODE_ARRAY:
2429 return rank_one_type (TYPE_TARGET_TYPE (parm), TYPE_TARGET_TYPE (arg));
2430 default:
2431 return INCOMPATIBLE_TYPE_BADNESS;
2432 }
2433 case TYPE_CODE_FUNC:
2434 switch (TYPE_CODE (arg))
2435 {
2436 case TYPE_CODE_PTR: /* funcptr -> func */
2437 return rank_one_type (parm, TYPE_TARGET_TYPE (arg));
2438 default:
2439 return INCOMPATIBLE_TYPE_BADNESS;
2440 }
2441 case TYPE_CODE_INT:
2442 switch (TYPE_CODE (arg))
2443 {
2444 case TYPE_CODE_INT:
2445 if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
2446 {
2447 /* Deal with signed, unsigned, and plain chars and
7b83ea04 2448 signed and unsigned ints */
c5aa993b
JM
2449 if (TYPE_NOSIGN (parm))
2450 {
2451 /* This case only for character types */
2452 if (TYPE_NOSIGN (arg)) /* plain char -> plain char */
2453 return 0;
2454 else
2455 return INTEGER_COERCION_BADNESS; /* signed/unsigned char -> plain char */
2456 }
2457 else if (TYPE_UNSIGNED (parm))
2458 {
2459 if (TYPE_UNSIGNED (arg))
2460 {
db577aea 2461 if (!strcmp_iw (TYPE_NAME (parm), TYPE_NAME (arg)))
c5aa993b 2462 return 0; /* unsigned int -> unsigned int, or unsigned long -> unsigned long */
db577aea 2463 else if (!strcmp_iw (TYPE_NAME (arg), "int") && !strcmp_iw (TYPE_NAME (parm), "long"))
c5aa993b
JM
2464 return INTEGER_PROMOTION_BADNESS; /* unsigned int -> unsigned long */
2465 else
2466 return INTEGER_COERCION_BADNESS; /* unsigned long -> unsigned int */
2467 }
2468 else
2469 {
db577aea 2470 if (!strcmp_iw (TYPE_NAME (arg), "long") && !strcmp_iw (TYPE_NAME (parm), "int"))
c5aa993b
JM
2471 return INTEGER_COERCION_BADNESS; /* signed long -> unsigned int */
2472 else
2473 return INTEGER_CONVERSION_BADNESS; /* signed int/long -> unsigned int/long */
2474 }
2475 }
2476 else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
2477 {
db577aea 2478 if (!strcmp_iw (TYPE_NAME (parm), TYPE_NAME (arg)))
c5aa993b 2479 return 0;
db577aea 2480 else if (!strcmp_iw (TYPE_NAME (arg), "int") && !strcmp_iw (TYPE_NAME (parm), "long"))
c5aa993b
JM
2481 return INTEGER_PROMOTION_BADNESS;
2482 else
2483 return INTEGER_COERCION_BADNESS;
2484 }
2485 else
2486 return INTEGER_COERCION_BADNESS;
2487 }
2488 else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2489 return INTEGER_PROMOTION_BADNESS;
2490 else
2491 return INTEGER_COERCION_BADNESS;
2492 case TYPE_CODE_ENUM:
2493 case TYPE_CODE_CHAR:
2494 case TYPE_CODE_RANGE:
2495 case TYPE_CODE_BOOL:
2496 return INTEGER_PROMOTION_BADNESS;
2497 case TYPE_CODE_FLT:
2498 return INT_FLOAT_CONVERSION_BADNESS;
2499 case TYPE_CODE_PTR:
2500 return NS_POINTER_CONVERSION_BADNESS;
2501 default:
2502 return INCOMPATIBLE_TYPE_BADNESS;
2503 }
2504 break;
2505 case TYPE_CODE_ENUM:
2506 switch (TYPE_CODE (arg))
2507 {
2508 case TYPE_CODE_INT:
2509 case TYPE_CODE_CHAR:
2510 case TYPE_CODE_RANGE:
2511 case TYPE_CODE_BOOL:
2512 case TYPE_CODE_ENUM:
2513 return INTEGER_COERCION_BADNESS;
2514 case TYPE_CODE_FLT:
2515 return INT_FLOAT_CONVERSION_BADNESS;
2516 default:
2517 return INCOMPATIBLE_TYPE_BADNESS;
2518 }
2519 break;
2520 case TYPE_CODE_CHAR:
2521 switch (TYPE_CODE (arg))
2522 {
2523 case TYPE_CODE_RANGE:
2524 case TYPE_CODE_BOOL:
2525 case TYPE_CODE_ENUM:
2526 return INTEGER_COERCION_BADNESS;
2527 case TYPE_CODE_FLT:
2528 return INT_FLOAT_CONVERSION_BADNESS;
2529 case TYPE_CODE_INT:
2530 if (TYPE_LENGTH (arg) > TYPE_LENGTH (parm))
2531 return INTEGER_COERCION_BADNESS;
2532 else if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2533 return INTEGER_PROMOTION_BADNESS;
2534 /* >>> !! else fall through !! <<< */
2535 case TYPE_CODE_CHAR:
2536 /* Deal with signed, unsigned, and plain chars for C++
2537 and with int cases falling through from previous case */
2538 if (TYPE_NOSIGN (parm))
2539 {
2540 if (TYPE_NOSIGN (arg))
2541 return 0;
2542 else
2543 return INTEGER_COERCION_BADNESS;
2544 }
2545 else if (TYPE_UNSIGNED (parm))
2546 {
2547 if (TYPE_UNSIGNED (arg))
2548 return 0;
2549 else
2550 return INTEGER_PROMOTION_BADNESS;
2551 }
2552 else if (!TYPE_NOSIGN (arg) && !TYPE_UNSIGNED (arg))
2553 return 0;
2554 else
2555 return INTEGER_COERCION_BADNESS;
2556 default:
2557 return INCOMPATIBLE_TYPE_BADNESS;
2558 }
2559 break;
2560 case TYPE_CODE_RANGE:
2561 switch (TYPE_CODE (arg))
2562 {
2563 case TYPE_CODE_INT:
2564 case TYPE_CODE_CHAR:
2565 case TYPE_CODE_RANGE:
2566 case TYPE_CODE_BOOL:
2567 case TYPE_CODE_ENUM:
2568 return INTEGER_COERCION_BADNESS;
2569 case TYPE_CODE_FLT:
2570 return INT_FLOAT_CONVERSION_BADNESS;
2571 default:
2572 return INCOMPATIBLE_TYPE_BADNESS;
2573 }
2574 break;
2575 case TYPE_CODE_BOOL:
2576 switch (TYPE_CODE (arg))
2577 {
2578 case TYPE_CODE_INT:
2579 case TYPE_CODE_CHAR:
2580 case TYPE_CODE_RANGE:
2581 case TYPE_CODE_ENUM:
2582 case TYPE_CODE_FLT:
2583 case TYPE_CODE_PTR:
2584 return BOOLEAN_CONVERSION_BADNESS;
2585 case TYPE_CODE_BOOL:
2586 return 0;
2587 default:
2588 return INCOMPATIBLE_TYPE_BADNESS;
2589 }
2590 break;
2591 case TYPE_CODE_FLT:
2592 switch (TYPE_CODE (arg))
2593 {
2594 case TYPE_CODE_FLT:
2595 if (TYPE_LENGTH (arg) < TYPE_LENGTH (parm))
2596 return FLOAT_PROMOTION_BADNESS;
2597 else if (TYPE_LENGTH (arg) == TYPE_LENGTH (parm))
2598 return 0;
2599 else
2600 return FLOAT_CONVERSION_BADNESS;
2601 case TYPE_CODE_INT:
2602 case TYPE_CODE_BOOL:
2603 case TYPE_CODE_ENUM:
2604 case TYPE_CODE_RANGE:
2605 case TYPE_CODE_CHAR:
2606 return INT_FLOAT_CONVERSION_BADNESS;
2607 default:
2608 return INCOMPATIBLE_TYPE_BADNESS;
2609 }
2610 break;
2611 case TYPE_CODE_COMPLEX:
2612 switch (TYPE_CODE (arg))
2613 { /* Strictly not needed for C++, but... */
2614 case TYPE_CODE_FLT:
2615 return FLOAT_PROMOTION_BADNESS;
2616 case TYPE_CODE_COMPLEX:
2617 return 0;
2618 default:
2619 return INCOMPATIBLE_TYPE_BADNESS;
2620 }
2621 break;
2622 case TYPE_CODE_STRUCT:
c906108c 2623 /* currently same as TYPE_CODE_CLASS */
c5aa993b
JM
2624 switch (TYPE_CODE (arg))
2625 {
2626 case TYPE_CODE_STRUCT:
2627 /* Check for derivation */
2628 if (is_ancestor (parm, arg))
2629 return BASE_CONVERSION_BADNESS;
2630 /* else fall through */
2631 default:
2632 return INCOMPATIBLE_TYPE_BADNESS;
2633 }
2634 break;
2635 case TYPE_CODE_UNION:
2636 switch (TYPE_CODE (arg))
2637 {
2638 case TYPE_CODE_UNION:
2639 default:
2640 return INCOMPATIBLE_TYPE_BADNESS;
2641 }
2642 break;
2643 case TYPE_CODE_MEMBER:
2644 switch (TYPE_CODE (arg))
2645 {
2646 default:
2647 return INCOMPATIBLE_TYPE_BADNESS;
2648 }
2649 break;
2650 case TYPE_CODE_METHOD:
2651 switch (TYPE_CODE (arg))
2652 {
2653
2654 default:
2655 return INCOMPATIBLE_TYPE_BADNESS;
2656 }
2657 break;
2658 case TYPE_CODE_REF:
2659 switch (TYPE_CODE (arg))
2660 {
2661
2662 default:
2663 return INCOMPATIBLE_TYPE_BADNESS;
2664 }
2665
2666 break;
2667 case TYPE_CODE_SET:
2668 switch (TYPE_CODE (arg))
2669 {
2670 /* Not in C++ */
2671 case TYPE_CODE_SET:
2672 return rank_one_type (TYPE_FIELD_TYPE (parm, 0), TYPE_FIELD_TYPE (arg, 0));
2673 default:
2674 return INCOMPATIBLE_TYPE_BADNESS;
2675 }
2676 break;
2677 case TYPE_CODE_VOID:
2678 default:
2679 return INCOMPATIBLE_TYPE_BADNESS;
2680 } /* switch (TYPE_CODE (arg)) */
c906108c
SS
2681}
2682
c5aa993b
JM
2683
2684/* End of functions for overload resolution */
c906108c 2685
c906108c 2686static void
fba45db2 2687print_bit_vector (B_TYPE *bits, int nbits)
c906108c
SS
2688{
2689 int bitno;
2690
2691 for (bitno = 0; bitno < nbits; bitno++)
2692 {
2693 if ((bitno % 8) == 0)
2694 {
2695 puts_filtered (" ");
2696 }
2697 if (B_TST (bits, bitno))
2698 {
2699 printf_filtered ("1");
2700 }
2701 else
2702 {
2703 printf_filtered ("0");
2704 }
2705 }
2706}
2707
ad2f7632
DJ
2708/* Note the first arg should be the "this" pointer, we may not want to
2709 include it since we may get into a infinitely recursive situation. */
c906108c
SS
2710
2711static void
ad2f7632 2712print_arg_types (struct field *args, int nargs, int spaces)
c906108c
SS
2713{
2714 if (args != NULL)
2715 {
ad2f7632
DJ
2716 int i;
2717
2718 for (i = 0; i < nargs; i++)
2719 recursive_dump_type (args[i].type, spaces + 2);
c906108c
SS
2720 }
2721}
2722
2723static void
fba45db2 2724dump_fn_fieldlists (struct type *type, int spaces)
c906108c
SS
2725{
2726 int method_idx;
2727 int overload_idx;
2728 struct fn_field *f;
2729
2730 printfi_filtered (spaces, "fn_fieldlists ");
d4f3574e 2731 gdb_print_host_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
c906108c
SS
2732 printf_filtered ("\n");
2733 for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
2734 {
2735 f = TYPE_FN_FIELDLIST1 (type, method_idx);
2736 printfi_filtered (spaces + 2, "[%d] name '%s' (",
2737 method_idx,
2738 TYPE_FN_FIELDLIST_NAME (type, method_idx));
d4f3574e
SS
2739 gdb_print_host_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
2740 gdb_stdout);
c906108c
SS
2741 printf_filtered (") length %d\n",
2742 TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
2743 for (overload_idx = 0;
2744 overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
2745 overload_idx++)
2746 {
2747 printfi_filtered (spaces + 4, "[%d] physname '%s' (",
2748 overload_idx,
2749 TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
d4f3574e
SS
2750 gdb_print_host_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
2751 gdb_stdout);
c906108c
SS
2752 printf_filtered (")\n");
2753 printfi_filtered (spaces + 8, "type ");
d4f3574e 2754 gdb_print_host_address (TYPE_FN_FIELD_TYPE (f, overload_idx), gdb_stdout);
c906108c
SS
2755 printf_filtered ("\n");
2756
2757 recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
2758 spaces + 8 + 2);
2759
2760 printfi_filtered (spaces + 8, "args ");
d4f3574e 2761 gdb_print_host_address (TYPE_FN_FIELD_ARGS (f, overload_idx), gdb_stdout);
c906108c
SS
2762 printf_filtered ("\n");
2763
ad2f7632
DJ
2764 print_arg_types (TYPE_FN_FIELD_ARGS (f, overload_idx),
2765 TYPE_NFIELDS (TYPE_FN_FIELD_TYPE (f, overload_idx)),
2766 spaces);
c906108c 2767 printfi_filtered (spaces + 8, "fcontext ");
d4f3574e
SS
2768 gdb_print_host_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
2769 gdb_stdout);
c906108c
SS
2770 printf_filtered ("\n");
2771
2772 printfi_filtered (spaces + 8, "is_const %d\n",
2773 TYPE_FN_FIELD_CONST (f, overload_idx));
2774 printfi_filtered (spaces + 8, "is_volatile %d\n",
2775 TYPE_FN_FIELD_VOLATILE (f, overload_idx));
2776 printfi_filtered (spaces + 8, "is_private %d\n",
2777 TYPE_FN_FIELD_PRIVATE (f, overload_idx));
2778 printfi_filtered (spaces + 8, "is_protected %d\n",
2779 TYPE_FN_FIELD_PROTECTED (f, overload_idx));
2780 printfi_filtered (spaces + 8, "is_stub %d\n",
2781 TYPE_FN_FIELD_STUB (f, overload_idx));
2782 printfi_filtered (spaces + 8, "voffset %u\n",
2783 TYPE_FN_FIELD_VOFFSET (f, overload_idx));
2784 }
2785 }
2786}
2787
2788static void
fba45db2 2789print_cplus_stuff (struct type *type, int spaces)
c906108c
SS
2790{
2791 printfi_filtered (spaces, "n_baseclasses %d\n",
2792 TYPE_N_BASECLASSES (type));
2793 printfi_filtered (spaces, "nfn_fields %d\n",
2794 TYPE_NFN_FIELDS (type));
2795 printfi_filtered (spaces, "nfn_fields_total %d\n",
2796 TYPE_NFN_FIELDS_TOTAL (type));
2797 if (TYPE_N_BASECLASSES (type) > 0)
2798 {
2799 printfi_filtered (spaces, "virtual_field_bits (%d bits at *",
2800 TYPE_N_BASECLASSES (type));
d4f3574e 2801 gdb_print_host_address (TYPE_FIELD_VIRTUAL_BITS (type), gdb_stdout);
c906108c
SS
2802 printf_filtered (")");
2803
2804 print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
2805 TYPE_N_BASECLASSES (type));
2806 puts_filtered ("\n");
2807 }
2808 if (TYPE_NFIELDS (type) > 0)
2809 {
2810 if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
2811 {
2812 printfi_filtered (spaces, "private_field_bits (%d bits at *",
2813 TYPE_NFIELDS (type));
d4f3574e 2814 gdb_print_host_address (TYPE_FIELD_PRIVATE_BITS (type), gdb_stdout);
c906108c
SS
2815 printf_filtered (")");
2816 print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
2817 TYPE_NFIELDS (type));
2818 puts_filtered ("\n");
2819 }
2820 if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
2821 {
2822 printfi_filtered (spaces, "protected_field_bits (%d bits at *",
2823 TYPE_NFIELDS (type));
d4f3574e 2824 gdb_print_host_address (TYPE_FIELD_PROTECTED_BITS (type), gdb_stdout);
c906108c
SS
2825 printf_filtered (")");
2826 print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
2827 TYPE_NFIELDS (type));
2828 puts_filtered ("\n");
2829 }
2830 }
2831 if (TYPE_NFN_FIELDS (type) > 0)
2832 {
2833 dump_fn_fieldlists (type, spaces);
2834 }
2835}
2836
e9e79dd9
FF
2837static void
2838print_bound_type (int bt)
2839{
2840 switch (bt)
2841 {
2842 case BOUND_CANNOT_BE_DETERMINED:
2843 printf_filtered ("(BOUND_CANNOT_BE_DETERMINED)");
2844 break;
2845 case BOUND_BY_REF_ON_STACK:
2846 printf_filtered ("(BOUND_BY_REF_ON_STACK)");
2847 break;
2848 case BOUND_BY_VALUE_ON_STACK:
2849 printf_filtered ("(BOUND_BY_VALUE_ON_STACK)");
2850 break;
2851 case BOUND_BY_REF_IN_REG:
2852 printf_filtered ("(BOUND_BY_REF_IN_REG)");
2853 break;
2854 case BOUND_BY_VALUE_IN_REG:
2855 printf_filtered ("(BOUND_BY_VALUE_IN_REG)");
2856 break;
2857 case BOUND_SIMPLE:
2858 printf_filtered ("(BOUND_SIMPLE)");
2859 break;
2860 default:
2861 printf_filtered ("(unknown bound type)");
2862 break;
2863 }
2864}
2865
c906108c
SS
2866static struct obstack dont_print_type_obstack;
2867
2868void
fba45db2 2869recursive_dump_type (struct type *type, int spaces)
c906108c
SS
2870{
2871 int idx;
2872
2873 if (spaces == 0)
2874 obstack_begin (&dont_print_type_obstack, 0);
2875
2876 if (TYPE_NFIELDS (type) > 0
2877 || (TYPE_CPLUS_SPECIFIC (type) && TYPE_NFN_FIELDS (type) > 0))
2878 {
2879 struct type **first_dont_print
c5aa993b 2880 = (struct type **) obstack_base (&dont_print_type_obstack);
c906108c 2881
c5aa993b
JM
2882 int i = (struct type **) obstack_next_free (&dont_print_type_obstack)
2883 - first_dont_print;
c906108c
SS
2884
2885 while (--i >= 0)
2886 {
2887 if (type == first_dont_print[i])
2888 {
2889 printfi_filtered (spaces, "type node ");
d4f3574e 2890 gdb_print_host_address (type, gdb_stdout);
c906108c
SS
2891 printf_filtered (" <same as already seen type>\n");
2892 return;
2893 }
2894 }
2895
2896 obstack_ptr_grow (&dont_print_type_obstack, type);
2897 }
2898
2899 printfi_filtered (spaces, "type node ");
d4f3574e 2900 gdb_print_host_address (type, gdb_stdout);
c906108c
SS
2901 printf_filtered ("\n");
2902 printfi_filtered (spaces, "name '%s' (",
2903 TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
d4f3574e 2904 gdb_print_host_address (TYPE_NAME (type), gdb_stdout);
c906108c 2905 printf_filtered (")\n");
e9e79dd9
FF
2906 printfi_filtered (spaces, "tagname '%s' (",
2907 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) : "<NULL>");
2908 gdb_print_host_address (TYPE_TAG_NAME (type), gdb_stdout);
2909 printf_filtered (")\n");
c906108c
SS
2910 printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
2911 switch (TYPE_CODE (type))
2912 {
c5aa993b
JM
2913 case TYPE_CODE_UNDEF:
2914 printf_filtered ("(TYPE_CODE_UNDEF)");
2915 break;
2916 case TYPE_CODE_PTR:
2917 printf_filtered ("(TYPE_CODE_PTR)");
2918 break;
2919 case TYPE_CODE_ARRAY:
2920 printf_filtered ("(TYPE_CODE_ARRAY)");
2921 break;
2922 case TYPE_CODE_STRUCT:
2923 printf_filtered ("(TYPE_CODE_STRUCT)");
2924 break;
2925 case TYPE_CODE_UNION:
2926 printf_filtered ("(TYPE_CODE_UNION)");
2927 break;
2928 case TYPE_CODE_ENUM:
2929 printf_filtered ("(TYPE_CODE_ENUM)");
2930 break;
2931 case TYPE_CODE_FUNC:
2932 printf_filtered ("(TYPE_CODE_FUNC)");
2933 break;
2934 case TYPE_CODE_INT:
2935 printf_filtered ("(TYPE_CODE_INT)");
2936 break;
2937 case TYPE_CODE_FLT:
2938 printf_filtered ("(TYPE_CODE_FLT)");
2939 break;
2940 case TYPE_CODE_VOID:
2941 printf_filtered ("(TYPE_CODE_VOID)");
2942 break;
2943 case TYPE_CODE_SET:
2944 printf_filtered ("(TYPE_CODE_SET)");
2945 break;
2946 case TYPE_CODE_RANGE:
2947 printf_filtered ("(TYPE_CODE_RANGE)");
2948 break;
2949 case TYPE_CODE_STRING:
2950 printf_filtered ("(TYPE_CODE_STRING)");
2951 break;
e9e79dd9
FF
2952 case TYPE_CODE_BITSTRING:
2953 printf_filtered ("(TYPE_CODE_BITSTRING)");
2954 break;
c5aa993b
JM
2955 case TYPE_CODE_ERROR:
2956 printf_filtered ("(TYPE_CODE_ERROR)");
2957 break;
2958 case TYPE_CODE_MEMBER:
2959 printf_filtered ("(TYPE_CODE_MEMBER)");
2960 break;
2961 case TYPE_CODE_METHOD:
2962 printf_filtered ("(TYPE_CODE_METHOD)");
2963 break;
2964 case TYPE_CODE_REF:
2965 printf_filtered ("(TYPE_CODE_REF)");
2966 break;
2967 case TYPE_CODE_CHAR:
2968 printf_filtered ("(TYPE_CODE_CHAR)");
2969 break;
2970 case TYPE_CODE_BOOL:
2971 printf_filtered ("(TYPE_CODE_BOOL)");
2972 break;
e9e79dd9
FF
2973 case TYPE_CODE_COMPLEX:
2974 printf_filtered ("(TYPE_CODE_COMPLEX)");
2975 break;
c5aa993b
JM
2976 case TYPE_CODE_TYPEDEF:
2977 printf_filtered ("(TYPE_CODE_TYPEDEF)");
2978 break;
e9e79dd9
FF
2979 case TYPE_CODE_TEMPLATE:
2980 printf_filtered ("(TYPE_CODE_TEMPLATE)");
2981 break;
2982 case TYPE_CODE_TEMPLATE_ARG:
2983 printf_filtered ("(TYPE_CODE_TEMPLATE_ARG)");
2984 break;
c5aa993b
JM
2985 default:
2986 printf_filtered ("(UNKNOWN TYPE CODE)");
2987 break;
c906108c
SS
2988 }
2989 puts_filtered ("\n");
2990 printfi_filtered (spaces, "length %d\n", TYPE_LENGTH (type));
e9e79dd9
FF
2991 printfi_filtered (spaces, "upper_bound_type 0x%x ",
2992 TYPE_ARRAY_UPPER_BOUND_TYPE (type));
2993 print_bound_type (TYPE_ARRAY_UPPER_BOUND_TYPE (type));
2994 puts_filtered ("\n");
2995 printfi_filtered (spaces, "lower_bound_type 0x%x ",
2996 TYPE_ARRAY_LOWER_BOUND_TYPE (type));
2997 print_bound_type (TYPE_ARRAY_LOWER_BOUND_TYPE (type));
2998 puts_filtered ("\n");
c906108c 2999 printfi_filtered (spaces, "objfile ");
d4f3574e 3000 gdb_print_host_address (TYPE_OBJFILE (type), gdb_stdout);
c906108c
SS
3001 printf_filtered ("\n");
3002 printfi_filtered (spaces, "target_type ");
d4f3574e 3003 gdb_print_host_address (TYPE_TARGET_TYPE (type), gdb_stdout);
c906108c
SS
3004 printf_filtered ("\n");
3005 if (TYPE_TARGET_TYPE (type) != NULL)
3006 {
3007 recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
3008 }
3009 printfi_filtered (spaces, "pointer_type ");
d4f3574e 3010 gdb_print_host_address (TYPE_POINTER_TYPE (type), gdb_stdout);
c906108c
SS
3011 printf_filtered ("\n");
3012 printfi_filtered (spaces, "reference_type ");
d4f3574e 3013 gdb_print_host_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
c906108c 3014 printf_filtered ("\n");
2fdde8f8
DJ
3015 printfi_filtered (spaces, "type_chain ");
3016 gdb_print_host_address (TYPE_CHAIN (type), gdb_stdout);
e9e79dd9 3017 printf_filtered ("\n");
2fdde8f8
DJ
3018 printfi_filtered (spaces, "instance_flags 0x%x", TYPE_INSTANCE_FLAGS (type));
3019 if (TYPE_CONST (type))
3020 {
3021 puts_filtered (" TYPE_FLAG_CONST");
3022 }
3023 if (TYPE_VOLATILE (type))
3024 {
3025 puts_filtered (" TYPE_FLAG_VOLATILE");
3026 }
3027 if (TYPE_CODE_SPACE (type))
3028 {
3029 puts_filtered (" TYPE_FLAG_CODE_SPACE");
3030 }
3031 if (TYPE_DATA_SPACE (type))
3032 {
3033 puts_filtered (" TYPE_FLAG_DATA_SPACE");
3034 }
3035 puts_filtered ("\n");
c906108c 3036 printfi_filtered (spaces, "flags 0x%x", TYPE_FLAGS (type));
762a036f 3037 if (TYPE_UNSIGNED (type))
c906108c
SS
3038 {
3039 puts_filtered (" TYPE_FLAG_UNSIGNED");
3040 }
762a036f
FF
3041 if (TYPE_NOSIGN (type))
3042 {
3043 puts_filtered (" TYPE_FLAG_NOSIGN");
3044 }
3045 if (TYPE_STUB (type))
c906108c
SS
3046 {
3047 puts_filtered (" TYPE_FLAG_STUB");
3048 }
762a036f
FF
3049 if (TYPE_TARGET_STUB (type))
3050 {
3051 puts_filtered (" TYPE_FLAG_TARGET_STUB");
3052 }
3053 if (TYPE_STATIC (type))
3054 {
3055 puts_filtered (" TYPE_FLAG_STATIC");
3056 }
762a036f
FF
3057 if (TYPE_PROTOTYPED (type))
3058 {
3059 puts_filtered (" TYPE_FLAG_PROTOTYPED");
3060 }
3061 if (TYPE_INCOMPLETE (type))
3062 {
3063 puts_filtered (" TYPE_FLAG_INCOMPLETE");
3064 }
762a036f
FF
3065 if (TYPE_VARARGS (type))
3066 {
3067 puts_filtered (" TYPE_FLAG_VARARGS");
3068 }
f5f8a009
EZ
3069 /* This is used for things like AltiVec registers on ppc. Gcc emits
3070 an attribute for the array type, which tells whether or not we
3071 have a vector, instead of a regular array. */
3072 if (TYPE_VECTOR (type))
3073 {
3074 puts_filtered (" TYPE_FLAG_VECTOR");
3075 }
c906108c
SS
3076 puts_filtered ("\n");
3077 printfi_filtered (spaces, "nfields %d ", TYPE_NFIELDS (type));
d4f3574e 3078 gdb_print_host_address (TYPE_FIELDS (type), gdb_stdout);
c906108c
SS
3079 puts_filtered ("\n");
3080 for (idx = 0; idx < TYPE_NFIELDS (type); idx++)
3081 {
3082 printfi_filtered (spaces + 2,
3083 "[%d] bitpos %d bitsize %d type ",
3084 idx, TYPE_FIELD_BITPOS (type, idx),
3085 TYPE_FIELD_BITSIZE (type, idx));
d4f3574e 3086 gdb_print_host_address (TYPE_FIELD_TYPE (type, idx), gdb_stdout);
c906108c
SS
3087 printf_filtered (" name '%s' (",
3088 TYPE_FIELD_NAME (type, idx) != NULL
3089 ? TYPE_FIELD_NAME (type, idx)
3090 : "<NULL>");
d4f3574e 3091 gdb_print_host_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
c906108c
SS
3092 printf_filtered (")\n");
3093 if (TYPE_FIELD_TYPE (type, idx) != NULL)
3094 {
3095 recursive_dump_type (TYPE_FIELD_TYPE (type, idx), spaces + 4);
3096 }
3097 }
3098 printfi_filtered (spaces, "vptr_basetype ");
d4f3574e 3099 gdb_print_host_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
c906108c
SS
3100 puts_filtered ("\n");
3101 if (TYPE_VPTR_BASETYPE (type) != NULL)
3102 {
3103 recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
3104 }
3105 printfi_filtered (spaces, "vptr_fieldno %d\n", TYPE_VPTR_FIELDNO (type));
3106 switch (TYPE_CODE (type))
3107 {
c5aa993b
JM
3108 case TYPE_CODE_STRUCT:
3109 printfi_filtered (spaces, "cplus_stuff ");
d4f3574e 3110 gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
c5aa993b
JM
3111 puts_filtered ("\n");
3112 print_cplus_stuff (type, spaces);
3113 break;
c906108c 3114
701c159d
AC
3115 case TYPE_CODE_FLT:
3116 printfi_filtered (spaces, "floatformat ");
3117 if (TYPE_FLOATFORMAT (type) == NULL
3118 || TYPE_FLOATFORMAT (type)->name == NULL)
3119 puts_filtered ("(null)");
3120 else
3121 puts_filtered (TYPE_FLOATFORMAT (type)->name);
3122 puts_filtered ("\n");
3123 break;
3124
c5aa993b
JM
3125 default:
3126 /* We have to pick one of the union types to be able print and test
7b83ea04
AC
3127 the value. Pick cplus_struct_type, even though we know it isn't
3128 any particular one. */
c5aa993b 3129 printfi_filtered (spaces, "type_specific ");
d4f3574e 3130 gdb_print_host_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
c5aa993b
JM
3131 if (TYPE_CPLUS_SPECIFIC (type) != NULL)
3132 {
3133 printf_filtered (" (unknown data form)");
3134 }
3135 printf_filtered ("\n");
3136 break;
c906108c
SS
3137
3138 }
3139 if (spaces == 0)
3140 obstack_free (&dont_print_type_obstack, NULL);
3141}
3142
a14ed312 3143static void build_gdbtypes (void);
c906108c 3144static void
fba45db2 3145build_gdbtypes (void)
c906108c
SS
3146{
3147 builtin_type_void =
3148 init_type (TYPE_CODE_VOID, 1,
3149 0,
3150 "void", (struct objfile *) NULL);
3151 builtin_type_char =
3152 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4e409299
JB
3153 (TYPE_FLAG_NOSIGN
3154 | (TARGET_CHAR_SIGNED ? 0 : TYPE_FLAG_UNSIGNED)),
c906108c 3155 "char", (struct objfile *) NULL);
c5aa993b 3156 builtin_type_true_char =
9e0b60a8
JM
3157 init_type (TYPE_CODE_CHAR, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3158 0,
3159 "true character", (struct objfile *) NULL);
c906108c
SS
3160 builtin_type_signed_char =
3161 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3162 0,
3163 "signed char", (struct objfile *) NULL);
3164 builtin_type_unsigned_char =
3165 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3166 TYPE_FLAG_UNSIGNED,
3167 "unsigned char", (struct objfile *) NULL);
3168 builtin_type_short =
3169 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
3170 0,
3171 "short", (struct objfile *) NULL);
3172 builtin_type_unsigned_short =
3173 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
3174 TYPE_FLAG_UNSIGNED,
3175 "unsigned short", (struct objfile *) NULL);
3176 builtin_type_int =
3177 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3178 0,
3179 "int", (struct objfile *) NULL);
3180 builtin_type_unsigned_int =
3181 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3182 TYPE_FLAG_UNSIGNED,
3183 "unsigned int", (struct objfile *) NULL);
3184 builtin_type_long =
3185 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
3186 0,
3187 "long", (struct objfile *) NULL);
3188 builtin_type_unsigned_long =
3189 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
3190 TYPE_FLAG_UNSIGNED,
3191 "unsigned long", (struct objfile *) NULL);
3192 builtin_type_long_long =
3193 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
3194 0,
3195 "long long", (struct objfile *) NULL);
c5aa993b 3196 builtin_type_unsigned_long_long =
c906108c
SS
3197 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
3198 TYPE_FLAG_UNSIGNED,
3199 "unsigned long long", (struct objfile *) NULL);
3200 builtin_type_float =
3201 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
3202 0,
3203 "float", (struct objfile *) NULL);
9c9532c9
CV
3204/* vinschen@redhat.com 2002-02-08:
3205 The below lines are disabled since they are doing the wrong
3206 thing for non-multiarch targets. They are setting the correct
3207 type of floats for the target but while on multiarch targets
3208 this is done everytime the architecture changes, it's done on
3209 non-multiarch targets only on startup, leaving the wrong values
3210 in even if the architecture changes (eg. from big-endian to
3211 little-endian). */
3212#if 0
701c159d 3213 TYPE_FLOATFORMAT (builtin_type_float) = TARGET_FLOAT_FORMAT;
9c9532c9 3214#endif
c906108c
SS
3215 builtin_type_double =
3216 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3217 0,
3218 "double", (struct objfile *) NULL);
9c9532c9 3219#if 0
701c159d 3220 TYPE_FLOATFORMAT (builtin_type_double) = TARGET_DOUBLE_FORMAT;
9c9532c9 3221#endif
c906108c
SS
3222 builtin_type_long_double =
3223 init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
3224 0,
3225 "long double", (struct objfile *) NULL);
9c9532c9 3226#if 0
701c159d 3227 TYPE_FLOATFORMAT (builtin_type_long_double) = TARGET_LONG_DOUBLE_FORMAT;
9c9532c9 3228#endif
c906108c
SS
3229 builtin_type_complex =
3230 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
3231 0,
3232 "complex", (struct objfile *) NULL);
3233 TYPE_TARGET_TYPE (builtin_type_complex) = builtin_type_float;
3234 builtin_type_double_complex =
3235 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3236 0,
3237 "double complex", (struct objfile *) NULL);
3238 TYPE_TARGET_TYPE (builtin_type_double_complex) = builtin_type_double;
3239 builtin_type_string =
3240 init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3241 0,
3242 "string", (struct objfile *) NULL);
3243 builtin_type_int8 =
3244 init_type (TYPE_CODE_INT, 8 / 8,
3245 0,
3246 "int8_t", (struct objfile *) NULL);
3247 builtin_type_uint8 =
3248 init_type (TYPE_CODE_INT, 8 / 8,
3249 TYPE_FLAG_UNSIGNED,
3250 "uint8_t", (struct objfile *) NULL);
3251 builtin_type_int16 =
3252 init_type (TYPE_CODE_INT, 16 / 8,
3253 0,
3254 "int16_t", (struct objfile *) NULL);
3255 builtin_type_uint16 =
3256 init_type (TYPE_CODE_INT, 16 / 8,
3257 TYPE_FLAG_UNSIGNED,
3258 "uint16_t", (struct objfile *) NULL);
3259 builtin_type_int32 =
3260 init_type (TYPE_CODE_INT, 32 / 8,
3261 0,
3262 "int32_t", (struct objfile *) NULL);
3263 builtin_type_uint32 =
3264 init_type (TYPE_CODE_INT, 32 / 8,
3265 TYPE_FLAG_UNSIGNED,
3266 "uint32_t", (struct objfile *) NULL);
3267 builtin_type_int64 =
3268 init_type (TYPE_CODE_INT, 64 / 8,
3269 0,
3270 "int64_t", (struct objfile *) NULL);
3271 builtin_type_uint64 =
3272 init_type (TYPE_CODE_INT, 64 / 8,
3273 TYPE_FLAG_UNSIGNED,
3274 "uint64_t", (struct objfile *) NULL);
8b982acf
EZ
3275 builtin_type_int128 =
3276 init_type (TYPE_CODE_INT, 128 / 8,
3277 0,
3278 "int128_t", (struct objfile *) NULL);
3279 builtin_type_uint128 =
3280 init_type (TYPE_CODE_INT, 128 / 8,
3281 TYPE_FLAG_UNSIGNED,
3282 "uint128_t", (struct objfile *) NULL);
c906108c
SS
3283 builtin_type_bool =
3284 init_type (TYPE_CODE_BOOL, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3285 0,
3286 "bool", (struct objfile *) NULL);
3287
c5aa993b 3288 /* Add user knob for controlling resolution of opaque types */
c906108c 3289 add_show_from_set
c5aa993b 3290 (add_set_cmd ("opaque-type-resolution", class_support, var_boolean, (char *) &opaque_type_resolution,
c906108c
SS
3291 "Set resolution of opaque struct/class/union types (if set before loading symbols).",
3292 &setlist),
3293 &showlist);
3294 opaque_type_resolution = 1;
3295
917317f4
JM
3296 /* Build SIMD types. */
3297 builtin_type_v4sf
3298 = init_simd_type ("__builtin_v4sf", builtin_type_float, "f", 4);
c2d11a7d
JM
3299 builtin_type_v4si
3300 = init_simd_type ("__builtin_v4si", builtin_type_int32, "f", 4);
08cf96df
EZ
3301 builtin_type_v16qi
3302 = init_simd_type ("__builtin_v16qi", builtin_type_int8, "f", 16);
c2d11a7d
JM
3303 builtin_type_v8qi
3304 = init_simd_type ("__builtin_v8qi", builtin_type_int8, "f", 8);
08cf96df
EZ
3305 builtin_type_v8hi
3306 = init_simd_type ("__builtin_v8hi", builtin_type_int16, "f", 8);
c2d11a7d
JM
3307 builtin_type_v4hi
3308 = init_simd_type ("__builtin_v4hi", builtin_type_int16, "f", 4);
3309 builtin_type_v2si
3310 = init_simd_type ("__builtin_v2si", builtin_type_int32, "f", 2);
c4093a6a 3311
ac3aafc7 3312 /* 128 bit vectors. */
3139facc 3313 builtin_type_v2_double = init_vector_type (builtin_type_double, 2);
ac3aafc7 3314 builtin_type_v4_float = init_vector_type (builtin_type_float, 4);
3139facc 3315 builtin_type_v2_int64 = init_vector_type (builtin_type_int64, 2);
ac3aafc7
EZ
3316 builtin_type_v4_int32 = init_vector_type (builtin_type_int32, 4);
3317 builtin_type_v8_int16 = init_vector_type (builtin_type_int16, 8);
3318 builtin_type_v16_int8 = init_vector_type (builtin_type_int8, 16);
3319 /* 64 bit vectors. */
6599f021 3320 builtin_type_v2_float = init_vector_type (builtin_type_float, 2);
ac3aafc7
EZ
3321 builtin_type_v2_int32 = init_vector_type (builtin_type_int32, 2);
3322 builtin_type_v4_int16 = init_vector_type (builtin_type_int16, 4);
3323 builtin_type_v8_int8 = init_vector_type (builtin_type_int8, 8);
3324
08cf96df 3325 /* Vector types. */
ac3aafc7 3326 builtin_type_vec128 = build_builtin_type_vec128 ();
3139facc 3327 builtin_type_vec128i = build_builtin_type_vec128i ();
08cf96df 3328
c4093a6a 3329 /* Pointer/Address types. */
ee3a7b7f
JB
3330
3331 /* NOTE: on some targets, addresses and pointers are not necessarily
3332 the same --- for example, on the D10V, pointers are 16 bits long,
3333 but addresses are 32 bits long. See doc/gdbint.texinfo,
3334 ``Pointers Are Not Always Addresses''.
3335
3336 The upshot is:
3337 - gdb's `struct type' always describes the target's
3338 representation.
3339 - gdb's `struct value' objects should always hold values in
3340 target form.
3341 - gdb's CORE_ADDR values are addresses in the unified virtual
3342 address space that the assembler and linker work with. Thus,
3343 since target_read_memory takes a CORE_ADDR as an argument, it
3344 can access any memory on the target, even if the processor has
3345 separate code and data address spaces.
3346
3347 So, for example:
3348 - If v is a value holding a D10V code pointer, its contents are
3349 in target form: a big-endian address left-shifted two bits.
3350 - If p is a D10V pointer type, TYPE_LENGTH (p) == 2, just as
3351 sizeof (void *) == 2 on the target.
3352
3353 In this context, builtin_type_CORE_ADDR is a bit odd: it's a
3354 target type for a value the target will never see. It's only
3355 used to hold the values of (typeless) linker symbols, which are
3356 indeed in the unified virtual address space. */
090a2205 3357 builtin_type_void_data_ptr = make_pointer_type (builtin_type_void, NULL);
ee3a7b7f
JB
3358 builtin_type_void_func_ptr
3359 = lookup_pointer_type (lookup_function_type (builtin_type_void));
c4093a6a 3360 builtin_type_CORE_ADDR =
52204a0b 3361 init_type (TYPE_CODE_INT, TARGET_ADDR_BIT / 8,
c4093a6a
JM
3362 TYPE_FLAG_UNSIGNED,
3363 "__CORE_ADDR", (struct objfile *) NULL);
3364 builtin_type_bfd_vma =
3365 init_type (TYPE_CODE_INT, TARGET_BFD_VMA_BIT / 8,
3366 TYPE_FLAG_UNSIGNED,
3367 "__bfd_vma", (struct objfile *) NULL);
c906108c
SS
3368}
3369
3370
a14ed312 3371extern void _initialize_gdbtypes (void);
c906108c 3372void
fba45db2 3373_initialize_gdbtypes (void)
c906108c 3374{
5d161b24 3375 struct cmd_list_element *c;
c906108c 3376 build_gdbtypes ();
0f71a2f6
JM
3377
3378 /* FIXME - For the moment, handle types by swapping them in and out.
3379 Should be using the per-architecture data-pointer and a large
3380 struct. */
c5aa993b
JM
3381 register_gdbarch_swap (&builtin_type_void, sizeof (struct type *), NULL);
3382 register_gdbarch_swap (&builtin_type_char, sizeof (struct type *), NULL);
3383 register_gdbarch_swap (&builtin_type_short, sizeof (struct type *), NULL);
3384 register_gdbarch_swap (&builtin_type_int, sizeof (struct type *), NULL);
3385 register_gdbarch_swap (&builtin_type_long, sizeof (struct type *), NULL);
3386 register_gdbarch_swap (&builtin_type_long_long, sizeof (struct type *), NULL);
3387 register_gdbarch_swap (&builtin_type_signed_char, sizeof (struct type *), NULL);
3388 register_gdbarch_swap (&builtin_type_unsigned_char, sizeof (struct type *), NULL);
3389 register_gdbarch_swap (&builtin_type_unsigned_short, sizeof (struct type *), NULL);
3390 register_gdbarch_swap (&builtin_type_unsigned_int, sizeof (struct type *), NULL);
3391 register_gdbarch_swap (&builtin_type_unsigned_long, sizeof (struct type *), NULL);
3392 register_gdbarch_swap (&builtin_type_unsigned_long_long, sizeof (struct type *), NULL);
3393 register_gdbarch_swap (&builtin_type_float, sizeof (struct type *), NULL);
3394 register_gdbarch_swap (&builtin_type_double, sizeof (struct type *), NULL);
3395 register_gdbarch_swap (&builtin_type_long_double, sizeof (struct type *), NULL);
3396 register_gdbarch_swap (&builtin_type_complex, sizeof (struct type *), NULL);
3397 register_gdbarch_swap (&builtin_type_double_complex, sizeof (struct type *), NULL);
3398 register_gdbarch_swap (&builtin_type_string, sizeof (struct type *), NULL);
3399 register_gdbarch_swap (&builtin_type_int8, sizeof (struct type *), NULL);
3400 register_gdbarch_swap (&builtin_type_uint8, sizeof (struct type *), NULL);
3401 register_gdbarch_swap (&builtin_type_int16, sizeof (struct type *), NULL);
3402 register_gdbarch_swap (&builtin_type_uint16, sizeof (struct type *), NULL);
3403 register_gdbarch_swap (&builtin_type_int32, sizeof (struct type *), NULL);
3404 register_gdbarch_swap (&builtin_type_uint32, sizeof (struct type *), NULL);
3405 register_gdbarch_swap (&builtin_type_int64, sizeof (struct type *), NULL);
3406 register_gdbarch_swap (&builtin_type_uint64, sizeof (struct type *), NULL);
8b982acf
EZ
3407 register_gdbarch_swap (&builtin_type_int128, sizeof (struct type *), NULL);
3408 register_gdbarch_swap (&builtin_type_uint128, sizeof (struct type *), NULL);
917317f4 3409 register_gdbarch_swap (&builtin_type_v4sf, sizeof (struct type *), NULL);
c2d11a7d 3410 register_gdbarch_swap (&builtin_type_v4si, sizeof (struct type *), NULL);
08cf96df 3411 register_gdbarch_swap (&builtin_type_v16qi, sizeof (struct type *), NULL);
c2d11a7d 3412 register_gdbarch_swap (&builtin_type_v8qi, sizeof (struct type *), NULL);
08cf96df 3413 register_gdbarch_swap (&builtin_type_v8hi, sizeof (struct type *), NULL);
c2d11a7d
JM
3414 register_gdbarch_swap (&builtin_type_v4hi, sizeof (struct type *), NULL);
3415 register_gdbarch_swap (&builtin_type_v2si, sizeof (struct type *), NULL);
3139facc 3416 register_gdbarch_swap (&builtin_type_v2_double, sizeof (struct type *), NULL);
ac3aafc7 3417 register_gdbarch_swap (&builtin_type_v4_float, sizeof (struct type *), NULL);
3139facc 3418 register_gdbarch_swap (&builtin_type_v2_int64, sizeof (struct type *), NULL);
ac3aafc7
EZ
3419 register_gdbarch_swap (&builtin_type_v4_int32, sizeof (struct type *), NULL);
3420 register_gdbarch_swap (&builtin_type_v8_int16, sizeof (struct type *), NULL);
3421 register_gdbarch_swap (&builtin_type_v16_int8, sizeof (struct type *), NULL);
6599f021 3422 register_gdbarch_swap (&builtin_type_v2_float, sizeof (struct type *), NULL);
ac3aafc7
EZ
3423 register_gdbarch_swap (&builtin_type_v2_int32, sizeof (struct type *), NULL);
3424 register_gdbarch_swap (&builtin_type_v8_int8, sizeof (struct type *), NULL);
3425 register_gdbarch_swap (&builtin_type_v4_int16, sizeof (struct type *), NULL);
08cf96df 3426 register_gdbarch_swap (&builtin_type_vec128, sizeof (struct type *), NULL);
3139facc 3427 register_gdbarch_swap (&builtin_type_vec128i, sizeof (struct type *), NULL);
090a2205 3428 REGISTER_GDBARCH_SWAP (builtin_type_void_data_ptr);
ee3a7b7f 3429 REGISTER_GDBARCH_SWAP (builtin_type_void_func_ptr);
c4093a6a
JM
3430 REGISTER_GDBARCH_SWAP (builtin_type_CORE_ADDR);
3431 REGISTER_GDBARCH_SWAP (builtin_type_bfd_vma);
0f71a2f6 3432 register_gdbarch_swap (NULL, 0, build_gdbtypes);
5d161b24 3433
598f52df
AC
3434 /* Note: These types do not need to be swapped - they are target
3435 neutral. */
3436 builtin_type_ieee_single_big =
3437 init_type (TYPE_CODE_FLT, floatformat_ieee_single_big.totalsize / 8,
3438 0, "builtin_type_ieee_single_big", NULL);
3439 TYPE_FLOATFORMAT (builtin_type_ieee_single_big) = &floatformat_ieee_single_big;
3440 builtin_type_ieee_single_little =
3441 init_type (TYPE_CODE_FLT, floatformat_ieee_single_little.totalsize / 8,
3442 0, "builtin_type_ieee_single_little", NULL);
069e84fd 3443 TYPE_FLOATFORMAT (builtin_type_ieee_single_little) = &floatformat_ieee_single_little;
598f52df
AC
3444 builtin_type_ieee_double_big =
3445 init_type (TYPE_CODE_FLT, floatformat_ieee_double_big.totalsize / 8,
3446 0, "builtin_type_ieee_double_big", NULL);
069e84fd 3447 TYPE_FLOATFORMAT (builtin_type_ieee_double_big) = &floatformat_ieee_double_big;
598f52df
AC
3448 builtin_type_ieee_double_little =
3449 init_type (TYPE_CODE_FLT, floatformat_ieee_double_little.totalsize / 8,
3450 0, "builtin_type_ieee_double_little", NULL);
069e84fd 3451 TYPE_FLOATFORMAT (builtin_type_ieee_double_little) = &floatformat_ieee_double_little;
598f52df
AC
3452 builtin_type_ieee_double_littlebyte_bigword =
3453 init_type (TYPE_CODE_FLT, floatformat_ieee_double_littlebyte_bigword.totalsize / 8,
3454 0, "builtin_type_ieee_double_littlebyte_bigword", NULL);
069e84fd 3455 TYPE_FLOATFORMAT (builtin_type_ieee_double_littlebyte_bigword) = &floatformat_ieee_double_littlebyte_bigword;
598f52df
AC
3456 builtin_type_i387_ext =
3457 init_type (TYPE_CODE_FLT, floatformat_i387_ext.totalsize / 8,
3458 0, "builtin_type_i387_ext", NULL);
e371b258 3459 TYPE_FLOATFORMAT (builtin_type_i387_ext) = &floatformat_i387_ext;
598f52df
AC
3460 builtin_type_m68881_ext =
3461 init_type (TYPE_CODE_FLT, floatformat_m68881_ext.totalsize / 8,
3462 0, "builtin_type_m68881_ext", NULL);
069e84fd 3463 TYPE_FLOATFORMAT (builtin_type_m68881_ext) = &floatformat_m68881_ext;
598f52df
AC
3464 builtin_type_i960_ext =
3465 init_type (TYPE_CODE_FLT, floatformat_i960_ext.totalsize / 8,
3466 0, "builtin_type_i960_ext", NULL);
069e84fd 3467 TYPE_FLOATFORMAT (builtin_type_i960_ext) = &floatformat_i960_ext;
598f52df
AC
3468 builtin_type_m88110_ext =
3469 init_type (TYPE_CODE_FLT, floatformat_m88110_ext.totalsize / 8,
3470 0, "builtin_type_m88110_ext", NULL);
069e84fd 3471 TYPE_FLOATFORMAT (builtin_type_m88110_ext) = &floatformat_m88110_ext;
598f52df
AC
3472 builtin_type_m88110_harris_ext =
3473 init_type (TYPE_CODE_FLT, floatformat_m88110_harris_ext.totalsize / 8,
3474 0, "builtin_type_m88110_harris_ext", NULL);
069e84fd 3475 TYPE_FLOATFORMAT (builtin_type_m88110_harris_ext) = &floatformat_m88110_harris_ext;
598f52df
AC
3476 builtin_type_arm_ext_big =
3477 init_type (TYPE_CODE_FLT, floatformat_arm_ext_big.totalsize / 8,
3478 0, "builtin_type_arm_ext_big", NULL);
069e84fd 3479 TYPE_FLOATFORMAT (builtin_type_arm_ext_big) = &floatformat_arm_ext_big;
598f52df
AC
3480 builtin_type_arm_ext_littlebyte_bigword =
3481 init_type (TYPE_CODE_FLT, floatformat_arm_ext_littlebyte_bigword.totalsize / 8,
3482 0, "builtin_type_arm_ext_littlebyte_bigword", NULL);
069e84fd 3483 TYPE_FLOATFORMAT (builtin_type_arm_ext_littlebyte_bigword) = &floatformat_arm_ext_littlebyte_bigword;
598f52df
AC
3484 builtin_type_ia64_spill_big =
3485 init_type (TYPE_CODE_FLT, floatformat_ia64_spill_big.totalsize / 8,
3486 0, "builtin_type_ia64_spill_big", NULL);
069e84fd 3487 TYPE_FLOATFORMAT (builtin_type_ia64_spill_big) = &floatformat_ia64_spill_big;
598f52df
AC
3488 builtin_type_ia64_spill_little =
3489 init_type (TYPE_CODE_FLT, floatformat_ia64_spill_little.totalsize / 8,
3490 0, "builtin_type_ia64_spill_little", NULL);
069e84fd 3491 TYPE_FLOATFORMAT (builtin_type_ia64_spill_little) = &floatformat_ia64_spill_little;
598f52df
AC
3492 builtin_type_ia64_quad_big =
3493 init_type (TYPE_CODE_FLT, floatformat_ia64_quad_big.totalsize / 8,
3494 0, "builtin_type_ia64_quad_big", NULL);
069e84fd 3495 TYPE_FLOATFORMAT (builtin_type_ia64_quad_big) = &floatformat_ia64_quad_big;
598f52df
AC
3496 builtin_type_ia64_quad_little =
3497 init_type (TYPE_CODE_FLT, floatformat_ia64_quad_little.totalsize / 8,
3498 0, "builtin_type_ia64_quad_little", NULL);
069e84fd 3499 TYPE_FLOATFORMAT (builtin_type_ia64_quad_little) = &floatformat_ia64_quad_little;
598f52df 3500
5d161b24
DB
3501 add_show_from_set (
3502 add_set_cmd ("overload", no_class, var_zinteger, (char *) &overload_debug,
3503 "Set debugging of C++ overloading.\n\
3504 When enabled, ranking of the functions\n\
3505 is displayed.", &setdebuglist),
3506 &showdebuglist);
c906108c 3507}
This page took 0.35587 seconds and 4 git commands to generate.