1 /* Call-backs for C++ error reporting.
2 This code is non-reentrant.
3 Copyright (C) 1993-2016 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 "c-family/c-objc.h"
32 #include "internal-fn.h"
34 #define pp_separate_with_comma(PP) pp_cxx_separate_with (PP, ',')
35 #define pp_separate_with_semicolon(PP) pp_cxx_separate_with (PP, ';')
37 /* cxx_pp is a C++ front-end-specific pretty printer: this is where we
38 dump C++ ASTs as strings. It is mostly used only by the various
39 tree -> string functions that are occasionally called from the
40 debugger or by the front-end for things like
41 __PRETTY_FUNCTION__. */
42 static cxx_pretty_printer actual_pretty_printer
;
43 static cxx_pretty_printer
* const cxx_pp
= &actual_pretty_printer
;
45 /* Translate if being used for diagnostics, but not for dump files or
47 #define M_(msgid) (pp_translate_identifiers (cxx_pp) ? _(msgid) : (msgid))
49 # define NEXT_CODE(T) (TREE_CODE (TREE_TYPE (T)))
51 static const char *args_to_string (tree
, int);
52 static const char *assop_to_string (enum tree_code
);
53 static const char *code_to_string (enum tree_code
);
54 static const char *cv_to_string (tree
, int);
55 static const char *decl_to_string (tree
, int);
56 static const char *expr_to_string (tree
);
57 static const char *fndecl_to_string (tree
, int);
58 static const char *op_to_string (enum tree_code
);
59 static const char *parm_to_string (int);
60 static const char *type_to_string (tree
, int);
62 static void dump_alias_template_specialization (cxx_pretty_printer
*, tree
, int);
63 static void dump_type (cxx_pretty_printer
*, tree
, int);
64 static void dump_typename (cxx_pretty_printer
*, tree
, int);
65 static void dump_simple_decl (cxx_pretty_printer
*, tree
, tree
, int);
66 static void dump_decl (cxx_pretty_printer
*, tree
, int);
67 static void dump_template_decl (cxx_pretty_printer
*, tree
, int);
68 static void dump_function_decl (cxx_pretty_printer
*, tree
, int);
69 static void dump_expr (cxx_pretty_printer
*, tree
, int);
70 static void dump_unary_op (cxx_pretty_printer
*, const char *, tree
, int);
71 static void dump_binary_op (cxx_pretty_printer
*, const char *, tree
, int);
72 static void dump_aggr_type (cxx_pretty_printer
*, tree
, int);
73 static void dump_type_prefix (cxx_pretty_printer
*, tree
, int);
74 static void dump_type_suffix (cxx_pretty_printer
*, tree
, int);
75 static void dump_function_name (cxx_pretty_printer
*, tree
, int);
76 static void dump_call_expr_args (cxx_pretty_printer
*, tree
, int, bool);
77 static void dump_aggr_init_expr_args (cxx_pretty_printer
*, tree
, int, bool);
78 static void dump_expr_list (cxx_pretty_printer
*, tree
, int);
79 static void dump_global_iord (cxx_pretty_printer
*, tree
);
80 static void dump_parameters (cxx_pretty_printer
*, tree
, int);
81 static void dump_ref_qualifier (cxx_pretty_printer
*, tree
, int);
82 static void dump_exception_spec (cxx_pretty_printer
*, tree
, int);
83 static void dump_template_argument (cxx_pretty_printer
*, tree
, int);
84 static void dump_template_argument_list (cxx_pretty_printer
*, tree
, int);
85 static void dump_template_parameter (cxx_pretty_printer
*, tree
, int);
86 static void dump_template_bindings (cxx_pretty_printer
*, tree
, tree
,
88 static void dump_scope (cxx_pretty_printer
*, tree
, int);
89 static void dump_template_parms (cxx_pretty_printer
*, tree
, int, int);
90 static int get_non_default_template_args_count (tree
, int);
91 static const char *function_category (tree
);
92 static void maybe_print_constexpr_context (diagnostic_context
*);
93 static void maybe_print_instantiation_context (diagnostic_context
*);
94 static void print_instantiation_full_context (diagnostic_context
*);
95 static void print_instantiation_partial_context (diagnostic_context
*,
98 static void cp_diagnostic_starter (diagnostic_context
*, diagnostic_info
*);
99 static void cp_print_error_function (diagnostic_context
*, diagnostic_info
*);
101 static bool cp_printer (pretty_printer
*, text_info
*, const char *,
102 int, bool, bool, bool);
104 /* CONTEXT->printer is a basic pretty printer that was constructed
105 presumably by diagnostic_initialize(), called early in the
106 compiler's initialization process (in general_init) Before the FE
107 is initialized. This (C++) FE-specific diagnostic initializer is
108 thus replacing the basic pretty printer with one that has C++-aware
112 cxx_initialize_diagnostics (diagnostic_context
*context
)
114 pretty_printer
*base
= context
->printer
;
115 cxx_pretty_printer
*pp
= XNEW (cxx_pretty_printer
);
116 context
->printer
= new (pp
) cxx_pretty_printer ();
118 /* It is safe to free this object because it was previously XNEW()'d. */
119 base
->~pretty_printer ();
122 c_common_diagnostics_set_defaults (context
);
123 diagnostic_starter (context
) = cp_diagnostic_starter
;
124 /* diagnostic_finalizer is already c_diagnostic_finalizer. */
125 diagnostic_format_decoder (context
) = cp_printer
;
128 /* Dump a scope, if deemed necessary. */
131 dump_scope (cxx_pretty_printer
*pp
, tree scope
, int flags
)
133 int f
= flags
& (TFF_SCOPE
| TFF_CHASE_TYPEDEF
);
135 if (scope
== NULL_TREE
)
138 if (TREE_CODE (scope
) == NAMESPACE_DECL
)
140 if (scope
!= global_namespace
)
142 dump_decl (pp
, scope
, f
);
143 pp_cxx_colon_colon (pp
);
146 else if (AGGREGATE_TYPE_P (scope
))
148 dump_type (pp
, scope
, f
);
149 pp_cxx_colon_colon (pp
);
151 else if ((flags
& TFF_SCOPE
) && TREE_CODE (scope
) == FUNCTION_DECL
)
153 dump_function_decl (pp
, scope
, f
);
154 pp_cxx_colon_colon (pp
);
158 /* Dump the template ARGument under control of FLAGS. */
161 dump_template_argument (cxx_pretty_printer
*pp
, tree arg
, int flags
)
163 if (ARGUMENT_PACK_P (arg
))
164 dump_template_argument_list (pp
, ARGUMENT_PACK_ARGS (arg
),
165 /* No default args in argument packs. */
166 flags
|TFF_NO_OMIT_DEFAULT_TEMPLATE_ARGUMENTS
);
167 else if (TYPE_P (arg
) || TREE_CODE (arg
) == TEMPLATE_DECL
)
168 dump_type (pp
, arg
, flags
& ~TFF_CLASS_KEY_OR_ENUM
);
171 if (TREE_CODE (arg
) == TREE_LIST
)
172 arg
= TREE_VALUE (arg
);
174 /* Strip implicit conversions. */
175 while (CONVERT_EXPR_P (arg
))
176 arg
= TREE_OPERAND (arg
, 0);
178 dump_expr (pp
, arg
, (flags
| TFF_EXPR_IN_PARENS
) & ~TFF_CLASS_KEY_OR_ENUM
);
182 /* Count the number of template arguments ARGS whose value does not
183 match the (optional) default template parameter in PARAMS */
186 get_non_default_template_args_count (tree args
, int flags
)
188 int n
= TREE_VEC_LENGTH (INNERMOST_TEMPLATE_ARGS (args
));
190 if (/* We use this flag when generating debug information. We don't
191 want to expand templates at this point, for this may generate
192 new decls, which gets decl counts out of sync, which may in
193 turn cause codegen differences between compilations with and
195 (flags
& TFF_NO_OMIT_DEFAULT_TEMPLATE_ARGUMENTS
) != 0
196 || !flag_pretty_templates
)
199 return GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (INNERMOST_TEMPLATE_ARGS (args
));
202 /* Dump a template-argument-list ARGS (always a TREE_VEC) under control
206 dump_template_argument_list (cxx_pretty_printer
*pp
, tree args
, int flags
)
208 int n
= get_non_default_template_args_count (args
, flags
);
212 for (i
= 0; i
< n
; ++i
)
214 tree arg
= TREE_VEC_ELT (args
, i
);
216 /* Only print a comma if we know there is an argument coming. In
217 the case of an empty template argument pack, no actual
218 argument will be printed. */
220 && (!ARGUMENT_PACK_P (arg
)
221 || TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg
)) > 0))
222 pp_separate_with_comma (pp
);
224 dump_template_argument (pp
, arg
, flags
);
229 /* Dump a template parameter PARM (a TREE_LIST) under control of FLAGS. */
232 dump_template_parameter (cxx_pretty_printer
*pp
, tree parm
, int flags
)
237 if (parm
== error_mark_node
)
240 p
= TREE_VALUE (parm
);
241 a
= TREE_PURPOSE (parm
);
243 if (TREE_CODE (p
) == TYPE_DECL
)
245 if (flags
& TFF_DECL_SPECIFIERS
)
247 pp_cxx_ws_string (pp
, "class");
248 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (p
)))
249 pp_cxx_ws_string (pp
, "...");
251 pp_cxx_tree_identifier (pp
, DECL_NAME (p
));
253 else if (DECL_NAME (p
))
254 pp_cxx_tree_identifier (pp
, DECL_NAME (p
));
256 pp_cxx_canonical_template_parameter (pp
, TREE_TYPE (p
));
259 dump_decl (pp
, p
, flags
| TFF_DECL_SPECIFIERS
);
261 if ((flags
& TFF_FUNCTION_DEFAULT_ARGUMENTS
) && a
!= NULL_TREE
)
263 pp_cxx_whitespace (pp
);
265 pp_cxx_whitespace (pp
);
266 if (TREE_CODE (p
) == TYPE_DECL
|| TREE_CODE (p
) == TEMPLATE_DECL
)
267 dump_type (pp
, a
, flags
& ~TFF_CHASE_TYPEDEF
);
269 dump_expr (pp
, a
, flags
| TFF_EXPR_IN_PARENS
);
273 /* Dump, under control of FLAGS, a template-parameter-list binding.
274 PARMS is a TREE_LIST of TREE_VEC of TREE_LIST and ARGS is a
278 dump_template_bindings (cxx_pretty_printer
*pp
, tree parms
, tree args
,
279 vec
<tree
, va_gc
> *typenames
)
281 bool need_semicolon
= false;
287 tree p
= TREE_VALUE (parms
);
288 int lvl
= TMPL_PARMS_DEPTH (parms
);
291 tree lvl_args
= NULL_TREE
;
293 /* Don't crash if we had an invalid argument list. */
294 if (TMPL_ARGS_DEPTH (args
) >= lvl
)
295 lvl_args
= TMPL_ARGS_LEVEL (args
, lvl
);
297 for (i
= 0; i
< TREE_VEC_LENGTH (p
); ++i
)
299 tree arg
= NULL_TREE
;
301 /* Don't crash if we had an invalid argument list. */
302 if (lvl_args
&& NUM_TMPL_ARGS (lvl_args
) > arg_idx
)
303 arg
= TREE_VEC_ELT (lvl_args
, arg_idx
);
306 pp_separate_with_semicolon (pp
);
307 dump_template_parameter (pp
, TREE_VEC_ELT (p
, i
),
308 TFF_PLAIN_IDENTIFIER
);
309 pp_cxx_whitespace (pp
);
311 pp_cxx_whitespace (pp
);
314 if (ARGUMENT_PACK_P (arg
))
315 pp_cxx_left_brace (pp
);
316 dump_template_argument (pp
, arg
, TFF_PLAIN_IDENTIFIER
);
317 if (ARGUMENT_PACK_P (arg
))
318 pp_cxx_right_brace (pp
);
321 pp_string (pp
, M_("<missing>"));
324 need_semicolon
= true;
327 parms
= TREE_CHAIN (parms
);
330 /* Don't bother with typenames for a partial instantiation. */
331 if (vec_safe_is_empty (typenames
) || uses_template_parms (args
))
334 /* Don't try to print typenames when we're processing a clone. */
335 if (current_function_decl
336 && !DECL_LANG_SPECIFIC (current_function_decl
))
339 /* Don't try to do this once cgraph starts throwing away front-end
344 FOR_EACH_VEC_SAFE_ELT (typenames
, i
, t
)
347 pp_separate_with_semicolon (pp
);
348 dump_type (pp
, t
, TFF_PLAIN_IDENTIFIER
);
349 pp_cxx_whitespace (pp
);
351 pp_cxx_whitespace (pp
);
352 push_deferring_access_checks (dk_no_check
);
353 t
= tsubst (t
, args
, tf_none
, NULL_TREE
);
354 pop_deferring_access_checks ();
355 /* Strip typedefs. We can't just use TFF_CHASE_TYPEDEF because
356 pp_simple_type_specifier doesn't know about it. */
357 t
= strip_typedefs (t
);
358 dump_type (pp
, t
, TFF_PLAIN_IDENTIFIER
);
362 /* Dump a human-readable equivalent of the alias template
363 specialization of T. */
366 dump_alias_template_specialization (cxx_pretty_printer
*pp
, tree t
, int flags
)
370 gcc_assert (alias_template_specialization_p (t
));
372 if (!(flags
& TFF_UNQUALIFIED_NAME
))
373 dump_scope (pp
, CP_DECL_CONTEXT (TYPE_NAME (t
)), flags
);
374 name
= TYPE_IDENTIFIER (t
);
375 pp_cxx_tree_identifier (pp
, name
);
376 dump_template_parms (pp
, TYPE_TEMPLATE_INFO (t
),
378 flags
& ~TFF_TEMPLATE_HEADER
);
381 /* Dump a human-readable equivalent of TYPE. FLAGS controls the
385 dump_type (cxx_pretty_printer
*pp
, tree t
, int flags
)
390 /* Don't print e.g. "struct mytypedef". */
391 if (TYPE_P (t
) && typedef_variant_p (t
))
393 tree decl
= TYPE_NAME (t
);
394 if ((flags
& TFF_CHASE_TYPEDEF
)
395 || DECL_SELF_REFERENCE_P (decl
)
396 || (!flag_pretty_templates
397 && DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
)))
398 t
= strip_typedefs (t
);
399 else if (alias_template_specialization_p (t
))
401 dump_alias_template_specialization (pp
, t
, flags
);
404 else if (same_type_p (t
, TREE_TYPE (decl
)))
408 pp_cxx_cv_qualifier_seq (pp
, t
);
409 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
414 if (TYPE_PTRMEMFUNC_P (t
))
417 switch (TREE_CODE (t
))
420 if (t
== init_list_type_node
)
421 pp_string (pp
, M_("<brace-enclosed initializer list>"));
422 else if (t
== unknown_type_node
)
423 pp_string (pp
, M_("<unresolved overloaded function type>"));
426 pp_cxx_cv_qualifier_seq (pp
, t
);
427 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
432 /* A list of function parms. */
433 dump_parameters (pp
, t
, flags
);
436 case IDENTIFIER_NODE
:
437 pp_cxx_tree_identifier (pp
, t
);
441 dump_type (pp
, BINFO_TYPE (t
), flags
);
447 dump_aggr_type (pp
, t
, flags
);
451 if (flags
& TFF_CHASE_TYPEDEF
)
453 dump_type (pp
, DECL_ORIGINAL_TYPE (t
)
454 ? DECL_ORIGINAL_TYPE (t
) : TREE_TYPE (t
), flags
);
461 dump_decl (pp
, t
, flags
& ~TFF_DECL_SPECIFIERS
);
470 case FIXED_POINT_TYPE
:
471 pp_type_specifier_seq (pp
, t
);
474 case TEMPLATE_TEMPLATE_PARM
:
475 /* For parameters inside template signature. */
476 if (TYPE_IDENTIFIER (t
))
477 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
479 pp_cxx_canonical_template_parameter (pp
, t
);
482 case BOUND_TEMPLATE_TEMPLATE_PARM
:
484 tree args
= TYPE_TI_ARGS (t
);
485 pp_cxx_cv_qualifier_seq (pp
, t
);
486 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
487 pp_cxx_begin_template_argument_list (pp
);
488 dump_template_argument_list (pp
, args
, flags
);
489 pp_cxx_end_template_argument_list (pp
);
493 case TEMPLATE_TYPE_PARM
:
494 pp_cxx_cv_qualifier_seq (pp
, t
);
495 if (tree c
= PLACEHOLDER_TYPE_CONSTRAINTS (t
))
496 pp_cxx_constrained_type_spec (pp
, c
);
497 else if (TYPE_IDENTIFIER (t
))
498 pp_cxx_tree_identifier (pp
, TYPE_IDENTIFIER (t
));
500 pp_cxx_canonical_template_parameter
501 (pp
, TEMPLATE_TYPE_PARM_INDEX (t
));
504 /* This is not always necessary for pointers and such, but doing this
505 reduces code size. */
514 dump_type_prefix (pp
, t
, flags
);
515 dump_type_suffix (pp
, t
, flags
);
519 if (! (flags
& TFF_CHASE_TYPEDEF
)
520 && DECL_ORIGINAL_TYPE (TYPE_NAME (t
)))
522 dump_decl (pp
, TYPE_NAME (t
), TFF_PLAIN_IDENTIFIER
);
525 pp_cxx_cv_qualifier_seq (pp
, t
);
526 pp_cxx_ws_string (pp
,
527 TYPENAME_IS_ENUM_P (t
) ? "enum"
528 : TYPENAME_IS_CLASS_P (t
) ? "class"
530 dump_typename (pp
, t
, flags
);
533 case UNBOUND_CLASS_TEMPLATE
:
534 if (! (flags
& TFF_UNQUALIFIED_NAME
))
536 dump_type (pp
, TYPE_CONTEXT (t
), flags
);
537 pp_cxx_colon_colon (pp
);
539 pp_cxx_ws_string (pp
, "template");
540 dump_type (pp
, TYPE_IDENTIFIER (t
), flags
);
544 pp_cxx_ws_string (pp
, "__typeof__");
545 pp_cxx_whitespace (pp
);
546 pp_cxx_left_paren (pp
);
547 dump_expr (pp
, TYPEOF_TYPE_EXPR (t
), flags
& ~TFF_EXPR_IN_PARENS
);
548 pp_cxx_right_paren (pp
);
551 case UNDERLYING_TYPE
:
552 pp_cxx_ws_string (pp
, "__underlying_type");
553 pp_cxx_whitespace (pp
);
554 pp_cxx_left_paren (pp
);
555 dump_expr (pp
, UNDERLYING_TYPE_TYPE (t
), flags
& ~TFF_EXPR_IN_PARENS
);
556 pp_cxx_right_paren (pp
);
559 case TYPE_PACK_EXPANSION
:
560 dump_type (pp
, PACK_EXPANSION_PATTERN (t
), flags
);
561 pp_cxx_ws_string (pp
, "...");
564 case TYPE_ARGUMENT_PACK
:
565 dump_template_argument (pp
, t
, flags
);
569 pp_cxx_ws_string (pp
, "decltype");
570 pp_cxx_whitespace (pp
);
571 pp_cxx_left_paren (pp
);
572 dump_expr (pp
, DECLTYPE_TYPE_EXPR (t
), flags
& ~TFF_EXPR_IN_PARENS
);
573 pp_cxx_right_paren (pp
);
577 pp_string (pp
, "std::nullptr_t");
581 pp_unsupported_tree (pp
, t
);
585 pp_string (pp
, M_("<type error>"));
590 /* Dump a TYPENAME_TYPE. We need to notice when the context is itself
594 dump_typename (cxx_pretty_printer
*pp
, tree t
, int flags
)
596 tree ctx
= TYPE_CONTEXT (t
);
598 if (TREE_CODE (ctx
) == TYPENAME_TYPE
)
599 dump_typename (pp
, ctx
, flags
);
601 dump_type (pp
, ctx
, flags
& ~TFF_CLASS_KEY_OR_ENUM
);
602 pp_cxx_colon_colon (pp
);
603 dump_decl (pp
, TYPENAME_TYPE_FULLNAME (t
), flags
);
606 /* Return the name of the supplied aggregate, or enumeral type. */
609 class_key_or_enum_as_string (tree t
)
611 if (TREE_CODE (t
) == ENUMERAL_TYPE
)
613 if (SCOPED_ENUM_P (t
))
618 else if (TREE_CODE (t
) == UNION_TYPE
)
620 else if (TYPE_LANG_SPECIFIC (t
) && CLASSTYPE_DECLARED_CLASS (t
))
626 /* Print out a class declaration T under the control of FLAGS,
627 in the form `class foo'. */
630 dump_aggr_type (cxx_pretty_printer
*pp
, tree t
, int flags
)
633 const char *variety
= class_key_or_enum_as_string (t
);
637 pp_cxx_cv_qualifier_seq (pp
, t
);
639 if (flags
& TFF_CLASS_KEY_OR_ENUM
)
640 pp_cxx_ws_string (pp
, variety
);
642 name
= TYPE_NAME (t
);
646 typdef
= (!DECL_ARTIFICIAL (name
)
647 /* An alias specialization is not considered to be a
649 && !alias_template_specialization_p (t
));
652 && ((flags
& TFF_CHASE_TYPEDEF
)
653 || (!flag_pretty_templates
&& DECL_LANG_SPECIFIC (name
)
654 && DECL_TEMPLATE_INFO (name
))))
655 || DECL_SELF_REFERENCE_P (name
))
657 t
= TYPE_MAIN_VARIANT (t
);
658 name
= TYPE_NAME (t
);
662 tmplate
= !typdef
&& TREE_CODE (t
) != ENUMERAL_TYPE
663 && TYPE_LANG_SPECIFIC (t
) && CLASSTYPE_TEMPLATE_INFO (t
)
664 && (TREE_CODE (CLASSTYPE_TI_TEMPLATE (t
)) != TEMPLATE_DECL
665 || PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t
)));
667 if (! (flags
& TFF_UNQUALIFIED_NAME
))
668 dump_scope (pp
, CP_DECL_CONTEXT (name
), flags
| TFF_SCOPE
);
669 flags
&= ~TFF_UNQUALIFIED_NAME
;
672 /* Because the template names are mangled, we have to locate
673 the most general template, and use that name. */
674 tree tpl
= TYPE_TI_TEMPLATE (t
);
676 while (DECL_TEMPLATE_INFO (tpl
))
677 tpl
= DECL_TI_TEMPLATE (tpl
);
680 name
= DECL_NAME (name
);
683 if (name
== 0 || anon_aggrname_p (name
))
685 if (flags
& TFF_CLASS_KEY_OR_ENUM
)
686 pp_string (pp
, M_("<unnamed>"));
688 pp_printf (pp
, M_("<unnamed %s>"), variety
);
690 else if (LAMBDA_TYPE_P (t
))
692 /* A lambda's "type" is essentially its signature. */
693 pp_string (pp
, M_("<lambda"));
694 if (lambda_function (t
))
696 FUNCTION_FIRST_USER_PARMTYPE (lambda_function (t
)),
701 pp_cxx_tree_identifier (pp
, name
);
703 dump_template_parms (pp
, TYPE_TEMPLATE_INFO (t
),
704 !CLASSTYPE_USE_TEMPLATE (t
),
705 flags
& ~TFF_TEMPLATE_HEADER
);
708 /* Dump into the obstack the initial part of the output for a given type.
709 This is necessary when dealing with things like functions returning
712 return type of `int (* fee ())()': pointer -> function -> int. Both
713 pointer (and reference and offset) and function (and member) types must
714 deal with prefix and suffix.
716 Arrays must also do this for DECL nodes, like int a[], and for things like
720 dump_type_prefix (cxx_pretty_printer
*pp
, tree t
, int flags
)
722 if (TYPE_PTRMEMFUNC_P (t
))
724 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
728 switch (TREE_CODE (t
))
733 tree sub
= TREE_TYPE (t
);
735 dump_type_prefix (pp
, sub
, flags
);
736 if (TREE_CODE (sub
) == ARRAY_TYPE
737 || TREE_CODE (sub
) == FUNCTION_TYPE
)
739 pp_cxx_whitespace (pp
);
740 pp_cxx_left_paren (pp
);
741 pp_c_attributes_display (pp
, TYPE_ATTRIBUTES (sub
));
745 else if (TREE_CODE (t
) == REFERENCE_TYPE
)
747 if (TYPE_REF_IS_RVALUE (t
))
748 pp_ampersand_ampersand (pp
);
752 pp
->padding
= pp_before
;
753 pp_cxx_cv_qualifier_seq (pp
, t
);
759 dump_type_prefix (pp
, TREE_TYPE (t
), flags
);
760 if (TREE_CODE (t
) == OFFSET_TYPE
) /* pmfs deal with this in d_t_p */
763 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
764 pp_cxx_left_paren (pp
);
765 dump_type (pp
, TYPE_OFFSET_BASETYPE (t
), flags
);
766 pp_cxx_colon_colon (pp
);
769 pp_cxx_cv_qualifier_seq (pp
, t
);
770 pp
->padding
= pp_before
;
773 /* This can be reached without a pointer when dealing with
774 templates, e.g. std::is_function. */
776 dump_type_prefix (pp
, TREE_TYPE (t
), flags
);
780 dump_type_prefix (pp
, TREE_TYPE (t
), flags
);
782 pp_cxx_left_paren (pp
);
783 dump_aggr_type (pp
, TYPE_METHOD_BASETYPE (t
), flags
);
784 pp_cxx_colon_colon (pp
);
788 dump_type_prefix (pp
, TREE_TYPE (t
), flags
);
792 case IDENTIFIER_NODE
:
797 case TEMPLATE_TYPE_PARM
:
798 case TEMPLATE_TEMPLATE_PARM
:
799 case BOUND_TEMPLATE_TEMPLATE_PARM
:
810 case UNDERLYING_TYPE
:
812 case TYPE_PACK_EXPANSION
:
813 case FIXED_POINT_TYPE
:
815 dump_type (pp
, t
, flags
);
816 pp
->padding
= pp_before
;
820 pp_unsupported_tree (pp
, t
);
823 pp_string (pp
, M_("<typeprefixerror>"));
828 /* Dump the suffix of type T, under control of FLAGS. This is the part
829 which appears after the identifier (or function parms). */
832 dump_type_suffix (cxx_pretty_printer
*pp
, tree t
, int flags
)
834 if (TYPE_PTRMEMFUNC_P (t
))
835 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
837 switch (TREE_CODE (t
))
842 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
843 || TREE_CODE (TREE_TYPE (t
)) == FUNCTION_TYPE
)
844 pp_cxx_right_paren (pp
);
845 if (TREE_CODE (t
) == POINTER_TYPE
)
846 flags
|= TFF_POINTER
;
847 dump_type_suffix (pp
, TREE_TYPE (t
), flags
);
854 if (TREE_CODE (t
) == METHOD_TYPE
)
855 /* Can only be reached through a pointer. */
856 pp_cxx_right_paren (pp
);
857 arg
= TYPE_ARG_TYPES (t
);
858 if (TREE_CODE (t
) == METHOD_TYPE
)
859 arg
= TREE_CHAIN (arg
);
861 /* Function pointers don't have default args. Not in standard C++,
862 anyway; they may in g++, but we'll just pretend otherwise. */
863 dump_parameters (pp
, arg
, flags
& ~TFF_FUNCTION_DEFAULT_ARGUMENTS
);
865 pp
->padding
= pp_before
;
866 pp_cxx_cv_qualifiers (pp
, type_memfn_quals (t
),
867 TREE_CODE (t
) == FUNCTION_TYPE
868 && (flags
& TFF_POINTER
));
869 dump_ref_qualifier (pp
, t
, flags
);
870 if (tx_safe_fn_type_p (t
))
871 pp_cxx_ws_string (pp
, "transaction_safe");
872 dump_exception_spec (pp
, TYPE_RAISES_EXCEPTIONS (t
), flags
);
873 dump_type_suffix (pp
, TREE_TYPE (t
), flags
);
879 pp_cxx_left_bracket (pp
);
880 if (tree dtype
= TYPE_DOMAIN (t
))
882 tree max
= TYPE_MAX_VALUE (dtype
);
883 /* Zero-length arrays have an upper bound of SIZE_MAX. */
884 if (integer_all_onesp (max
))
885 pp_character (pp
, '0');
886 else if (tree_fits_shwi_p (max
))
887 pp_wide_integer (pp
, tree_to_shwi (max
) + 1);
891 if (TREE_CODE (max
) == SAVE_EXPR
)
892 max
= TREE_OPERAND (max
, 0);
893 if (TREE_CODE (max
) == MINUS_EXPR
894 || TREE_CODE (max
) == PLUS_EXPR
)
896 max
= TREE_OPERAND (max
, 0);
897 while (CONVERT_EXPR_P (max
))
898 max
= TREE_OPERAND (max
, 0);
901 max
= fold_build2_loc (input_location
,
902 PLUS_EXPR
, dtype
, max
,
903 build_int_cst (dtype
, 1));
904 dump_expr (pp
, max
, flags
& ~TFF_EXPR_IN_PARENS
);
907 pp_cxx_right_bracket (pp
);
908 dump_type_suffix (pp
, TREE_TYPE (t
), flags
);
912 case IDENTIFIER_NODE
:
917 case TEMPLATE_TYPE_PARM
:
918 case TEMPLATE_TEMPLATE_PARM
:
919 case BOUND_TEMPLATE_TEMPLATE_PARM
:
930 case UNDERLYING_TYPE
:
932 case TYPE_PACK_EXPANSION
:
933 case FIXED_POINT_TYPE
:
938 pp_unsupported_tree (pp
, t
);
940 /* Don't mark it here, we should have already done in
947 dump_global_iord (cxx_pretty_printer
*pp
, tree t
)
949 const char *p
= NULL
;
951 if (DECL_GLOBAL_CTOR_P (t
))
952 p
= M_("(static initializers for %s)");
953 else if (DECL_GLOBAL_DTOR_P (t
))
954 p
= M_("(static destructors for %s)");
958 pp_printf (pp
, p
, DECL_SOURCE_FILE (t
));
962 dump_simple_decl (cxx_pretty_printer
*pp
, tree t
, tree type
, int flags
)
964 if (flags
& TFF_DECL_SPECIFIERS
)
966 if (VAR_P (t
) && DECL_DECLARED_CONSTEXPR_P (t
))
968 if (DECL_LANG_SPECIFIC (t
) && DECL_DECLARED_CONCEPT_P (t
))
969 pp_cxx_ws_string (pp
, "concept");
971 pp_cxx_ws_string (pp
, "constexpr");
973 dump_type_prefix (pp
, type
, flags
& ~TFF_UNQUALIFIED_NAME
);
976 if (! (flags
& TFF_UNQUALIFIED_NAME
)
977 && TREE_CODE (t
) != PARM_DECL
978 && (!DECL_INITIAL (t
)
979 || TREE_CODE (DECL_INITIAL (t
)) != TEMPLATE_PARM_INDEX
))
980 dump_scope (pp
, CP_DECL_CONTEXT (t
), flags
);
981 flags
&= ~TFF_UNQUALIFIED_NAME
;
982 if ((flags
& TFF_DECL_SPECIFIERS
)
983 && DECL_TEMPLATE_PARM_P (t
)
984 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (t
)))
985 pp_string (pp
, "...");
988 if (TREE_CODE (t
) == FIELD_DECL
&& DECL_NORMAL_CAPTURE_P (t
))
991 pp_string (pp
, IDENTIFIER_POINTER (DECL_NAME (t
)) + 2);
992 pp_string (pp
, " capture>");
995 dump_decl (pp
, DECL_NAME (t
), flags
);
998 pp_string (pp
, M_("<anonymous>"));
999 if (flags
& TFF_DECL_SPECIFIERS
)
1000 dump_type_suffix (pp
, type
, flags
);
1003 /* Print an IDENTIFIER_NODE that is the name of a declaration. */
1006 dump_decl_name (cxx_pretty_printer
*pp
, tree t
, int flags
)
1008 /* These special cases are duplicated here so that other functions
1009 can feed identifiers to error and get them demangled properly. */
1010 if (IDENTIFIER_TYPENAME_P (t
))
1012 pp_cxx_ws_string (pp
, "operator");
1013 /* Not exactly IDENTIFIER_TYPE_VALUE. */
1014 dump_type (pp
, TREE_TYPE (t
), flags
);
1017 if (dguide_name_p (t
))
1019 dump_decl (pp
, CLASSTYPE_TI_TEMPLATE (TREE_TYPE (t
)),
1020 TFF_PLAIN_IDENTIFIER
);
1024 const char *str
= IDENTIFIER_POINTER (t
);
1025 if (!strncmp (str
, "_ZGR", 3))
1027 pp_cxx_ws_string (pp
, "<temporary>");
1031 pp_cxx_tree_identifier (pp
, t
);
1034 /* Dump a human readable string for the decl T under control of FLAGS. */
1037 dump_decl (cxx_pretty_printer
*pp
, tree t
, int flags
)
1042 /* If doing Objective-C++, give Objective-C a chance to demangle
1043 Objective-C method names. */
1044 if (c_dialect_objc ())
1046 const char *demangled
= objc_maybe_printable_name (t
, flags
);
1049 pp_string (pp
, demangled
);
1054 switch (TREE_CODE (t
))
1057 /* Don't say 'typedef class A' */
1058 if (DECL_ARTIFICIAL (t
) && !DECL_SELF_REFERENCE_P (t
))
1060 if ((flags
& TFF_DECL_SPECIFIERS
)
1061 && TREE_CODE (TREE_TYPE (t
)) == TEMPLATE_TYPE_PARM
)
1063 /* Say `class T' not just `T'. */
1064 pp_cxx_ws_string (pp
, "class");
1066 /* Emit the `...' for a parameter pack. */
1067 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (t
)))
1068 pp_cxx_ws_string (pp
, "...");
1071 dump_type (pp
, TREE_TYPE (t
), flags
);
1074 if (TYPE_DECL_ALIAS_P (t
)
1075 && (flags
& TFF_DECL_SPECIFIERS
1076 || flags
& TFF_CLASS_KEY_OR_ENUM
))
1078 pp_cxx_ws_string (pp
, "using");
1079 dump_decl (pp
, DECL_NAME (t
), flags
);
1080 pp_cxx_whitespace (pp
);
1081 pp_cxx_ws_string (pp
, "=");
1082 pp_cxx_whitespace (pp
);
1083 dump_type (pp
, (DECL_ORIGINAL_TYPE (t
)
1084 ? DECL_ORIGINAL_TYPE (t
) : TREE_TYPE (t
)),
1088 if ((flags
& TFF_DECL_SPECIFIERS
)
1089 && !DECL_SELF_REFERENCE_P (t
))
1090 pp_cxx_ws_string (pp
, "typedef");
1091 dump_simple_decl (pp
, t
, DECL_ORIGINAL_TYPE (t
)
1092 ? DECL_ORIGINAL_TYPE (t
) : TREE_TYPE (t
),
1097 if (DECL_NAME (t
) && VTABLE_NAME_P (DECL_NAME (t
)))
1099 pp_string (pp
, M_("vtable for "));
1100 gcc_assert (TYPE_P (DECL_CONTEXT (t
)));
1101 dump_type (pp
, DECL_CONTEXT (t
), flags
);
1107 dump_simple_decl (pp
, t
, TREE_TYPE (t
), flags
);
1109 /* Handle variable template specializations. */
1111 && DECL_LANG_SPECIFIC (t
)
1112 && DECL_TEMPLATE_INFO (t
)
1113 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t
)))
1115 pp_cxx_begin_template_argument_list (pp
);
1116 tree args
= INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (t
));
1117 dump_template_argument_list (pp
, args
, flags
);
1118 pp_cxx_end_template_argument_list (pp
);
1123 pp_string (pp
, M_("<return value> "));
1124 dump_simple_decl (pp
, t
, TREE_TYPE (t
), flags
);
1127 case NAMESPACE_DECL
:
1128 if (flags
& TFF_DECL_SPECIFIERS
)
1129 pp
->declaration (t
);
1132 if (! (flags
& TFF_UNQUALIFIED_NAME
))
1133 dump_scope (pp
, CP_DECL_CONTEXT (t
), flags
);
1134 flags
&= ~TFF_UNQUALIFIED_NAME
;
1135 if (DECL_NAME (t
) == NULL_TREE
)
1137 if (!(pp
->flags
& pp_c_flag_gnu_v3
))
1138 pp_cxx_ws_string (pp
, M_("{anonymous}"));
1140 pp_cxx_ws_string (pp
, M_("(anonymous namespace)"));
1143 pp_cxx_tree_identifier (pp
, DECL_NAME (t
));
1148 dump_type (pp
, TREE_OPERAND (t
, 0), flags
);
1149 pp_colon_colon (pp
);
1150 dump_decl (pp
, TREE_OPERAND (t
, 1), TFF_UNQUALIFIED_NAME
);
1154 dump_decl (pp
, TREE_OPERAND (t
, 0), flags
);
1155 pp_cxx_left_bracket (pp
);
1156 dump_decl (pp
, TREE_OPERAND (t
, 1), flags
);
1157 pp_cxx_right_bracket (pp
);
1160 case ARRAY_NOTATION_REF
:
1161 dump_decl (pp
, ARRAY_NOTATION_ARRAY (t
), flags
| TFF_EXPR_IN_PARENS
);
1162 pp_cxx_left_bracket (pp
);
1163 dump_decl (pp
, ARRAY_NOTATION_START (t
), flags
| TFF_EXPR_IN_PARENS
);
1165 dump_decl (pp
, ARRAY_NOTATION_LENGTH (t
), flags
| TFF_EXPR_IN_PARENS
);
1167 dump_decl (pp
, ARRAY_NOTATION_STRIDE (t
), flags
| TFF_EXPR_IN_PARENS
);
1168 pp_cxx_right_bracket (pp
);
1171 /* So that we can do dump_decl on an aggr type. */
1175 dump_type (pp
, t
, flags
);
1179 /* This is a pseudo destructor call which has not been folded into
1180 a PSEUDO_DTOR_EXPR yet. */
1181 pp_cxx_complement (pp
);
1182 dump_type (pp
, TREE_OPERAND (t
, 0), flags
);
1189 case IDENTIFIER_NODE
:
1190 dump_decl_name (pp
, t
, flags
);
1196 t
= OVL_CURRENT (t
);
1197 if (DECL_CLASS_SCOPE_P (t
))
1199 dump_type (pp
, DECL_CONTEXT (t
), flags
);
1200 pp_cxx_colon_colon (pp
);
1202 else if (!DECL_FILE_SCOPE_P (t
))
1204 dump_decl (pp
, DECL_CONTEXT (t
), flags
);
1205 pp_cxx_colon_colon (pp
);
1207 dump_decl (pp
, DECL_NAME (t
), flags
);
1211 /* If there's only one function, just treat it like an ordinary
1213 t
= OVL_CURRENT (t
);
1217 if (! DECL_LANG_SPECIFIC (t
))
1219 if (DECL_ABSTRACT_ORIGIN (t
)
1220 && DECL_ABSTRACT_ORIGIN (t
) != t
)
1221 dump_decl (pp
, DECL_ABSTRACT_ORIGIN (t
), flags
);
1223 dump_function_name (pp
, t
, flags
);
1225 else if (DECL_GLOBAL_CTOR_P (t
) || DECL_GLOBAL_DTOR_P (t
))
1226 dump_global_iord (pp
, t
);
1228 dump_function_decl (pp
, t
, flags
);
1232 dump_template_decl (pp
, t
, flags
);
1235 case TEMPLATE_ID_EXPR
:
1237 tree name
= TREE_OPERAND (t
, 0);
1238 tree args
= TREE_OPERAND (t
, 1);
1240 if (is_overloaded_fn (name
))
1241 name
= get_first_fn (name
);
1243 name
= DECL_NAME (name
);
1244 dump_decl (pp
, name
, flags
);
1245 pp_cxx_begin_template_argument_list (pp
);
1246 if (args
== error_mark_node
)
1247 pp_string (pp
, M_("<template arguments error>"));
1249 dump_template_argument_list
1250 (pp
, args
, flags
|TFF_NO_OMIT_DEFAULT_TEMPLATE_ARGUMENTS
);
1251 pp_cxx_end_template_argument_list (pp
);
1256 pp_cxx_tree_identifier (pp
, DECL_NAME (t
));
1260 if ((TREE_TYPE (t
) != NULL_TREE
&& NEXT_CODE (t
) == ENUMERAL_TYPE
)
1261 || (DECL_INITIAL (t
) &&
1262 TREE_CODE (DECL_INITIAL (t
)) == TEMPLATE_PARM_INDEX
))
1263 dump_simple_decl (pp
, t
, TREE_TYPE (t
), flags
);
1264 else if (DECL_NAME (t
))
1265 dump_decl (pp
, DECL_NAME (t
), flags
);
1266 else if (DECL_INITIAL (t
))
1267 dump_expr (pp
, DECL_INITIAL (t
), flags
| TFF_EXPR_IN_PARENS
);
1269 pp_string (pp
, M_("<enumerator>"));
1273 pp_cxx_ws_string (pp
, "using");
1274 dump_type (pp
, USING_DECL_SCOPE (t
), flags
);
1275 pp_cxx_colon_colon (pp
);
1276 dump_decl (pp
, DECL_NAME (t
), flags
);
1280 pp
->declaration (t
);
1284 dump_decl (pp
, BASELINK_FUNCTIONS (t
), flags
);
1287 case NON_DEPENDENT_EXPR
:
1288 dump_expr (pp
, t
, flags
);
1291 case TEMPLATE_TYPE_PARM
:
1292 if (flags
& TFF_DECL_SPECIFIERS
)
1293 pp
->declaration (t
);
1298 case UNBOUND_CLASS_TEMPLATE
:
1299 case TYPE_PACK_EXPANSION
:
1301 dump_type (pp
, t
, flags
);
1305 pp_unsupported_tree (pp
, t
);
1309 pp_string (pp
, M_("<declaration error>"));
1314 /* Dump a template declaration T under control of FLAGS. This means the
1315 'template <...> leaders plus the 'class X' or 'void fn(...)' part. */
1318 dump_template_decl (cxx_pretty_printer
*pp
, tree t
, int flags
)
1320 tree orig_parms
= DECL_TEMPLATE_PARMS (t
);
1324 if (flags
& TFF_TEMPLATE_HEADER
)
1326 for (parms
= orig_parms
= nreverse (orig_parms
);
1328 parms
= TREE_CHAIN (parms
))
1330 tree inner_parms
= INNERMOST_TEMPLATE_PARMS (parms
);
1331 int len
= TREE_VEC_LENGTH (inner_parms
);
1335 /* Skip over the dummy template levels of a template template
1337 gcc_assert (TREE_CODE (TREE_TYPE (t
)) == TEMPLATE_TEMPLATE_PARM
);
1341 pp_cxx_ws_string (pp
, "template");
1342 pp_cxx_begin_template_argument_list (pp
);
1344 /* If we've shown the template prefix, we'd better show the
1345 parameters' and decl's type too. */
1346 flags
|= TFF_DECL_SPECIFIERS
;
1348 for (i
= 0; i
< len
; i
++)
1351 pp_separate_with_comma (pp
);
1352 dump_template_parameter (pp
, TREE_VEC_ELT (inner_parms
, i
),
1355 pp_cxx_end_template_argument_list (pp
);
1356 pp_cxx_whitespace (pp
);
1358 nreverse(orig_parms
);
1360 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t
))
1362 /* Say `template<arg> class TT' not just `template<arg> TT'. */
1363 pp_cxx_ws_string (pp
, "class");
1365 /* If this is a parameter pack, print the ellipsis. */
1366 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (t
)))
1367 pp_cxx_ws_string (pp
, "...");
1370 /* Only print the requirements if we're also printing
1371 the template header. */
1373 if (tree ci
= get_constraints (t
))
1374 if (check_constraint_info (ci
))
1375 if (tree reqs
= CI_TEMPLATE_REQS (ci
))
1377 pp_cxx_requires_clause (pp
, reqs
);
1378 pp_cxx_whitespace (pp
);
1383 if (DECL_CLASS_TEMPLATE_P (t
))
1384 dump_type (pp
, TREE_TYPE (t
),
1385 ((flags
& ~TFF_CLASS_KEY_OR_ENUM
) | TFF_TEMPLATE_NAME
1386 | (flags
& TFF_DECL_SPECIFIERS
? TFF_CLASS_KEY_OR_ENUM
: 0)));
1387 else if (DECL_TEMPLATE_RESULT (t
)
1388 && (VAR_P (DECL_TEMPLATE_RESULT (t
))
1389 /* Alias template. */
1390 || DECL_TYPE_TEMPLATE_P (t
)))
1391 dump_decl (pp
, DECL_TEMPLATE_RESULT (t
), flags
| TFF_TEMPLATE_NAME
);
1394 gcc_assert (TREE_TYPE (t
));
1395 switch (NEXT_CODE (t
))
1399 dump_function_decl (pp
, t
, flags
| TFF_TEMPLATE_NAME
);
1402 /* This case can occur with some invalid code. */
1403 dump_type (pp
, TREE_TYPE (t
),
1404 (flags
& ~TFF_CLASS_KEY_OR_ENUM
) | TFF_TEMPLATE_NAME
1405 | (flags
& TFF_DECL_SPECIFIERS
1406 ? TFF_CLASS_KEY_OR_ENUM
: 0));
1411 /* find_typenames looks through the type of the function template T
1412 and returns a vec containing any typedefs, decltypes or TYPENAME_TYPEs
1415 struct find_typenames_t
1417 hash_set
<tree
> *p_set
;
1418 vec
<tree
, va_gc
> *typenames
;
1422 find_typenames_r (tree
*tp
, int *walk_subtrees
, void *data
)
1424 struct find_typenames_t
*d
= (struct find_typenames_t
*)data
;
1425 tree mv
= NULL_TREE
;
1427 if (TYPE_P (*tp
) && is_typedef_decl (TYPE_NAME (*tp
)))
1428 /* Add the type of the typedef without any additional cv-quals. */
1429 mv
= TREE_TYPE (TYPE_NAME (*tp
));
1430 else if (TREE_CODE (*tp
) == TYPENAME_TYPE
1431 || TREE_CODE (*tp
) == DECLTYPE_TYPE
)
1432 /* Add the typename without any cv-qualifiers. */
1433 mv
= TYPE_MAIN_VARIANT (*tp
);
1435 if (TREE_CODE (*tp
) == TYPE_PACK_EXPANSION
)
1437 /* Don't mess with parameter packs since we don't remember
1438 the pack expansion context for a particular typename. */
1439 *walk_subtrees
= false;
1443 if (mv
&& (mv
== *tp
|| !d
->p_set
->add (mv
)))
1444 vec_safe_push (d
->typenames
, mv
);
1446 /* Search into class template arguments, which cp_walk_subtrees
1448 if (CLASS_TYPE_P (*tp
) && CLASSTYPE_TEMPLATE_INFO (*tp
))
1449 cp_walk_tree (&CLASSTYPE_TI_ARGS (*tp
), find_typenames_r
,
1455 static vec
<tree
, va_gc
> *
1456 find_typenames (tree t
)
1458 struct find_typenames_t ft
;
1459 ft
.p_set
= new hash_set
<tree
>;
1460 ft
.typenames
= NULL
;
1461 cp_walk_tree (&TREE_TYPE (DECL_TEMPLATE_RESULT (t
)),
1462 find_typenames_r
, &ft
, ft
.p_set
);
1464 return ft
.typenames
;
1467 /* Output the "[with ...]" clause for a template instantiation T iff
1468 TEMPLATE_PARMS, TEMPLATE_ARGS and FLAGS are suitable. T may be NULL if
1469 formatting a deduction/substitution diagnostic rather than an
1473 dump_substitution (cxx_pretty_printer
*pp
,
1474 tree t
, tree template_parms
, tree template_args
,
1477 if (template_parms
!= NULL_TREE
&& template_args
!= NULL_TREE
1478 && !(flags
& TFF_NO_TEMPLATE_BINDINGS
))
1480 vec
<tree
, va_gc
> *typenames
= t
? find_typenames (t
) : NULL
;
1481 pp_cxx_whitespace (pp
);
1482 pp_cxx_left_bracket (pp
);
1483 pp
->translate_string ("with");
1484 pp_cxx_whitespace (pp
);
1485 dump_template_bindings (pp
, template_parms
, template_args
, typenames
);
1486 pp_cxx_right_bracket (pp
);
1490 /* Dump the lambda function FN including its 'mutable' qualifier and any
1491 template bindings. */
1494 dump_lambda_function (cxx_pretty_printer
*pp
,
1495 tree fn
, tree template_parms
, tree template_args
,
1498 /* A lambda's signature is essentially its "type". */
1499 dump_type (pp
, DECL_CONTEXT (fn
), flags
);
1500 if (!(TYPE_QUALS (class_of_this_parm (TREE_TYPE (fn
))) & TYPE_QUAL_CONST
))
1502 pp
->padding
= pp_before
;
1503 pp_c_ws_string (pp
, "mutable");
1505 dump_substitution (pp
, fn
, template_parms
, template_args
, flags
);
1508 /* Pretty print a function decl. There are several ways we want to print a
1509 function declaration. The TFF_ bits in FLAGS tells us how to behave.
1510 As error can only apply the '#' flag once to give 0 and 1 for V, there
1511 is %D which doesn't print the throw specs, and %F which does. */
1514 dump_function_decl (cxx_pretty_printer
*pp
, tree t
, int flags
)
1518 tree cname
= NULL_TREE
;
1519 tree template_args
= NULL_TREE
;
1520 tree template_parms
= NULL_TREE
;
1521 int show_return
= flags
& TFF_RETURN_TYPE
|| flags
& TFF_DECL_SPECIFIERS
;
1522 int do_outer_scope
= ! (flags
& TFF_UNQUALIFIED_NAME
);
1526 flags
&= ~(TFF_UNQUALIFIED_NAME
| TFF_TEMPLATE_NAME
);
1527 if (TREE_CODE (t
) == TEMPLATE_DECL
)
1528 t
= DECL_TEMPLATE_RESULT (t
);
1530 /* Save the exceptions, in case t is a specialization and we are
1531 emitting an error about incompatible specifications. */
1532 exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (t
));
1534 /* Likewise for the constexpr specifier, in case t is a specialization. */
1535 constexpr_p
= DECL_DECLARED_CONSTEXPR_P (t
);
1537 /* Pretty print template instantiations only. */
1538 if (DECL_USE_TEMPLATE (t
) && DECL_TEMPLATE_INFO (t
)
1539 && !(flags
& TFF_NO_TEMPLATE_BINDINGS
)
1540 && flag_pretty_templates
)
1544 template_args
= DECL_TI_ARGS (t
);
1545 tmpl
= most_general_template (t
);
1546 if (tmpl
&& TREE_CODE (tmpl
) == TEMPLATE_DECL
)
1548 template_parms
= DECL_TEMPLATE_PARMS (tmpl
);
1553 if (DECL_NAME (t
) && LAMBDA_FUNCTION_P (t
))
1554 return dump_lambda_function (pp
, t
, template_parms
, template_args
, flags
);
1556 fntype
= TREE_TYPE (t
);
1557 parmtypes
= FUNCTION_FIRST_USER_PARMTYPE (t
);
1559 if (DECL_CLASS_SCOPE_P (t
))
1560 cname
= DECL_CONTEXT (t
);
1561 /* This is for partially instantiated template methods. */
1562 else if (TREE_CODE (fntype
) == METHOD_TYPE
)
1563 cname
= TREE_TYPE (TREE_VALUE (parmtypes
));
1565 if (flags
& TFF_DECL_SPECIFIERS
)
1567 if (DECL_STATIC_FUNCTION_P (t
))
1568 pp_cxx_ws_string (pp
, "static");
1569 else if (DECL_VIRTUAL_P (t
))
1570 pp_cxx_ws_string (pp
, "virtual");
1574 if (DECL_DECLARED_CONCEPT_P (t
))
1575 pp_cxx_ws_string (pp
, "concept");
1577 pp_cxx_ws_string (pp
, "constexpr");
1581 /* Print the return type? */
1583 show_return
= (!DECL_CONV_FN_P (t
) && !DECL_CONSTRUCTOR_P (t
)
1584 && !DECL_DESTRUCTOR_P (t
) && !deduction_guide_p (t
));
1587 tree ret
= fndecl_declared_return_type (t
);
1588 dump_type_prefix (pp
, ret
, flags
);
1591 /* Print the function name. */
1592 if (!do_outer_scope
)
1596 dump_type (pp
, cname
, flags
);
1597 pp_cxx_colon_colon (pp
);
1600 dump_scope (pp
, CP_DECL_CONTEXT (t
), flags
);
1602 dump_function_name (pp
, t
, flags
);
1604 if (!(flags
& TFF_NO_FUNCTION_ARGUMENTS
))
1606 dump_parameters (pp
, parmtypes
, flags
);
1608 if (TREE_CODE (fntype
) == METHOD_TYPE
)
1610 pp
->padding
= pp_before
;
1611 pp_cxx_cv_qualifier_seq (pp
, class_of_this_parm (fntype
));
1612 dump_ref_qualifier (pp
, fntype
, flags
);
1615 if (tx_safe_fn_type_p (fntype
))
1617 pp
->padding
= pp_before
;
1618 pp_cxx_ws_string (pp
, "transaction_safe");
1621 if (flags
& TFF_EXCEPTION_SPECIFICATION
)
1623 pp
->padding
= pp_before
;
1624 dump_exception_spec (pp
, exceptions
, flags
);
1628 dump_type_suffix (pp
, TREE_TYPE (fntype
), flags
);
1629 else if (deduction_guide_p (t
))
1631 pp_cxx_ws_string (pp
, "->");
1632 dump_type (pp
, TREE_TYPE (TREE_TYPE (t
)), flags
);
1636 if (tree ci
= get_constraints (t
))
1637 if (tree reqs
= CI_DECLARATOR_REQS (ci
))
1638 pp_cxx_requires_clause (pp
, reqs
);
1640 dump_substitution (pp
, t
, template_parms
, template_args
, flags
);
1642 if (tree base
= DECL_INHERITED_CTOR_BASE (t
))
1644 pp_cxx_ws_string (pp
, "[inherited from");
1645 dump_type (pp
, base
, TFF_PLAIN_IDENTIFIER
);
1646 pp_character (pp
, ']');
1649 else if (template_args
)
1651 bool need_comma
= false;
1653 pp_cxx_begin_template_argument_list (pp
);
1654 template_args
= INNERMOST_TEMPLATE_ARGS (template_args
);
1655 for (i
= 0; i
< TREE_VEC_LENGTH (template_args
); ++i
)
1657 tree arg
= TREE_VEC_ELT (template_args
, i
);
1659 pp_separate_with_comma (pp
);
1660 if (ARGUMENT_PACK_P (arg
))
1661 pp_cxx_left_brace (pp
);
1662 dump_template_argument (pp
, arg
, TFF_PLAIN_IDENTIFIER
);
1663 if (ARGUMENT_PACK_P (arg
))
1664 pp_cxx_right_brace (pp
);
1667 pp_cxx_end_template_argument_list (pp
);
1671 /* Print a parameter list. If this is for a member function, the
1672 member object ptr (and any other hidden args) should have
1673 already been removed. */
1676 dump_parameters (cxx_pretty_printer
*pp
, tree parmtypes
, int flags
)
1679 flags
&= ~TFF_SCOPE
;
1680 pp_cxx_left_paren (pp
);
1682 for (first
= 1; parmtypes
!= void_list_node
;
1683 parmtypes
= TREE_CHAIN (parmtypes
))
1686 pp_separate_with_comma (pp
);
1690 pp_cxx_ws_string (pp
, "...");
1694 dump_type (pp
, TREE_VALUE (parmtypes
), flags
);
1696 if ((flags
& TFF_FUNCTION_DEFAULT_ARGUMENTS
) && TREE_PURPOSE (parmtypes
))
1698 pp_cxx_whitespace (pp
);
1700 pp_cxx_whitespace (pp
);
1701 dump_expr (pp
, TREE_PURPOSE (parmtypes
), flags
| TFF_EXPR_IN_PARENS
);
1705 pp_cxx_right_paren (pp
);
1708 /* Print ref-qualifier of a FUNCTION_TYPE or METHOD_TYPE. FLAGS are ignored. */
1711 dump_ref_qualifier (cxx_pretty_printer
*pp
, tree t
, int flags ATTRIBUTE_UNUSED
)
1713 if (FUNCTION_REF_QUALIFIED (t
))
1715 pp
->padding
= pp_before
;
1716 if (FUNCTION_RVALUE_QUALIFIED (t
))
1717 pp_cxx_ws_string (pp
, "&&");
1719 pp_cxx_ws_string (pp
, "&");
1723 /* Print an exception specification. T is the exception specification. */
1726 dump_exception_spec (cxx_pretty_printer
*pp
, tree t
, int flags
)
1728 if (t
&& TREE_PURPOSE (t
))
1730 pp_cxx_ws_string (pp
, "noexcept");
1731 if (!integer_onep (TREE_PURPOSE (t
)))
1733 pp_cxx_whitespace (pp
);
1734 pp_cxx_left_paren (pp
);
1735 if (DEFERRED_NOEXCEPT_SPEC_P (t
))
1736 pp_cxx_ws_string (pp
, "<uninstantiated>");
1738 dump_expr (pp
, TREE_PURPOSE (t
), flags
);
1739 pp_cxx_right_paren (pp
);
1744 pp_cxx_ws_string (pp
, "throw");
1745 pp_cxx_whitespace (pp
);
1746 pp_cxx_left_paren (pp
);
1747 if (TREE_VALUE (t
) != NULL_TREE
)
1750 dump_type (pp
, TREE_VALUE (t
), flags
);
1754 pp_separate_with_comma (pp
);
1756 pp_cxx_right_paren (pp
);
1760 /* Handle the function name for a FUNCTION_DECL node, grokking operators
1761 and destructors properly. */
1764 dump_function_name (cxx_pretty_printer
*pp
, tree t
, int flags
)
1766 tree name
= DECL_NAME (t
);
1768 /* We can get here with a decl that was synthesized by language-
1769 independent machinery (e.g. coverage.c) in which case it won't
1770 have a lang_specific structure attached and DECL_CONSTRUCTOR_P
1771 will crash. In this case it is safe just to print out the
1773 if (!DECL_LANG_SPECIFIC (t
))
1775 pp_cxx_tree_identifier (pp
, name
);
1779 if (TREE_CODE (t
) == TEMPLATE_DECL
)
1780 t
= DECL_TEMPLATE_RESULT (t
);
1782 /* Don't let the user see __comp_ctor et al. */
1783 if (DECL_CONSTRUCTOR_P (t
)
1784 || DECL_DESTRUCTOR_P (t
))
1786 if (LAMBDA_TYPE_P (DECL_CONTEXT (t
)))
1787 name
= get_identifier ("<lambda>");
1788 else if (TYPE_UNNAMED_P (DECL_CONTEXT (t
)))
1789 name
= get_identifier ("<constructor>");
1791 name
= constructor_name (DECL_CONTEXT (t
));
1794 if (DECL_DESTRUCTOR_P (t
))
1796 pp_cxx_complement (pp
);
1797 dump_decl (pp
, name
, TFF_PLAIN_IDENTIFIER
);
1799 else if (DECL_CONV_FN_P (t
))
1801 /* This cannot use the hack that the operator's return
1802 type is stashed off of its name because it may be
1803 used for error reporting. In the case of conflicting
1804 declarations, both will have the same name, yet
1805 the types will be different, hence the TREE_TYPE field
1806 of the first name will be clobbered by the second. */
1807 pp_cxx_ws_string (pp
, "operator");
1808 dump_type (pp
, TREE_TYPE (TREE_TYPE (t
)), flags
);
1811 dump_decl (pp
, name
, flags
);
1813 if (DECL_TEMPLATE_INFO (t
)
1814 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (t
)
1815 && (TREE_CODE (DECL_TI_TEMPLATE (t
)) != TEMPLATE_DECL
1816 || PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t
))))
1817 dump_template_parms (pp
, DECL_TEMPLATE_INFO (t
), !DECL_USE_TEMPLATE (t
),
1821 /* Dump the template parameters from the template info INFO under control of
1822 FLAGS. PRIMARY indicates whether this is a primary template decl, or
1823 specialization (partial or complete). For partial specializations we show
1824 the specialized parameter values. For a primary template we show no
1828 dump_template_parms (cxx_pretty_printer
*pp
, tree info
,
1829 int primary
, int flags
)
1831 tree args
= info
? TI_ARGS (info
) : NULL_TREE
;
1833 if (primary
&& flags
& TFF_TEMPLATE_NAME
)
1835 flags
&= ~(TFF_CLASS_KEY_OR_ENUM
| TFF_TEMPLATE_NAME
);
1836 pp_cxx_begin_template_argument_list (pp
);
1838 /* Be careful only to print things when we have them, so as not
1839 to crash producing error messages. */
1840 if (args
&& !primary
)
1843 len
= get_non_default_template_args_count (args
, flags
);
1845 args
= INNERMOST_TEMPLATE_ARGS (args
);
1846 for (ix
= 0; ix
!= len
; ix
++)
1848 tree arg
= TREE_VEC_ELT (args
, ix
);
1850 /* Only print a comma if we know there is an argument coming. In
1851 the case of an empty template argument pack, no actual
1852 argument will be printed. */
1854 && (!ARGUMENT_PACK_P (arg
)
1855 || TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg
)) > 0))
1856 pp_separate_with_comma (pp
);
1859 pp_string (pp
, M_("<template parameter error>"));
1861 dump_template_argument (pp
, arg
, flags
);
1866 tree tpl
= TI_TEMPLATE (info
);
1867 tree parms
= DECL_TEMPLATE_PARMS (tpl
);
1870 parms
= TREE_CODE (parms
) == TREE_LIST
? TREE_VALUE (parms
) : NULL_TREE
;
1871 len
= parms
? TREE_VEC_LENGTH (parms
) : 0;
1873 for (ix
= 0; ix
!= len
; ix
++)
1877 if (TREE_VEC_ELT (parms
, ix
) == error_mark_node
)
1879 pp_string (pp
, M_("<template parameter error>"));
1883 parm
= TREE_VALUE (TREE_VEC_ELT (parms
, ix
));
1886 pp_separate_with_comma (pp
);
1888 dump_decl (pp
, parm
, flags
& ~TFF_DECL_SPECIFIERS
);
1891 pp_cxx_end_template_argument_list (pp
);
1894 /* Print out the arguments of CALL_EXPR T as a parenthesized list using
1895 flags FLAGS. Skip over the first argument if SKIPFIRST is true. */
1898 dump_call_expr_args (cxx_pretty_printer
*pp
, tree t
, int flags
, bool skipfirst
)
1901 call_expr_arg_iterator iter
;
1903 pp_cxx_left_paren (pp
);
1904 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, t
)
1910 dump_expr (pp
, arg
, flags
| TFF_EXPR_IN_PARENS
);
1911 if (more_call_expr_args_p (&iter
))
1912 pp_separate_with_comma (pp
);
1915 pp_cxx_right_paren (pp
);
1918 /* Print out the arguments of AGGR_INIT_EXPR T as a parenthesized list
1919 using flags FLAGS. Skip over the first argument if SKIPFIRST is
1923 dump_aggr_init_expr_args (cxx_pretty_printer
*pp
, tree t
, int flags
,
1927 aggr_init_expr_arg_iterator iter
;
1929 pp_cxx_left_paren (pp
);
1930 FOR_EACH_AGGR_INIT_EXPR_ARG (arg
, iter
, t
)
1936 dump_expr (pp
, arg
, flags
| TFF_EXPR_IN_PARENS
);
1937 if (more_aggr_init_expr_args_p (&iter
))
1938 pp_separate_with_comma (pp
);
1941 pp_cxx_right_paren (pp
);
1944 /* Print out a list of initializers (subr of dump_expr). */
1947 dump_expr_list (cxx_pretty_printer
*pp
, tree l
, int flags
)
1951 dump_expr (pp
, TREE_VALUE (l
), flags
| TFF_EXPR_IN_PARENS
);
1954 pp_separate_with_comma (pp
);
1958 /* Print out a vector of initializers (subr of dump_expr). */
1961 dump_expr_init_vec (cxx_pretty_printer
*pp
, vec
<constructor_elt
, va_gc
> *v
,
1964 unsigned HOST_WIDE_INT idx
;
1967 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1969 dump_expr (pp
, value
, flags
| TFF_EXPR_IN_PARENS
);
1970 if (idx
!= v
->length () - 1)
1971 pp_separate_with_comma (pp
);
1976 /* We've gotten an indirect REFERENCE (an OBJ_TYPE_REF) to a virtual
1977 function. Resolve it to a close relative -- in the sense of static
1978 type -- variant being overridden. That is close to what was written in
1979 the source code. Subroutine of dump_expr. */
1982 resolve_virtual_fun_from_obj_type_ref (tree ref
)
1984 tree obj_type
= TREE_TYPE (OBJ_TYPE_REF_OBJECT (ref
));
1985 HOST_WIDE_INT index
= tree_to_uhwi (OBJ_TYPE_REF_TOKEN (ref
));
1986 tree fun
= BINFO_VIRTUALS (TYPE_BINFO (TREE_TYPE (obj_type
)));
1989 fun
= TREE_CHAIN (fun
);
1990 index
-= (TARGET_VTABLE_USES_DESCRIPTORS
1991 ? TARGET_VTABLE_USES_DESCRIPTORS
: 1);
1997 /* Print out an expression E under control of FLAGS. */
2000 dump_expr (cxx_pretty_printer
*pp
, tree t
, int flags
)
2007 if (STATEMENT_CLASS_P (t
))
2009 pp_cxx_ws_string (pp
, M_("<statement>"));
2013 switch (TREE_CODE (t
))
2021 case NAMESPACE_DECL
:
2025 case IDENTIFIER_NODE
:
2026 dump_decl (pp
, t
, ((flags
& ~(TFF_DECL_SPECIFIERS
|TFF_RETURN_TYPE
2027 |TFF_TEMPLATE_HEADER
))
2028 | TFF_NO_TEMPLATE_BINDINGS
2029 | TFF_NO_FUNCTION_ARGUMENTS
));
2033 if (SSA_NAME_VAR (t
)
2034 && !DECL_ARTIFICIAL (SSA_NAME_VAR (t
)))
2035 dump_expr (pp
, SSA_NAME_VAR (t
), flags
);
2037 pp_cxx_ws_string (pp
, M_("<unknown>"));
2048 case USERDEF_LITERAL
:
2049 pp_cxx_userdef_literal (pp
, t
);
2053 /* While waiting for caret diagnostics, avoid printing
2054 __cxa_allocate_exception, __cxa_throw, and the like. */
2055 pp_cxx_ws_string (pp
, M_("<throw-expression>"));
2060 dump_type (pp
, PTRMEM_CST_CLASS (t
), flags
);
2061 pp_cxx_colon_colon (pp
);
2062 pp_cxx_tree_identifier (pp
, DECL_NAME (PTRMEM_CST_MEMBER (t
)));
2066 pp_cxx_left_paren (pp
);
2067 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2068 pp_separate_with_comma (pp
);
2069 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2070 pp_cxx_right_paren (pp
);
2074 pp_cxx_left_paren (pp
);
2075 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2076 pp_string (pp
, " ? ");
2077 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2078 pp_string (pp
, " : ");
2079 dump_expr (pp
, TREE_OPERAND (t
, 2), flags
| TFF_EXPR_IN_PARENS
);
2080 pp_cxx_right_paren (pp
);
2084 if (TREE_HAS_CONSTRUCTOR (t
))
2086 pp_cxx_ws_string (pp
, "new");
2087 pp_cxx_whitespace (pp
);
2088 dump_type (pp
, TREE_TYPE (TREE_TYPE (t
)), flags
);
2091 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2094 case AGGR_INIT_EXPR
:
2096 tree fn
= NULL_TREE
;
2098 if (TREE_CODE (AGGR_INIT_EXPR_FN (t
)) == ADDR_EXPR
)
2099 fn
= TREE_OPERAND (AGGR_INIT_EXPR_FN (t
), 0);
2101 if (fn
&& TREE_CODE (fn
) == FUNCTION_DECL
)
2103 if (DECL_CONSTRUCTOR_P (fn
))
2104 dump_type (pp
, DECL_CONTEXT (fn
), flags
);
2106 dump_decl (pp
, fn
, 0);
2109 dump_expr (pp
, AGGR_INIT_EXPR_FN (t
), 0);
2111 dump_aggr_init_expr_args (pp
, t
, flags
, true);
2116 tree fn
= CALL_EXPR_FN (t
);
2117 bool skipfirst
= false;
2119 /* Deal with internal functions. */
2120 if (fn
== NULL_TREE
)
2122 pp_string (pp
, internal_fn_name (CALL_EXPR_IFN (t
)));
2123 dump_call_expr_args (pp
, t
, flags
, skipfirst
);
2127 if (TREE_CODE (fn
) == ADDR_EXPR
)
2128 fn
= TREE_OPERAND (fn
, 0);
2130 /* Nobody is interested in seeing the guts of vcalls. */
2131 if (TREE_CODE (fn
) == OBJ_TYPE_REF
)
2132 fn
= resolve_virtual_fun_from_obj_type_ref (fn
);
2134 if (TREE_TYPE (fn
) != NULL_TREE
2135 && NEXT_CODE (fn
) == METHOD_TYPE
2136 && call_expr_nargs (t
))
2138 tree ob
= CALL_EXPR_ARG (t
, 0);
2139 if (TREE_CODE (ob
) == ADDR_EXPR
)
2141 dump_expr (pp
, TREE_OPERAND (ob
, 0),
2142 flags
| TFF_EXPR_IN_PARENS
);
2145 else if (TREE_CODE (ob
) != PARM_DECL
2146 || strcmp (IDENTIFIER_POINTER (DECL_NAME (ob
)), "this"))
2148 dump_expr (pp
, ob
, flags
| TFF_EXPR_IN_PARENS
);
2153 if (flag_sanitize
& SANITIZE_UNDEFINED
2154 && is_ubsan_builtin_p (fn
))
2156 pp_string (cxx_pp
, M_("<ubsan routine call>"));
2159 dump_expr (pp
, fn
, flags
| TFF_EXPR_IN_PARENS
);
2160 dump_call_expr_args (pp
, t
, flags
, skipfirst
);
2165 /* Note that this only works for G++ target exprs. If somebody
2166 builds a general TARGET_EXPR, there's no way to represent that
2167 it initializes anything other that the parameter slot for the
2168 default argument. Note we may have cleared out the first
2169 operand in expand_expr, so don't go killing ourselves. */
2170 if (TREE_OPERAND (t
, 1))
2171 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2174 case POINTER_PLUS_EXPR
:
2175 dump_binary_op (pp
, "+", t
, flags
);
2180 dump_binary_op (pp
, assignment_operator_name_info
[NOP_EXPR
].name
,
2187 case TRUNC_DIV_EXPR
:
2188 case TRUNC_MOD_EXPR
:
2196 case TRUTH_ANDIF_EXPR
:
2197 case TRUTH_ORIF_EXPR
:
2204 case EXACT_DIV_EXPR
:
2205 dump_binary_op (pp
, operator_name_info
[TREE_CODE (t
)].name
, t
, flags
);
2209 case FLOOR_DIV_EXPR
:
2210 case ROUND_DIV_EXPR
:
2212 dump_binary_op (pp
, "/", t
, flags
);
2216 case FLOOR_MOD_EXPR
:
2217 case ROUND_MOD_EXPR
:
2218 dump_binary_op (pp
, "%", t
, flags
);
2223 tree ob
= TREE_OPERAND (t
, 0);
2224 if (INDIRECT_REF_P (ob
))
2226 ob
= TREE_OPERAND (ob
, 0);
2227 if (TREE_CODE (ob
) != PARM_DECL
2229 && strcmp (IDENTIFIER_POINTER (DECL_NAME (ob
)), "this")))
2231 dump_expr (pp
, ob
, flags
| TFF_EXPR_IN_PARENS
);
2232 if (TREE_CODE (TREE_TYPE (ob
)) == REFERENCE_TYPE
)
2240 dump_expr (pp
, ob
, flags
| TFF_EXPR_IN_PARENS
);
2243 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
& ~TFF_EXPR_IN_PARENS
);
2248 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2249 pp_cxx_left_bracket (pp
);
2250 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2251 pp_cxx_right_bracket (pp
);
2254 case ARRAY_NOTATION_REF
:
2255 dump_expr (pp
, ARRAY_NOTATION_ARRAY (t
), flags
| TFF_EXPR_IN_PARENS
);
2256 pp_cxx_left_bracket (pp
);
2257 dump_expr (pp
, ARRAY_NOTATION_START (t
), flags
| TFF_EXPR_IN_PARENS
);
2259 dump_expr (pp
, ARRAY_NOTATION_LENGTH (t
), flags
| TFF_EXPR_IN_PARENS
);
2261 dump_expr (pp
, ARRAY_NOTATION_STRIDE (t
), flags
| TFF_EXPR_IN_PARENS
);
2262 pp_cxx_right_bracket (pp
);
2265 case UNARY_PLUS_EXPR
:
2266 dump_unary_op (pp
, "+", t
, flags
);
2270 if (TREE_CODE (TREE_OPERAND (t
, 0)) == FUNCTION_DECL
2271 || TREE_CODE (TREE_OPERAND (t
, 0)) == STRING_CST
2272 /* An ADDR_EXPR can have reference type. In that case, we
2273 shouldn't print the `&' doing so indicates to the user
2274 that the expression has pointer type. */
2276 && TREE_CODE (TREE_TYPE (t
)) == REFERENCE_TYPE
))
2277 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2278 else if (TREE_CODE (TREE_OPERAND (t
, 0)) == LABEL_DECL
)
2279 dump_unary_op (pp
, "&&", t
, flags
);
2281 dump_unary_op (pp
, "&", t
, flags
);
2285 if (TREE_HAS_CONSTRUCTOR (t
))
2287 t
= TREE_OPERAND (t
, 0);
2288 gcc_assert (TREE_CODE (t
) == CALL_EXPR
);
2289 dump_expr (pp
, CALL_EXPR_FN (t
), flags
| TFF_EXPR_IN_PARENS
);
2290 dump_call_expr_args (pp
, t
, flags
, true);
2294 if (TREE_OPERAND (t
,0) != NULL_TREE
2295 && TREE_TYPE (TREE_OPERAND (t
, 0))
2296 && NEXT_CODE (TREE_OPERAND (t
, 0)) == REFERENCE_TYPE
)
2297 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2299 dump_unary_op (pp
, "*", t
, flags
);
2304 if (TREE_CODE (TREE_OPERAND (t
, 0)) == ADDR_EXPR
2305 && integer_zerop (TREE_OPERAND (t
, 1)))
2306 dump_expr (pp
, TREE_OPERAND (TREE_OPERAND (t
, 0), 0), flags
);
2310 if (!integer_zerop (TREE_OPERAND (t
, 1)))
2312 pp_cxx_left_paren (pp
);
2313 if (!integer_onep (TYPE_SIZE_UNIT
2314 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (t
, 0))))))
2316 pp_cxx_left_paren (pp
);
2317 dump_type (pp
, ptr_type_node
, flags
);
2318 pp_cxx_right_paren (pp
);
2321 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2322 if (!integer_zerop (TREE_OPERAND (t
, 1)))
2324 pp_cxx_ws_string (pp
, "+");
2325 dump_expr (pp
, fold_convert (ssizetype
, TREE_OPERAND (t
, 1)),
2327 pp_cxx_right_paren (pp
);
2334 case TRUTH_NOT_EXPR
:
2335 case PREDECREMENT_EXPR
:
2336 case PREINCREMENT_EXPR
:
2337 dump_unary_op (pp
, operator_name_info
[TREE_CODE (t
)].name
, t
, flags
);
2340 case POSTDECREMENT_EXPR
:
2341 case POSTINCREMENT_EXPR
:
2342 pp_cxx_left_paren (pp
);
2343 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2344 pp_cxx_ws_string (pp
, operator_name_info
[TREE_CODE (t
)].name
);
2345 pp_cxx_right_paren (pp
);
2348 case NON_LVALUE_EXPR
:
2349 /* FIXME: This is a KLUDGE workaround for a parsing problem. There
2350 should be another level of INDIRECT_REF so that I don't have to do
2352 if (TREE_TYPE (t
) != NULL_TREE
&& NEXT_CODE (t
) == POINTER_TYPE
)
2354 tree next
= TREE_TYPE (TREE_TYPE (t
));
2356 while (TYPE_PTR_P (next
))
2357 next
= TREE_TYPE (next
);
2359 if (TREE_CODE (next
) == FUNCTION_TYPE
)
2361 if (flags
& TFF_EXPR_IN_PARENS
)
2362 pp_cxx_left_paren (pp
);
2364 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
2365 if (flags
& TFF_EXPR_IN_PARENS
)
2366 pp_cxx_right_paren (pp
);
2369 /* Else fall through. */
2371 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2375 case IMPLICIT_CONV_EXPR
:
2376 case VIEW_CONVERT_EXPR
:
2378 tree op
= TREE_OPERAND (t
, 0);
2379 tree ttype
= TREE_TYPE (t
);
2380 tree optype
= TREE_TYPE (op
);
2382 if (TREE_CODE (ttype
) != TREE_CODE (optype
)
2383 && POINTER_TYPE_P (ttype
)
2384 && POINTER_TYPE_P (optype
)
2385 && same_type_p (TREE_TYPE (optype
),
2388 if (TREE_CODE (ttype
) == REFERENCE_TYPE
)
2391 if (TREE_CODE (op
) == ADDR_EXPR
)
2392 dump_expr (pp
, TREE_OPERAND (op
, 0), flags
);
2394 dump_unary_op (pp
, "*", t
, flags
);
2397 dump_unary_op (pp
, "&", t
, flags
);
2399 else if (!same_type_p (TREE_TYPE (op
), TREE_TYPE (t
)))
2401 /* It is a cast, but we cannot tell whether it is a
2402 reinterpret or static cast. Use the C style notation. */
2403 if (flags
& TFF_EXPR_IN_PARENS
)
2404 pp_cxx_left_paren (pp
);
2405 pp_cxx_left_paren (pp
);
2406 dump_type (pp
, TREE_TYPE (t
), flags
);
2407 pp_cxx_right_paren (pp
);
2408 dump_expr (pp
, op
, flags
| TFF_EXPR_IN_PARENS
);
2409 if (flags
& TFF_EXPR_IN_PARENS
)
2410 pp_cxx_right_paren (pp
);
2413 dump_expr (pp
, op
, flags
);
2418 if (TREE_TYPE (t
) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t
)))
2420 tree idx
= build_ptrmemfunc_access_expr (t
, pfn_identifier
);
2422 if (integer_zerop (idx
))
2424 /* A NULL pointer-to-member constant. */
2425 pp_cxx_left_paren (pp
);
2426 pp_cxx_left_paren (pp
);
2427 dump_type (pp
, TREE_TYPE (t
), flags
);
2428 pp_cxx_right_paren (pp
);
2429 pp_character (pp
, '0');
2430 pp_cxx_right_paren (pp
);
2433 else if (tree_fits_shwi_p (idx
))
2436 unsigned HOST_WIDE_INT n
;
2438 t
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t
)));
2439 t
= TYPE_METHOD_BASETYPE (t
);
2440 virtuals
= BINFO_VIRTUALS (TYPE_BINFO (TYPE_MAIN_VARIANT (t
)));
2442 n
= tree_to_shwi (idx
);
2444 /* Map vtable index back one, to allow for the null pointer to
2448 while (n
> 0 && virtuals
)
2451 virtuals
= TREE_CHAIN (virtuals
);
2455 dump_expr (pp
, BV_FN (virtuals
),
2456 flags
| TFF_EXPR_IN_PARENS
);
2461 if (TREE_TYPE (t
) && LAMBDA_TYPE_P (TREE_TYPE (t
)))
2462 pp_string (pp
, "<lambda closure object>");
2463 if (TREE_TYPE (t
) && EMPTY_CONSTRUCTOR_P (t
))
2465 dump_type (pp
, TREE_TYPE (t
), 0);
2466 pp_cxx_left_paren (pp
);
2467 pp_cxx_right_paren (pp
);
2471 if (!BRACE_ENCLOSED_INITIALIZER_P (t
))
2472 dump_type (pp
, TREE_TYPE (t
), 0);
2473 pp_cxx_left_brace (pp
);
2474 dump_expr_init_vec (pp
, CONSTRUCTOR_ELTS (t
), flags
);
2475 pp_cxx_right_brace (pp
);
2482 tree ob
= TREE_OPERAND (t
, 0);
2483 if (is_dummy_object (ob
))
2485 t
= TREE_OPERAND (t
, 1);
2486 if (TREE_CODE (t
) == FUNCTION_DECL
)
2488 dump_expr (pp
, t
, flags
| TFF_EXPR_IN_PARENS
);
2489 else if (BASELINK_P (t
))
2490 dump_expr (pp
, OVL_CURRENT (BASELINK_FUNCTIONS (t
)),
2491 flags
| TFF_EXPR_IN_PARENS
);
2493 dump_decl (pp
, t
, flags
);
2497 if (INDIRECT_REF_P (ob
))
2499 dump_expr (pp
, TREE_OPERAND (ob
, 0), flags
| TFF_EXPR_IN_PARENS
);
2505 dump_expr (pp
, ob
, flags
| TFF_EXPR_IN_PARENS
);
2509 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2514 case TEMPLATE_PARM_INDEX
:
2515 dump_decl (pp
, TEMPLATE_PARM_DECL (t
), flags
& ~TFF_DECL_SPECIFIERS
);
2519 if (TREE_OPERAND (t
, 0) == NULL_TREE
2520 || TREE_CHAIN (TREE_OPERAND (t
, 0)))
2522 dump_type (pp
, TREE_TYPE (t
), flags
);
2523 pp_cxx_left_paren (pp
);
2524 dump_expr_list (pp
, TREE_OPERAND (t
, 0), flags
);
2525 pp_cxx_right_paren (pp
);
2529 pp_cxx_left_paren (pp
);
2530 dump_type (pp
, TREE_TYPE (t
), flags
);
2531 pp_cxx_right_paren (pp
);
2532 pp_cxx_left_paren (pp
);
2533 dump_expr_list (pp
, TREE_OPERAND (t
, 0), flags
);
2534 pp_cxx_right_paren (pp
);
2538 case STATIC_CAST_EXPR
:
2539 pp_cxx_ws_string (pp
, "static_cast");
2541 case REINTERPRET_CAST_EXPR
:
2542 pp_cxx_ws_string (pp
, "reinterpret_cast");
2544 case CONST_CAST_EXPR
:
2545 pp_cxx_ws_string (pp
, "const_cast");
2547 case DYNAMIC_CAST_EXPR
:
2548 pp_cxx_ws_string (pp
, "dynamic_cast");
2550 pp_cxx_begin_template_argument_list (pp
);
2551 dump_type (pp
, TREE_TYPE (t
), flags
);
2552 pp_cxx_end_template_argument_list (pp
);
2553 pp_cxx_left_paren (pp
);
2554 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2555 pp_cxx_right_paren (pp
);
2559 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2565 if (TREE_CODE (t
) == SIZEOF_EXPR
)
2566 pp_cxx_ws_string (pp
, "sizeof");
2569 gcc_assert (TREE_CODE (t
) == ALIGNOF_EXPR
);
2570 pp_cxx_ws_string (pp
, "__alignof__");
2572 op
= TREE_OPERAND (t
, 0);
2573 if (PACK_EXPANSION_P (op
))
2575 pp_string (pp
, "...");
2576 op
= PACK_EXPANSION_PATTERN (op
);
2578 pp_cxx_whitespace (pp
);
2579 pp_cxx_left_paren (pp
);
2580 if (TREE_CODE (t
) == SIZEOF_EXPR
&& SIZEOF_EXPR_TYPE_P (t
))
2581 dump_type (pp
, TREE_TYPE (op
), flags
);
2582 else if (TYPE_P (TREE_OPERAND (t
, 0)))
2583 dump_type (pp
, op
, flags
);
2585 dump_expr (pp
, op
, flags
);
2586 pp_cxx_right_paren (pp
);
2589 case AT_ENCODE_EXPR
:
2590 pp_cxx_ws_string (pp
, "@encode");
2591 pp_cxx_whitespace (pp
);
2592 pp_cxx_left_paren (pp
);
2593 dump_type (pp
, TREE_OPERAND (t
, 0), flags
);
2594 pp_cxx_right_paren (pp
);
2598 pp_cxx_ws_string (pp
, "noexcept");
2599 pp_cxx_whitespace (pp
);
2600 pp_cxx_left_paren (pp
);
2601 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2602 pp_cxx_right_paren (pp
);
2607 pp_cxx_ws_string (pp
, operator_name_info
[TREE_CODE (t
)].name
);
2608 pp_cxx_whitespace (pp
);
2609 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2613 pp_string (pp
, M_("<unparsed>"));
2616 case TRY_CATCH_EXPR
:
2617 case WITH_CLEANUP_EXPR
:
2618 case CLEANUP_POINT_EXPR
:
2619 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2622 case PSEUDO_DTOR_EXPR
:
2623 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2625 if (TREE_OPERAND (t
, 1))
2627 dump_type (pp
, TREE_OPERAND (t
, 1), flags
);
2628 pp_cxx_colon_colon (pp
);
2630 pp_cxx_complement (pp
);
2631 dump_type (pp
, TREE_OPERAND (t
, 2), flags
);
2634 case TEMPLATE_ID_EXPR
:
2635 dump_decl (pp
, t
, flags
);
2641 case STATEMENT_LIST
:
2642 /* We don't yet have a way of dumping statements in a
2643 human-readable format. */
2644 pp_string (pp
, "({...})");
2648 pp_string (pp
, "while (1) { ");
2649 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
2650 pp_cxx_right_brace (pp
);
2654 pp_string (pp
, "if (");
2655 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
2656 pp_string (pp
, ") break; ");
2660 dump_expr (pp
, BASELINK_FUNCTIONS (t
), flags
& ~TFF_EXPR_IN_PARENS
);
2663 case EMPTY_CLASS_EXPR
:
2664 dump_type (pp
, TREE_TYPE (t
), flags
);
2665 pp_cxx_left_paren (pp
);
2666 pp_cxx_right_paren (pp
);
2669 case NON_DEPENDENT_EXPR
:
2670 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
);
2673 case ARGUMENT_PACK_SELECT
:
2674 dump_template_argument (pp
, ARGUMENT_PACK_SELECT_FROM_PACK (t
), flags
);
2686 pp_type_specifier_seq (pp
, t
);
2690 /* We get here when we want to print a dependent type as an
2691 id-expression, without any disambiguator decoration. */
2692 pp
->id_expression (t
);
2695 case TEMPLATE_TYPE_PARM
:
2696 case TEMPLATE_TEMPLATE_PARM
:
2697 case BOUND_TEMPLATE_TEMPLATE_PARM
:
2698 dump_type (pp
, t
, flags
);
2702 pp_cxx_trait_expression (pp
, t
);
2706 pp_cxx_va_arg_expression (pp
, t
);
2710 pp_cxx_offsetof_expression (pp
, t
);
2713 case ADDRESSOF_EXPR
:
2714 pp_cxx_addressof_expression (pp
, t
);
2718 dump_decl (pp
, t
, flags
);
2721 case EXPR_PACK_EXPANSION
:
2722 case UNARY_LEFT_FOLD_EXPR
:
2723 case UNARY_RIGHT_FOLD_EXPR
:
2724 case BINARY_LEFT_FOLD_EXPR
:
2725 case BINARY_RIGHT_FOLD_EXPR
:
2732 case VEC_DELETE_EXPR
:
2738 case UNORDERED_EXPR
:
2748 case FIX_TRUNC_EXPR
:
2753 case TRUTH_AND_EXPR
:
2755 case TRUTH_XOR_EXPR
:
2756 if (flags
& TFF_EXPR_IN_PARENS
)
2757 pp_cxx_left_paren (pp
);
2759 if (flags
& TFF_EXPR_IN_PARENS
)
2760 pp_cxx_right_paren (pp
);
2764 dump_expr (pp
, resolve_virtual_fun_from_obj_type_ref (t
), flags
);
2768 pp_string (pp
, M_("<lambda>"));
2772 pp_cxx_left_paren (pp
);
2773 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2774 pp_cxx_right_paren (pp
);
2778 pp_cxx_requires_expr (cxx_pp
, t
);
2782 pp_cxx_simple_requirement (cxx_pp
, t
);
2786 pp_cxx_type_requirement (cxx_pp
, t
);
2790 pp_cxx_compound_requirement (cxx_pp
, t
);
2794 pp_cxx_nested_requirement (cxx_pp
, t
);
2807 pp_cxx_constraint (cxx_pp
, t
);
2810 case PLACEHOLDER_EXPR
:
2811 pp_string (pp
, M_("*this"));
2814 /* This list is incomplete, but should suffice for now.
2815 It is very important that `sorry' does not call
2816 `report_error_function'. That could cause an infinite loop. */
2818 pp_unsupported_tree (pp
, t
);
2821 pp_string (pp
, M_("<expression error>"));
2827 dump_binary_op (cxx_pretty_printer
*pp
, const char *opstring
, tree t
,
2830 pp_cxx_left_paren (pp
);
2831 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
| TFF_EXPR_IN_PARENS
);
2832 pp_cxx_whitespace (pp
);
2834 pp_cxx_ws_string (pp
, opstring
);
2836 pp_string (pp
, M_("<unknown operator>"));
2837 pp_cxx_whitespace (pp
);
2838 dump_expr (pp
, TREE_OPERAND (t
, 1), flags
| TFF_EXPR_IN_PARENS
);
2839 pp_cxx_right_paren (pp
);
2843 dump_unary_op (cxx_pretty_printer
*pp
, const char *opstring
, tree t
, int flags
)
2845 if (flags
& TFF_EXPR_IN_PARENS
)
2846 pp_cxx_left_paren (pp
);
2847 pp_cxx_ws_string (pp
, opstring
);
2848 dump_expr (pp
, TREE_OPERAND (t
, 0), flags
& ~TFF_EXPR_IN_PARENS
);
2849 if (flags
& TFF_EXPR_IN_PARENS
)
2850 pp_cxx_right_paren (pp
);
2854 reinit_cxx_pp (void)
2856 pp_clear_output_area (cxx_pp
);
2857 cxx_pp
->padding
= pp_none
;
2858 pp_indentation (cxx_pp
) = 0;
2859 pp_needs_newline (cxx_pp
) = false;
2860 cxx_pp
->enclosing_scope
= current_function_decl
;
2863 /* Same as pp_formatted_text, except the return string is a separate
2864 copy and has a GGC storage duration, e.g. an indefinite lifetime. */
2867 pp_ggc_formatted_text (pretty_printer
*pp
)
2869 return ggc_strdup (pp_formatted_text (pp
));
2872 /* Exported interface to stringifying types, exprs and decls under TFF_*
2876 type_as_string (tree typ
, int flags
)
2879 pp_translate_identifiers (cxx_pp
) = false;
2880 dump_type (cxx_pp
, typ
, flags
);
2881 return pp_ggc_formatted_text (cxx_pp
);
2885 type_as_string_translate (tree typ
, int flags
)
2888 dump_type (cxx_pp
, typ
, flags
);
2889 return pp_ggc_formatted_text (cxx_pp
);
2893 expr_as_string (tree decl
, int flags
)
2896 pp_translate_identifiers (cxx_pp
) = false;
2897 dump_expr (cxx_pp
, decl
, flags
);
2898 return pp_ggc_formatted_text (cxx_pp
);
2901 /* Wrap decl_as_string with options appropriate for dwarf. */
2904 decl_as_dwarf_string (tree decl
, int flags
)
2907 /* Curiously, reinit_cxx_pp doesn't reset the flags field, so setting the flag
2908 here will be adequate to get the desired behavior. */
2909 cxx_pp
->flags
|= pp_c_flag_gnu_v3
;
2910 name
= decl_as_string (decl
, flags
);
2911 /* Subsequent calls to the pretty printer shouldn't use this style. */
2912 cxx_pp
->flags
&= ~pp_c_flag_gnu_v3
;
2917 decl_as_string (tree decl
, int flags
)
2920 pp_translate_identifiers (cxx_pp
) = false;
2921 dump_decl (cxx_pp
, decl
, flags
);
2922 return pp_ggc_formatted_text (cxx_pp
);
2926 decl_as_string_translate (tree decl
, int flags
)
2929 dump_decl (cxx_pp
, decl
, flags
);
2930 return pp_ggc_formatted_text (cxx_pp
);
2933 /* Wrap lang_decl_name with options appropriate for dwarf. */
2936 lang_decl_dwarf_name (tree decl
, int v
, bool translate
)
2939 /* Curiously, reinit_cxx_pp doesn't reset the flags field, so setting the flag
2940 here will be adequate to get the desired behavior. */
2941 cxx_pp
->flags
|= pp_c_flag_gnu_v3
;
2942 name
= lang_decl_name (decl
, v
, translate
);
2943 /* Subsequent calls to the pretty printer shouldn't use this style. */
2944 cxx_pp
->flags
&= ~pp_c_flag_gnu_v3
;
2948 /* Generate the three forms of printable names for cxx_printable_name. */
2951 lang_decl_name (tree decl
, int v
, bool translate
)
2955 ? decl_as_string_translate (decl
, TFF_DECL_SPECIFIERS
)
2956 : decl_as_string (decl
, TFF_DECL_SPECIFIERS
));
2959 pp_translate_identifiers (cxx_pp
) = translate
;
2961 && (DECL_CLASS_SCOPE_P (decl
)
2962 || (DECL_NAMESPACE_SCOPE_P (decl
)
2963 && CP_DECL_CONTEXT (decl
) != global_namespace
)))
2965 dump_type (cxx_pp
, CP_DECL_CONTEXT (decl
), TFF_PLAIN_IDENTIFIER
);
2966 pp_cxx_colon_colon (cxx_pp
);
2969 if (TREE_CODE (decl
) == FUNCTION_DECL
)
2970 dump_function_name (cxx_pp
, decl
, TFF_PLAIN_IDENTIFIER
);
2971 else if ((DECL_NAME (decl
) == NULL_TREE
)
2972 && TREE_CODE (decl
) == NAMESPACE_DECL
)
2973 dump_decl (cxx_pp
, decl
, TFF_PLAIN_IDENTIFIER
| TFF_UNQUALIFIED_NAME
);
2975 dump_decl (cxx_pp
, DECL_NAME (decl
), TFF_PLAIN_IDENTIFIER
);
2977 return pp_ggc_formatted_text (cxx_pp
);
2980 /* Return the location of a tree passed to %+ formats. */
2983 location_of (tree t
)
2987 t
= TYPE_MAIN_DECL (t
);
2989 return input_location
;
2991 else if (TREE_CODE (t
) == OVERLOAD
)
2992 t
= OVL_FUNCTION (t
);
2995 return DECL_SOURCE_LOCATION (t
);
2996 return EXPR_LOC_OR_LOC (t
, input_location
);
2999 /* Now the interfaces from error et al to dump_type et al. Each takes an
3000 on/off VERBOSE flag and supply the appropriate TFF_ flags to a dump_
3004 decl_to_string (tree decl
, int verbose
)
3008 if (TREE_CODE (decl
) == TYPE_DECL
|| TREE_CODE (decl
) == RECORD_TYPE
3009 || TREE_CODE (decl
) == UNION_TYPE
|| TREE_CODE (decl
) == ENUMERAL_TYPE
)
3010 flags
= TFF_CLASS_KEY_OR_ENUM
;
3012 flags
|= TFF_DECL_SPECIFIERS
;
3013 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
3014 flags
|= TFF_DECL_SPECIFIERS
| TFF_RETURN_TYPE
;
3015 flags
|= TFF_TEMPLATE_HEADER
;
3018 dump_decl (cxx_pp
, decl
, flags
);
3019 return pp_ggc_formatted_text (cxx_pp
);
3023 expr_to_string (tree decl
)
3026 dump_expr (cxx_pp
, decl
, 0);
3027 return pp_ggc_formatted_text (cxx_pp
);
3031 fndecl_to_string (tree fndecl
, int verbose
)
3035 flags
= TFF_EXCEPTION_SPECIFICATION
| TFF_DECL_SPECIFIERS
3036 | TFF_TEMPLATE_HEADER
;
3038 flags
|= TFF_FUNCTION_DEFAULT_ARGUMENTS
;
3040 dump_decl (cxx_pp
, fndecl
, flags
);
3041 return pp_ggc_formatted_text (cxx_pp
);
3046 code_to_string (enum tree_code c
)
3048 return get_tree_code_name (c
);
3052 language_to_string (enum languages c
)
3059 case lang_cplusplus
:
3068 /* Return the proper printed version of a parameter to a C++ function. */
3071 parm_to_string (int p
)
3075 pp_string (cxx_pp
, "'this'");
3077 pp_decimal_int (cxx_pp
, p
+ 1);
3078 return pp_ggc_formatted_text (cxx_pp
);
3082 op_to_string (enum tree_code p
)
3084 tree id
= operator_name_info
[p
].identifier
;
3085 return id
? IDENTIFIER_POINTER (id
) : M_("<unknown>");
3089 type_to_string (tree typ
, int verbose
)
3093 flags
|= TFF_CLASS_KEY_OR_ENUM
;
3094 flags
|= TFF_TEMPLATE_HEADER
;
3097 dump_type (cxx_pp
, typ
, flags
);
3098 /* If we're printing a type that involves typedefs, also print the
3099 stripped version. But sometimes the stripped version looks
3100 exactly the same, so we don't want it after all. To avoid printing
3101 it in that case, we play ugly obstack games. */
3102 if (typ
&& TYPE_P (typ
) && typ
!= TYPE_CANONICAL (typ
)
3103 && !uses_template_parms (typ
))
3105 int aka_start
, aka_len
; char *p
;
3106 struct obstack
*ob
= pp_buffer (cxx_pp
)->obstack
;
3107 /* Remember the end of the initial dump. */
3108 int len
= obstack_object_size (ob
);
3109 tree aka
= strip_typedefs (typ
);
3110 pp_string (cxx_pp
, " {aka");
3111 pp_cxx_whitespace (cxx_pp
);
3112 /* And remember the start of the aka dump. */
3113 aka_start
= obstack_object_size (ob
);
3114 dump_type (cxx_pp
, aka
, flags
);
3115 aka_len
= obstack_object_size (ob
) - aka_start
;
3116 pp_right_brace (cxx_pp
);
3117 p
= (char*)obstack_base (ob
);
3118 /* If they are identical, cut off the aka with a NUL. */
3119 if (len
== aka_len
&& memcmp (p
, p
+aka_start
, len
) == 0)
3122 return pp_ggc_formatted_text (cxx_pp
);
3126 assop_to_string (enum tree_code p
)
3128 tree id
= assignment_operator_name_info
[(int) p
].identifier
;
3129 return id
? IDENTIFIER_POINTER (id
) : M_("{unknown}");
3133 args_to_string (tree p
, int verbose
)
3137 flags
|= TFF_CLASS_KEY_OR_ENUM
;
3142 if (TYPE_P (TREE_VALUE (p
)))
3143 return type_as_string_translate (p
, flags
);
3146 for (; p
; p
= TREE_CHAIN (p
))
3148 if (TREE_VALUE (p
) == null_node
)
3149 pp_cxx_ws_string (cxx_pp
, "NULL");
3151 dump_type (cxx_pp
, error_type (TREE_VALUE (p
)), flags
);
3153 pp_separate_with_comma (cxx_pp
);
3155 return pp_ggc_formatted_text (cxx_pp
);
3158 /* Pretty-print a deduction substitution (from deduction_tsubst_fntype). P
3159 is a TREE_LIST with purpose the TEMPLATE_DECL, value the template
3163 subst_to_string (tree p
)
3165 tree decl
= TREE_PURPOSE (p
);
3166 tree targs
= TREE_VALUE (p
);
3167 tree tparms
= DECL_TEMPLATE_PARMS (decl
);
3168 int flags
= (TFF_DECL_SPECIFIERS
|TFF_TEMPLATE_HEADER
3169 |TFF_NO_TEMPLATE_BINDINGS
);
3175 dump_template_decl (cxx_pp
, TREE_PURPOSE (p
), flags
);
3176 dump_substitution (cxx_pp
, NULL
, tparms
, targs
, /*flags=*/0);
3177 return pp_ggc_formatted_text (cxx_pp
);
3181 cv_to_string (tree p
, int v
)
3184 cxx_pp
->padding
= v
? pp_before
: pp_none
;
3185 pp_cxx_cv_qualifier_seq (cxx_pp
, p
);
3186 return pp_ggc_formatted_text (cxx_pp
);
3190 eh_spec_to_string (tree p
, int /*v*/)
3194 dump_exception_spec (cxx_pp
, p
, flags
);
3195 return pp_ggc_formatted_text (cxx_pp
);
3198 /* Langhook for print_error_function. */
3200 cxx_print_error_function (diagnostic_context
*context
, const char *file
,
3201 diagnostic_info
*diagnostic
)
3203 lhd_print_error_function (context
, file
, diagnostic
);
3204 pp_set_prefix (context
->printer
, file
);
3205 maybe_print_instantiation_context (context
);
3209 cp_diagnostic_starter (diagnostic_context
*context
,
3210 diagnostic_info
*diagnostic
)
3212 diagnostic_report_current_module (context
, diagnostic_location (diagnostic
));
3213 cp_print_error_function (context
, diagnostic
);
3214 maybe_print_instantiation_context (context
);
3215 maybe_print_constexpr_context (context
);
3216 pp_set_prefix (context
->printer
, diagnostic_build_prefix (context
,
3220 /* Print current function onto BUFFER, in the process of reporting
3221 a diagnostic message. Called from cp_diagnostic_starter. */
3223 cp_print_error_function (diagnostic_context
*context
,
3224 diagnostic_info
*diagnostic
)
3226 /* If we are in an instantiation context, current_function_decl is likely
3227 to be wrong, so just rely on print_instantiation_full_context. */
3228 if (current_instantiation ())
3230 if (diagnostic_last_function_changed (context
, diagnostic
))
3232 const char *old_prefix
= context
->printer
->prefix
;
3233 const char *file
= LOCATION_FILE (diagnostic_location (diagnostic
));
3234 tree abstract_origin
= diagnostic_abstract_origin (diagnostic
);
3235 char *new_prefix
= (file
&& abstract_origin
== NULL
)
3236 ? file_name_as_prefix (context
, file
) : NULL
;
3238 pp_set_prefix (context
->printer
, new_prefix
);
3240 if (current_function_decl
== NULL
)
3241 pp_string (context
->printer
, _("At global scope:"));
3246 if (abstract_origin
)
3248 ao
= BLOCK_ABSTRACT_ORIGIN (abstract_origin
);
3249 while (TREE_CODE (ao
) == BLOCK
3250 && BLOCK_ABSTRACT_ORIGIN (ao
)
3251 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
3252 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
3253 gcc_assert (TREE_CODE (ao
) == FUNCTION_DECL
);
3257 fndecl
= current_function_decl
;
3259 pp_printf (context
->printer
, function_category (fndecl
),
3260 cxx_printable_name_translate (fndecl
, 2));
3262 while (abstract_origin
)
3265 tree block
= abstract_origin
;
3267 locus
= &BLOCK_SOURCE_LOCATION (block
);
3269 block
= BLOCK_SUPERCONTEXT (block
);
3270 while (block
&& TREE_CODE (block
) == BLOCK
3271 && BLOCK_ABSTRACT_ORIGIN (block
))
3273 ao
= BLOCK_ABSTRACT_ORIGIN (block
);
3275 while (TREE_CODE (ao
) == BLOCK
3276 && BLOCK_ABSTRACT_ORIGIN (ao
)
3277 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
3278 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
3280 if (TREE_CODE (ao
) == FUNCTION_DECL
)
3285 else if (TREE_CODE (ao
) != BLOCK
)
3288 block
= BLOCK_SUPERCONTEXT (block
);
3291 abstract_origin
= block
;
3294 while (block
&& TREE_CODE (block
) == BLOCK
)
3295 block
= BLOCK_SUPERCONTEXT (block
);
3297 if (block
&& TREE_CODE (block
) == FUNCTION_DECL
)
3299 abstract_origin
= NULL
;
3303 expanded_location s
= expand_location (*locus
);
3304 pp_character (context
->printer
, ',');
3305 pp_newline (context
->printer
);
3308 if (context
->show_column
&& s
.column
!= 0)
3309 pp_printf (context
->printer
,
3310 _(" inlined from %qs at %r%s:%d:%d%R"),
3311 cxx_printable_name_translate (fndecl
, 2),
3312 "locus", s
.file
, s
.line
, s
.column
);
3314 pp_printf (context
->printer
,
3315 _(" inlined from %qs at %r%s:%d%R"),
3316 cxx_printable_name_translate (fndecl
, 2),
3317 "locus", s
.file
, s
.line
);
3321 pp_printf (context
->printer
, _(" inlined from %qs"),
3322 cxx_printable_name_translate (fndecl
, 2));
3325 pp_character (context
->printer
, ':');
3327 pp_newline (context
->printer
);
3329 diagnostic_set_last_function (context
, diagnostic
);
3330 pp_destroy_prefix (context
->printer
);
3331 context
->printer
->prefix
= old_prefix
;
3335 /* Returns a description of FUNCTION using standard terminology. The
3336 result is a format string of the form "In CATEGORY %qs". */
3338 function_category (tree fn
)
3340 /* We can get called from the middle-end for diagnostics of function
3341 clones. Make sure we have language specific information before
3342 dereferencing it. */
3343 if (DECL_LANG_SPECIFIC (STRIP_TEMPLATE (fn
))
3344 && DECL_FUNCTION_MEMBER_P (fn
))
3346 if (DECL_STATIC_FUNCTION_P (fn
))
3347 return _("In static member function %qs");
3348 else if (DECL_COPY_CONSTRUCTOR_P (fn
))
3349 return _("In copy constructor %qs");
3350 else if (DECL_CONSTRUCTOR_P (fn
))
3351 return _("In constructor %qs");
3352 else if (DECL_DESTRUCTOR_P (fn
))
3353 return _("In destructor %qs");
3354 else if (LAMBDA_FUNCTION_P (fn
))
3355 return _("In lambda function");
3357 return _("In member function %qs");
3360 return _("In function %qs");
3363 /* Report the full context of a current template instantiation,
3366 print_instantiation_full_context (diagnostic_context
*context
)
3368 struct tinst_level
*p
= current_instantiation ();
3369 location_t location
= input_location
;
3373 pp_verbatim (context
->printer
,
3374 TREE_CODE (p
->decl
) == TREE_LIST
3375 ? _("%s: In substitution of %qS:\n")
3376 : _("%s: In instantiation of %q#D:\n"),
3377 LOCATION_FILE (location
),
3380 location
= p
->locus
;
3384 print_instantiation_partial_context (context
, p
, location
);
3387 /* Helper function of print_instantiation_partial_context() that
3388 prints a single line of instantiation context. */
3391 print_instantiation_partial_context_line (diagnostic_context
*context
,
3392 const struct tinst_level
*t
,
3393 location_t loc
, bool recursive_p
)
3395 if (loc
== UNKNOWN_LOCATION
)
3398 expanded_location xloc
= expand_location (loc
);
3400 if (context
->show_column
)
3401 pp_verbatim (context
->printer
, _("%r%s:%d:%d:%R "),
3402 "locus", xloc
.file
, xloc
.line
, xloc
.column
);
3404 pp_verbatim (context
->printer
, _("%r%s:%d:%R "),
3405 "locus", xloc
.file
, xloc
.line
);
3409 if (TREE_CODE (t
->decl
) == TREE_LIST
)
3410 pp_verbatim (context
->printer
,
3412 ? _("recursively required by substitution of %qS\n")
3413 : _("required by substitution of %qS\n"),
3416 pp_verbatim (context
->printer
,
3418 ? _("recursively required from %q#D\n")
3419 : _("required from %q#D\n"),
3424 pp_verbatim (context
->printer
,
3426 ? _("recursively required from here\n")
3427 : _("required from here\n"));
3431 /* Same as print_instantiation_full_context but less verbose. */
3434 print_instantiation_partial_context (diagnostic_context
*context
,
3435 struct tinst_level
*t0
, location_t loc
)
3437 struct tinst_level
*t
;
3440 location_t prev_loc
= loc
;
3442 for (t
= t0
; t
!= NULL
; t
= t
->next
)
3443 if (prev_loc
!= t
->locus
)
3445 prev_loc
= t
->locus
;
3451 if (template_backtrace_limit
3452 && n_total
> template_backtrace_limit
)
3454 int skip
= n_total
- template_backtrace_limit
;
3455 int head
= template_backtrace_limit
/ 2;
3457 /* Avoid skipping just 1. If so, skip 2. */
3461 head
= (template_backtrace_limit
- 1) / 2;
3464 for (n
= 0; n
< head
; n
++)
3466 gcc_assert (t
!= NULL
);
3467 if (loc
!= t
->locus
)
3468 print_instantiation_partial_context_line (context
, t
, loc
,
3469 /*recursive_p=*/false);
3473 if (t
!= NULL
&& skip
> 0)
3475 expanded_location xloc
;
3476 xloc
= expand_location (loc
);
3477 if (context
->show_column
)
3478 pp_verbatim (context
->printer
,
3479 _("%r%s:%d:%d:%R [ skipping %d instantiation "
3480 "contexts, use -ftemplate-backtrace-limit=0 to "
3482 "locus", xloc
.file
, xloc
.line
, xloc
.column
, skip
);
3484 pp_verbatim (context
->printer
,
3485 _("%r%s:%d:%R [ skipping %d instantiation "
3486 "contexts, use -ftemplate-backtrace-limit=0 to "
3488 "locus", xloc
.file
, xloc
.line
, skip
);
3493 } while (t
!= NULL
&& --skip
> 0);
3499 while (t
->next
!= NULL
&& t
->locus
== t
->next
->locus
)
3504 print_instantiation_partial_context_line (context
, t
, loc
,
3509 print_instantiation_partial_context_line (context
, NULL
, loc
,
3510 /*recursive_p=*/false);
3513 /* Called from cp_thing to print the template context for an error. */
3515 maybe_print_instantiation_context (diagnostic_context
*context
)
3517 if (!problematic_instantiation_changed () || current_instantiation () == 0)
3520 record_last_problematic_instantiation ();
3521 print_instantiation_full_context (context
);
3524 /* Report what constexpr call(s) we're trying to expand, if any. */
3527 maybe_print_constexpr_context (diagnostic_context
*context
)
3529 vec
<tree
> call_stack
= cx_error_context ();
3533 FOR_EACH_VEC_ELT (call_stack
, ix
, t
)
3535 expanded_location xloc
= expand_location (EXPR_LOCATION (t
));
3536 const char *s
= expr_as_string (t
, 0);
3537 if (context
->show_column
)
3538 pp_verbatim (context
->printer
,
3539 _("%r%s:%d:%d:%R in constexpr expansion of %qs"),
3540 "locus", xloc
.file
, xloc
.line
, xloc
.column
, s
);
3542 pp_verbatim (context
->printer
,
3543 _("%r%s:%d:%R in constexpr expansion of %qs"),
3544 "locus", xloc
.file
, xloc
.line
, s
);
3545 pp_newline (context
->printer
);
3549 /* Called from output_format -- during diagnostic message processing --
3550 to handle C++ specific format specifier with the following meanings:
3551 %A function argument-list.
3555 %F function declaration.
3556 %L language as used in extern "lang".
3558 %P function parameter whose position is indicated by an integer.
3559 %Q assignment operator.
3560 %S substitution (template + args)
3563 %X exception-specification. */
3565 cp_printer (pretty_printer
*pp
, text_info
*text
, const char *spec
,
3566 int precision
, bool wide
, bool set_locus
, bool verbose
)
3570 #define next_tree (t = va_arg (*text->args_ptr, tree))
3571 #define next_tcode ((enum tree_code) va_arg (*text->args_ptr, int))
3572 #define next_lang ((enum languages) va_arg (*text->args_ptr, int))
3573 #define next_int va_arg (*text->args_ptr, int)
3575 if (precision
!= 0 || wide
)
3580 case 'A': result
= args_to_string (next_tree
, verbose
); break;
3581 case 'C': result
= code_to_string (next_tcode
); break;
3584 tree temp
= next_tree
;
3586 && DECL_HAS_DEBUG_EXPR_P (temp
))
3588 temp
= DECL_DEBUG_EXPR (temp
);
3591 result
= expr_to_string (temp
);
3595 result
= decl_to_string (temp
, verbose
);
3598 case 'E': result
= expr_to_string (next_tree
); break;
3599 case 'F': result
= fndecl_to_string (next_tree
, verbose
); break;
3600 case 'L': result
= language_to_string (next_lang
); break;
3601 case 'O': result
= op_to_string (next_tcode
); break;
3602 case 'P': result
= parm_to_string (next_int
); break;
3603 case 'Q': result
= assop_to_string (next_tcode
); break;
3604 case 'S': result
= subst_to_string (next_tree
); break;
3605 case 'T': result
= type_to_string (next_tree
, verbose
); break;
3606 case 'V': result
= cv_to_string (next_tree
, verbose
); break;
3607 case 'X': result
= eh_spec_to_string (next_tree
, verbose
); break;
3610 percent_K_format (text
);
3617 pp_string (pp
, result
);
3618 if (set_locus
&& t
!= NULL
)
3619 text
->set_location (0, location_of (t
), true);
3627 /* Warn about the use of C++0x features when appropriate. */
3629 maybe_warn_cpp0x (cpp0x_warn_str str
)
3631 if ((cxx_dialect
== cxx98
) && !in_system_header_at (input_location
))
3632 /* We really want to suppress this warning in system headers,
3633 because libstdc++ uses variadic templates even when we aren't
3637 case CPP0X_INITIALIZER_LISTS
:
3638 pedwarn (input_location
, 0,
3639 "extended initializer lists "
3640 "only available with -std=c++11 or -std=gnu++11");
3642 case CPP0X_EXPLICIT_CONVERSION
:
3643 pedwarn (input_location
, 0,
3644 "explicit conversion operators "
3645 "only available with -std=c++11 or -std=gnu++11");
3647 case CPP0X_VARIADIC_TEMPLATES
:
3648 pedwarn (input_location
, 0,
3649 "variadic templates "
3650 "only available with -std=c++11 or -std=gnu++11");
3652 case CPP0X_LAMBDA_EXPR
:
3653 pedwarn (input_location
, 0,
3654 "lambda expressions "
3655 "only available with -std=c++11 or -std=gnu++11");
3658 pedwarn (input_location
, 0,
3659 "C++11 auto only available with -std=c++11 or -std=gnu++11");
3661 case CPP0X_SCOPED_ENUMS
:
3662 pedwarn (input_location
, 0,
3663 "scoped enums only available with -std=c++11 or -std=gnu++11");
3665 case CPP0X_DEFAULTED_DELETED
:
3666 pedwarn (input_location
, 0,
3667 "defaulted and deleted functions "
3668 "only available with -std=c++11 or -std=gnu++11");
3670 case CPP0X_INLINE_NAMESPACES
:
3671 pedwarn (input_location
, OPT_Wpedantic
,
3672 "inline namespaces "
3673 "only available with -std=c++11 or -std=gnu++11");
3675 case CPP0X_OVERRIDE_CONTROLS
:
3676 pedwarn (input_location
, 0,
3677 "override controls (override/final) "
3678 "only available with -std=c++11 or -std=gnu++11");
3681 pedwarn (input_location
, 0,
3682 "non-static data member initializers "
3683 "only available with -std=c++11 or -std=gnu++11");
3685 case CPP0X_USER_DEFINED_LITERALS
:
3686 pedwarn (input_location
, 0,
3687 "user-defined literals "
3688 "only available with -std=c++11 or -std=gnu++11");
3690 case CPP0X_DELEGATING_CTORS
:
3691 pedwarn (input_location
, 0,
3692 "delegating constructors "
3693 "only available with -std=c++11 or -std=gnu++11");
3695 case CPP0X_INHERITING_CTORS
:
3696 pedwarn (input_location
, 0,
3697 "inheriting constructors "
3698 "only available with -std=c++11 or -std=gnu++11");
3700 case CPP0X_ATTRIBUTES
:
3701 pedwarn (input_location
, 0,
3703 "only available with -std=c++11 or -std=gnu++11");
3705 case CPP0X_REF_QUALIFIER
:
3706 pedwarn (input_location
, 0,
3708 "only available with -std=c++11 or -std=gnu++11");
3715 /* Warn about the use of variadic templates when appropriate. */
3717 maybe_warn_variadic_templates (void)
3719 maybe_warn_cpp0x (CPP0X_VARIADIC_TEMPLATES
);
3723 /* Issue an ISO C++98 pedantic warning at LOCATION, conditional on
3724 option OPT with text GMSGID. Use this function to report
3725 diagnostics for constructs that are invalid C++98, but valid
3728 pedwarn_cxx98 (location_t location
, int opt
, const char *gmsgid
, ...)
3730 diagnostic_info diagnostic
;
3733 rich_location
richloc (line_table
, location
);
3735 va_start (ap
, gmsgid
);
3736 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
,
3737 (cxx_dialect
== cxx98
) ? DK_PEDWARN
: DK_WARNING
);
3738 diagnostic
.option_index
= opt
;
3739 ret
= report_diagnostic (&diagnostic
);
3744 /* Issue a diagnostic that NAME cannot be found in SCOPE. DECL is what
3745 we found when we tried to do the lookup. LOCATION is the location of
3746 the NAME identifier. */
3749 qualified_name_lookup_error (tree scope
, tree name
,
3750 tree decl
, location_t location
)
3752 if (scope
== error_mark_node
)
3753 ; /* We already complained. */
3754 else if (TYPE_P (scope
))
3756 if (!COMPLETE_TYPE_P (scope
))
3757 error_at (location
, "incomplete type %qT used in nested name specifier",
3759 else if (TREE_CODE (decl
) == TREE_LIST
)
3761 error_at (location
, "reference to %<%T::%D%> is ambiguous",
3763 print_candidates (decl
);
3766 error_at (location
, "%qD is not a member of %qT", name
, scope
);
3768 else if (scope
!= global_namespace
)
3770 error_at (location
, "%qD is not a member of %qD", name
, scope
);
3771 suggest_alternatives_for (location
, name
);
3775 error_at (location
, "%<::%D%> has not been declared", name
);
3776 suggest_alternatives_for (location
, name
);