Merged with mainline at revision 128810.
[official-gcc.git] / gcc / cp / error.c
blob602426a79a1477b39fa477f5b3e1826c742c5899
1 /* Call-backs for C++ error reporting.
2 This code is non-reentrant.
3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002,
4 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC 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, or (at your option)
10 any later version.
12 GCC 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.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "cp-tree.h"
27 #include "real.h"
28 #include "toplev.h"
29 #include "flags.h"
30 #include "diagnostic.h"
31 #include "langhooks-def.h"
32 #include "cxx-pretty-print.h"
34 #define pp_separate_with_comma(PP) pp_cxx_separate_with (PP, ',')
36 /* The global buffer where we dump everything. It is there only for
37 transitional purpose. It is expected, in the near future, to be
38 completely removed. */
39 static cxx_pretty_printer scratch_pretty_printer;
40 #define cxx_pp (&scratch_pretty_printer)
42 # define NEXT_CODE(T) (TREE_CODE (TREE_TYPE (T)))
44 static const char *args_to_string (tree, int);
45 static const char *assop_to_string (enum tree_code);
46 static const char *code_to_string (enum tree_code);
47 static const char *cv_to_string (tree, int);
48 static const char *decl_to_string (tree, int);
49 static const char *expr_to_string (tree);
50 static const char *fndecl_to_string (tree, int);
51 static const char *op_to_string (enum tree_code);
52 static const char *parm_to_string (int);
53 static const char *type_to_string (tree, int);
55 static void dump_type (tree, int);
56 static void dump_typename (tree, int);
57 static void dump_simple_decl (tree, tree, int);
58 static void dump_decl (tree, int);
59 static void dump_template_decl (tree, int);
60 static void dump_function_decl (tree, int);
61 static void dump_expr (tree, int);
62 static void dump_unary_op (const char *, tree, int);
63 static void dump_binary_op (const char *, tree, int);
64 static void dump_aggr_type (tree, int);
65 static void dump_type_prefix (tree, int);
66 static void dump_type_suffix (tree, int);
67 static void dump_function_name (tree, int);
68 static void dump_call_expr_args (tree, int, bool);
69 static void dump_aggr_init_expr_args (tree, int, bool);
70 static void dump_expr_list (tree, int);
71 static void dump_global_iord (tree);
72 static void dump_parameters (tree, int);
73 static void dump_exception_spec (tree, int);
74 static void dump_template_argument (tree, int);
75 static void dump_template_argument_list (tree, int);
76 static void dump_template_parameter (tree, int);
77 static void dump_template_bindings (tree, tree);
78 static void dump_scope (tree, int);
79 static void dump_template_parms (tree, int, int);
81 static const char *function_category (tree);
82 static void maybe_print_instantiation_context (diagnostic_context *);
83 static void print_instantiation_full_context (diagnostic_context *);
84 static void print_instantiation_partial_context (diagnostic_context *,
85 struct tinst_level *,
86 location_t);
87 static void cp_diagnostic_starter (diagnostic_context *, diagnostic_info *);
88 static void cp_diagnostic_finalizer (diagnostic_context *, diagnostic_info *);
89 static void cp_print_error_function (diagnostic_context *, diagnostic_info *);
91 static bool cp_printer (pretty_printer *, text_info *, const char *,
92 int, bool, bool, bool);
93 static location_t location_of (tree);
95 void
96 init_error (void)
98 diagnostic_starter (global_dc) = cp_diagnostic_starter;
99 diagnostic_finalizer (global_dc) = cp_diagnostic_finalizer;
100 diagnostic_format_decoder (global_dc) = cp_printer;
102 pp_construct (pp_base (cxx_pp), NULL, 0);
103 pp_cxx_pretty_printer_init (cxx_pp);
106 /* Dump a scope, if deemed necessary. */
108 static void
109 dump_scope (tree scope, int flags)
111 int f = ~TFF_RETURN_TYPE & (flags & (TFF_SCOPE | TFF_CHASE_TYPEDEF));
113 if (scope == NULL_TREE)
114 return;
116 if (TREE_CODE (scope) == NAMESPACE_DECL)
118 if (scope != global_namespace)
120 dump_decl (scope, f);
121 pp_cxx_colon_colon (cxx_pp);
124 else if (AGGREGATE_TYPE_P (scope))
126 dump_type (scope, f);
127 pp_cxx_colon_colon (cxx_pp);
129 else if ((flags & TFF_SCOPE) && TREE_CODE (scope) == FUNCTION_DECL)
131 dump_function_decl (scope, f);
132 pp_cxx_colon_colon (cxx_pp);
136 /* Dump the template ARGument under control of FLAGS. */
138 static void
139 dump_template_argument (tree arg, int flags)
141 if (ARGUMENT_PACK_P (arg))
142 dump_template_argument_list (ARGUMENT_PACK_ARGS (arg), flags);
143 else if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
144 dump_type (arg, flags & ~TFF_CLASS_KEY_OR_ENUM);
145 else
146 dump_expr (arg, (flags | TFF_EXPR_IN_PARENS) & ~TFF_CLASS_KEY_OR_ENUM);
149 /* Dump a template-argument-list ARGS (always a TREE_VEC) under control
150 of FLAGS. */
152 static void
153 dump_template_argument_list (tree args, int flags)
155 int n = TREE_VEC_LENGTH (args);
156 int need_comma = 0;
157 int i;
159 for (i = 0; i< n; ++i)
161 tree arg = TREE_VEC_ELT (args, i);
163 /* Only print a comma if we know there is an argument coming. In
164 the case of an empty template argument pack, no actual
165 argument will be printed. */
166 if (need_comma
167 && (!ARGUMENT_PACK_P (arg)
168 || TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) > 0))
169 pp_separate_with_comma (cxx_pp);
171 dump_template_argument (arg, flags);
172 need_comma = 1;
176 /* Dump a template parameter PARM (a TREE_LIST) under control of FLAGS. */
178 static void
179 dump_template_parameter (tree parm, int flags)
181 tree p;
182 tree a;
184 if (parm == error_mark_node)
185 return;
187 p = TREE_VALUE (parm);
188 a = TREE_PURPOSE (parm);
190 if (TREE_CODE (p) == TYPE_DECL)
192 if (flags & TFF_DECL_SPECIFIERS)
194 pp_cxx_identifier (cxx_pp, "class");
195 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (p)))
196 pp_cxx_identifier (cxx_pp, "...");
197 if (DECL_NAME (p))
198 pp_cxx_tree_identifier (cxx_pp, DECL_NAME (p));
200 else if (DECL_NAME (p))
201 pp_cxx_tree_identifier (cxx_pp, DECL_NAME (p));
202 else
203 pp_cxx_canonical_template_parameter (cxx_pp, TREE_TYPE (p));
205 else
206 dump_decl (p, flags | TFF_DECL_SPECIFIERS);
208 if ((flags & TFF_FUNCTION_DEFAULT_ARGUMENTS) && a != NULL_TREE)
210 pp_cxx_whitespace (cxx_pp);
211 pp_equal (cxx_pp);
212 pp_cxx_whitespace (cxx_pp);
213 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
214 dump_type (a, flags & ~TFF_CHASE_TYPEDEF);
215 else
216 dump_expr (a, flags | TFF_EXPR_IN_PARENS);
220 /* Dump, under control of FLAGS, a template-parameter-list binding.
221 PARMS is a TREE_LIST of TREE_VEC of TREE_LIST and ARGS is a
222 TREE_VEC. */
224 static void
225 dump_template_bindings (tree parms, tree args)
227 int need_comma = 0;
229 while (parms)
231 tree p = TREE_VALUE (parms);
232 int lvl = TMPL_PARMS_DEPTH (parms);
233 int arg_idx = 0;
234 int i;
236 for (i = 0; i < TREE_VEC_LENGTH (p); ++i)
238 tree arg = NULL_TREE;
240 /* Don't crash if we had an invalid argument list. */
241 if (TMPL_ARGS_DEPTH (args) >= lvl)
243 tree lvl_args = TMPL_ARGS_LEVEL (args, lvl);
244 if (NUM_TMPL_ARGS (lvl_args) > arg_idx)
245 arg = TREE_VEC_ELT (lvl_args, arg_idx);
248 if (need_comma)
249 pp_separate_with_comma (cxx_pp);
250 dump_template_parameter (TREE_VEC_ELT (p, i), TFF_PLAIN_IDENTIFIER);
251 pp_cxx_whitespace (cxx_pp);
252 pp_equal (cxx_pp);
253 pp_cxx_whitespace (cxx_pp);
254 if (arg)
255 dump_template_argument (arg, TFF_PLAIN_IDENTIFIER);
256 else
257 pp_identifier (cxx_pp, "<missing>");
259 ++arg_idx;
260 need_comma = 1;
263 parms = TREE_CHAIN (parms);
267 /* Dump a human-readable equivalent of TYPE. FLAGS controls the
268 format. */
270 static void
271 dump_type (tree t, int flags)
273 if (t == NULL_TREE)
274 return;
276 if (TYPE_PTRMEMFUNC_P (t))
277 goto offset_type;
279 switch (TREE_CODE (t))
281 case UNKNOWN_TYPE:
282 pp_identifier (cxx_pp, "<unresolved overloaded function type>");
283 break;
285 case TREE_LIST:
286 /* A list of function parms. */
287 dump_parameters (t, flags);
288 break;
290 case IDENTIFIER_NODE:
291 pp_cxx_tree_identifier (cxx_pp, t);
292 break;
294 case TREE_BINFO:
295 dump_type (BINFO_TYPE (t), flags);
296 break;
298 case RECORD_TYPE:
299 case UNION_TYPE:
300 case ENUMERAL_TYPE:
301 dump_aggr_type (t, flags);
302 break;
304 case TYPE_DECL:
305 if (flags & TFF_CHASE_TYPEDEF)
307 dump_type (DECL_ORIGINAL_TYPE (t)
308 ? DECL_ORIGINAL_TYPE (t) : TREE_TYPE (t), flags);
309 break;
311 /* Else fall through. */
313 case TEMPLATE_DECL:
314 case NAMESPACE_DECL:
315 dump_decl (t, flags & ~TFF_DECL_SPECIFIERS);
316 break;
318 case INTEGER_TYPE:
319 case REAL_TYPE:
320 case VOID_TYPE:
321 case BOOLEAN_TYPE:
322 case COMPLEX_TYPE:
323 case VECTOR_TYPE:
324 pp_type_specifier_seq (cxx_pp, t);
325 break;
327 case TEMPLATE_TEMPLATE_PARM:
328 /* For parameters inside template signature. */
329 if (TYPE_IDENTIFIER (t))
330 pp_cxx_tree_identifier (cxx_pp, TYPE_IDENTIFIER (t));
331 else
332 pp_cxx_canonical_template_parameter (cxx_pp, t);
333 break;
335 case BOUND_TEMPLATE_TEMPLATE_PARM:
337 tree args = TYPE_TI_ARGS (t);
338 pp_cxx_cv_qualifier_seq (cxx_pp, t);
339 pp_cxx_tree_identifier (cxx_pp, TYPE_IDENTIFIER (t));
340 pp_cxx_begin_template_argument_list (cxx_pp);
341 dump_template_argument_list (args, flags);
342 pp_cxx_end_template_argument_list (cxx_pp);
344 break;
346 case TEMPLATE_TYPE_PARM:
347 pp_cxx_cv_qualifier_seq (cxx_pp, t);
348 if (TYPE_IDENTIFIER (t))
349 pp_cxx_tree_identifier (cxx_pp, TYPE_IDENTIFIER (t));
350 else
351 pp_cxx_canonical_template_parameter
352 (cxx_pp, TEMPLATE_TYPE_PARM_INDEX (t));
353 break;
355 /* This is not always necessary for pointers and such, but doing this
356 reduces code size. */
357 case ARRAY_TYPE:
358 case POINTER_TYPE:
359 case REFERENCE_TYPE:
360 case OFFSET_TYPE:
361 offset_type:
362 case FUNCTION_TYPE:
363 case METHOD_TYPE:
365 dump_type_prefix (t, flags);
366 dump_type_suffix (t, flags);
367 break;
369 case TYPENAME_TYPE:
370 pp_cxx_cv_qualifier_seq (cxx_pp, t);
371 pp_cxx_identifier (cxx_pp,
372 TYPENAME_IS_ENUM_P (t) ? "enum"
373 : TYPENAME_IS_CLASS_P (t) ? "class"
374 : "typename");
375 dump_typename (t, flags);
376 break;
378 case UNBOUND_CLASS_TEMPLATE:
379 dump_type (TYPE_CONTEXT (t), flags);
380 pp_cxx_colon_colon (cxx_pp);
381 pp_cxx_identifier (cxx_pp, "template");
382 dump_type (DECL_NAME (TYPE_NAME (t)), flags);
383 break;
385 case TYPEOF_TYPE:
386 pp_cxx_identifier (cxx_pp, "__typeof__");
387 pp_cxx_whitespace (cxx_pp);
388 pp_cxx_left_paren (cxx_pp);
389 dump_expr (TYPEOF_TYPE_EXPR (t), flags & ~TFF_EXPR_IN_PARENS);
390 pp_cxx_right_paren (cxx_pp);
391 break;
393 case TYPE_PACK_EXPANSION:
394 dump_type (PACK_EXPANSION_PATTERN (t), flags);
395 pp_cxx_identifier (cxx_pp, "...");
396 break;
398 case TYPE_ARGUMENT_PACK:
400 tree args = ARGUMENT_PACK_ARGS (t);
401 int i;
402 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
404 if (i)
405 pp_separate_with_comma (cxx_pp);
406 dump_type (TREE_VEC_ELT (args, i), flags);
409 break;
411 case DECLTYPE_TYPE:
412 pp_cxx_identifier (cxx_pp, "decltype");
413 pp_cxx_whitespace (cxx_pp);
414 pp_cxx_left_paren (cxx_pp);
415 dump_expr (DECLTYPE_TYPE_EXPR (t), flags & ~TFF_EXPR_IN_PARENS);
416 pp_cxx_right_paren (cxx_pp);
417 break;
419 default:
420 pp_unsupported_tree (cxx_pp, t);
421 /* Fall through to error. */
423 case ERROR_MARK:
424 pp_identifier (cxx_pp, "<type error>");
425 break;
429 /* Dump a TYPENAME_TYPE. We need to notice when the context is itself
430 a TYPENAME_TYPE. */
432 static void
433 dump_typename (tree t, int flags)
435 tree ctx = TYPE_CONTEXT (t);
437 if (TREE_CODE (ctx) == TYPENAME_TYPE)
438 dump_typename (ctx, flags);
439 else
440 dump_type (ctx, flags & ~TFF_CLASS_KEY_OR_ENUM);
441 pp_cxx_colon_colon (cxx_pp);
442 dump_decl (TYPENAME_TYPE_FULLNAME (t), flags);
445 /* Return the name of the supplied aggregate, or enumeral type. */
447 const char *
448 class_key_or_enum_as_string (tree t)
450 if (TREE_CODE (t) == ENUMERAL_TYPE)
451 return "enum";
452 else if (TREE_CODE (t) == UNION_TYPE)
453 return "union";
454 else if (TYPE_LANG_SPECIFIC (t) && CLASSTYPE_DECLARED_CLASS (t))
455 return "class";
456 else
457 return "struct";
460 /* Print out a class declaration T under the control of FLAGS,
461 in the form `class foo'. */
463 static void
464 dump_aggr_type (tree t, int flags)
466 tree name;
467 const char *variety = class_key_or_enum_as_string (t);
468 int typdef = 0;
469 int tmplate = 0;
471 pp_cxx_cv_qualifier_seq (cxx_pp, t);
473 if (flags & TFF_CLASS_KEY_OR_ENUM)
474 pp_cxx_identifier (cxx_pp, variety);
476 if (flags & TFF_CHASE_TYPEDEF)
477 t = TYPE_MAIN_VARIANT (t);
479 name = TYPE_NAME (t);
481 if (name)
483 typdef = !DECL_ARTIFICIAL (name);
484 tmplate = !typdef && TREE_CODE (t) != ENUMERAL_TYPE
485 && TYPE_LANG_SPECIFIC (t) && CLASSTYPE_TEMPLATE_INFO (t)
486 && (TREE_CODE (CLASSTYPE_TI_TEMPLATE (t)) != TEMPLATE_DECL
487 || PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)));
489 if (! (flags & TFF_UNQUALIFIED_NAME))
490 dump_scope (CP_DECL_CONTEXT (name), flags | TFF_SCOPE);
491 flags &= ~TFF_UNQUALIFIED_NAME;
492 if (tmplate)
494 /* Because the template names are mangled, we have to locate
495 the most general template, and use that name. */
496 tree tpl = CLASSTYPE_TI_TEMPLATE (t);
498 while (DECL_TEMPLATE_INFO (tpl))
499 tpl = DECL_TI_TEMPLATE (tpl);
500 name = tpl;
502 name = DECL_NAME (name);
505 if (name == 0 || ANON_AGGRNAME_P (name))
507 if (flags & TFF_CLASS_KEY_OR_ENUM)
508 pp_identifier (cxx_pp, "<anonymous>");
509 else
510 pp_printf (pp_base (cxx_pp), "<anonymous %s>", variety);
512 else
513 pp_cxx_tree_identifier (cxx_pp, name);
514 if (tmplate)
515 dump_template_parms (TYPE_TEMPLATE_INFO (t),
516 !CLASSTYPE_USE_TEMPLATE (t),
517 flags & ~TFF_TEMPLATE_HEADER);
520 /* Dump into the obstack the initial part of the output for a given type.
521 This is necessary when dealing with things like functions returning
522 functions. Examples:
524 return type of `int (* fee ())()': pointer -> function -> int. Both
525 pointer (and reference and offset) and function (and member) types must
526 deal with prefix and suffix.
528 Arrays must also do this for DECL nodes, like int a[], and for things like
529 int *[]&. */
531 static void
532 dump_type_prefix (tree t, int flags)
534 if (TYPE_PTRMEMFUNC_P (t))
536 t = TYPE_PTRMEMFUNC_FN_TYPE (t);
537 goto offset_type;
540 switch (TREE_CODE (t))
542 case POINTER_TYPE:
543 case REFERENCE_TYPE:
545 tree sub = TREE_TYPE (t);
547 dump_type_prefix (sub, flags);
548 if (TREE_CODE (sub) == ARRAY_TYPE)
550 pp_cxx_whitespace (cxx_pp);
551 pp_cxx_left_paren (cxx_pp);
553 if (TREE_CODE (t) == POINTER_TYPE)
554 pp_character(cxx_pp, '*');
555 else if (TREE_CODE (t) == REFERENCE_TYPE)
557 if (TYPE_REF_IS_RVALUE (t))
558 pp_string (cxx_pp, "&&");
559 else
560 pp_character (cxx_pp, '&');
562 pp_base (cxx_pp)->padding = pp_before;
563 pp_cxx_cv_qualifier_seq (cxx_pp, t);
565 break;
567 case OFFSET_TYPE:
568 offset_type:
569 dump_type_prefix (TREE_TYPE (t), flags);
570 if (TREE_CODE (t) == OFFSET_TYPE) /* pmfs deal with this in d_t_p */
572 pp_maybe_space (cxx_pp);
573 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
574 pp_cxx_left_paren (cxx_pp);
575 dump_type (TYPE_OFFSET_BASETYPE (t), flags);
576 pp_cxx_colon_colon (cxx_pp);
578 pp_cxx_star (cxx_pp);
579 pp_cxx_cv_qualifier_seq (cxx_pp, t);
580 pp_base (cxx_pp)->padding = pp_before;
581 break;
583 /* Can only be reached through function pointer -- this would not be
584 correct if FUNCTION_DECLs used it. */
585 case FUNCTION_TYPE:
586 dump_type_prefix (TREE_TYPE (t), flags);
587 pp_maybe_space (cxx_pp);
588 pp_cxx_left_paren (cxx_pp);
589 break;
591 case METHOD_TYPE:
592 dump_type_prefix (TREE_TYPE (t), flags);
593 pp_maybe_space (cxx_pp);
594 pp_cxx_left_paren (cxx_pp);
595 dump_aggr_type (TYPE_METHOD_BASETYPE (t), flags);
596 pp_cxx_colon_colon (cxx_pp);
597 break;
599 case ARRAY_TYPE:
600 dump_type_prefix (TREE_TYPE (t), flags);
601 break;
603 case ENUMERAL_TYPE:
604 case IDENTIFIER_NODE:
605 case INTEGER_TYPE:
606 case BOOLEAN_TYPE:
607 case REAL_TYPE:
608 case RECORD_TYPE:
609 case TEMPLATE_TYPE_PARM:
610 case TEMPLATE_TEMPLATE_PARM:
611 case BOUND_TEMPLATE_TEMPLATE_PARM:
612 case TREE_LIST:
613 case TYPE_DECL:
614 case TREE_VEC:
615 case UNION_TYPE:
616 case UNKNOWN_TYPE:
617 case VOID_TYPE:
618 case TYPENAME_TYPE:
619 case COMPLEX_TYPE:
620 case VECTOR_TYPE:
621 case TYPEOF_TYPE:
622 case DECLTYPE_TYPE:
623 dump_type (t, flags);
624 pp_base (cxx_pp)->padding = pp_before;
625 break;
627 default:
628 pp_unsupported_tree (cxx_pp, t);
629 /* fall through. */
630 case ERROR_MARK:
631 pp_identifier (cxx_pp, "<typeprefixerror>");
632 break;
636 /* Dump the suffix of type T, under control of FLAGS. This is the part
637 which appears after the identifier (or function parms). */
639 static void
640 dump_type_suffix (tree t, int flags)
642 if (TYPE_PTRMEMFUNC_P (t))
643 t = TYPE_PTRMEMFUNC_FN_TYPE (t);
645 switch (TREE_CODE (t))
647 case POINTER_TYPE:
648 case REFERENCE_TYPE:
649 case OFFSET_TYPE:
650 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
651 pp_cxx_right_paren (cxx_pp);
652 dump_type_suffix (TREE_TYPE (t), flags);
653 break;
655 /* Can only be reached through function pointer. */
656 case FUNCTION_TYPE:
657 case METHOD_TYPE:
659 tree arg;
660 pp_cxx_right_paren (cxx_pp);
661 arg = TYPE_ARG_TYPES (t);
662 if (TREE_CODE (t) == METHOD_TYPE)
663 arg = TREE_CHAIN (arg);
665 /* Function pointers don't have default args. Not in standard C++,
666 anyway; they may in g++, but we'll just pretend otherwise. */
667 dump_parameters (arg, flags & ~TFF_FUNCTION_DEFAULT_ARGUMENTS);
669 if (TREE_CODE (t) == METHOD_TYPE)
670 pp_cxx_cv_qualifier_seq
671 (cxx_pp, TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (t))));
672 else
673 pp_cxx_cv_qualifier_seq(cxx_pp, t);
674 dump_exception_spec (TYPE_RAISES_EXCEPTIONS (t), flags);
675 dump_type_suffix (TREE_TYPE (t), flags);
676 break;
679 case ARRAY_TYPE:
680 pp_maybe_space (cxx_pp);
681 pp_cxx_left_bracket (cxx_pp);
682 if (TYPE_DOMAIN (t))
684 tree dtype = TYPE_DOMAIN (t);
685 tree max = TYPE_MAX_VALUE (dtype);
686 if (host_integerp (max, 0))
687 pp_wide_integer (cxx_pp, tree_low_cst (max, 0) + 1);
688 else if (TREE_CODE (max) == MINUS_EXPR)
689 dump_expr (TREE_OPERAND (max, 0),
690 flags & ~TFF_EXPR_IN_PARENS);
691 else
692 dump_expr (fold_build2 (PLUS_EXPR, dtype, max,
693 build_int_cst (dtype, 1)),
694 flags & ~TFF_EXPR_IN_PARENS);
696 pp_cxx_right_bracket (cxx_pp);
697 dump_type_suffix (TREE_TYPE (t), flags);
698 break;
700 case ENUMERAL_TYPE:
701 case IDENTIFIER_NODE:
702 case INTEGER_TYPE:
703 case BOOLEAN_TYPE:
704 case REAL_TYPE:
705 case RECORD_TYPE:
706 case TEMPLATE_TYPE_PARM:
707 case TEMPLATE_TEMPLATE_PARM:
708 case BOUND_TEMPLATE_TEMPLATE_PARM:
709 case TREE_LIST:
710 case TYPE_DECL:
711 case TREE_VEC:
712 case UNION_TYPE:
713 case UNKNOWN_TYPE:
714 case VOID_TYPE:
715 case TYPENAME_TYPE:
716 case COMPLEX_TYPE:
717 case VECTOR_TYPE:
718 case TYPEOF_TYPE:
719 case DECLTYPE_TYPE:
720 break;
722 default:
723 pp_unsupported_tree (cxx_pp, t);
724 case ERROR_MARK:
725 /* Don't mark it here, we should have already done in
726 dump_type_prefix. */
727 break;
731 static void
732 dump_global_iord (tree t)
734 const char *p = NULL;
736 if (DECL_GLOBAL_CTOR_P (t))
737 p = "initializers";
738 else if (DECL_GLOBAL_DTOR_P (t))
739 p = "destructors";
740 else
741 gcc_unreachable ();
743 pp_printf (pp_base (cxx_pp), "(static %s for %s)", p, input_filename);
746 static void
747 dump_simple_decl (tree t, tree type, int flags)
749 if (flags & TFF_DECL_SPECIFIERS)
751 dump_type_prefix (type, flags & ~TFF_UNQUALIFIED_NAME);
752 pp_maybe_space (cxx_pp);
754 if (! (flags & TFF_UNQUALIFIED_NAME)
755 && (!DECL_INITIAL (t)
756 || TREE_CODE (DECL_INITIAL (t)) != TEMPLATE_PARM_INDEX))
757 dump_scope (CP_DECL_CONTEXT (t), flags);
758 flags &= ~TFF_UNQUALIFIED_NAME;
759 if (DECL_NAME (t))
760 dump_decl (DECL_NAME (t), flags);
761 else
762 pp_identifier (cxx_pp, "<anonymous>");
763 if (flags & TFF_DECL_SPECIFIERS)
764 dump_type_suffix (type, flags);
767 /* Dump a human readable string for the decl T under control of FLAGS. */
769 static void
770 dump_decl (tree t, int flags)
772 if (t == NULL_TREE)
773 return;
775 switch (TREE_CODE (t))
777 case TYPE_DECL:
778 /* Don't say 'typedef class A' */
779 if (DECL_ARTIFICIAL (t))
781 if ((flags & TFF_DECL_SPECIFIERS)
782 && TREE_CODE (TREE_TYPE (t)) == TEMPLATE_TYPE_PARM)
783 /* Say `class T' not just `T'. */
784 pp_cxx_identifier (cxx_pp, "class");
786 dump_type (TREE_TYPE (t), flags);
787 break;
789 if (flags & TFF_DECL_SPECIFIERS)
790 pp_cxx_identifier (cxx_pp, "typedef");
791 dump_simple_decl (t, DECL_ORIGINAL_TYPE (t)
792 ? DECL_ORIGINAL_TYPE (t) : TREE_TYPE (t),
793 flags);
794 break;
796 case VAR_DECL:
797 if (DECL_NAME (t) && VTABLE_NAME_P (DECL_NAME (t)))
799 pp_string (cxx_pp, "vtable for ");
800 gcc_assert (TYPE_P (DECL_CONTEXT (t)));
801 dump_type (DECL_CONTEXT (t), flags);
802 break;
804 /* Else fall through. */
805 case FIELD_DECL:
806 case PARM_DECL:
807 dump_simple_decl (t, TREE_TYPE (t), flags);
808 break;
810 case RESULT_DECL:
811 pp_string (cxx_pp, "<return value> ");
812 dump_simple_decl (t, TREE_TYPE (t), flags);
813 break;
815 case NAMESPACE_DECL:
816 if (flags & TFF_DECL_SPECIFIERS)
817 pp_cxx_declaration (cxx_pp, t);
818 else
820 if (! (flags & TFF_UNQUALIFIED_NAME))
821 dump_scope (CP_DECL_CONTEXT (t), flags);
822 flags &= ~TFF_UNQUALIFIED_NAME;
823 if (DECL_NAME (t) == NULL_TREE)
824 pp_identifier (cxx_pp, "<unnamed>");
825 else
826 pp_cxx_tree_identifier (cxx_pp, DECL_NAME (t));
828 break;
830 case SCOPE_REF:
831 pp_expression (cxx_pp, t);
832 break;
834 case ARRAY_REF:
835 dump_decl (TREE_OPERAND (t, 0), flags);
836 pp_cxx_left_bracket (cxx_pp);
837 dump_decl (TREE_OPERAND (t, 1), flags);
838 pp_cxx_right_bracket (cxx_pp);
839 break;
841 /* So that we can do dump_decl on an aggr type. */
842 case RECORD_TYPE:
843 case UNION_TYPE:
844 case ENUMERAL_TYPE:
845 dump_type (t, flags);
846 break;
848 case BIT_NOT_EXPR:
849 /* This is a pseudo destructor call which has not been folded into
850 a PSEUDO_DTOR_EXPR yet. */
851 pp_cxx_complement (cxx_pp);
852 dump_type (TREE_OPERAND (t, 0), flags);
853 break;
855 case TYPE_EXPR:
856 gcc_unreachable ();
857 break;
859 /* These special cases are duplicated here so that other functions
860 can feed identifiers to error and get them demangled properly. */
861 case IDENTIFIER_NODE:
862 if (IDENTIFIER_TYPENAME_P (t))
864 pp_cxx_identifier (cxx_pp, "operator");
865 /* Not exactly IDENTIFIER_TYPE_VALUE. */
866 dump_type (TREE_TYPE (t), flags);
867 break;
869 else
870 pp_cxx_tree_identifier (cxx_pp, t);
871 break;
873 case OVERLOAD:
874 if (OVL_CHAIN (t))
876 t = OVL_CURRENT (t);
877 if (DECL_CLASS_SCOPE_P (t))
879 dump_type (DECL_CONTEXT (t), flags);
880 pp_cxx_colon_colon (cxx_pp);
882 else if (DECL_CONTEXT (t))
884 dump_decl (DECL_CONTEXT (t), flags);
885 pp_cxx_colon_colon (cxx_pp);
887 dump_decl (DECL_NAME (t), flags);
888 break;
891 /* If there's only one function, just treat it like an ordinary
892 FUNCTION_DECL. */
893 t = OVL_CURRENT (t);
894 /* Fall through. */
896 case FUNCTION_DECL:
897 if (! DECL_LANG_SPECIFIC (t))
898 pp_identifier (cxx_pp, "<built-in>");
899 else if (DECL_GLOBAL_CTOR_P (t) || DECL_GLOBAL_DTOR_P (t))
900 dump_global_iord (t);
901 else
902 dump_function_decl (t, flags);
903 break;
905 case TEMPLATE_DECL:
906 dump_template_decl (t, flags);
907 break;
909 case TEMPLATE_ID_EXPR:
911 tree name = TREE_OPERAND (t, 0);
913 if (is_overloaded_fn (name))
914 name = DECL_NAME (get_first_fn (name));
915 dump_decl (name, flags);
916 pp_cxx_begin_template_argument_list (cxx_pp);
917 if (TREE_OPERAND (t, 1))
918 dump_template_argument_list (TREE_OPERAND (t, 1), flags);
919 pp_cxx_end_template_argument_list (cxx_pp);
921 break;
923 case LABEL_DECL:
924 pp_cxx_tree_identifier (cxx_pp, DECL_NAME (t));
925 break;
927 case CONST_DECL:
928 if ((TREE_TYPE (t) != NULL_TREE && NEXT_CODE (t) == ENUMERAL_TYPE)
929 || (DECL_INITIAL (t) &&
930 TREE_CODE (DECL_INITIAL (t)) == TEMPLATE_PARM_INDEX))
931 dump_simple_decl (t, TREE_TYPE (t), flags);
932 else if (DECL_NAME (t))
933 dump_decl (DECL_NAME (t), flags);
934 else if (DECL_INITIAL (t))
935 dump_expr (DECL_INITIAL (t), flags | TFF_EXPR_IN_PARENS);
936 else
937 pp_identifier (cxx_pp, "<enumerator>");
938 break;
940 case USING_DECL:
941 pp_cxx_identifier (cxx_pp, "using");
942 dump_type (USING_DECL_SCOPE (t), flags);
943 pp_cxx_colon_colon (cxx_pp);
944 dump_decl (DECL_NAME (t), flags);
945 break;
947 case STATIC_ASSERT:
948 pp_cxx_declaration (cxx_pp, t);
949 break;
951 case BASELINK:
952 dump_decl (BASELINK_FUNCTIONS (t), flags);
953 break;
955 case NON_DEPENDENT_EXPR:
956 dump_expr (t, flags);
957 break;
959 case TEMPLATE_TYPE_PARM:
960 if (flags & TFF_DECL_SPECIFIERS)
961 pp_cxx_declaration (cxx_pp, t);
962 else
963 pp_type_id (cxx_pp, t);
964 break;
966 case UNBOUND_CLASS_TEMPLATE:
967 dump_type (t, flags);
968 break;
970 default:
971 pp_unsupported_tree (cxx_pp, t);
972 /* Fall through to error. */
974 case ERROR_MARK:
975 pp_identifier (cxx_pp, "<declaration error>");
976 break;
980 /* Dump a template declaration T under control of FLAGS. This means the
981 'template <...> leaders plus the 'class X' or 'void fn(...)' part. */
983 static void
984 dump_template_decl (tree t, int flags)
986 tree orig_parms = DECL_TEMPLATE_PARMS (t);
987 tree parms;
988 int i;
990 if (flags & TFF_TEMPLATE_HEADER)
992 for (parms = orig_parms = nreverse (orig_parms);
993 parms;
994 parms = TREE_CHAIN (parms))
996 tree inner_parms = INNERMOST_TEMPLATE_PARMS (parms);
997 int len = TREE_VEC_LENGTH (inner_parms);
999 pp_cxx_identifier (cxx_pp, "template");
1000 pp_cxx_begin_template_argument_list (cxx_pp);
1002 /* If we've shown the template prefix, we'd better show the
1003 parameters' and decl's type too. */
1004 flags |= TFF_DECL_SPECIFIERS;
1006 for (i = 0; i < len; i++)
1008 if (i)
1009 pp_separate_with_comma (cxx_pp);
1010 dump_template_parameter (TREE_VEC_ELT (inner_parms, i), flags);
1012 pp_cxx_end_template_argument_list (cxx_pp);
1013 pp_cxx_whitespace (cxx_pp);
1015 nreverse(orig_parms);
1017 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
1018 /* Say `template<arg> class TT' not just `template<arg> TT'. */
1019 pp_cxx_identifier (cxx_pp, "class");
1022 if (TREE_CODE (DECL_TEMPLATE_RESULT (t)) == TYPE_DECL)
1023 dump_type (TREE_TYPE (t),
1024 ((flags & ~TFF_CLASS_KEY_OR_ENUM) | TFF_TEMPLATE_NAME
1025 | (flags & TFF_DECL_SPECIFIERS ? TFF_CLASS_KEY_OR_ENUM : 0)));
1026 else if (TREE_CODE (DECL_TEMPLATE_RESULT (t)) == VAR_DECL)
1027 dump_decl (DECL_TEMPLATE_RESULT (t), flags | TFF_TEMPLATE_NAME);
1028 else
1030 gcc_assert (TREE_TYPE (t));
1031 switch (NEXT_CODE (t))
1033 case METHOD_TYPE:
1034 case FUNCTION_TYPE:
1035 dump_function_decl (t, flags | TFF_TEMPLATE_NAME);
1036 break;
1037 default:
1038 /* This case can occur with some invalid code. */
1039 dump_type (TREE_TYPE (t),
1040 (flags & ~TFF_CLASS_KEY_OR_ENUM) | TFF_TEMPLATE_NAME
1041 | (flags & TFF_DECL_SPECIFIERS
1042 ? TFF_CLASS_KEY_OR_ENUM : 0));
1047 /* Pretty print a function decl. There are several ways we want to print a
1048 function declaration. The TFF_ bits in FLAGS tells us how to behave.
1049 As error can only apply the '#' flag once to give 0 and 1 for V, there
1050 is %D which doesn't print the throw specs, and %F which does. */
1052 static void
1053 dump_function_decl (tree t, int flags)
1055 tree fntype;
1056 tree parmtypes;
1057 tree cname = NULL_TREE;
1058 tree template_args = NULL_TREE;
1059 tree template_parms = NULL_TREE;
1060 int show_return = flags & TFF_RETURN_TYPE || flags & TFF_DECL_SPECIFIERS;
1061 int do_outer_scope = ! (flags & TFF_UNQUALIFIED_NAME);
1063 flags &= ~TFF_UNQUALIFIED_NAME;
1064 if (TREE_CODE (t) == TEMPLATE_DECL)
1065 t = DECL_TEMPLATE_RESULT (t);
1067 /* Pretty print template instantiations only. */
1068 if (DECL_USE_TEMPLATE (t) && DECL_TEMPLATE_INFO (t))
1070 tree tmpl;
1072 template_args = DECL_TI_ARGS (t);
1073 tmpl = most_general_template (t);
1074 if (tmpl && TREE_CODE (tmpl) == TEMPLATE_DECL)
1076 template_parms = DECL_TEMPLATE_PARMS (tmpl);
1077 t = tmpl;
1081 fntype = TREE_TYPE (t);
1082 parmtypes = FUNCTION_FIRST_USER_PARMTYPE (t);
1084 if (DECL_CLASS_SCOPE_P (t))
1085 cname = DECL_CONTEXT (t);
1086 /* This is for partially instantiated template methods. */
1087 else if (TREE_CODE (fntype) == METHOD_TYPE)
1088 cname = TREE_TYPE (TREE_VALUE (parmtypes));
1090 if (!(flags & TFF_DECL_SPECIFIERS))
1091 /* OK */;
1092 else if (DECL_STATIC_FUNCTION_P (t))
1093 pp_cxx_identifier (cxx_pp, "static");
1094 else if (DECL_VIRTUAL_P (t))
1095 pp_cxx_identifier (cxx_pp, "virtual");
1097 /* Print the return type? */
1098 if (show_return)
1099 show_return = !DECL_CONV_FN_P (t) && !DECL_CONSTRUCTOR_P (t)
1100 && !DECL_DESTRUCTOR_P (t);
1101 if (show_return)
1102 dump_type_prefix (TREE_TYPE (fntype), flags);
1104 /* Print the function name. */
1105 if (!do_outer_scope)
1106 /* Nothing. */;
1107 else if (cname)
1109 dump_type (cname, flags);
1110 pp_cxx_colon_colon (cxx_pp);
1112 else
1113 dump_scope (CP_DECL_CONTEXT (t), flags);
1115 dump_function_name (t, flags);
1117 if (!(flags & TFF_NO_FUNCTION_ARGUMENTS))
1119 dump_parameters (parmtypes, flags);
1121 if (TREE_CODE (fntype) == METHOD_TYPE)
1123 pp_base (cxx_pp)->padding = pp_before;
1124 pp_cxx_cv_qualifier_seq
1125 (cxx_pp, TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fntype))));
1128 if (flags & TFF_EXCEPTION_SPECIFICATION)
1130 pp_base (cxx_pp)->padding = pp_before;
1131 dump_exception_spec (TYPE_RAISES_EXCEPTIONS (fntype), flags);
1134 if (show_return)
1135 dump_type_suffix (TREE_TYPE (fntype), flags);
1138 /* If T is a template instantiation, dump the parameter binding. */
1139 if (template_parms != NULL_TREE && template_args != NULL_TREE)
1141 pp_cxx_whitespace (cxx_pp);
1142 pp_cxx_left_bracket (cxx_pp);
1143 pp_cxx_identifier (cxx_pp, "with");
1144 pp_cxx_whitespace (cxx_pp);
1145 dump_template_bindings (template_parms, template_args);
1146 pp_cxx_right_bracket (cxx_pp);
1150 /* Print a parameter list. If this is for a member function, the
1151 member object ptr (and any other hidden args) should have
1152 already been removed. */
1154 static void
1155 dump_parameters (tree parmtypes, int flags)
1157 int first = 1;
1158 pp_cxx_left_paren (cxx_pp);
1160 for (first = 1; parmtypes != void_list_node;
1161 parmtypes = TREE_CHAIN (parmtypes))
1163 if (!first)
1164 pp_separate_with_comma (cxx_pp);
1165 first = 0;
1166 if (!parmtypes)
1168 pp_cxx_identifier (cxx_pp, "...");
1169 break;
1171 if (ARGUMENT_PACK_P (TREE_VALUE (parmtypes)))
1173 tree types = ARGUMENT_PACK_ARGS (TREE_VALUE (parmtypes));
1174 int i, len = TREE_VEC_LENGTH (types);
1175 first = 1;
1176 for (i = 0; i < len; ++i)
1178 if (!first)
1179 pp_separate_with_comma (cxx_pp);
1180 first = 0;
1182 dump_type (TREE_VEC_ELT (types, i), flags);
1185 else
1186 dump_type (TREE_VALUE (parmtypes), flags);
1188 if ((flags & TFF_FUNCTION_DEFAULT_ARGUMENTS) && TREE_PURPOSE (parmtypes))
1190 pp_cxx_whitespace (cxx_pp);
1191 pp_equal (cxx_pp);
1192 pp_cxx_whitespace (cxx_pp);
1193 dump_expr (TREE_PURPOSE (parmtypes), flags | TFF_EXPR_IN_PARENS);
1197 pp_cxx_right_paren (cxx_pp);
1200 /* Print an exception specification. T is the exception specification. */
1202 static void
1203 dump_exception_spec (tree t, int flags)
1205 if (t)
1207 pp_cxx_identifier (cxx_pp, "throw");
1208 pp_cxx_whitespace (cxx_pp);
1209 pp_cxx_left_paren (cxx_pp);
1210 if (TREE_VALUE (t) != NULL_TREE)
1211 while (1)
1213 dump_type (TREE_VALUE (t), flags);
1214 t = TREE_CHAIN (t);
1215 if (!t)
1216 break;
1217 pp_separate_with_comma (cxx_pp);
1219 pp_cxx_right_paren (cxx_pp);
1223 /* Handle the function name for a FUNCTION_DECL node, grokking operators
1224 and destructors properly. */
1226 static void
1227 dump_function_name (tree t, int flags)
1229 tree name = DECL_NAME (t);
1231 /* We can get here with a decl that was synthesized by language-
1232 independent machinery (e.g. coverage.c) in which case it won't
1233 have a lang_specific structure attached and DECL_CONSTRUCTOR_P
1234 will crash. In this case it is safe just to print out the
1235 literal name. */
1236 if (!DECL_LANG_SPECIFIC (t))
1238 pp_cxx_tree_identifier (cxx_pp, name);
1239 return;
1242 if (TREE_CODE (t) == TEMPLATE_DECL)
1243 t = DECL_TEMPLATE_RESULT (t);
1245 /* Don't let the user see __comp_ctor et al. */
1246 if (DECL_CONSTRUCTOR_P (t)
1247 || DECL_DESTRUCTOR_P (t))
1248 name = constructor_name (DECL_CONTEXT (t));
1250 if (DECL_DESTRUCTOR_P (t))
1252 pp_cxx_complement (cxx_pp);
1253 dump_decl (name, TFF_PLAIN_IDENTIFIER);
1255 else if (DECL_CONV_FN_P (t))
1257 /* This cannot use the hack that the operator's return
1258 type is stashed off of its name because it may be
1259 used for error reporting. In the case of conflicting
1260 declarations, both will have the same name, yet
1261 the types will be different, hence the TREE_TYPE field
1262 of the first name will be clobbered by the second. */
1263 pp_cxx_identifier (cxx_pp, "operator");
1264 dump_type (TREE_TYPE (TREE_TYPE (t)), flags);
1266 else if (IDENTIFIER_OPNAME_P (name))
1267 pp_cxx_tree_identifier (cxx_pp, name);
1268 else
1269 dump_decl (name, flags);
1271 if (DECL_TEMPLATE_INFO (t)
1272 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (t)
1273 && (TREE_CODE (DECL_TI_TEMPLATE (t)) != TEMPLATE_DECL
1274 || PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
1275 dump_template_parms (DECL_TEMPLATE_INFO (t), !DECL_USE_TEMPLATE (t), flags);
1278 /* Dump the template parameters from the template info INFO under control of
1279 FLAGS. PRIMARY indicates whether this is a primary template decl, or
1280 specialization (partial or complete). For partial specializations we show
1281 the specialized parameter values. For a primary template we show no
1282 decoration. */
1284 static void
1285 dump_template_parms (tree info, int primary, int flags)
1287 tree args = info ? TI_ARGS (info) : NULL_TREE;
1289 if (primary && flags & TFF_TEMPLATE_NAME)
1290 return;
1291 flags &= ~(TFF_CLASS_KEY_OR_ENUM | TFF_TEMPLATE_NAME);
1292 pp_cxx_begin_template_argument_list (cxx_pp);
1294 /* Be careful only to print things when we have them, so as not
1295 to crash producing error messages. */
1296 if (args && !primary)
1298 int len, ix;
1300 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
1301 args = TREE_VEC_ELT (args, TREE_VEC_LENGTH (args) - 1);
1303 len = TREE_VEC_LENGTH (args);
1305 for (ix = 0; ix != len; ix++)
1307 tree arg = TREE_VEC_ELT (args, ix);
1309 /* Only print a comma if we know there is an argument coming. In
1310 the case of an empty template argument pack, no actual
1311 argument will be printed. */
1312 if (ix
1313 && (!ARGUMENT_PACK_P (arg)
1314 || TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) > 0))
1315 pp_separate_with_comma (cxx_pp);
1317 if (!arg)
1318 pp_identifier (cxx_pp, "<template parameter error>");
1319 else
1320 dump_template_argument (arg, flags);
1323 else if (primary)
1325 tree tpl = TI_TEMPLATE (info);
1326 tree parms = DECL_TEMPLATE_PARMS (tpl);
1327 int len, ix;
1329 parms = TREE_CODE (parms) == TREE_LIST ? TREE_VALUE (parms) : NULL_TREE;
1330 len = parms ? TREE_VEC_LENGTH (parms) : 0;
1332 for (ix = 0; ix != len; ix++)
1334 tree parm;
1336 if (TREE_VEC_ELT (parms, ix) == error_mark_node)
1338 pp_identifier (cxx_pp, "<template parameter error>");
1339 continue;
1342 parm = TREE_VALUE (TREE_VEC_ELT (parms, ix));
1344 if (ix)
1345 pp_separate_with_comma (cxx_pp);
1347 dump_decl (parm, flags & ~TFF_DECL_SPECIFIERS);
1350 pp_cxx_end_template_argument_list (cxx_pp);
1353 /* Print out the arguments of CALL_EXPR T as a parenthesized list using
1354 flags FLAGS. Skip over the first argument if SKIPFIRST is true. */
1356 static void
1357 dump_call_expr_args (tree t, int flags, bool skipfirst)
1359 tree arg;
1360 call_expr_arg_iterator iter;
1362 pp_cxx_left_paren (cxx_pp);
1363 FOR_EACH_CALL_EXPR_ARG (arg, iter, t)
1365 if (skipfirst)
1366 skipfirst = false;
1367 else
1369 dump_expr (arg, flags | TFF_EXPR_IN_PARENS);
1370 if (more_call_expr_args_p (&iter))
1371 pp_separate_with_comma (cxx_pp);
1374 pp_cxx_right_paren (cxx_pp);
1377 /* Print out the arguments of AGGR_INIT_EXPR T as a parenthesized list
1378 using flags FLAGS. Skip over the first argument if SKIPFIRST is
1379 true. */
1381 static void
1382 dump_aggr_init_expr_args (tree t, int flags, bool skipfirst)
1384 tree arg;
1385 aggr_init_expr_arg_iterator iter;
1387 pp_cxx_left_paren (cxx_pp);
1388 FOR_EACH_AGGR_INIT_EXPR_ARG (arg, iter, t)
1390 if (skipfirst)
1391 skipfirst = false;
1392 else
1394 dump_expr (arg, flags | TFF_EXPR_IN_PARENS);
1395 if (more_aggr_init_expr_args_p (&iter))
1396 pp_separate_with_comma (cxx_pp);
1399 pp_cxx_right_paren (cxx_pp);
1402 /* Print out a list of initializers (subr of dump_expr). */
1404 static void
1405 dump_expr_list (tree l, int flags)
1407 while (l)
1409 dump_expr (TREE_VALUE (l), flags | TFF_EXPR_IN_PARENS);
1410 l = TREE_CHAIN (l);
1411 if (l)
1412 pp_separate_with_comma (cxx_pp);
1416 /* Print out a vector of initializers (subr of dump_expr). */
1418 static void
1419 dump_expr_init_vec (VEC(constructor_elt,gc) *v, int flags)
1421 unsigned HOST_WIDE_INT idx;
1422 tree value;
1424 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1426 dump_expr (value, flags | TFF_EXPR_IN_PARENS);
1427 if (idx != VEC_length (constructor_elt, v) - 1)
1428 pp_separate_with_comma (cxx_pp);
1433 /* We've gotten an indirect REFERENCE (an OBJ_TYPE_REF) to a virtual
1434 function. Resolve it to a close relative -- in the sense of static
1435 type -- variant being overridden. That is close to what was written in
1436 the source code. Subroutine of dump_expr. */
1438 static tree
1439 resolve_virtual_fun_from_obj_type_ref (tree ref)
1441 tree obj_type = TREE_TYPE (OBJ_TYPE_REF_OBJECT (ref));
1442 HOST_WIDE_INT index = tree_low_cst (OBJ_TYPE_REF_TOKEN (ref), 1);
1443 tree fun = BINFO_VIRTUALS (TYPE_BINFO (TREE_TYPE (obj_type)));
1444 while (index)
1446 fun = TREE_CHAIN (fun);
1447 index -= (TARGET_VTABLE_USES_DESCRIPTORS
1448 ? TARGET_VTABLE_USES_DESCRIPTORS : 1);
1451 return BV_FN (fun);
1454 /* Print out an expression E under control of FLAGS. */
1456 static void
1457 dump_expr (tree t, int flags)
1459 if (t == 0)
1460 return;
1462 switch (TREE_CODE (t))
1464 case VAR_DECL:
1465 case PARM_DECL:
1466 case FIELD_DECL:
1467 case CONST_DECL:
1468 case FUNCTION_DECL:
1469 case TEMPLATE_DECL:
1470 case NAMESPACE_DECL:
1471 case LABEL_DECL:
1472 case OVERLOAD:
1473 case IDENTIFIER_NODE:
1474 dump_decl (t, (flags & ~TFF_DECL_SPECIFIERS) | TFF_NO_FUNCTION_ARGUMENTS);
1475 break;
1477 case INTEGER_CST:
1478 case REAL_CST:
1479 case STRING_CST:
1480 case COMPLEX_CST:
1481 pp_constant (cxx_pp, t);
1482 break;
1484 case THROW_EXPR:
1485 pp_cxx_identifier (cxx_pp, "throw");
1486 dump_expr (TREE_OPERAND (t, 0), flags);
1487 break;
1489 case PTRMEM_CST:
1490 pp_ampersand (cxx_pp);
1491 dump_type (PTRMEM_CST_CLASS (t), flags);
1492 pp_cxx_colon_colon (cxx_pp);
1493 pp_cxx_tree_identifier (cxx_pp, DECL_NAME (PTRMEM_CST_MEMBER (t)));
1494 break;
1496 case COMPOUND_EXPR:
1497 pp_cxx_left_paren (cxx_pp);
1498 dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
1499 pp_separate_with_comma (cxx_pp);
1500 dump_expr (TREE_OPERAND (t, 1), flags | TFF_EXPR_IN_PARENS);
1501 pp_cxx_right_paren (cxx_pp);
1502 break;
1504 case COND_EXPR:
1505 pp_cxx_left_paren (cxx_pp);
1506 dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
1507 pp_string (cxx_pp, " ? ");
1508 dump_expr (TREE_OPERAND (t, 1), flags | TFF_EXPR_IN_PARENS);
1509 pp_string (cxx_pp, " : ");
1510 dump_expr (TREE_OPERAND (t, 2), flags | TFF_EXPR_IN_PARENS);
1511 pp_cxx_right_paren (cxx_pp);
1512 break;
1514 case SAVE_EXPR:
1515 if (TREE_HAS_CONSTRUCTOR (t))
1517 pp_cxx_identifier (cxx_pp, "new");
1518 pp_cxx_whitespace (cxx_pp);
1519 dump_type (TREE_TYPE (TREE_TYPE (t)), flags);
1521 else
1522 dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
1523 break;
1525 case AGGR_INIT_EXPR:
1527 tree fn = NULL_TREE;
1529 if (TREE_CODE (AGGR_INIT_EXPR_FN (t)) == ADDR_EXPR)
1530 fn = TREE_OPERAND (AGGR_INIT_EXPR_FN (t), 0);
1532 if (fn && TREE_CODE (fn) == FUNCTION_DECL)
1534 if (DECL_CONSTRUCTOR_P (fn))
1535 dump_type (DECL_CONTEXT (fn), flags);
1536 else
1537 dump_decl (fn, 0);
1539 else
1540 dump_expr (AGGR_INIT_EXPR_FN (t), 0);
1542 dump_aggr_init_expr_args (t, flags, true);
1543 break;
1545 case CALL_EXPR:
1547 tree fn = CALL_EXPR_FN (t);
1548 bool skipfirst = false;
1550 if (TREE_CODE (fn) == ADDR_EXPR)
1551 fn = TREE_OPERAND (fn, 0);
1553 /* Nobody is interested in seeing the guts of vcalls. */
1554 if (TREE_CODE (fn) == OBJ_TYPE_REF)
1555 fn = resolve_virtual_fun_from_obj_type_ref (fn);
1557 if (TREE_TYPE (fn) != NULL_TREE && NEXT_CODE (fn) == METHOD_TYPE)
1559 tree ob = CALL_EXPR_ARG (t, 0);
1560 if (TREE_CODE (ob) == ADDR_EXPR)
1562 dump_expr (TREE_OPERAND (ob, 0), flags | TFF_EXPR_IN_PARENS);
1563 pp_cxx_dot (cxx_pp);
1565 else if (TREE_CODE (ob) != PARM_DECL
1566 || strcmp (IDENTIFIER_POINTER (DECL_NAME (ob)), "this"))
1568 dump_expr (ob, flags | TFF_EXPR_IN_PARENS);
1569 pp_cxx_arrow (cxx_pp);
1571 skipfirst = true;
1573 dump_expr (fn, flags | TFF_EXPR_IN_PARENS);
1574 dump_call_expr_args (t, flags, skipfirst);
1576 break;
1578 case NEW_EXPR:
1580 tree type = TREE_OPERAND (t, 1);
1581 tree init = TREE_OPERAND (t, 2);
1582 if (NEW_EXPR_USE_GLOBAL (t))
1583 pp_cxx_colon_colon (cxx_pp);
1584 pp_cxx_identifier (cxx_pp, "new");
1585 if (TREE_OPERAND (t, 0))
1587 pp_cxx_left_paren (cxx_pp);
1588 dump_expr_list (TREE_OPERAND (t, 0), flags);
1589 pp_cxx_right_paren (cxx_pp);
1590 pp_cxx_whitespace (cxx_pp);
1592 if (TREE_CODE (type) == ARRAY_REF)
1593 type = build_cplus_array_type
1594 (TREE_OPERAND (type, 0),
1595 build_index_type (fold_build2 (MINUS_EXPR, integer_type_node,
1596 TREE_OPERAND (type, 1),
1597 integer_one_node)));
1598 dump_type (type, flags);
1599 if (init)
1601 pp_cxx_left_paren (cxx_pp);
1602 if (TREE_CODE (init) == TREE_LIST)
1603 dump_expr_list (init, flags);
1604 else if (init == void_zero_node)
1605 /* This representation indicates an empty initializer,
1606 e.g.: "new int()". */
1608 else
1609 dump_expr (init, flags);
1610 pp_cxx_right_paren (cxx_pp);
1613 break;
1615 case TARGET_EXPR:
1616 /* Note that this only works for G++ target exprs. If somebody
1617 builds a general TARGET_EXPR, there's no way to represent that
1618 it initializes anything other that the parameter slot for the
1619 default argument. Note we may have cleared out the first
1620 operand in expand_expr, so don't go killing ourselves. */
1621 if (TREE_OPERAND (t, 1))
1622 dump_expr (TREE_OPERAND (t, 1), flags | TFF_EXPR_IN_PARENS);
1623 break;
1625 case POINTER_PLUS_EXPR:
1626 dump_binary_op ("+", t, flags);
1627 break;
1629 case INIT_EXPR:
1630 case MODIFY_EXPR:
1631 case PLUS_EXPR:
1632 case MINUS_EXPR:
1633 case MULT_EXPR:
1634 case TRUNC_DIV_EXPR:
1635 case TRUNC_MOD_EXPR:
1636 case MIN_EXPR:
1637 case MAX_EXPR:
1638 case LSHIFT_EXPR:
1639 case RSHIFT_EXPR:
1640 case BIT_IOR_EXPR:
1641 case BIT_XOR_EXPR:
1642 case BIT_AND_EXPR:
1643 case TRUTH_ANDIF_EXPR:
1644 case TRUTH_ORIF_EXPR:
1645 case LT_EXPR:
1646 case LE_EXPR:
1647 case GT_EXPR:
1648 case GE_EXPR:
1649 case EQ_EXPR:
1650 case NE_EXPR:
1651 case EXACT_DIV_EXPR:
1652 dump_binary_op (operator_name_info[(int) TREE_CODE (t)].name, t, flags);
1653 break;
1655 case CEIL_DIV_EXPR:
1656 case FLOOR_DIV_EXPR:
1657 case ROUND_DIV_EXPR:
1658 case RDIV_EXPR:
1659 dump_binary_op ("/", t, flags);
1660 break;
1662 case CEIL_MOD_EXPR:
1663 case FLOOR_MOD_EXPR:
1664 case ROUND_MOD_EXPR:
1665 dump_binary_op ("%", t, flags);
1666 break;
1668 case COMPONENT_REF:
1670 tree ob = TREE_OPERAND (t, 0);
1671 if (TREE_CODE (ob) == INDIRECT_REF)
1673 ob = TREE_OPERAND (ob, 0);
1674 if (TREE_CODE (ob) != PARM_DECL
1675 || (DECL_NAME (ob)
1676 && strcmp (IDENTIFIER_POINTER (DECL_NAME (ob)), "this")))
1678 dump_expr (ob, flags | TFF_EXPR_IN_PARENS);
1679 pp_cxx_arrow (cxx_pp);
1682 else
1684 dump_expr (ob, flags | TFF_EXPR_IN_PARENS);
1685 pp_cxx_dot (cxx_pp);
1687 dump_expr (TREE_OPERAND (t, 1), flags & ~TFF_EXPR_IN_PARENS);
1689 break;
1691 case ARRAY_REF:
1692 dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
1693 pp_cxx_left_bracket (cxx_pp);
1694 dump_expr (TREE_OPERAND (t, 1), flags | TFF_EXPR_IN_PARENS);
1695 pp_cxx_right_bracket (cxx_pp);
1696 break;
1698 case UNARY_PLUS_EXPR:
1699 dump_unary_op ("+", t, flags);
1700 break;
1702 case ADDR_EXPR:
1703 if (TREE_CODE (TREE_OPERAND (t, 0)) == FUNCTION_DECL
1704 || TREE_CODE (TREE_OPERAND (t, 0)) == STRING_CST
1705 /* An ADDR_EXPR can have reference type. In that case, we
1706 shouldn't print the `&' doing so indicates to the user
1707 that the expression has pointer type. */
1708 || (TREE_TYPE (t)
1709 && TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE))
1710 dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
1711 else if (TREE_CODE (TREE_OPERAND (t, 0)) == LABEL_DECL)
1712 dump_unary_op ("&&", t, flags);
1713 else
1714 dump_unary_op ("&", t, flags);
1715 break;
1717 case INDIRECT_REF:
1718 if (TREE_HAS_CONSTRUCTOR (t))
1720 t = TREE_OPERAND (t, 0);
1721 gcc_assert (TREE_CODE (t) == CALL_EXPR);
1722 dump_expr (CALL_EXPR_FN (t), flags | TFF_EXPR_IN_PARENS);
1723 dump_call_expr_args (t, flags, true);
1725 else
1727 if (TREE_OPERAND (t,0) != NULL_TREE
1728 && TREE_TYPE (TREE_OPERAND (t, 0))
1729 && NEXT_CODE (TREE_OPERAND (t, 0)) == REFERENCE_TYPE)
1730 dump_expr (TREE_OPERAND (t, 0), flags);
1731 else
1732 dump_unary_op ("*", t, flags);
1734 break;
1736 case NEGATE_EXPR:
1737 case BIT_NOT_EXPR:
1738 case TRUTH_NOT_EXPR:
1739 case PREDECREMENT_EXPR:
1740 case PREINCREMENT_EXPR:
1741 dump_unary_op (operator_name_info [(int)TREE_CODE (t)].name, t, flags);
1742 break;
1744 case POSTDECREMENT_EXPR:
1745 case POSTINCREMENT_EXPR:
1746 pp_cxx_left_paren (cxx_pp);
1747 dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
1748 pp_cxx_identifier (cxx_pp, operator_name_info[(int)TREE_CODE (t)].name);
1749 pp_cxx_right_paren (cxx_pp);
1750 break;
1752 case NON_LVALUE_EXPR:
1753 /* FIXME: This is a KLUDGE workaround for a parsing problem. There
1754 should be another level of INDIRECT_REF so that I don't have to do
1755 this. */
1756 if (TREE_TYPE (t) != NULL_TREE && NEXT_CODE (t) == POINTER_TYPE)
1758 tree next = TREE_TYPE (TREE_TYPE (t));
1760 while (TREE_CODE (next) == POINTER_TYPE)
1761 next = TREE_TYPE (next);
1763 if (TREE_CODE (next) == FUNCTION_TYPE)
1765 if (flags & TFF_EXPR_IN_PARENS)
1766 pp_cxx_left_paren (cxx_pp);
1767 pp_cxx_star (cxx_pp);
1768 dump_expr (TREE_OPERAND (t, 0), flags & ~TFF_EXPR_IN_PARENS);
1769 if (flags & TFF_EXPR_IN_PARENS)
1770 pp_cxx_right_paren (cxx_pp);
1771 break;
1773 /* Else fall through. */
1775 dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
1776 break;
1778 case NOP_EXPR:
1779 case CONVERT_EXPR:
1781 tree op = TREE_OPERAND (t, 0);
1783 if (!same_type_p (TREE_TYPE (op), TREE_TYPE (t)))
1785 /* It is a cast, but we cannot tell whether it is a
1786 reinterpret or static cast. Use the C style notation. */
1787 if (flags & TFF_EXPR_IN_PARENS)
1788 pp_cxx_left_paren (cxx_pp);
1789 pp_cxx_left_paren (cxx_pp);
1790 dump_type (TREE_TYPE (t), flags);
1791 pp_cxx_right_paren (cxx_pp);
1792 dump_expr (op, flags | TFF_EXPR_IN_PARENS);
1793 if (flags & TFF_EXPR_IN_PARENS)
1794 pp_cxx_right_paren (cxx_pp);
1796 else
1797 dump_expr (op, flags);
1798 break;
1801 case CONSTRUCTOR:
1802 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
1804 tree idx = build_ptrmemfunc_access_expr (t, pfn_identifier);
1806 if (integer_zerop (idx))
1808 /* A NULL pointer-to-member constant. */
1809 pp_cxx_left_paren (cxx_pp);
1810 pp_cxx_left_paren (cxx_pp);
1811 dump_type (TREE_TYPE (t), flags);
1812 pp_cxx_right_paren (cxx_pp);
1813 pp_character (cxx_pp, '0');
1814 pp_cxx_right_paren (cxx_pp);
1815 break;
1817 else if (host_integerp (idx, 0))
1819 tree virtuals;
1820 unsigned HOST_WIDE_INT n;
1822 t = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
1823 t = TYPE_METHOD_BASETYPE (t);
1824 virtuals = BINFO_VIRTUALS (TYPE_BINFO (TYPE_MAIN_VARIANT (t)));
1826 n = tree_low_cst (idx, 0);
1828 /* Map vtable index back one, to allow for the null pointer to
1829 member. */
1830 --n;
1832 while (n > 0 && virtuals)
1834 --n;
1835 virtuals = TREE_CHAIN (virtuals);
1837 if (virtuals)
1839 dump_expr (BV_FN (virtuals),
1840 flags | TFF_EXPR_IN_PARENS);
1841 break;
1845 if (TREE_TYPE (t) && EMPTY_CONSTRUCTOR_P (t))
1847 dump_type (TREE_TYPE (t), 0);
1848 pp_cxx_left_paren (cxx_pp);
1849 pp_cxx_right_paren (cxx_pp);
1851 else
1853 pp_cxx_left_brace (cxx_pp);
1854 dump_expr_init_vec (CONSTRUCTOR_ELTS (t), flags);
1855 pp_cxx_right_brace (cxx_pp);
1858 break;
1860 case OFFSET_REF:
1862 tree ob = TREE_OPERAND (t, 0);
1863 if (is_dummy_object (ob))
1865 t = TREE_OPERAND (t, 1);
1866 if (TREE_CODE (t) == FUNCTION_DECL)
1867 /* A::f */
1868 dump_expr (t, flags | TFF_EXPR_IN_PARENS);
1869 else if (BASELINK_P (t))
1870 dump_expr (OVL_CURRENT (BASELINK_FUNCTIONS (t)),
1871 flags | TFF_EXPR_IN_PARENS);
1872 else
1873 dump_decl (t, flags);
1875 else
1877 if (TREE_CODE (ob) == INDIRECT_REF)
1879 dump_expr (TREE_OPERAND (ob, 0), flags | TFF_EXPR_IN_PARENS);
1880 pp_cxx_arrow (cxx_pp);
1881 pp_cxx_star (cxx_pp);
1883 else
1885 dump_expr (ob, flags | TFF_EXPR_IN_PARENS);
1886 pp_cxx_dot (cxx_pp);
1887 pp_cxx_star (cxx_pp);
1889 dump_expr (TREE_OPERAND (t, 1), flags | TFF_EXPR_IN_PARENS);
1891 break;
1894 case TEMPLATE_PARM_INDEX:
1895 dump_decl (TEMPLATE_PARM_DECL (t), flags & ~TFF_DECL_SPECIFIERS);
1896 break;
1898 case SCOPE_REF:
1899 pp_expression (cxx_pp, t);
1900 break;
1902 case CAST_EXPR:
1903 if (TREE_OPERAND (t, 0) == NULL_TREE
1904 || TREE_CHAIN (TREE_OPERAND (t, 0)))
1906 dump_type (TREE_TYPE (t), flags);
1907 pp_cxx_left_paren (cxx_pp);
1908 dump_expr_list (TREE_OPERAND (t, 0), flags);
1909 pp_cxx_right_paren (cxx_pp);
1911 else
1913 pp_cxx_left_paren (cxx_pp);
1914 dump_type (TREE_TYPE (t), flags);
1915 pp_cxx_right_paren (cxx_pp);
1916 pp_cxx_left_paren (cxx_pp);
1917 dump_expr_list (TREE_OPERAND (t, 0), flags);
1918 pp_cxx_right_paren (cxx_pp);
1920 break;
1922 case STATIC_CAST_EXPR:
1923 pp_cxx_identifier (cxx_pp, "static_cast");
1924 goto cast;
1925 case REINTERPRET_CAST_EXPR:
1926 pp_cxx_identifier (cxx_pp, "reinterpret_cast");
1927 goto cast;
1928 case CONST_CAST_EXPR:
1929 pp_cxx_identifier (cxx_pp, "const_cast");
1930 goto cast;
1931 case DYNAMIC_CAST_EXPR:
1932 pp_cxx_identifier (cxx_pp, "dynamic_cast");
1933 cast:
1934 pp_cxx_begin_template_argument_list (cxx_pp);
1935 dump_type (TREE_TYPE (t), flags);
1936 pp_cxx_end_template_argument_list (cxx_pp);
1937 pp_cxx_left_paren (cxx_pp);
1938 dump_expr (TREE_OPERAND (t, 0), flags);
1939 pp_cxx_right_paren (cxx_pp);
1940 break;
1942 case ARROW_EXPR:
1943 dump_expr (TREE_OPERAND (t, 0), flags);
1944 pp_cxx_arrow (cxx_pp);
1945 break;
1947 case SIZEOF_EXPR:
1948 case ALIGNOF_EXPR:
1949 if (TREE_CODE (t) == SIZEOF_EXPR)
1950 pp_cxx_identifier (cxx_pp, "sizeof");
1951 else
1953 gcc_assert (TREE_CODE (t) == ALIGNOF_EXPR);
1954 pp_cxx_identifier (cxx_pp, "__alignof__");
1956 pp_cxx_whitespace (cxx_pp);
1957 pp_cxx_left_paren (cxx_pp);
1958 if (TYPE_P (TREE_OPERAND (t, 0)))
1959 dump_type (TREE_OPERAND (t, 0), flags);
1960 else
1961 dump_expr (TREE_OPERAND (t, 0), flags);
1962 pp_cxx_right_paren (cxx_pp);
1963 break;
1965 case REALPART_EXPR:
1966 case IMAGPART_EXPR:
1967 pp_cxx_identifier (cxx_pp, operator_name_info[TREE_CODE (t)].name);
1968 pp_cxx_whitespace (cxx_pp);
1969 dump_expr (TREE_OPERAND (t, 0), flags);
1970 break;
1972 case DEFAULT_ARG:
1973 pp_identifier (cxx_pp, "<unparsed>");
1974 break;
1976 case TRY_CATCH_EXPR:
1977 case WITH_CLEANUP_EXPR:
1978 case CLEANUP_POINT_EXPR:
1979 dump_expr (TREE_OPERAND (t, 0), flags);
1980 break;
1982 case PSEUDO_DTOR_EXPR:
1983 dump_expr (TREE_OPERAND (t, 2), flags);
1984 pp_cxx_dot (cxx_pp);
1985 dump_type (TREE_OPERAND (t, 0), flags);
1986 pp_cxx_colon_colon (cxx_pp);
1987 pp_cxx_complement (cxx_pp);
1988 dump_type (TREE_OPERAND (t, 1), flags);
1989 break;
1991 case TEMPLATE_ID_EXPR:
1992 dump_decl (t, flags);
1993 break;
1995 case BIND_EXPR:
1996 case STMT_EXPR:
1997 case STATEMENT_LIST:
1998 /* We don't yet have a way of dumping statements in a
1999 human-readable format. */
2000 pp_string (cxx_pp, "({...})");
2001 break;
2003 case LOOP_EXPR:
2004 pp_string (cxx_pp, "while (1) { ");
2005 dump_expr (TREE_OPERAND (t, 0), flags & ~TFF_EXPR_IN_PARENS);
2006 pp_cxx_right_brace (cxx_pp);
2007 break;
2009 case EXIT_EXPR:
2010 pp_string (cxx_pp, "if (");
2011 dump_expr (TREE_OPERAND (t, 0), flags & ~TFF_EXPR_IN_PARENS);
2012 pp_string (cxx_pp, ") break; ");
2013 break;
2015 case BASELINK:
2016 dump_expr (get_first_fn (t), flags & ~TFF_EXPR_IN_PARENS);
2017 break;
2019 case EMPTY_CLASS_EXPR:
2020 dump_type (TREE_TYPE (t), flags);
2021 pp_cxx_left_paren (cxx_pp);
2022 pp_cxx_right_paren (cxx_pp);
2023 break;
2025 case NON_DEPENDENT_EXPR:
2026 dump_expr (TREE_OPERAND (t, 0), flags);
2027 break;
2029 case EXPR_PACK_EXPANSION:
2030 dump_expr (PACK_EXPANSION_PATTERN (t), flags);
2031 pp_cxx_identifier (cxx_pp, "...");
2032 break;
2034 case RECORD_TYPE:
2035 case UNION_TYPE:
2036 case ENUMERAL_TYPE:
2037 case REAL_TYPE:
2038 case VOID_TYPE:
2039 case BOOLEAN_TYPE:
2040 case INTEGER_TYPE:
2041 case COMPLEX_TYPE:
2042 case VECTOR_TYPE:
2043 pp_type_specifier_seq (cxx_pp, t);
2044 break;
2046 case TYPENAME_TYPE:
2047 /* We get here when we want to print a dependent type as an
2048 id-expression, without any disambiguator decoration. */
2049 pp_id_expression (cxx_pp, t);
2050 break;
2052 case TEMPLATE_TYPE_PARM:
2053 case BOUND_TEMPLATE_TEMPLATE_PARM:
2054 dump_type (t, flags);
2055 break;
2057 case TRAIT_EXPR:
2058 pp_cxx_trait_expression (cxx_pp, t);
2059 break;
2061 case TYPEID_EXPR:
2062 pp_cxx_typeid_expression (cxx_pp, t);
2063 break;
2065 case VA_ARG_EXPR:
2066 pp_cxx_va_arg_expression (cxx_pp, t);
2067 break;
2069 /* This list is incomplete, but should suffice for now.
2070 It is very important that `sorry' does not call
2071 `report_error_function'. That could cause an infinite loop. */
2072 default:
2073 pp_unsupported_tree (cxx_pp, t);
2074 /* fall through to ERROR_MARK... */
2075 case ERROR_MARK:
2076 pp_identifier (cxx_pp, "<expression error>");
2077 break;
2081 static void
2082 dump_binary_op (const char *opstring, tree t, int flags)
2084 pp_cxx_left_paren (cxx_pp);
2085 dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
2086 pp_cxx_whitespace (cxx_pp);
2087 if (opstring)
2088 pp_cxx_identifier (cxx_pp, opstring);
2089 else
2090 pp_identifier (cxx_pp, "<unknown operator>");
2091 pp_cxx_whitespace (cxx_pp);
2092 dump_expr (TREE_OPERAND (t, 1), flags | TFF_EXPR_IN_PARENS);
2093 pp_cxx_right_paren (cxx_pp);
2096 static void
2097 dump_unary_op (const char *opstring, tree t, int flags)
2099 if (flags & TFF_EXPR_IN_PARENS)
2100 pp_cxx_left_paren (cxx_pp);
2101 pp_cxx_identifier (cxx_pp, opstring);
2102 dump_expr (TREE_OPERAND (t, 0), flags & ~TFF_EXPR_IN_PARENS);
2103 if (flags & TFF_EXPR_IN_PARENS)
2104 pp_cxx_right_paren (cxx_pp);
2107 static void
2108 reinit_cxx_pp (void)
2110 pp_clear_output_area (cxx_pp);
2111 pp_base (cxx_pp)->padding = pp_none;
2112 pp_indentation (cxx_pp) = 0;
2113 pp_needs_newline (cxx_pp) = false;
2114 cxx_pp->enclosing_scope = 0;
2118 /* Exported interface to stringifying types, exprs and decls under TFF_*
2119 control. */
2121 const char *
2122 type_as_string (tree typ, int flags)
2124 reinit_cxx_pp ();
2125 dump_type (typ, flags);
2126 return pp_formatted_text (cxx_pp);
2129 const char *
2130 expr_as_string (tree decl, int flags)
2132 reinit_cxx_pp ();
2133 dump_expr (decl, flags);
2134 return pp_formatted_text (cxx_pp);
2137 const char *
2138 decl_as_string (tree decl, int flags)
2140 reinit_cxx_pp ();
2141 dump_decl (decl, flags);
2142 return pp_formatted_text (cxx_pp);
2145 /* Generate the three forms of printable names for cxx_printable_name. */
2147 const char *
2148 lang_decl_name (tree decl, int v)
2150 if (v >= 2)
2151 return decl_as_string (decl, TFF_DECL_SPECIFIERS);
2153 reinit_cxx_pp ();
2154 if (v == 1 && DECL_CLASS_SCOPE_P (decl))
2156 dump_type (CP_DECL_CONTEXT (decl), TFF_PLAIN_IDENTIFIER);
2157 pp_cxx_colon_colon (cxx_pp);
2160 if (TREE_CODE (decl) == FUNCTION_DECL)
2161 dump_function_name (decl, TFF_PLAIN_IDENTIFIER);
2162 else
2163 dump_decl (DECL_NAME (decl), TFF_PLAIN_IDENTIFIER);
2165 return pp_formatted_text (cxx_pp);
2168 /* Return the location of a tree passed to %+ formats. */
2170 static location_t
2171 location_of (tree t)
2173 if (TREE_CODE (t) == PARM_DECL && DECL_CONTEXT (t))
2174 t = DECL_CONTEXT (t);
2175 else if (TYPE_P (t))
2176 t = TYPE_MAIN_DECL (t);
2177 else if (TREE_CODE (t) == OVERLOAD)
2178 t = OVL_FUNCTION (t);
2180 return DECL_SOURCE_LOCATION (t);
2183 /* Now the interfaces from error et al to dump_type et al. Each takes an
2184 on/off VERBOSE flag and supply the appropriate TFF_ flags to a dump_
2185 function. */
2187 static const char *
2188 decl_to_string (tree decl, int verbose)
2190 int flags = 0;
2192 if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == RECORD_TYPE
2193 || TREE_CODE (decl) == UNION_TYPE || TREE_CODE (decl) == ENUMERAL_TYPE)
2194 flags = TFF_CLASS_KEY_OR_ENUM;
2195 if (verbose)
2196 flags |= TFF_DECL_SPECIFIERS;
2197 else if (TREE_CODE (decl) == FUNCTION_DECL)
2198 flags |= TFF_DECL_SPECIFIERS | TFF_RETURN_TYPE;
2199 flags |= TFF_TEMPLATE_HEADER;
2201 reinit_cxx_pp ();
2202 dump_decl (decl, flags);
2203 return pp_formatted_text (cxx_pp);
2206 static const char *
2207 expr_to_string (tree decl)
2209 reinit_cxx_pp ();
2210 dump_expr (decl, 0);
2211 return pp_formatted_text (cxx_pp);
2214 static const char *
2215 fndecl_to_string (tree fndecl, int verbose)
2217 int flags;
2219 flags = TFF_EXCEPTION_SPECIFICATION | TFF_DECL_SPECIFIERS
2220 | TFF_TEMPLATE_HEADER;
2221 if (verbose)
2222 flags |= TFF_FUNCTION_DEFAULT_ARGUMENTS;
2223 reinit_cxx_pp ();
2224 dump_decl (fndecl, flags);
2225 return pp_formatted_text (cxx_pp);
2229 static const char *
2230 code_to_string (enum tree_code c)
2232 return tree_code_name [c];
2235 const char *
2236 language_to_string (enum languages c)
2238 switch (c)
2240 case lang_c:
2241 return "C";
2243 case lang_cplusplus:
2244 return "C++";
2246 case lang_java:
2247 return "Java";
2249 default:
2250 gcc_unreachable ();
2252 return NULL;
2255 /* Return the proper printed version of a parameter to a C++ function. */
2257 static const char *
2258 parm_to_string (int p)
2260 reinit_cxx_pp ();
2261 if (p < 0)
2262 pp_string (cxx_pp, "'this'");
2263 else
2264 pp_decimal_int (cxx_pp, p + 1);
2265 return pp_formatted_text (cxx_pp);
2268 static const char *
2269 op_to_string (enum tree_code p)
2271 tree id = operator_name_info[(int) p].identifier;
2272 return id ? IDENTIFIER_POINTER (id) : "<unknown>";
2275 static const char *
2276 type_to_string (tree typ, int verbose)
2278 int flags = 0;
2279 if (verbose)
2280 flags |= TFF_CLASS_KEY_OR_ENUM;
2281 flags |= TFF_TEMPLATE_HEADER;
2283 reinit_cxx_pp ();
2284 dump_type (typ, flags);
2285 return pp_formatted_text (cxx_pp);
2288 static const char *
2289 assop_to_string (enum tree_code p)
2291 tree id = assignment_operator_name_info[(int) p].identifier;
2292 return id ? IDENTIFIER_POINTER (id) : "{unknown}";
2295 static const char *
2296 args_to_string (tree p, int verbose)
2298 int flags = 0;
2299 if (verbose)
2300 flags |= TFF_CLASS_KEY_OR_ENUM;
2302 if (p == NULL_TREE)
2303 return "";
2305 if (TYPE_P (TREE_VALUE (p)))
2306 return type_as_string (p, flags);
2308 reinit_cxx_pp ();
2309 for (; p; p = TREE_CHAIN (p))
2311 if (TREE_VALUE (p) == null_node)
2312 pp_cxx_identifier (cxx_pp, "NULL");
2313 else
2314 dump_type (error_type (TREE_VALUE (p)), flags);
2315 if (TREE_CHAIN (p))
2316 pp_separate_with_comma (cxx_pp);
2318 return pp_formatted_text (cxx_pp);
2321 static const char *
2322 cv_to_string (tree p, int v)
2324 reinit_cxx_pp ();
2325 pp_base (cxx_pp)->padding = v ? pp_before : pp_none;
2326 pp_cxx_cv_qualifier_seq (cxx_pp, p);
2327 return pp_formatted_text (cxx_pp);
2330 /* Langhook for print_error_function. */
2331 void
2332 cxx_print_error_function (diagnostic_context *context, const char *file)
2334 lhd_print_error_function (context, file);
2335 pp_base_set_prefix (context->printer, file);
2336 maybe_print_instantiation_context (context);
2339 static void
2340 cp_diagnostic_starter (diagnostic_context *context,
2341 diagnostic_info *diagnostic)
2343 diagnostic_report_current_module (context);
2344 cp_print_error_function (context, diagnostic);
2345 maybe_print_instantiation_context (context);
2346 pp_base_set_prefix (context->printer, diagnostic_build_prefix (diagnostic));
2349 static void
2350 cp_diagnostic_finalizer (diagnostic_context *context,
2351 diagnostic_info *diagnostic ATTRIBUTE_UNUSED)
2353 pp_base_destroy_prefix (context->printer);
2356 /* Print current function onto BUFFER, in the process of reporting
2357 a diagnostic message. Called from cp_diagnostic_starter. */
2358 static void
2359 cp_print_error_function (diagnostic_context *context,
2360 diagnostic_info *diagnostic)
2362 if (diagnostic_last_function_changed (context))
2364 const char *old_prefix = context->printer->prefix;
2365 const char *file = LOCATION_FILE (diagnostic->location);
2366 char *new_prefix = file ? file_name_as_prefix (file) : NULL;
2368 pp_base_set_prefix (context->printer, new_prefix);
2370 if (current_function_decl == NULL)
2371 pp_base_string (context->printer, "At global scope:");
2372 else
2373 pp_printf (context->printer, "In %s %qs:",
2374 function_category (current_function_decl),
2375 cxx_printable_name (current_function_decl, 2));
2376 pp_base_newline (context->printer);
2378 diagnostic_set_last_function (context);
2379 pp_base_destroy_prefix (context->printer);
2380 context->printer->prefix = old_prefix;
2384 /* Returns a description of FUNCTION using standard terminology. */
2385 static const char *
2386 function_category (tree fn)
2388 if (DECL_FUNCTION_MEMBER_P (fn))
2390 if (DECL_STATIC_FUNCTION_P (fn))
2391 return "static member function";
2392 else if (DECL_COPY_CONSTRUCTOR_P (fn))
2393 return "copy constructor";
2394 else if (DECL_CONSTRUCTOR_P (fn))
2395 return "constructor";
2396 else if (DECL_DESTRUCTOR_P (fn))
2397 return "destructor";
2398 else
2399 return "member function";
2401 else
2402 return "function";
2405 /* Report the full context of a current template instantiation,
2406 onto BUFFER. */
2407 static void
2408 print_instantiation_full_context (diagnostic_context *context)
2410 struct tinst_level *p = current_instantiation ();
2411 location_t location = input_location;
2413 if (p)
2415 if (current_function_decl != p->decl
2416 && current_function_decl != NULL_TREE)
2417 /* We can get here during the processing of some synthesized
2418 method. Then, P->DECL will be the function that's causing
2419 the synthesis. */
2421 else
2423 if (current_function_decl == p->decl)
2424 /* Avoid redundancy with the "In function" line. */;
2425 else
2426 pp_verbatim (context->printer,
2427 "%s: In instantiation of %qs:\n",
2428 LOCATION_FILE (location),
2429 decl_as_string (p->decl,
2430 TFF_DECL_SPECIFIERS | TFF_RETURN_TYPE));
2432 location = p->locus;
2433 p = p->next;
2437 print_instantiation_partial_context (context, p, location);
2440 /* Same as above but less verbose. */
2441 static void
2442 print_instantiation_partial_context (diagnostic_context *context,
2443 struct tinst_level *t, location_t loc)
2445 expanded_location xloc;
2446 for (; ; t = t->next)
2448 xloc = expand_location (loc);
2449 if (t == NULL)
2450 break;
2451 pp_verbatim (context->printer, "%s:%d: instantiated from %qs\n",
2452 xloc.file, xloc.line,
2453 decl_as_string (t->decl,
2454 TFF_DECL_SPECIFIERS | TFF_RETURN_TYPE));
2455 loc = t->locus;
2457 pp_verbatim (context->printer, "%s:%d: instantiated from here",
2458 xloc.file, xloc.line);
2459 pp_base_newline (context->printer);
2462 /* Called from cp_thing to print the template context for an error. */
2463 static void
2464 maybe_print_instantiation_context (diagnostic_context *context)
2466 if (!problematic_instantiation_changed () || current_instantiation () == 0)
2467 return;
2469 record_last_problematic_instantiation ();
2470 print_instantiation_full_context (context);
2473 /* Report the bare minimum context of a template instantiation. */
2474 void
2475 print_instantiation_context (void)
2477 print_instantiation_partial_context
2478 (global_dc, current_instantiation (), input_location);
2479 diagnostic_flush_buffer (global_dc);
2482 /* Called from output_format -- during diagnostic message processing --
2483 to handle C++ specific format specifier with the following meanings:
2484 %A function argument-list.
2485 %C tree code.
2486 %D declaration.
2487 %E expression.
2488 %F function declaration.
2489 %L language as used in extern "lang".
2490 %O binary operator.
2491 %P function parameter whose position is indicated by an integer.
2492 %Q assignment operator.
2493 %T type.
2494 %V cv-qualifier. */
2495 static bool
2496 cp_printer (pretty_printer *pp, text_info *text, const char *spec,
2497 int precision, bool wide, bool set_locus, bool verbose)
2499 const char *result;
2500 tree t = NULL;
2501 #define next_tree (t = va_arg (*text->args_ptr, tree))
2502 #define next_tcode va_arg (*text->args_ptr, enum tree_code)
2503 #define next_lang va_arg (*text->args_ptr, enum languages)
2504 #define next_int va_arg (*text->args_ptr, int)
2506 if (precision != 0 || wide)
2507 return false;
2509 if (text->locus == NULL)
2510 set_locus = false;
2512 switch (*spec)
2514 case 'A': result = args_to_string (next_tree, verbose); break;
2515 case 'C': result = code_to_string (next_tcode); break;
2516 case 'D':
2518 tree temp = next_tree;
2519 if (DECL_P (temp)
2520 && DECL_DEBUG_EXPR_IS_FROM (temp) && DECL_DEBUG_EXPR (temp))
2522 temp = DECL_DEBUG_EXPR (temp);
2523 if (!DECL_P (temp))
2525 result = expr_to_string (temp);
2526 break;
2529 result = decl_to_string (temp, verbose);
2531 break;
2532 case 'E': result = expr_to_string (next_tree); break;
2533 case 'F': result = fndecl_to_string (next_tree, verbose); break;
2534 case 'L': result = language_to_string (next_lang); break;
2535 case 'O': result = op_to_string (next_tcode); break;
2536 case 'P': result = parm_to_string (next_int); break;
2537 case 'Q': result = assop_to_string (next_tcode); break;
2538 case 'T': result = type_to_string (next_tree, verbose); break;
2539 case 'V': result = cv_to_string (next_tree, verbose); break;
2541 default:
2542 return false;
2545 pp_base_string (pp, result);
2546 if (set_locus && t != NULL)
2547 *text->locus = location_of (t);
2548 return true;
2549 #undef next_tree
2550 #undef next_tcode
2551 #undef next_lang
2552 #undef next_int
2555 /* Callback from cpp_error for PFILE to print diagnostics arising from
2556 interpreting strings. The diagnostic is of type LEVEL; MSG is the
2557 translated message and AP the arguments. */
2559 void
2560 cp_cpp_error (cpp_reader *pfile ATTRIBUTE_UNUSED, int level,
2561 const char *msg, va_list *ap)
2563 diagnostic_info diagnostic;
2564 diagnostic_t dlevel;
2565 switch (level)
2567 case CPP_DL_WARNING:
2568 case CPP_DL_WARNING_SYSHDR:
2569 dlevel = DK_WARNING;
2570 break;
2571 case CPP_DL_PEDWARN:
2572 dlevel = pedantic_error_kind ();
2573 break;
2574 case CPP_DL_ERROR:
2575 dlevel = DK_ERROR;
2576 break;
2577 case CPP_DL_ICE:
2578 dlevel = DK_ICE;
2579 break;
2580 default:
2581 gcc_unreachable ();
2583 diagnostic_set_info_translated (&diagnostic, msg, ap,
2584 input_location, dlevel);
2585 report_diagnostic (&diagnostic);
2588 /* Warn about the use of variadic templates when appropriate. */
2589 void
2590 maybe_warn_variadic_templates (void)
2592 if ((cxx_dialect == cxx98) && !in_system_header)
2593 /* We really want to suppress this warning in system headers,
2594 because libstdc++ uses variadic templates even when we aren't
2595 in C++0x mode. */
2596 pedwarn ("ISO C++ does not include variadic templates");