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