e6f7f4d1038d4aae395af4f041c2d5d804c38f1d
[cparser] / ast_t.h
1 #ifndef AST_T_H
2 #define AST_T_H
3
4 #include <libfirm/firm_types.h>
5 #include <assert.h>
6
7 #include "ast.h"
8 #include "symbol.h"
9 #include "token_t.h"
10 #include "type.h"
11 #include "adt/obst.h"
12
13 extern struct obstack ast_obstack;
14
15 typedef enum {
16         EXPR_UNKNOWN = 0,
17         EXPR_INVALID,
18         EXPR_REFERENCE,
19         EXPR_CONST,
20         EXPR_STRING_LITERAL,
21         EXPR_CALL,
22         EXPR_UNARY,
23         EXPR_BINARY,
24         EXPR_CONDITIONAL,
25         EXPR_SELECT,
26         EXPR_ARRAY_ACCESS,
27         EXPR_SIZEOF,
28         EXPR_CLASSIFY_TYPE,
29
30         EXPR_FUNCTION,
31         EXPR_PRETTY_FUNCTION,
32         EXPR_BUILTIN_SYMBOL,
33         EXPR_OFFSETOF,
34         EXPR_VA_ARG,
35         EXPR_STATEMENT
36 } expression_type_t;
37
38 struct context_t {
39         declaration_t   *declarations;
40 };
41
42 struct expression_base_t {
43         expression_type_t   type;
44         type_t             *datatype;
45         source_position_t   source_position;
46 };
47
48 struct const_expression_t {
49         expression_base_t  expression;
50         union {
51                 long long   int_value;
52                 long double float_value;
53         } v;
54 };
55
56 struct string_literal_expression_t {
57         expression_base_t  expression;
58         const char        *value;
59 };
60
61 struct builtin_symbol_expression_t {
62         expression_base_t  expression;
63         symbol_t          *symbol;
64 };
65
66 struct reference_expression_t {
67         expression_base_t  expression;
68         symbol_t          *symbol;
69         declaration_t     *declaration;
70 };
71
72 struct call_argument_t {
73         expression_t    *expression;
74         call_argument_t *next;
75 };
76
77 struct call_expression_t {
78         expression_base_t  expression;
79         expression_t      *function;
80         call_argument_t   *arguments;
81 };
82
83 typedef enum {
84         UNEXPR_INVALID = 0,
85         UNEXPR_NEGATE,
86         UNEXPR_PLUS,
87         UNEXPR_BITWISE_NEGATE,
88         UNEXPR_NOT,
89         UNEXPR_DEREFERENCE,
90         UNEXPR_TAKE_ADDRESS,
91         UNEXPR_POSTFIX_INCREMENT,
92         UNEXPR_POSTFIX_DECREMENT,
93         UNEXPR_PREFIX_INCREMENT,
94         UNEXPR_PREFIX_DECREMENT,
95         UNEXPR_CAST
96 } unary_expression_type_t;
97
98 struct unary_expression_t {
99         expression_base_t        expression;
100         unary_expression_type_t  type;
101         expression_t            *value;
102 };
103
104 typedef enum {
105         BINEXPR_INVALID = 0,
106         BINEXPR_ADD,
107         BINEXPR_SUB,
108         BINEXPR_MUL,
109         BINEXPR_DIV,
110         BINEXPR_MOD,
111         BINEXPR_EQUAL,
112         BINEXPR_NOTEQUAL,
113         BINEXPR_LESS,
114         BINEXPR_LESSEQUAL,
115         BINEXPR_GREATER,
116         BINEXPR_GREATEREQUAL,
117         BINEXPR_BITWISE_AND,
118         BINEXPR_BITWISE_OR,
119         BINEXPR_BITWISE_XOR,
120         BINEXPR_LOGICAL_AND,
121         BINEXPR_LOGICAL_OR,
122         BINEXPR_SHIFTLEFT,
123         BINEXPR_SHIFTRIGHT,
124         BINEXPR_ASSIGN,
125         BINEXPR_MUL_ASSIGN,
126         BINEXPR_DIV_ASSIGN,
127         BINEXPR_MOD_ASSIGN,
128         BINEXPR_ADD_ASSIGN,
129         BINEXPR_SUB_ASSIGN,
130         BINEXPR_SHIFTLEFT_ASSIGN,
131         BINEXPR_SHIFTRIGHT_ASSIGN,
132         BINEXPR_BITWISE_AND_ASSIGN,
133         BINEXPR_BITWISE_XOR_ASSIGN,
134         BINEXPR_BITWISE_OR_ASSIGN,
135         BINEXPR_COMMA
136 } binary_expression_type_t;
137
138 struct binary_expression_t {
139         expression_base_t         expression;
140         binary_expression_type_t  type;
141         expression_t             *left;
142         expression_t             *right;
143 };
144
145 struct select_expression_t {
146         expression_base_t  expression;
147         expression_t      *compound;
148         symbol_t          *symbol;
149
150         declaration_t     *compound_entry;
151 };
152
153 struct array_access_expression_t {
154         expression_base_t  expression;
155         expression_t      *array_ref;
156         expression_t      *index;
157         bool               flipped; /* index/ref was written in a 5[a] way */
158 };
159
160 struct sizeof_expression_t {
161         expression_base_t  expression;
162         type_t            *type;
163         expression_t      *size_expression;
164 };
165
166 struct designator_t {
167         symbol_t     *symbol;
168         expression_t *array_access;
169         designator_t *next;
170 };
171
172 struct offsetof_expression_t {
173         expression_base_t  expression;
174         type_t            *type;
175         designator_t      *designator;
176 };
177
178 struct va_arg_expression_t {
179         expression_base_t  expression;
180         expression_t      *arg;
181         type_t            *type;
182 };
183
184 struct conditional_expression_t {
185         expression_base_t  expression;
186         expression_t      *condition;
187         expression_t      *true_expression;
188         expression_t      *false_expression;
189 };
190
191 struct statement_expression_t {
192         expression_base_t  expression;
193         statement_t       *statement;
194 };
195
196 struct classify_type_expression_t {
197         expression_base_t  expression;
198         expression_t      *type_expression;
199 };
200
201 union expression_t {
202         expression_type_t            type;
203         expression_base_t            base;
204         const_expression_t           conste;
205         string_literal_expression_t  string;
206         builtin_symbol_expression_t  builtin_symbol;
207         reference_expression_t       reference;
208         call_expression_t            call;
209         unary_expression_t           unary;
210         binary_expression_t          binary;
211         select_expression_t          select;
212         array_access_expression_t    array_access;
213         sizeof_expression_t          sizeofe;
214         offsetof_expression_t        offsetofe;
215         va_arg_expression_t          va_arge;
216         conditional_expression_t     conditional;
217         statement_expression_t       statement;
218         classify_type_expression_t   classify_type;
219 };
220
221 typedef enum {
222         STORAGE_CLASS_NONE,
223         STORAGE_CLASS_TYPEDEF,
224         STORAGE_CLASS_EXTERN,
225         STORAGE_CLASS_STATIC,
226         STORAGE_CLASS_AUTO,
227         STORAGE_CLASS_REGISTER,
228         STORAGE_CLASS_ENUM_ENTRY
229 } storage_class_tag_t;
230
231 typedef enum {
232         NAMESPACE_NORMAL,
233         NAMESPACE_STRUCT,
234         NAMESPACE_UNION,
235         NAMESPACE_ENUM,
236         NAMESPACE_LABEL,
237 } namespace_t;
238
239 typedef enum {
240         INITIALIZER_VALUE,
241         INITIALIZER_LIST,
242         INITIALIZER_STRING,
243         INITIALIZER_COUNT
244 } initializer_type_t;
245
246 struct initializer_base_t {
247         initializer_type_t type;
248 };
249
250 struct initializer_value_t {
251         initializer_base_t  initializer;
252         expression_t       *value;
253 };
254
255 struct initializer_list_t {
256         initializer_base_t  initializer;
257         size_t              len;
258         initializer_t      *initializers[];
259 };
260
261 struct initializer_string_t {
262         initializer_base_t  initializer;
263         const char         *string;
264 };
265
266 union initializer_t {
267         initializer_type_t   type;
268         initializer_base_t   base;
269         initializer_value_t  value;
270         initializer_list_t   list;
271         initializer_string_t string;
272 };
273
274 struct declaration_t {
275         unsigned char       namespc;
276         unsigned char       storage_class;
277         unsigned int        address_taken : 1;
278         unsigned int        is_inline     : 1;
279         type_t             *type;
280         symbol_t           *symbol;
281         source_position_t   source_position;
282         union {
283                 bool            is_defined;
284                 statement_t    *statement;
285                 initializer_t  *initializer;
286                 expression_t   *enum_value;
287         } init;
288         context_t           context;
289         context_t          *parent_context;
290
291         /** next declaration in a context */
292         declaration_t      *next;
293         /** next declaration with same symbol */
294         declaration_t      *symbol_next;
295
296         unsigned char       declaration_type; /* used in ast2firm module */
297         union {
298                 unsigned int    value_number;     /* used in ast2firm module */
299                 ir_entity      *entity;           /* used in ast2firm module */
300                 ir_node        *block;            /* used in ast2firm module */
301                 tarval         *enum_val;         /* used in ast2firm module */
302         } v;
303 };
304
305 typedef enum {
306         STATEMENT_INVALID,
307         STATEMENT_COMPOUND,
308         STATEMENT_RETURN,
309         STATEMENT_DECLARATION,
310         STATEMENT_IF,
311         STATEMENT_SWITCH,
312         STATEMENT_EXPRESSION,
313         STATEMENT_CONTINUE,
314         STATEMENT_BREAK,
315         STATEMENT_GOTO,
316         STATEMENT_LABEL,
317         STATEMENT_CASE_LABEL,
318         STATEMENT_WHILE,
319         STATEMENT_DO_WHILE,
320         STATEMENT_FOR
321 } statement_type_t;
322
323 struct statement_base_t {
324         statement_type_t   type;
325         statement_t       *next;
326         source_position_t  source_position;
327 };
328
329 struct return_statement_t {
330         statement_base_t  statement;
331         expression_t     *return_value;
332 };
333
334 struct compound_statement_t {
335         statement_base_t  statement;
336         statement_t      *statements;
337         context_t         context;
338 };
339
340 struct declaration_statement_t {
341         statement_base_t  statement;
342         declaration_t    *declarations_begin;
343         declaration_t    *declarations_end;
344 };
345
346 struct if_statement_t {
347         statement_base_t  statement;
348         expression_t     *condition;
349         statement_t      *true_statement;
350         statement_t      *false_statement;
351 };
352
353 struct switch_statement_t {
354         statement_base_t  statement;
355         expression_t     *expression;
356         statement_t      *body;
357 };
358
359 struct goto_statement_t {
360         statement_base_t  statement;
361         declaration_t    *label;
362 };
363
364 struct case_label_statement_t {
365         statement_base_t  statement;
366         expression_t     *expression;
367         statement_t      *label_statement;
368 };
369
370 struct label_statement_t {
371         statement_base_t  statement;
372         declaration_t    *label;
373         statement_t      *label_statement;
374 };
375
376 struct expression_statement_t {
377         statement_base_t  statement;
378         expression_t     *expression;
379 };
380
381 struct while_statement_t {
382         statement_base_t  statement;
383         expression_t     *condition;
384         statement_t      *body;
385 };
386
387 struct do_while_statement_t {
388         statement_base_t  statement;
389         expression_t     *condition;
390         statement_t      *body;
391 };
392
393 struct for_statement_t {
394         statement_base_t  statement;
395         expression_t     *initialisation;
396         expression_t     *condition;
397         expression_t     *step;
398         statement_t      *body;
399         context_t         context;
400 };
401
402 union statement_t {
403         statement_type_t         type;
404         statement_base_t         base;
405         return_statement_t       returns;
406         compound_statement_t     compound;
407         declaration_statement_t  declaration;
408         if_statement_t           ifs;
409         switch_statement_t       switchs;
410         goto_statement_t         gotos;
411         case_label_statement_t   case_label;
412         label_statement_t        label;
413         expression_statement_t   expression;
414         while_statement_t        whiles;
415         do_while_statement_t     do_while;
416         for_statement_t          fors;
417 };
418
419 struct translation_unit_t {
420         context_t context;
421 };
422
423 static inline
424 void *_allocate_ast(size_t size)
425 {
426         return obstack_alloc(&ast_obstack, size);
427 }
428
429 #define allocate_ast(size)                 _allocate_ast(size)
430
431 #endif