]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.h
ast/ir support for unary instructions
[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 /* Entity-field
172  *
173  * This must do 2 things:
174  * -) Provide a way to fetch an entity field value. (Rvalue)
175  * -) Provide a pointer to an entity field. (Lvalue)
176  * The problem:
177  * In original QC, there's only a STORE via pointer, but
178  * no LOAD via pointer.
179  * So we must know beforehand if we are going to read or assign
180  * the field.
181  * For this we will have to extend the codegen() functions with
182  * a flag saying whether or not we need an L or an R-value.
183  */
184 struct ast_entfield_s
185 {
186     ast_expression_common expression;
187     /* The entity can come from an expression of course. */
188     ast_expression *entity;
189     /* As can the field, it just must result in a value of TYPE_FIELD */
190     ast_expression *field;
191 };
192 ast_entfield* ast_entfield_new(lex_ctx ctx, ast_expression *entity, ast_expression *field);
193 void ast_entfield_delete(ast_entfield*);
194
195 bool ast_entfield_codegen(ast_entfield*, ast_function*, bool lvalue, ir_value**);
196
197 /* Store
198  *
199  * Stores left<-right and returns left.
200  * Specialized binary expression node
201  */
202 struct ast_store_s
203 {
204     ast_expression_common expression;
205     int             op;
206     ast_value      *dest; /* When we add pointers this might have to change to expression */
207     ast_expression *source;
208 };
209 ast_store* ast_store_new(lex_ctx ctx, int op,
210                          ast_value *d, ast_expression *s);
211 void ast_store_delete(ast_store*);
212
213 bool ast_store_codegen(ast_store*, ast_function*, bool lvalue, ir_value**);
214
215 /* If
216  *
217  * A general 'if then else' statement, either side can be NULL and will
218  * thus be omitted. It is an error for *both* cases to be NULL at once.
219  *
220  * During its 'codegen' it'll be changing the ast_function's block.
221  *
222  * An if is also an "expression". Its codegen will put NULL into the
223  * output field though. For ternary expressions an ast_ternary will be
224  * added.
225  */
226 struct ast_ifthen_s
227 {
228     ast_expression_common expression;
229     ast_expression *cond;
230     /* It's all just 'expressions', since an ast_block is one too. */
231     ast_expression *on_true;
232     ast_expression *on_false;
233 };
234 ast_ifthen* ast_ifthen_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse);
235 void ast_ifthen_delete(ast_ifthen*);
236
237 bool ast_ifthen_codegen(ast_ifthen*, ast_function*, bool lvalue, ir_value**);
238
239 /* Ternary expressions...
240  *
241  * Contrary to 'if-then-else' nodes, ternary expressions actually
242  * return a value, otherwise they behave the very same way.
243  * The difference in 'codegen' is that it'll return the value of
244  * a PHI node.
245  *
246  * The other difference is that in an ast_ternary, NEITHER side
247  * must be NULL, there's ALWAYS an else branch.
248  *
249  * This is the only ast_node beside ast_value which contains
250  * an ir_value. Theoretically we don't need to remember it though.
251  */
252 struct ast_ternary_s
253 {
254     ast_expression_common expression;
255     ast_expression *cond;
256     /* It's all just 'expressions', since an ast_block is one too. */
257     ast_expression *on_true;
258     ast_expression *on_false;
259     /* After a ternary expression we find ourselves in a new IR block
260      * and start with a PHI node */
261     ir_value       *phi_out;
262 };
263 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse);
264 void ast_ternary_delete(ast_ternary*);
265
266 bool ast_ternary_codegen(ast_ternary*, ast_function*, bool lvalue, ir_value**);
267
268 /* A general loop node
269  *
270  * For convenience it contains 4 parts:
271  * -) (ini) = initializing expression
272  * -) (pre) = pre-loop condition
273  * -) (pst) = post-loop condition
274  * -) (inc) = "increment" expression
275  * The following is a psudo-representation of this loop
276  * note that '=>' bears the logical meaning of "implies".
277  * (a => b) equals (!a || b)
278
279 {ini};
280 while (has_pre => {pre})
281 {
282     {body};
283
284 continue:      // a 'continue' will jump here
285     if (has_pst => {pst})
286         break;
287
288     {inc};
289 }
290  */
291 struct ast_loop_s
292 {
293     ast_expression_common expression;
294     ast_expression *initexpr;
295     ast_expression *precond;
296     ast_expression *postcond;
297     ast_expression *increment;
298     ast_expression *body;
299 };
300 ast_loop* ast_loop_new(lex_ctx ctx,
301                        ast_expression *initexpr,
302                        ast_expression *precond,
303                        ast_expression *postcond,
304                        ast_expression *increment,
305                        ast_expression *body);
306 void ast_loop_delete(ast_loop*);
307
308 bool ast_loop_codegen(ast_loop*, ast_function*, bool lvalue, ir_value**);
309
310 /* CALL node
311  *
312  * Contains an ast_expression as target, rather than an ast_function/value.
313  * Since it's how QC works, every ast_function has an ast_value
314  * associated anyway - in other words, the VM contains function
315  * pointers for every function anyway. Thus, this node will call
316  * expression.
317  * Additionally it contains a list of ast_expressions as parameters.
318  * Since calls can return values, an ast_call is also an ast_expression.
319  */
320 struct ast_call_s
321 {
322     ast_expression_common expression;
323     ast_expression *func;
324     MEM_VECTOR_MAKE(ast_expression*, params);
325 };
326 ast_call* ast_call_new(lex_ctx ctx,
327                        ast_expression *funcexpr);
328 void ast_call_delete(ast_call*);
329 bool ast_call_codegen(ast_call*, ast_function*, bool lvalue, ir_value**);
330
331 MEM_VECTOR_PROTO(ast_call, ast_expression*, params);
332
333 /* Blocks
334  *
335  */
336 struct ast_block_s
337 {
338     ast_expression_common expression;
339
340     MEM_VECTOR_MAKE(ast_value*,      locals);
341     MEM_VECTOR_MAKE(ast_expression*, exprs);
342 };
343 ast_block* ast_block_new(lex_ctx ctx);
344 void ast_block_delete(ast_block*);
345
346 MEM_VECTOR_PROTO(ast_block, ast_value*, locals);
347 MEM_VECTOR_PROTO(ast_block, ast_expression*, exprs);
348
349 bool ast_block_codegen(ast_block*, ast_function*, bool lvalue, ir_value**);
350
351 /* Function
352  *
353  * Contains a list of blocks... at least in theory.
354  * Usually there's just the main block, other blocks are inside that.
355  *
356  * Technically, functions don't need to be an AST node, since we have
357  * neither functions inside functions, nor lambdas, and function
358  * pointers could just work with a name. However, this way could be
359  * more flexible, and adds no real complexity.
360  */
361 struct ast_function_s
362 {
363     ast_node_common node;
364
365     ast_value  *vtype;
366     const char *name;
367
368     int builtin;
369
370     ir_function *ir_func;
371     ir_block    *curblock;
372     ir_block    *breakblock;
373     ir_block    *continueblock;
374
375     size_t       labelcount;
376     /* in order for thread safety - for the optional
377      * channel abesed multithreading... keeping a buffer
378      * here to use in ast_function_label.
379      */
380     char         labelbuf[64];
381
382     MEM_VECTOR_MAKE(ast_block*, blocks);
383
384     /* contrary to the params in ast_value, these are the parameter variables
385      * which are to be used in expressions.
386      * The ast_value for the function contains only the parameter types used
387      * to generate ast_calls, and ast_call contains the parameter values
388      * used in that call.
389      */
390 };
391 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype);
392 /* This will NOT delete the underlying ast_value */
393 void ast_function_delete(ast_function*);
394 /* For "optimized" builds this can just keep returning "foo"...
395  * or whatever...
396  */
397 const char* ast_function_label(ast_function*, const char *prefix);
398
399 MEM_VECTOR_PROTO(ast_function, ast_block*, blocks);
400
401 bool ast_function_codegen(ast_function *self, ir_builder *builder);
402
403 /* Expression union
404  */
405 union ast_expression_u
406 {
407     ast_expression_common expression;
408
409     ast_value    value;
410     ast_binary   binary;
411     ast_block    block;
412     ast_ternary  ternary;
413     ast_ifthen   ifthen;
414     ast_store    store;
415     ast_entfield entfield;
416 };
417
418 /* Node union
419  */
420 union ast_node_u
421 {
422     ast_node_common node;
423     ast_expression  expression;
424 };
425
426 #endif