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