]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/c-typeprint.c
* scripttempl/pe.sc: Add support for constructor priorities.
[thirdparty/binutils-gdb.git] / gdb / c-typeprint.c
CommitLineData
c906108c 1/* Support for printing C and C++ types for GDB, the GNU debugger.
b6ba6518
KB
2 Copyright 1986, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1998,
3 1999, 2000
c906108c
SS
4 Free Software Foundation, Inc.
5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
24#include "obstack.h"
25#include "bfd.h" /* Binary File Description */
26#include "symtab.h"
27#include "gdbtypes.h"
28#include "expression.h"
29#include "value.h"
30#include "gdbcore.h"
31#include "target.h"
c906108c
SS
32#include "language.h"
33#include "demangle.h"
34#include "c-lang.h"
35#include "typeprint.h"
015a42b4 36#include "cp-abi.h"
c906108c
SS
37
38#include "gdb_string.h"
39#include <errno.h>
c906108c
SS
40
41/* Flag indicating target was compiled by HP compiler */
42extern int hp_som_som_object_present;
43
d9fcf2fb
JM
44static void cp_type_print_method_args (struct type ** args, char *prefix,
45 char *varstring, int staticp,
46 struct ui_file *stream);
392a587b 47
d9fcf2fb 48static void c_type_print_args (struct type *, struct ui_file *);
c906108c 49
d9fcf2fb 50static void cp_type_print_derivation_info (struct ui_file *, struct type *);
c906108c 51
d9fcf2fb
JM
52void c_type_print_varspec_prefix (struct type *, struct ui_file *, int,
53 int);
c906108c 54
47663de5
MS
55/* Print "const", "volatile", or address space modifiers. */
56static void c_type_print_modifier (struct type *, struct ui_file *,
57 int, int);
c5aa993b 58\f
c906108c
SS
59
60
c906108c
SS
61
62/* LEVEL is the depth to indent lines by. */
63
64void
fba45db2
KB
65c_print_type (struct type *type, char *varstring, struct ui_file *stream,
66 int show, int level)
c906108c
SS
67{
68 register enum type_code code;
69 int demangled_args;
70
71 if (show > 0)
72 CHECK_TYPEDEF (type);
73
74 c_type_print_base (type, stream, show, level);
75 code = TYPE_CODE (type);
76 if ((varstring != NULL && *varstring != '\0')
77 ||
c5aa993b
JM
78 /* Need a space if going to print stars or brackets;
79 but not if we will print just a type name. */
c906108c
SS
80 ((show > 0 || TYPE_NAME (type) == 0)
81 &&
82 (code == TYPE_CODE_PTR || code == TYPE_CODE_FUNC
83 || code == TYPE_CODE_METHOD
84 || code == TYPE_CODE_ARRAY
85 || code == TYPE_CODE_MEMBER
86 || code == TYPE_CODE_REF)))
87 fputs_filtered (" ", stream);
88 c_type_print_varspec_prefix (type, stream, show, 0);
89
90 if (varstring != NULL)
91 {
92 fputs_filtered (varstring, stream);
93
94 /* For demangled function names, we have the arglist as part of the name,
c5aa993b 95 so don't print an additional pair of ()'s */
c906108c 96
c5aa993b 97 demangled_args = strchr (varstring, '(') != NULL;
c906108c
SS
98 c_type_print_varspec_suffix (type, stream, show, 0, demangled_args);
99 }
100}
c5aa993b 101
c906108c
SS
102/* If TYPE is a derived type, then print out derivation information.
103 Print only the actual base classes of this type, not the base classes
104 of the base classes. I.E. for the derivation hierarchy:
105
c5aa993b
JM
106 class A { int a; };
107 class B : public A {int b; };
108 class C : public B {int c; };
c906108c
SS
109
110 Print the type of class C as:
111
c5aa993b
JM
112 class C : public B {
113 int c;
114 }
c906108c
SS
115
116 Not as the following (like gdb used to), which is not legal C++ syntax for
117 derived types and may be confused with the multiple inheritance form:
118
c5aa993b
JM
119 class C : public B : public A {
120 int c;
121 }
c906108c
SS
122
123 In general, gdb should try to print the types as closely as possible to
124 the form that they appear in the source code.
125 Note that in case of protected derivation gcc will not say 'protected'
126 but 'private'. The HP's aCC compiler emits specific information for
127 derivation via protected inheritance, so gdb can print it out */
128
129static void
fba45db2 130cp_type_print_derivation_info (struct ui_file *stream, struct type *type)
c906108c
SS
131{
132 char *name;
133 int i;
134
135 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
136 {
137 fputs_filtered (i == 0 ? ": " : ", ", stream);
138 fprintf_filtered (stream, "%s%s ",
c5aa993b
JM
139 BASETYPE_VIA_PUBLIC (type, i) ? "public"
140 : (TYPE_FIELD_PROTECTED (type, i) ? "protected" : "private"),
141 BASETYPE_VIA_VIRTUAL (type, i) ? " virtual" : "");
c906108c
SS
142 name = type_name_no_tag (TYPE_BASECLASS (type, i));
143 fprintf_filtered (stream, "%s", name ? name : "(null)");
144 }
145 if (i > 0)
146 {
147 fputs_filtered (" ", stream);
148 }
149}
150/* Print the C++ method arguments ARGS to the file STREAM. */
c5aa993b 151
392a587b 152static void
fba45db2
KB
153cp_type_print_method_args (struct type **args, char *prefix, char *varstring,
154 int staticp, struct ui_file *stream)
c906108c
SS
155{
156 int i;
c5aa993b 157
c906108c
SS
158 fprintf_symbol_filtered (stream, prefix, language_cplus, DMGL_ANSI);
159 fprintf_symbol_filtered (stream, varstring, language_cplus, DMGL_ANSI);
160 fputs_filtered ("(", stream);
161 if (args && args[!staticp] && args[!staticp]->code != TYPE_CODE_VOID)
162 {
c5aa993b 163 i = !staticp; /* skip the class variable */
c906108c 164 while (1)
c5aa993b
JM
165 {
166 type_print (args[i++], "", stream, 0);
167 if (!args[i])
168 {
169 fprintf_filtered (stream, " ...");
170 break;
171 }
172 else if (args[i]->code != TYPE_CODE_VOID)
173 {
174 fprintf_filtered (stream, ", ");
175 }
176 else
177 break;
178 }
c906108c
SS
179 }
180 else if (current_language->la_language == language_cplus)
181 {
182 fprintf_filtered (stream, "void");
183 }
c5aa993b 184
c906108c
SS
185 fprintf_filtered (stream, ")");
186}
187
188
189/* Print any asterisks or open-parentheses needed before the
190 variable name (to describe its type).
191
192 On outermost call, pass 0 for PASSED_A_PTR.
193 On outermost call, SHOW > 0 means should ignore
194 any typename for TYPE and show its details.
195 SHOW is always zero on recursive calls. */
196
197void
fba45db2
KB
198c_type_print_varspec_prefix (struct type *type, struct ui_file *stream,
199 int show, int passed_a_ptr)
c906108c
SS
200{
201 char *name;
202 if (type == 0)
203 return;
204
205 if (TYPE_NAME (type) && show <= 0)
206 return;
207
208 QUIT;
209
210 switch (TYPE_CODE (type))
211 {
212 case TYPE_CODE_PTR:
213 c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, 0, 1);
214 fprintf_filtered (stream, "*");
47663de5 215 c_type_print_modifier (type, stream, 1, 0);
c906108c
SS
216 break;
217
218 case TYPE_CODE_MEMBER:
219 if (passed_a_ptr)
220 fprintf_filtered (stream, "(");
221 c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, 0, 0);
222 fprintf_filtered (stream, " ");
223 name = type_name_no_tag (TYPE_DOMAIN_TYPE (type));
224 if (name)
225 fputs_filtered (name, stream);
226 else
c5aa993b 227 c_type_print_base (TYPE_DOMAIN_TYPE (type), stream, 0, passed_a_ptr);
c906108c
SS
228 fprintf_filtered (stream, "::");
229 break;
230
231 case TYPE_CODE_METHOD:
232 if (passed_a_ptr)
233 fprintf_filtered (stream, "(");
234 c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, 0, 0);
235 if (passed_a_ptr)
236 {
237 fprintf_filtered (stream, " ");
238 c_type_print_base (TYPE_DOMAIN_TYPE (type), stream, 0, passed_a_ptr);
239 fprintf_filtered (stream, "::");
240 }
241 break;
242
243 case TYPE_CODE_REF:
244 c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, 0, 1);
245 fprintf_filtered (stream, "&");
47663de5 246 c_type_print_modifier (type, stream, 1, 0);
c906108c
SS
247 break;
248
249 case TYPE_CODE_FUNC:
250 c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, 0, 0);
251 if (passed_a_ptr)
252 fprintf_filtered (stream, "(");
253 break;
254
255 case TYPE_CODE_ARRAY:
256 c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, 0, 0);
257 if (passed_a_ptr)
258 fprintf_filtered (stream, "(");
259 break;
260
261 case TYPE_CODE_UNDEF:
262 case TYPE_CODE_STRUCT:
263 case TYPE_CODE_UNION:
264 case TYPE_CODE_ENUM:
265 case TYPE_CODE_INT:
266 case TYPE_CODE_FLT:
267 case TYPE_CODE_VOID:
268 case TYPE_CODE_ERROR:
269 case TYPE_CODE_CHAR:
270 case TYPE_CODE_BOOL:
271 case TYPE_CODE_SET:
272 case TYPE_CODE_RANGE:
273 case TYPE_CODE_STRING:
274 case TYPE_CODE_BITSTRING:
275 case TYPE_CODE_COMPLEX:
276 case TYPE_CODE_TYPEDEF:
c4093a6a 277 case TYPE_CODE_TEMPLATE:
c906108c 278 /* These types need no prefix. They are listed here so that
c5aa993b 279 gcc -Wall will reveal any types that haven't been handled. */
c906108c 280 break;
c4093a6a
JM
281 default:
282 error ("type not handled in c_type_print_varspec_prefix()");
283 break;
c906108c
SS
284 }
285}
286
287/* Print out "const" and "volatile" attributes.
288 TYPE is a pointer to the type being printed out.
289 STREAM is the output destination.
290 NEED_SPACE = 1 indicates an initial white space is needed */
291
292static void
47663de5
MS
293c_type_print_modifier (struct type *type, struct ui_file *stream,
294 int need_pre_space, int need_post_space)
c906108c 295{
47663de5
MS
296 int did_print_modifier = 0;
297 char *address_space_id;
c5aa993b 298
7f0b5c30
JB
299 /* We don't print `const' qualifiers for references --- since all
300 operators affect the thing referenced, not the reference itself,
301 every reference is `const'. */
302 if (TYPE_CONST (type)
303 && TYPE_CODE (type) != TYPE_CODE_REF)
c906108c
SS
304 {
305 if (need_pre_space)
c5aa993b 306 fprintf_filtered (stream, " ");
c906108c 307 fprintf_filtered (stream, "const");
47663de5 308 did_print_modifier = 1;
c906108c 309 }
c5aa993b 310
c906108c
SS
311 if (TYPE_VOLATILE (type))
312 {
47663de5 313 if (did_print_modifier || need_pre_space)
c5aa993b 314 fprintf_filtered (stream, " ");
c906108c 315 fprintf_filtered (stream, "volatile");
47663de5 316 did_print_modifier = 1;
c906108c
SS
317 }
318
47663de5
MS
319 address_space_id = address_space_int_to_name (TYPE_FLAGS (type));
320 if (address_space_id)
321 {
322 if (did_print_modifier || need_pre_space)
323 fprintf_filtered (stream, " ");
324 fprintf_filtered (stream, "@%s", address_space_id);
325 did_print_modifier = 1;
326 }
327
328 if (did_print_modifier && need_post_space)
c906108c
SS
329 fprintf_filtered (stream, " ");
330}
331
332
333
334
335static void
fba45db2 336c_type_print_args (struct type *type, struct ui_file *stream)
c906108c
SS
337{
338 int i;
339 struct type **args;
340
341 fprintf_filtered (stream, "(");
342 args = TYPE_ARG_TYPES (type);
343 if (args != NULL)
344 {
345 if (args[1] == NULL)
346 {
347 fprintf_filtered (stream, "...");
348 }
349 else if ((args[1]->code == TYPE_CODE_VOID) &&
c5aa993b
JM
350 (current_language->la_language == language_cplus))
351 {
352 fprintf_filtered (stream, "void");
353 }
c906108c
SS
354 else
355 {
356 for (i = 1;
357 args[i] != NULL && args[i]->code != TYPE_CODE_VOID;
358 i++)
359 {
360 c_print_type (args[i], "", stream, -1, 0);
c5aa993b 361 if (args[i + 1] == NULL)
c906108c
SS
362 {
363 fprintf_filtered (stream, "...");
364 }
c5aa993b 365 else if (args[i + 1]->code != TYPE_CODE_VOID)
c906108c
SS
366 {
367 fprintf_filtered (stream, ",");
368 wrap_here (" ");
369 }
370 }
371 }
372 }
373 else if (current_language->la_language == language_cplus)
374 {
375 fprintf_filtered (stream, "void");
376 }
c5aa993b 377
c906108c
SS
378 fprintf_filtered (stream, ")");
379}
380
dfcd3bfb
JM
381
382/* Return true iff the j'th overloading of the i'th method of TYPE
383 is a type conversion operator, like `operator int () { ... }'.
384 When listing a class's methods, we don't print the return type of
385 such operators. */
386static int
387is_type_conversion_operator (struct type *type, int i, int j)
388{
389 /* I think the whole idea of recognizing type conversion operators
390 by their name is pretty terrible. But I don't think our present
391 data structure gives us any other way to tell. If you know of
392 some other way, feel free to rewrite this function. */
393 char *name = TYPE_FN_FIELDLIST_NAME (type, i);
394
395 if (strncmp (name, "operator", 8) != 0)
396 return 0;
397
398 name += 8;
399 if (! strchr (" \t\f\n\r", *name))
400 return 0;
401
402 while (strchr (" \t\f\n\r", *name))
403 name++;
404
405 if (strncmp (name, "new", 3) == 0)
406 name += 3;
407 else if (strncmp (name, "delete", 6) == 0)
408 name += 6;
409 else
39c22d1a
JM
410 /* If it doesn't look like new or delete, it's a type conversion
411 operator. */
412 return 1;
dfcd3bfb
JM
413
414 /* Is that really the end of the name? */
415 if (('a' <= *name && *name <= 'z')
416 || ('A' <= *name && *name <= 'Z')
417 || ('0' <= *name && *name <= '9')
418 || *name == '_')
419 /* No, so the identifier following "operator" must be a type name,
420 and this is a type conversion operator. */
421 return 1;
422
423 /* That was indeed the end of the name, so it was `operator new' or
424 `operator delete', neither of which are type conversion operators. */
425 return 0;
426}
427
428
429/* Given a C++ qualified identifier QID, strip off the qualifiers,
430 yielding the unqualified name. The return value is a pointer into
431 the original string.
432
433 It's a pity we don't have this information in some more structured
434 form. Even the author of this function feels that writing little
435 parsers like this everywhere is stupid. */
436static char *
437remove_qualifiers (char *qid)
438{
439 int quoted = 0; /* zero if we're not in quotes;
440 '"' if we're in a double-quoted string;
441 '\'' if we're in a single-quoted string. */
442 int depth = 0; /* number of unclosed parens we've seen */
443 char *parenstack = (char *) alloca (strlen (qid));
444 char *scan;
445 char *last = 0; /* The character after the rightmost
446 `::' token we've seen so far. */
447
448 for (scan = qid; *scan; scan++)
449 {
450 if (quoted)
451 {
452 if (*scan == quoted)
453 quoted = 0;
454 else if (*scan == '\\' && *(scan + 1))
455 scan++;
456 }
457 else if (scan[0] == ':' && scan[1] == ':')
458 {
459 /* If we're inside parenthesis (i.e., an argument list) or
460 angle brackets (i.e., a list of template arguments), then
461 we don't record the position of this :: token, since it's
462 not relevant to the top-level structure we're trying
463 to operate on. */
464 if (depth == 0)
465 {
466 last = scan + 2;
467 scan++;
468 }
469 }
470 else if (*scan == '"' || *scan == '\'')
471 quoted = *scan;
472 else if (*scan == '(')
473 parenstack[depth++] = ')';
474 else if (*scan == '[')
475 parenstack[depth++] = ']';
476 /* We're going to treat <> as a pair of matching characters,
477 since we're more likely to see those in template id's than
478 real less-than characters. What a crock. */
479 else if (*scan == '<')
480 parenstack[depth++] = '>';
481 else if (*scan == ')' || *scan == ']' || *scan == '>')
482 {
483 if (depth > 0 && parenstack[depth - 1] == *scan)
484 depth--;
485 else
486 {
487 /* We're going to do a little error recovery here. If we
488 don't find a match for *scan on the paren stack, but
489 there is something lower on the stack that does match, we
490 pop the stack to that point. */
491 int i;
492
493 for (i = depth - 1; i >= 0; i--)
494 if (parenstack[i] == *scan)
495 {
496 depth = i;
497 break;
498 }
499 }
500 }
501 }
502
503 if (last)
504 return last;
505 else
506 /* We didn't find any :: tokens at the top level, so declare the
507 whole thing an unqualified identifier. */
508 return qid;
509}
510
511
c906108c
SS
512/* Print any array sizes, function arguments or close parentheses
513 needed after the variable name (to describe its type).
514 Args work like c_type_print_varspec_prefix. */
515
516void
fba45db2
KB
517c_type_print_varspec_suffix (struct type *type, struct ui_file *stream,
518 int show, int passed_a_ptr, int demangled_args)
c906108c
SS
519{
520 if (type == 0)
521 return;
522
523 if (TYPE_NAME (type) && show <= 0)
524 return;
525
526 QUIT;
527
528 switch (TYPE_CODE (type))
529 {
530 case TYPE_CODE_ARRAY:
531 if (passed_a_ptr)
532 fprintf_filtered (stream, ")");
c5aa993b 533
c906108c
SS
534 fprintf_filtered (stream, "[");
535 if (TYPE_LENGTH (type) >= 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type)) > 0
c5aa993b 536 && TYPE_ARRAY_UPPER_BOUND_TYPE (type) != BOUND_CANNOT_BE_DETERMINED)
c906108c
SS
537 fprintf_filtered (stream, "%d",
538 (TYPE_LENGTH (type)
539 / TYPE_LENGTH (TYPE_TARGET_TYPE (type))));
540 fprintf_filtered (stream, "]");
c5aa993b 541
c906108c
SS
542 c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, 0, 0, 0);
543 break;
544
545 case TYPE_CODE_MEMBER:
546 if (passed_a_ptr)
547 fprintf_filtered (stream, ")");
548 c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, 0, 0, 0);
549 break;
550
551 case TYPE_CODE_METHOD:
552 if (passed_a_ptr)
553 fprintf_filtered (stream, ")");
554 c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, 0, 0, 0);
555 if (passed_a_ptr)
556 {
557 c_type_print_args (type, stream);
558 }
559 break;
560
561 case TYPE_CODE_PTR:
562 case TYPE_CODE_REF:
563 c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, 0, 1, 0);
564 break;
565
566 case TYPE_CODE_FUNC:
567 if (passed_a_ptr)
568 fprintf_filtered (stream, ")");
569 if (!demangled_args)
c5aa993b
JM
570 {
571 int i, len = TYPE_NFIELDS (type);
c906108c 572 fprintf_filtered (stream, "(");
c5aa993b
JM
573 if ((len == 0) && (current_language->la_language == language_cplus))
574 {
575 fprintf_filtered (stream, "void");
576 }
577 else
578 for (i = 0; i < len; i++)
579 {
580 if (i > 0)
581 {
582 fputs_filtered (", ", stream);
583 wrap_here (" ");
584 }
585 c_print_type (TYPE_FIELD_TYPE (type, i), "", stream, -1, 0);
586 }
c906108c
SS
587 fprintf_filtered (stream, ")");
588 }
589 c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, 0,
590 passed_a_ptr, 0);
591 break;
592
593 case TYPE_CODE_UNDEF:
594 case TYPE_CODE_STRUCT:
595 case TYPE_CODE_UNION:
596 case TYPE_CODE_ENUM:
597 case TYPE_CODE_INT:
598 case TYPE_CODE_FLT:
599 case TYPE_CODE_VOID:
600 case TYPE_CODE_ERROR:
601 case TYPE_CODE_CHAR:
602 case TYPE_CODE_BOOL:
603 case TYPE_CODE_SET:
604 case TYPE_CODE_RANGE:
605 case TYPE_CODE_STRING:
606 case TYPE_CODE_BITSTRING:
607 case TYPE_CODE_COMPLEX:
608 case TYPE_CODE_TYPEDEF:
c4093a6a 609 case TYPE_CODE_TEMPLATE:
c906108c 610 /* These types do not need a suffix. They are listed so that
c5aa993b 611 gcc -Wall will report types that may not have been considered. */
c906108c 612 break;
c4093a6a
JM
613 default:
614 error ("type not handled in c_type_print_varspec_suffix()");
615 break;
c906108c
SS
616 }
617}
618
619/* Print the name of the type (or the ultimate pointer target,
620 function value or array element), or the description of a
621 structure or union.
622
623 SHOW positive means print details about the type (e.g. enum values),
624 and print structure elements passing SHOW - 1 for show.
625 SHOW negative means just print the type name or struct tag if there is one.
626 If there is no name, print something sensible but concise like
627 "struct {...}".
628 SHOW zero means just print the type name or struct tag if there is one.
629 If there is no name, print something sensible but not as concise like
630 "struct {int x; int y;}".
631
632 LEVEL is the number of spaces to indent by.
633 We increase it for some recursive calls. */
634
635void
fba45db2
KB
636c_type_print_base (struct type *type, struct ui_file *stream, int show,
637 int level)
c906108c
SS
638{
639 register int i;
640 register int len;
641 register int lastval;
642 char *mangled_name;
643 char *demangled_name;
644 char *demangled_no_static;
c5aa993b
JM
645 enum
646 {
647 s_none, s_public, s_private, s_protected
648 }
649 section_type;
c906108c
SS
650 int need_access_label = 0;
651 int j, len2;
652
653 QUIT;
654
655 wrap_here (" ");
656 if (type == NULL)
657 {
658 fputs_filtered ("<type unknown>", stream);
659 return;
660 }
661
662 /* When SHOW is zero or less, and there is a valid type name, then always
663 just print the type name directly from the type. */
664 /* If we have "typedef struct foo {. . .} bar;" do we want to print it
665 as "struct foo" or as "bar"? Pick the latter, because C++ folk tend
666 to expect things like "class5 *foo" rather than "struct class5 *foo". */
667
668 if (show <= 0
669 && TYPE_NAME (type) != NULL)
670 {
47663de5 671 c_type_print_modifier (type, stream, 0, 1);
c906108c
SS
672 fputs_filtered (TYPE_NAME (type), stream);
673 return;
674 }
675
676 CHECK_TYPEDEF (type);
c5aa993b 677
c906108c
SS
678 switch (TYPE_CODE (type))
679 {
680 case TYPE_CODE_TYPEDEF:
681 case TYPE_CODE_ARRAY:
682 case TYPE_CODE_PTR:
683 case TYPE_CODE_MEMBER:
684 case TYPE_CODE_REF:
685 case TYPE_CODE_FUNC:
686 case TYPE_CODE_METHOD:
687 c_type_print_base (TYPE_TARGET_TYPE (type), stream, show, level);
688 break;
689
690 case TYPE_CODE_STRUCT:
47663de5 691 c_type_print_modifier (type, stream, 0, 1);
c906108c
SS
692 /* Note TYPE_CODE_STRUCT and TYPE_CODE_CLASS have the same value,
693 * so we use another means for distinguishing them.
694 */
c5aa993b
JM
695 if (HAVE_CPLUS_STRUCT (type))
696 {
697 switch (TYPE_DECLARED_TYPE (type))
698 {
699 case DECLARED_TYPE_CLASS:
700 fprintf_filtered (stream, "class ");
701 break;
702 case DECLARED_TYPE_UNION:
703 fprintf_filtered (stream, "union ");
704 break;
705 case DECLARED_TYPE_STRUCT:
706 fprintf_filtered (stream, "struct ");
707 break;
708 default:
709 /* If there is a CPLUS_STRUCT, assume class if not
710 * otherwise specified in the declared_type field.
711 */
712 fprintf_filtered (stream, "class ");
713 break;
714 } /* switch */
715 }
716 else
717 {
718 /* If not CPLUS_STRUCT, then assume it's a C struct */
719 fprintf_filtered (stream, "struct ");
720 }
c906108c
SS
721 goto struct_union;
722
723 case TYPE_CODE_UNION:
47663de5 724 c_type_print_modifier (type, stream, 0, 1);
c906108c
SS
725 fprintf_filtered (stream, "union ");
726
727 struct_union:
728
729 /* Print the tag if it exists.
730 * The HP aCC compiler emits
731 * a spurious "{unnamed struct}"/"{unnamed union}"/"{unnamed enum}"
732 * tag for unnamed struct/union/enum's, which we don't
733 * want to print.
734 */
735 if (TYPE_TAG_NAME (type) != NULL &&
c5aa993b 736 strncmp (TYPE_TAG_NAME (type), "{unnamed", 8))
c906108c
SS
737 {
738 fputs_filtered (TYPE_TAG_NAME (type), stream);
739 if (show > 0)
740 fputs_filtered (" ", stream);
741 }
742 wrap_here (" ");
743 if (show < 0)
744 {
745 /* If we just printed a tag name, no need to print anything else. */
746 if (TYPE_TAG_NAME (type) == NULL)
747 fprintf_filtered (stream, "{...}");
748 }
749 else if (show > 0 || TYPE_TAG_NAME (type) == NULL)
750 {
751 cp_type_print_derivation_info (stream, type);
c5aa993b 752
c906108c
SS
753 fprintf_filtered (stream, "{\n");
754 if ((TYPE_NFIELDS (type) == 0) && (TYPE_NFN_FIELDS (type) == 0))
755 {
74a9bb82 756 if (TYPE_STUB (type))
c906108c
SS
757 fprintfi_filtered (level + 4, stream, "<incomplete type>\n");
758 else
759 fprintfi_filtered (level + 4, stream, "<no data fields>\n");
760 }
761
762 /* Start off with no specific section type, so we can print
763 one for the first field we find, and use that section type
764 thereafter until we find another type. */
765
766 section_type = s_none;
767
c5aa993b
JM
768 /* For a class, if all members are private, there's no need
769 for a "private:" label; similarly, for a struct or union
770 masquerading as a class, if all members are public, there's
771 no need for a "public:" label. */
772
773 if ((TYPE_DECLARED_TYPE (type) == DECLARED_TYPE_CLASS) ||
774 (TYPE_DECLARED_TYPE (type) == DECLARED_TYPE_TEMPLATE))
775 {
776 QUIT;
777 len = TYPE_NFIELDS (type);
778 for (i = TYPE_N_BASECLASSES (type); i < len; i++)
779 if (!TYPE_FIELD_PRIVATE (type, i))
780 {
781 need_access_label = 1;
782 break;
783 }
784 QUIT;
785 if (!need_access_label)
786 {
787 len2 = TYPE_NFN_FIELDS (type);
788 for (j = 0; j < len2; j++)
789 {
790 len = TYPE_FN_FIELDLIST_LENGTH (type, j);
791 for (i = 0; i < len; i++)
792 if (!TYPE_FN_FIELD_PRIVATE (TYPE_FN_FIELDLIST1 (type, j), i))
793 {
794 need_access_label = 1;
795 break;
796 }
797 if (need_access_label)
798 break;
799 }
800 }
801 }
802 else if ((TYPE_DECLARED_TYPE (type) == DECLARED_TYPE_STRUCT) ||
803 (TYPE_DECLARED_TYPE (type) == DECLARED_TYPE_UNION))
804 {
805 QUIT;
806 len = TYPE_NFIELDS (type);
807 for (i = TYPE_N_BASECLASSES (type); i < len; i++)
808 if (TYPE_FIELD_PRIVATE (type, i) || TYPE_FIELD_PROTECTED (type, i))
809 {
810 need_access_label = 1;
811 break;
812 }
813 QUIT;
814 if (!need_access_label)
815 {
816 len2 = TYPE_NFN_FIELDS (type);
817 for (j = 0; j < len2; j++)
818 {
819 QUIT;
820 len = TYPE_FN_FIELDLIST_LENGTH (type, j);
821 for (i = 0; i < len; i++)
822 if (TYPE_FN_FIELD_PRIVATE (TYPE_FN_FIELDLIST1 (type, j), i) ||
823 TYPE_FN_FIELD_PROTECTED (TYPE_FN_FIELDLIST1 (type, j), i))
824 {
825 need_access_label = 1;
826 break;
827 }
828 if (need_access_label)
829 break;
830 }
831 }
832 }
c906108c
SS
833
834 /* If there is a base class for this type,
835 do not print the field that it occupies. */
836
837 len = TYPE_NFIELDS (type);
838 for (i = TYPE_N_BASECLASSES (type); i < len; i++)
839 {
840 QUIT;
841 /* Don't print out virtual function table. */
c5aa993b
JM
842 /* HP ANSI C++ case */
843 if (TYPE_HAS_VTABLE (type) && (STREQN (TYPE_FIELD_NAME (type, i), "__vfp", 5)))
844 continue;
845 /* Other compilers */
c906108c
SS
846 if (STREQN (TYPE_FIELD_NAME (type, i), "_vptr", 5)
847 && is_cplus_marker ((TYPE_FIELD_NAME (type, i))[5]))
848 continue;
849
850 /* If this is a C++ class we can print the various C++ section
c5aa993b 851 labels. */
c906108c
SS
852
853 if (HAVE_CPLUS_STRUCT (type) && need_access_label)
854 {
855 if (TYPE_FIELD_PROTECTED (type, i))
856 {
857 if (section_type != s_protected)
858 {
859 section_type = s_protected;
860 fprintfi_filtered (level + 2, stream,
861 "protected:\n");
862 }
863 }
864 else if (TYPE_FIELD_PRIVATE (type, i))
865 {
866 if (section_type != s_private)
867 {
868 section_type = s_private;
869 fprintfi_filtered (level + 2, stream, "private:\n");
870 }
871 }
872 else
873 {
874 if (section_type != s_public)
875 {
876 section_type = s_public;
877 fprintfi_filtered (level + 2, stream, "public:\n");
878 }
879 }
880 }
881
882 print_spaces_filtered (level + 4, stream);
883 if (TYPE_FIELD_STATIC (type, i))
884 {
885 fprintf_filtered (stream, "static ");
886 }
887 c_print_type (TYPE_FIELD_TYPE (type, i),
888 TYPE_FIELD_NAME (type, i),
889 stream, show - 1, level + 4);
890 if (!TYPE_FIELD_STATIC (type, i)
891 && TYPE_FIELD_PACKED (type, i))
892 {
893 /* It is a bitfield. This code does not attempt
894 to look at the bitpos and reconstruct filler,
895 unnamed fields. This would lead to misleading
896 results if the compiler does not put out fields
897 for such things (I don't know what it does). */
898 fprintf_filtered (stream, " : %d",
899 TYPE_FIELD_BITSIZE (type, i));
900 }
901 fprintf_filtered (stream, ";\n");
902 }
903
904 /* If there are both fields and methods, put a space between. */
905 len = TYPE_NFN_FIELDS (type);
906 if (len && section_type != s_none)
c5aa993b 907 fprintf_filtered (stream, "\n");
c906108c
SS
908
909 /* C++: print out the methods */
910 for (i = 0; i < len; i++)
911 {
912 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
913 int j, len2 = TYPE_FN_FIELDLIST_LENGTH (type, i);
914 char *method_name = TYPE_FN_FIELDLIST_NAME (type, i);
915 char *name = type_name_no_tag (type);
c5aa993b 916 int is_constructor = name && STREQ (method_name, name);
c906108c
SS
917 for (j = 0; j < len2; j++)
918 {
919 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
c5aa993b 920 int is_full_physname_constructor =
015a42b4
JB
921 is_constructor_name (physname)
922 || is_destructor_name (physname)
923 || method_name[0] == '~';
924
c906108c
SS
925
926 QUIT;
927 if (TYPE_FN_FIELD_PROTECTED (f, j))
928 {
929 if (section_type != s_protected)
930 {
931 section_type = s_protected;
932 fprintfi_filtered (level + 2, stream,
933 "protected:\n");
934 }
935 }
936 else if (TYPE_FN_FIELD_PRIVATE (f, j))
937 {
938 if (section_type != s_private)
939 {
940 section_type = s_private;
941 fprintfi_filtered (level + 2, stream, "private:\n");
942 }
943 }
944 else
945 {
946 if (section_type != s_public)
947 {
948 section_type = s_public;
949 fprintfi_filtered (level + 2, stream, "public:\n");
950 }
951 }
952
953 print_spaces_filtered (level + 4, stream);
954 if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
955 fprintf_filtered (stream, "virtual ");
956 else if (TYPE_FN_FIELD_STATIC_P (f, j))
957 fprintf_filtered (stream, "static ");
958 if (TYPE_TARGET_TYPE (TYPE_FN_FIELD_TYPE (f, j)) == 0)
959 {
960 /* Keep GDB from crashing here. */
961 fprintf_filtered (stream, "<undefined type> %s;\n",
c5aa993b 962 TYPE_FN_FIELD_PHYSNAME (f, j));
c906108c
SS
963 break;
964 }
c5aa993b
JM
965 else if (!is_constructor && /* constructors don't have declared types */
966 !is_full_physname_constructor && /* " " */
dfcd3bfb 967 !is_type_conversion_operator (type, i, j))
c906108c
SS
968 {
969 type_print (TYPE_TARGET_TYPE (TYPE_FN_FIELD_TYPE (f, j)),
970 "", stream, -1);
971 fputs_filtered (" ", stream);
972 }
973 if (TYPE_FN_FIELD_STUB (f, j))
974 /* Build something we can demangle. */
975 mangled_name = gdb_mangle_name (type, i, j);
976 else
977 mangled_name = TYPE_FN_FIELD_PHYSNAME (f, j);
978
979 demangled_name =
980 cplus_demangle (mangled_name,
981 DMGL_ANSI | DMGL_PARAMS);
982 if (demangled_name == NULL)
983 {
984 /* in some cases (for instance with the HP demangling),
c5aa993b
JM
985 if a function has more than 10 arguments,
986 the demangling will fail.
987 Let's try to reconstruct the function signature from
988 the symbol information */
c906108c
SS
989 if (!TYPE_FN_FIELD_STUB (f, j))
990 cp_type_print_method_args (TYPE_FN_FIELD_ARGS (f, j), "",
991 method_name,
c5aa993b 992 TYPE_FN_FIELD_STATIC_P (f, j),
c906108c
SS
993 stream);
994 else
995 fprintf_filtered (stream, "<badly mangled name '%s'>",
996 mangled_name);
997 }
998 else
999 {
1000 char *p;
dfcd3bfb
JM
1001 char *demangled_no_class
1002 = remove_qualifiers (demangled_name);
c5aa993b 1003
dfcd3bfb 1004 /* get rid of the `static' appended by the demangler */
c906108c
SS
1005 p = strstr (demangled_no_class, " static");
1006 if (p != NULL)
1007 {
1008 int length = p - demangled_no_class;
1009 demangled_no_static = (char *) xmalloc (length + 1);
1010 strncpy (demangled_no_static, demangled_no_class, length);
c5aa993b 1011 *(demangled_no_static + length) = '\0';
c906108c 1012 fputs_filtered (demangled_no_static, stream);
b8c9b27d 1013 xfree (demangled_no_static);
c906108c
SS
1014 }
1015 else
1016 fputs_filtered (demangled_no_class, stream);
b8c9b27d 1017 xfree (demangled_name);
c906108c
SS
1018 }
1019
1020 if (TYPE_FN_FIELD_STUB (f, j))
b8c9b27d 1021 xfree (mangled_name);
c906108c
SS
1022
1023 fprintf_filtered (stream, ";\n");
1024 }
1025 }
1026
c4093a6a
JM
1027 fprintfi_filtered (level, stream, "}");
1028
c5aa993b
JM
1029 if (TYPE_LOCALTYPE_PTR (type) && show >= 0)
1030 fprintfi_filtered (level, stream, " (Local at %s:%d)\n",
1031 TYPE_LOCALTYPE_FILE (type),
1032 TYPE_LOCALTYPE_LINE (type));
c906108c 1033 }
c5aa993b
JM
1034 if (TYPE_CODE (type) == TYPE_CODE_TEMPLATE)
1035 goto go_back;
c906108c
SS
1036 break;
1037
1038 case TYPE_CODE_ENUM:
47663de5 1039 c_type_print_modifier (type, stream, 0, 1);
c906108c
SS
1040 /* HP C supports sized enums */
1041 if (hp_som_som_object_present)
c5aa993b
JM
1042 switch (TYPE_LENGTH (type))
1043 {
1044 case 1:
1045 fputs_filtered ("char ", stream);
1046 break;
1047 case 2:
1048 fputs_filtered ("short ", stream);
1049 break;
1050 default:
1051 break;
1052 }
1053 fprintf_filtered (stream, "enum ");
c906108c
SS
1054 /* Print the tag name if it exists.
1055 The aCC compiler emits a spurious
1056 "{unnamed struct}"/"{unnamed union}"/"{unnamed enum}"
1057 tag for unnamed struct/union/enum's, which we don't
1058 want to print. */
1059 if (TYPE_TAG_NAME (type) != NULL &&
c5aa993b 1060 strncmp (TYPE_TAG_NAME (type), "{unnamed", 8))
c906108c
SS
1061 {
1062 fputs_filtered (TYPE_TAG_NAME (type), stream);
1063 if (show > 0)
1064 fputs_filtered (" ", stream);
1065 }
1066
1067 wrap_here (" ");
1068 if (show < 0)
1069 {
1070 /* If we just printed a tag name, no need to print anything else. */
1071 if (TYPE_TAG_NAME (type) == NULL)
1072 fprintf_filtered (stream, "{...}");
1073 }
1074 else if (show > 0 || TYPE_TAG_NAME (type) == NULL)
1075 {
1076 fprintf_filtered (stream, "{");
1077 len = TYPE_NFIELDS (type);
1078 lastval = 0;
1079 for (i = 0; i < len; i++)
1080 {
1081 QUIT;
c5aa993b
JM
1082 if (i)
1083 fprintf_filtered (stream, ", ");
c906108c
SS
1084 wrap_here (" ");
1085 fputs_filtered (TYPE_FIELD_NAME (type, i), stream);
1086 if (lastval != TYPE_FIELD_BITPOS (type, i))
1087 {
1088 fprintf_filtered (stream, " = %d", TYPE_FIELD_BITPOS (type, i));
1089 lastval = TYPE_FIELD_BITPOS (type, i);
1090 }
1091 lastval++;
1092 }
1093 fprintf_filtered (stream, "}");
1094 }
1095 break;
1096
1097 case TYPE_CODE_VOID:
1098 fprintf_filtered (stream, "void");
1099 break;
1100
1101 case TYPE_CODE_UNDEF:
1102 fprintf_filtered (stream, "struct <unknown>");
1103 break;
1104
1105 case TYPE_CODE_ERROR:
1106 fprintf_filtered (stream, "<unknown type>");
1107 break;
1108
1109 case TYPE_CODE_RANGE:
1110 /* This should not occur */
1111 fprintf_filtered (stream, "<range type>");
1112 break;
1113
1114 case TYPE_CODE_TEMPLATE:
1115 /* Called on "ptype t" where "t" is a template.
1116 Prints the template header (with args), e.g.:
c5aa993b 1117 template <class T1, class T2> class "
c906108c
SS
1118 and then merges with the struct/union/class code to
1119 print the rest of the definition. */
47663de5 1120 c_type_print_modifier (type, stream, 0, 1);
c906108c 1121 fprintf_filtered (stream, "template <");
c5aa993b
JM
1122 for (i = 0; i < TYPE_NTEMPLATE_ARGS (type); i++)
1123 {
1124 struct template_arg templ_arg;
1125 templ_arg = TYPE_TEMPLATE_ARG (type, i);
1126 fprintf_filtered (stream, "class %s", templ_arg.name);
1127 if (i < TYPE_NTEMPLATE_ARGS (type) - 1)
1128 fprintf_filtered (stream, ", ");
1129 }
c906108c
SS
1130 fprintf_filtered (stream, "> class ");
1131 /* Yuck, factor this out to a subroutine so we can call
1132 it and return to the point marked with the "goback:" label... - RT */
c5aa993b
JM
1133 goto struct_union;
1134 go_back:
1135 if (TYPE_NINSTANTIATIONS (type) > 0)
1136 {
1137 fprintf_filtered (stream, "\ntemplate instantiations:\n");
1138 for (i = 0; i < TYPE_NINSTANTIATIONS (type); i++)
1139 {
1140 fprintf_filtered (stream, " ");
1141 c_type_print_base (TYPE_INSTANTIATION (type, i), stream, 0, level);
1142 if (i < TYPE_NINSTANTIATIONS (type) - 1)
1143 fprintf_filtered (stream, "\n");
1144 }
1145 }
c906108c 1146 break;
c5aa993b 1147
c906108c
SS
1148 default:
1149 /* Handle types not explicitly handled by the other cases,
c5aa993b
JM
1150 such as fundamental types. For these, just print whatever
1151 the type name is, as recorded in the type itself. If there
1152 is no type name, then complain. */
c906108c
SS
1153 if (TYPE_NAME (type) != NULL)
1154 {
47663de5 1155 c_type_print_modifier (type, stream, 0, 1);
c906108c
SS
1156 fputs_filtered (TYPE_NAME (type), stream);
1157 }
1158 else
1159 {
1160 /* At least for dump_symtab, it is important that this not be
1161 an error (). */
1162 fprintf_filtered (stream, "<invalid type code %d>",
1163 TYPE_CODE (type));
1164 }
1165 break;
1166 }
1167}