1 /* Call-backs for C++ error reporting.
2 This code is non-reentrant.
3 Copyright (C) 1993-2017 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
24 #include "stringpool.h"
25 #include "tree-diagnostic.h"
26 #include "langhooks-def.h"
28 #include "cxx-pretty-print.h"
29 #include "tree-pretty-print.h"
30 #include "gimple-pretty-print.h"
31 #include "c-family/c-objc.h"
33 #include "internal-fn.h"
35 #define pp_separate_with_comma(PP) pp_cxx_separate_with (PP, ',')
36 #define pp_separate_with_semicolon(PP) pp_cxx_separate_with (PP, ';')
38 /* cxx_pp is a C++ front-end-specific pretty printer: this is where we
39 dump C++ ASTs as strings. It is mostly used only by the various
40 tree -> string functions that are occasionally called from the
41 debugger or by the front-end for things like
42 __PRETTY_FUNCTION__. */
43 static cxx_pretty_printer actual_pretty_printer
;
44 static cxx_pretty_printer
* const cxx_pp
= &actual_pretty_printer
;
46 /* Translate if being used for diagnostics, but not for dump files or
48 #define M_(msgid) (pp_translate_identifiers (cxx_pp) ? _(msgid) : (msgid))
50 # define NEXT_CODE(T) (TREE_CODE (TREE_TYPE (T)))
52 static const char *args_to_string (tree
, int);
53 static const char *assop_to_string (enum tree_code
);
54 static const char *code_to_string (enum tree_code
);
55 static const char *cv_to_string (tree
, int);
56 static const char *decl_to_string (tree
, int);
57 static const char *expr_to_string (tree
);
58 static const char *fndecl_to_string (tree
, int);
59 static const char *op_to_string (enum tree_code
);
60 static const char *parm_to_string (int);
61 static const char *type_to_string (tree
, int);
63 static void dump_alias_template_specialization (cxx_pretty_printer
*, tree
, int);
64 static void dump_type (cxx_pretty_printer
*, tree
, int);
65 static void dump_typename (cxx_pretty_printer
*, tree
, int);
66 static void dump_simple_decl (cxx_pretty_printer
*, tree
, tree
, int);
67 static void dump_decl (cxx_pretty_printer
*, tree
, int);
68 static void dump_template_decl (cxx_pretty_printer
*, tree
, int);
69 static void dump_function_decl (cxx_pretty_printer
*, tree
, int);
70 static void dump_expr (cxx_pretty_printer
*, tree
, int);
71 static void dump_unary_op (cxx_pretty_printer
*, const char *, tree
, int);
72 static void dump_binary_op (cxx_pretty_printer
*, const char *, tree
, int);
73 static void dump_aggr_type (cxx_pretty_printer
*, tree
, int);
74 static void dump_type_prefix (cxx_pretty_printer
*, tree
, int);
75 static void dump_type_suffix (cxx_pretty_printer
*, tree
, int);
76 static void dump_function_name (cxx_pretty_printer
*, tree
, int);
77 static void dump_call_expr_args (cxx_pretty_printer
*, tree
, int, bool);
78 static void dump_aggr_init_expr_args (cxx_pretty_printer
*, tree
, int, bool);
79 static void dump_expr_list (cxx_pretty_printer
*, tree
, int);
80 static void dump_global_iord (cxx_pretty_printer
*, tree
);
81 static void dump_parameters (cxx_pretty_printer
*, tree
, int);
82 static void dump_ref_qualifier (cxx_pretty_printer
*, tree
, int);
83 static void dump_exception_spec (cxx_pretty_printer
*, tree
, int);
84 static void dump_template_argument (cxx_pretty_printer
*, tree
, int);
85 static void dump_template_argument_list (cxx_pretty_printer
*, tree
, int);
86 static void dump_template_parameter (cxx_pretty_printer
*, tree
, int);
87 static void dump_template_bindings (cxx_pretty_printer
*, tree
, tree
,
89 static void dump_scope (cxx_pretty_printer
*, tree
, int);
90 static void dump_template_parms (cxx_pretty_printer
*, tree
, int, int);
91 static int get_non_default_template_args_count (tree
, int);
92 static const char *function_category (tree
);
93 static void maybe_print_constexpr_context (diagnostic_context
*);
94 static void maybe_print_instantiation_context (diagnostic_context
*);
95 static void print_instantiation_full_context (diagnostic_context
*);
96 static void print_instantiation_partial_context (diagnostic_context
*,
99 static void cp_diagnostic_starter (diagnostic_context
*, diagnostic_info
*);
100 static void cp_print_error_function (diagnostic_context
*, diagnostic_info
*);
102 static bool cp_printer (pretty_printer
*, text_info
*, const char *,
103 int, bool, bool, bool, bool, const char **);
105 /* Struct for handling %H or %I, which require delaying printing the
106 type until a postprocessing stage. */
108 struct deferred_printed_type
110 deferred_printed_type ()
111 : m_tree (NULL_TREE
), m_buffer_ptr (NULL
), m_verbose (false), m_quote (false)
114 deferred_printed_type (tree type
, const char **buffer_ptr
, bool verbose
,
116 : m_tree (type
), m_buffer_ptr (buffer_ptr
), m_verbose (verbose
),
120 gcc_assert (buffer_ptr
);
123 /* The tree is not GTY-marked: they are only non-NULL within a
124 call to pp_format. */
126 const char **m_buffer_ptr
;
131 /* Subclass of format_postprocessor for the C++ frontend.
132 This handles the %H and %I formatting codes, printing them
133 in a postprocessing phase (since they affect each other). */
135 class cxx_format_postprocessor
: public format_postprocessor
138 cxx_format_postprocessor ()
139 : m_type_a (), m_type_b ()
142 void handle (pretty_printer
*pp
) FINAL OVERRIDE
;
144 deferred_printed_type m_type_a
;
145 deferred_printed_type m_type_b
;
148 /* CONTEXT->printer is a basic pretty printer that was constructed
149 presumably by diagnostic_initialize(), called early in the
150 compiler's initialization process (in general_init) Before the FE
151 is initialized. This (C++) FE-specific diagnostic initializer is
152 thus replacing the basic pretty printer with one that has C++-aware
156 cxx_initialize_diagnostics (diagnostic_context
*context
)
158 pretty_printer
*base
= context
->printer
;
159 cxx_pretty_printer
*pp
= XNEW (cxx_pretty_printer
);
160 context
->printer
= new (pp
) cxx_pretty_printer ();
162 /* It is safe to free this object because it was previously XNEW()'d. */
163 base
->~pretty_printer ();
166 c_common_diagnostics_set_defaults (context
);
167 diagnostic_starter (context
) = cp_diagnostic_starter
;
168 /* diagnostic_finalizer is already c_diagnostic_finalizer. */
169 diagnostic_format_decoder (context
) = cp_printer
;
170 pp
->m_format_postprocessor
= new cxx_format_postprocessor ();
173 /* Dump a scope, if deemed necessary. */
176 dump_scope (cxx_pretty_printer
*pp
, tree scope
, int flags
)
178 int f
= flags
& (TFF_SCOPE
| TFF_CHASE_TYPEDEF
);
180 if (scope
== NULL_TREE
)
183 if (TREE_CODE (scope
) == NAMESPACE_DECL
)
185 if (scope
!= global_namespace
)
187 dump_decl (pp
, scope
, f
);
188 pp_cxx_colon_colon (pp
);
191 else if (AGGREGATE_TYPE_P (scope
))
193 dump_type (pp
, scope
, f
);
194 pp_cxx_colon_colon (pp
);
196 else if ((flags
& TFF_SCOPE
) && TREE_CODE (scope
) == FUNCTION_DECL
)
198 dump_function_decl (pp
, scope
, f
);
199 pp_cxx_colon_colon (pp
);
203 /* Dump the template ARGument under control of FLAGS. */
206 dump_template_argument (cxx_pretty_printer
*pp
, tree arg
, int flags
)
208 if (ARGUMENT_PACK_P (arg
))
209 dump_template_argument_list (pp
, ARGUMENT_PACK_ARGS (arg
),
210 /* No default args in argument packs. */
211 flags
|TFF_NO_OMIT_DEFAULT_TEMPLATE_ARGUMENTS
);
212 else if (TYPE_P (arg
) || TREE_CODE (arg
) == TEMPLATE_DECL
)
213 dump_type (pp
, arg
, flags
& ~TFF_CLASS_KEY_OR_ENUM
);
216 if (TREE_CODE (arg
) == TREE_LIST
)
217 arg
= TREE_VALUE (arg
);
219 /* Strip implicit conversions. */
220 while (CONVERT_EXPR_P (arg
))
221 arg
= TREE_OPERAND (arg
, 0);
223 dump_expr (pp
, arg
, (flags
| TFF_EXPR_IN_PARENS
) & ~TFF_CLASS_KEY_OR_ENUM
);
227 /* Count the number of template arguments ARGS whose value does not
228 match the (optional) default template parameter in PARAMS */
231 get_non_default_template_args_count (tree args
, int flags
)
233 int n
= TREE_VEC_LENGTH (INNERMOST_TEMPLATE_ARGS (args
));
235 if (/* We use this flag when generating debug information. We don't
236 want to expand templates at this point, for this may generate
237 new decls, which gets decl counts out of sync, which may in
238 turn cause codegen differences between compilations with and
240 (flags
& TFF_NO_OMIT_DEFAULT_TEMPLATE_ARGUMENTS
) != 0
241 || !flag_pretty_templates
)
244 return GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (INNERMOST_TEMPLATE_ARGS (args
));
247 /* Dump a template-argument-list ARGS (always a TREE_VEC) under control
251 dump_template_argument_list (cxx_pretty_printer
*pp
, tree args
, int flags
)
253 int n
= get_non_default_template_args_count (args
, flags
);
257 for (i
= 0; i
< n
; ++i
)
259 tree arg
= TREE_VEC_ELT (args
, i
);
261 /* Only print a comma if we know there is an argument coming. In
262 the case of an empty template argument pack, no actual
263 argument will be printed. */
265 && (!ARGUMENT_PACK_P (arg
)
266 || TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg
)) > 0))
267 pp_separate_with_comma (pp
);
269 dump_template_argument (pp
, arg
, flags
);
274 /* Dump a template parameter PARM (a TREE_LIST) under control of FLAGS. */
277 dump_template_parameter (cxx_pretty_printer
*pp
, tree parm
, int flags
)
282 if (parm
== error_mark_node
)
285 p
= TREE_VALUE (parm
);
286 a
= TREE_PURPOSE (parm
);
288 if (TREE_CODE (p
) == TYPE_DECL
)
290 if (flags
& TFF_DECL_SPECIFIERS
)
292 pp_cxx_ws_string (pp
, "class");
293 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (p
)))
294 pp_cxx_ws_string (pp
, "...");
296 pp_cxx_tree_identifier (pp
, DECL_NAME (p
));
298 else if (DECL_NAME (p
))
299 pp_cxx_tree_identifier (pp
, DECL_NAME (p
));
301 pp_cxx_canonical_template_parameter (pp
, TREE_TYPE (p
));
304 dump_decl (pp
, p
, flags
| TFF_DECL_SPECIFIERS
);
306 if ((flags
& TFF_FUNCTION_DEFAULT_ARGUMENTS
) && a
!= NULL_TREE
)
308 pp_cxx_whitespace (pp
);
310 pp_cxx_whitespace (pp
);
311 if (TREE_CODE (p
) == TYPE_DECL
|| TREE_CODE (p
) == TEMPLATE_DECL
)
312 dump_type (pp
, a
, flags
& ~TFF_CHASE_TYPEDEF
);
314 dump_expr (pp
, a
, flags
| TFF_EXPR_IN_PARENS
);
318 /* Dump, under control of FLAGS, a template-parameter-list binding.
319 PARMS is a TREE_LIST of TREE_VEC of TREE_LIST and ARGS is a
323 dump_template_bindings (cxx_pretty_printer
*pp
, tree parms
, tree args
,
324 vec
<tree
, va_gc
> *typenames
)
326 bool need_semicolon
= false;
332 tree p
= TREE_VALUE (parms
);
333 int lvl
= TMPL_PARMS_DEPTH (parms
);
336 tree lvl_args
= NULL_TREE
;
338 /* Don't crash if we had an invalid argument list. */
339 if (TMPL_ARGS_DEPTH (args
) >= lvl
)
340 lvl_args
= TMPL_ARGS_LEVEL (args
, lvl
);
342 for (i
= 0; i
< TREE_VEC_LENGTH (p
); ++i
)
344 tree arg
= NULL_TREE
;
346 /* Don't crash if we had an invalid argument list. */
347 if (lvl_args
&& NUM_TMPL_ARGS (lvl_args
) > arg_idx
)
348 arg
= TREE_VEC_ELT (lvl_args
, arg_idx
);
351 pp_separate_with_semicolon (pp
);
352 dump_template_parameter (pp
, TREE_VEC_ELT (p
, i
),
353 TFF_PLAIN_IDENTIFIER
);
354 pp_cxx_whitespace (pp
);
356 pp_cxx_whitespace (pp
);
359 if (ARGUMENT_PACK_P (arg
))
360 pp_cxx_left_brace (pp
);
361 dump_template_argument (pp
, arg
, TFF_PLAIN_IDENTIFIER
);
362 if (ARGUMENT_PACK_P (arg
))
363 pp_cxx_right_brace (pp
);
366 pp_string (pp
, M_("<missing>"));
369 need_semicolon
= true;
372 parms
= TREE_CHAIN (parms
);
375 /* Don't bother with typenames for a partial instantiation. */
376 if (vec_safe_is_empty (typenames
) || uses_template_parms (args
))
379 /* Don't try to print typenames when we're processing a clone. */
380 if (current_function_decl
381 && !DECL_LANG_SPECIFIC (current_function_decl
))
384 /* Don't try to do this once cgraph starts throwing away front-end
389 FOR_EACH_VEC_SAFE_ELT (typenames
, i
, t
)
392 pp_separate_with_semicolon (pp
);
393 dump_type (pp
, t
, TFF_PLAIN_IDENTIFIER
);
394 pp_cxx_whitespace (pp
);
396 pp_cxx_whitespace (pp
);
397 push_deferring_access_checks (dk_no_check
);
398 t
= tsubst (t
, args
, tf_none
, NULL_TREE
);
399 pop_deferring_access_checks ();
400 /* Strip typedefs. We can't just use TFF_CHASE_TYPEDEF because
401 pp_simple_type_specifier doesn't know about it. */
402 t
= strip_typedefs (t
);
403 dump_type (pp
, t
, TFF_PLAIN_IDENTIFIER
);
407 /* Dump a human-readable equivalent of the alias template
408 specialization of T. */
411 dump_alias_template_specialization (cxx_pretty_printer
*pp
, tree t
, int flags
)
413 gcc_assert (alias_template_specialization_p (t
));
415 tree decl
= TYPE_NAME (t
);
416 if (!(flags
& TFF_UNQUALIFIED_NAME
))
417 dump_scope (pp
, CP_DECL_CONTEXT (decl
), flags
);
418 pp_cxx_tree_identifier (pp
, DECL_NAME (decl
));
419 dump_template_parms (pp
, DECL_TEMPLATE_INFO (decl
),
421 flags
& ~TFF_TEMPLATE_HEADER
);
424 /* Dump a human-readable equivalent of TYPE. FLAGS controls the
428 dump_type (cxx_pretty_printer
*pp
, tree t
, int flags
)
433 /* Don't print e.g. "struct mytypedef". */
434 if (TYPE_P (t
) && typedef_variant_p (t
))
436 tree decl
= TYPE_NAME (t
);
437 if ((flags
& TFF_CHASE_TYPEDEF
)
438 || DECL_SELF_REFERENCE_P (decl
)
439 || (!flag_pretty_templates
440 && DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
)))
441 t
= strip_typedefs (t
);
442 else if (alias_template_specialization_p (t
))
444 dump_alias_template_specialization (pp
, t
, flags
);
447 else if (same_type_p (t
, TREE_TYPE (decl
)))
451 pp_cxx_cv_qualifier_seq (pp
, t
);
452 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
457 if (TYPE_PTRMEMFUNC_P (t
))
460 switch (TREE_CODE (t
))
463 if (t
== init_list_type_node
)
464 pp_string (pp
, M_("<brace-enclosed initializer list>"));
465 else if (t
== unknown_type_node
)
466 pp_string (pp
, M_("<unresolved overloaded function type>"));
469 pp_cxx_cv_qualifier_seq (pp
, t
);
470 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
475 /* A list of function parms. */
476 dump_parameters (pp
, t
, flags
);
479 case IDENTIFIER_NODE
:
480 pp_cxx_tree_identifier (pp
, t
);
484 dump_type (pp
, BINFO_TYPE (t
), flags
);
490 dump_aggr_type (pp
, t
, flags
);
494 if (flags
& TFF_CHASE_TYPEDEF
)
496 dump_type (pp
, DECL_ORIGINAL_TYPE (t
)
497 ? DECL_ORIGINAL_TYPE (t
) : TREE_TYPE (t
), flags
);
504 dump_decl (pp
, t
, flags
& ~TFF_DECL_SPECIFIERS
);
513 case FIXED_POINT_TYPE
:
514 pp_type_specifier_seq (pp
, t
);
517 case TEMPLATE_TEMPLATE_PARM
:
518 /* For parameters inside template signature. */
519 if (TYPE_IDENTIFIER (t
))
520 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
522 pp_cxx_canonical_template_parameter (pp
, t
);
525 case BOUND_TEMPLATE_TEMPLATE_PARM
:
527 tree args
= TYPE_TI_ARGS (t
);
528 pp_cxx_cv_qualifier_seq (pp
, t
);
529 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
530 pp_cxx_begin_template_argument_list (pp
);
531 dump_template_argument_list (pp
, args
, flags
);
532 pp_cxx_end_template_argument_list (pp
);
536 case TEMPLATE_TYPE_PARM
:
537 pp_cxx_cv_qualifier_seq (pp
, t
);
538 if (tree c
= PLACEHOLDER_TYPE_CONSTRAINTS (t
))
539 pp_cxx_constrained_type_spec (pp
, c
);
540 else if (TYPE_IDENTIFIER (t
))
541 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
543 pp_cxx_canonical_template_parameter
544 (pp
, TEMPLATE_TYPE_PARM_INDEX (t
));
547 /* This is not always necessary for pointers and such, but doing this
548 reduces code size. */
557 dump_type_prefix (pp
, t
, flags
);
558 dump_type_suffix (pp
, t
, flags
);
562 if (! (flags
& TFF_CHASE_TYPEDEF
)
563 && DECL_ORIGINAL_TYPE (TYPE_NAME (t
)))
565 dump_decl (pp
, TYPE_NAME (t
), TFF_PLAIN_IDENTIFIER
);
568 pp_cxx_cv_qualifier_seq (pp
, t
);
569 pp_cxx_ws_string (pp
,
570 TYPENAME_IS_ENUM_P (t
) ? "enum"
571 : TYPENAME_IS_CLASS_P (t
) ? "class"
573 dump_typename (pp
, t
, flags
);
576 case UNBOUND_CLASS_TEMPLATE
:
577 if (! (flags
& TFF_UNQUALIFIED_NAME
))
579 dump_type (pp
, TYPE_CONTEXT (t
), flags
);
580 pp_cxx_colon_colon (pp
);
582 pp_cxx_ws_string (pp
, "template");
583 dump_type (pp
, TYPE_IDENTIFIER (t
), flags
);
587 pp_cxx_ws_string (pp
, "__typeof__");
588 pp_cxx_whitespace (pp
);
589 pp_cxx_left_paren (pp
);
590 dump_expr (pp
, TYPEOF_TYPE_EXPR (t
), flags
& ~TFF_EXPR_IN_PARENS
);
591 pp_cxx_right_paren (pp
);
594 case UNDERLYING_TYPE
:
595 pp_cxx_ws_string (pp
, "__underlying_type");
596 pp_cxx_whitespace (pp
);
597 pp_cxx_left_paren (pp
);
598 dump_expr (pp
, UNDERLYING_TYPE_TYPE (t
), flags
& ~TFF_EXPR_IN_PARENS
);
599 pp_cxx_right_paren (pp
);
602 case TYPE_PACK_EXPANSION
:
603 dump_type (pp
, PACK_EXPANSION_PATTERN (t
), flags
);
604 pp_cxx_ws_string (pp
, "...");
607 case TYPE_ARGUMENT_PACK
:
608 dump_template_argument (pp
, t
, flags
);
612 pp_cxx_ws_string (pp
, "decltype");
613 pp_cxx_whitespace (pp
);
614 pp_cxx_left_paren (pp
);
615 dump_expr (pp
, DECLTYPE_TYPE_EXPR (t
), flags
& ~TFF_EXPR_IN_PARENS
);
616 pp_cxx_right_paren (pp
);
620 pp_string (pp
, "std::nullptr_t");
624 pp_unsupported_tree (pp
, t
);
628 pp_string (pp
, M_("<type error>"));
633 /* Dump a TYPENAME_TYPE. We need to notice when the context is itself
637 dump_typename (cxx_pretty_printer
*pp
, tree t
, int flags
)
639 tree ctx
= TYPE_CONTEXT (t
);
641 if (TREE_CODE (ctx
) == TYPENAME_TYPE
)
642 dump_typename (pp
, ctx
, flags
);
644 dump_type (pp
, ctx
, flags
& ~TFF_CLASS_KEY_OR_ENUM
);
645 pp_cxx_colon_colon (pp
);
646 dump_decl (pp
, TYPENAME_TYPE_FULLNAME (t
), flags
);
649 /* Return the name of the supplied aggregate, or enumeral type. */
652 class_key_or_enum_as_string (tree t
)
654 if (TREE_CODE (t
) == ENUMERAL_TYPE
)
656 if (SCOPED_ENUM_P (t
))
661 else if (TREE_CODE (t
) == UNION_TYPE
)
663 else if (TYPE_LANG_SPECIFIC (t
) && CLASSTYPE_DECLARED_CLASS (t
))
669 /* Print out a class declaration T under the control of FLAGS,
670 in the form `class foo'. */
673 dump_aggr_type (cxx_pretty_printer
*pp
, tree t
, int flags
)
676 const char *variety
= class_key_or_enum_as_string (t
);
680 pp_cxx_cv_qualifier_seq (pp
, t
);
682 if (flags
& TFF_CLASS_KEY_OR_ENUM
)
683 pp_cxx_ws_string (pp
, variety
);
685 name
= TYPE_NAME (t
);
689 typdef
= (!DECL_ARTIFICIAL (name
)
690 /* An alias specialization is not considered to be a
692 && !alias_template_specialization_p (t
));
695 && ((flags
& TFF_CHASE_TYPEDEF
)
696 || (!flag_pretty_templates
&& DECL_LANG_SPECIFIC (name
)
697 && DECL_TEMPLATE_INFO (name
))))
698 || DECL_SELF_REFERENCE_P (name
))
700 t
= TYPE_MAIN_VARIANT (t
);
701 name
= TYPE_NAME (t
);
705 tmplate
= !typdef
&& TREE_CODE (t
) != ENUMERAL_TYPE
706 && TYPE_LANG_SPECIFIC (t
) && CLASSTYPE_TEMPLATE_INFO (t
)
707 && (TREE_CODE (CLASSTYPE_TI_TEMPLATE (t
)) != TEMPLATE_DECL
708 || PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t
)));
710 if (! (flags
& TFF_UNQUALIFIED_NAME
))
711 dump_scope (pp
, CP_DECL_CONTEXT (name
), flags
| TFF_SCOPE
);
712 flags
&= ~TFF_UNQUALIFIED_NAME
;
715 /* Because the template names are mangled, we have to locate
716 the most general template, and use that name. */
717 tree tpl
= TYPE_TI_TEMPLATE (t
);
719 while (DECL_TEMPLATE_INFO (tpl
))
720 tpl
= DECL_TI_TEMPLATE (tpl
);
723 name
= DECL_NAME (name
);
726 if (name
== 0 || anon_aggrname_p (name
))
728 if (flags
& TFF_CLASS_KEY_OR_ENUM
)
729 pp_string (pp
, M_("<unnamed>"));
731 pp_printf (pp
, M_("<unnamed %s>"), variety
);
733 else if (LAMBDA_TYPE_P (t
))
735 /* A lambda's "type" is essentially its signature. */
736 pp_string (pp
, M_("<lambda"));
737 if (lambda_function (t
))
739 FUNCTION_FIRST_USER_PARMTYPE (lambda_function (t
)),
744 pp_cxx_tree_identifier (pp
, name
);
746 dump_template_parms (pp
, TYPE_TEMPLATE_INFO (t
),
747 !CLASSTYPE_USE_TEMPLATE (t
),
748 flags
& ~TFF_TEMPLATE_HEADER
);
751 /* Dump into the obstack the initial part of the output for a given type.
752 This is necessary when dealing with things like functions returning
755 return type of `int (* fee ())()': pointer -> function -> int. Both
756 pointer (and reference and offset) and function (and member) types must
757 deal with prefix and suffix.
759 Arrays must also do this for DECL nodes, like int a[], and for things like
763 dump_type_prefix (cxx_pretty_printer
*pp
, tree t
, int flags
)
765 if (TYPE_PTRMEMFUNC_P (t
))
767 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
771 switch (TREE_CODE (t
))
776 tree sub
= TREE_TYPE (t
);
778 dump_type_prefix (pp
, sub
, flags
);
779 if (TREE_CODE (sub
) == ARRAY_TYPE
780 || TREE_CODE (sub
) == FUNCTION_TYPE
)
782 pp_cxx_whitespace (pp
);
783 pp_cxx_left_paren (pp
);
784 pp_c_attributes_display (pp
, TYPE_ATTRIBUTES (sub
));
788 else if (TREE_CODE (t
) == REFERENCE_TYPE
)
790 if (TYPE_REF_IS_RVALUE (t
))
791 pp_ampersand_ampersand (pp
);
795 pp
->padding
= pp_before
;
796 pp_cxx_cv_qualifier_seq (pp
, t
);
802 dump_type_prefix (pp
, TREE_TYPE (t
), flags
);
803 if (TREE_CODE (t
) == OFFSET_TYPE
) /* pmfs deal with this in d_t_p */
806 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
807 pp_cxx_left_paren (pp
);
808 dump_type (pp
, TYPE_OFFSET_BASETYPE (t
), flags
);
809 pp_cxx_colon_colon (pp
);
812 pp_cxx_cv_qualifier_seq (pp
, t
);
813 pp
->padding
= pp_before
;
816 /* This can be reached without a pointer when dealing with
817 templates, e.g. std::is_function. */
819 dump_type_prefix (pp
, TREE_TYPE (t
), flags
);
823 dump_type_prefix (pp
, TREE_TYPE (t
), flags
);
825 pp_cxx_left_paren (pp
);
826 dump_aggr_type (pp
, TYPE_METHOD_BASETYPE (t
), flags
);
827 pp_cxx_colon_colon (pp
);
831 dump_type_prefix (pp
, TREE_TYPE (t
), flags
);
835 case IDENTIFIER_NODE
:
840 case TEMPLATE_TYPE_PARM
:
841 case TEMPLATE_TEMPLATE_PARM
:
842 case BOUND_TEMPLATE_TEMPLATE_PARM
:
853 case UNDERLYING_TYPE
:
855 case TYPE_PACK_EXPANSION
:
856 case FIXED_POINT_TYPE
:
858 dump_type (pp
, t
, flags
);
859 pp
->padding
= pp_before
;
863 pp_unsupported_tree (pp
, t
);
866 pp_string (pp
, M_("<typeprefixerror>"));
871 /* Dump the suffix of type T, under control of FLAGS. This is the part
872 which appears after the identifier (or function parms). */
875 dump_type_suffix (cxx_pretty_printer
*pp
, tree t
, int flags
)
877 if (TYPE_PTRMEMFUNC_P (t
))
878 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
880 switch (TREE_CODE (t
))
885 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
886 || TREE_CODE (TREE_TYPE (t
)) == FUNCTION_TYPE
)
887 pp_cxx_right_paren (pp
);
888 if (TREE_CODE (t
) == POINTER_TYPE
)
889 flags
|= TFF_POINTER
;
890 dump_type_suffix (pp
, TREE_TYPE (t
), flags
);
897 if (TREE_CODE (t
) == METHOD_TYPE
)
898 /* Can only be reached through a pointer. */
899 pp_cxx_right_paren (pp
);
900 arg
= TYPE_ARG_TYPES (t
);
901 if (TREE_CODE (t
) == METHOD_TYPE
)
902 arg
= TREE_CHAIN (arg
);
904 /* Function pointers don't have default args. Not in standard C++,
905 anyway; they may in g++, but we'll just pretend otherwise. */
906 dump_parameters (pp
, arg
, flags
& ~TFF_FUNCTION_DEFAULT_ARGUMENTS
);
908 pp
->padding
= pp_before
;
909 pp_cxx_cv_qualifiers (pp
, type_memfn_quals (t
),
910 TREE_CODE (t
) == FUNCTION_TYPE
911 && (flags
& TFF_POINTER
));
912 dump_ref_qualifier (pp
, t
, flags
);
913 if (tx_safe_fn_type_p (t
))
914 pp_cxx_ws_string (pp
, "transaction_safe");
915 dump_exception_spec (pp
, TYPE_RAISES_EXCEPTIONS (t
), flags
);
916 dump_type_suffix (pp
, TREE_TYPE (t
), flags
);
922 pp_cxx_left_bracket (pp
);
923 if (tree dtype
= TYPE_DOMAIN (t
))
925 tree max
= TYPE_MAX_VALUE (dtype
);
926 /* Zero-length arrays have an upper bound of SIZE_MAX. */
927 if (integer_all_onesp (max
))
928 pp_character (pp
, '0');
929 else if (tree_fits_shwi_p (max
))
930 pp_wide_integer (pp
, tree_to_shwi (max
) + 1);
934 if (TREE_CODE (max
) == SAVE_EXPR
)
935 max
= TREE_OPERAND (max
, 0);
936 if (TREE_CODE (max
) == MINUS_EXPR
937 || TREE_CODE (max
) == PLUS_EXPR
)
939 max
= TREE_OPERAND (max
, 0);
940 while (CONVERT_EXPR_P (max
))
941 max
= TREE_OPERAND (max
, 0);
944 max
= fold_build2_loc (input_location
,
945 PLUS_EXPR
, dtype
, max
,
946 build_int_cst (dtype
, 1));
947 dump_expr (pp
, max
, flags
& ~TFF_EXPR_IN_PARENS
);
950 pp_cxx_right_bracket (pp
);
951 dump_type_suffix (pp
, TREE_TYPE (t
), flags
);
955 case IDENTIFIER_NODE
:
960 case TEMPLATE_TYPE_PARM
:
961 case TEMPLATE_TEMPLATE_PARM
:
962 case BOUND_TEMPLATE_TEMPLATE_PARM
:
973 case UNDERLYING_TYPE
:
975 case TYPE_PACK_EXPANSION
:
976 case FIXED_POINT_TYPE
:
981 pp_unsupported_tree (pp
, t
);
983 /* Don't mark it here, we should have already done in
990 dump_global_iord (cxx_pretty_printer
*pp
, tree t
)
992 const char *p
= NULL
;
994 if (DECL_GLOBAL_CTOR_P (t
))
995 p
= M_("(static initializers for %s)");
996 else if (DECL_GLOBAL_DTOR_P (t
))
997 p
= M_("(static destructors for %s)");
1001 pp_printf (pp
, p
, DECL_SOURCE_FILE (t
));
1005 dump_simple_decl (cxx_pretty_printer
*pp
, tree t
, tree type
, int flags
)
1007 if (flags
& TFF_DECL_SPECIFIERS
)
1009 if (VAR_P (t
) && DECL_DECLARED_CONSTEXPR_P (t
))
1011 if (DECL_LANG_SPECIFIC (t
) && DECL_DECLARED_CONCEPT_P (t
))
1012 pp_cxx_ws_string (pp
, "concept");
1014 pp_cxx_ws_string (pp
, "constexpr");
1016 dump_type_prefix (pp
, type
, flags
& ~TFF_UNQUALIFIED_NAME
);
1017 pp_maybe_space (pp
);
1019 if (! (flags
& TFF_UNQUALIFIED_NAME
)
1020 && TREE_CODE (t
) != PARM_DECL
1021 && (!DECL_INITIAL (t
)
1022 || TREE_CODE (DECL_INITIAL (t
)) != TEMPLATE_PARM_INDEX
))
1023 dump_scope (pp
, CP_DECL_CONTEXT (t
), flags
);
1024 flags
&= ~TFF_UNQUALIFIED_NAME
;
1025 if ((flags
& TFF_DECL_SPECIFIERS
)
1026 && DECL_TEMPLATE_PARM_P (t
)
1027 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (t
)))
1028 pp_string (pp
, "...");
1031 if (TREE_CODE (t
) == FIELD_DECL
&& DECL_NORMAL_CAPTURE_P (t
))
1034 pp_string (pp
, IDENTIFIER_POINTER (DECL_NAME (t
)) + 2);
1035 pp_string (pp
, " capture>");
1038 dump_decl (pp
, DECL_NAME (t
), flags
);
1040 else if (DECL_DECOMPOSITION_P (t
))
1041 pp_string (pp
, M_("<structured bindings>"));
1043 pp_string (pp
, M_("<anonymous>"));
1044 if (flags
& TFF_DECL_SPECIFIERS
)
1045 dump_type_suffix (pp
, type
, flags
);
1048 /* Print an IDENTIFIER_NODE that is the name of a declaration. */
1051 dump_decl_name (cxx_pretty_printer
*pp
, tree t
, int flags
)
1053 /* These special cases are duplicated here so that other functions
1054 can feed identifiers to error and get them demangled properly. */
1055 if (IDENTIFIER_CONV_OP_P (t
))
1057 pp_cxx_ws_string (pp
, "operator");
1058 /* Not exactly IDENTIFIER_TYPE_VALUE. */
1059 dump_type (pp
, TREE_TYPE (t
), flags
);
1062 if (dguide_name_p (t
))
1064 dump_decl (pp
, CLASSTYPE_TI_TEMPLATE (TREE_TYPE (t
)),
1065 TFF_UNQUALIFIED_NAME
);
1069 const char *str
= IDENTIFIER_POINTER (t
);
1070 if (!strncmp (str
, "_ZGR", 3))
1072 pp_cxx_ws_string (pp
, "<temporary>");
1076 pp_cxx_tree_identifier (pp
, t
);
1079 /* Dump a human readable string for the decl T under control of FLAGS. */
1082 dump_decl (cxx_pretty_printer
*pp
, tree t
, int flags
)
1087 /* If doing Objective-C++, give Objective-C a chance to demangle
1088 Objective-C method names. */
1089 if (c_dialect_objc ())
1091 const char *demangled
= objc_maybe_printable_name (t
, flags
);
1094 pp_string (pp
, demangled
);
1099 switch (TREE_CODE (t
))
1102 /* Don't say 'typedef class A' */
1103 if (DECL_ARTIFICIAL (t
) && !DECL_SELF_REFERENCE_P (t
))
1105 if ((flags
& TFF_DECL_SPECIFIERS
)
1106 && TREE_CODE (TREE_TYPE (t
)) == TEMPLATE_TYPE_PARM
)
1108 /* Say `class T' not just `T'. */
1109 pp_cxx_ws_string (pp
, "class");
1111 /* Emit the `...' for a parameter pack. */
1112 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (t
)))
1113 pp_cxx_ws_string (pp
, "...");
1116 dump_type (pp
, TREE_TYPE (t
), flags
);
1119 if (TYPE_DECL_ALIAS_P (t
)
1120 && (flags
& TFF_DECL_SPECIFIERS
1121 || flags
& TFF_CLASS_KEY_OR_ENUM
))
1123 pp_cxx_ws_string (pp
, "using");
1124 dump_decl (pp
, DECL_NAME (t
), flags
);
1125 pp_cxx_whitespace (pp
);
1126 pp_cxx_ws_string (pp
, "=");
1127 pp_cxx_whitespace (pp
);
1128 dump_type (pp
, (DECL_ORIGINAL_TYPE (t
)
1129 ? DECL_ORIGINAL_TYPE (t
) : TREE_TYPE (t
)),
1133 if ((flags
& TFF_DECL_SPECIFIERS
)
1134 && !DECL_SELF_REFERENCE_P (t
))
1135 pp_cxx_ws_string (pp
, "typedef");
1136 dump_simple_decl (pp
, t
, DECL_ORIGINAL_TYPE (t
)
1137 ? DECL_ORIGINAL_TYPE (t
) : TREE_TYPE (t
),
1142 if (DECL_NAME (t
) && VTABLE_NAME_P (DECL_NAME (t
)))
1144 pp_string (pp
, M_("vtable for "));
1145 gcc_assert (TYPE_P (DECL_CONTEXT (t
)));
1146 dump_type (pp
, DECL_CONTEXT (t
), flags
);
1152 dump_simple_decl (pp
, t
, TREE_TYPE (t
), flags
);
1154 /* Handle variable template specializations. */
1156 && DECL_LANG_SPECIFIC (t
)
1157 && DECL_TEMPLATE_INFO (t
)
1158 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t
)))
1160 pp_cxx_begin_template_argument_list (pp
);
1161 tree args
= INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (t
));
1162 dump_template_argument_list (pp
, args
, flags
);
1163 pp_cxx_end_template_argument_list (pp
);
1168 pp_string (pp
, M_("<return value> "));
1169 dump_simple_decl (pp
, t
, TREE_TYPE (t
), flags
);
1172 case NAMESPACE_DECL
:
1173 if (flags
& TFF_DECL_SPECIFIERS
)
1174 pp
->declaration (t
);
1177 if (! (flags
& TFF_UNQUALIFIED_NAME
))
1178 dump_scope (pp
, CP_DECL_CONTEXT (t
), flags
);
1179 flags
&= ~TFF_UNQUALIFIED_NAME
;
1180 if (DECL_NAME (t
) == NULL_TREE
)
1182 if (!(pp
->flags
& pp_c_flag_gnu_v3
))
1183 pp_cxx_ws_string (pp
, M_("{anonymous}"));
1185 pp_cxx_ws_string (pp
, M_("(anonymous namespace)"));
1188 pp_cxx_tree_identifier (pp
, DECL_NAME (t
));
1193 dump_type (pp
, TREE_OPERAND (t
, 0), flags
);
1194 pp_cxx_colon_colon (pp
);
1195 dump_decl (pp
, TREE_OPERAND (t
, 1), TFF_UNQUALIFIED_NAME
);
1199 dump_decl (pp
, TREE_OPERAND (t
, 0), flags
);
1200 pp_cxx_left_bracket (pp
);
1201 dump_decl (pp
, TREE_OPERAND (t
, 1), flags
);
1202 pp_cxx_right_bracket (pp
);
1205 case ARRAY_NOTATION_REF
:
1206 dump_decl (pp
, ARRAY_NOTATION_ARRAY (t
), flags
| TFF_EXPR_IN_PARENS
);
1207 pp_cxx_left_bracket (pp
);
1208 dump_decl (pp
, ARRAY_NOTATION_START (t
), flags
| TFF_EXPR_IN_PARENS
);
1210 dump_decl (pp
, ARRAY_NOTATION_LENGTH (t
), flags
| TFF_EXPR_IN_PARENS
);
1212 dump_decl (pp
, ARRAY_NOTATION_STRIDE (t
), flags
| TFF_EXPR_IN_PARENS
);
1213 pp_cxx_right_bracket (pp
);
1216 /* So that we can do dump_decl on an aggr type. */
1220 dump_type (pp
, t
, flags
);
1224 /* This is a pseudo destructor call which has not been folded into
1225 a PSEUDO_DTOR_EXPR yet. */
1226 pp_cxx_complement (pp
);
1227 dump_type (pp
, TREE_OPERAND (t
, 0), flags
);
1234 case IDENTIFIER_NODE
:
1235 dump_decl_name (pp
, t
, flags
);
1239 if (!OVL_SINGLE_P (t
))
1241 tree ctx
= ovl_scope (t
);
1242 if (ctx
!= global_namespace
)
1245 dump_type (pp
, ctx
, flags
);
1247 dump_decl (pp
, ctx
, flags
);
1248 pp_cxx_colon_colon (pp
);
1250 dump_decl (pp
, OVL_NAME (t
), flags
);
1254 /* If there's only one function, just treat it like an ordinary
1260 if (! DECL_LANG_SPECIFIC (t
))
1262 if (DECL_ABSTRACT_ORIGIN (t
)
1263 && DECL_ABSTRACT_ORIGIN (t
) != t
)
1264 dump_decl (pp
, DECL_ABSTRACT_ORIGIN (t
), flags
);
1266 dump_function_name (pp
, t
, flags
);
1268 else if (DECL_GLOBAL_CTOR_P (t
) || DECL_GLOBAL_DTOR_P (t
))
1269 dump_global_iord (pp
, t
);
1271 dump_function_decl (pp
, t
, flags
);
1275 dump_template_decl (pp
, t
, flags
);
1278 case TEMPLATE_ID_EXPR
:
1280 tree name
= TREE_OPERAND (t
, 0);
1281 tree args
= TREE_OPERAND (t
, 1);
1283 if (!identifier_p (name
))
1284 name
= OVL_NAME (name
);
1285 dump_decl (pp
, name
, flags
);
1286 pp_cxx_begin_template_argument_list (pp
);
1287 if (args
== error_mark_node
)
1288 pp_string (pp
, M_("<template arguments error>"));
1290 dump_template_argument_list
1291 (pp
, args
, flags
|TFF_NO_OMIT_DEFAULT_TEMPLATE_ARGUMENTS
);
1292 pp_cxx_end_template_argument_list (pp
);
1297 pp_cxx_tree_identifier (pp
, DECL_NAME (t
));
1301 if ((TREE_TYPE (t
) != NULL_TREE
&& NEXT_CODE (t
) == ENUMERAL_TYPE
)
1302 || (DECL_INITIAL (t
) &&
1303 TREE_CODE (DECL_INITIAL (t
)) == TEMPLATE_PARM_INDEX
))
1304 dump_simple_decl (pp
, t
, TREE_TYPE (t
), flags
);
1305 else if (DECL_NAME (t
))
1306 dump_decl (pp
, DECL_NAME (t
), flags
);
1307 else if (DECL_INITIAL (t
))
1308 dump_expr (pp
, DECL_INITIAL (t
), flags
| TFF_EXPR_IN_PARENS
);
1310 pp_string (pp
, M_("<enumerator>"));
1315 pp_cxx_ws_string (pp
, "using");
1316 tree scope
= USING_DECL_SCOPE (t
);
1317 bool variadic
= false;
1318 if (PACK_EXPANSION_P (scope
))
1320 scope
= PACK_EXPANSION_PATTERN (scope
);
1323 dump_type (pp
, scope
, flags
);
1324 pp_cxx_colon_colon (pp
);
1325 dump_decl (pp
, DECL_NAME (t
), flags
);
1327 pp_cxx_ws_string (pp
, "...");
1332 pp
->declaration (t
);
1336 dump_decl (pp
, BASELINK_FUNCTIONS (t
), flags
);
1339 case NON_DEPENDENT_EXPR
:
1340 dump_expr (pp
, t
, flags
);
1343 case TEMPLATE_TYPE_PARM
:
1344 if (flags
& TFF_DECL_SPECIFIERS
)
1345 pp
->declaration (t
);
1350 case UNBOUND_CLASS_TEMPLATE
:
1351 case TYPE_PACK_EXPANSION
:
1353 dump_type (pp
, t
, flags
);
1357 pp_unsupported_tree (pp
, t
);
1361 pp_string (pp
, M_("<declaration error>"));
1366 /* Dump a template declaration T under control of FLAGS. This means the
1367 'template <...> leaders plus the 'class X' or 'void fn(...)' part. */
1370 dump_template_decl (cxx_pretty_printer
*pp
, tree t
, int flags
)
1372 tree orig_parms
= DECL_TEMPLATE_PARMS (t
);
1376 if (flags
& TFF_TEMPLATE_HEADER
)
1378 for (parms
= orig_parms
= nreverse (orig_parms
);
1380 parms
= TREE_CHAIN (parms
))
1382 tree inner_parms
= INNERMOST_TEMPLATE_PARMS (parms
);
1383 int len
= TREE_VEC_LENGTH (inner_parms
);
1387 /* Skip over the dummy template levels of a template template
1389 gcc_assert (TREE_CODE (TREE_TYPE (t
)) == TEMPLATE_TEMPLATE_PARM
);
1393 pp_cxx_ws_string (pp
, "template");
1394 pp_cxx_begin_template_argument_list (pp
);
1396 /* If we've shown the template prefix, we'd better show the
1397 parameters' and decl's type too. */
1398 flags
|= TFF_DECL_SPECIFIERS
;
1400 for (i
= 0; i
< len
; i
++)
1403 pp_separate_with_comma (pp
);
1404 dump_template_parameter (pp
, TREE_VEC_ELT (inner_parms
, i
),
1407 pp_cxx_end_template_argument_list (pp
);
1408 pp_cxx_whitespace (pp
);
1410 nreverse(orig_parms
);
1412 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t
))
1414 /* Say `template<arg> class TT' not just `template<arg> TT'. */
1415 pp_cxx_ws_string (pp
, "class");
1417 /* If this is a parameter pack, print the ellipsis. */
1418 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (t
)))
1419 pp_cxx_ws_string (pp
, "...");
1422 /* Only print the requirements if we're also printing
1423 the template header. */
1425 if (tree ci
= get_constraints (t
))
1426 if (check_constraint_info (ci
))
1427 if (tree reqs
= CI_TEMPLATE_REQS (ci
))
1429 pp_cxx_requires_clause (pp
, reqs
);
1430 pp_cxx_whitespace (pp
);
1435 if (DECL_CLASS_TEMPLATE_P (t
))
1436 dump_type (pp
, TREE_TYPE (t
),
1437 ((flags
& ~TFF_CLASS_KEY_OR_ENUM
) | TFF_TEMPLATE_NAME
1438 | (flags
& TFF_DECL_SPECIFIERS
? TFF_CLASS_KEY_OR_ENUM
: 0)));
1439 else if (DECL_TEMPLATE_RESULT (t
)
1440 && (VAR_P (DECL_TEMPLATE_RESULT (t
))
1441 /* Alias template. */
1442 || DECL_TYPE_TEMPLATE_P (t
)))
1443 dump_decl (pp
, DECL_TEMPLATE_RESULT (t
), flags
| TFF_TEMPLATE_NAME
);
1446 gcc_assert (TREE_TYPE (t
));
1447 switch (NEXT_CODE (t
))
1451 dump_function_decl (pp
, t
, flags
| TFF_TEMPLATE_NAME
);
1454 /* This case can occur with some invalid code. */
1455 dump_type (pp
, TREE_TYPE (t
),
1456 (flags
& ~TFF_CLASS_KEY_OR_ENUM
) | TFF_TEMPLATE_NAME
1457 | (flags
& TFF_DECL_SPECIFIERS
1458 ? TFF_CLASS_KEY_OR_ENUM
: 0));
1463 /* find_typenames looks through the type of the function template T
1464 and returns a vec containing any typedefs, decltypes or TYPENAME_TYPEs
1467 struct find_typenames_t
1469 hash_set
<tree
> *p_set
;
1470 vec
<tree
, va_gc
> *typenames
;
1474 find_typenames_r (tree
*tp
, int *walk_subtrees
, void *data
)
1476 struct find_typenames_t
*d
= (struct find_typenames_t
*)data
;
1477 tree mv
= NULL_TREE
;
1479 if (TYPE_P (*tp
) && is_typedef_decl (TYPE_NAME (*tp
)))
1480 /* Add the type of the typedef without any additional cv-quals. */
1481 mv
= TREE_TYPE (TYPE_NAME (*tp
));
1482 else if (TREE_CODE (*tp
) == TYPENAME_TYPE
1483 || TREE_CODE (*tp
) == DECLTYPE_TYPE
)
1484 /* Add the typename without any cv-qualifiers. */
1485 mv
= TYPE_MAIN_VARIANT (*tp
);
1487 if (TREE_CODE (*tp
) == TYPE_PACK_EXPANSION
)
1489 /* Don't mess with parameter packs since we don't remember
1490 the pack expansion context for a particular typename. */
1491 *walk_subtrees
= false;
1495 if (mv
&& (mv
== *tp
|| !d
->p_set
->add (mv
)))
1496 vec_safe_push (d
->typenames
, mv
);
1498 /* Search into class template arguments, which cp_walk_subtrees
1500 if (CLASS_TYPE_P (*tp
) && CLASSTYPE_TEMPLATE_INFO (*tp
))
1501 cp_walk_tree (&CLASSTYPE_TI_ARGS (*tp
), find_typenames_r
,
1507 static vec
<tree
, va_gc
> *
1508 find_typenames (tree t
)
1510 struct find_typenames_t ft
;
1511 ft
.p_set
= new hash_set
<tree
>;
1512 ft
.typenames
= NULL
;
1513 cp_walk_tree (&TREE_TYPE (DECL_TEMPLATE_RESULT (t
)),
1514 find_typenames_r
, &ft
, ft
.p_set
);
1516 return ft
.typenames
;
1519 /* Output the "[with ...]" clause for a template instantiation T iff
1520 TEMPLATE_PARMS, TEMPLATE_ARGS and FLAGS are suitable. T may be NULL if
1521 formatting a deduction/substitution diagnostic rather than an
1525 dump_substitution (cxx_pretty_printer
*pp
,
1526 tree t
, tree template_parms
, tree template_args
,
1529 if (template_parms
!= NULL_TREE
&& template_args
!= NULL_TREE
1530 && !(flags
& TFF_NO_TEMPLATE_BINDINGS
))
1532 vec
<tree
, va_gc
> *typenames
= t
? find_typenames (t
) : NULL
;
1533 pp_cxx_whitespace (pp
);
1534 pp_cxx_left_bracket (pp
);
1535 pp
->translate_string ("with");
1536 pp_cxx_whitespace (pp
);
1537 dump_template_bindings (pp
, template_parms
, template_args
, typenames
);
1538 pp_cxx_right_bracket (pp
);
1542 /* Dump the lambda function FN including its 'mutable' qualifier and any
1543 template bindings. */
1546 dump_lambda_function (cxx_pretty_printer
*pp
,
1547 tree fn
, tree template_parms
, tree template_args
,
1550 /* A lambda's signature is essentially its "type". */
1551 dump_type (pp
, DECL_CONTEXT (fn
), flags
);
1552 if (!(TYPE_QUALS (class_of_this_parm (TREE_TYPE (fn
))) & TYPE_QUAL_CONST
))
1554 pp
->padding
= pp_before
;
1555 pp_c_ws_string (pp
, "mutable");
1557 dump_substitution (pp
, fn
, template_parms
, template_args
, flags
);
1560 /* Pretty print a function decl. There are several ways we want to print a
1561 function declaration. The TFF_ bits in FLAGS tells us how to behave.
1562 As error can only apply the '#' flag once to give 0 and 1 for V, there
1563 is %D which doesn't print the throw specs, and %F which does. */
1566 dump_function_decl (cxx_pretty_printer
*pp
, tree t
, int flags
)
1570 tree cname
= NULL_TREE
;
1571 tree template_args
= NULL_TREE
;
1572 tree template_parms
= NULL_TREE
;
1573 int show_return
= flags
& TFF_RETURN_TYPE
|| flags
& TFF_DECL_SPECIFIERS
;
1574 int do_outer_scope
= ! (flags
& TFF_UNQUALIFIED_NAME
);
1578 flags
&= ~(TFF_UNQUALIFIED_NAME
| TFF_TEMPLATE_NAME
);
1579 if (TREE_CODE (t
) == TEMPLATE_DECL
)
1580 t
= DECL_TEMPLATE_RESULT (t
);
1582 /* Save the exceptions, in case t is a specialization and we are
1583 emitting an error about incompatible specifications. */
1584 exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (t
));
1586 /* Likewise for the constexpr specifier, in case t is a specialization. */
1587 constexpr_p
= DECL_DECLARED_CONSTEXPR_P (t
);
1589 /* Pretty print template instantiations only. */
1590 if (DECL_USE_TEMPLATE (t
) && DECL_TEMPLATE_INFO (t
)
1591 && !(flags
& TFF_NO_TEMPLATE_BINDINGS
)
1592 && flag_pretty_templates
)
1596 template_args
= DECL_TI_ARGS (t
);
1597 tmpl
= most_general_template (t
);
1598 if (tmpl
&& TREE_CODE (tmpl
) == TEMPLATE_DECL
)
1600 template_parms
= DECL_TEMPLATE_PARMS (tmpl
);
1605 if (DECL_NAME (t
) && LAMBDA_FUNCTION_P (t
))
1606 return dump_lambda_function (pp
, t
, template_parms
, template_args
, flags
);
1608 fntype
= TREE_TYPE (t
);
1609 parmtypes
= FUNCTION_FIRST_USER_PARMTYPE (t
);
1611 if (DECL_CLASS_SCOPE_P (t
))
1612 cname
= DECL_CONTEXT (t
);
1613 /* This is for partially instantiated template methods. */
1614 else if (TREE_CODE (fntype
) == METHOD_TYPE
)
1615 cname
= TREE_TYPE (TREE_VALUE (parmtypes
));
1617 if (flags
& TFF_DECL_SPECIFIERS
)
1619 if (DECL_STATIC_FUNCTION_P (t
))
1620 pp_cxx_ws_string (pp
, "static");
1621 else if (DECL_VIRTUAL_P (t
))
1622 pp_cxx_ws_string (pp
, "virtual");
1626 if (DECL_DECLARED_CONCEPT_P (t
))
1627 pp_cxx_ws_string (pp
, "concept");
1629 pp_cxx_ws_string (pp
, "constexpr");
1633 /* Print the return type? */
1635 show_return
= (!DECL_CONV_FN_P (t
) && !DECL_CONSTRUCTOR_P (t
)
1636 && !DECL_DESTRUCTOR_P (t
) && !deduction_guide_p (t
));
1639 tree ret
= fndecl_declared_return_type (t
);
1640 dump_type_prefix (pp
, ret
, flags
);
1643 /* Print the function name. */
1644 if (!do_outer_scope
)
1648 dump_type (pp
, cname
, flags
);
1649 pp_cxx_colon_colon (pp
);
1652 dump_scope (pp
, CP_DECL_CONTEXT (t
), flags
);
1654 dump_function_name (pp
, t
, flags
);
1656 if (!(flags
& TFF_NO_FUNCTION_ARGUMENTS
))
1658 dump_parameters (pp
, parmtypes
, flags
);
1660 if (TREE_CODE (fntype
) == METHOD_TYPE
)
1662 pp
->padding
= pp_before
;
1663 pp_cxx_cv_qualifier_seq (pp
, class_of_this_parm (fntype
));
1664 dump_ref_qualifier (pp
, fntype
, flags
);
1667 if (tx_safe_fn_type_p (fntype
))
1669 pp
->padding
= pp_before
;
1670 pp_cxx_ws_string (pp
, "transaction_safe");
1673 if (flags
& TFF_EXCEPTION_SPECIFICATION
)
1675 pp
->padding
= pp_before
;
1676 dump_exception_spec (pp
, exceptions
, flags
);
1680 dump_type_suffix (pp
, TREE_TYPE (fntype
), flags
);
1681 else if (deduction_guide_p (t
))
1683 pp_cxx_ws_string (pp
, "->");
1684 dump_type (pp
, TREE_TYPE (TREE_TYPE (t
)), flags
);
1688 if (tree ci
= get_constraints (t
))
1689 if (tree reqs
= CI_DECLARATOR_REQS (ci
))
1690 pp_cxx_requires_clause (pp
, reqs
);
1692 dump_substitution (pp
, t
, template_parms
, template_args
, flags
);
1694 if (tree base
= DECL_INHERITED_CTOR_BASE (t
))
1696 pp_cxx_ws_string (pp
, "[inherited from");
1697 dump_type (pp
, base
, TFF_PLAIN_IDENTIFIER
);
1698 pp_character (pp
, ']');
1701 else if (template_args
)
1703 bool need_comma
= false;
1705 pp_cxx_begin_template_argument_list (pp
);
1706 template_args
= INNERMOST_TEMPLATE_ARGS (template_args
);
1707 for (i
= 0; i
< TREE_VEC_LENGTH (template_args
); ++i
)
1709 tree arg
= TREE_VEC_ELT (template_args
, i
);
1711 pp_separate_with_comma (pp
);
1712 if (ARGUMENT_PACK_P (arg
))
1713 pp_cxx_left_brace (pp
);
1714 dump_template_argument (pp
, arg
, TFF_PLAIN_IDENTIFIER
);
1715 if (ARGUMENT_PACK_P (arg
))
1716 pp_cxx_right_brace (pp
);
1719 pp_cxx_end_template_argument_list (pp
);
1723 /* Print a parameter list. If this is for a member function, the
1724 member object ptr (and any other hidden args) should have
1725 already been removed. */
1728 dump_parameters (cxx_pretty_printer
*pp
, tree parmtypes
, int flags
)
1731 flags
&= ~TFF_SCOPE
;
1732 pp_cxx_left_paren (pp
);
1734 for (first
= 1; parmtypes
!= void_list_node
;
1735 parmtypes
= TREE_CHAIN (parmtypes
))
1738 pp_separate_with_comma (pp
);
1742 pp_cxx_ws_string (pp
, "...");
1746 dump_type (pp
, TREE_VALUE (parmtypes
), flags
);
1748 if ((flags
& TFF_FUNCTION_DEFAULT_ARGUMENTS
) && TREE_PURPOSE (parmtypes
))
1750 pp_cxx_whitespace (pp
);
1752 pp_cxx_whitespace (pp
);
1753 dump_expr (pp
, TREE_PURPOSE (parmtypes
), flags
| TFF_EXPR_IN_PARENS
);
1757 pp_cxx_right_paren (pp
);
1760 /* Print ref-qualifier of a FUNCTION_TYPE or METHOD_TYPE. FLAGS are ignored. */
1763 dump_ref_qualifier (cxx_pretty_printer
*pp
, tree t
, int flags ATTRIBUTE_UNUSED
)
1765 if (FUNCTION_REF_QUALIFIED (t
))
1767 pp
->padding
= pp_before
;
1768 if (FUNCTION_RVALUE_QUALIFIED (t
))
1769 pp_cxx_ws_string (pp
, "&&");
1771 pp_cxx_ws_string (pp
, "&");
1775 /* Print an exception specification. T is the exception specification. */
1778 dump_exception_spec (cxx_pretty_printer
*pp
, tree t
, int flags
)
1780 if (t
&& TREE_PURPOSE (t
))
1782 pp_cxx_ws_string (pp
, "noexcept");
1783 if (!integer_onep (TREE_PURPOSE (t
)))
1785 pp_cxx_whitespace (pp
);
1786 pp_cxx_left_paren (pp
);
1787 if (DEFERRED_NOEXCEPT_SPEC_P (t
))
1788 pp_cxx_ws_string (pp
, "<uninstantiated>");
1790 dump_expr (pp
, TREE_PURPOSE (t
), flags
);
1791 pp_cxx_right_paren (pp
);
1796 pp_cxx_ws_string (pp
, "throw");
1797 pp_cxx_whitespace (pp
);
1798 pp_cxx_left_paren (pp
);
1799 if (TREE_VALUE (t
) != NULL_TREE
)
1802 dump_type (pp
, TREE_VALUE (t
), flags
);
1806 pp_separate_with_comma (pp
);
1808 pp_cxx_right_paren (pp
);
1812 /* Handle the function name for a FUNCTION_DECL node, grokking operators
1813 and destructors properly. */
1816 dump_function_name (cxx_pretty_printer
*pp
, tree t
, int flags
)
1818 tree name
= DECL_NAME (t
);
1820 /* We can get here with a decl that was synthesized by language-
1821 independent machinery (e.g. coverage.c) in which case it won't
1822 have a lang_specific structure attached and DECL_CONSTRUCTOR_P
1823 will crash. In this case it is safe just to print out the
1825 if (!DECL_LANG_SPECIFIC (t
))
1827 pp_cxx_tree_identifier (pp
, name
);
1831 if (TREE_CODE (t
) == TEMPLATE_DECL
)
1832 t
= DECL_TEMPLATE_RESULT (t
);
1834 /* Don't let the user see __comp_ctor et al. */
1835 if (DECL_CONSTRUCTOR_P (t
)
1836 || DECL_DESTRUCTOR_P (t
))
1838 if (LAMBDA_TYPE_P (DECL_CONTEXT (t
)))
1839 name
= get_identifier ("<lambda>");
1840 else if (TYPE_UNNAMED_P (DECL_CONTEXT (t
)))
1841 name
= get_identifier ("<constructor>");
1843 name
= constructor_name (DECL_CONTEXT (t
));
1846 if (DECL_DESTRUCTOR_P (t
))
1848 pp_cxx_complement (pp
);
1849 dump_decl (pp
, name
, TFF_PLAIN_IDENTIFIER
);
1851 else if (DECL_CONV_FN_P (t
))
1853 /* This cannot use the hack that the operator's return
1854 type is stashed off of its name because it may be
1855 used for error reporting. In the case of conflicting
1856 declarations, both will have the same name, yet
1857 the types will be different, hence the TREE_TYPE field
1858 of the first name will be clobbered by the second. */
1859 pp_cxx_ws_string (pp
, "operator");
1860 dump_type (pp
, TREE_TYPE (TREE_TYPE (t
)), flags
);
1863 dump_decl (pp
, name
, flags
);
1865 if (DECL_TEMPLATE_INFO (t
)
1866 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (t
)
1867 && (TREE_CODE (DECL_TI_TEMPLATE (t
)) != TEMPLATE_DECL
1868 || PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t
))))
1869 dump_template_parms (pp
, DECL_TEMPLATE_INFO (t
), !DECL_USE_TEMPLATE (t
),
1873 /* Dump the template parameters from the template info INFO under control of
1874 FLAGS. PRIMARY indicates whether this is a primary template decl, or
1875 specialization (partial or complete). For partial specializations we show
1876 the specialized parameter values. For a primary template we show no
1880 dump_template_parms (cxx_pretty_printer
*pp
, tree info
,
1881 int primary
, int flags
)
1883 tree args
= info
? TI_ARGS (info
) : NULL_TREE
;
1885 if (primary
&& flags
& TFF_TEMPLATE_NAME
)
1887 flags
&= ~(TFF_CLASS_KEY_OR_ENUM
| TFF_TEMPLATE_NAME
);
1888 pp_cxx_begin_template_argument_list (pp
);
1890 /* Be careful only to print things when we have them, so as not
1891 to crash producing error messages. */
1892 if (args
&& !primary
)
1895 len
= get_non_default_template_args_count (args
, flags
);
1897 args
= INNERMOST_TEMPLATE_ARGS (args
);
1898 for (ix
= 0; ix
!= len
; ix
++)
1900 tree arg
= TREE_VEC_ELT (args
, ix
);
1902 /* Only print a comma if we know there is an argument coming. In
1903 the case of an empty template argument pack, no actual
1904 argument will be printed. */
1906 && (!ARGUMENT_PACK_P (arg
)
1907 || TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg
)) > 0))
1908 pp_separate_with_comma (pp
);
1911 pp_string (pp
, M_("<template parameter error>"));
1913 dump_template_argument (pp
, arg
, flags
);
1918 tree tpl
= TI_TEMPLATE (info
);
1919 tree parms
= DECL_TEMPLATE_PARMS (tpl
);
1922 parms
= TREE_CODE (parms
) == TREE_LIST
? TREE_VALUE (parms
) : NULL_TREE
;
1923 len
= parms
? TREE_VEC_LENGTH (parms
) : 0;
1925 for (ix
= 0; ix
!= len
; ix
++)
1929 if (TREE_VEC_ELT (parms
, ix
) == error_mark_node
)
1931 pp_string (pp
, M_("<template parameter error>"));
1935 parm
= TREE_VALUE (TREE_VEC_ELT (parms
, ix
));
1938 pp_separate_with_comma (pp
);
1940 dump_decl (pp
, parm
, flags
& ~TFF_DECL_SPECIFIERS
);
1943 pp_cxx_end_template_argument_list (pp
);
1946 /* Print out the arguments of CALL_EXPR T as a parenthesized list using
1947 flags FLAGS. Skip over the first argument if SKIPFIRST is true. */
1950 dump_call_expr_args (cxx_pretty_printer
*pp
, tree t
, int flags
, bool skipfirst
)
1953 call_expr_arg_iterator iter
;
1955 pp_cxx_left_paren (pp
);
1956 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, t
)
1962 dump_expr (pp
, arg
, flags
| TFF_EXPR_IN_PARENS
);
1963 if (more_call_expr_args_p (&iter
))
1964 pp_separate_with_comma (pp
);
1967 pp_cxx_right_paren (pp
);
1970 /* Print out the arguments of AGGR_INIT_EXPR T as a parenthesized list
1971 using flags FLAGS. Skip over the first argument if SKIPFIRST is
1975 dump_aggr_init_expr_args (cxx_pretty_printer
*pp
, tree t
, int flags
,
1979 aggr_init_expr_arg_iterator iter
;
1981 pp_cxx_left_paren (pp
);
1982 FOR_EACH_AGGR_INIT_EXPR_ARG (arg
, iter
, t
)
1988 dump_expr (pp
, arg
, flags
| TFF_EXPR_IN_PARENS
);
1989 if (more_aggr_init_expr_args_p (&iter
))
1990 pp_separate_with_comma (pp
);
1993 pp_cxx_right_paren (pp
);
1996 /* Print out a list of initializers (subr of dump_expr). */
1999 dump_expr_list (cxx_pretty_printer
*pp
, tree l
, int flags
)
2003 dump_expr (pp
, TREE_VALUE (l
), flags
| TFF_EXPR_IN_PARENS
);
2006 pp_separate_with_comma (pp
);
2010 /* Print out a vector of initializers (subr of dump_expr). */
2013 dump_expr_init_vec (cxx_pretty_printer
*pp
, vec
<constructor_elt
, va_gc
> *v
,
2016 unsigned HOST_WIDE_INT idx
;
2019 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
2021 dump_expr (pp
, value
, flags
| TFF_EXPR_IN_PARENS
);
2022 if (idx
!= v
->length () - 1)
2023 pp_separate_with_comma (pp
);
2028 /* We've gotten an indirect REFERENCE (an OBJ_TYPE_REF) to a virtual
2029 function. Resolve it to a close relative -- in the sense of static
2030 type -- variant being overridden. That is close to what was written in
2031 the source code. Subroutine of dump_expr. */
2034 resolve_virtual_fun_from_obj_type_ref (tree ref
)
2036 tree obj_type
= TREE_TYPE (OBJ_TYPE_REF_OBJECT (ref
));
2037 HOST_WIDE_INT index
= tree_to_uhwi (OBJ_TYPE_REF_TOKEN (ref
));
2038 tree fun
= BINFO_VIRTUALS (TYPE_BINFO (TREE_TYPE (obj_type
)));
2041 fun
= TREE_CHAIN (fun
);
2042 index
-= (TARGET_VTABLE_USES_DESCRIPTORS
2043 ? TARGET_VTABLE_USES_DESCRIPTORS
: 1);
2049 /* Print out an expression E under control of FLAGS. */
2052 dump_expr (cxx_pretty_printer
*pp
, tree t
, int flags
)
2059 if (STATEMENT_CLASS_P (t
))
2061 pp_cxx_ws_string (pp
, M_("<statement>"));
2065 switch (TREE_CODE (t
))
2073 case NAMESPACE_DECL
:
2077 case IDENTIFIER_NODE
:
2078 dump_decl (pp
, t
, ((flags
& ~(TFF_DECL_SPECIFIERS
|TFF_RETURN_TYPE
2079 |TFF_TEMPLATE_HEADER
))
2080 | TFF_NO_TEMPLATE_BINDINGS
2081 | TFF_NO_FUNCTION_ARGUMENTS
));
2085 if (SSA_NAME_VAR (t
)
2086 && !DECL_ARTIFICIAL (SSA_NAME_VAR (t
)))
2087 dump_expr (pp
, SSA_NAME_VAR (t
), flags
);
2089 pp_cxx_ws_string (pp
, M_("<unknown>"));
2100 case USERDEF_LITERAL
:
2101 pp_cxx_userdef_literal (pp
, t
);
2105 /* While waiting for caret diagnostics, avoid printing
2106 __cxa_allocate_exception, __cxa_throw, and the like. */
2107 pp_cxx_ws_string (pp
, M_("<throw-expression>"));
2112 dump_type (pp
, PTRMEM_CST_CLASS (t
), flags
);
2113 pp_cxx_colon_colon (pp
);
2114 pp_cxx_tree_identifier (pp
, DECL_NAME (PTRMEM_CST_MEMBER (t
)));
2118 pp_cxx_left_paren (pp
);
2119 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2120 pp_separate_with_comma (pp
);
2121 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2122 pp_cxx_right_paren (pp
);
2127 pp_cxx_left_paren (pp
);
2128 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2129 pp_string (pp
, " ? ");
2130 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2131 pp_string (pp
, " : ");
2132 dump_expr (pp
, TREE_OPERAND (t
, 2), flags
| TFF_EXPR_IN_PARENS
);
2133 pp_cxx_right_paren (pp
);
2137 if (TREE_HAS_CONSTRUCTOR (t
))
2139 pp_cxx_ws_string (pp
, "new");
2140 pp_cxx_whitespace (pp
);
2141 dump_type (pp
, TREE_TYPE (TREE_TYPE (t
)), flags
);
2144 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2147 case AGGR_INIT_EXPR
:
2149 tree fn
= NULL_TREE
;
2151 if (TREE_CODE (AGGR_INIT_EXPR_FN (t
)) == ADDR_EXPR
)
2152 fn
= TREE_OPERAND (AGGR_INIT_EXPR_FN (t
), 0);
2154 if (fn
&& TREE_CODE (fn
) == FUNCTION_DECL
)
2156 if (DECL_CONSTRUCTOR_P (fn
))
2157 dump_type (pp
, DECL_CONTEXT (fn
), flags
);
2159 dump_decl (pp
, fn
, 0);
2162 dump_expr (pp
, AGGR_INIT_EXPR_FN (t
), 0);
2164 dump_aggr_init_expr_args (pp
, t
, flags
, true);
2169 tree fn
= CALL_EXPR_FN (t
);
2170 bool skipfirst
= false;
2172 /* Deal with internal functions. */
2173 if (fn
== NULL_TREE
)
2175 pp_string (pp
, internal_fn_name (CALL_EXPR_IFN (t
)));
2176 dump_call_expr_args (pp
, t
, flags
, skipfirst
);
2180 if (TREE_CODE (fn
) == ADDR_EXPR
)
2181 fn
= TREE_OPERAND (fn
, 0);
2183 /* Nobody is interested in seeing the guts of vcalls. */
2184 if (TREE_CODE (fn
) == OBJ_TYPE_REF
)
2185 fn
= resolve_virtual_fun_from_obj_type_ref (fn
);
2187 if (TREE_TYPE (fn
) != NULL_TREE
2188 && NEXT_CODE (fn
) == METHOD_TYPE
2189 && call_expr_nargs (t
))
2191 tree ob
= CALL_EXPR_ARG (t
, 0);
2192 if (TREE_CODE (ob
) == ADDR_EXPR
)
2194 dump_expr (pp
, TREE_OPERAND (ob
, 0),
2195 flags
| TFF_EXPR_IN_PARENS
);
2198 else if (!is_this_parameter (ob
))
2200 dump_expr (pp
, ob
, flags
| TFF_EXPR_IN_PARENS
);
2205 if (flag_sanitize
& SANITIZE_UNDEFINED
2206 && is_ubsan_builtin_p (fn
))
2208 pp_string (cxx_pp
, M_("<ubsan routine call>"));
2211 dump_expr (pp
, fn
, flags
| TFF_EXPR_IN_PARENS
);
2212 dump_call_expr_args (pp
, t
, flags
, skipfirst
);
2217 /* Note that this only works for G++ target exprs. If somebody
2218 builds a general TARGET_EXPR, there's no way to represent that
2219 it initializes anything other that the parameter slot for the
2220 default argument. Note we may have cleared out the first
2221 operand in expand_expr, so don't go killing ourselves. */
2222 if (TREE_OPERAND (t
, 1))
2223 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2226 case POINTER_PLUS_EXPR
:
2227 dump_binary_op (pp
, "+", t
, flags
);
2232 dump_binary_op (pp
, assignment_operator_name_info
[NOP_EXPR
].name
,
2239 case TRUNC_DIV_EXPR
:
2240 case TRUNC_MOD_EXPR
:
2248 case TRUTH_ANDIF_EXPR
:
2249 case TRUTH_ORIF_EXPR
:
2256 case EXACT_DIV_EXPR
:
2257 dump_binary_op (pp
, operator_name_info
[TREE_CODE (t
)].name
, t
, flags
);
2261 case FLOOR_DIV_EXPR
:
2262 case ROUND_DIV_EXPR
:
2264 dump_binary_op (pp
, "/", t
, flags
);
2268 case FLOOR_MOD_EXPR
:
2269 case ROUND_MOD_EXPR
:
2270 dump_binary_op (pp
, "%", t
, flags
);
2275 tree ob
= TREE_OPERAND (t
, 0);
2276 if (INDIRECT_REF_P (ob
))
2278 ob
= TREE_OPERAND (ob
, 0);
2279 if (!is_this_parameter (ob
))
2281 dump_expr (pp
, ob
, flags
| TFF_EXPR_IN_PARENS
);
2282 if (TREE_CODE (TREE_TYPE (ob
)) == REFERENCE_TYPE
)
2290 dump_expr (pp
, ob
, flags
| TFF_EXPR_IN_PARENS
);
2291 if (TREE_CODE (ob
) != ARROW_EXPR
)
2294 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
& ~TFF_EXPR_IN_PARENS
);
2299 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2300 pp_cxx_left_bracket (pp
);
2301 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2302 pp_cxx_right_bracket (pp
);
2305 case ARRAY_NOTATION_REF
:
2306 dump_expr (pp
, ARRAY_NOTATION_ARRAY (t
), flags
| TFF_EXPR_IN_PARENS
);
2307 pp_cxx_left_bracket (pp
);
2308 dump_expr (pp
, ARRAY_NOTATION_START (t
), flags
| TFF_EXPR_IN_PARENS
);
2310 dump_expr (pp
, ARRAY_NOTATION_LENGTH (t
), flags
| TFF_EXPR_IN_PARENS
);
2312 dump_expr (pp
, ARRAY_NOTATION_STRIDE (t
), flags
| TFF_EXPR_IN_PARENS
);
2313 pp_cxx_right_bracket (pp
);
2316 case UNARY_PLUS_EXPR
:
2317 dump_unary_op (pp
, "+", t
, flags
);
2321 if (TREE_CODE (TREE_OPERAND (t
, 0)) == FUNCTION_DECL
2322 || TREE_CODE (TREE_OPERAND (t
, 0)) == STRING_CST
2323 /* An ADDR_EXPR can have reference type. In that case, we
2324 shouldn't print the `&' doing so indicates to the user
2325 that the expression has pointer type. */
2327 && TREE_CODE (TREE_TYPE (t
)) == REFERENCE_TYPE
))
2328 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2329 else if (TREE_CODE (TREE_OPERAND (t
, 0)) == LABEL_DECL
)
2330 dump_unary_op (pp
, "&&", t
, flags
);
2332 dump_unary_op (pp
, "&", t
, flags
);
2336 if (TREE_HAS_CONSTRUCTOR (t
))
2338 t
= TREE_OPERAND (t
, 0);
2339 gcc_assert (TREE_CODE (t
) == CALL_EXPR
);
2340 dump_expr (pp
, CALL_EXPR_FN (t
), flags
| TFF_EXPR_IN_PARENS
);
2341 dump_call_expr_args (pp
, t
, flags
, true);
2345 if (TREE_OPERAND (t
,0) != NULL_TREE
2346 && TREE_TYPE (TREE_OPERAND (t
, 0))
2347 && NEXT_CODE (TREE_OPERAND (t
, 0)) == REFERENCE_TYPE
)
2348 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2350 dump_unary_op (pp
, "*", t
, flags
);
2355 if (TREE_CODE (TREE_OPERAND (t
, 0)) == ADDR_EXPR
2356 && integer_zerop (TREE_OPERAND (t
, 1)))
2357 dump_expr (pp
, TREE_OPERAND (TREE_OPERAND (t
, 0), 0), flags
);
2361 if (!integer_zerop (TREE_OPERAND (t
, 1)))
2363 pp_cxx_left_paren (pp
);
2364 if (!integer_onep (TYPE_SIZE_UNIT
2365 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (t
, 0))))))
2367 pp_cxx_left_paren (pp
);
2368 dump_type (pp
, ptr_type_node
, flags
);
2369 pp_cxx_right_paren (pp
);
2372 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2373 if (!integer_zerop (TREE_OPERAND (t
, 1)))
2375 pp_cxx_ws_string (pp
, "+");
2376 dump_expr (pp
, fold_convert (ssizetype
, TREE_OPERAND (t
, 1)),
2378 pp_cxx_right_paren (pp
);
2385 case TRUTH_NOT_EXPR
:
2386 case PREDECREMENT_EXPR
:
2387 case PREINCREMENT_EXPR
:
2388 dump_unary_op (pp
, operator_name_info
[TREE_CODE (t
)].name
, t
, flags
);
2391 case POSTDECREMENT_EXPR
:
2392 case POSTINCREMENT_EXPR
:
2393 pp_cxx_left_paren (pp
);
2394 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2395 pp_cxx_ws_string (pp
, operator_name_info
[TREE_CODE (t
)].name
);
2396 pp_cxx_right_paren (pp
);
2399 case NON_LVALUE_EXPR
:
2400 /* FIXME: This is a KLUDGE workaround for a parsing problem. There
2401 should be another level of INDIRECT_REF so that I don't have to do
2403 if (TREE_TYPE (t
) != NULL_TREE
&& NEXT_CODE (t
) == POINTER_TYPE
)
2405 tree next
= TREE_TYPE (TREE_TYPE (t
));
2407 while (TYPE_PTR_P (next
))
2408 next
= TREE_TYPE (next
);
2410 if (TREE_CODE (next
) == FUNCTION_TYPE
)
2412 if (flags
& TFF_EXPR_IN_PARENS
)
2413 pp_cxx_left_paren (pp
);
2415 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
2416 if (flags
& TFF_EXPR_IN_PARENS
)
2417 pp_cxx_right_paren (pp
);
2420 /* Else fall through. */
2422 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2426 case IMPLICIT_CONV_EXPR
:
2427 case VIEW_CONVERT_EXPR
:
2429 tree op
= TREE_OPERAND (t
, 0);
2430 tree ttype
= TREE_TYPE (t
);
2431 tree optype
= TREE_TYPE (op
);
2433 if (TREE_CODE (ttype
) != TREE_CODE (optype
)
2434 && POINTER_TYPE_P (ttype
)
2435 && POINTER_TYPE_P (optype
)
2436 && same_type_p (TREE_TYPE (optype
),
2439 if (TREE_CODE (ttype
) == REFERENCE_TYPE
)
2442 if (TREE_CODE (op
) == ADDR_EXPR
)
2443 dump_expr (pp
, TREE_OPERAND (op
, 0), flags
);
2445 dump_unary_op (pp
, "*", t
, flags
);
2448 dump_unary_op (pp
, "&", t
, flags
);
2450 else if (!same_type_p (TREE_TYPE (op
), TREE_TYPE (t
)))
2452 /* It is a cast, but we cannot tell whether it is a
2453 reinterpret or static cast. Use the C style notation. */
2454 if (flags
& TFF_EXPR_IN_PARENS
)
2455 pp_cxx_left_paren (pp
);
2456 pp_cxx_left_paren (pp
);
2457 dump_type (pp
, TREE_TYPE (t
), flags
);
2458 pp_cxx_right_paren (pp
);
2459 dump_expr (pp
, op
, flags
| TFF_EXPR_IN_PARENS
);
2460 if (flags
& TFF_EXPR_IN_PARENS
)
2461 pp_cxx_right_paren (pp
);
2464 dump_expr (pp
, op
, flags
);
2469 if (TREE_TYPE (t
) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t
)))
2471 tree idx
= build_ptrmemfunc_access_expr (t
, pfn_identifier
);
2473 if (integer_zerop (idx
))
2475 /* A NULL pointer-to-member constant. */
2476 pp_cxx_left_paren (pp
);
2477 pp_cxx_left_paren (pp
);
2478 dump_type (pp
, TREE_TYPE (t
), flags
);
2479 pp_cxx_right_paren (pp
);
2480 pp_character (pp
, '0');
2481 pp_cxx_right_paren (pp
);
2484 else if (tree_fits_shwi_p (idx
))
2487 unsigned HOST_WIDE_INT n
;
2489 t
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t
)));
2490 t
= TYPE_METHOD_BASETYPE (t
);
2491 virtuals
= BINFO_VIRTUALS (TYPE_BINFO (TYPE_MAIN_VARIANT (t
)));
2493 n
= tree_to_shwi (idx
);
2495 /* Map vtable index back one, to allow for the null pointer to
2499 while (n
> 0 && virtuals
)
2502 virtuals
= TREE_CHAIN (virtuals
);
2506 dump_expr (pp
, BV_FN (virtuals
),
2507 flags
| TFF_EXPR_IN_PARENS
);
2512 if (TREE_TYPE (t
) && LAMBDA_TYPE_P (TREE_TYPE (t
)))
2513 pp_string (pp
, "<lambda closure object>");
2514 if (TREE_TYPE (t
) && EMPTY_CONSTRUCTOR_P (t
))
2516 dump_type (pp
, TREE_TYPE (t
), 0);
2517 pp_cxx_left_paren (pp
);
2518 pp_cxx_right_paren (pp
);
2522 if (!BRACE_ENCLOSED_INITIALIZER_P (t
))
2523 dump_type (pp
, TREE_TYPE (t
), 0);
2524 pp_cxx_left_brace (pp
);
2525 dump_expr_init_vec (pp
, CONSTRUCTOR_ELTS (t
), flags
);
2526 pp_cxx_right_brace (pp
);
2533 tree ob
= TREE_OPERAND (t
, 0);
2534 if (is_dummy_object (ob
))
2536 t
= TREE_OPERAND (t
, 1);
2537 if (TREE_CODE (t
) == FUNCTION_DECL
)
2539 dump_expr (pp
, t
, flags
| TFF_EXPR_IN_PARENS
);
2540 else if (BASELINK_P (t
))
2541 dump_expr (pp
, OVL_FIRST (BASELINK_FUNCTIONS (t
)),
2542 flags
| TFF_EXPR_IN_PARENS
);
2544 dump_decl (pp
, t
, flags
);
2548 if (INDIRECT_REF_P (ob
))
2550 dump_expr (pp
, TREE_OPERAND (ob
, 0), flags
| TFF_EXPR_IN_PARENS
);
2556 dump_expr (pp
, ob
, flags
| TFF_EXPR_IN_PARENS
);
2560 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2565 case TEMPLATE_PARM_INDEX
:
2566 dump_decl (pp
, TEMPLATE_PARM_DECL (t
), flags
& ~TFF_DECL_SPECIFIERS
);
2570 if (TREE_OPERAND (t
, 0) == NULL_TREE
2571 || TREE_CHAIN (TREE_OPERAND (t
, 0)))
2573 dump_type (pp
, TREE_TYPE (t
), flags
);
2574 pp_cxx_left_paren (pp
);
2575 dump_expr_list (pp
, TREE_OPERAND (t
, 0), flags
);
2576 pp_cxx_right_paren (pp
);
2580 pp_cxx_left_paren (pp
);
2581 dump_type (pp
, TREE_TYPE (t
), flags
);
2582 pp_cxx_right_paren (pp
);
2583 pp_cxx_left_paren (pp
);
2584 dump_expr_list (pp
, TREE_OPERAND (t
, 0), flags
);
2585 pp_cxx_right_paren (pp
);
2589 case STATIC_CAST_EXPR
:
2590 pp_cxx_ws_string (pp
, "static_cast");
2592 case REINTERPRET_CAST_EXPR
:
2593 pp_cxx_ws_string (pp
, "reinterpret_cast");
2595 case CONST_CAST_EXPR
:
2596 pp_cxx_ws_string (pp
, "const_cast");
2598 case DYNAMIC_CAST_EXPR
:
2599 pp_cxx_ws_string (pp
, "dynamic_cast");
2601 pp_cxx_begin_template_argument_list (pp
);
2602 dump_type (pp
, TREE_TYPE (t
), flags
);
2603 pp_cxx_end_template_argument_list (pp
);
2604 pp_cxx_left_paren (pp
);
2605 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2606 pp_cxx_right_paren (pp
);
2610 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2616 if (TREE_CODE (t
) == SIZEOF_EXPR
)
2617 pp_cxx_ws_string (pp
, "sizeof");
2620 gcc_assert (TREE_CODE (t
) == ALIGNOF_EXPR
);
2621 pp_cxx_ws_string (pp
, "__alignof__");
2623 op
= TREE_OPERAND (t
, 0);
2624 if (PACK_EXPANSION_P (op
))
2626 pp_string (pp
, "...");
2627 op
= PACK_EXPANSION_PATTERN (op
);
2629 pp_cxx_whitespace (pp
);
2630 pp_cxx_left_paren (pp
);
2631 if (TREE_CODE (t
) == SIZEOF_EXPR
&& SIZEOF_EXPR_TYPE_P (t
))
2632 dump_type (pp
, TREE_TYPE (op
), flags
);
2633 else if (TYPE_P (TREE_OPERAND (t
, 0)))
2634 dump_type (pp
, op
, flags
);
2636 dump_expr (pp
, op
, flags
);
2637 pp_cxx_right_paren (pp
);
2640 case AT_ENCODE_EXPR
:
2641 pp_cxx_ws_string (pp
, "@encode");
2642 pp_cxx_whitespace (pp
);
2643 pp_cxx_left_paren (pp
);
2644 dump_type (pp
, TREE_OPERAND (t
, 0), flags
);
2645 pp_cxx_right_paren (pp
);
2649 pp_cxx_ws_string (pp
, "noexcept");
2650 pp_cxx_whitespace (pp
);
2651 pp_cxx_left_paren (pp
);
2652 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2653 pp_cxx_right_paren (pp
);
2658 pp_cxx_ws_string (pp
, operator_name_info
[TREE_CODE (t
)].name
);
2659 pp_cxx_whitespace (pp
);
2660 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2664 pp_string (pp
, M_("<unparsed>"));
2667 case TRY_CATCH_EXPR
:
2668 case CLEANUP_POINT_EXPR
:
2669 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2672 case PSEUDO_DTOR_EXPR
:
2673 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2675 if (TREE_OPERAND (t
, 1))
2677 dump_type (pp
, TREE_OPERAND (t
, 1), flags
);
2678 pp_cxx_colon_colon (pp
);
2680 pp_cxx_complement (pp
);
2681 dump_type (pp
, TREE_OPERAND (t
, 2), flags
);
2684 case TEMPLATE_ID_EXPR
:
2685 dump_decl (pp
, t
, flags
);
2691 case STATEMENT_LIST
:
2692 /* We don't yet have a way of dumping statements in a
2693 human-readable format. */
2694 pp_string (pp
, "({...})");
2698 pp_string (pp
, "while (1) { ");
2699 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
2700 pp_cxx_right_brace (pp
);
2704 pp_string (pp
, "if (");
2705 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
2706 pp_string (pp
, ") break; ");
2710 dump_expr (pp
, BASELINK_FUNCTIONS (t
), flags
& ~TFF_EXPR_IN_PARENS
);
2713 case EMPTY_CLASS_EXPR
:
2714 dump_type (pp
, TREE_TYPE (t
), flags
);
2715 pp_cxx_left_paren (pp
);
2716 pp_cxx_right_paren (pp
);
2719 case NON_DEPENDENT_EXPR
:
2720 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2723 case ARGUMENT_PACK_SELECT
:
2724 dump_template_argument (pp
, ARGUMENT_PACK_SELECT_FROM_PACK (t
), flags
);
2736 pp_type_specifier_seq (pp
, t
);
2740 /* We get here when we want to print a dependent type as an
2741 id-expression, without any disambiguator decoration. */
2742 pp
->id_expression (t
);
2745 case TEMPLATE_TYPE_PARM
:
2746 case TEMPLATE_TEMPLATE_PARM
:
2747 case BOUND_TEMPLATE_TEMPLATE_PARM
:
2748 dump_type (pp
, t
, flags
);
2752 pp_cxx_trait_expression (pp
, t
);
2756 pp_cxx_va_arg_expression (pp
, t
);
2760 pp_cxx_offsetof_expression (pp
, t
);
2763 case ADDRESSOF_EXPR
:
2764 pp_cxx_addressof_expression (pp
, t
);
2768 dump_decl (pp
, t
, flags
);
2771 case EXPR_PACK_EXPANSION
:
2772 case UNARY_LEFT_FOLD_EXPR
:
2773 case UNARY_RIGHT_FOLD_EXPR
:
2774 case BINARY_LEFT_FOLD_EXPR
:
2775 case BINARY_RIGHT_FOLD_EXPR
:
2782 case VEC_DELETE_EXPR
:
2788 case UNORDERED_EXPR
:
2798 case FIX_TRUNC_EXPR
:
2803 case TRUTH_AND_EXPR
:
2805 case TRUTH_XOR_EXPR
:
2806 if (flags
& TFF_EXPR_IN_PARENS
)
2807 pp_cxx_left_paren (pp
);
2809 if (flags
& TFF_EXPR_IN_PARENS
)
2810 pp_cxx_right_paren (pp
);
2814 dump_expr (pp
, resolve_virtual_fun_from_obj_type_ref (t
), flags
);
2818 pp_string (pp
, M_("<lambda>"));
2822 pp_cxx_left_paren (pp
);
2823 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2824 pp_cxx_right_paren (pp
);
2828 pp_cxx_requires_expr (cxx_pp
, t
);
2832 pp_cxx_simple_requirement (cxx_pp
, t
);
2836 pp_cxx_type_requirement (cxx_pp
, t
);
2840 pp_cxx_compound_requirement (cxx_pp
, t
);
2844 pp_cxx_nested_requirement (cxx_pp
, t
);
2857 pp_cxx_constraint (cxx_pp
, t
);
2860 case PLACEHOLDER_EXPR
:
2861 pp_string (pp
, M_("*this"));
2865 dump_expr_list (pp
, t
, flags
);
2868 /* This list is incomplete, but should suffice for now.
2869 It is very important that `sorry' does not call
2870 `report_error_function'. That could cause an infinite loop. */
2872 pp_unsupported_tree (pp
, t
);
2875 pp_string (pp
, M_("<expression error>"));
2881 dump_binary_op (cxx_pretty_printer
*pp
, const char *opstring
, tree t
,
2884 pp_cxx_left_paren (pp
);
2885 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2886 pp_cxx_whitespace (pp
);
2888 pp_cxx_ws_string (pp
, opstring
);
2890 pp_string (pp
, M_("<unknown operator>"));
2891 pp_cxx_whitespace (pp
);
2892 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2893 pp_cxx_right_paren (pp
);
2897 dump_unary_op (cxx_pretty_printer
*pp
, const char *opstring
, tree t
, int flags
)
2899 if (flags
& TFF_EXPR_IN_PARENS
)
2900 pp_cxx_left_paren (pp
);
2901 pp_cxx_ws_string (pp
, opstring
);
2902 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
2903 if (flags
& TFF_EXPR_IN_PARENS
)
2904 pp_cxx_right_paren (pp
);
2908 reinit_cxx_pp (void)
2910 pp_clear_output_area (cxx_pp
);
2911 cxx_pp
->padding
= pp_none
;
2912 pp_indentation (cxx_pp
) = 0;
2913 pp_needs_newline (cxx_pp
) = false;
2914 cxx_pp
->enclosing_scope
= current_function_decl
;
2917 /* Same as pp_formatted_text, except the return string is a separate
2918 copy and has a GGC storage duration, e.g. an indefinite lifetime. */
2921 pp_ggc_formatted_text (pretty_printer
*pp
)
2923 return ggc_strdup (pp_formatted_text (pp
));
2926 /* Exported interface to stringifying types, exprs and decls under TFF_*
2930 type_as_string (tree typ
, int flags
)
2933 pp_translate_identifiers (cxx_pp
) = false;
2934 dump_type (cxx_pp
, typ
, flags
);
2935 return pp_ggc_formatted_text (cxx_pp
);
2939 type_as_string_translate (tree typ
, int flags
)
2942 dump_type (cxx_pp
, typ
, flags
);
2943 return pp_ggc_formatted_text (cxx_pp
);
2947 expr_as_string (tree decl
, int flags
)
2950 pp_translate_identifiers (cxx_pp
) = false;
2951 dump_expr (cxx_pp
, decl
, flags
);
2952 return pp_ggc_formatted_text (cxx_pp
);
2955 /* Wrap decl_as_string with options appropriate for dwarf. */
2958 decl_as_dwarf_string (tree decl
, int flags
)
2961 /* Curiously, reinit_cxx_pp doesn't reset the flags field, so setting the flag
2962 here will be adequate to get the desired behavior. */
2963 cxx_pp
->flags
|= pp_c_flag_gnu_v3
;
2964 name
= decl_as_string (decl
, flags
);
2965 /* Subsequent calls to the pretty printer shouldn't use this style. */
2966 cxx_pp
->flags
&= ~pp_c_flag_gnu_v3
;
2971 decl_as_string (tree decl
, int flags
)
2974 pp_translate_identifiers (cxx_pp
) = false;
2975 dump_decl (cxx_pp
, decl
, flags
);
2976 return pp_ggc_formatted_text (cxx_pp
);
2980 decl_as_string_translate (tree decl
, int flags
)
2983 dump_decl (cxx_pp
, decl
, flags
);
2984 return pp_ggc_formatted_text (cxx_pp
);
2987 /* Wrap lang_decl_name with options appropriate for dwarf. */
2990 lang_decl_dwarf_name (tree decl
, int v
, bool translate
)
2993 /* Curiously, reinit_cxx_pp doesn't reset the flags field, so setting the flag
2994 here will be adequate to get the desired behavior. */
2995 cxx_pp
->flags
|= pp_c_flag_gnu_v3
;
2996 name
= lang_decl_name (decl
, v
, translate
);
2997 /* Subsequent calls to the pretty printer shouldn't use this style. */
2998 cxx_pp
->flags
&= ~pp_c_flag_gnu_v3
;
3002 /* Generate the three forms of printable names for cxx_printable_name. */
3005 lang_decl_name (tree decl
, int v
, bool translate
)
3009 ? decl_as_string_translate (decl
, TFF_DECL_SPECIFIERS
)
3010 : decl_as_string (decl
, TFF_DECL_SPECIFIERS
));
3013 pp_translate_identifiers (cxx_pp
) = translate
;
3015 && (DECL_CLASS_SCOPE_P (decl
)
3016 || (DECL_NAMESPACE_SCOPE_P (decl
)
3017 && CP_DECL_CONTEXT (decl
) != global_namespace
)))
3019 dump_type (cxx_pp
, CP_DECL_CONTEXT (decl
), TFF_PLAIN_IDENTIFIER
);
3020 pp_cxx_colon_colon (cxx_pp
);
3023 if (TREE_CODE (decl
) == FUNCTION_DECL
)
3024 dump_function_name (cxx_pp
, decl
, TFF_PLAIN_IDENTIFIER
);
3025 else if ((DECL_NAME (decl
) == NULL_TREE
)
3026 && TREE_CODE (decl
) == NAMESPACE_DECL
)
3027 dump_decl (cxx_pp
, decl
, TFF_PLAIN_IDENTIFIER
| TFF_UNQUALIFIED_NAME
);
3029 dump_decl (cxx_pp
, DECL_NAME (decl
), TFF_PLAIN_IDENTIFIER
);
3031 return pp_ggc_formatted_text (cxx_pp
);
3034 /* Return the location of a tree passed to %+ formats. */
3037 location_of (tree t
)
3041 t
= TYPE_MAIN_DECL (t
);
3043 return input_location
;
3045 else if (TREE_CODE (t
) == OVERLOAD
)
3049 return DECL_SOURCE_LOCATION (t
);
3050 if (TREE_CODE (t
) == DEFAULT_ARG
)
3051 return defarg_location (t
);
3052 return EXPR_LOC_OR_LOC (t
, input_location
);
3055 /* Now the interfaces from error et al to dump_type et al. Each takes an
3056 on/off VERBOSE flag and supply the appropriate TFF_ flags to a dump_
3060 decl_to_string (tree decl
, int verbose
)
3064 if (TREE_CODE (decl
) == TYPE_DECL
|| TREE_CODE (decl
) == RECORD_TYPE
3065 || TREE_CODE (decl
) == UNION_TYPE
|| TREE_CODE (decl
) == ENUMERAL_TYPE
)
3066 flags
= TFF_CLASS_KEY_OR_ENUM
;
3068 flags
|= TFF_DECL_SPECIFIERS
;
3069 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
3070 flags
|= TFF_DECL_SPECIFIERS
| TFF_RETURN_TYPE
;
3071 flags
|= TFF_TEMPLATE_HEADER
;
3074 dump_decl (cxx_pp
, decl
, flags
);
3075 return pp_ggc_formatted_text (cxx_pp
);
3079 expr_to_string (tree decl
)
3082 dump_expr (cxx_pp
, decl
, 0);
3083 return pp_ggc_formatted_text (cxx_pp
);
3087 fndecl_to_string (tree fndecl
, int verbose
)
3091 flags
= TFF_EXCEPTION_SPECIFICATION
| TFF_DECL_SPECIFIERS
3092 | TFF_TEMPLATE_HEADER
;
3094 flags
|= TFF_FUNCTION_DEFAULT_ARGUMENTS
;
3096 dump_decl (cxx_pp
, fndecl
, flags
);
3097 return pp_ggc_formatted_text (cxx_pp
);
3102 code_to_string (enum tree_code c
)
3104 return get_tree_code_name (c
);
3108 language_to_string (enum languages c
)
3115 case lang_cplusplus
:
3124 /* Return the proper printed version of a parameter to a C++ function. */
3127 parm_to_string (int p
)
3131 pp_string (cxx_pp
, "'this'");
3133 pp_decimal_int (cxx_pp
, p
+ 1);
3134 return pp_ggc_formatted_text (cxx_pp
);
3138 op_to_string (enum tree_code p
)
3140 tree id
= operator_name_info
[p
].identifier
;
3141 return id
? IDENTIFIER_POINTER (id
) : M_("<unknown>");
3145 type_to_string (tree typ
, int verbose
)
3149 flags
|= TFF_CLASS_KEY_OR_ENUM
;
3150 flags
|= TFF_TEMPLATE_HEADER
;
3153 dump_type (cxx_pp
, typ
, flags
);
3154 /* If we're printing a type that involves typedefs, also print the
3155 stripped version. But sometimes the stripped version looks
3156 exactly the same, so we don't want it after all. To avoid printing
3157 it in that case, we play ugly obstack games. */
3158 if (typ
&& TYPE_P (typ
) && typ
!= TYPE_CANONICAL (typ
)
3159 && !uses_template_parms (typ
))
3161 int aka_start
, aka_len
; char *p
;
3162 struct obstack
*ob
= pp_buffer (cxx_pp
)->obstack
;
3163 /* Remember the end of the initial dump. */
3164 int len
= obstack_object_size (ob
);
3165 tree aka
= strip_typedefs (typ
);
3166 pp_string (cxx_pp
, " {aka");
3167 pp_cxx_whitespace (cxx_pp
);
3168 /* And remember the start of the aka dump. */
3169 aka_start
= obstack_object_size (ob
);
3170 dump_type (cxx_pp
, aka
, flags
);
3171 aka_len
= obstack_object_size (ob
) - aka_start
;
3172 pp_right_brace (cxx_pp
);
3173 p
= (char*)obstack_base (ob
);
3174 /* If they are identical, cut off the aka with a NUL. */
3175 if (len
== aka_len
&& memcmp (p
, p
+aka_start
, len
) == 0)
3178 return pp_ggc_formatted_text (cxx_pp
);
3182 assop_to_string (enum tree_code p
)
3184 tree id
= assignment_operator_name_info
[(int) p
].identifier
;
3185 return id
? IDENTIFIER_POINTER (id
) : M_("{unknown}");
3189 args_to_string (tree p
, int verbose
)
3193 flags
|= TFF_CLASS_KEY_OR_ENUM
;
3198 if (TYPE_P (TREE_VALUE (p
)))
3199 return type_as_string_translate (p
, flags
);
3202 for (; p
; p
= TREE_CHAIN (p
))
3204 if (TREE_VALUE (p
) == null_node
)
3205 pp_cxx_ws_string (cxx_pp
, "NULL");
3207 dump_type (cxx_pp
, error_type (TREE_VALUE (p
)), flags
);
3209 pp_separate_with_comma (cxx_pp
);
3211 return pp_ggc_formatted_text (cxx_pp
);
3214 /* Pretty-print a deduction substitution (from deduction_tsubst_fntype). P
3215 is a TREE_LIST with purpose the TEMPLATE_DECL, value the template
3219 subst_to_string (tree p
)
3221 tree decl
= TREE_PURPOSE (p
);
3222 tree targs
= TREE_VALUE (p
);
3223 tree tparms
= DECL_TEMPLATE_PARMS (decl
);
3224 int flags
= (TFF_DECL_SPECIFIERS
|TFF_TEMPLATE_HEADER
3225 |TFF_NO_TEMPLATE_BINDINGS
);
3231 dump_template_decl (cxx_pp
, TREE_PURPOSE (p
), flags
);
3232 dump_substitution (cxx_pp
, NULL
, tparms
, targs
, /*flags=*/0);
3233 return pp_ggc_formatted_text (cxx_pp
);
3237 cv_to_string (tree p
, int v
)
3240 cxx_pp
->padding
= v
? pp_before
: pp_none
;
3241 pp_cxx_cv_qualifier_seq (cxx_pp
, p
);
3242 return pp_ggc_formatted_text (cxx_pp
);
3246 eh_spec_to_string (tree p
, int /*v*/)
3250 dump_exception_spec (cxx_pp
, p
, flags
);
3251 return pp_ggc_formatted_text (cxx_pp
);
3254 /* Langhook for print_error_function. */
3256 cxx_print_error_function (diagnostic_context
*context
, const char *file
,
3257 diagnostic_info
*diagnostic
)
3259 lhd_print_error_function (context
, file
, diagnostic
);
3260 pp_set_prefix (context
->printer
, file
);
3261 maybe_print_instantiation_context (context
);
3265 cp_diagnostic_starter (diagnostic_context
*context
,
3266 diagnostic_info
*diagnostic
)
3268 diagnostic_report_current_module (context
, diagnostic_location (diagnostic
));
3269 cp_print_error_function (context
, diagnostic
);
3270 maybe_print_instantiation_context (context
);
3271 maybe_print_constexpr_context (context
);
3272 pp_set_prefix (context
->printer
, diagnostic_build_prefix (context
,
3276 /* Print current function onto BUFFER, in the process of reporting
3277 a diagnostic message. Called from cp_diagnostic_starter. */
3279 cp_print_error_function (diagnostic_context
*context
,
3280 diagnostic_info
*diagnostic
)
3282 /* If we are in an instantiation context, current_function_decl is likely
3283 to be wrong, so just rely on print_instantiation_full_context. */
3284 if (current_instantiation ())
3286 if (diagnostic_last_function_changed (context
, diagnostic
))
3288 const char *old_prefix
= context
->printer
->prefix
;
3289 const char *file
= LOCATION_FILE (diagnostic_location (diagnostic
));
3290 tree abstract_origin
= diagnostic_abstract_origin (diagnostic
);
3291 char *new_prefix
= (file
&& abstract_origin
== NULL
)
3292 ? file_name_as_prefix (context
, file
) : NULL
;
3294 pp_set_prefix (context
->printer
, new_prefix
);
3296 if (current_function_decl
== NULL
)
3297 pp_string (context
->printer
, _("At global scope:"));
3302 if (abstract_origin
)
3304 ao
= BLOCK_ABSTRACT_ORIGIN (abstract_origin
);
3305 while (TREE_CODE (ao
) == BLOCK
3306 && BLOCK_ABSTRACT_ORIGIN (ao
)
3307 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
3308 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
3309 gcc_assert (TREE_CODE (ao
) == FUNCTION_DECL
);
3313 fndecl
= current_function_decl
;
3315 pp_printf (context
->printer
, function_category (fndecl
),
3316 cxx_printable_name_translate (fndecl
, 2));
3318 while (abstract_origin
)
3321 tree block
= abstract_origin
;
3323 locus
= &BLOCK_SOURCE_LOCATION (block
);
3325 block
= BLOCK_SUPERCONTEXT (block
);
3326 while (block
&& TREE_CODE (block
) == BLOCK
3327 && BLOCK_ABSTRACT_ORIGIN (block
))
3329 ao
= BLOCK_ABSTRACT_ORIGIN (block
);
3331 while (TREE_CODE (ao
) == BLOCK
3332 && BLOCK_ABSTRACT_ORIGIN (ao
)
3333 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
3334 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
3336 if (TREE_CODE (ao
) == FUNCTION_DECL
)
3341 else if (TREE_CODE (ao
) != BLOCK
)
3344 block
= BLOCK_SUPERCONTEXT (block
);
3347 abstract_origin
= block
;
3350 while (block
&& TREE_CODE (block
) == BLOCK
)
3351 block
= BLOCK_SUPERCONTEXT (block
);
3353 if (block
&& TREE_CODE (block
) == FUNCTION_DECL
)
3355 abstract_origin
= NULL
;
3359 expanded_location s
= expand_location (*locus
);
3360 pp_character (context
->printer
, ',');
3361 pp_newline (context
->printer
);
3364 if (context
->show_column
&& s
.column
!= 0)
3365 pp_printf (context
->printer
,
3366 _(" inlined from %qs at %r%s:%d:%d%R"),
3367 cxx_printable_name_translate (fndecl
, 2),
3368 "locus", s
.file
, s
.line
, s
.column
);
3370 pp_printf (context
->printer
,
3371 _(" inlined from %qs at %r%s:%d%R"),
3372 cxx_printable_name_translate (fndecl
, 2),
3373 "locus", s
.file
, s
.line
);
3377 pp_printf (context
->printer
, _(" inlined from %qs"),
3378 cxx_printable_name_translate (fndecl
, 2));
3381 pp_character (context
->printer
, ':');
3383 pp_newline (context
->printer
);
3385 diagnostic_set_last_function (context
, diagnostic
);
3386 pp_destroy_prefix (context
->printer
);
3387 context
->printer
->prefix
= old_prefix
;
3391 /* Returns a description of FUNCTION using standard terminology. The
3392 result is a format string of the form "In CATEGORY %qs". */
3394 function_category (tree fn
)
3396 /* We can get called from the middle-end for diagnostics of function
3397 clones. Make sure we have language specific information before
3398 dereferencing it. */
3399 if (DECL_LANG_SPECIFIC (STRIP_TEMPLATE (fn
))
3400 && DECL_FUNCTION_MEMBER_P (fn
))
3402 if (DECL_STATIC_FUNCTION_P (fn
))
3403 return _("In static member function %qs");
3404 else if (DECL_COPY_CONSTRUCTOR_P (fn
))
3405 return _("In copy constructor %qs");
3406 else if (DECL_CONSTRUCTOR_P (fn
))
3407 return _("In constructor %qs");
3408 else if (DECL_DESTRUCTOR_P (fn
))
3409 return _("In destructor %qs");
3410 else if (LAMBDA_FUNCTION_P (fn
))
3411 return _("In lambda function");
3413 return _("In member function %qs");
3416 return _("In function %qs");
3419 /* Report the full context of a current template instantiation,
3422 print_instantiation_full_context (diagnostic_context
*context
)
3424 struct tinst_level
*p
= current_instantiation ();
3425 location_t location
= input_location
;
3429 pp_verbatim (context
->printer
,
3430 TREE_CODE (p
->decl
) == TREE_LIST
3431 ? _("%s: In substitution of %qS:\n")
3432 : _("%s: In instantiation of %q#D:\n"),
3433 LOCATION_FILE (location
),
3436 location
= p
->locus
;
3440 print_instantiation_partial_context (context
, p
, location
);
3443 /* Helper function of print_instantiation_partial_context() that
3444 prints a single line of instantiation context. */
3447 print_instantiation_partial_context_line (diagnostic_context
*context
,
3448 const struct tinst_level
*t
,
3449 location_t loc
, bool recursive_p
)
3451 if (loc
== UNKNOWN_LOCATION
)
3454 expanded_location xloc
= expand_location (loc
);
3456 if (context
->show_column
)
3457 pp_verbatim (context
->printer
, _("%r%s:%d:%d:%R "),
3458 "locus", xloc
.file
, xloc
.line
, xloc
.column
);
3460 pp_verbatim (context
->printer
, _("%r%s:%d:%R "),
3461 "locus", xloc
.file
, xloc
.line
);
3465 if (TREE_CODE (t
->decl
) == TREE_LIST
)
3466 pp_verbatim (context
->printer
,
3468 ? _("recursively required by substitution of %qS\n")
3469 : _("required by substitution of %qS\n"),
3472 pp_verbatim (context
->printer
,
3474 ? _("recursively required from %q#D\n")
3475 : _("required from %q#D\n"),
3480 pp_verbatim (context
->printer
,
3482 ? _("recursively required from here\n")
3483 : _("required from here\n"));
3487 /* Same as print_instantiation_full_context but less verbose. */
3490 print_instantiation_partial_context (diagnostic_context
*context
,
3491 struct tinst_level
*t0
, location_t loc
)
3493 struct tinst_level
*t
;
3496 location_t prev_loc
= loc
;
3498 for (t
= t0
; t
!= NULL
; t
= t
->next
)
3499 if (prev_loc
!= t
->locus
)
3501 prev_loc
= t
->locus
;
3507 if (template_backtrace_limit
3508 && n_total
> template_backtrace_limit
)
3510 int skip
= n_total
- template_backtrace_limit
;
3511 int head
= template_backtrace_limit
/ 2;
3513 /* Avoid skipping just 1. If so, skip 2. */
3517 head
= (template_backtrace_limit
- 1) / 2;
3520 for (n
= 0; n
< head
; n
++)
3522 gcc_assert (t
!= NULL
);
3523 if (loc
!= t
->locus
)
3524 print_instantiation_partial_context_line (context
, t
, loc
,
3525 /*recursive_p=*/false);
3529 if (t
!= NULL
&& skip
> 0)
3531 expanded_location xloc
;
3532 xloc
= expand_location (loc
);
3533 if (context
->show_column
)
3534 pp_verbatim (context
->printer
,
3535 _("%r%s:%d:%d:%R [ skipping %d instantiation "
3536 "contexts, use -ftemplate-backtrace-limit=0 to "
3538 "locus", xloc
.file
, xloc
.line
, xloc
.column
, skip
);
3540 pp_verbatim (context
->printer
,
3541 _("%r%s:%d:%R [ skipping %d instantiation "
3542 "contexts, use -ftemplate-backtrace-limit=0 to "
3544 "locus", xloc
.file
, xloc
.line
, skip
);
3549 } while (t
!= NULL
&& --skip
> 0);
3555 while (t
->next
!= NULL
&& t
->locus
== t
->next
->locus
)
3560 print_instantiation_partial_context_line (context
, t
, loc
,
3565 print_instantiation_partial_context_line (context
, NULL
, loc
,
3566 /*recursive_p=*/false);
3569 /* Called from cp_thing to print the template context for an error. */
3571 maybe_print_instantiation_context (diagnostic_context
*context
)
3573 if (!problematic_instantiation_changed () || current_instantiation () == 0)
3576 record_last_problematic_instantiation ();
3577 print_instantiation_full_context (context
);
3580 /* Report what constexpr call(s) we're trying to expand, if any. */
3583 maybe_print_constexpr_context (diagnostic_context
*context
)
3585 vec
<tree
> call_stack
= cx_error_context ();
3589 FOR_EACH_VEC_ELT (call_stack
, ix
, t
)
3591 expanded_location xloc
= expand_location (EXPR_LOCATION (t
));
3592 const char *s
= expr_as_string (t
, 0);
3593 if (context
->show_column
)
3594 pp_verbatim (context
->printer
,
3595 _("%r%s:%d:%d:%R in constexpr expansion of %qs"),
3596 "locus", xloc
.file
, xloc
.line
, xloc
.column
, s
);
3598 pp_verbatim (context
->printer
,
3599 _("%r%s:%d:%R in constexpr expansion of %qs"),
3600 "locus", xloc
.file
, xloc
.line
, s
);
3601 pp_newline (context
->printer
);
3606 /* Return true iff TYPE_A and TYPE_B are template types that are
3607 meaningful to compare. */
3610 comparable_template_types_p (tree type_a
, tree type_b
)
3612 if (!CLASS_TYPE_P (type_a
))
3614 if (!CLASS_TYPE_P (type_b
))
3617 tree tinfo_a
= TYPE_TEMPLATE_INFO (type_a
);
3618 tree tinfo_b
= TYPE_TEMPLATE_INFO (type_b
);
3619 if (!tinfo_a
|| !tinfo_b
)
3622 return TI_TEMPLATE (tinfo_a
) == TI_TEMPLATE (tinfo_b
);
3625 /* Start a new line indented by SPC spaces on PP. */
3628 newline_and_indent (pretty_printer
*pp
, int spc
)
3631 for (int i
= 0; i
< spc
; i
++)
3635 /* Generate a GC-allocated string for ARG, an expression or type. */
3638 arg_to_string (tree arg
, bool verbose
)
3641 return type_to_string (arg
, verbose
);
3643 return expr_to_string (arg
);
3646 /* Subroutine to type_to_string_with_compare and
3647 print_template_tree_comparison.
3649 Print a representation of ARG (an expression or type) to PP,
3650 colorizing it as "type-diff" if PP->show_color. */
3653 print_nonequal_arg (pretty_printer
*pp
, tree arg
, bool verbose
)
3655 pp_printf (pp
, "%r%s%R",
3658 ? arg_to_string (arg
, verbose
)
3659 : G_("(no argument)")));
3662 /* Recursively print template TYPE_A to PP, as compared to template TYPE_B.
3664 The types must satisfy comparable_template_types_p.
3666 If INDENT is 0, then this is equivalent to type_to_string (TYPE_A), but
3667 potentially colorizing/eliding in comparison with TYPE_B.
3669 For example given types:
3670 vector<map<int,double>>
3672 vector<map<int,float>>
3673 then the result on PP would be:
3674 vector<map<[...],double>>
3675 with type elision, and:
3676 vector<map<int,double>>
3677 without type elision.
3679 In both cases the parts of TYPE that differ from PEER will be colorized
3680 if pp_show_color (pp) is true. In the above example, this would be
3683 If INDENT is non-zero, then the types are printed in a tree-like form
3684 which shows both types. In the above example, the result on PP would be:
3691 and without type-elision would be:
3698 As before, the differing parts of the types are colorized if
3699 pp_show_color (pp) is true ("double" and "float" in this example).
3701 Template arguments in which both types are using the default arguments
3702 are not printed; if at least one of the two types is using a non-default
3703 argument, then that argument is printed (or both arguments for the
3704 tree-like print format). */
3707 print_template_differences (pretty_printer
*pp
, tree type_a
, tree type_b
,
3708 bool verbose
, int indent
)
3711 newline_and_indent (pp
, indent
);
3713 tree tinfo_a
= TYPE_TEMPLATE_INFO (type_a
);
3714 tree tinfo_b
= TYPE_TEMPLATE_INFO (type_b
);
3716 pp_printf (pp
, "%s<",
3717 IDENTIFIER_POINTER (DECL_NAME (TI_TEMPLATE (tinfo_a
))));
3719 tree args_a
= TI_ARGS (tinfo_a
);
3720 tree args_b
= TI_ARGS (tinfo_b
);
3721 gcc_assert (TREE_CODE (args_a
) == TREE_VEC
);
3722 gcc_assert (TREE_CODE (args_b
) == TREE_VEC
);
3724 int len_a
= get_non_default_template_args_count (args_a
, flags
);
3725 args_a
= INNERMOST_TEMPLATE_ARGS (args_a
);
3726 int len_b
= get_non_default_template_args_count (args_b
, flags
);
3727 args_b
= INNERMOST_TEMPLATE_ARGS (args_b
);
3728 /* Determine the maximum range of args for which non-default template args
3729 were used; beyond this, only default args (if any) were used, and so
3730 they will be equal from this point onwards.
3731 One of the two peers might have used default arguments within this
3732 range, but the other will be using non-default arguments, and so
3733 it's more readable to print both within this range, to highlight
3735 int len_max
= MAX (len_a
, len_b
);
3736 gcc_assert (TREE_CODE (args_a
) == TREE_VEC
);
3737 gcc_assert (TREE_CODE (args_b
) == TREE_VEC
);
3738 for (int idx
= 0; idx
< len_max
; idx
++)
3741 pp_character (pp
, ',');
3743 tree arg_a
= TREE_VEC_ELT (args_a
, idx
);
3744 tree arg_b
= TREE_VEC_ELT (args_b
, idx
);
3748 newline_and_indent (pp
, indent
+ 2);
3749 /* Can do elision here, printing "[...]". */
3750 if (flag_elide_type
)
3751 pp_string (pp
, G_("[...]"));
3753 pp_string (pp
, arg_to_string (arg_a
, verbose
));
3757 int new_indent
= indent
? indent
+ 2 : 0;
3758 if (comparable_template_types_p (arg_a
, arg_b
))
3759 print_template_differences (pp
, arg_a
, arg_b
, verbose
, new_indent
);
3763 newline_and_indent (pp
, indent
+ 2);
3764 pp_character (pp
, '[');
3765 print_nonequal_arg (pp
, arg_a
, verbose
);
3766 pp_string (pp
, " != ");
3767 print_nonequal_arg (pp
, arg_b
, verbose
);
3768 pp_character (pp
, ']');
3771 print_nonequal_arg (pp
, arg_a
, verbose
);
3774 pp_printf (pp
, ">");
3777 /* As type_to_string, but for a template, potentially colorizing/eliding
3778 in comparison with PEER.
3779 For example, if TYPE is map<int,double> and PEER is map<int,int>,
3780 then the resulting string would be:
3782 with type elision, and:
3784 without type elision.
3786 In both cases the parts of TYPE that differ from PEER will be colorized
3787 if SHOW_COLOR is true. In the above example, this would be "double".
3789 Template arguments in which both types are using the default arguments
3790 are not printed; if at least one of the two types is using a non-default
3791 argument, then both arguments are printed.
3793 The resulting string is in a GC-allocated buffer. */
3796 type_to_string_with_compare (tree type
, tree peer
, bool verbose
,
3799 pretty_printer inner_pp
;
3800 pretty_printer
*pp
= &inner_pp
;
3801 pp_show_color (pp
) = show_color
;
3803 print_template_differences (pp
, type
, peer
, verbose
, 0);
3804 return pp_ggc_formatted_text (pp
);
3807 /* Recursively print a tree-like comparison of TYPE_A and TYPE_B to PP,
3808 indented by INDENT spaces.
3810 For example given types:
3812 vector<map<int,double>>
3816 vector<map<double,float>>
3818 the output with type elision would be:
3825 and without type-elision would be:
3832 TYPE_A and TYPE_B must both be comparable template types
3833 (as per comparable_template_types_p).
3835 Template arguments in which both types are using the default arguments
3836 are not printed; if at least one of the two types is using a non-default
3837 argument, then both arguments are printed. */
3840 print_template_tree_comparison (pretty_printer
*pp
, tree type_a
, tree type_b
,
3841 bool verbose
, int indent
)
3843 print_template_differences (pp
, type_a
, type_b
, verbose
, indent
);
3846 /* Subroutine for use in a format_postprocessor::handle
3847 implementation. Adds a chunk to the end of
3848 formatted output, so that it will be printed
3849 by pp_output_formatted_text. */
3852 append_formatted_chunk (pretty_printer
*pp
, const char *content
)
3854 output_buffer
*buffer
= pp_buffer (pp
);
3855 struct chunk_info
*chunk_array
= buffer
->cur_chunk_array
;
3856 const char **args
= chunk_array
->args
;
3858 unsigned int chunk_idx
;
3859 for (chunk_idx
= 0; args
[chunk_idx
]; chunk_idx
++)
3861 args
[chunk_idx
++] = content
;
3862 args
[chunk_idx
] = NULL
;
3865 /* Create a copy of CONTENT, with quotes added, and,
3866 potentially, with colorization.
3867 No escaped is performed on CONTENT.
3868 The result is in a GC-allocated buffer. */
3871 add_quotes (const char *content
, bool show_color
)
3873 pretty_printer tmp_pp
;
3874 pp_show_color (&tmp_pp
) = show_color
;
3876 /* We have to use "%<%s%>" rather than "%qs" here in order to avoid
3877 quoting colorization bytes within the results. */
3878 pp_printf (&tmp_pp
, "%<%s%>", content
);
3880 return pp_ggc_formatted_text (&tmp_pp
);
3883 /* If we had %H and %I, and hence deferred printing them,
3884 print them now, storing the result into the chunk_info
3885 for pp_format. Quote them if 'q' was provided.
3886 Also print the difference in tree form, adding it as
3887 an additional chunk. */
3890 cxx_format_postprocessor::handle (pretty_printer
*pp
)
3892 /* If we have one of %H and %I, the other should have
3894 if (m_type_a
.m_tree
|| m_type_b
.m_tree
)
3896 /* Avoid reentrancy issues by working with a copy of
3897 m_type_a and m_type_b, resetting them now. */
3898 deferred_printed_type type_a
= m_type_a
;
3899 deferred_printed_type type_b
= m_type_b
;
3900 m_type_a
= deferred_printed_type ();
3901 m_type_b
= deferred_printed_type ();
3903 gcc_assert (type_a
.m_buffer_ptr
);
3904 gcc_assert (type_b
.m_buffer_ptr
);
3906 bool show_color
= pp_show_color (pp
);
3908 const char *type_a_text
;
3909 const char *type_b_text
;
3911 if (comparable_template_types_p (type_a
.m_tree
, type_b
.m_tree
))
3914 = type_to_string_with_compare (type_a
.m_tree
, type_b
.m_tree
,
3915 type_a
.m_verbose
, show_color
);
3917 = type_to_string_with_compare (type_b
.m_tree
, type_a
.m_tree
,
3918 type_b
.m_verbose
, show_color
);
3920 if (flag_diagnostics_show_template_tree
)
3922 pretty_printer inner_pp
;
3923 pp_show_color (&inner_pp
) = pp_show_color (pp
);
3924 print_template_tree_comparison
3925 (&inner_pp
, type_a
.m_tree
, type_b
.m_tree
, type_a
.m_verbose
, 2);
3926 append_formatted_chunk (pp
, pp_ggc_formatted_text (&inner_pp
));
3931 /* If the types were not comparable, they are printed normally,
3932 and no difference tree is printed. */
3933 type_a_text
= type_to_string (type_a
.m_tree
, type_a
.m_verbose
);
3934 type_b_text
= type_to_string (type_b
.m_tree
, type_b
.m_verbose
);
3938 type_a_text
= add_quotes (type_a_text
, show_color
);
3939 *type_a
.m_buffer_ptr
= type_a_text
;
3942 type_b_text
= add_quotes (type_b_text
, show_color
);
3943 *type_b
.m_buffer_ptr
= type_b_text
;
3947 /* Subroutine for handling %H and %I, to support i18n of messages like:
3949 error_at (loc, "could not convert %qE from %qH to %qI",
3950 expr, type_a, type_b);
3952 so that we can print things like:
3954 could not convert 'foo' from 'map<int,double>' to 'map<int,int>'
3956 and, with type-elision:
3958 could not convert 'foo' from 'map<[...],double>' to 'map<[...],int>'
3960 (with color-coding of the differences between the types).
3962 The %H and %I format codes are peers: both must be present,
3963 and they affect each other. Hence to handle them, we must
3964 delay printing until we have both, deferring the printing to
3965 pretty_printer's m_format_postprocessor hook.
3967 This is called in phase 2 of pp_format, when it is accumulating
3968 a series of formatted chunks. We stash the location of the chunk
3969 we're meant to have written to, so that we can write to it in the
3970 m_format_postprocessor hook.
3972 We also need to stash whether a 'q' prefix was provided (the QUOTE
3973 param) so that we can add the quotes when writing out the delayed
3977 defer_phase_2_of_type_diff (deferred_printed_type
*deferred
,
3978 tree type
, const char **buffer_ptr
,
3979 bool verbose
, bool quote
)
3981 gcc_assert (deferred
->m_tree
== NULL_TREE
);
3982 gcc_assert (deferred
->m_buffer_ptr
== NULL
);
3983 *deferred
= deferred_printed_type (type
, buffer_ptr
, verbose
, quote
);
3987 /* Called from output_format -- during diagnostic message processing --
3988 to handle C++ specific format specifier with the following meanings:
3989 %A function argument-list.
3993 %F function declaration.
3994 %L language as used in extern "lang".
3996 %P function parameter whose position is indicated by an integer.
3997 %Q assignment operator.
3998 %S substitution (template + args)
4001 %X exception-specification.
4002 %H type difference (from)
4003 %I type difference (to). */
4005 cp_printer (pretty_printer
*pp
, text_info
*text
, const char *spec
,
4006 int precision
, bool wide
, bool set_locus
, bool verbose
,
4007 bool quoted
, const char **buffer_ptr
)
4009 gcc_assert (pp
->m_format_postprocessor
);
4010 cxx_format_postprocessor
*postprocessor
4011 = static_cast <cxx_format_postprocessor
*> (pp
->m_format_postprocessor
);
4015 #define next_tree (t = va_arg (*text->args_ptr, tree))
4016 #define next_tcode ((enum tree_code) va_arg (*text->args_ptr, int))
4017 #define next_lang ((enum languages) va_arg (*text->args_ptr, int))
4018 #define next_int va_arg (*text->args_ptr, int)
4020 if (precision
!= 0 || wide
)
4025 case 'A': result
= args_to_string (next_tree
, verbose
); break;
4026 case 'C': result
= code_to_string (next_tcode
); break;
4029 tree temp
= next_tree
;
4031 && DECL_HAS_DEBUG_EXPR_P (temp
))
4033 temp
= DECL_DEBUG_EXPR (temp
);
4036 result
= expr_to_string (temp
);
4040 result
= decl_to_string (temp
, verbose
);
4043 case 'E': result
= expr_to_string (next_tree
); break;
4044 case 'F': result
= fndecl_to_string (next_tree
, verbose
); break;
4045 case 'L': result
= language_to_string (next_lang
); break;
4046 case 'O': result
= op_to_string (next_tcode
); break;
4047 case 'P': result
= parm_to_string (next_int
); break;
4048 case 'Q': result
= assop_to_string (next_tcode
); break;
4049 case 'S': result
= subst_to_string (next_tree
); break;
4050 case 'T': result
= type_to_string (next_tree
, verbose
); break;
4051 case 'V': result
= cv_to_string (next_tree
, verbose
); break;
4052 case 'X': result
= eh_spec_to_string (next_tree
, verbose
); break;
4055 percent_G_format (text
);
4059 t
= va_arg (*text
->args_ptr
, tree
);
4060 percent_K_format (text
, t
);
4065 defer_phase_2_of_type_diff (&postprocessor
->m_type_a
, next_tree
,
4066 buffer_ptr
, verbose
, quoted
);
4072 defer_phase_2_of_type_diff (&postprocessor
->m_type_b
, next_tree
,
4073 buffer_ptr
, verbose
, quoted
);
4081 pp_string (pp
, result
);
4082 if (set_locus
&& t
!= NULL
)
4083 text
->set_location (0, location_of (t
), true);
4091 /* Warn about the use of C++0x features when appropriate. */
4093 maybe_warn_cpp0x (cpp0x_warn_str str
)
4095 if ((cxx_dialect
== cxx98
) && !in_system_header_at (input_location
))
4096 /* We really want to suppress this warning in system headers,
4097 because libstdc++ uses variadic templates even when we aren't
4101 case CPP0X_INITIALIZER_LISTS
:
4102 pedwarn (input_location
, 0,
4103 "extended initializer lists "
4104 "only available with -std=c++11 or -std=gnu++11");
4106 case CPP0X_EXPLICIT_CONVERSION
:
4107 pedwarn (input_location
, 0,
4108 "explicit conversion operators "
4109 "only available with -std=c++11 or -std=gnu++11");
4111 case CPP0X_VARIADIC_TEMPLATES
:
4112 pedwarn (input_location
, 0,
4113 "variadic templates "
4114 "only available with -std=c++11 or -std=gnu++11");
4116 case CPP0X_LAMBDA_EXPR
:
4117 pedwarn (input_location
, 0,
4118 "lambda expressions "
4119 "only available with -std=c++11 or -std=gnu++11");
4122 pedwarn (input_location
, 0,
4123 "C++11 auto only available with -std=c++11 or -std=gnu++11");
4125 case CPP0X_SCOPED_ENUMS
:
4126 pedwarn (input_location
, 0,
4127 "scoped enums only available with -std=c++11 or -std=gnu++11");
4129 case CPP0X_DEFAULTED_DELETED
:
4130 pedwarn (input_location
, 0,
4131 "defaulted and deleted functions "
4132 "only available with -std=c++11 or -std=gnu++11");
4134 case CPP0X_INLINE_NAMESPACES
:
4135 pedwarn (input_location
, OPT_Wpedantic
,
4136 "inline namespaces "
4137 "only available with -std=c++11 or -std=gnu++11");
4139 case CPP0X_OVERRIDE_CONTROLS
:
4140 pedwarn (input_location
, 0,
4141 "override controls (override/final) "
4142 "only available with -std=c++11 or -std=gnu++11");
4145 pedwarn (input_location
, 0,
4146 "non-static data member initializers "
4147 "only available with -std=c++11 or -std=gnu++11");
4149 case CPP0X_USER_DEFINED_LITERALS
:
4150 pedwarn (input_location
, 0,
4151 "user-defined literals "
4152 "only available with -std=c++11 or -std=gnu++11");
4154 case CPP0X_DELEGATING_CTORS
:
4155 pedwarn (input_location
, 0,
4156 "delegating constructors "
4157 "only available with -std=c++11 or -std=gnu++11");
4159 case CPP0X_INHERITING_CTORS
:
4160 pedwarn (input_location
, 0,
4161 "inheriting constructors "
4162 "only available with -std=c++11 or -std=gnu++11");
4164 case CPP0X_ATTRIBUTES
:
4165 pedwarn (input_location
, 0,
4167 "only available with -std=c++11 or -std=gnu++11");
4169 case CPP0X_REF_QUALIFIER
:
4170 pedwarn (input_location
, 0,
4172 "only available with -std=c++11 or -std=gnu++11");
4179 /* Warn about the use of variadic templates when appropriate. */
4181 maybe_warn_variadic_templates (void)
4183 maybe_warn_cpp0x (CPP0X_VARIADIC_TEMPLATES
);
4187 /* Issue an ISO C++98 pedantic warning at LOCATION, conditional on
4188 option OPT with text GMSGID. Use this function to report
4189 diagnostics for constructs that are invalid C++98, but valid
4192 pedwarn_cxx98 (location_t location
, int opt
, const char *gmsgid
, ...)
4194 diagnostic_info diagnostic
;
4197 rich_location
richloc (line_table
, location
);
4199 va_start (ap
, gmsgid
);
4200 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
,
4201 (cxx_dialect
== cxx98
) ? DK_PEDWARN
: DK_WARNING
);
4202 diagnostic
.option_index
= opt
;
4203 ret
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
4208 /* Issue a diagnostic that NAME cannot be found in SCOPE. DECL is what
4209 we found when we tried to do the lookup. LOCATION is the location of
4210 the NAME identifier. */
4213 qualified_name_lookup_error (tree scope
, tree name
,
4214 tree decl
, location_t location
)
4216 if (scope
== error_mark_node
)
4217 ; /* We already complained. */
4218 else if (TYPE_P (scope
))
4220 if (!COMPLETE_TYPE_P (scope
))
4221 error_at (location
, "incomplete type %qT used in nested name specifier",
4223 else if (TREE_CODE (decl
) == TREE_LIST
)
4225 error_at (location
, "reference to %<%T::%D%> is ambiguous",
4227 print_candidates (decl
);
4230 error_at (location
, "%qD is not a member of %qT", name
, scope
);
4232 else if (scope
!= global_namespace
)
4234 error_at (location
, "%qD is not a member of %qD", name
, scope
);
4235 if (!suggest_alternative_in_explicit_scope (location
, name
, scope
))
4236 suggest_alternatives_for (location
, name
, false);
4240 error_at (location
, "%<::%D%> has not been declared", name
);
4241 suggest_alternatives_for (location
, name
, true);