]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.h
ast_binary_new to initialize codegen function ptr, codegen proto for store and binary...
[xonotic/gmqcc.git] / ast.h
1 /*
2  * Copyright (C) 2012 
3  *     Wolfgang Bumiller
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #ifndef GMQCC_AST_H__
24 #define GMQCC_AST_H__
25
26 #include "astir.h"
27 #include "ir.h"
28
29 /* Note: I will not be using a _t suffix for the
30  * "main" ast node types for now.
31  */
32
33 typedef union ast_node_u ast_node;
34 typedef union ast_expression_u ast_expression;
35
36 typedef struct ast_value_s      ast_value;
37 typedef struct ast_function_s   ast_function;
38 typedef struct ast_block_s      ast_block;
39 typedef struct ast_binary_s     ast_binary;
40
41 /* Node interface with common components
42  */
43 typedef void ast_node_delete(ast_node*);
44 typedef struct
45 {
46     lex_ctx_t        context;
47     /* I don't feel comfortable using keywords like 'delete' as names... */
48     ast_node_delete *destroy;
49 } ast_node_common;
50
51 #define ast_delete(x) ( ( (ast_node*)(x) ) -> node.destroy )((ast_node*)(x))
52
53 /* Expression interface
54  *
55  * Any expression or block returns an ir_value, and needs
56  * to know the current function.
57  */
58 typedef bool ast_expression_codegen(ast_expression*,
59                                     ast_function*,
60                                     ir_value**);
61 typedef struct
62 {
63     ast_node_common         node;
64     ast_expression_codegen *codegen;
65 } ast_expression_common;
66
67 /* Value
68  *
69  * Types are also values, both have a type and a name.
70  * especially considering possible constructs like typedefs.
71  * typedef float foo;
72  * is like creating a 'float foo', foo serving as the type's name.
73  */
74 struct ast_value_s
75 {
76     ast_expression_common expression;
77
78     const char *name;
79
80     int         vtype;
81     ast_value  *next;
82
83     bool isconst;
84     union {
85         double        vfloat;
86         int           vint;
87         vector_t      vvec;
88         const char   *vstring;
89         int           ventity;
90         ast_function *vfunc;
91     } constval;
92
93     ir_value *ir_v;
94
95     /* if vtype is qc_function, params contain parameters, and
96      * 'next' the return type.
97      */
98     MEM_VECTOR_MAKE(ast_value*, params);
99 };
100 ast_value* ast_value_new(lex_ctx_t ctx, const char *name, int qctype);
101 void ast_value_delete(ast_value*);
102
103 void ast_value_set_name(ast_value*, const char *name);
104
105 bool ast_value_codegen(ast_value*, ast_function*, ir_value**);
106
107 /* Binary
108  *
109  * A value-returning binary expression.
110  */
111 struct ast_binary_s
112 {
113     ast_expression_common expression;
114
115     int       op;
116     ast_value *left;
117     ast_value *right;
118 };
119 ast_binary* ast_binary_new(lex_ctx_t  ctx,
120                            int        op,
121                            ast_value *left,
122                            ast_value *right);
123 void ast_binary_delete(ast_binary*);
124
125 /* hmm, seperate functions?
126 bool ast_block_codegen(ast_block*, ast_function*, ir_value**);
127  */
128 /* maybe for this one */
129 bool ast_bin_store_codegen(ast_binary*, ast_function*, ir_value**);
130
131 bool ast_binary_codegen(ast_binary*, ast_function*, ir_value**);
132
133 /* Blocks
134  *
135  */
136 struct ast_block_s
137 {
138     ast_expression_common expression;
139
140     MEM_VECTOR_MAKE(ast_value*,      locals);
141     MEM_VECTOR_MAKE(ast_expression*, exprs);
142 };
143 ast_block* ast_block_new(lex_ctx_t ctx);
144 void ast_block_delete(ast_block*);
145
146 MEM_VECTOR_PROTO(ast_block, ast_value*, locals);
147 MEM_VECTOR_PROTO(ast_block, ast_expression*, exprs);
148
149 bool ast_block_codegen(ast_block*, ast_function*, ir_value**);
150
151 /* Function
152  *
153  * Contains a list of blocks... at least in theory.
154  * Usually there's just the main block, other blocks are inside that.
155  *
156  * Technically, functions don't need to be an AST node, since we have
157  * neither functions inside functions, nor lambdas, and function
158  * pointers could just work with a name. However, this way could be
159  * more flexible, and adds no real complexity.
160  */
161 struct ast_function_s
162 {
163     ast_node_common node;
164
165     ast_value  *vtype;
166     const char *name;
167
168     MEM_VECTOR_MAKE(ast_block*, blocks);
169 };
170 ast_function* ast_function_new(lex_ctx_t ctx, const char *name, ast_value *vtype);
171 void ast_function_delete(ast_function*);
172
173 MEM_VECTOR_PROTO(ast_function, ast_block*, blocks);
174
175 bool ast_function_codegen(ast_function *self, ir_builder *builder);
176
177 /* Expression union
178  */
179 union ast_expression_u
180 {
181     ast_expression_common expression;
182
183     ast_binary binary;
184     ast_block  block;
185 };
186
187 /* Node union
188  */
189 union ast_node_u
190 {
191     ast_node_common node;
192     ast_expression  expression;
193 };
194
195 #endif