Initial import of c parser
[cparser] / ast.h
1 #ifndef AST_H
2 #define AST_H
3
4 #include <stdio.h>
5
6 typedef struct expression_t               expression_t;
7 typedef struct const_t                    const_t;
8 typedef struct string_literal_t           string_literal_t;
9 typedef struct cast_expression_t          cast_expression_t;
10 typedef struct call_argument_t            call_argument_t;
11 typedef struct type_argument_t            type_argument_t;
12 typedef struct call_expression_t          call_expression_t;
13 typedef struct binary_expression_t        binary_expression_t;
14 typedef struct unary_expression_t         unary_expression_t;
15 typedef struct select_expression_t        select_expression_t;
16 typedef struct array_access_expression_t  array_access_expression_t;
17 typedef struct sizeof_expression_t        sizeof_expression_t;
18 typedef struct conditional_expression_t   conditional_expression_t;
19 typedef struct expression_list_element_t  expression_list_element_t;
20 typedef struct comma_expression_t         comma_expression_t;
21
22 typedef struct statement_t                statement_t;
23 typedef struct block_statement_t          block_statement_t;
24 typedef struct return_statement_t         return_statement_t;
25 typedef struct if_statement_t             if_statement_t;
26 typedef struct variable_declaration_statement_t
27                                           variable_declaration_statement_t;
28 typedef struct expression_statement_t     expression_statement_t;
29 typedef struct goto_statement_t           goto_statement_t;
30 typedef struct label_statement_t          label_statement_t;
31
32 typedef enum   namespace_entry_type_t     namespace_entry_type_t;
33 typedef struct namespace_entry_t          namespace_entry_t;
34 typedef struct namespace_t                namespace_t;
35 typedef struct method_parameter_t         method_parameter_t;
36 typedef struct method_t                   method_t;
37 typedef struct global_variable_t          global_variable_t;
38
39 void  init_ast_module(void);
40 void  exit_ast_module(void);
41
42 void  print_expression(FILE *out, const expression_t *expression);
43 void  print_statement(FILE *out, int indent, const statement_t *statement);
44 void  print_ast(FILE *out, const namespace_t *namespace);
45 void *allocate_ast(size_t size);
46
47 #endif