]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/c-family/c-pretty-print.h
390477d289e45de6d493e03ffb18a2ae2cabe630
[thirdparty/gcc.git] / gcc / c-family / c-pretty-print.h
1 /* Various declarations for the C and C++ pretty-printers.
2 Copyright (C) 2002-2013 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #ifndef GCC_C_PRETTY_PRINTER
22 #define GCC_C_PRETTY_PRINTER
23
24 #include "tree.h"
25 #include "c-family/c-common.h"
26 #include "pretty-print.h"
27
28
29 enum pp_c_pretty_print_flags
30 {
31 pp_c_flag_abstract = 1 << 1,
32 pp_c_flag_gnu_v3 = 1 << 2,
33 pp_c_flag_last_bit = 3
34 };
35
36
37 /* The data type used to bundle information necessary for pretty-printing
38 a C or C++ entity. */
39 struct c_pretty_printer;
40
41 /* The type of a C pretty-printer 'member' function. */
42 typedef void (*c_pretty_print_fn) (c_pretty_printer *, tree);
43
44 /* The datatype that contains information necessary for pretty-printing
45 a tree that represents a C construct. Any pretty-printer for a
46 language using C syntax can derive from this datatype and reuse
47 facilities provided here. A derived pretty-printer can override
48 any function listed in the vtable below. See cp/cxx-pretty-print.h
49 and cp/cxx-pretty-print.c for an example of derivation. */
50 struct c_pretty_printer : pretty_printer
51 {
52 /* Points to the first element of an array of offset-list.
53 Not used yet. */
54 int *offset_list;
55
56 pp_flags flags;
57
58 /* These must be overridden by each of the C and C++ front-end to
59 reflect their understanding of syntactic productions when they differ. */
60 c_pretty_print_fn declaration;
61 c_pretty_print_fn declaration_specifiers;
62 c_pretty_print_fn declarator;
63 c_pretty_print_fn abstract_declarator;
64 c_pretty_print_fn direct_abstract_declarator;
65 c_pretty_print_fn type_specifier_seq;
66 c_pretty_print_fn direct_declarator;
67 c_pretty_print_fn ptr_operator;
68 c_pretty_print_fn parameter_list;
69 c_pretty_print_fn type_id;
70 c_pretty_print_fn simple_type_specifier;
71 c_pretty_print_fn function_specifier;
72 c_pretty_print_fn storage_class_specifier;
73 c_pretty_print_fn initializer;
74
75 c_pretty_print_fn statement;
76
77 c_pretty_print_fn constant;
78 c_pretty_print_fn id_expression;
79 c_pretty_print_fn primary_expression;
80 c_pretty_print_fn postfix_expression;
81 c_pretty_print_fn unary_expression;
82 c_pretty_print_fn multiplicative_expression;
83 c_pretty_print_fn conditional_expression;
84 c_pretty_print_fn assignment_expression;
85 c_pretty_print_fn expression;
86 };
87
88 #define pp_c_tree_identifier(PPI, ID) \
89 pp_c_identifier (PPI, IDENTIFIER_POINTER (ID))
90
91 #define pp_declaration(PP, T) (PP)->declaration (PP, T)
92 #define pp_declaration_specifiers(PP, D) \
93 (PP)->declaration_specifiers (PP, D)
94 #define pp_abstract_declarator(PP, D) (PP)->abstract_declarator (PP, D)
95 #define pp_type_specifier_seq(PP, D) (PP)->type_specifier_seq (PP, D)
96 #define pp_declarator(PP, D) (PP)->declarator (PP, D)
97 #define pp_direct_declarator(PP, D) (PP)->direct_declarator (PP, D)
98 #define pp_direct_abstract_declarator(PP, D) \
99 (PP)->direct_abstract_declarator (PP, D)
100 #define pp_ptr_operator(PP, D) (PP)->ptr_operator (PP, D)
101 #define pp_parameter_list(PP, T) (PP)->parameter_list (PP, T)
102 #define pp_type_id(PP, D) (PP)->type_id (PP, D)
103 #define pp_simple_type_specifier(PP, T) (PP)->simple_type_specifier (PP, T)
104 #define pp_function_specifier(PP, D) (PP)->function_specifier (PP, D)
105 #define pp_storage_class_specifier(PP, D) \
106 (PP)->storage_class_specifier (PP, D);
107
108 #define pp_statement(PP, S) (PP)->statement (PP, S)
109
110 #define pp_constant(PP, E) (PP)->constant (PP, E)
111 #define pp_id_expression(PP, E) (PP)->id_expression (PP, E)
112 #define pp_primary_expression(PP, E) (PP)->primary_expression (PP, E)
113 #define pp_postfix_expression(PP, E) (PP)->postfix_expression (PP, E)
114 #define pp_unary_expression(PP, E) (PP)->unary_expression (PP, E)
115 #define pp_initializer(PP, E) (PP)->initializer (PP, E)
116 #define pp_multiplicative_expression(PP, E) \
117 (PP)->multiplicative_expression (PP, E)
118 #define pp_conditional_expression(PP, E) (PP)->conditional_expression (PP, E)
119 #define pp_assignment_expression(PP, E) (PP)->assignment_expression (PP, E)
120 #define pp_expression(PP, E) (PP)->expression (PP, E)
121
122
123 extern void pp_c_pretty_printer_init (c_pretty_printer *);
124 void pp_c_whitespace (c_pretty_printer *);
125 void pp_c_left_paren (c_pretty_printer *);
126 void pp_c_right_paren (c_pretty_printer *);
127 void pp_c_left_brace (c_pretty_printer *);
128 void pp_c_right_brace (c_pretty_printer *);
129 void pp_c_left_bracket (c_pretty_printer *);
130 void pp_c_right_bracket (c_pretty_printer *);
131 void pp_c_dot (c_pretty_printer *);
132 void pp_c_ampersand (c_pretty_printer *);
133 void pp_c_star (c_pretty_printer *);
134 void pp_c_arrow (c_pretty_printer *);
135 void pp_c_semicolon (c_pretty_printer *);
136 void pp_c_complement (c_pretty_printer *);
137 void pp_c_exclamation (c_pretty_printer *);
138 void pp_c_space_for_pointer_operator (c_pretty_printer *, tree);
139
140 /* Declarations. */
141 void pp_c_tree_decl_identifier (c_pretty_printer *, tree);
142 void pp_c_function_definition (c_pretty_printer *, tree);
143 void pp_c_attributes (c_pretty_printer *, tree);
144 void pp_c_attributes_display (c_pretty_printer *, tree);
145 void pp_c_cv_qualifiers (c_pretty_printer *pp, int qualifiers, bool func_type);
146 void pp_c_type_qualifier_list (c_pretty_printer *, tree);
147 void pp_c_parameter_type_list (c_pretty_printer *, tree);
148 void pp_c_declaration (c_pretty_printer *, tree);
149 void pp_c_declaration_specifiers (c_pretty_printer *, tree);
150 void pp_c_declarator (c_pretty_printer *, tree);
151 void pp_c_direct_declarator (c_pretty_printer *, tree);
152 void pp_c_specifier_qualifier_list (c_pretty_printer *, tree);
153 void pp_c_function_specifier (c_pretty_printer *, tree);
154 void pp_c_type_id (c_pretty_printer *, tree);
155 void pp_c_direct_abstract_declarator (c_pretty_printer *, tree);
156 void pp_c_type_specifier (c_pretty_printer *, tree);
157 void pp_c_storage_class_specifier (c_pretty_printer *, tree);
158 /* Statements. */
159 void pp_c_statement (c_pretty_printer *, tree);
160 /* Expressions. */
161 void pp_c_expression (c_pretty_printer *, tree);
162 void pp_c_logical_or_expression (c_pretty_printer *, tree);
163 void pp_c_expression_list (c_pretty_printer *, tree);
164 void pp_c_constructor_elts (c_pretty_printer *, vec<constructor_elt, va_gc> *);
165 void pp_c_call_argument_list (c_pretty_printer *, tree);
166 void pp_c_unary_expression (c_pretty_printer *, tree);
167 void pp_c_cast_expression (c_pretty_printer *, tree);
168 void pp_c_postfix_expression (c_pretty_printer *, tree);
169 void pp_c_primary_expression (c_pretty_printer *, tree);
170 void pp_c_init_declarator (c_pretty_printer *, tree);
171 void pp_c_constant (c_pretty_printer *, tree);
172 void pp_c_id_expression (c_pretty_printer *, tree);
173 void pp_c_ws_string (c_pretty_printer *, const char *);
174 void pp_c_identifier (c_pretty_printer *, const char *);
175 void pp_c_string_literal (c_pretty_printer *, tree);
176
177 void print_c_tree (FILE *file, tree t);
178
179 #endif /* GCC_C_PRETTY_PRINTER */