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