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