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