* defs.h: Delete extraneous whitespace at end of file.
[deliverable/binutils-gdb.git] / gdb / gdbtypes.c
CommitLineData
1ab3bf1b 1/* Support routines for manipulating internal types for GDB.
2447e9af 2 Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
1ab3bf1b
JG
3 Contributed by Cygnus Support, using pieces from other GDB modules.
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
6c9638b4 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
1ab3bf1b 20
1ab3bf1b 21#include "defs.h"
2b576293 22#include "gdb_string.h"
1ab3bf1b
JG
23#include "bfd.h"
24#include "symtab.h"
25#include "symfile.h"
5e2e79f8 26#include "objfiles.h"
1ab3bf1b
JG
27#include "gdbtypes.h"
28#include "expression.h"
29#include "language.h"
30#include "target.h"
31#include "value.h"
8f793aa5 32#include "demangle.h"
51b80b00 33#include "complaints.h"
1ab3bf1b 34
c4413e2c
FF
35/* These variables point to the objects
36 representing the predefined C data types. */
37
38struct type *builtin_type_void;
39struct type *builtin_type_char;
40struct type *builtin_type_short;
41struct type *builtin_type_int;
42struct type *builtin_type_long;
43struct type *builtin_type_long_long;
44struct type *builtin_type_signed_char;
45struct type *builtin_type_unsigned_char;
46struct type *builtin_type_unsigned_short;
47struct type *builtin_type_unsigned_int;
48struct type *builtin_type_unsigned_long;
49struct type *builtin_type_unsigned_long_long;
50struct type *builtin_type_float;
51struct type *builtin_type_double;
52struct type *builtin_type_long_double;
53struct type *builtin_type_complex;
54struct type *builtin_type_double_complex;
55struct type *builtin_type_string;
56
1ab3bf1b
JG
57/* Alloc a new type structure and fill it with some defaults. If
58 OBJFILE is non-NULL, then allocate the space for the type structure
59 in that objfile's type_obstack. */
60
61struct type *
62alloc_type (objfile)
63 struct objfile *objfile;
64{
65 register struct type *type;
66
67 /* Alloc the structure and start off with all fields zeroed. */
68
69 if (objfile == NULL)
70 {
71 type = (struct type *) xmalloc (sizeof (struct type));
72 }
73 else
74 {
75 type = (struct type *) obstack_alloc (&objfile -> type_obstack,
76 sizeof (struct type));
2dd30c72 77 OBJSTAT (objfile, n_types++);
1ab3bf1b 78 }
dac9734e 79 memset ((char *) type, 0, sizeof (struct type));
1ab3bf1b
JG
80
81 /* Initialize the fields that might not be zero. */
82
83 TYPE_CODE (type) = TYPE_CODE_UNDEF;
84 TYPE_OBJFILE (type) = objfile;
85 TYPE_VPTR_FIELDNO (type) = -1;
86
87 return (type);
88}
89
ea1549b3
JG
90/* Lookup a pointer to a type TYPE. TYPEPTR, if nonzero, points
91 to a pointer to memory where the pointer type should be stored.
92 If *TYPEPTR is zero, update it to point to the pointer type we return.
93 We allocate new memory if needed. */
94
95struct type *
96make_pointer_type (type, typeptr)
97 struct type *type;
98 struct type **typeptr;
99{
100 register struct type *ntype; /* New type */
101 struct objfile *objfile;
102
103 ntype = TYPE_POINTER_TYPE (type);
104
105 if (ntype)
106 if (typeptr == 0)
107 return ntype; /* Don't care about alloc, and have new type. */
108 else if (*typeptr == 0)
109 {
110 *typeptr = ntype; /* Tracking alloc, and we have new type. */
111 return ntype;
112 }
113
114 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
115 {
116 ntype = alloc_type (TYPE_OBJFILE (type));
117 if (typeptr)
118 *typeptr = ntype;
119 }
120 else /* We have storage, but need to reset it. */
121 {
122 ntype = *typeptr;
123 objfile = TYPE_OBJFILE (ntype);
dac9734e 124 memset ((char *) ntype, 0, sizeof (struct type));
ea1549b3
JG
125 TYPE_OBJFILE (ntype) = objfile;
126 }
127
128 TYPE_TARGET_TYPE (ntype) = type;
129 TYPE_POINTER_TYPE (type) = ntype;
130
131 /* FIXME! Assume the machine has only one representation for pointers! */
132
133 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
134 TYPE_CODE (ntype) = TYPE_CODE_PTR;
135
136 /* pointers are unsigned */
137 TYPE_FLAGS (ntype) |= TYPE_FLAG_UNSIGNED;
138
139 if (!TYPE_POINTER_TYPE (type)) /* Remember it, if don't have one. */
140 TYPE_POINTER_TYPE (type) = ntype;
141
142 return ntype;
143}
144
1ab3bf1b
JG
145/* Given a type TYPE, return a type of pointers to that type.
146 May need to construct such a type if this is the first use. */
147
148struct type *
149lookup_pointer_type (type)
150 struct type *type;
151{
ea1549b3
JG
152 return make_pointer_type (type, (struct type **)0);
153}
154
155/* Lookup a C++ `reference' to a type TYPE. TYPEPTR, if nonzero, points
156 to a pointer to memory where the reference type should be stored.
157 If *TYPEPTR is zero, update it to point to the reference type we return.
158 We allocate new memory if needed. */
159
160struct type *
161make_reference_type (type, typeptr)
162 struct type *type;
163 struct type **typeptr;
164{
165 register struct type *ntype; /* New type */
166 struct objfile *objfile;
167
168 ntype = TYPE_REFERENCE_TYPE (type);
1ab3bf1b 169
ea1549b3
JG
170 if (ntype)
171 if (typeptr == 0)
172 return ntype; /* Don't care about alloc, and have new type. */
173 else if (*typeptr == 0)
174 {
175 *typeptr = ntype; /* Tracking alloc, and we have new type. */
176 return ntype;
177 }
178
179 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
180 {
181 ntype = alloc_type (TYPE_OBJFILE (type));
182 if (typeptr)
183 *typeptr = ntype;
184 }
185 else /* We have storage, but need to reset it. */
1ab3bf1b 186 {
ea1549b3
JG
187 ntype = *typeptr;
188 objfile = TYPE_OBJFILE (ntype);
dac9734e 189 memset ((char *) ntype, 0, sizeof (struct type));
ea1549b3 190 TYPE_OBJFILE (ntype) = objfile;
1ab3bf1b 191 }
ea1549b3
JG
192
193 TYPE_TARGET_TYPE (ntype) = type;
194 TYPE_REFERENCE_TYPE (type) = ntype;
195
196 /* FIXME! Assume the machine has only one representation for references,
197 and that it matches the (only) representation for pointers! */
198
199 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
200 TYPE_CODE (ntype) = TYPE_CODE_REF;
201
202 if (!TYPE_REFERENCE_TYPE (type)) /* Remember it, if don't have one. */
203 TYPE_REFERENCE_TYPE (type) = ntype;
204
205 return ntype;
1ab3bf1b
JG
206}
207
ea1549b3
JG
208/* Same as above, but caller doesn't care about memory allocation details. */
209
1ab3bf1b
JG
210struct type *
211lookup_reference_type (type)
212 struct type *type;
213{
ea1549b3
JG
214 return make_reference_type (type, (struct type **)0);
215}
216
217/* Lookup a function type that returns type TYPE. TYPEPTR, if nonzero, points
218 to a pointer to memory where the function type should be stored.
219 If *TYPEPTR is zero, update it to point to the function type we return.
220 We allocate new memory if needed. */
1ab3bf1b 221
ea1549b3
JG
222struct type *
223make_function_type (type, typeptr)
224 struct type *type;
225 struct type **typeptr;
226{
227 register struct type *ntype; /* New type */
228 struct objfile *objfile;
229
ea1549b3 230 if (typeptr == 0 || *typeptr == 0) /* We'll need to allocate one. */
1ab3bf1b 231 {
ea1549b3
JG
232 ntype = alloc_type (TYPE_OBJFILE (type));
233 if (typeptr)
234 *typeptr = ntype;
1ab3bf1b 235 }
ea1549b3
JG
236 else /* We have storage, but need to reset it. */
237 {
238 ntype = *typeptr;
239 objfile = TYPE_OBJFILE (ntype);
dac9734e 240 memset ((char *) ntype, 0, sizeof (struct type));
ea1549b3
JG
241 TYPE_OBJFILE (ntype) = objfile;
242 }
243
244 TYPE_TARGET_TYPE (ntype) = type;
ea1549b3
JG
245
246 TYPE_LENGTH (ntype) = 1;
247 TYPE_CODE (ntype) = TYPE_CODE_FUNC;
248
ea1549b3 249 return ntype;
1ab3bf1b
JG
250}
251
ea1549b3 252
1ab3bf1b
JG
253/* Given a type TYPE, return a type of functions that return that type.
254 May need to construct such a type if this is the first use. */
255
256struct type *
257lookup_function_type (type)
258 struct type *type;
259{
ea1549b3 260 return make_function_type (type, (struct type **)0);
1ab3bf1b
JG
261}
262
263/* Implement direct support for MEMBER_TYPE in GNU C++.
264 May need to construct such a type if this is the first use.
265 The TYPE is the type of the member. The DOMAIN is the type
266 of the aggregate that the member belongs to. */
267
268struct type *
269lookup_member_type (type, domain)
270 struct type *type;
271 struct type *domain;
272{
273 register struct type *mtype;
274
275 mtype = alloc_type (TYPE_OBJFILE (type));
276 smash_to_member_type (mtype, domain, type);
277 return (mtype);
278}
279
280/* Allocate a stub method whose return type is TYPE.
281 This apparently happens for speed of symbol reading, since parsing
282 out the arguments to the method is cpu-intensive, the way we are doing
283 it. So, we will fill in arguments later.
284 This always returns a fresh type. */
285
286struct type *
287allocate_stub_method (type)
288 struct type *type;
289{
290 struct type *mtype;
291
292 mtype = alloc_type (TYPE_OBJFILE (type));
293 TYPE_TARGET_TYPE (mtype) = type;
294 /* _DOMAIN_TYPE (mtype) = unknown yet */
295 /* _ARG_TYPES (mtype) = unknown yet */
296 TYPE_FLAGS (mtype) = TYPE_FLAG_STUB;
297 TYPE_CODE (mtype) = TYPE_CODE_METHOD;
298 TYPE_LENGTH (mtype) = 1;
299 return (mtype);
300}
301
a8a69e63 302/* Create a range type using either a blank type supplied in RESULT_TYPE,
ec16f701
FF
303 or creating a new type, inheriting the objfile from INDEX_TYPE.
304
305 Indices will be of type INDEX_TYPE, and will range from LOW_BOUND to
306 HIGH_BOUND, inclusive.
a8a69e63
FF
307
308 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
309 sure it is TYPE_CODE_UNDEF before we bash it into a range type? */
310
311struct type *
312create_range_type (result_type, index_type, low_bound, high_bound)
313 struct type *result_type;
314 struct type *index_type;
315 int low_bound;
316 int high_bound;
317{
318 if (result_type == NULL)
319 {
320 result_type = alloc_type (TYPE_OBJFILE (index_type));
321 }
322 TYPE_CODE (result_type) = TYPE_CODE_RANGE;
323 TYPE_TARGET_TYPE (result_type) = index_type;
e55a5796
PB
324 if (TYPE_FLAGS (index_type) & TYPE_FLAG_STUB)
325 TYPE_FLAGS (result_type) |= TYPE_FLAG_TARGET_STUB;
326 else
d1f4065e 327 TYPE_LENGTH (result_type) = TYPE_LENGTH (check_typedef (index_type));
a8a69e63
FF
328 TYPE_NFIELDS (result_type) = 2;
329 TYPE_FIELDS (result_type) = (struct field *)
330 TYPE_ALLOC (result_type, 2 * sizeof (struct field));
331 memset (TYPE_FIELDS (result_type), 0, 2 * sizeof (struct field));
332 TYPE_FIELD_BITPOS (result_type, 0) = low_bound;
333 TYPE_FIELD_BITPOS (result_type, 1) = high_bound;
334 TYPE_FIELD_TYPE (result_type, 0) = builtin_type_int; /* FIXME */
335 TYPE_FIELD_TYPE (result_type, 1) = builtin_type_int; /* FIXME */
336
337 return (result_type);
338}
339
706bfe5a
PB
340/* Set *LOWP and *HIGHP to the lower and upper bounds of discrete type TYPE.
341 Return 1 of type is a range type, 0 if it is discrete (and bounds
342 will fit in LONGEST), or -1 otherwise. */
343
344int
345get_discrete_bounds (type, lowp, highp)
346 struct type *type;
347 LONGEST *lowp, *highp;
348{
d1f4065e 349 CHECK_TYPEDEF (type);
706bfe5a
PB
350 switch (TYPE_CODE (type))
351 {
4dda8ef3 352 case TYPE_CODE_RANGE:
706bfe5a
PB
353 *lowp = TYPE_LOW_BOUND (type);
354 *highp = TYPE_HIGH_BOUND (type);
355 return 1;
356 case TYPE_CODE_ENUM:
d1f4065e
PB
357 if (TYPE_NFIELDS (type) > 0)
358 {
359 *lowp = TYPE_FIELD_BITPOS (type, 0);
360 *highp = TYPE_FIELD_BITPOS (type, TYPE_NFIELDS (type) - 1);
361 }
362 else
363 {
364 *lowp = 0;
365 *highp = -1;
366 }
706bfe5a
PB
367 return 0;
368 case TYPE_CODE_BOOL:
369 *lowp = 0;
370 *highp = 1;
371 return 0;
372 case TYPE_CODE_INT:
f6d16585 373 if (TYPE_LENGTH (type) > sizeof (LONGEST)) /* Too big */
706bfe5a
PB
374 return -1;
375 if (!TYPE_UNSIGNED (type))
376 {
377 *lowp = - (1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
378 *highp = -*lowp - 1;
379 return 0;
380 }
381 /* ... fall through for unsigned ints ... */
382 case TYPE_CODE_CHAR:
383 *lowp = 0;
f6d16585
PB
384 /* This round-about calculation is to avoid shifting by
385 TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
386 if TYPE_LENGTH (type) == sizeof (LONGEST). */
387 *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
388 *highp = (*highp - 1) | *highp;
706bfe5a
PB
389 return 0;
390 default:
391 return -1;
392 }
393}
394
85f0a848 395/* Create an array type using either a blank type supplied in RESULT_TYPE,
ec16f701
FF
396 or creating a new type, inheriting the objfile from RANGE_TYPE.
397
398 Elements will be of type ELEMENT_TYPE, the indices will be of type
399 RANGE_TYPE.
1ab3bf1b 400
85f0a848
FF
401 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
402 sure it is TYPE_CODE_UNDEF before we bash it into an array type? */
1ab3bf1b
JG
403
404struct type *
a8a69e63 405create_array_type (result_type, element_type, range_type)
85f0a848 406 struct type *result_type;
1ab3bf1b 407 struct type *element_type;
a8a69e63 408 struct type *range_type;
1ab3bf1b 409{
d1f4065e 410 LONGEST low_bound, high_bound;
1ab3bf1b 411
85f0a848
FF
412 if (result_type == NULL)
413 {
ec16f701 414 result_type = alloc_type (TYPE_OBJFILE (range_type));
85f0a848 415 }
1ab3bf1b
JG
416 TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
417 TYPE_TARGET_TYPE (result_type) = element_type;
d1f4065e
PB
418 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
419 low_bound = high_bound = 0;
420 CHECK_TYPEDEF (element_type);
85f0a848
FF
421 TYPE_LENGTH (result_type) =
422 TYPE_LENGTH (element_type) * (high_bound - low_bound + 1);
1ab3bf1b 423 TYPE_NFIELDS (result_type) = 1;
a8a69e63
FF
424 TYPE_FIELDS (result_type) =
425 (struct field *) TYPE_ALLOC (result_type, sizeof (struct field));
85f0a848 426 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
8050a57b 427 TYPE_FIELD_TYPE (result_type, 0) = range_type;
1ab3bf1b
JG
428 TYPE_VPTR_FIELDNO (result_type) = -1;
429
430 return (result_type);
431}
432
c4413e2c
FF
433/* Create a string type using either a blank type supplied in RESULT_TYPE,
434 or creating a new type. String types are similar enough to array of
435 char types that we can use create_array_type to build the basic type
436 and then bash it into a string type.
437
438 For fixed length strings, the range type contains 0 as the lower
439 bound and the length of the string minus one as the upper bound.
440
441 FIXME: Maybe we should check the TYPE_CODE of RESULT_TYPE to make
442 sure it is TYPE_CODE_UNDEF before we bash it into a string type? */
443
444struct type *
445create_string_type (result_type, range_type)
446 struct type *result_type;
447 struct type *range_type;
448{
ead95f8a
PB
449 result_type = create_array_type (result_type,
450 *current_language->string_char_type,
451 range_type);
c4413e2c
FF
452 TYPE_CODE (result_type) = TYPE_CODE_STRING;
453 return (result_type);
454}
1ab3bf1b 455
e909f287
PB
456struct type *
457create_set_type (result_type, domain_type)
458 struct type *result_type;
459 struct type *domain_type;
460{
d1f4065e 461 LONGEST low_bound, high_bound, bit_length;
e909f287
PB
462 if (result_type == NULL)
463 {
464 result_type = alloc_type (TYPE_OBJFILE (domain_type));
465 }
466 TYPE_CODE (result_type) = TYPE_CODE_SET;
467 TYPE_NFIELDS (result_type) = 1;
468 TYPE_FIELDS (result_type) = (struct field *)
469 TYPE_ALLOC (result_type, 1 * sizeof (struct field));
470 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
576f9770
PB
471
472 if (! (TYPE_FLAGS (domain_type) & TYPE_FLAG_STUB))
473 {
d1f4065e
PB
474 if (get_discrete_bounds (domain_type, &low_bound, &high_bound) < 0)
475 low_bound = high_bound = 0;
576f9770
PB
476 bit_length = high_bound - low_bound + 1;
477 TYPE_LENGTH (result_type)
b4680522 478 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
576f9770 479 }
e909f287 480 TYPE_FIELD_TYPE (result_type, 0) = domain_type;
e909f287
PB
481 return (result_type);
482}
483
1ab3bf1b
JG
484/* Smash TYPE to be a type of members of DOMAIN with type TO_TYPE.
485 A MEMBER is a wierd thing -- it amounts to a typed offset into
486 a struct, e.g. "an int at offset 8". A MEMBER TYPE doesn't
487 include the offset (that's the value of the MEMBER itself), but does
488 include the structure type into which it points (for some reason).
489
c2e4669f 490 When "smashing" the type, we preserve the objfile that the
1ab3bf1b 491 old type pointed to, since we aren't changing where the type is actually
c2e4669f 492 allocated. */
1ab3bf1b
JG
493
494void
495smash_to_member_type (type, domain, to_type)
496 struct type *type;
497 struct type *domain;
498 struct type *to_type;
499{
500 struct objfile *objfile;
501
502 objfile = TYPE_OBJFILE (type);
503
dac9734e 504 memset ((char *) type, 0, sizeof (struct type));
1ab3bf1b
JG
505 TYPE_OBJFILE (type) = objfile;
506 TYPE_TARGET_TYPE (type) = to_type;
507 TYPE_DOMAIN_TYPE (type) = domain;
508 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
509 TYPE_CODE (type) = TYPE_CODE_MEMBER;
510}
511
512/* Smash TYPE to be a type of method of DOMAIN with type TO_TYPE.
513 METHOD just means `function that gets an extra "this" argument'.
514
c2e4669f 515 When "smashing" the type, we preserve the objfile that the
1ab3bf1b 516 old type pointed to, since we aren't changing where the type is actually
c2e4669f 517 allocated. */
1ab3bf1b
JG
518
519void
520smash_to_method_type (type, domain, to_type, args)
521 struct type *type;
522 struct type *domain;
523 struct type *to_type;
524 struct type **args;
525{
526 struct objfile *objfile;
527
528 objfile = TYPE_OBJFILE (type);
529
dac9734e 530 memset ((char *) type, 0, sizeof (struct type));
1ab3bf1b
JG
531 TYPE_OBJFILE (type) = objfile;
532 TYPE_TARGET_TYPE (type) = to_type;
533 TYPE_DOMAIN_TYPE (type) = domain;
534 TYPE_ARG_TYPES (type) = args;
535 TYPE_LENGTH (type) = 1; /* In practice, this is never needed. */
536 TYPE_CODE (type) = TYPE_CODE_METHOD;
537}
538
b2bebdb0
JK
539/* Return a typename for a struct/union/enum type without "struct ",
540 "union ", or "enum ". If the type has a NULL name, return NULL. */
1ab3bf1b
JG
541
542char *
543type_name_no_tag (type)
544 register const struct type *type;
545{
b2bebdb0
JK
546 if (TYPE_TAG_NAME (type) != NULL)
547 return TYPE_TAG_NAME (type);
1ab3bf1b 548
b2bebdb0
JK
549 /* Is there code which expects this to return the name if there is no
550 tag name? My guess is that this is mainly used for C++ in cases where
551 the two will always be the same. */
552 return TYPE_NAME (type);
1ab3bf1b
JG
553}
554
555/* Lookup a primitive type named NAME.
556 Return zero if NAME is not a primitive type.*/
557
558struct type *
559lookup_primitive_typename (name)
560 char *name;
561{
562 struct type ** const *p;
563
564 for (p = current_language -> la_builtin_type_vector; *p != NULL; p++)
565 {
2e4964ad 566 if (STREQ ((**p) -> name, name))
1ab3bf1b
JG
567 {
568 return (**p);
569 }
570 }
571 return (NULL);
572}
573
574/* Lookup a typedef or primitive type named NAME,
575 visible in lexical block BLOCK.
576 If NOERR is nonzero, return zero if NAME is not suitably defined. */
577
578struct type *
579lookup_typename (name, block, noerr)
580 char *name;
581 struct block *block;
582 int noerr;
583{
584 register struct symbol *sym;
585 register struct type *tmp;
586
587 sym = lookup_symbol (name, block, VAR_NAMESPACE, 0, (struct symtab **) NULL);
588 if (sym == NULL || SYMBOL_CLASS (sym) != LOC_TYPEDEF)
589 {
590 tmp = lookup_primitive_typename (name);
591 if (tmp)
592 {
593 return (tmp);
594 }
595 else if (!tmp && noerr)
596 {
597 return (NULL);
598 }
599 else
600 {
601 error ("No type named %s.", name);
602 }
603 }
604 return (SYMBOL_TYPE (sym));
605}
606
607struct type *
608lookup_unsigned_typename (name)
609 char *name;
610{
611 char *uns = alloca (strlen (name) + 10);
612
613 strcpy (uns, "unsigned ");
614 strcpy (uns + 9, name);
615 return (lookup_typename (uns, (struct block *) NULL, 0));
616}
617
a252e715
PB
618struct type *
619lookup_signed_typename (name)
620 char *name;
621{
622 struct type *t;
623 char *uns = alloca (strlen (name) + 8);
624
625 strcpy (uns, "signed ");
626 strcpy (uns + 7, name);
627 t = lookup_typename (uns, (struct block *) NULL, 1);
628 /* If we don't find "signed FOO" just try again with plain "FOO". */
629 if (t != NULL)
630 return t;
631 return lookup_typename (name, (struct block *) NULL, 0);
632}
633
1ab3bf1b
JG
634/* Lookup a structure type named "struct NAME",
635 visible in lexical block BLOCK. */
636
637struct type *
638lookup_struct (name, block)
639 char *name;
640 struct block *block;
641{
642 register struct symbol *sym;
643
644 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
645 (struct symtab **) NULL);
646
647 if (sym == NULL)
648 {
649 error ("No struct type named %s.", name);
650 }
2640f7e1
JG
651 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
652 {
653 error ("This context has class, union or enum %s, not a struct.", name);
654 }
655 return (SYMBOL_TYPE (sym));
1ab3bf1b
JG
656}
657
658/* Lookup a union type named "union NAME",
659 visible in lexical block BLOCK. */
660
661struct type *
662lookup_union (name, block)
663 char *name;
664 struct block *block;
665{
666 register struct symbol *sym;
667
668 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
669 (struct symtab **) NULL);
670
671 if (sym == NULL)
672 {
673 error ("No union type named %s.", name);
674 }
2640f7e1
JG
675 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_UNION)
676 {
677 error ("This context has class, struct or enum %s, not a union.", name);
678 }
679 return (SYMBOL_TYPE (sym));
1ab3bf1b
JG
680}
681
682/* Lookup an enum type named "enum NAME",
683 visible in lexical block BLOCK. */
684
685struct type *
686lookup_enum (name, block)
687 char *name;
688 struct block *block;
689{
690 register struct symbol *sym;
691
692 sym = lookup_symbol (name, block, STRUCT_NAMESPACE, 0,
693 (struct symtab **) NULL);
694 if (sym == NULL)
695 {
696 error ("No enum type named %s.", name);
697 }
2640f7e1
JG
698 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_ENUM)
699 {
700 error ("This context has class, struct or union %s, not an enum.", name);
701 }
702 return (SYMBOL_TYPE (sym));
1ab3bf1b
JG
703}
704
705/* Lookup a template type named "template NAME<TYPE>",
706 visible in lexical block BLOCK. */
707
708struct type *
709lookup_template_type (name, type, block)
710 char *name;
711 struct type *type;
712 struct block *block;
713{
714 struct symbol *sym;
715 char *nam = (char*) alloca(strlen(name) + strlen(type->name) + 4);
716 strcpy (nam, name);
717 strcat (nam, "<");
718 strcat (nam, type->name);
719 strcat (nam, " >"); /* FIXME, extra space still introduced in gcc? */
720
721 sym = lookup_symbol (nam, block, VAR_NAMESPACE, 0, (struct symtab **)NULL);
722
723 if (sym == NULL)
724 {
725 error ("No template type named %s.", name);
726 }
727 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_STRUCT)
728 {
729 error ("This context has class, union or enum %s, not a struct.", name);
730 }
731 return (SYMBOL_TYPE (sym));
732}
733
edf67bd1 734/* Given a type TYPE, lookup the type of the component of type named NAME.
45364c8a
FF
735
736 TYPE can be either a struct or union, or a pointer or reference to a struct or
737 union. If it is a pointer or reference, its target type is automatically used.
738 Thus '.' and '->' are interchangable, as specified for the definitions of the
739 expression element types STRUCTOP_STRUCT and STRUCTOP_PTR.
740
edf67bd1
MT
741 If NOERR is nonzero, return zero if NAME is not suitably defined.
742 If NAME is the name of a baseclass type, return that type. */
1ab3bf1b
JG
743
744struct type *
745lookup_struct_elt_type (type, name, noerr)
746 struct type *type;
747 char *name;
748 int noerr;
749{
750 int i;
751
d1f4065e
PB
752 for (;;)
753 {
754 CHECK_TYPEDEF (type);
755 if (TYPE_CODE (type) != TYPE_CODE_PTR
756 && TYPE_CODE (type) != TYPE_CODE_REF)
757 break;
5c5b5d4b 758 type = TYPE_TARGET_TYPE (type);
d1f4065e 759 }
5c5b5d4b 760
1ab3bf1b
JG
761 if (TYPE_CODE (type) != TYPE_CODE_STRUCT &&
762 TYPE_CODE (type) != TYPE_CODE_UNION)
763 {
764 target_terminal_ours ();
199b2450
TL
765 gdb_flush (gdb_stdout);
766 fprintf_unfiltered (gdb_stderr, "Type ");
767 type_print (type, "", gdb_stderr, -1);
1ab3bf1b
JG
768 error (" is not a structure or union type.");
769 }
770
45364c8a
FF
771#if 0
772 /* FIXME: This change put in by Michael seems incorrect for the case where
773 the structure tag name is the same as the member name. I.E. when doing
774 "ptype bell->bar" for "struct foo { int bar; int foo; } bell;"
775 Disabled by fnf. */
e7bf1152
RP
776 {
777 char *typename;
778
779 typename = type_name_no_tag (type);
780 if (typename != NULL && STREQ (typename, name))
781 return type;
782 }
45364c8a 783#endif
edf67bd1 784
1ab3bf1b
JG
785 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
786 {
787 char *t_field_name = TYPE_FIELD_NAME (type, i);
788
2e4964ad 789 if (t_field_name && STREQ (t_field_name, name))
1ab3bf1b
JG
790 {
791 return TYPE_FIELD_TYPE (type, i);
792 }
793 }
794
795 /* OK, it's not in this class. Recursively check the baseclasses. */
796 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
797 {
798 struct type *t;
799
d112a0c6 800 t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, noerr);
1ab3bf1b
JG
801 if (t != NULL)
802 {
803 return t;
804 }
805 }
806
807 if (noerr)
808 {
809 return NULL;
810 }
811
812 target_terminal_ours ();
199b2450
TL
813 gdb_flush (gdb_stdout);
814 fprintf_unfiltered (gdb_stderr, "Type ");
815 type_print (type, "", gdb_stderr, -1);
816 fprintf_unfiltered (gdb_stderr, " has no component named ");
817 fputs_filtered (name, gdb_stderr);
1ab3bf1b
JG
818 error (".");
819 return (struct type *)-1; /* For lint */
820}
821
ac88287f
JK
822/* If possible, make the vptr_fieldno and vptr_basetype fields of TYPE
823 valid. Callers should be aware that in some cases (for example,
824 the type or one of its baseclasses is a stub type and we are
825 debugging a .o file), this function will not be able to find the virtual
826 function table pointer, and vptr_fieldno will remain -1 and vptr_basetype
827 will remain NULL. */
1ab3bf1b
JG
828
829void
830fill_in_vptr_fieldno (type)
831 struct type *type;
832{
d1f4065e 833 CHECK_TYPEDEF (type);
ac88287f 834
1ab3bf1b
JG
835 if (TYPE_VPTR_FIELDNO (type) < 0)
836 {
837 int i;
edf67bd1
MT
838
839 /* We must start at zero in case the first (and only) baseclass is
840 virtual (and hence we cannot share the table pointer). */
841 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
1ab3bf1b
JG
842 {
843 fill_in_vptr_fieldno (TYPE_BASECLASS (type, i));
844 if (TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i)) >= 0)
845 {
846 TYPE_VPTR_FIELDNO (type)
847 = TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i));
848 TYPE_VPTR_BASETYPE (type)
849 = TYPE_VPTR_BASETYPE (TYPE_BASECLASS (type, i));
850 break;
851 }
852 }
853 }
854}
855
856/* Added by Bryan Boreham, Kewill, Sun Sep 17 18:07:17 1989.
857
858 If this is a stubbed struct (i.e. declared as struct foo *), see if
859 we can find a full definition in some other file. If so, copy this
dda398c3
JK
860 definition, so we can use it in future. There used to be a comment (but
861 not any code) that if we don't find a full definition, we'd set a flag
862 so we don't spend time in the future checking the same type. That would
863 be a mistake, though--we might load in more symbols which contain a
864 full definition for the type.
1ab3bf1b
JG
865
866 This used to be coded as a macro, but I don't think it is called
dda398c3 867 often enough to merit such treatment. */
1ab3bf1b
JG
868
869struct complaint stub_noname_complaint =
870 {"stub type has NULL name", 0, 0};
871
d1f4065e
PB
872struct type *
873check_typedef (type)
874 register struct type *type;
875{
876 struct type *orig_type = type;
877 while (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
878 {
879 if (!TYPE_TARGET_TYPE (type))
880 {
881 char* name = type_name_no_tag (type);
882 /* FIXME: shouldn't we separately check the TYPE_NAME and the
883 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
884 as appropriate? (this code was written before TYPE_NAME and
885 TYPE_TAG_NAME were separate). */
886 struct symbol *sym;
887 if (name == NULL)
888 {
889 complain (&stub_noname_complaint);
890 return type;
891 }
892 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
893 (struct symtab **) NULL);
894 if (sym)
895 TYPE_TARGET_TYPE (type) = SYMBOL_TYPE (sym);
896 else
897 TYPE_TARGET_TYPE (type) = alloc_type (NULL); /* TYPE_CODE_UNDEF */
898 }
899 type = TYPE_TARGET_TYPE (type);
900 }
901
1ab3bf1b
JG
902 if (TYPE_FLAGS(type) & TYPE_FLAG_STUB)
903 {
904 char* name = type_name_no_tag (type);
065525e3
JK
905 /* FIXME: shouldn't we separately check the TYPE_NAME and the
906 TYPE_TAG_NAME, and look in STRUCT_NAMESPACE and/or VAR_NAMESPACE
907 as appropriate? (this code was written before TYPE_NAME and
908 TYPE_TAG_NAME were separate). */
1ab3bf1b
JG
909 struct symbol *sym;
910 if (name == NULL)
911 {
51b80b00 912 complain (&stub_noname_complaint);
d1f4065e 913 return type;
1ab3bf1b
JG
914 }
915 sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0,
916 (struct symtab **) NULL);
917 if (sym)
918 {
dda398c3
JK
919 memcpy ((char *)type,
920 (char *)SYMBOL_TYPE(sym),
921 sizeof (struct type));
922 }
923 }
924
925 if (TYPE_FLAGS (type) & TYPE_FLAG_TARGET_STUB)
926 {
927 struct type *range_type;
d1f4065e 928 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
dda398c3 929
d1f4065e 930 if (TYPE_FLAGS (target_type) & TYPE_FLAG_STUB)
e55a5796
PB
931 { }
932 else if (TYPE_CODE (type) == TYPE_CODE_ARRAY
933 && TYPE_NFIELDS (type) == 1
934 && (TYPE_CODE (range_type = TYPE_FIELD_TYPE (type, 0))
935 == TYPE_CODE_RANGE))
dda398c3
JK
936 {
937 /* Now recompute the length of the array type, based on its
938 number of elements and the target type's length. */
939 TYPE_LENGTH (type) =
940 ((TYPE_FIELD_BITPOS (range_type, 1)
941 - TYPE_FIELD_BITPOS (range_type, 0)
942 + 1)
d1f4065e 943 * TYPE_LENGTH (target_type));
dda398c3 944 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
1ab3bf1b 945 }
e55a5796
PB
946 else if (TYPE_CODE (type) == TYPE_CODE_RANGE)
947 {
d1f4065e 948 TYPE_LENGTH (type) = TYPE_LENGTH (target_type);
e55a5796
PB
949 TYPE_FLAGS (type) &= ~TYPE_FLAG_TARGET_STUB;
950 }
1ab3bf1b 951 }
d1f4065e
PB
952 /* Cache TYPE_LENGTH for future use. */
953 TYPE_LENGTH (orig_type) = TYPE_LENGTH (type);
954 return type;
1ab3bf1b
JG
955}
956
957/* Ugly hack to convert method stubs into method types.
958
959 He ain't kiddin'. This demangles the name of the method into a string
960 including argument types, parses out each argument type, generates
961 a string casting a zero to that type, evaluates the string, and stuffs
962 the resulting type into an argtype vector!!! Then it knows the type
963 of the whole function (including argument types for overloading),
964 which info used to be in the stab's but was removed to hack back
965 the space required for them. */
966
967void
968check_stub_method (type, i, j)
969 struct type *type;
970 int i;
971 int j;
972{
973 struct fn_field *f;
974 char *mangled_name = gdb_mangle_name (type, i, j);
8050a57b
FF
975 char *demangled_name = cplus_demangle (mangled_name,
976 DMGL_PARAMS | DMGL_ANSI);
1ab3bf1b
JG
977 char *argtypetext, *p;
978 int depth = 0, argcount = 1;
979 struct type **argtypes;
980 struct type *mtype;
981
e045712f
BK
982 /* Make sure we got back a function string that we can use. */
983 if (demangled_name)
984 p = strchr (demangled_name, '(');
985
986 if (demangled_name == NULL || p == NULL)
987 error ("Internal: Cannot demangle mangled name `%s'.", mangled_name);
1ab3bf1b
JG
988
989 /* Now, read in the parameters that define this type. */
e045712f
BK
990 p += 1;
991 argtypetext = p;
1ab3bf1b
JG
992 while (*p)
993 {
994 if (*p == '(')
995 {
996 depth += 1;
997 }
998 else if (*p == ')')
999 {
1000 depth -= 1;
1001 }
1002 else if (*p == ',' && depth == 0)
1003 {
1004 argcount += 1;
1005 }
1006
1007 p += 1;
1008 }
1009
1010 /* We need two more slots: one for the THIS pointer, and one for the
1011 NULL [...] or void [end of arglist]. */
1012
1013 argtypes = (struct type **)
dac9734e 1014 TYPE_ALLOC (type, (argcount + 2) * sizeof (struct type *));
1ab3bf1b 1015 p = argtypetext;
e552788b 1016 /* FIXME: This is wrong for static member functions. */
1ab3bf1b
JG
1017 argtypes[0] = lookup_pointer_type (type);
1018 argcount = 1;
1019
1020 if (*p != ')') /* () means no args, skip while */
1021 {
1022 depth = 0;
1023 while (*p)
1024 {
1025 if (depth <= 0 && (*p == ',' || *p == ')'))
1026 {
393e55ba
JK
1027 /* Avoid parsing of ellipsis, they will be handled below. */
1028 if (strncmp (argtypetext, "...", p - argtypetext) != 0)
1029 {
1030 argtypes[argcount] =
1031 parse_and_eval_type (argtypetext, p - argtypetext);
1032 argcount += 1;
1033 }
1ab3bf1b
JG
1034 argtypetext = p + 1;
1035 }
1036
1037 if (*p == '(')
1038 {
1039 depth += 1;
1040 }
1041 else if (*p == ')')
1042 {
1043 depth -= 1;
1044 }
1045
1046 p += 1;
1047 }
1048 }
1049
c0f1085b 1050 if (p[-2] != '.') /* Not '...' */
1ab3bf1b 1051 {
c0f1085b 1052 argtypes[argcount] = builtin_type_void; /* List terminator */
1ab3bf1b
JG
1053 }
1054 else
1055 {
c0f1085b 1056 argtypes[argcount] = NULL; /* Ellist terminator */
1ab3bf1b
JG
1057 }
1058
1059 free (demangled_name);
1060
1061 f = TYPE_FN_FIELDLIST1 (type, i);
1062 TYPE_FN_FIELD_PHYSNAME (f, j) = mangled_name;
1063
1064 /* Now update the old "stub" type into a real type. */
1065 mtype = TYPE_FN_FIELD_TYPE (f, j);
1066 TYPE_DOMAIN_TYPE (mtype) = type;
1067 TYPE_ARG_TYPES (mtype) = argtypes;
1068 TYPE_FLAGS (mtype) &= ~TYPE_FLAG_STUB;
1069 TYPE_FN_FIELD_STUB (f, j) = 0;
1070}
1071
0213d96f 1072const struct cplus_struct_type cplus_struct_default;
1ab3bf1b
JG
1073
1074void
1075allocate_cplus_struct_type (type)
1076 struct type *type;
1077{
1078 if (!HAVE_CPLUS_STRUCT (type))
1079 {
1080 TYPE_CPLUS_SPECIFIC (type) = (struct cplus_struct_type *)
dac9734e 1081 TYPE_ALLOC (type, sizeof (struct cplus_struct_type));
1ab3bf1b
JG
1082 *(TYPE_CPLUS_SPECIFIC(type)) = cplus_struct_default;
1083 }
1084}
1085
50e0dc41
FF
1086/* Helper function to initialize the standard scalar types.
1087
1088 If NAME is non-NULL and OBJFILE is non-NULL, then we make a copy
1089 of the string pointed to by name in the type_obstack for that objfile,
1090 and initialize the type name to that copy. There are places (mipsread.c
1091 in particular, where init_type is called with a NULL value for NAME). */
1ab3bf1b
JG
1092
1093struct type *
1094init_type (code, length, flags, name, objfile)
1095 enum type_code code;
1096 int length;
1097 int flags;
1098 char *name;
1099 struct objfile *objfile;
1100{
1101 register struct type *type;
1102
1103 type = alloc_type (objfile);
1104 TYPE_CODE (type) = code;
1105 TYPE_LENGTH (type) = length;
1106 TYPE_FLAGS (type) |= flags;
50e0dc41
FF
1107 if ((name != NULL) && (objfile != NULL))
1108 {
1109 TYPE_NAME (type) =
1110 obsavestring (name, strlen (name), &objfile -> type_obstack);
1111 }
1112 else
1113 {
1114 TYPE_NAME (type) = name;
1115 }
1ab3bf1b
JG
1116
1117 /* C++ fancies. */
1118
1119 if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION)
1120 {
1121 INIT_CPLUS_SPECIFIC (type);
1122 }
1123 return (type);
1124}
1125
1126/* Look up a fundamental type for the specified objfile.
1127 May need to construct such a type if this is the first use.
1128
1129 Some object file formats (ELF, COFF, etc) do not define fundamental
1130 types such as "int" or "double". Others (stabs for example), do
1131 define fundamental types.
1132
1133 For the formats which don't provide fundamental types, gdb can create
bf229b4e
FF
1134 such types, using defaults reasonable for the current language and
1135 the current target machine.
1136
1137 NOTE: This routine is obsolescent. Each debugging format reader
1138 should manage it's own fundamental types, either creating them from
1139 suitable defaults or reading them from the debugging information,
1140 whichever is appropriate. The DWARF reader has already been
1141 fixed to do this. Once the other readers are fixed, this routine
1142 will go away. Also note that fundamental types should be managed
1143 on a compilation unit basis in a multi-language environment, not
1144 on a linkage unit basis as is done here. */
1145
1ab3bf1b
JG
1146
1147struct type *
1148lookup_fundamental_type (objfile, typeid)
1149 struct objfile *objfile;
1150 int typeid;
1151{
1ab3bf1b
JG
1152 register struct type **typep;
1153 register int nbytes;
1154
1155 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
1156 {
1157 error ("internal error - invalid fundamental type id %d", typeid);
1158 }
bf229b4e
FF
1159
1160 /* If this is the first time we need a fundamental type for this objfile
1161 then we need to initialize the vector of type pointers. */
1162
1163 if (objfile -> fundamental_types == NULL)
1ab3bf1b 1164 {
bf229b4e
FF
1165 nbytes = FT_NUM_MEMBERS * sizeof (struct type *);
1166 objfile -> fundamental_types = (struct type **)
1167 obstack_alloc (&objfile -> type_obstack, nbytes);
1168 memset ((char *) objfile -> fundamental_types, 0, nbytes);
2dd30c72 1169 OBJSTAT (objfile, n_types += FT_NUM_MEMBERS);
1ab3bf1b 1170 }
bf229b4e
FF
1171
1172 /* Look for this particular type in the fundamental type vector. If one is
1173 not found, create and install one appropriate for the current language. */
1174
1175 typep = objfile -> fundamental_types + typeid;
1176 if (*typep == NULL)
1177 {
1178 *typep = create_fundamental_type (objfile, typeid);
1179 }
1180
1181 return (*typep);
1ab3bf1b
JG
1182}
1183
9c036bd8
JK
1184int
1185can_dereference (t)
1186 struct type *t;
1187{
1188 /* FIXME: Should we return true for references as well as pointers? */
d1f4065e 1189 CHECK_TYPEDEF (t);
9c036bd8
JK
1190 return
1191 (t != NULL
1192 && TYPE_CODE (t) == TYPE_CODE_PTR
1193 && TYPE_CODE (TYPE_TARGET_TYPE (t)) != TYPE_CODE_VOID);
1194}
1195
f91a9e05
PB
1196/* Chill varying string and arrays are represented as follows:
1197
1198 struct { int __var_length; ELEMENT_TYPE[MAX_SIZE] __var_data};
1199
1200 Return true if TYPE is such a Chill varying type. */
1201
1202int
1203chill_varying_type (type)
1204 struct type *type;
1205{
1206 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
1207 || TYPE_NFIELDS (type) != 2
1208 || strcmp (TYPE_FIELD_NAME (type, 0), "__var_length") != 0)
1209 return 0;
1210 return 1;
1211}
1212
0239d9b3
FF
1213#if MAINTENANCE_CMDS
1214
8050a57b
FF
1215static void
1216print_bit_vector (bits, nbits)
1217 B_TYPE *bits;
1218 int nbits;
0239d9b3 1219{
8050a57b
FF
1220 int bitno;
1221
1222 for (bitno = 0; bitno < nbits; bitno++)
0239d9b3 1223 {
8050a57b
FF
1224 if ((bitno % 8) == 0)
1225 {
1226 puts_filtered (" ");
1227 }
1228 if (B_TST (bits, bitno))
1229 {
1230 printf_filtered ("1");
1231 }
1232 else
1233 {
1234 printf_filtered ("0");
1235 }
0239d9b3 1236 }
8050a57b
FF
1237}
1238
c0f1085b
FF
1239/* The args list is a strange beast. It is either terminated by a NULL
1240 pointer for varargs functions, or by a pointer to a TYPE_CODE_VOID
1241 type for normal fixed argcount functions. (FIXME someday)
1242 Also note the first arg should be the "this" pointer, we may not want to
1243 include it since we may get into a infinitely recursive situation. */
1244
1245static void
1246print_arg_types (args, spaces)
1247 struct type **args;
1248 int spaces;
1249{
1250 if (args != NULL)
1251 {
1252 while (*args != NULL)
1253 {
1254 recursive_dump_type (*args, spaces + 2);
1255 if ((*args++) -> code == TYPE_CODE_VOID)
1256 {
1257 break;
1258 }
1259 }
1260 }
1261}
1262
1263static void
1264dump_fn_fieldlists (type, spaces)
1265 struct type *type;
1266 int spaces;
1267{
1268 int method_idx;
1269 int overload_idx;
1270 struct fn_field *f;
1271
833e0d94
JK
1272 printfi_filtered (spaces, "fn_fieldlists ");
1273 gdb_print_address (TYPE_FN_FIELDLISTS (type), gdb_stdout);
1274 printf_filtered ("\n");
c0f1085b
FF
1275 for (method_idx = 0; method_idx < TYPE_NFN_FIELDS (type); method_idx++)
1276 {
1277 f = TYPE_FN_FIELDLIST1 (type, method_idx);
833e0d94 1278 printfi_filtered (spaces + 2, "[%d] name '%s' (",
c0f1085b 1279 method_idx,
833e0d94
JK
1280 TYPE_FN_FIELDLIST_NAME (type, method_idx));
1281 gdb_print_address (TYPE_FN_FIELDLIST_NAME (type, method_idx),
1282 gdb_stdout);
1283 printf_filtered (") length %d\n",
1284 TYPE_FN_FIELDLIST_LENGTH (type, method_idx));
c0f1085b
FF
1285 for (overload_idx = 0;
1286 overload_idx < TYPE_FN_FIELDLIST_LENGTH (type, method_idx);
1287 overload_idx++)
1288 {
833e0d94 1289 printfi_filtered (spaces + 4, "[%d] physname '%s' (",
c0f1085b 1290 overload_idx,
833e0d94 1291 TYPE_FN_FIELD_PHYSNAME (f, overload_idx));
5e678752
JK
1292 gdb_print_address (TYPE_FN_FIELD_PHYSNAME (f, overload_idx),
1293 gdb_stdout);
833e0d94
JK
1294 printf_filtered (")\n");
1295 printfi_filtered (spaces + 8, "type ");
1296 gdb_print_address (TYPE_FN_FIELD_TYPE (f, overload_idx), gdb_stdout);
1297 printf_filtered ("\n");
1298
c0f1085b
FF
1299 recursive_dump_type (TYPE_FN_FIELD_TYPE (f, overload_idx),
1300 spaces + 8 + 2);
833e0d94
JK
1301
1302 printfi_filtered (spaces + 8, "args ");
1303 gdb_print_address (TYPE_FN_FIELD_ARGS (f, overload_idx), gdb_stdout);
1304 printf_filtered ("\n");
1305
c0f1085b 1306 print_arg_types (TYPE_FN_FIELD_ARGS (f, overload_idx), spaces);
833e0d94
JK
1307 printfi_filtered (spaces + 8, "fcontext ");
1308 gdb_print_address (TYPE_FN_FIELD_FCONTEXT (f, overload_idx),
1309 gdb_stdout);
1310 printf_filtered ("\n");
1311
c0f1085b
FF
1312 printfi_filtered (spaces + 8, "is_const %d\n",
1313 TYPE_FN_FIELD_CONST (f, overload_idx));
1314 printfi_filtered (spaces + 8, "is_volatile %d\n",
1315 TYPE_FN_FIELD_VOLATILE (f, overload_idx));
1316 printfi_filtered (spaces + 8, "is_private %d\n",
1317 TYPE_FN_FIELD_PRIVATE (f, overload_idx));
1318 printfi_filtered (spaces + 8, "is_protected %d\n",
1319 TYPE_FN_FIELD_PROTECTED (f, overload_idx));
1320 printfi_filtered (spaces + 8, "is_stub %d\n",
1321 TYPE_FN_FIELD_STUB (f, overload_idx));
d07734e3 1322 printfi_filtered (spaces + 8, "voffset %u\n",
c0f1085b
FF
1323 TYPE_FN_FIELD_VOFFSET (f, overload_idx));
1324 }
1325 }
1326}
1327
8050a57b
FF
1328static void
1329print_cplus_stuff (type, spaces)
1330 struct type *type;
1331 int spaces;
1332{
c0f1085b 1333 printfi_filtered (spaces, "n_baseclasses %d\n",
8050a57b 1334 TYPE_N_BASECLASSES (type));
c0f1085b
FF
1335 printfi_filtered (spaces, "nfn_fields %d\n",
1336 TYPE_NFN_FIELDS (type));
1337 printfi_filtered (spaces, "nfn_fields_total %d\n",
1338 TYPE_NFN_FIELDS_TOTAL (type));
8050a57b 1339 if (TYPE_N_BASECLASSES (type) > 0)
0239d9b3 1340 {
833e0d94
JK
1341 printfi_filtered (spaces, "virtual_field_bits (%d bits at *",
1342 TYPE_N_BASECLASSES (type));
1343 gdb_print_address (TYPE_FIELD_VIRTUAL_BITS (type), gdb_stdout);
1344 printf_filtered (")");
1345
8050a57b
FF
1346 print_bit_vector (TYPE_FIELD_VIRTUAL_BITS (type),
1347 TYPE_N_BASECLASSES (type));
1348 puts_filtered ("\n");
0239d9b3 1349 }
8050a57b 1350 if (TYPE_NFIELDS (type) > 0)
0239d9b3 1351 {
8050a57b
FF
1352 if (TYPE_FIELD_PRIVATE_BITS (type) != NULL)
1353 {
833e0d94
JK
1354 printfi_filtered (spaces, "private_field_bits (%d bits at *",
1355 TYPE_NFIELDS (type));
1356 gdb_print_address (TYPE_FIELD_PRIVATE_BITS (type), gdb_stdout);
1357 printf_filtered (")");
8050a57b
FF
1358 print_bit_vector (TYPE_FIELD_PRIVATE_BITS (type),
1359 TYPE_NFIELDS (type));
1360 puts_filtered ("\n");
1361 }
1362 if (TYPE_FIELD_PROTECTED_BITS (type) != NULL)
0239d9b3 1363 {
833e0d94
JK
1364 printfi_filtered (spaces, "protected_field_bits (%d bits at *",
1365 TYPE_NFIELDS (type));
1366 gdb_print_address (TYPE_FIELD_PROTECTED_BITS (type), gdb_stdout);
1367 printf_filtered (")");
8050a57b
FF
1368 print_bit_vector (TYPE_FIELD_PROTECTED_BITS (type),
1369 TYPE_NFIELDS (type));
1370 puts_filtered ("\n");
0239d9b3
FF
1371 }
1372 }
c0f1085b
FF
1373 if (TYPE_NFN_FIELDS (type) > 0)
1374 {
1375 dump_fn_fieldlists (type, spaces);
1376 }
8050a57b
FF
1377}
1378
2447e9af
PS
1379static struct obstack dont_print_type_obstack;
1380
8050a57b
FF
1381void
1382recursive_dump_type (type, spaces)
1383 struct type *type;
1384 int spaces;
1385{
1386 int idx;
0239d9b3 1387
2447e9af
PS
1388 if (spaces == 0)
1389 obstack_begin (&dont_print_type_obstack, 0);
1390
1391 if (TYPE_NFIELDS (type) > 0
1392 || (TYPE_CPLUS_SPECIFIC (type) && TYPE_NFN_FIELDS (type) > 0))
1393 {
1394 struct type **first_dont_print
1395 = (struct type **)obstack_base (&dont_print_type_obstack);
1396
1397 int i = (struct type **)obstack_next_free (&dont_print_type_obstack)
1398 - first_dont_print;
1399
1400 while (--i >= 0)
1401 {
1402 if (type == first_dont_print[i])
1403 {
1404 printfi_filtered (spaces, "type node ");
1405 gdb_print_address (type, gdb_stdout);
1406 printf_filtered (" <same as already seen type>\n");
1407 return;
1408 }
1409 }
1410
1411 obstack_ptr_grow (&dont_print_type_obstack, type);
1412 }
1413
833e0d94
JK
1414 printfi_filtered (spaces, "type node ");
1415 gdb_print_address (type, gdb_stdout);
1416 printf_filtered ("\n");
1417 printfi_filtered (spaces, "name '%s' (",
1418 TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
1419 gdb_print_address (TYPE_NAME (type), gdb_stdout);
1420 printf_filtered (")\n");
85999c05 1421 if (TYPE_TAG_NAME (type) != NULL)
833e0d94
JK
1422 {
1423 printfi_filtered (spaces, "tagname '%s' (",
1424 TYPE_TAG_NAME (type));
1425 gdb_print_address (TYPE_TAG_NAME (type), gdb_stdout);
1426 printf_filtered (")\n");
1427 }
c0f1085b 1428 printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
8050a57b 1429 switch (TYPE_CODE (type))
0239d9b3 1430 {
8050a57b 1431 case TYPE_CODE_UNDEF:
c0f1085b 1432 printf_filtered ("(TYPE_CODE_UNDEF)");
8050a57b
FF
1433 break;
1434 case TYPE_CODE_PTR:
c0f1085b 1435 printf_filtered ("(TYPE_CODE_PTR)");
8050a57b
FF
1436 break;
1437 case TYPE_CODE_ARRAY:
c0f1085b 1438 printf_filtered ("(TYPE_CODE_ARRAY)");
8050a57b
FF
1439 break;
1440 case TYPE_CODE_STRUCT:
c0f1085b 1441 printf_filtered ("(TYPE_CODE_STRUCT)");
8050a57b
FF
1442 break;
1443 case TYPE_CODE_UNION:
c0f1085b 1444 printf_filtered ("(TYPE_CODE_UNION)");
8050a57b
FF
1445 break;
1446 case TYPE_CODE_ENUM:
c0f1085b 1447 printf_filtered ("(TYPE_CODE_ENUM)");
8050a57b
FF
1448 break;
1449 case TYPE_CODE_FUNC:
c0f1085b 1450 printf_filtered ("(TYPE_CODE_FUNC)");
8050a57b
FF
1451 break;
1452 case TYPE_CODE_INT:
c0f1085b 1453 printf_filtered ("(TYPE_CODE_INT)");
8050a57b
FF
1454 break;
1455 case TYPE_CODE_FLT:
c0f1085b 1456 printf_filtered ("(TYPE_CODE_FLT)");
8050a57b
FF
1457 break;
1458 case TYPE_CODE_VOID:
c0f1085b 1459 printf_filtered ("(TYPE_CODE_VOID)");
8050a57b
FF
1460 break;
1461 case TYPE_CODE_SET:
c0f1085b 1462 printf_filtered ("(TYPE_CODE_SET)");
8050a57b
FF
1463 break;
1464 case TYPE_CODE_RANGE:
c0f1085b 1465 printf_filtered ("(TYPE_CODE_RANGE)");
8050a57b 1466 break;
c4413e2c
FF
1467 case TYPE_CODE_STRING:
1468 printf_filtered ("(TYPE_CODE_STRING)");
8050a57b
FF
1469 break;
1470 case TYPE_CODE_ERROR:
c0f1085b 1471 printf_filtered ("(TYPE_CODE_ERROR)");
8050a57b
FF
1472 break;
1473 case TYPE_CODE_MEMBER:
c0f1085b 1474 printf_filtered ("(TYPE_CODE_MEMBER)");
8050a57b
FF
1475 break;
1476 case TYPE_CODE_METHOD:
c0f1085b 1477 printf_filtered ("(TYPE_CODE_METHOD)");
8050a57b
FF
1478 break;
1479 case TYPE_CODE_REF:
c0f1085b 1480 printf_filtered ("(TYPE_CODE_REF)");
8050a57b
FF
1481 break;
1482 case TYPE_CODE_CHAR:
c0f1085b 1483 printf_filtered ("(TYPE_CODE_CHAR)");
8050a57b
FF
1484 break;
1485 case TYPE_CODE_BOOL:
c0f1085b 1486 printf_filtered ("(TYPE_CODE_BOOL)");
8050a57b 1487 break;
d1f4065e
PB
1488 case TYPE_CODE_TYPEDEF:
1489 printf_filtered ("(TYPE_CODE_TYPEDEF)");
1490 break;
8050a57b 1491 default:
c0f1085b 1492 printf_filtered ("(UNKNOWN TYPE CODE)");
8050a57b 1493 break;
0239d9b3 1494 }
8050a57b 1495 puts_filtered ("\n");
c0f1085b 1496 printfi_filtered (spaces, "length %d\n", TYPE_LENGTH (type));
833e0d94
JK
1497 printfi_filtered (spaces, "objfile ");
1498 gdb_print_address (TYPE_OBJFILE (type), gdb_stdout);
1499 printf_filtered ("\n");
1500 printfi_filtered (spaces, "target_type ");
1501 gdb_print_address (TYPE_TARGET_TYPE (type), gdb_stdout);
1502 printf_filtered ("\n");
8050a57b
FF
1503 if (TYPE_TARGET_TYPE (type) != NULL)
1504 {
1505 recursive_dump_type (TYPE_TARGET_TYPE (type), spaces + 2);
1506 }
833e0d94
JK
1507 printfi_filtered (spaces, "pointer_type ");
1508 gdb_print_address (TYPE_POINTER_TYPE (type), gdb_stdout);
1509 printf_filtered ("\n");
1510 printfi_filtered (spaces, "reference_type ");
1511 gdb_print_address (TYPE_REFERENCE_TYPE (type), gdb_stdout);
1512 printf_filtered ("\n");
c0f1085b 1513 printfi_filtered (spaces, "flags 0x%x", TYPE_FLAGS (type));
8050a57b
FF
1514 if (TYPE_FLAGS (type) & TYPE_FLAG_UNSIGNED)
1515 {
1516 puts_filtered (" TYPE_FLAG_UNSIGNED");
1517 }
8050a57b
FF
1518 if (TYPE_FLAGS (type) & TYPE_FLAG_STUB)
1519 {
1520 puts_filtered (" TYPE_FLAG_STUB");
1521 }
1522 puts_filtered ("\n");
833e0d94 1523 printfi_filtered (spaces, "nfields %d ", TYPE_NFIELDS (type));
5e678752 1524 gdb_print_address (TYPE_FIELDS (type), gdb_stdout);
833e0d94 1525 puts_filtered ("\n");
8050a57b
FF
1526 for (idx = 0; idx < TYPE_NFIELDS (type); idx++)
1527 {
1528 printfi_filtered (spaces + 2,
5e678752 1529 "[%d] bitpos %d bitsize %d type ",
8050a57b 1530 idx, TYPE_FIELD_BITPOS (type, idx),
833e0d94
JK
1531 TYPE_FIELD_BITSIZE (type, idx));
1532 gdb_print_address (TYPE_FIELD_TYPE (type, idx), gdb_stdout);
1533 printf_filtered (" name '%s' (",
1534 TYPE_FIELD_NAME (type, idx) != NULL
1535 ? TYPE_FIELD_NAME (type, idx)
1536 : "<NULL>");
5e678752 1537 gdb_print_address (TYPE_FIELD_NAME (type, idx), gdb_stdout);
833e0d94 1538 printf_filtered (")\n");
8050a57b
FF
1539 if (TYPE_FIELD_TYPE (type, idx) != NULL)
1540 {
1541 recursive_dump_type (TYPE_FIELD_TYPE (type, idx), spaces + 4);
1542 }
1543 }
833e0d94
JK
1544 printfi_filtered (spaces, "vptr_basetype ");
1545 gdb_print_address (TYPE_VPTR_BASETYPE (type), gdb_stdout);
1546 puts_filtered ("\n");
8050a57b
FF
1547 if (TYPE_VPTR_BASETYPE (type) != NULL)
1548 {
1549 recursive_dump_type (TYPE_VPTR_BASETYPE (type), spaces + 2);
1550 }
c0f1085b 1551 printfi_filtered (spaces, "vptr_fieldno %d\n", TYPE_VPTR_FIELDNO (type));
8050a57b 1552 switch (TYPE_CODE (type))
0239d9b3
FF
1553 {
1554 case TYPE_CODE_METHOD:
1555 case TYPE_CODE_FUNC:
833e0d94 1556 printfi_filtered (spaces, "arg_types ");
5e678752 1557 gdb_print_address (TYPE_ARG_TYPES (type), gdb_stdout);
833e0d94 1558 puts_filtered ("\n");
c0f1085b 1559 print_arg_types (TYPE_ARG_TYPES (type), spaces);
0239d9b3
FF
1560 break;
1561
1562 case TYPE_CODE_STRUCT:
833e0d94 1563 printfi_filtered (spaces, "cplus_stuff ");
5e678752 1564 gdb_print_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
833e0d94 1565 puts_filtered ("\n");
8050a57b 1566 print_cplus_stuff (type, spaces);
0239d9b3 1567 break;
d07734e3
FF
1568
1569 default:
1570 /* We have to pick one of the union types to be able print and test
1571 the value. Pick cplus_struct_type, even though we know it isn't
1572 any particular one. */
833e0d94 1573 printfi_filtered (spaces, "type_specific ");
5e678752 1574 gdb_print_address (TYPE_CPLUS_SPECIFIC (type), gdb_stdout);
d07734e3
FF
1575 if (TYPE_CPLUS_SPECIFIC (type) != NULL)
1576 {
1577 printf_filtered (" (unknown data form)");
1578 }
1579 printf_filtered ("\n");
1580 break;
1581
0239d9b3 1582 }
2447e9af
PS
1583 if (spaces == 0)
1584 obstack_free (&dont_print_type_obstack, NULL);
0239d9b3
FF
1585}
1586
1587#endif /* MAINTENANCE_CMDS */
c4413e2c
FF
1588
1589void
1590_initialize_gdbtypes ()
1591{
1592 builtin_type_void =
1593 init_type (TYPE_CODE_VOID, 1,
1594 0,
1595 "void", (struct objfile *) NULL);
1596 builtin_type_char =
1597 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1598 0,
1599 "char", (struct objfile *) NULL);
1600 builtin_type_signed_char =
1601 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
dda398c3 1602 0,
c4413e2c
FF
1603 "signed char", (struct objfile *) NULL);
1604 builtin_type_unsigned_char =
1605 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1606 TYPE_FLAG_UNSIGNED,
1607 "unsigned char", (struct objfile *) NULL);
1608 builtin_type_short =
1609 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
1610 0,
1611 "short", (struct objfile *) NULL);
1612 builtin_type_unsigned_short =
1613 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
1614 TYPE_FLAG_UNSIGNED,
1615 "unsigned short", (struct objfile *) NULL);
1616 builtin_type_int =
1617 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1618 0,
1619 "int", (struct objfile *) NULL);
1620 builtin_type_unsigned_int =
1621 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1622 TYPE_FLAG_UNSIGNED,
1623 "unsigned int", (struct objfile *) NULL);
1624 builtin_type_long =
1625 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
1626 0,
1627 "long", (struct objfile *) NULL);
1628 builtin_type_unsigned_long =
1629 init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
1630 TYPE_FLAG_UNSIGNED,
1631 "unsigned long", (struct objfile *) NULL);
1632 builtin_type_long_long =
1633 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
1634 0,
1635 "long long", (struct objfile *) NULL);
1636 builtin_type_unsigned_long_long =
1637 init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
1638 TYPE_FLAG_UNSIGNED,
1639 "unsigned long long", (struct objfile *) NULL);
1640 builtin_type_float =
1641 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
1642 0,
1643 "float", (struct objfile *) NULL);
1644 builtin_type_double =
1645 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
1646 0,
1647 "double", (struct objfile *) NULL);
1648 builtin_type_long_double =
1649 init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
1650 0,
1651 "long double", (struct objfile *) NULL);
1652 builtin_type_complex =
ead95f8a 1653 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
c4413e2c
FF
1654 0,
1655 "complex", (struct objfile *) NULL);
ead95f8a 1656 TYPE_TARGET_TYPE (builtin_type_complex) = builtin_type_float;
c4413e2c 1657 builtin_type_double_complex =
ead95f8a 1658 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
c4413e2c
FF
1659 0,
1660 "double complex", (struct objfile *) NULL);
ead95f8a 1661 TYPE_TARGET_TYPE (builtin_type_double_complex) = builtin_type_double;
c4413e2c
FF
1662 builtin_type_string =
1663 init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
1664 0,
1665 "string", (struct objfile *) NULL);
1666}
This page took 0.261869 seconds and 4 git commands to generate.