__builtin_prefetch implemented
[cparser] / ast.h
1 #ifndef AST_H
2 #define AST_H
3
4 #include <stdio.h>
5 #include <stdbool.h>
6
7 typedef struct context_t                    context_t;
8
9 typedef struct expression_base_t                expression_base_t;
10 typedef struct const_expression_t               const_expression_t;
11 typedef struct string_literal_expression_t      string_literal_expression_t;
12 typedef struct wide_string_literal_expression_t wide_string_literal_expression_t;
13 typedef struct reference_expression_t           reference_expression_t;
14 typedef struct cast_expression_t                cast_expression_t;
15 typedef struct call_argument_t                  call_argument_t;
16 typedef struct type_argument_t                  type_argument_t;
17 typedef struct call_expression_t                call_expression_t;
18 typedef struct binary_expression_t              binary_expression_t;
19 typedef struct unary_expression_t               unary_expression_t;
20 typedef struct select_expression_t              select_expression_t;
21 typedef struct array_access_expression_t        array_access_expression_t;
22 typedef struct sizeof_expression_t              sizeof_expression_t;
23 typedef struct alignof_expression_t             alignof_expression_t;
24 typedef struct conditional_expression_t         conditional_expression_t;
25 typedef struct expression_list_element_t        expression_list_element_t;
26 typedef struct comma_expression_t               comma_expression_t;
27 typedef struct statement_expression_t           statement_expression_t;
28 typedef struct designator_t                     designator_t;
29 typedef struct offsetof_expression_t            offsetof_expression_t;
30 typedef struct va_start_expression_t            va_start_expression_t;
31 typedef struct va_arg_expression_t              va_arg_expression_t;
32 typedef struct builtin_symbol_expression_t      builtin_symbol_expression_t;
33 typedef struct builtin_constant_expression_t    builtin_constant_expression_t;
34 typedef struct builtin_prefetch_expression_t    builtin_prefetch_expression_t;
35 typedef struct classify_type_expression_t       classify_type_expression_t;
36 typedef union  expression_t                     expression_t;
37
38 typedef struct initializer_base_t           initializer_base_t;
39 typedef struct initializer_list_t           initializer_list_t;
40 typedef struct initializer_value_t          initializer_value_t;
41 typedef struct initializer_string_t         initializer_string_t;
42 typedef struct initializer_wide_string_t    initializer_wide_string_t;
43 typedef union  initializer_t                initializer_t;
44
45 typedef struct declaration_t                declaration_t;
46
47 typedef struct statement_base_t             statement_base_t;
48 typedef struct compound_statement_t         compound_statement_t;
49 typedef struct return_statement_t           return_statement_t;
50 typedef struct if_statement_t               if_statement_t;
51 typedef struct switch_statement_t           switch_statement_t;
52 typedef struct declaration_statement_t      declaration_statement_t;
53 typedef struct expression_statement_t       expression_statement_t;
54 typedef struct goto_statement_t             goto_statement_t;
55 typedef struct label_statement_t            label_statement_t;
56 typedef struct case_label_statement_t       case_label_statement_t;
57 typedef struct while_statement_t            while_statement_t;
58 typedef struct do_while_statement_t         do_while_statement_t;
59 typedef struct for_statement_t              for_statement_t;
60 typedef struct asm_constraint_t             asm_constraint_t;
61 typedef struct asm_clobber_t                asm_clobber_t;
62 typedef struct asm_statement_t              asm_statement_t;
63 typedef union  statement_t                  statement_t;
64
65 typedef struct translation_unit_t           translation_unit_t;
66
67 void  init_ast(void);
68 void  exit_ast(void);
69
70 void  ast_set_output(FILE *out);
71 void  print_expression(const expression_t *expression);
72 void  print_initializer(const initializer_t *initializer);
73 void  print_ast(const translation_unit_t *unit);
74 void  print_indent(void);
75 void  print_declaration(const declaration_t *declaration);
76 void  change_indent(int delta);
77 void *allocate_ast(size_t size);
78
79 bool is_constant_expression(const expression_t *expression);
80
81 #endif