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