]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/cxx-pretty-print.h
c++: introduce TRAIT_TYPE alongside TRAIT_EXPR
[thirdparty/gcc.git] / gcc / cp / cxx-pretty-print.h
CommitLineData
e1a4dd13 1/* Interface for the GNU C++ pretty-printer.
7adcbafe 2 Copyright (C) 2003-2022 Free Software Foundation, Inc.
e1a4dd13
GDR
3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
e77f031d 9Software Foundation; either version 3, or (at your option) any later
e1a4dd13
GDR
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
e77f031d
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
e1a4dd13
GDR
20
21#ifndef GCC_CXX_PRETTY_PRINT_H
22#define GCC_CXX_PRETTY_PRINT_H
23
39dabefd 24#include "c-family/c-pretty-print.h"
e1a4dd13 25
b066401f 26enum cxx_pretty_printer_flags
4b780675 27{
c72a1a86 28 /* Ask for a qualified-id. */
d04a575f 29 pp_cxx_flag_default_argument = 1 << pp_c_flag_last_bit
b066401f 30};
c8094d83 31
6c1dae73 32class cxx_pretty_printer : public c_pretty_printer
e1a4dd13 33{
6c1dae73 34public:
da6ca2b5 35 cxx_pretty_printer ();
ca43e9d5 36
ff171cb1 37 pretty_printer *clone () const override;
368877a1 38
26f77c4d
DM
39 void constant (tree) final override;
40 void id_expression (tree) final override;
41 void primary_expression (tree) final override;
42 void postfix_expression (tree) final override;
43 void unary_expression (tree) final override;
44 void multiplicative_expression (tree) final override;
45 void conditional_expression (tree) final override;
46 void assignment_expression (tree) final override;
47 void expression (tree) final override;
48 void type_id (tree) final override;
49 void statement (tree) final override;
50 void declaration (tree) final override;
51 void declaration_specifiers (tree) final override;
52 void simple_type_specifier (tree) final override;
53 void function_specifier (tree) final override;
54 void declarator (tree) final override;
55 void direct_declarator (tree) final override;
56 void abstract_declarator (tree) final override;
57 void direct_abstract_declarator (tree) final override;
8dc70667 58
e1a4dd13
GDR
59 /* This is the enclosing scope of the entity being pretty-printed. */
60 tree enclosing_scope;
b066401f 61};
e1a4dd13 62
b9b44fb9 63#define pp_cxx_cv_qualifier_seq(PP, T) \
b066401f 64 pp_c_type_qualifier_list (PP, T)
985acf5a
PC
65#define pp_cxx_cv_qualifiers(PP, CV, FT) \
66 pp_c_cv_qualifiers (PP, CV, FT)
b066401f
GDR
67
68#define pp_cxx_whitespace(PP) pp_c_whitespace (PP)
69#define pp_cxx_left_paren(PP) pp_c_left_paren (PP)
70#define pp_cxx_right_paren(PP) pp_c_right_paren (PP)
71#define pp_cxx_left_brace(PP) pp_c_left_brace (PP)
72#define pp_cxx_right_brace(PP) pp_c_right_brace (PP)
73#define pp_cxx_left_bracket(PP) pp_c_left_bracket (PP)
74#define pp_cxx_right_bracket(PP) pp_c_right_bracket (PP)
75#define pp_cxx_dot(PP) pp_c_dot (PP)
76#define pp_cxx_ampersand(PP) pp_c_ampersand (PP)
77#define pp_cxx_star(PP) pp_c_star (PP)
78#define pp_cxx_arrow(PP) pp_c_arrow (PP)
79#define pp_cxx_semicolon(PP) pp_c_semicolon (PP)
80#define pp_cxx_complement(PP) pp_c_complement (PP)
81
82#define pp_cxx_ws_string(PP, I) pp_c_ws_string (PP, I)
83#define pp_cxx_identifier(PP, I) pp_c_identifier (PP, I)
41fd3bac 84#define pp_cxx_tree_identifier(PP, T) \
b066401f 85 pp_c_tree_identifier (PP, T)
41fd3bac 86
41fd3bac
GDR
87void pp_cxx_begin_template_argument_list (cxx_pretty_printer *);
88void pp_cxx_end_template_argument_list (cxx_pretty_printer *);
89void pp_cxx_colon_colon (cxx_pretty_printer *);
90void pp_cxx_separate_with (cxx_pretty_printer *, int);
e1a4dd13 91
b2517173 92void pp_cxx_canonical_template_parameter (cxx_pretty_printer *, tree);
817e878a 93void pp_cxx_trait (cxx_pretty_printer *, tree);
fdb8f418 94void pp_cxx_va_arg_expression (cxx_pretty_printer *, tree);
094a5fe2 95void pp_cxx_offsetof_expression (cxx_pretty_printer *, tree);
be845b04 96void pp_cxx_addressof_expression (cxx_pretty_printer *, tree);
3ce4f9e4 97void pp_cxx_userdef_literal (cxx_pretty_printer *, tree);
971e17ff
AS
98void pp_cxx_requires_clause (cxx_pretty_printer *, tree);
99void pp_cxx_requires_expr (cxx_pretty_printer *, tree);
100void pp_cxx_simple_requirement (cxx_pretty_printer *, tree);
101void pp_cxx_type_requirement (cxx_pretty_printer *, tree);
102void pp_cxx_compound_requirement (cxx_pretty_printer *, tree);
103void pp_cxx_nested_requirement (cxx_pretty_printer *, tree);
104void pp_cxx_predicate_constraint (cxx_pretty_printer *, tree);
105void pp_cxx_expression_constraint (cxx_pretty_printer *, tree);
106void pp_cxx_type_constraint (cxx_pretty_printer *, tree);
107void pp_cxx_implicit_conversion_constraint (cxx_pretty_printer *, tree);
108void pp_cxx_argument_deduction_constraint (cxx_pretty_printer *, tree);
109void pp_cxx_exception_constraint (cxx_pretty_printer *, tree);
110void pp_cxx_parameterized_constraint (cxx_pretty_printer *, tree);
111void pp_cxx_conjunction (cxx_pretty_printer *, tree);
112void pp_cxx_disjunction (cxx_pretty_printer *, tree);
113void pp_cxx_constraint (cxx_pretty_printer *, tree);
4fea442d 114void pp_cxx_constrained_type_spec (cxx_pretty_printer *, tree);
828878c3 115void pp_cxx_parameter_mapping (cxx_pretty_printer *, tree);
e1a4dd13
GDR
116
117#endif /* GCC_CXX_PRETTY_PRINT_H */