]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.h
ast_return_new doesn't take an operator, we use INSTR_RETURN always, never INSTR_DONE...
[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_HDR
24 #define GMQCC_AST_HDR
25 #include "ir.h"
26
27 /* Note: I will not be using a _t suffix for the
28  * "main" ast node types for now.
29  */
30
31 typedef union ast_node_u ast_node;
32 typedef union ast_expression_u ast_expression;
33
34 typedef struct ast_value_s      ast_value;
35 typedef struct ast_function_s   ast_function;
36 typedef struct ast_block_s      ast_block;
37 typedef struct ast_binary_s     ast_binary;
38 typedef struct ast_store_s      ast_store;
39 typedef struct ast_entfield_s   ast_entfield;
40 typedef struct ast_ifthen_s     ast_ifthen;
41 typedef struct ast_ternary_s    ast_ternary;
42 typedef struct ast_loop_s       ast_loop;
43 typedef struct ast_call_s       ast_call;
44 typedef struct ast_unary_s      ast_unary;
45 typedef struct ast_return_s     ast_return;
46
47 /* Node interface with common components
48  */
49 typedef void ast_node_delete(ast_node*);
50 typedef struct
51 {
52     lex_ctx          context;
53     /* I don't feel comfortable using keywords like 'delete' as names... */
54     ast_node_delete *destroy;
55     /* keep: if a node contains this node, 'keep'
56      * prevents its dtor from destroying this node as well.
57      */
58     bool             keep;
59 } ast_node_common;
60
61 #define ast_delete(x) ( ( (ast_node*)(x) ) -> node.destroy )((ast_node*)(x))
62 #define ast_unref(x) do                     \
63 {                                           \
64     if (! (((ast_node*)(x))->node.keep) ) { \
65         ast_delete(x);                      \
66     }                                       \
67 } while(0)
68
69 /* Expression interface
70  *
71  * Any expression or block returns an ir_value, and needs
72  * to know the current function.
73  */
74 typedef bool ast_expression_codegen(ast_expression*,
75                                     ast_function*,
76                                     bool lvalue,
77                                     ir_value**);
78 typedef struct
79 {
80     ast_node_common         node;
81     ast_expression_codegen *codegen;
82     int                     vtype;
83     ast_expression         *next;
84 } ast_expression_common;
85
86 /* Value
87  *
88  * Types are also values, both have a type and a name.
89  * especially considering possible constructs like typedefs.
90  * typedef float foo;
91  * is like creating a 'float foo', foo serving as the type's name.
92  */
93 struct ast_value_s
94 {
95     ast_expression_common expression;
96
97     const char *name;
98
99     /*
100     int         vtype;
101     ast_value  *next;
102     */
103
104     bool isconst;
105     union {
106         double        vfloat;
107         int           vint;
108         vector        vvec;
109         const char   *vstring;
110         int           ventity;
111         ast_function *vfunc;
112     } constval;
113
114     ir_value *ir_v;
115
116     /* if vtype is qc_function, params contain parameters, and
117      * 'next' the return type.
118      */
119     MEM_VECTOR_MAKE(ast_value*, params);
120 };
121 MEM_VECTOR_PROTO(ast_value, ast_value*, params);
122
123 ast_value* ast_value_new(lex_ctx ctx, const char *name, int qctype);
124 /* This will NOT delete an underlying ast_function */
125 void ast_value_delete(ast_value*);
126
127 bool ast_value_set_name(ast_value*, const char *name);
128
129 bool ast_value_codegen(ast_value*, ast_function*, bool lvalue, ir_value**);
130 bool ast_local_codegen(ast_value *self, ir_function *func, bool isparam);
131 bool ast_global_codegen(ast_value *self, ir_builder *ir);
132
133 /* Binary
134  *
135  * A value-returning binary expression.
136  */
137 struct ast_binary_s
138 {
139     ast_expression_common expression;
140
141     int             op;
142     ast_expression *left;
143     ast_expression *right;
144 };
145 ast_binary* ast_binary_new(lex_ctx    ctx,
146                            int        op,
147                            ast_expression *left,
148                            ast_expression *right);
149 void ast_binary_delete(ast_binary*);
150
151 bool ast_binary_codegen(ast_binary*, ast_function*, bool lvalue, ir_value**);
152
153 /* Unary
154  *
155  * Regular unary expressions: not,neg
156  */
157 struct ast_unary_s
158 {
159     ast_expression_common expression;
160
161     int             op;
162     ast_expression *operand;
163 };
164 ast_unary* ast_unary_new(lex_ctx    ctx,
165                          int        op,
166                          ast_expression *expr);
167 void ast_unary_delete(ast_unary*);
168
169 bool ast_unary_codegen(ast_unary*, ast_function*, bool lvalue, ir_value**);
170
171 /* Return
172  *
173  * Make sure 'return' only happens at the end of a block, otherwise the IR
174  * will refuse to create further instructions.
175  * This should be honored by the parser.
176  */
177 struct ast_return_s
178 {
179     ast_expression_common expression;
180     ast_expression *operand;
181 };
182 ast_return* ast_return_new(lex_ctx    ctx,
183                            ast_expression *expr);
184 void ast_return_delete(ast_return*);
185
186 bool ast_return_codegen(ast_return*, ast_function*, bool lvalue, ir_value**);
187
188 /* Entity-field
189  *
190  * This must do 2 things:
191  * -) Provide a way to fetch an entity field value. (Rvalue)
192  * -) Provide a pointer to an entity field. (Lvalue)
193  * The problem:
194  * In original QC, there's only a STORE via pointer, but
195  * no LOAD via pointer.
196  * So we must know beforehand if we are going to read or assign
197  * the field.
198  * For this we will have to extend the codegen() functions with
199  * a flag saying whether or not we need an L or an R-value.
200  */
201 struct ast_entfield_s
202 {
203     ast_expression_common expression;
204     /* The entity can come from an expression of course. */
205     ast_expression *entity;
206     /* As can the field, it just must result in a value of TYPE_FIELD */
207     ast_expression *field;
208 };
209 ast_entfield* ast_entfield_new(lex_ctx ctx, ast_expression *entity, ast_expression *field);
210 void ast_entfield_delete(ast_entfield*);
211
212 bool ast_entfield_codegen(ast_entfield*, ast_function*, bool lvalue, ir_value**);
213
214 /* Store
215  *
216  * Stores left<-right and returns left.
217  * Specialized binary expression node
218  */
219 struct ast_store_s
220 {
221     ast_expression_common expression;
222     int             op;
223     ast_value      *dest; /* When we add pointers this might have to change to expression */
224     ast_expression *source;
225 };
226 ast_store* ast_store_new(lex_ctx ctx, int op,
227                          ast_value *d, ast_expression *s);
228 void ast_store_delete(ast_store*);
229
230 bool ast_store_codegen(ast_store*, ast_function*, bool lvalue, ir_value**);
231
232 /* If
233  *
234  * A general 'if then else' statement, either side can be NULL and will
235  * thus be omitted. It is an error for *both* cases to be NULL at once.
236  *
237  * During its 'codegen' it'll be changing the ast_function's block.
238  *
239  * An if is also an "expression". Its codegen will put NULL into the
240  * output field though. For ternary expressions an ast_ternary will be
241  * added.
242  */
243 struct ast_ifthen_s
244 {
245     ast_expression_common expression;
246     ast_expression *cond;
247     /* It's all just 'expressions', since an ast_block is one too. */
248     ast_expression *on_true;
249     ast_expression *on_false;
250 };
251 ast_ifthen* ast_ifthen_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse);
252 void ast_ifthen_delete(ast_ifthen*);
253
254 bool ast_ifthen_codegen(ast_ifthen*, ast_function*, bool lvalue, ir_value**);
255
256 /* Ternary expressions...
257  *
258  * Contrary to 'if-then-else' nodes, ternary expressions actually
259  * return a value, otherwise they behave the very same way.
260  * The difference in 'codegen' is that it'll return the value of
261  * a PHI node.
262  *
263  * The other difference is that in an ast_ternary, NEITHER side
264  * must be NULL, there's ALWAYS an else branch.
265  *
266  * This is the only ast_node beside ast_value which contains
267  * an ir_value. Theoretically we don't need to remember it though.
268  */
269 struct ast_ternary_s
270 {
271     ast_expression_common expression;
272     ast_expression *cond;
273     /* It's all just 'expressions', since an ast_block is one too. */
274     ast_expression *on_true;
275     ast_expression *on_false;
276     /* After a ternary expression we find ourselves in a new IR block
277      * and start with a PHI node */
278     ir_value       *phi_out;
279 };
280 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse);
281 void ast_ternary_delete(ast_ternary*);
282
283 bool ast_ternary_codegen(ast_ternary*, ast_function*, bool lvalue, ir_value**);
284
285 /* A general loop node
286  *
287  * For convenience it contains 4 parts:
288  * -) (ini) = initializing expression
289  * -) (pre) = pre-loop condition
290  * -) (pst) = post-loop condition
291  * -) (inc) = "increment" expression
292  * The following is a psudo-representation of this loop
293  * note that '=>' bears the logical meaning of "implies".
294  * (a => b) equals (!a || b)
295
296 {ini};
297 while (has_pre => {pre})
298 {
299     {body};
300
301 continue:      // a 'continue' will jump here
302     if (has_pst => {pst})
303         break;
304
305     {inc};
306 }
307  */
308 struct ast_loop_s
309 {
310     ast_expression_common expression;
311     ast_expression *initexpr;
312     ast_expression *precond;
313     ast_expression *postcond;
314     ast_expression *increment;
315     ast_expression *body;
316 };
317 ast_loop* ast_loop_new(lex_ctx ctx,
318                        ast_expression *initexpr,
319                        ast_expression *precond,
320                        ast_expression *postcond,
321                        ast_expression *increment,
322                        ast_expression *body);
323 void ast_loop_delete(ast_loop*);
324
325 bool ast_loop_codegen(ast_loop*, ast_function*, bool lvalue, ir_value**);
326
327 /* CALL node
328  *
329  * Contains an ast_expression as target, rather than an ast_function/value.
330  * Since it's how QC works, every ast_function has an ast_value
331  * associated anyway - in other words, the VM contains function
332  * pointers for every function anyway. Thus, this node will call
333  * expression.
334  * Additionally it contains a list of ast_expressions as parameters.
335  * Since calls can return values, an ast_call is also an ast_expression.
336  */
337 struct ast_call_s
338 {
339     ast_expression_common expression;
340     ast_expression *func;
341     MEM_VECTOR_MAKE(ast_expression*, params);
342 };
343 ast_call* ast_call_new(lex_ctx ctx,
344                        ast_expression *funcexpr);
345 void ast_call_delete(ast_call*);
346 bool ast_call_codegen(ast_call*, ast_function*, bool lvalue, ir_value**);
347
348 MEM_VECTOR_PROTO(ast_call, ast_expression*, params);
349
350 /* Blocks
351  *
352  */
353 struct ast_block_s
354 {
355     ast_expression_common expression;
356
357     MEM_VECTOR_MAKE(ast_value*,      locals);
358     MEM_VECTOR_MAKE(ast_expression*, exprs);
359 };
360 ast_block* ast_block_new(lex_ctx ctx);
361 void ast_block_delete(ast_block*);
362
363 MEM_VECTOR_PROTO(ast_block, ast_value*, locals);
364 MEM_VECTOR_PROTO(ast_block, ast_expression*, exprs);
365
366 bool ast_block_codegen(ast_block*, ast_function*, bool lvalue, ir_value**);
367
368 /* Function
369  *
370  * Contains a list of blocks... at least in theory.
371  * Usually there's just the main block, other blocks are inside that.
372  *
373  * Technically, functions don't need to be an AST node, since we have
374  * neither functions inside functions, nor lambdas, and function
375  * pointers could just work with a name. However, this way could be
376  * more flexible, and adds no real complexity.
377  */
378 struct ast_function_s
379 {
380     ast_node_common node;
381
382     ast_value  *vtype;
383     const char *name;
384
385     int builtin;
386
387     ir_function *ir_func;
388     ir_block    *curblock;
389     ir_block    *breakblock;
390     ir_block    *continueblock;
391
392     size_t       labelcount;
393     /* in order for thread safety - for the optional
394      * channel abesed multithreading... keeping a buffer
395      * here to use in ast_function_label.
396      */
397     char         labelbuf[64];
398
399     MEM_VECTOR_MAKE(ast_block*, blocks);
400
401     /* contrary to the params in ast_value, these are the parameter variables
402      * which are to be used in expressions.
403      * The ast_value for the function contains only the parameter types used
404      * to generate ast_calls, and ast_call contains the parameter values
405      * used in that call.
406      */
407 };
408 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype);
409 /* This will NOT delete the underlying ast_value */
410 void ast_function_delete(ast_function*);
411 /* For "optimized" builds this can just keep returning "foo"...
412  * or whatever...
413  */
414 const char* ast_function_label(ast_function*, const char *prefix);
415
416 MEM_VECTOR_PROTO(ast_function, ast_block*, blocks);
417
418 bool ast_function_codegen(ast_function *self, ir_builder *builder);
419
420 /* Expression union
421  */
422 union ast_expression_u
423 {
424     ast_expression_common expression;
425
426     ast_value    value;
427     ast_binary   binary;
428     ast_block    block;
429     ast_ternary  ternary;
430     ast_ifthen   ifthen;
431     ast_store    store;
432     ast_entfield entfield;
433 };
434
435 /* Node union
436  */
437 union ast_node_u
438 {
439     ast_node_common node;
440     ast_expression  expression;
441 };
442
443 #endif