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