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