]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.h
4b889554ea1fa0c09891b7e600ea999739523326
[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_binstore_s    ast_binstore;
40 typedef struct ast_entfield_s    ast_entfield;
41 typedef struct ast_ifthen_s      ast_ifthen;
42 typedef struct ast_ternary_s     ast_ternary;
43 typedef struct ast_loop_s        ast_loop;
44 typedef struct ast_call_s        ast_call;
45 typedef struct ast_unary_s       ast_unary;
46 typedef struct ast_return_s      ast_return;
47 typedef struct ast_member_s      ast_member;
48 typedef struct ast_array_index_s ast_array_index;
49 typedef struct ast_breakcont_s   ast_breakcont;
50 typedef struct ast_switch_s      ast_switch;
51
52 enum {
53     TYPE_ast_node,
54     TYPE_ast_expression,
55     TYPE_ast_value,
56     TYPE_ast_function,
57     TYPE_ast_block,
58     TYPE_ast_binary,
59     TYPE_ast_store,
60     TYPE_ast_binstore,
61     TYPE_ast_entfield,
62     TYPE_ast_ifthen,
63     TYPE_ast_ternary,
64     TYPE_ast_loop,
65     TYPE_ast_call,
66     TYPE_ast_unary,
67     TYPE_ast_return,
68     TYPE_ast_member,
69     TYPE_ast_array_index,
70     TYPE_ast_breakcont,
71     TYPE_ast_switch
72 };
73
74 #define ast_istype(x, t) ( ((ast_node_common*)x)->nodetype == (TYPE_##t) )
75 #define ast_ctx(node) (((ast_node_common*)(node))->context)
76 #define ast_side_effects(node) (((ast_node_common*)(node))->side_effects)
77
78 /* Node interface with common components
79  */
80 typedef void ast_node_delete(ast_node*);
81 typedef struct
82 {
83     lex_ctx          context;
84     /* I don't feel comfortable using keywords like 'delete' as names... */
85     ast_node_delete *destroy;
86     int              nodetype;
87     /* keep: if a node contains this node, 'keep'
88      * prevents its dtor from destroying this node as well.
89      */
90     bool             keep;
91     bool             side_effects;
92 } ast_node_common;
93
94 #define ast_delete(x) ( ( (ast_node*)(x) ) -> node.destroy )((ast_node*)(x))
95 #define ast_unref(x) do                     \
96 {                                           \
97     if (! (((ast_node*)(x))->node.keep) ) { \
98         ast_delete(x);                      \
99     }                                       \
100 } while(0)
101
102 /* Expression interface
103  *
104  * Any expression or block returns an ir_value, and needs
105  * to know the current function.
106  */
107 typedef bool ast_expression_codegen(ast_expression*,
108                                     ast_function*,
109                                     bool lvalue,
110                                     ir_value**);
111 /* TODO: the codegen function should take an output-type parameter
112  * indicating whether a variable, type, label etc. is expected, and
113  * an environment!
114  * Then later an ast_ident could have a codegen using this to figure
115  * out what to look for.
116  * eg. in code which uses a not-yet defined variable, the expression
117  * would take an ast_ident, and the codegen would be called with
118  * type `expression`, so the ast_ident's codegen would search for
119  * variables through the environment (or functions, constants...).
120  */
121 typedef struct
122 {
123     ast_node_common         node;
124     ast_expression_codegen *codegen;
125     int                     vtype;
126     ast_expression         *next;
127     /* arrays get a member-count */
128     size_t                  count;
129     ast_value*             *params;
130     bool                    variadic;
131     /* The codegen functions should store their output values
132      * so we can call it multiple times without re-evaluating.
133      * Store lvalue and rvalue seperately though. So that
134      * ast_entfield for example can generate both if required.
135      */
136     ir_value               *outl;
137     ir_value               *outr;
138 } ast_expression_common;
139
140 /* Value
141  *
142  * Types are also values, both have a type and a name.
143  * especially considering possible constructs like typedefs.
144  * typedef float foo;
145  * is like creating a 'float foo', foo serving as the type's name.
146  */
147 struct ast_value_s
148 {
149     ast_expression_common expression;
150
151     const char *name;
152
153     /*
154     int         vtype;
155     ast_value  *next;
156     */
157
158     bool constant;
159     bool hasvalue;
160     union {
161         double        vfloat;
162         int           vint;
163         vector        vvec;
164         const char   *vstring;
165         int           ventity;
166         ast_function *vfunc;
167     } constval;
168
169     /* usecount for the parser */
170     size_t uses;
171
172     ir_value *ir_v;
173     ir_value **ir_values;
174     size_t   ir_value_count;
175
176     /* ONLY for arrays in progs version up to 6 */
177     ast_value *setter;
178     ast_value *getter;
179 };
180
181 ast_value* ast_value_new(lex_ctx ctx, const char *name, int qctype);
182 ast_value* ast_value_copy(const ast_value *self);
183 /* This will NOT delete an underlying ast_function */
184 void ast_value_delete(ast_value*);
185
186 bool ast_value_set_name(ast_value*, const char *name);
187
188 bool ast_value_codegen(ast_value*, ast_function*, bool lvalue, ir_value**);
189 bool ast_local_codegen(ast_value *self, ir_function *func, bool isparam);
190 bool ast_global_codegen(ast_value *self, ir_builder *ir, bool isfield);
191
192 void ast_value_params_add(ast_value*, ast_value*);
193
194 bool ast_compare_type(ast_expression *a, ast_expression *b);
195 ast_expression* ast_type_copy(lex_ctx ctx, const ast_expression *ex);
196 #define ast_type_adopt(a, b) ast_type_adopt_impl((ast_expression*)(a), (ast_expression*)(b))
197 bool ast_type_adopt_impl(ast_expression *self, const ast_expression *other);
198 void ast_type_to_string(ast_expression *e, char *buf, size_t bufsize);
199
200 /* Binary
201  *
202  * A value-returning binary expression.
203  */
204 struct ast_binary_s
205 {
206     ast_expression_common expression;
207
208     int             op;
209     ast_expression *left;
210     ast_expression *right;
211 };
212 ast_binary* ast_binary_new(lex_ctx    ctx,
213                            int        op,
214                            ast_expression *left,
215                            ast_expression *right);
216 void ast_binary_delete(ast_binary*);
217
218 bool ast_binary_codegen(ast_binary*, ast_function*, bool lvalue, ir_value**);
219
220 /* Binstore
221  *
222  * An assignment including a binary expression with the source as left operand.
223  * Eg. a += b; is a binstore { INSTR_STORE, INSTR_ADD, a, b }
224  */
225 struct ast_binstore_s
226 {
227     ast_expression_common expression;
228
229     int             opstore;
230     int             opbin;
231     ast_expression *dest;
232     ast_expression *source;
233 };
234 ast_binstore* ast_binstore_new(lex_ctx    ctx,
235                                int        storeop,
236                                int        op,
237                                ast_expression *left,
238                                ast_expression *right);
239 void ast_binstore_delete(ast_binstore*);
240
241 bool ast_binstore_codegen(ast_binstore*, ast_function*, bool lvalue, ir_value**);
242
243 /* Unary
244  *
245  * Regular unary expressions: not,neg
246  */
247 struct ast_unary_s
248 {
249     ast_expression_common expression;
250
251     int             op;
252     ast_expression *operand;
253 };
254 ast_unary* ast_unary_new(lex_ctx    ctx,
255                          int        op,
256                          ast_expression *expr);
257 void ast_unary_delete(ast_unary*);
258
259 bool ast_unary_codegen(ast_unary*, ast_function*, bool lvalue, ir_value**);
260
261 /* Return
262  *
263  * Make sure 'return' only happens at the end of a block, otherwise the IR
264  * will refuse to create further instructions.
265  * This should be honored by the parser.
266  */
267 struct ast_return_s
268 {
269     ast_expression_common expression;
270     ast_expression *operand;
271 };
272 ast_return* ast_return_new(lex_ctx    ctx,
273                            ast_expression *expr);
274 void ast_return_delete(ast_return*);
275
276 bool ast_return_codegen(ast_return*, ast_function*, bool lvalue, ir_value**);
277
278 /* Entity-field
279  *
280  * This must do 2 things:
281  * -) Provide a way to fetch an entity field value. (Rvalue)
282  * -) Provide a pointer to an entity field. (Lvalue)
283  * The problem:
284  * In original QC, there's only a STORE via pointer, but
285  * no LOAD via pointer.
286  * So we must know beforehand if we are going to read or assign
287  * the field.
288  * For this we will have to extend the codegen() functions with
289  * a flag saying whether or not we need an L or an R-value.
290  */
291 struct ast_entfield_s
292 {
293     ast_expression_common expression;
294     /* The entity can come from an expression of course. */
295     ast_expression *entity;
296     /* As can the field, it just must result in a value of TYPE_FIELD */
297     ast_expression *field;
298 };
299 ast_entfield* ast_entfield_new(lex_ctx ctx, ast_expression *entity, ast_expression *field);
300 ast_entfield* ast_entfield_new_force(lex_ctx ctx, ast_expression *entity, ast_expression *field, const ast_expression *outtype);
301 void ast_entfield_delete(ast_entfield*);
302
303 bool ast_entfield_codegen(ast_entfield*, ast_function*, bool lvalue, ir_value**);
304
305 /* Member access:
306  *
307  * For now used for vectors. If we get structs or unions
308  * we can have them handled here as well.
309  */
310 struct ast_member_s
311 {
312     ast_expression_common expression;
313     ast_expression *owner;
314     unsigned int    field;
315     const char     *name;
316 };
317 ast_member* ast_member_new(lex_ctx ctx, ast_expression *owner, unsigned int field, const char *name);
318 void ast_member_delete(ast_member*);
319
320 bool ast_member_codegen(ast_member*, ast_function*, bool lvalue, ir_value**);
321
322 /* Array index access:
323  *
324  * QC forces us to take special action on arrays:
325  * an ast_store on an ast_array_index must not codegen the index,
326  * but call its setter - unless we have an instruction set which supports
327  * what we need.
328  * Any other array index access will be codegened to a call to the getter.
329  * In any case, accessing an element via a compiletime-constant index will
330  * result in quick access to that variable.
331  */
332 struct ast_array_index_s
333 {
334     ast_expression_common expression;
335     ast_expression *array;
336     ast_expression *index;
337 };
338 ast_array_index* ast_array_index_new(lex_ctx ctx, ast_expression *array, ast_expression *index);
339 void ast_array_index_delete(ast_array_index*);
340
341 bool ast_array_index_codegen(ast_array_index*, ast_function*, bool lvalue, ir_value**);
342
343 /* Store
344  *
345  * Stores left<-right and returns left.
346  * Specialized binary expression node
347  */
348 struct ast_store_s
349 {
350     ast_expression_common expression;
351     int             op;
352     ast_expression *dest;
353     ast_expression *source;
354 };
355 ast_store* ast_store_new(lex_ctx ctx, int op,
356                          ast_expression *d, ast_expression *s);
357 void ast_store_delete(ast_store*);
358
359 bool ast_store_codegen(ast_store*, ast_function*, bool lvalue, ir_value**);
360
361 /* If
362  *
363  * A general 'if then else' statement, either side can be NULL and will
364  * thus be omitted. It is an error for *both* cases to be NULL at once.
365  *
366  * During its 'codegen' it'll be changing the ast_function's block.
367  *
368  * An if is also an "expression". Its codegen will put NULL into the
369  * output field though. For ternary expressions an ast_ternary will be
370  * added.
371  */
372 struct ast_ifthen_s
373 {
374     ast_expression_common expression;
375     ast_expression *cond;
376     /* It's all just 'expressions', since an ast_block is one too. */
377     ast_expression *on_true;
378     ast_expression *on_false;
379 };
380 ast_ifthen* ast_ifthen_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse);
381 void ast_ifthen_delete(ast_ifthen*);
382
383 bool ast_ifthen_codegen(ast_ifthen*, ast_function*, bool lvalue, ir_value**);
384
385 /* Ternary expressions...
386  *
387  * Contrary to 'if-then-else' nodes, ternary expressions actually
388  * return a value, otherwise they behave the very same way.
389  * The difference in 'codegen' is that it'll return the value of
390  * a PHI node.
391  *
392  * The other difference is that in an ast_ternary, NEITHER side
393  * must be NULL, there's ALWAYS an else branch.
394  *
395  * This is the only ast_node beside ast_value which contains
396  * an ir_value. Theoretically we don't need to remember it though.
397  */
398 struct ast_ternary_s
399 {
400     ast_expression_common expression;
401     ast_expression *cond;
402     /* It's all just 'expressions', since an ast_block is one too. */
403     ast_expression *on_true;
404     ast_expression *on_false;
405 };
406 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse);
407 void ast_ternary_delete(ast_ternary*);
408
409 bool ast_ternary_codegen(ast_ternary*, ast_function*, bool lvalue, ir_value**);
410
411 /* A general loop node
412  *
413  * For convenience it contains 4 parts:
414  * -) (ini) = initializing expression
415  * -) (pre) = pre-loop condition
416  * -) (pst) = post-loop condition
417  * -) (inc) = "increment" expression
418  * The following is a psudo-representation of this loop
419  * note that '=>' bears the logical meaning of "implies".
420  * (a => b) equals (!a || b)
421
422 {ini};
423 while (has_pre => {pre})
424 {
425     {body};
426
427 continue:      // a 'continue' will jump here
428     if (has_pst => {pst})
429         break;
430
431     {inc};
432 }
433  */
434 struct ast_loop_s
435 {
436     ast_expression_common expression;
437     ast_expression *initexpr;
438     ast_expression *precond;
439     ast_expression *postcond;
440     ast_expression *increment;
441     ast_expression *body;
442 };
443 ast_loop* ast_loop_new(lex_ctx ctx,
444                        ast_expression *initexpr,
445                        ast_expression *precond,
446                        ast_expression *postcond,
447                        ast_expression *increment,
448                        ast_expression *body);
449 void ast_loop_delete(ast_loop*);
450
451 bool ast_loop_codegen(ast_loop*, ast_function*, bool lvalue, ir_value**);
452
453 /* Break/Continue
454  */
455 struct ast_breakcont_s
456 {
457     ast_expression_common expression;
458     bool is_continue;
459 };
460 ast_breakcont* ast_breakcont_new(lex_ctx ctx, bool iscont);
461 void ast_breakcont_delete(ast_breakcont*);
462
463 bool ast_breakcont_codegen(ast_breakcont*, ast_function*, bool lvalue, ir_value**);
464
465 /* Switch Statements
466  *
467  * A few notes about this: with the original QCVM, no real optimization
468  * is possible. The SWITCH instruction set isn't really helping a lot, since
469  * it only collapes the EQ and IF instructions into one.
470  * Note: Declaring local variables inside caseblocks is normal.
471  * Since we don't have to deal with a stack there's no unnatural behaviour to
472  * be expected from it.
473  * TODO: Ticket #20
474  */
475 typedef struct {
476     ast_expression *value; /* #20 will replace this */
477     ast_expression *code;
478 } ast_switch_case;
479 struct ast_switch_s
480 {
481     ast_expression_common expression;
482
483     ast_expression  *operand;
484     ast_switch_case *cases;
485 };
486
487 ast_switch* ast_switch_new(lex_ctx ctx, ast_expression *op);
488 void ast_switch_delete(ast_switch*);
489
490 bool ast_switch_codegen(ast_switch*, ast_function*, bool lvalue, ir_value**);
491
492 /* CALL node
493  *
494  * Contains an ast_expression as target, rather than an ast_function/value.
495  * Since it's how QC works, every ast_function has an ast_value
496  * associated anyway - in other words, the VM contains function
497  * pointers for every function anyway. Thus, this node will call
498  * expression.
499  * Additionally it contains a list of ast_expressions as parameters.
500  * Since calls can return values, an ast_call is also an ast_expression.
501  */
502 struct ast_call_s
503 {
504     ast_expression_common expression;
505     ast_expression *func;
506     ast_expression* *params;
507 };
508 ast_call* ast_call_new(lex_ctx ctx,
509                        ast_expression *funcexpr);
510 void ast_call_delete(ast_call*);
511 bool ast_call_codegen(ast_call*, ast_function*, bool lvalue, ir_value**);
512 bool ast_call_check_types(ast_call*);
513
514 /* Blocks
515  *
516  */
517 struct ast_block_s
518 {
519     ast_expression_common expression;
520
521     ast_value*      *locals;
522     ast_expression* *exprs;
523     ast_expression* *collect;
524 };
525 ast_block* ast_block_new(lex_ctx ctx);
526 void ast_block_delete(ast_block*);
527 bool ast_block_set_type(ast_block*, ast_expression *from);
528
529 bool ast_block_codegen(ast_block*, ast_function*, bool lvalue, ir_value**);
530 void ast_block_collect(ast_block*, ast_expression*);
531
532 void ast_block_add_expr(ast_block*, ast_expression*);
533
534 /* Function
535  *
536  * Contains a list of blocks... at least in theory.
537  * Usually there's just the main block, other blocks are inside that.
538  *
539  * Technically, functions don't need to be an AST node, since we have
540  * neither functions inside functions, nor lambdas, and function
541  * pointers could just work with a name. However, this way could be
542  * more flexible, and adds no real complexity.
543  */
544 struct ast_function_s
545 {
546     ast_node_common node;
547
548     ast_value  *vtype;
549     const char *name;
550
551     int builtin;
552
553     ir_function *ir_func;
554     ir_block    *curblock;
555     ir_block    *breakblock;
556     ir_block    *continueblock;
557
558 #if 0
559     /* In order for early-out logic not to go over
560      * excessive jumps, we remember their target
561      * blocks...
562      */
563     ir_block    *iftrue;
564     ir_block    *iffalse;
565 #endif
566
567     size_t       labelcount;
568     /* in order for thread safety - for the optional
569      * channel abesed multithreading... keeping a buffer
570      * here to use in ast_function_label.
571      */
572     char         labelbuf[64];
573
574     ast_block* *blocks;
575 };
576 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype);
577 /* This will NOT delete the underlying ast_value */
578 void ast_function_delete(ast_function*);
579 /* For "optimized" builds this can just keep returning "foo"...
580  * or whatever...
581  */
582 const char* ast_function_label(ast_function*, const char *prefix);
583
584 bool ast_function_codegen(ast_function *self, ir_builder *builder);
585
586 /* Expression union
587  */
588 union ast_expression_u
589 {
590     ast_expression_common expression;
591
592     ast_value    value;
593     ast_binary   binary;
594     ast_block    block;
595     ast_ternary  ternary;
596     ast_ifthen   ifthen;
597     ast_store    store;
598     ast_entfield entfield;
599 };
600
601 /* Node union
602  */
603 union ast_node_u
604 {
605     ast_node_common node;
606     ast_expression  expression;
607 };
608
609 #endif