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 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 2, or (at your option)
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 COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
24 #include "coretypes.h"
31 #include "diagnostic.h"
32 #include "langhooks-def.h"
33 #include "cxx-pretty-print.h"
35 #define pp_separate_with_comma(PP) pp_cxx_separate_with (PP, ',')
37 /* The global buffer where we dump everything. It is there only for
38 transitional purpose. It is expected, in the near future, to be
39 completely removed. */
40 static cxx_pretty_printer scratch_pretty_printer
;
41 #define cxx_pp (&scratch_pretty_printer)
43 # define NEXT_CODE(T) (TREE_CODE (TREE_TYPE (T)))
45 static const char *args_to_string (tree
, int);
46 static const char *assop_to_string (enum tree_code
);
47 static const char *code_to_string (enum tree_code
);
48 static const char *cv_to_string (tree
, int);
49 static const char *decl_to_string (tree
, int);
50 static const char *expr_to_string (tree
);
51 static const char *fndecl_to_string (tree
, int);
52 static const char *op_to_string (enum tree_code
);
53 static const char *parm_to_string (int);
54 static const char *type_to_string (tree
, int);
56 static void dump_type (tree
, int);
57 static void dump_typename (tree
, int);
58 static void dump_simple_decl (tree
, tree
, int);
59 static void dump_decl (tree
, int);
60 static void dump_template_decl (tree
, int);
61 static void dump_function_decl (tree
, int);
62 static void dump_expr (tree
, int);
63 static void dump_unary_op (const char *, tree
, int);
64 static void dump_binary_op (const char *, tree
, int);
65 static void dump_aggr_type (tree
, int);
66 static void dump_type_prefix (tree
, int);
67 static void dump_type_suffix (tree
, int);
68 static void dump_function_name (tree
, int);
69 static void dump_expr_list (tree
, int);
70 static void dump_global_iord (tree
);
71 static void dump_parameters (tree
, int);
72 static void dump_exception_spec (tree
, int);
73 static void dump_template_argument (tree
, int);
74 static void dump_template_argument_list (tree
, int);
75 static void dump_template_parameter (tree
, int);
76 static void dump_template_bindings (tree
, tree
);
77 static void dump_scope (tree
, int);
78 static void dump_template_parms (tree
, int, int);
80 static const char *function_category (tree
);
81 static void maybe_print_instantiation_context (diagnostic_context
*);
82 static void print_instantiation_full_context (diagnostic_context
*);
83 static void print_instantiation_partial_context (diagnostic_context
*,
85 static void cp_diagnostic_starter (diagnostic_context
*, diagnostic_info
*);
86 static void cp_diagnostic_finalizer (diagnostic_context
*, diagnostic_info
*);
87 static void cp_print_error_function (diagnostic_context
*, diagnostic_info
*);
89 static bool cp_printer (pretty_printer
*, text_info
*, const char *,
90 int, bool, bool, bool);
91 static location_t
location_of (tree
);
96 diagnostic_starter (global_dc
) = cp_diagnostic_starter
;
97 diagnostic_finalizer (global_dc
) = cp_diagnostic_finalizer
;
98 diagnostic_format_decoder (global_dc
) = cp_printer
;
100 pp_construct (pp_base (cxx_pp
), NULL
, 0);
101 pp_cxx_pretty_printer_init (cxx_pp
);
104 /* Dump a scope, if deemed necessary. */
107 dump_scope (tree scope
, int flags
)
109 int f
= ~TFF_RETURN_TYPE
& (flags
& (TFF_SCOPE
| TFF_CHASE_TYPEDEF
));
111 if (scope
== NULL_TREE
)
114 if (TREE_CODE (scope
) == NAMESPACE_DECL
)
116 if (scope
!= global_namespace
)
118 dump_decl (scope
, f
);
119 pp_cxx_colon_colon (cxx_pp
);
122 else if (AGGREGATE_TYPE_P (scope
))
124 dump_type (scope
, f
);
125 pp_cxx_colon_colon (cxx_pp
);
127 else if ((flags
& TFF_SCOPE
) && TREE_CODE (scope
) == FUNCTION_DECL
)
129 dump_function_decl (scope
, f
);
130 pp_cxx_colon_colon (cxx_pp
);
134 /* Dump the template ARGument under control of FLAGS. */
137 dump_template_argument (tree arg
, int flags
)
139 if (TYPE_P (arg
) || TREE_CODE (arg
) == TEMPLATE_DECL
)
140 dump_type (arg
, flags
& ~TFF_CLASS_KEY_OR_ENUM
);
142 dump_expr (arg
, (flags
| TFF_EXPR_IN_PARENS
) & ~TFF_CLASS_KEY_OR_ENUM
);
145 /* Dump a template-argument-list ARGS (always a TREE_VEC) under control
149 dump_template_argument_list (tree args
, int flags
)
151 int n
= TREE_VEC_LENGTH (args
);
155 for (i
= 0; i
< n
; ++i
)
158 pp_separate_with_comma (cxx_pp
);
159 dump_template_argument (TREE_VEC_ELT (args
, i
), flags
);
164 /* Dump a template parameter PARM (a TREE_LIST) under control of FLAGS. */
167 dump_template_parameter (tree parm
, int flags
)
169 tree p
= TREE_VALUE (parm
);
170 tree a
= TREE_PURPOSE (parm
);
172 if (TREE_CODE (p
) == TYPE_DECL
)
174 if (flags
& TFF_DECL_SPECIFIERS
)
176 pp_cxx_identifier (cxx_pp
, "class");
178 pp_cxx_tree_identifier (cxx_pp
, DECL_NAME (p
));
180 else if (DECL_NAME (p
))
181 pp_cxx_tree_identifier (cxx_pp
, DECL_NAME (p
));
183 pp_cxx_canonical_template_parameter (cxx_pp
, TREE_TYPE (p
));
186 dump_decl (p
, flags
| TFF_DECL_SPECIFIERS
);
188 if ((flags
& TFF_FUNCTION_DEFAULT_ARGUMENTS
) && a
!= NULL_TREE
)
190 pp_cxx_whitespace (cxx_pp
);
192 pp_cxx_whitespace (cxx_pp
);
193 if (TREE_CODE (p
) == TYPE_DECL
|| TREE_CODE (p
) == TEMPLATE_DECL
)
194 dump_type (a
, flags
& ~TFF_CHASE_TYPEDEF
);
196 dump_expr (a
, flags
| TFF_EXPR_IN_PARENS
);
200 /* Dump, under control of FLAGS, a template-parameter-list binding.
201 PARMS is a TREE_LIST of TREE_VEC of TREE_LIST and ARGS is a
205 dump_template_bindings (tree parms
, tree args
)
211 tree p
= TREE_VALUE (parms
);
212 int lvl
= TMPL_PARMS_DEPTH (parms
);
216 for (i
= 0; i
< TREE_VEC_LENGTH (p
); ++i
)
218 tree arg
= NULL_TREE
;
220 /* Don't crash if we had an invalid argument list. */
221 if (TMPL_ARGS_DEPTH (args
) >= lvl
)
223 tree lvl_args
= TMPL_ARGS_LEVEL (args
, lvl
);
224 if (NUM_TMPL_ARGS (lvl_args
) > arg_idx
)
225 arg
= TREE_VEC_ELT (lvl_args
, arg_idx
);
229 pp_separate_with_comma (cxx_pp
);
230 dump_template_parameter (TREE_VEC_ELT (p
, i
), TFF_PLAIN_IDENTIFIER
);
231 pp_cxx_whitespace (cxx_pp
);
233 pp_cxx_whitespace (cxx_pp
);
235 dump_template_argument (arg
, TFF_PLAIN_IDENTIFIER
);
237 pp_identifier (cxx_pp
, "<missing>");
243 parms
= TREE_CHAIN (parms
);
247 /* Dump a human-readable equivalent of TYPE. FLAGS controls the
251 dump_type (tree t
, int flags
)
256 if (TYPE_PTRMEMFUNC_P (t
))
259 switch (TREE_CODE (t
))
262 pp_identifier (cxx_pp
, "<unresolved overloaded function type>");
266 /* A list of function parms. */
267 dump_parameters (t
, flags
);
270 case IDENTIFIER_NODE
:
271 pp_cxx_tree_identifier (cxx_pp
, t
);
275 dump_type (BINFO_TYPE (t
), flags
);
281 dump_aggr_type (t
, flags
);
285 if (flags
& TFF_CHASE_TYPEDEF
)
287 dump_type (DECL_ORIGINAL_TYPE (t
)
288 ? DECL_ORIGINAL_TYPE (t
) : TREE_TYPE (t
), flags
);
291 /* Else fall through. */
295 dump_decl (t
, flags
& ~TFF_DECL_SPECIFIERS
);
304 pp_type_specifier_seq (cxx_pp
, t
);
307 case TEMPLATE_TEMPLATE_PARM
:
308 /* For parameters inside template signature. */
309 if (TYPE_IDENTIFIER (t
))
310 pp_cxx_tree_identifier (cxx_pp
, TYPE_IDENTIFIER (t
));
312 pp_cxx_canonical_template_parameter (cxx_pp
, t
);
315 case BOUND_TEMPLATE_TEMPLATE_PARM
:
317 tree args
= TYPE_TI_ARGS (t
);
318 pp_cxx_cv_qualifier_seq (cxx_pp
, t
);
319 pp_cxx_tree_identifier (cxx_pp
, TYPE_IDENTIFIER (t
));
320 pp_cxx_begin_template_argument_list (cxx_pp
);
321 dump_template_argument_list (args
, flags
);
322 pp_cxx_end_template_argument_list (cxx_pp
);
326 case TEMPLATE_TYPE_PARM
:
327 pp_cxx_cv_qualifier_seq (cxx_pp
, t
);
328 if (TYPE_IDENTIFIER (t
))
329 pp_cxx_tree_identifier (cxx_pp
, TYPE_IDENTIFIER (t
));
331 pp_cxx_canonical_template_parameter
332 (cxx_pp
, TEMPLATE_TYPE_PARM_INDEX (t
));
335 /* This is not always necessary for pointers and such, but doing this
336 reduces code size. */
345 dump_type_prefix (t
, flags
);
346 dump_type_suffix (t
, flags
);
350 pp_cxx_cv_qualifier_seq (cxx_pp
, t
);
351 pp_cxx_identifier (cxx_pp
,
352 TYPENAME_IS_ENUM_P (t
) ? "enum"
353 : TYPENAME_IS_CLASS_P (t
) ? "class"
355 dump_typename (t
, flags
);
358 case UNBOUND_CLASS_TEMPLATE
:
359 dump_type (TYPE_CONTEXT (t
), flags
);
360 pp_cxx_colon_colon (cxx_pp
);
361 pp_cxx_identifier (cxx_pp
, "template");
362 dump_type (DECL_NAME (TYPE_NAME (t
)), flags
);
366 pp_cxx_identifier (cxx_pp
, "__typeof__");
367 pp_cxx_whitespace (cxx_pp
);
368 pp_cxx_left_paren (cxx_pp
);
369 dump_expr (TYPEOF_TYPE_EXPR (t
), flags
& ~TFF_EXPR_IN_PARENS
);
370 pp_cxx_right_paren (cxx_pp
);
374 pp_unsupported_tree (cxx_pp
, t
);
375 /* Fall through to error. */
378 pp_identifier (cxx_pp
, "<type error>");
383 /* Dump a TYPENAME_TYPE. We need to notice when the context is itself
387 dump_typename (tree t
, int flags
)
389 tree ctx
= TYPE_CONTEXT (t
);
391 if (TREE_CODE (ctx
) == TYPENAME_TYPE
)
392 dump_typename (ctx
, flags
);
394 dump_type (ctx
, flags
& ~TFF_CLASS_KEY_OR_ENUM
);
395 pp_cxx_colon_colon (cxx_pp
);
396 dump_decl (TYPENAME_TYPE_FULLNAME (t
), flags
);
399 /* Return the name of the supplied aggregate, or enumeral type. */
402 class_key_or_enum_as_string (tree t
)
404 if (TREE_CODE (t
) == ENUMERAL_TYPE
)
406 else if (TREE_CODE (t
) == UNION_TYPE
)
408 else if (TYPE_LANG_SPECIFIC (t
) && CLASSTYPE_DECLARED_CLASS (t
))
414 /* Print out a class declaration T under the control of FLAGS,
415 in the form `class foo'. */
418 dump_aggr_type (tree t
, int flags
)
421 const char *variety
= class_key_or_enum_as_string (t
);
425 pp_cxx_cv_qualifier_seq (cxx_pp
, t
);
427 if (flags
& TFF_CLASS_KEY_OR_ENUM
)
428 pp_cxx_identifier (cxx_pp
, variety
);
430 if (flags
& TFF_CHASE_TYPEDEF
)
431 t
= TYPE_MAIN_VARIANT (t
);
433 name
= TYPE_NAME (t
);
437 typdef
= !DECL_ARTIFICIAL (name
);
438 tmplate
= !typdef
&& TREE_CODE (t
) != ENUMERAL_TYPE
439 && TYPE_LANG_SPECIFIC (t
) && CLASSTYPE_TEMPLATE_INFO (t
)
440 && (TREE_CODE (CLASSTYPE_TI_TEMPLATE (t
)) != TEMPLATE_DECL
441 || PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t
)));
442 dump_scope (CP_DECL_CONTEXT (name
), flags
| TFF_SCOPE
);
445 /* Because the template names are mangled, we have to locate
446 the most general template, and use that name. */
447 tree tpl
= CLASSTYPE_TI_TEMPLATE (t
);
449 while (DECL_TEMPLATE_INFO (tpl
))
450 tpl
= DECL_TI_TEMPLATE (tpl
);
453 name
= DECL_NAME (name
);
456 if (name
== 0 || ANON_AGGRNAME_P (name
))
458 if (flags
& TFF_CLASS_KEY_OR_ENUM
)
459 pp_identifier (cxx_pp
, "<anonymous>");
461 pp_printf (pp_base (cxx_pp
), "<anonymous %s>", variety
);
464 pp_cxx_tree_identifier (cxx_pp
, name
);
466 dump_template_parms (TYPE_TEMPLATE_INFO (t
),
467 !CLASSTYPE_USE_TEMPLATE (t
),
468 flags
& ~TFF_TEMPLATE_HEADER
);
471 /* Dump into the obstack the initial part of the output for a given type.
472 This is necessary when dealing with things like functions returning
475 return type of `int (* fee ())()': pointer -> function -> int. Both
476 pointer (and reference and offset) and function (and member) types must
477 deal with prefix and suffix.
479 Arrays must also do this for DECL nodes, like int a[], and for things like
483 dump_type_prefix (tree t
, int flags
)
485 if (TYPE_PTRMEMFUNC_P (t
))
487 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
491 switch (TREE_CODE (t
))
496 tree sub
= TREE_TYPE (t
);
498 dump_type_prefix (sub
, flags
);
499 if (TREE_CODE (sub
) == ARRAY_TYPE
)
501 pp_cxx_whitespace (cxx_pp
);
502 pp_cxx_left_paren (cxx_pp
);
504 pp_character (cxx_pp
, "&*"[TREE_CODE (t
) == POINTER_TYPE
]);
505 pp_base (cxx_pp
)->padding
= pp_before
;
506 pp_cxx_cv_qualifier_seq (cxx_pp
, t
);
512 dump_type_prefix (TREE_TYPE (t
), flags
);
513 if (TREE_CODE (t
) == OFFSET_TYPE
) /* pmfs deal with this in d_t_p */
515 pp_maybe_space (cxx_pp
);
516 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
517 pp_cxx_left_paren (cxx_pp
);
518 dump_type (TYPE_OFFSET_BASETYPE (t
), flags
);
519 pp_cxx_colon_colon (cxx_pp
);
521 pp_cxx_star (cxx_pp
);
522 pp_cxx_cv_qualifier_seq (cxx_pp
, t
);
523 pp_base (cxx_pp
)->padding
= pp_before
;
526 /* Can only be reached through function pointer -- this would not be
527 correct if FUNCTION_DECLs used it. */
529 dump_type_prefix (TREE_TYPE (t
), flags
);
530 pp_maybe_space (cxx_pp
);
531 pp_cxx_left_paren (cxx_pp
);
535 dump_type_prefix (TREE_TYPE (t
), flags
);
536 pp_maybe_space (cxx_pp
);
537 pp_cxx_left_paren (cxx_pp
);
538 dump_aggr_type (TYPE_METHOD_BASETYPE (t
), flags
);
539 pp_cxx_colon_colon (cxx_pp
);
543 dump_type_prefix (TREE_TYPE (t
), flags
);
547 case IDENTIFIER_NODE
:
552 case TEMPLATE_TYPE_PARM
:
553 case TEMPLATE_TEMPLATE_PARM
:
554 case BOUND_TEMPLATE_TEMPLATE_PARM
:
565 dump_type (t
, flags
);
566 pp_base (cxx_pp
)->padding
= pp_before
;
570 pp_unsupported_tree (cxx_pp
, t
);
573 pp_identifier (cxx_pp
, "<typeprefixerror>");
578 /* Dump the suffix of type T, under control of FLAGS. This is the part
579 which appears after the identifier (or function parms). */
582 dump_type_suffix (tree t
, int flags
)
584 if (TYPE_PTRMEMFUNC_P (t
))
585 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
587 switch (TREE_CODE (t
))
592 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
593 pp_cxx_right_paren (cxx_pp
);
594 dump_type_suffix (TREE_TYPE (t
), flags
);
597 /* Can only be reached through function pointer. */
602 pp_cxx_right_paren (cxx_pp
);
603 arg
= TYPE_ARG_TYPES (t
);
604 if (TREE_CODE (t
) == METHOD_TYPE
)
605 arg
= TREE_CHAIN (arg
);
607 /* Function pointers don't have default args. Not in standard C++,
608 anyway; they may in g++, but we'll just pretend otherwise. */
609 dump_parameters (arg
, flags
& ~TFF_FUNCTION_DEFAULT_ARGUMENTS
);
611 if (TREE_CODE (t
) == METHOD_TYPE
)
612 pp_cxx_cv_qualifier_seq
613 (cxx_pp
, TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (t
))));
615 pp_cxx_cv_qualifier_seq(cxx_pp
, t
);
616 dump_exception_spec (TYPE_RAISES_EXCEPTIONS (t
), flags
);
617 dump_type_suffix (TREE_TYPE (t
), flags
);
622 pp_maybe_space (cxx_pp
);
623 pp_cxx_left_bracket (cxx_pp
);
626 if (host_integerp (TYPE_MAX_VALUE (TYPE_DOMAIN (t
)), 0))
628 (cxx_pp
, tree_low_cst (TYPE_MAX_VALUE (TYPE_DOMAIN (t
)), 0) + 1);
629 else if (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (t
))) == MINUS_EXPR
)
630 dump_expr (TREE_OPERAND (TYPE_MAX_VALUE (TYPE_DOMAIN (t
)), 0),
631 flags
& ~TFF_EXPR_IN_PARENS
);
633 dump_expr (fold (cp_build_binary_op
634 (PLUS_EXPR
, TYPE_MAX_VALUE (TYPE_DOMAIN (t
)),
636 flags
& ~TFF_EXPR_IN_PARENS
);
638 pp_cxx_right_bracket (cxx_pp
);
639 dump_type_suffix (TREE_TYPE (t
), flags
);
643 case IDENTIFIER_NODE
:
648 case TEMPLATE_TYPE_PARM
:
649 case TEMPLATE_TEMPLATE_PARM
:
650 case BOUND_TEMPLATE_TEMPLATE_PARM
:
664 pp_unsupported_tree (cxx_pp
, t
);
666 /* Don't mark it here, we should have already done in
673 dump_global_iord (tree t
)
675 const char *p
= NULL
;
677 if (DECL_GLOBAL_CTOR_P (t
))
679 else if (DECL_GLOBAL_DTOR_P (t
))
684 pp_printf (pp_base (cxx_pp
), "(static %s for %s)", p
, input_filename
);
688 dump_simple_decl (tree t
, tree type
, int flags
)
690 if (flags
& TFF_DECL_SPECIFIERS
)
692 dump_type_prefix (type
, flags
);
693 pp_maybe_space (cxx_pp
);
695 if (!DECL_INITIAL (t
) || TREE_CODE (DECL_INITIAL (t
)) != TEMPLATE_PARM_INDEX
)
696 dump_scope (CP_DECL_CONTEXT (t
), flags
);
698 dump_decl (DECL_NAME (t
), flags
);
700 pp_identifier (cxx_pp
, "<anonymous>");
701 if (flags
& TFF_DECL_SPECIFIERS
)
702 dump_type_suffix (type
, flags
);
705 /* Dump a human readable string for the decl T under control of FLAGS. */
708 dump_decl (tree t
, int flags
)
713 switch (TREE_CODE (t
))
716 /* Don't say 'typedef class A' */
717 if (DECL_ARTIFICIAL (t
))
719 if ((flags
& TFF_DECL_SPECIFIERS
)
720 && TREE_CODE (TREE_TYPE (t
)) == TEMPLATE_TYPE_PARM
)
721 /* Say `class T' not just `T'. */
722 pp_cxx_identifier (cxx_pp
, "class");
724 dump_type (TREE_TYPE (t
), flags
);
727 if (flags
& TFF_DECL_SPECIFIERS
)
728 pp_cxx_identifier (cxx_pp
, "typedef");
729 dump_simple_decl (t
, DECL_ORIGINAL_TYPE (t
)
730 ? DECL_ORIGINAL_TYPE (t
) : TREE_TYPE (t
),
735 if (DECL_NAME (t
) && VTABLE_NAME_P (DECL_NAME (t
)))
737 pp_string (cxx_pp
, "vtable for ");
738 gcc_assert (TYPE_P (DECL_CONTEXT (t
)));
739 dump_type (DECL_CONTEXT (t
), flags
);
742 /* Else fall through. */
745 dump_simple_decl (t
, TREE_TYPE (t
), flags
);
749 pp_string (cxx_pp
, "<return value> ");
750 dump_simple_decl (t
, TREE_TYPE (t
), flags
);
754 if (flags
& TFF_DECL_SPECIFIERS
)
755 pp_cxx_declaration (cxx_pp
, t
);
758 dump_scope (CP_DECL_CONTEXT (t
), flags
);
759 if (DECL_NAME (t
) == NULL_TREE
)
760 pp_identifier (cxx_pp
, "<unnamed>");
762 pp_cxx_tree_identifier (cxx_pp
, DECL_NAME (t
));
767 pp_expression (cxx_pp
, t
);
771 dump_decl (TREE_OPERAND (t
, 0), flags
);
772 pp_cxx_left_bracket (cxx_pp
);
773 dump_decl (TREE_OPERAND (t
, 1), flags
);
774 pp_cxx_right_bracket (cxx_pp
);
777 /* So that we can do dump_decl on an aggr type. */
781 dump_type (t
, flags
);
785 /* This is a pseudo destructor call which has not been folded into
786 a PSEUDO_DTOR_EXPR yet. */
787 pp_cxx_complement (cxx_pp
);
788 dump_type (TREE_OPERAND (t
, 0), flags
);
795 /* These special cases are duplicated here so that other functions
796 can feed identifiers to error and get them demangled properly. */
797 case IDENTIFIER_NODE
:
798 if (IDENTIFIER_TYPENAME_P (t
))
800 pp_cxx_identifier (cxx_pp
, "operator");
801 /* Not exactly IDENTIFIER_TYPE_VALUE. */
802 dump_type (TREE_TYPE (t
), flags
);
806 pp_cxx_tree_identifier (cxx_pp
, t
);
813 if (DECL_CLASS_SCOPE_P (t
))
815 dump_type (DECL_CONTEXT (t
), flags
);
816 pp_cxx_colon_colon (cxx_pp
);
818 else if (DECL_CONTEXT (t
))
820 dump_decl (DECL_CONTEXT (t
), flags
);
821 pp_cxx_colon_colon (cxx_pp
);
823 dump_decl (DECL_NAME (t
), flags
);
827 /* If there's only one function, just treat it like an ordinary
833 if (! DECL_LANG_SPECIFIC (t
))
834 pp_identifier (cxx_pp
, "<built-in>");
835 else if (DECL_GLOBAL_CTOR_P (t
) || DECL_GLOBAL_DTOR_P (t
))
836 dump_global_iord (t
);
838 dump_function_decl (t
, flags
);
842 dump_template_decl (t
, flags
);
845 case TEMPLATE_ID_EXPR
:
847 tree name
= TREE_OPERAND (t
, 0);
849 if (is_overloaded_fn (name
))
850 name
= DECL_NAME (get_first_fn (name
));
851 dump_decl (name
, flags
);
852 pp_cxx_begin_template_argument_list (cxx_pp
);
853 if (TREE_OPERAND (t
, 1))
854 dump_template_argument_list (TREE_OPERAND (t
, 1), flags
);
855 pp_cxx_end_template_argument_list (cxx_pp
);
860 pp_cxx_tree_identifier (cxx_pp
, DECL_NAME (t
));
864 if ((TREE_TYPE (t
) != NULL_TREE
&& NEXT_CODE (t
) == ENUMERAL_TYPE
)
865 || (DECL_INITIAL (t
) &&
866 TREE_CODE (DECL_INITIAL (t
)) == TEMPLATE_PARM_INDEX
))
867 dump_simple_decl (t
, TREE_TYPE (t
), flags
);
868 else if (DECL_NAME (t
))
869 dump_decl (DECL_NAME (t
), flags
);
870 else if (DECL_INITIAL (t
))
871 dump_expr (DECL_INITIAL (t
), flags
| TFF_EXPR_IN_PARENS
);
873 pp_identifier (cxx_pp
, "<enumerator>");
877 pp_cxx_identifier (cxx_pp
, "using");
878 dump_type (USING_DECL_SCOPE (t
), flags
);
879 pp_cxx_colon_colon (cxx_pp
);
880 dump_decl (DECL_NAME (t
), flags
);
884 dump_decl (BASELINK_FUNCTIONS (t
), flags
);
887 case NON_DEPENDENT_EXPR
:
888 dump_expr (t
, flags
);
891 case TEMPLATE_TYPE_PARM
:
892 if (flags
& TFF_DECL_SPECIFIERS
)
893 pp_cxx_declaration (cxx_pp
, t
);
895 pp_type_id (cxx_pp
, t
);
898 case UNBOUND_CLASS_TEMPLATE
:
899 dump_type (t
, flags
);
903 pp_unsupported_tree (cxx_pp
, t
);
904 /* Fall through to error. */
907 pp_identifier (cxx_pp
, "<declaration error>");
912 /* Dump a template declaration T under control of FLAGS. This means the
913 'template <...> leaders plus the 'class X' or 'void fn(...)' part. */
916 dump_template_decl (tree t
, int flags
)
918 tree orig_parms
= DECL_TEMPLATE_PARMS (t
);
922 if (flags
& TFF_TEMPLATE_HEADER
)
924 for (parms
= orig_parms
= nreverse (orig_parms
);
926 parms
= TREE_CHAIN (parms
))
928 tree inner_parms
= INNERMOST_TEMPLATE_PARMS (parms
);
929 int len
= TREE_VEC_LENGTH (inner_parms
);
931 pp_cxx_identifier (cxx_pp
, "template");
932 pp_cxx_begin_template_argument_list (cxx_pp
);
934 /* If we've shown the template prefix, we'd better show the
935 parameters' and decl's type too. */
936 flags
|= TFF_DECL_SPECIFIERS
;
938 for (i
= 0; i
< len
; i
++)
941 pp_separate_with_comma (cxx_pp
);
942 dump_template_parameter (TREE_VEC_ELT (inner_parms
, i
), flags
);
944 pp_cxx_end_template_argument_list (cxx_pp
);
945 pp_cxx_whitespace (cxx_pp
);
947 nreverse(orig_parms
);
949 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t
))
950 /* Say `template<arg> class TT' not just `template<arg> TT'. */
951 pp_cxx_identifier (cxx_pp
, "class");
954 if (TREE_CODE (DECL_TEMPLATE_RESULT (t
)) == TYPE_DECL
)
955 dump_type (TREE_TYPE (t
),
956 ((flags
& ~TFF_CLASS_KEY_OR_ENUM
) | TFF_TEMPLATE_NAME
957 | (flags
& TFF_DECL_SPECIFIERS
? TFF_CLASS_KEY_OR_ENUM
: 0)));
958 else if (TREE_CODE (DECL_TEMPLATE_RESULT (t
)) == VAR_DECL
)
959 dump_decl (DECL_TEMPLATE_RESULT (t
), flags
| TFF_TEMPLATE_NAME
);
962 gcc_assert (TREE_TYPE (t
));
963 switch (NEXT_CODE (t
))
967 dump_function_decl (t
, flags
| TFF_TEMPLATE_NAME
);
970 /* This case can occur with some invalid code. */
971 dump_type (TREE_TYPE (t
),
972 (flags
& ~TFF_CLASS_KEY_OR_ENUM
) | TFF_TEMPLATE_NAME
973 | (flags
& TFF_DECL_SPECIFIERS
974 ? TFF_CLASS_KEY_OR_ENUM
: 0));
979 /* Pretty print a function decl. There are several ways we want to print a
980 function declaration. The TFF_ bits in FLAGS tells us how to behave.
981 As error can only apply the '#' flag once to give 0 and 1 for V, there
982 is %D which doesn't print the throw specs, and %F which does. */
985 dump_function_decl (tree t
, int flags
)
989 tree cname
= NULL_TREE
;
990 tree template_args
= NULL_TREE
;
991 tree template_parms
= NULL_TREE
;
992 int show_return
= flags
& TFF_RETURN_TYPE
|| flags
& TFF_DECL_SPECIFIERS
;
994 if (TREE_CODE (t
) == TEMPLATE_DECL
)
995 t
= DECL_TEMPLATE_RESULT (t
);
997 /* Pretty print template instantiations only. */
998 if (DECL_USE_TEMPLATE (t
) && DECL_TEMPLATE_INFO (t
))
1002 template_args
= DECL_TI_ARGS (t
);
1003 tmpl
= most_general_template (t
);
1004 if (tmpl
&& TREE_CODE (tmpl
) == TEMPLATE_DECL
)
1006 template_parms
= DECL_TEMPLATE_PARMS (tmpl
);
1011 fntype
= TREE_TYPE (t
);
1012 parmtypes
= FUNCTION_FIRST_USER_PARMTYPE (t
);
1014 if (DECL_CLASS_SCOPE_P (t
))
1015 cname
= DECL_CONTEXT (t
);
1016 /* This is for partially instantiated template methods. */
1017 else if (TREE_CODE (fntype
) == METHOD_TYPE
)
1018 cname
= TREE_TYPE (TREE_VALUE (parmtypes
));
1020 if (!(flags
& TFF_DECL_SPECIFIERS
))
1022 else if (DECL_STATIC_FUNCTION_P (t
))
1023 pp_cxx_identifier (cxx_pp
, "static");
1024 else if (DECL_VIRTUAL_P (t
))
1025 pp_cxx_identifier (cxx_pp
, "virtual");
1027 /* Print the return type? */
1029 show_return
= !DECL_CONV_FN_P (t
) && !DECL_CONSTRUCTOR_P (t
)
1030 && !DECL_DESTRUCTOR_P (t
);
1032 dump_type_prefix (TREE_TYPE (fntype
), flags
);
1034 /* Print the function name. */
1037 dump_type (cname
, flags
);
1038 pp_cxx_colon_colon (cxx_pp
);
1041 dump_scope (CP_DECL_CONTEXT (t
), flags
);
1043 dump_function_name (t
, flags
);
1045 if (!(flags
& TFF_NO_FUNCTION_ARGUMENTS
))
1047 dump_parameters (parmtypes
, flags
);
1049 if (TREE_CODE (fntype
) == METHOD_TYPE
)
1051 pp_base (cxx_pp
)->padding
= pp_before
;
1052 pp_cxx_cv_qualifier_seq
1053 (cxx_pp
, TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fntype
))));
1056 if (flags
& TFF_EXCEPTION_SPECIFICATION
)
1058 pp_base (cxx_pp
)->padding
= pp_before
;
1059 dump_exception_spec (TYPE_RAISES_EXCEPTIONS (fntype
), flags
);
1063 dump_type_suffix (TREE_TYPE (fntype
), flags
);
1066 /* If T is a template instantiation, dump the parameter binding. */
1067 if (template_parms
!= NULL_TREE
&& template_args
!= NULL_TREE
)
1069 pp_cxx_whitespace (cxx_pp
);
1070 pp_cxx_left_bracket (cxx_pp
);
1071 pp_cxx_identifier (cxx_pp
, "with");
1072 pp_cxx_whitespace (cxx_pp
);
1073 dump_template_bindings (template_parms
, template_args
);
1074 pp_cxx_right_bracket (cxx_pp
);
1078 /* Print a parameter list. If this is for a member function, the
1079 member object ptr (and any other hidden args) should have
1080 already been removed. */
1083 dump_parameters (tree parmtypes
, int flags
)
1087 pp_cxx_left_paren (cxx_pp
);
1089 for (first
= 1; parmtypes
!= void_list_node
;
1090 parmtypes
= TREE_CHAIN (parmtypes
))
1093 pp_separate_with_comma (cxx_pp
);
1097 pp_cxx_identifier (cxx_pp
, "...");
1100 dump_type (TREE_VALUE (parmtypes
), flags
);
1102 if ((flags
& TFF_FUNCTION_DEFAULT_ARGUMENTS
) && TREE_PURPOSE (parmtypes
))
1104 pp_cxx_whitespace (cxx_pp
);
1106 pp_cxx_whitespace (cxx_pp
);
1107 dump_expr (TREE_PURPOSE (parmtypes
), flags
| TFF_EXPR_IN_PARENS
);
1111 pp_cxx_right_paren (cxx_pp
);
1114 /* Print an exception specification. T is the exception specification. */
1117 dump_exception_spec (tree t
, int flags
)
1121 pp_cxx_identifier (cxx_pp
, "throw");
1122 pp_cxx_whitespace (cxx_pp
);
1123 pp_cxx_left_paren (cxx_pp
);
1124 if (TREE_VALUE (t
) != NULL_TREE
)
1127 dump_type (TREE_VALUE (t
), flags
);
1131 pp_separate_with_comma (cxx_pp
);
1133 pp_cxx_right_paren (cxx_pp
);
1137 /* Handle the function name for a FUNCTION_DECL node, grokking operators
1138 and destructors properly. */
1141 dump_function_name (tree t
, int flags
)
1143 tree name
= DECL_NAME (t
);
1145 /* We can get here with a decl that was synthesized by language-
1146 independent machinery (e.g. coverage.c) in which case it won't
1147 have a lang_specific structure attached and DECL_CONSTRUCTOR_P
1148 will crash. In this case it is safe just to print out the
1150 if (!DECL_LANG_SPECIFIC (t
))
1152 pp_cxx_tree_identifier (cxx_pp
, name
);
1156 if (TREE_CODE (t
) == TEMPLATE_DECL
)
1157 t
= DECL_TEMPLATE_RESULT (t
);
1159 /* Don't let the user see __comp_ctor et al. */
1160 if (DECL_CONSTRUCTOR_P (t
)
1161 || DECL_DESTRUCTOR_P (t
))
1162 name
= constructor_name (DECL_CONTEXT (t
));
1164 if (DECL_DESTRUCTOR_P (t
))
1166 pp_cxx_complement (cxx_pp
);
1167 dump_decl (name
, TFF_PLAIN_IDENTIFIER
);
1169 else if (DECL_CONV_FN_P (t
))
1171 /* This cannot use the hack that the operator's return
1172 type is stashed off of its name because it may be
1173 used for error reporting. In the case of conflicting
1174 declarations, both will have the same name, yet
1175 the types will be different, hence the TREE_TYPE field
1176 of the first name will be clobbered by the second. */
1177 pp_cxx_identifier (cxx_pp
, "operator");
1178 dump_type (TREE_TYPE (TREE_TYPE (t
)), flags
);
1180 else if (IDENTIFIER_OPNAME_P (name
))
1181 pp_cxx_tree_identifier (cxx_pp
, name
);
1183 dump_decl (name
, flags
);
1185 if (DECL_TEMPLATE_INFO (t
)
1186 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (t
)
1187 && (TREE_CODE (DECL_TI_TEMPLATE (t
)) != TEMPLATE_DECL
1188 || PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t
))))
1189 dump_template_parms (DECL_TEMPLATE_INFO (t
), !DECL_USE_TEMPLATE (t
), flags
);
1192 /* Dump the template parameters from the template info INFO under control of
1193 FLAGS. PRIMARY indicates whether this is a primary template decl, or
1194 specialization (partial or complete). For partial specializations we show
1195 the specialized parameter values. For a primary template we show no
1199 dump_template_parms (tree info
, int primary
, int flags
)
1201 tree args
= info
? TI_ARGS (info
) : NULL_TREE
;
1203 if (primary
&& flags
& TFF_TEMPLATE_NAME
)
1205 flags
&= ~(TFF_CLASS_KEY_OR_ENUM
| TFF_TEMPLATE_NAME
);
1206 pp_cxx_begin_template_argument_list (cxx_pp
);
1208 /* Be careful only to print things when we have them, so as not
1209 to crash producing error messages. */
1210 if (args
&& !primary
)
1214 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args
))
1215 args
= TREE_VEC_ELT (args
, TREE_VEC_LENGTH (args
) - 1);
1217 len
= TREE_VEC_LENGTH (args
);
1219 for (ix
= 0; ix
!= len
; ix
++)
1221 tree arg
= TREE_VEC_ELT (args
, ix
);
1224 pp_separate_with_comma (cxx_pp
);
1227 pp_identifier (cxx_pp
, "<template parameter error>");
1229 dump_template_argument (arg
, flags
);
1234 tree tpl
= TI_TEMPLATE (info
);
1235 tree parms
= DECL_TEMPLATE_PARMS (tpl
);
1238 parms
= TREE_CODE (parms
) == TREE_LIST
? TREE_VALUE (parms
) : NULL_TREE
;
1239 len
= parms
? TREE_VEC_LENGTH (parms
) : 0;
1241 for (ix
= 0; ix
!= len
; ix
++)
1243 tree parm
= TREE_VALUE (TREE_VEC_ELT (parms
, ix
));
1246 pp_separate_with_comma (cxx_pp
);
1248 dump_decl (parm
, flags
& ~TFF_DECL_SPECIFIERS
);
1251 pp_cxx_end_template_argument_list (cxx_pp
);
1254 /* Print out a list of initializers (subr of dump_expr). */
1257 dump_expr_list (tree l
, int flags
)
1261 dump_expr (TREE_VALUE (l
), flags
| TFF_EXPR_IN_PARENS
);
1264 pp_separate_with_comma (cxx_pp
);
1268 /* Print out a vector of initializers (subr of dump_expr). */
1271 dump_expr_init_vec (VEC(constructor_elt
,gc
) *v
, int flags
)
1273 unsigned HOST_WIDE_INT idx
;
1276 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1278 dump_expr (value
, flags
| TFF_EXPR_IN_PARENS
);
1279 if (idx
!= VEC_length (constructor_elt
, v
) - 1)
1280 pp_separate_with_comma (cxx_pp
);
1285 /* We've gotten an indirect REFERENCE (an OBJ_TYPE_REF) to a virtual
1286 function. Resolve it to a close relative -- in the sense of static
1287 type -- variant being overridden. That is close to what was written in
1288 the source code. Subroutine of dump_expr. */
1291 resolve_virtual_fun_from_obj_type_ref (tree ref
)
1293 tree obj_type
= TREE_TYPE (OBJ_TYPE_REF_OBJECT (ref
));
1294 HOST_WIDE_INT index
= tree_low_cst (OBJ_TYPE_REF_TOKEN (ref
), 1);
1295 tree fun
= BINFO_VIRTUALS (TYPE_BINFO (TREE_TYPE (obj_type
)));
1298 fun
= TREE_CHAIN (fun
);
1299 index
-= (TARGET_VTABLE_USES_DESCRIPTORS
1300 ? TARGET_VTABLE_USES_DESCRIPTORS
: 1);
1306 /* Print out an expression E under control of FLAGS. */
1309 dump_expr (tree t
, int flags
)
1314 switch (TREE_CODE (t
))
1322 case NAMESPACE_DECL
:
1325 case IDENTIFIER_NODE
:
1326 dump_decl (t
, (flags
& ~TFF_DECL_SPECIFIERS
) | TFF_NO_FUNCTION_ARGUMENTS
);
1330 if (PAREN_STRING_LITERAL_P (t
))
1331 pp_cxx_left_paren (cxx_pp
);
1332 pp_c_constant (pp_c_base (cxx_pp
), t
);
1333 if (PAREN_STRING_LITERAL_P (t
))
1334 pp_cxx_right_paren (cxx_pp
);
1339 pp_c_constant (pp_c_base (cxx_pp
), t
);
1343 pp_cxx_identifier (cxx_pp
, "throw");
1344 dump_expr (TREE_OPERAND (t
, 0), flags
);
1348 pp_ampersand (cxx_pp
);
1349 dump_type (PTRMEM_CST_CLASS (t
), flags
);
1350 pp_cxx_colon_colon (cxx_pp
);
1351 pp_cxx_tree_identifier (cxx_pp
, DECL_NAME (PTRMEM_CST_MEMBER (t
)));
1355 pp_cxx_left_paren (cxx_pp
);
1356 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1357 pp_separate_with_comma (cxx_pp
);
1358 dump_expr (TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
1359 pp_cxx_right_paren (cxx_pp
);
1363 pp_cxx_left_paren (cxx_pp
);
1364 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1365 pp_string (cxx_pp
, " ? ");
1366 dump_expr (TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
1367 pp_string (cxx_pp
, " : ");
1368 dump_expr (TREE_OPERAND (t
, 2), flags
| TFF_EXPR_IN_PARENS
);
1369 pp_cxx_right_paren (cxx_pp
);
1373 if (TREE_HAS_CONSTRUCTOR (t
))
1375 pp_cxx_identifier (cxx_pp
, "new");
1376 pp_cxx_whitespace (cxx_pp
);
1377 dump_type (TREE_TYPE (TREE_TYPE (t
)), flags
);
1380 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1383 case AGGR_INIT_EXPR
:
1385 tree fn
= NULL_TREE
;
1387 if (TREE_CODE (TREE_OPERAND (t
, 0)) == ADDR_EXPR
)
1388 fn
= TREE_OPERAND (TREE_OPERAND (t
, 0), 0);
1390 if (fn
&& TREE_CODE (fn
) == FUNCTION_DECL
)
1392 if (DECL_CONSTRUCTOR_P (fn
))
1393 dump_type (DECL_CONTEXT (fn
), flags
);
1398 dump_expr (TREE_OPERAND (t
, 0), 0);
1400 pp_cxx_left_paren (cxx_pp
);
1401 if (TREE_OPERAND (t
, 1))
1402 dump_expr_list (TREE_CHAIN (TREE_OPERAND (t
, 1)), flags
);
1403 pp_cxx_right_paren (cxx_pp
);
1408 tree fn
= TREE_OPERAND (t
, 0);
1409 tree args
= TREE_OPERAND (t
, 1);
1411 if (TREE_CODE (fn
) == ADDR_EXPR
)
1412 fn
= TREE_OPERAND (fn
, 0);
1414 /* Nobody is interested in seeing the guts of vcalls. */
1415 if (TREE_CODE (fn
) == OBJ_TYPE_REF
)
1416 fn
= resolve_virtual_fun_from_obj_type_ref (fn
);
1418 if (TREE_TYPE (fn
) != NULL_TREE
&& NEXT_CODE (fn
) == METHOD_TYPE
)
1420 tree ob
= TREE_VALUE (args
);
1421 if (TREE_CODE (ob
) == ADDR_EXPR
)
1423 dump_expr (TREE_OPERAND (ob
, 0), flags
| TFF_EXPR_IN_PARENS
);
1424 pp_cxx_dot (cxx_pp
);
1426 else if (TREE_CODE (ob
) != PARM_DECL
1427 || strcmp (IDENTIFIER_POINTER (DECL_NAME (ob
)), "this"))
1429 dump_expr (ob
, flags
| TFF_EXPR_IN_PARENS
);
1430 pp_cxx_arrow (cxx_pp
);
1432 args
= TREE_CHAIN (args
);
1434 dump_expr (fn
, flags
| TFF_EXPR_IN_PARENS
);
1435 pp_cxx_left_paren (cxx_pp
);
1436 dump_expr_list (args
, flags
);
1437 pp_cxx_right_paren (cxx_pp
);
1443 tree type
= TREE_OPERAND (t
, 1);
1444 tree init
= TREE_OPERAND (t
, 2);
1445 if (NEW_EXPR_USE_GLOBAL (t
))
1446 pp_cxx_colon_colon (cxx_pp
);
1447 pp_cxx_identifier (cxx_pp
, "new");
1448 if (TREE_OPERAND (t
, 0))
1450 pp_cxx_left_paren (cxx_pp
);
1451 dump_expr_list (TREE_OPERAND (t
, 0), flags
);
1452 pp_cxx_right_paren (cxx_pp
);
1453 pp_cxx_whitespace (cxx_pp
);
1455 if (TREE_CODE (type
) == ARRAY_REF
)
1456 type
= build_cplus_array_type
1457 (TREE_OPERAND (type
, 0),
1458 build_index_type (fold_build2 (MINUS_EXPR
, integer_type_node
,
1459 TREE_OPERAND (type
, 1),
1460 integer_one_node
)));
1461 dump_type (type
, flags
);
1464 pp_cxx_left_paren (cxx_pp
);
1465 if (TREE_CODE (init
) == TREE_LIST
)
1466 dump_expr_list (init
, flags
);
1467 else if (init
== void_zero_node
)
1468 /* This representation indicates an empty initializer,
1469 e.g.: "new int()". */
1472 dump_expr (init
, flags
);
1473 pp_cxx_right_paren (cxx_pp
);
1479 /* Note that this only works for G++ target exprs. If somebody
1480 builds a general TARGET_EXPR, there's no way to represent that
1481 it initializes anything other that the parameter slot for the
1482 default argument. Note we may have cleared out the first
1483 operand in expand_expr, so don't go killing ourselves. */
1484 if (TREE_OPERAND (t
, 1))
1485 dump_expr (TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
1493 case TRUNC_DIV_EXPR
:
1494 case TRUNC_MOD_EXPR
:
1502 case TRUTH_ANDIF_EXPR
:
1503 case TRUTH_ORIF_EXPR
:
1510 case EXACT_DIV_EXPR
:
1511 dump_binary_op (operator_name_info
[(int) TREE_CODE (t
)].name
, t
, flags
);
1515 case FLOOR_DIV_EXPR
:
1516 case ROUND_DIV_EXPR
:
1518 dump_binary_op ("/", t
, flags
);
1522 case FLOOR_MOD_EXPR
:
1523 case ROUND_MOD_EXPR
:
1524 dump_binary_op ("%", t
, flags
);
1529 tree ob
= TREE_OPERAND (t
, 0);
1530 if (TREE_CODE (ob
) == INDIRECT_REF
)
1532 ob
= TREE_OPERAND (ob
, 0);
1533 if (TREE_CODE (ob
) != PARM_DECL
1535 && strcmp (IDENTIFIER_POINTER (DECL_NAME (ob
)), "this")))
1537 dump_expr (ob
, flags
| TFF_EXPR_IN_PARENS
);
1538 pp_cxx_arrow (cxx_pp
);
1543 dump_expr (ob
, flags
| TFF_EXPR_IN_PARENS
);
1544 pp_cxx_dot (cxx_pp
);
1546 dump_expr (TREE_OPERAND (t
, 1), flags
& ~TFF_EXPR_IN_PARENS
);
1551 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1552 pp_cxx_left_bracket (cxx_pp
);
1553 dump_expr (TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
1554 pp_cxx_right_bracket (cxx_pp
);
1557 case UNARY_PLUS_EXPR
:
1558 dump_unary_op ("+", t
, flags
);
1562 if (TREE_CODE (TREE_OPERAND (t
, 0)) == FUNCTION_DECL
1563 || TREE_CODE (TREE_OPERAND (t
, 0)) == STRING_CST
1564 /* An ADDR_EXPR can have reference type. In that case, we
1565 shouldn't print the `&' doing so indicates to the user
1566 that the expression has pointer type. */
1568 && TREE_CODE (TREE_TYPE (t
)) == REFERENCE_TYPE
))
1569 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1570 else if (TREE_CODE (TREE_OPERAND (t
, 0)) == LABEL_DECL
)
1571 dump_unary_op ("&&", t
, flags
);
1573 dump_unary_op ("&", t
, flags
);
1577 if (TREE_HAS_CONSTRUCTOR (t
))
1579 t
= TREE_OPERAND (t
, 0);
1580 gcc_assert (TREE_CODE (t
) == CALL_EXPR
);
1581 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1582 pp_cxx_left_paren (cxx_pp
);
1583 dump_expr_list (TREE_CHAIN (TREE_OPERAND (t
, 1)), flags
);
1584 pp_cxx_right_paren (cxx_pp
);
1588 if (TREE_OPERAND (t
,0) != NULL_TREE
1589 && TREE_TYPE (TREE_OPERAND (t
, 0))
1590 && NEXT_CODE (TREE_OPERAND (t
, 0)) == REFERENCE_TYPE
)
1591 dump_expr (TREE_OPERAND (t
, 0), flags
);
1593 dump_unary_op ("*", t
, flags
);
1599 case TRUTH_NOT_EXPR
:
1600 case PREDECREMENT_EXPR
:
1601 case PREINCREMENT_EXPR
:
1602 dump_unary_op (operator_name_info
[(int)TREE_CODE (t
)].name
, t
, flags
);
1605 case POSTDECREMENT_EXPR
:
1606 case POSTINCREMENT_EXPR
:
1607 pp_cxx_left_paren (cxx_pp
);
1608 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1609 pp_cxx_identifier (cxx_pp
, operator_name_info
[(int)TREE_CODE (t
)].name
);
1610 pp_cxx_right_paren (cxx_pp
);
1613 case NON_LVALUE_EXPR
:
1614 /* FIXME: This is a KLUDGE workaround for a parsing problem. There
1615 should be another level of INDIRECT_REF so that I don't have to do
1617 if (TREE_TYPE (t
) != NULL_TREE
&& NEXT_CODE (t
) == POINTER_TYPE
)
1619 tree next
= TREE_TYPE (TREE_TYPE (t
));
1621 while (TREE_CODE (next
) == POINTER_TYPE
)
1622 next
= TREE_TYPE (next
);
1624 if (TREE_CODE (next
) == FUNCTION_TYPE
)
1626 if (flags
& TFF_EXPR_IN_PARENS
)
1627 pp_cxx_left_paren (cxx_pp
);
1628 pp_cxx_star (cxx_pp
);
1629 dump_expr (TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
1630 if (flags
& TFF_EXPR_IN_PARENS
)
1631 pp_cxx_right_paren (cxx_pp
);
1634 /* Else fall through. */
1636 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1642 tree op
= TREE_OPERAND (t
, 0);
1644 if (!same_type_p (TREE_TYPE (op
), TREE_TYPE (t
)))
1646 /* It is a cast, but we cannot tell whether it is a
1647 reinterpret or static cast. Use the C style notation. */
1648 if (flags
& TFF_EXPR_IN_PARENS
)
1649 pp_cxx_left_paren (cxx_pp
);
1650 pp_cxx_left_paren (cxx_pp
);
1651 dump_type (TREE_TYPE (t
), flags
);
1652 pp_cxx_right_paren (cxx_pp
);
1653 dump_expr (op
, flags
| TFF_EXPR_IN_PARENS
);
1654 if (flags
& TFF_EXPR_IN_PARENS
)
1655 pp_cxx_right_paren (cxx_pp
);
1658 dump_expr (op
, flags
);
1663 if (TREE_TYPE (t
) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t
)))
1665 tree idx
= build_ptrmemfunc_access_expr (t
, pfn_identifier
);
1667 if (integer_zerop (idx
))
1669 /* A NULL pointer-to-member constant. */
1670 pp_cxx_left_paren (cxx_pp
);
1671 pp_cxx_left_paren (cxx_pp
);
1672 dump_type (TREE_TYPE (t
), flags
);
1673 pp_cxx_right_paren (cxx_pp
);
1674 pp_character (cxx_pp
, '0');
1675 pp_cxx_right_paren (cxx_pp
);
1678 else if (host_integerp (idx
, 0))
1681 unsigned HOST_WIDE_INT n
;
1683 t
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t
)));
1684 t
= TYPE_METHOD_BASETYPE (t
);
1685 virtuals
= BINFO_VIRTUALS (TYPE_BINFO (TYPE_MAIN_VARIANT (t
)));
1687 n
= tree_low_cst (idx
, 0);
1689 /* Map vtable index back one, to allow for the null pointer to
1693 while (n
> 0 && virtuals
)
1696 virtuals
= TREE_CHAIN (virtuals
);
1700 dump_expr (BV_FN (virtuals
),
1701 flags
| TFF_EXPR_IN_PARENS
);
1706 if (TREE_TYPE (t
) && EMPTY_CONSTRUCTOR_P (t
))
1708 dump_type (TREE_TYPE (t
), 0);
1709 pp_cxx_left_paren (cxx_pp
);
1710 pp_cxx_right_paren (cxx_pp
);
1714 pp_cxx_left_brace (cxx_pp
);
1715 dump_expr_init_vec (CONSTRUCTOR_ELTS (t
), flags
);
1716 pp_cxx_right_brace (cxx_pp
);
1723 tree ob
= TREE_OPERAND (t
, 0);
1724 if (is_dummy_object (ob
))
1726 t
= TREE_OPERAND (t
, 1);
1727 if (TREE_CODE (t
) == FUNCTION_DECL
)
1729 dump_expr (t
, flags
| TFF_EXPR_IN_PARENS
);
1730 else if (BASELINK_P (t
))
1731 dump_expr (OVL_CURRENT (BASELINK_FUNCTIONS (t
)),
1732 flags
| TFF_EXPR_IN_PARENS
);
1734 dump_decl (t
, flags
);
1738 if (TREE_CODE (ob
) == INDIRECT_REF
)
1740 dump_expr (TREE_OPERAND (ob
, 0), flags
| TFF_EXPR_IN_PARENS
);
1741 pp_cxx_arrow (cxx_pp
);
1742 pp_cxx_star (cxx_pp
);
1746 dump_expr (ob
, flags
| TFF_EXPR_IN_PARENS
);
1747 pp_cxx_dot (cxx_pp
);
1748 pp_cxx_star (cxx_pp
);
1750 dump_expr (TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
1755 case TEMPLATE_PARM_INDEX
:
1756 dump_decl (TEMPLATE_PARM_DECL (t
), flags
& ~TFF_DECL_SPECIFIERS
);
1760 pp_expression (cxx_pp
, t
);
1764 if (TREE_OPERAND (t
, 0) == NULL_TREE
1765 || TREE_CHAIN (TREE_OPERAND (t
, 0)))
1767 dump_type (TREE_TYPE (t
), flags
);
1768 pp_cxx_left_paren (cxx_pp
);
1769 dump_expr_list (TREE_OPERAND (t
, 0), flags
);
1770 pp_cxx_right_paren (cxx_pp
);
1774 pp_cxx_left_paren (cxx_pp
);
1775 dump_type (TREE_TYPE (t
), flags
);
1776 pp_cxx_right_paren (cxx_pp
);
1777 pp_cxx_left_paren (cxx_pp
);
1778 dump_expr_list (TREE_OPERAND (t
, 0), flags
);
1779 pp_cxx_right_paren (cxx_pp
);
1783 case STATIC_CAST_EXPR
:
1784 pp_cxx_identifier (cxx_pp
, "static_cast");
1786 case REINTERPRET_CAST_EXPR
:
1787 pp_cxx_identifier (cxx_pp
, "reinterpret_cast");
1789 case CONST_CAST_EXPR
:
1790 pp_cxx_identifier (cxx_pp
, "const_cast");
1792 case DYNAMIC_CAST_EXPR
:
1793 pp_cxx_identifier (cxx_pp
, "dynamic_cast");
1795 pp_cxx_begin_template_argument_list (cxx_pp
);
1796 dump_type (TREE_TYPE (t
), flags
);
1797 pp_cxx_end_template_argument_list (cxx_pp
);
1798 pp_cxx_left_paren (cxx_pp
);
1799 dump_expr (TREE_OPERAND (t
, 0), flags
);
1800 pp_cxx_right_paren (cxx_pp
);
1804 dump_expr (TREE_OPERAND (t
, 0), flags
);
1805 pp_cxx_arrow (cxx_pp
);
1810 if (TREE_CODE (t
) == SIZEOF_EXPR
)
1811 pp_cxx_identifier (cxx_pp
, "sizeof");
1814 gcc_assert (TREE_CODE (t
) == ALIGNOF_EXPR
);
1815 pp_cxx_identifier (cxx_pp
, "__alignof__");
1817 pp_cxx_whitespace (cxx_pp
);
1818 pp_cxx_left_paren (cxx_pp
);
1819 if (TYPE_P (TREE_OPERAND (t
, 0)))
1820 dump_type (TREE_OPERAND (t
, 0), flags
);
1822 dump_expr (TREE_OPERAND (t
, 0), flags
);
1823 pp_cxx_right_paren (cxx_pp
);
1828 pp_cxx_identifier (cxx_pp
, operator_name_info
[TREE_CODE (t
)].name
);
1829 pp_cxx_whitespace (cxx_pp
);
1830 dump_expr (TREE_OPERAND (t
, 0), flags
);
1834 pp_identifier (cxx_pp
, "<unparsed>");
1837 case TRY_CATCH_EXPR
:
1838 case WITH_CLEANUP_EXPR
:
1839 case CLEANUP_POINT_EXPR
:
1840 dump_expr (TREE_OPERAND (t
, 0), flags
);
1843 case PSEUDO_DTOR_EXPR
:
1844 dump_expr (TREE_OPERAND (t
, 2), flags
);
1845 pp_cxx_dot (cxx_pp
);
1846 dump_type (TREE_OPERAND (t
, 0), flags
);
1847 pp_cxx_colon_colon (cxx_pp
);
1848 pp_cxx_complement (cxx_pp
);
1849 dump_type (TREE_OPERAND (t
, 1), flags
);
1852 case TEMPLATE_ID_EXPR
:
1853 dump_decl (t
, flags
);
1858 case STATEMENT_LIST
:
1859 /* We don't yet have a way of dumping statements in a
1860 human-readable format. */
1861 pp_string (cxx_pp
, "({...})");
1865 pp_string (cxx_pp
, "while (1) { ");
1866 dump_expr (TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
1867 pp_cxx_right_brace (cxx_pp
);
1871 pp_string (cxx_pp
, "if (");
1872 dump_expr (TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
1873 pp_string (cxx_pp
, ") break; ");
1877 dump_expr (get_first_fn (t
), flags
& ~TFF_EXPR_IN_PARENS
);
1880 case EMPTY_CLASS_EXPR
:
1881 dump_type (TREE_TYPE (t
), flags
);
1882 pp_cxx_left_paren (cxx_pp
);
1883 pp_cxx_right_paren (cxx_pp
);
1886 case NON_DEPENDENT_EXPR
:
1887 dump_expr (TREE_OPERAND (t
, 0), flags
);
1890 /* This list is incomplete, but should suffice for now.
1891 It is very important that `sorry' does not call
1892 `report_error_function'. That could cause an infinite loop. */
1894 pp_unsupported_tree (cxx_pp
, t
);
1895 /* fall through to ERROR_MARK... */
1897 pp_identifier (cxx_pp
, "<expression error>");
1903 dump_binary_op (const char *opstring
, tree t
, int flags
)
1905 pp_cxx_left_paren (cxx_pp
);
1906 dump_expr (TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
1907 pp_cxx_whitespace (cxx_pp
);
1909 pp_cxx_identifier (cxx_pp
, opstring
);
1911 pp_identifier (cxx_pp
, "<unknown operator>");
1912 pp_cxx_whitespace (cxx_pp
);
1913 dump_expr (TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
1914 pp_cxx_right_paren (cxx_pp
);
1918 dump_unary_op (const char *opstring
, tree t
, int flags
)
1920 if (flags
& TFF_EXPR_IN_PARENS
)
1921 pp_cxx_left_paren (cxx_pp
);
1922 pp_cxx_identifier (cxx_pp
, opstring
);
1923 dump_expr (TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
1924 if (flags
& TFF_EXPR_IN_PARENS
)
1925 pp_cxx_right_paren (cxx_pp
);
1929 reinit_cxx_pp (void)
1931 pp_clear_output_area (cxx_pp
);
1932 pp_base (cxx_pp
)->padding
= pp_none
;
1933 pp_indentation (cxx_pp
) = 0;
1934 pp_needs_newline (cxx_pp
) = false;
1935 cxx_pp
->enclosing_scope
= 0;
1939 /* Exported interface to stringifying types, exprs and decls under TFF_*
1943 type_as_string (tree typ
, int flags
)
1946 dump_type (typ
, flags
);
1947 return pp_formatted_text (cxx_pp
);
1951 expr_as_string (tree decl
, int flags
)
1954 dump_expr (decl
, flags
);
1955 return pp_formatted_text (cxx_pp
);
1959 decl_as_string (tree decl
, int flags
)
1962 dump_decl (decl
, flags
);
1963 return pp_formatted_text (cxx_pp
);
1966 /* Generate the three forms of printable names for cxx_printable_name. */
1969 lang_decl_name (tree decl
, int v
)
1972 return decl_as_string (decl
, TFF_DECL_SPECIFIERS
);
1975 if (v
== 1 && DECL_CLASS_SCOPE_P (decl
))
1977 dump_type (CP_DECL_CONTEXT (decl
), TFF_PLAIN_IDENTIFIER
);
1978 pp_cxx_colon_colon (cxx_pp
);
1981 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1982 dump_function_name (decl
, TFF_PLAIN_IDENTIFIER
);
1984 dump_decl (DECL_NAME (decl
), TFF_PLAIN_IDENTIFIER
);
1986 return pp_formatted_text (cxx_pp
);
1989 /* Return the location of a tree passed to %+ formats. */
1992 location_of (tree t
)
1994 if (TREE_CODE (t
) == PARM_DECL
&& DECL_CONTEXT (t
))
1995 t
= DECL_CONTEXT (t
);
1996 else if (TYPE_P (t
))
1997 t
= TYPE_MAIN_DECL (t
);
1998 else if (TREE_CODE (t
) == OVERLOAD
)
1999 t
= OVL_FUNCTION (t
);
2001 return DECL_SOURCE_LOCATION (t
);
2004 /* Now the interfaces from error et al to dump_type et al. Each takes an
2005 on/off VERBOSE flag and supply the appropriate TFF_ flags to a dump_
2009 decl_to_string (tree decl
, int verbose
)
2013 if (TREE_CODE (decl
) == TYPE_DECL
|| TREE_CODE (decl
) == RECORD_TYPE
2014 || TREE_CODE (decl
) == UNION_TYPE
|| TREE_CODE (decl
) == ENUMERAL_TYPE
)
2015 flags
= TFF_CLASS_KEY_OR_ENUM
;
2017 flags
|= TFF_DECL_SPECIFIERS
;
2018 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
2019 flags
|= TFF_DECL_SPECIFIERS
| TFF_RETURN_TYPE
;
2020 flags
|= TFF_TEMPLATE_HEADER
;
2023 dump_decl (decl
, flags
);
2024 return pp_formatted_text (cxx_pp
);
2028 expr_to_string (tree decl
)
2031 dump_expr (decl
, 0);
2032 return pp_formatted_text (cxx_pp
);
2036 fndecl_to_string (tree fndecl
, int verbose
)
2040 flags
= TFF_EXCEPTION_SPECIFICATION
| TFF_DECL_SPECIFIERS
2041 | TFF_TEMPLATE_HEADER
;
2043 flags
|= TFF_FUNCTION_DEFAULT_ARGUMENTS
;
2045 dump_decl (fndecl
, flags
);
2046 return pp_formatted_text (cxx_pp
);
2051 code_to_string (enum tree_code c
)
2053 return tree_code_name
[c
];
2057 language_to_string (enum languages c
)
2064 case lang_cplusplus
:
2076 /* Return the proper printed version of a parameter to a C++ function. */
2079 parm_to_string (int p
)
2083 pp_string (cxx_pp
, "'this'");
2085 pp_decimal_int (cxx_pp
, p
+ 1);
2086 return pp_formatted_text (cxx_pp
);
2090 op_to_string (enum tree_code p
)
2092 tree id
= operator_name_info
[(int) p
].identifier
;
2093 return id
? IDENTIFIER_POINTER (id
) : "<unknown>";
2097 type_to_string (tree typ
, int verbose
)
2101 flags
|= TFF_CLASS_KEY_OR_ENUM
;
2102 flags
|= TFF_TEMPLATE_HEADER
;
2105 dump_type (typ
, flags
);
2106 return pp_formatted_text (cxx_pp
);
2110 assop_to_string (enum tree_code p
)
2112 tree id
= assignment_operator_name_info
[(int) p
].identifier
;
2113 return id
? IDENTIFIER_POINTER (id
) : "{unknown}";
2117 args_to_string (tree p
, int verbose
)
2121 flags
|= TFF_CLASS_KEY_OR_ENUM
;
2126 if (TYPE_P (TREE_VALUE (p
)))
2127 return type_as_string (p
, flags
);
2130 for (; p
; p
= TREE_CHAIN (p
))
2132 if (TREE_VALUE (p
) == null_node
)
2133 pp_cxx_identifier (cxx_pp
, "NULL");
2135 dump_type (error_type (TREE_VALUE (p
)), flags
);
2137 pp_separate_with_comma (cxx_pp
);
2139 return pp_formatted_text (cxx_pp
);
2143 cv_to_string (tree p
, int v
)
2146 pp_base (cxx_pp
)->padding
= v
? pp_before
: pp_none
;
2147 pp_cxx_cv_qualifier_seq (cxx_pp
, p
);
2148 return pp_formatted_text (cxx_pp
);
2151 /* Langhook for print_error_function. */
2153 cxx_print_error_function (diagnostic_context
*context
, const char *file
)
2155 lhd_print_error_function (context
, file
);
2156 pp_base_set_prefix (context
->printer
, file
);
2157 maybe_print_instantiation_context (context
);
2161 cp_diagnostic_starter (diagnostic_context
*context
,
2162 diagnostic_info
*diagnostic
)
2164 diagnostic_report_current_module (context
);
2165 cp_print_error_function (context
, diagnostic
);
2166 maybe_print_instantiation_context (context
);
2167 pp_base_set_prefix (context
->printer
, diagnostic_build_prefix (diagnostic
));
2171 cp_diagnostic_finalizer (diagnostic_context
*context
,
2172 diagnostic_info
*diagnostic ATTRIBUTE_UNUSED
)
2174 pp_base_destroy_prefix (context
->printer
);
2177 /* Print current function onto BUFFER, in the process of reporting
2178 a diagnostic message. Called from cp_diagnostic_starter. */
2180 cp_print_error_function (diagnostic_context
*context
,
2181 diagnostic_info
*diagnostic
)
2183 if (diagnostic_last_function_changed (context
))
2185 const char *old_prefix
= context
->printer
->prefix
;
2186 const char *file
= LOCATION_FILE (diagnostic
->location
);
2187 char *new_prefix
= file
? file_name_as_prefix (file
) : NULL
;
2189 pp_base_set_prefix (context
->printer
, new_prefix
);
2191 if (current_function_decl
== NULL
)
2192 pp_base_string (context
->printer
, "At global scope:");
2194 pp_printf (context
->printer
, "In %s %qs:",
2195 function_category (current_function_decl
),
2196 cxx_printable_name (current_function_decl
, 2));
2197 pp_base_newline (context
->printer
);
2199 diagnostic_set_last_function (context
);
2200 pp_base_destroy_prefix (context
->printer
);
2201 context
->printer
->prefix
= old_prefix
;
2205 /* Returns a description of FUNCTION using standard terminology. */
2207 function_category (tree fn
)
2209 if (DECL_FUNCTION_MEMBER_P (fn
))
2211 if (DECL_STATIC_FUNCTION_P (fn
))
2212 return "static member function";
2213 else if (DECL_COPY_CONSTRUCTOR_P (fn
))
2214 return "copy constructor";
2215 else if (DECL_CONSTRUCTOR_P (fn
))
2216 return "constructor";
2217 else if (DECL_DESTRUCTOR_P (fn
))
2218 return "destructor";
2220 return "member function";
2226 /* Report the full context of a current template instantiation,
2229 print_instantiation_full_context (diagnostic_context
*context
)
2231 tree p
= current_instantiation ();
2232 location_t location
= input_location
;
2236 if (current_function_decl
!= TINST_DECL (p
)
2237 && current_function_decl
!= NULL_TREE
)
2238 /* We can get here during the processing of some synthesized
2239 method. Then, TINST_DECL (p) will be the function that's causing
2244 if (current_function_decl
== TINST_DECL (p
))
2245 /* Avoid redundancy with the "In function" line. */;
2247 pp_verbatim (context
->printer
,
2248 "%s: In instantiation of %qs:\n",
2249 LOCATION_FILE (location
),
2250 decl_as_string (TINST_DECL (p
),
2251 TFF_DECL_SPECIFIERS
| TFF_RETURN_TYPE
));
2253 location
= TINST_LOCATION (p
);
2258 print_instantiation_partial_context (context
, p
, location
);
2261 /* Same as above but less verbose. */
2263 print_instantiation_partial_context (diagnostic_context
*context
,
2264 tree t
, location_t loc
)
2266 expanded_location xloc
;
2267 for (; ; t
= TREE_CHAIN (t
))
2269 xloc
= expand_location (loc
);
2272 pp_verbatim (context
->printer
, "%s:%d: instantiated from %qs\n",
2273 xloc
.file
, xloc
.line
,
2274 decl_as_string (TINST_DECL (t
),
2275 TFF_DECL_SPECIFIERS
| TFF_RETURN_TYPE
));
2276 loc
= TINST_LOCATION (t
);
2278 pp_verbatim (context
->printer
, "%s:%d: instantiated from here",
2279 xloc
.file
, xloc
.line
);
2280 pp_base_newline (context
->printer
);
2283 /* Called from cp_thing to print the template context for an error. */
2285 maybe_print_instantiation_context (diagnostic_context
*context
)
2287 if (!problematic_instantiation_changed () || current_instantiation () == 0)
2290 record_last_problematic_instantiation ();
2291 print_instantiation_full_context (context
);
2294 /* Report the bare minimum context of a template instantiation. */
2296 print_instantiation_context (void)
2298 print_instantiation_partial_context
2299 (global_dc
, current_instantiation (), input_location
);
2300 diagnostic_flush_buffer (global_dc
);
2303 /* Called from output_format -- during diagnostic message processing --
2304 to handle C++ specific format specifier with the following meanings:
2305 %A function argument-list.
2309 %F function declaration.
2310 %L language as used in extern "lang".
2312 %P function parameter whose position is indicated by an integer.
2313 %Q assignment operator.
2317 cp_printer (pretty_printer
*pp
, text_info
*text
, const char *spec
,
2318 int precision
, bool wide
, bool set_locus
, bool verbose
)
2322 #define next_tree (t = va_arg (*text->args_ptr, tree))
2323 #define next_tcode va_arg (*text->args_ptr, enum tree_code)
2324 #define next_lang va_arg (*text->args_ptr, enum languages)
2325 #define next_int va_arg (*text->args_ptr, int)
2327 if (precision
!= 0 || wide
)
2330 if (text
->locus
== NULL
)
2335 case 'A': result
= args_to_string (next_tree
, verbose
); break;
2336 case 'C': result
= code_to_string (next_tcode
); break;
2339 tree temp
= next_tree
;
2341 && DECL_DEBUG_EXPR_IS_FROM (temp
) && DECL_DEBUG_EXPR (temp
))
2343 temp
= DECL_DEBUG_EXPR (temp
);
2346 result
= expr_to_string (temp
);
2350 result
= decl_to_string (temp
, verbose
);
2353 case 'E': result
= expr_to_string (next_tree
); break;
2354 case 'F': result
= fndecl_to_string (next_tree
, verbose
); break;
2355 case 'L': result
= language_to_string (next_lang
); break;
2356 case 'O': result
= op_to_string (next_tcode
); break;
2357 case 'P': result
= parm_to_string (next_int
); break;
2358 case 'Q': result
= assop_to_string (next_tcode
); break;
2359 case 'T': result
= type_to_string (next_tree
, verbose
); break;
2360 case 'V': result
= cv_to_string (next_tree
, verbose
); break;
2366 pp_base_string (pp
, result
);
2367 if (set_locus
&& t
!= NULL
)
2368 *text
->locus
= location_of (t
);
2376 /* Callback from cpp_error for PFILE to print diagnostics arising from
2377 interpreting strings. The diagnostic is of type LEVEL; MSG is the
2378 translated message and AP the arguments. */
2381 cp_cpp_error (cpp_reader
*pfile ATTRIBUTE_UNUSED
, int level
,
2382 const char *msg
, va_list *ap
)
2384 diagnostic_info diagnostic
;
2385 diagnostic_t dlevel
;
2388 case CPP_DL_WARNING
:
2389 case CPP_DL_WARNING_SYSHDR
:
2390 dlevel
= DK_WARNING
;
2392 case CPP_DL_PEDWARN
:
2393 dlevel
= pedantic_error_kind ();
2404 diagnostic_set_info_translated (&diagnostic
, msg
, ap
,
2405 input_location
, dlevel
);
2406 report_diagnostic (&diagnostic
);