]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.c
ast_ifthen_codegen: the merge-jumps for an if's branches need to be added to the...
[xonotic/gmqcc.git] / ast.c
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 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "gmqcc.h"
28 #include "ast.h"
29
30 #define ast_instantiate(T, ctx, destroyfn)                          \
31     T* self = (T*)mem_a(sizeof(T));                                 \
32     if (!self) {                                                    \
33         return NULL;                                                \
34     }                                                               \
35     ast_node_init((ast_node*)self, ctx, TYPE_##T);                  \
36     ( (ast_node*)self )->node.destroy = (ast_node_delete*)destroyfn
37
38 /* error handling */
39 static void asterror(lex_ctx ctx, const char *msg, ...)
40 {
41     va_list ap;
42     va_start(ap, msg);
43     cvprintmsg(ctx, LVL_ERROR, "error", msg, ap);
44     va_end(ap);
45 }
46
47 /* It must not be possible to get here. */
48 static GMQCC_NORETURN void _ast_node_destroy(ast_node *self)
49 {
50     fprintf(stderr, "ast node missing destroy()\n");
51     abort();
52 }
53
54 /* Initialize main ast node aprts */
55 static void ast_node_init(ast_node *self, lex_ctx ctx, int nodetype)
56 {
57     self->node.context = ctx;
58     self->node.destroy = &_ast_node_destroy;
59     self->node.keep    = false;
60     self->node.nodetype = nodetype;
61 }
62
63 /* General expression initialization */
64 static void ast_expression_init(ast_expression *self,
65                                 ast_expression_codegen *codegen)
66 {
67     self->expression.codegen = codegen;
68     self->expression.vtype   = TYPE_VOID;
69     self->expression.next    = NULL;
70     self->expression.outl    = NULL;
71     self->expression.outr    = NULL;
72     MEM_VECTOR_INIT(&self->expression, params);
73 }
74
75 static void ast_expression_delete(ast_expression *self)
76 {
77     size_t i;
78     if (self->expression.next)
79         ast_delete(self->expression.next);
80     for (i = 0; i < self->expression.params_count; ++i) {
81         ast_delete(self->expression.params[i]);
82     }
83     MEM_VECTOR_CLEAR(&self->expression, params);
84 }
85
86 static void ast_expression_delete_full(ast_expression *self)
87 {
88     ast_expression_delete(self);
89     mem_d(self);
90 }
91
92 MEM_VEC_FUNCTIONS(ast_expression_common, ast_value*, params)
93
94 ast_value* ast_value_copy(const ast_value *self)
95 {
96     size_t i;
97     const ast_expression_common *fromex;
98     ast_expression_common *selfex;
99     ast_value *cp = ast_value_new(self->expression.node.context, self->name, self->expression.vtype);
100     if (self->expression.next) {
101         cp->expression.next = ast_type_copy(self->expression.node.context, self->expression.next);
102         if (!cp->expression.next) {
103             ast_value_delete(cp);
104             return NULL;
105         }
106     }
107     fromex   = &self->expression;
108     selfex = &cp->expression;
109     for (i = 0; i < fromex->params_count; ++i) {
110         ast_value *v = ast_value_copy(fromex->params[i]);
111         if (!v || !ast_expression_common_params_add(selfex, v)) {
112             ast_value_delete(cp);
113             return NULL;
114         }
115     }
116     return cp;
117 }
118
119 bool ast_type_adopt_impl(ast_expression *self, const ast_expression *other)
120 {
121     size_t i;
122     const ast_expression_common *fromex;
123     ast_expression_common *selfex;
124     self->expression.vtype = other->expression.vtype;
125     if (other->expression.next) {
126         self->expression.next = (ast_expression*)ast_type_copy(ast_ctx(self), other->expression.next);
127         if (!self->expression.next)
128             return false;
129     }
130     fromex   = &other->expression;
131     selfex = &self->expression;
132     for (i = 0; i < fromex->params_count; ++i) {
133         ast_value *v = ast_value_copy(fromex->params[i]);
134         if (!v || !ast_expression_common_params_add(selfex, v))
135             return false;
136     }
137     return true;
138 }
139
140 static ast_expression* ast_shallow_type(lex_ctx ctx, int vtype)
141 {
142     ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
143     ast_expression_init(self, NULL);
144     self->expression.codegen = NULL;
145     self->expression.next    = NULL;
146     self->expression.vtype   = vtype;
147     return self;
148 }
149
150 ast_expression* ast_type_copy(lex_ctx ctx, const ast_expression *ex)
151 {
152     size_t i;
153     const ast_expression_common *fromex;
154     ast_expression_common *selfex;
155
156     if (!ex)
157         return NULL;
158     else
159     {
160         ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
161         ast_expression_init(self, NULL);
162
163         fromex   = &ex->expression;
164         selfex = &self->expression;
165
166         /* This may never be codegen()d */
167         selfex->codegen = NULL;
168
169         selfex->vtype = fromex->vtype;
170         if (fromex->next)
171         {
172             selfex->next = ast_type_copy(ctx, fromex->next);
173             if (!selfex->next) {
174                 ast_expression_delete_full(self);
175                 return NULL;
176             }
177         }
178         else
179             selfex->next = NULL;
180
181         for (i = 0; i < fromex->params_count; ++i) {
182             ast_value *v = ast_value_copy(fromex->params[i]);
183             if (!v || !ast_expression_common_params_add(selfex, v)) {
184                 ast_expression_delete_full(self);
185                 return NULL;
186             }
187         }
188
189         return self;
190     }
191 }
192
193 bool ast_compare_type(ast_expression *a, ast_expression *b)
194 {
195     if (a->expression.vtype != b->expression.vtype)
196         return false;
197     if (!a->expression.next != !b->expression.next)
198         return false;
199     if (a->expression.params_count != b->expression.params_count)
200         return false;
201     if (a->expression.params_count) {
202         size_t i;
203         for (i = 0; i < a->expression.params_count; ++i) {
204             if (!ast_compare_type((ast_expression*)a->expression.params[i],
205                                   (ast_expression*)b->expression.params[i]))
206                 return false;
207         }
208     }
209     if (a->expression.next)
210         return ast_compare_type(a->expression.next, b->expression.next);
211     return true;
212 }
213
214 ast_value* ast_value_new(lex_ctx ctx, const char *name, int t)
215 {
216     ast_instantiate(ast_value, ctx, ast_value_delete);
217     ast_expression_init((ast_expression*)self,
218                         (ast_expression_codegen*)&ast_value_codegen);
219     self->expression.node.keep = true; /* keep */
220
221     self->name = name ? util_strdup(name) : NULL;
222     self->expression.vtype = t;
223     self->expression.next  = NULL;
224     self->isconst = false;
225     memset(&self->constval, 0, sizeof(self->constval));
226
227     self->ir_v    = NULL;
228
229     return self;
230 }
231
232 void ast_value_delete(ast_value* self)
233 {
234     if (self->name)
235         mem_d((void*)self->name);
236     if (self->isconst) {
237         switch (self->expression.vtype)
238         {
239         case TYPE_STRING:
240             mem_d((void*)self->constval.vstring);
241             break;
242         case TYPE_FUNCTION:
243             /* unlink us from the function node */
244             self->constval.vfunc->vtype = NULL;
245             break;
246         /* NOTE: delete function? currently collected in
247          * the parser structure
248          */
249         default:
250             break;
251         }
252     }
253     ast_expression_delete((ast_expression*)self);
254     mem_d(self);
255 }
256
257 bool GMQCC_WARN ast_value_params_add(ast_value *self, ast_value *p)
258 {
259     return ast_expression_common_params_add(&self->expression, p);
260 }
261
262 bool ast_value_set_name(ast_value *self, const char *name)
263 {
264     if (self->name)
265         mem_d((void*)self->name);
266     self->name = util_strdup(name);
267     return !!self->name;
268 }
269
270 ast_binary* ast_binary_new(lex_ctx ctx, int op,
271                            ast_expression* left, ast_expression* right)
272 {
273     ast_instantiate(ast_binary, ctx, ast_binary_delete);
274     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binary_codegen);
275
276     self->op = op;
277     self->left = left;
278     self->right = right;
279
280     if (op >= INSTR_EQ_F && op <= INSTR_GT)
281         self->expression.vtype = TYPE_FLOAT;
282     else if (op == INSTR_AND || op == INSTR_OR ||
283              op == INSTR_BITAND || op == INSTR_BITOR)
284         self->expression.vtype = TYPE_FLOAT;
285     else if (op == INSTR_MUL_VF || op == INSTR_MUL_FV)
286         self->expression.vtype = TYPE_VECTOR;
287     else if (op == INSTR_MUL_V)
288         self->expression.vtype = TYPE_FLOAT;
289     else
290         self->expression.vtype = left->expression.vtype;
291
292     return self;
293 }
294
295 void ast_binary_delete(ast_binary *self)
296 {
297     ast_unref(self->left);
298     ast_unref(self->right);
299     ast_expression_delete((ast_expression*)self);
300     mem_d(self);
301 }
302
303 ast_binstore* ast_binstore_new(lex_ctx ctx, int storop, int op,
304                                ast_expression* left, ast_expression* right)
305 {
306     ast_instantiate(ast_binstore, ctx, ast_binstore_delete);
307     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binstore_codegen);
308
309     self->opstore = storop;
310     self->opbin   = op;
311     self->dest    = left;
312     self->source  = right;
313
314     self->expression.vtype = left->expression.vtype;
315     if (left->expression.next) {
316         self->expression.next = ast_type_copy(ctx, left);
317         if (!self->expression.next) {
318             ast_delete(self);
319             return NULL;
320         }
321     }
322     else
323         self->expression.next = NULL;
324
325     return self;
326 }
327
328 void ast_binstore_delete(ast_binstore *self)
329 {
330     ast_unref(self->dest);
331     ast_unref(self->source);
332     ast_expression_delete((ast_expression*)self);
333     mem_d(self);
334 }
335
336 ast_unary* ast_unary_new(lex_ctx ctx, int op,
337                          ast_expression *expr)
338 {
339     ast_instantiate(ast_unary, ctx, ast_unary_delete);
340     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_unary_codegen);
341
342     self->op = op;
343     self->operand = expr;
344
345     if (op >= INSTR_NOT_F && op <= INSTR_NOT_FNC) {
346         self->expression.vtype = TYPE_FLOAT;
347     } else
348         asterror(ctx, "cannot determine type of unary operation %s", asm_instr[op].m);
349
350     return self;
351 }
352
353 void ast_unary_delete(ast_unary *self)
354 {
355     ast_unref(self->operand);
356     ast_expression_delete((ast_expression*)self);
357     mem_d(self);
358 }
359
360 ast_return* ast_return_new(lex_ctx ctx, ast_expression *expr)
361 {
362     ast_instantiate(ast_return, ctx, ast_return_delete);
363     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_return_codegen);
364
365     self->operand = expr;
366
367     return self;
368 }
369
370 void ast_return_delete(ast_return *self)
371 {
372     if (self->operand)
373         ast_unref(self->operand);
374     ast_expression_delete((ast_expression*)self);
375     mem_d(self);
376 }
377
378 ast_entfield* ast_entfield_new(lex_ctx ctx, ast_expression *entity, ast_expression *field)
379 {
380     const ast_expression *outtype;
381
382     ast_instantiate(ast_entfield, ctx, ast_entfield_delete);
383
384     if (field->expression.vtype != TYPE_FIELD) {
385         mem_d(self);
386         return NULL;
387     }
388
389     outtype = field->expression.next;
390     if (!outtype) {
391         mem_d(self);
392         /* Error: field has no type... */
393         return NULL;
394     }
395
396     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_entfield_codegen);
397
398     self->entity = entity;
399     self->field  = field;
400
401     if (!ast_type_adopt(self, outtype)) {
402         ast_entfield_delete(self);
403         return NULL;
404     }
405
406     return self;
407 }
408
409 void ast_entfield_delete(ast_entfield *self)
410 {
411     ast_unref(self->entity);
412     ast_unref(self->field);
413     ast_expression_delete((ast_expression*)self);
414     mem_d(self);
415 }
416
417 ast_member* ast_member_new(lex_ctx ctx, ast_expression *owner, unsigned int field)
418 {
419     ast_instantiate(ast_member, ctx, ast_member_delete);
420     if (field >= 3) {
421         mem_d(self);
422         return NULL;
423     }
424
425     if (owner->expression.vtype != TYPE_VECTOR &&
426         owner->expression.vtype != TYPE_FIELD) {
427         asterror(ctx, "member-access on an invalid owner of type %s\n", type_name[owner->expression.vtype]);
428         mem_d(self);
429         return NULL;
430     }
431
432     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_member_codegen);
433     self->expression.node.keep = true; /* keep */
434
435     if (owner->expression.vtype == TYPE_VECTOR) {
436         self->expression.vtype = TYPE_FLOAT;
437         self->expression.next  = NULL;
438     } else {
439         self->expression.vtype = TYPE_FIELD;
440         self->expression.next = ast_shallow_type(ctx, TYPE_FLOAT);
441     }
442
443     self->owner = owner;
444     self->field = field;
445
446     return self;
447 }
448
449 void ast_member_delete(ast_member *self)
450 {
451     /* The owner is always an ast_value, which has .keep=true,
452      * also: ast_members are usually deleted after the owner, thus
453      * this will cause invalid access
454     ast_unref(self->owner);
455      * once we allow (expression).x to access a vector-member, we need
456      * to change this: preferably by creating an alternate ast node for this
457      * purpose that is not garbage-collected.
458     */
459     ast_expression_delete((ast_expression*)self);
460     mem_d(self);
461 }
462
463 ast_ifthen* ast_ifthen_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
464 {
465     ast_instantiate(ast_ifthen, ctx, ast_ifthen_delete);
466     if (!ontrue && !onfalse) {
467         /* because it is invalid */
468         mem_d(self);
469         return NULL;
470     }
471     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ifthen_codegen);
472
473     self->cond     = cond;
474     self->on_true  = ontrue;
475     self->on_false = onfalse;
476
477     return self;
478 }
479
480 void ast_ifthen_delete(ast_ifthen *self)
481 {
482     ast_unref(self->cond);
483     if (self->on_true)
484         ast_unref(self->on_true);
485     if (self->on_false)
486         ast_unref(self->on_false);
487     ast_expression_delete((ast_expression*)self);
488     mem_d(self);
489 }
490
491 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
492 {
493     ast_instantiate(ast_ternary, ctx, ast_ternary_delete);
494     /* This time NEITHER must be NULL */
495     if (!ontrue || !onfalse) {
496         mem_d(self);
497         return NULL;
498     }
499     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ternary_codegen);
500
501     self->cond     = cond;
502     self->on_true  = ontrue;
503     self->on_false = onfalse;
504     self->phi_out  = NULL;
505
506     return self;
507 }
508
509 void ast_ternary_delete(ast_ternary *self)
510 {
511     ast_unref(self->cond);
512     ast_unref(self->on_true);
513     ast_unref(self->on_false);
514     ast_expression_delete((ast_expression*)self);
515     mem_d(self);
516 }
517
518 ast_loop* ast_loop_new(lex_ctx ctx,
519                        ast_expression *initexpr,
520                        ast_expression *precond,
521                        ast_expression *postcond,
522                        ast_expression *increment,
523                        ast_expression *body)
524 {
525     ast_instantiate(ast_loop, ctx, ast_loop_delete);
526     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_loop_codegen);
527
528     self->initexpr  = initexpr;
529     self->precond   = precond;
530     self->postcond  = postcond;
531     self->increment = increment;
532     self->body      = body;
533
534     return self;
535 }
536
537 void ast_loop_delete(ast_loop *self)
538 {
539     if (self->initexpr)
540         ast_unref(self->initexpr);
541     if (self->precond)
542         ast_unref(self->precond);
543     if (self->postcond)
544         ast_unref(self->postcond);
545     if (self->increment)
546         ast_unref(self->increment);
547     if (self->body)
548         ast_unref(self->body);
549     ast_expression_delete((ast_expression*)self);
550     mem_d(self);
551 }
552
553 ast_call* ast_call_new(lex_ctx ctx,
554                        ast_expression *funcexpr)
555 {
556     ast_instantiate(ast_call, ctx, ast_call_delete);
557     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_call_codegen);
558
559     MEM_VECTOR_INIT(self, params);
560
561     self->func = funcexpr;
562
563     self->expression.vtype = funcexpr->expression.next->expression.vtype;
564     if (funcexpr->expression.next->expression.next)
565         self->expression.next = ast_type_copy(ctx, funcexpr->expression.next->expression.next);
566
567     return self;
568 }
569 MEM_VEC_FUNCTIONS(ast_call, ast_expression*, params)
570
571 void ast_call_delete(ast_call *self)
572 {
573     size_t i;
574     for (i = 0; i < self->params_count; ++i)
575         ast_unref(self->params[i]);
576     MEM_VECTOR_CLEAR(self, params);
577
578     if (self->func)
579         ast_unref(self->func);
580
581     ast_expression_delete((ast_expression*)self);
582     mem_d(self);
583 }
584
585 ast_store* ast_store_new(lex_ctx ctx, int op,
586                          ast_expression *dest, ast_expression *source)
587 {
588     ast_instantiate(ast_store, ctx, ast_store_delete);
589     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_store_codegen);
590
591     self->op = op;
592     self->dest = dest;
593     self->source = source;
594
595     return self;
596 }
597
598 void ast_store_delete(ast_store *self)
599 {
600     ast_unref(self->dest);
601     ast_unref(self->source);
602     ast_expression_delete((ast_expression*)self);
603     mem_d(self);
604 }
605
606 ast_block* ast_block_new(lex_ctx ctx)
607 {
608     ast_instantiate(ast_block, ctx, ast_block_delete);
609     ast_expression_init((ast_expression*)self,
610                         (ast_expression_codegen*)&ast_block_codegen);
611
612     MEM_VECTOR_INIT(self, locals);
613     MEM_VECTOR_INIT(self, exprs);
614     MEM_VECTOR_INIT(self, collect);
615
616     return self;
617 }
618 MEM_VEC_FUNCTIONS(ast_block, ast_value*, locals)
619 MEM_VEC_FUNCTIONS(ast_block, ast_expression*, exprs)
620 MEM_VEC_FUNCTIONS(ast_block, ast_expression*, collect)
621
622 bool ast_block_collect(ast_block *self, ast_expression *expr)
623 {
624     if (!ast_block_collect_add(self, expr))
625         return false;
626     expr->expression.node.keep = true;
627     return true;
628 }
629
630 void ast_block_delete(ast_block *self)
631 {
632     size_t i;
633     for (i = 0; i < self->exprs_count; ++i)
634         ast_unref(self->exprs[i]);
635     MEM_VECTOR_CLEAR(self, exprs);
636     for (i = 0; i < self->locals_count; ++i)
637         ast_delete(self->locals[i]);
638     MEM_VECTOR_CLEAR(self, locals);
639     for (i = 0; i < self->collect_count; ++i)
640         ast_delete(self->collect[i]);
641     MEM_VECTOR_CLEAR(self, collect);
642     ast_expression_delete((ast_expression*)self);
643     mem_d(self);
644 }
645
646 bool ast_block_set_type(ast_block *self, ast_expression *from)
647 {
648     if (self->expression.next)
649         ast_delete(self->expression.next);
650     self->expression.vtype = from->expression.vtype;
651     if (from->expression.next) {
652         self->expression.next = ast_type_copy(self->expression.node.context, from->expression.next);
653         if (!self->expression.next)
654             return false;
655     }
656     else
657         self->expression.next = NULL;
658     return true;
659 }
660
661 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype)
662 {
663     ast_instantiate(ast_function, ctx, ast_function_delete);
664
665     if (!vtype ||
666         vtype->isconst ||
667         vtype->expression.vtype != TYPE_FUNCTION)
668     {
669         mem_d(self);
670         return NULL;
671     }
672
673     self->vtype = vtype;
674     self->name = name ? util_strdup(name) : NULL;
675     MEM_VECTOR_INIT(self, blocks);
676
677     self->labelcount = 0;
678     self->builtin = 0;
679
680     self->ir_func = NULL;
681     self->curblock = NULL;
682
683     self->breakblock    = NULL;
684     self->continueblock = NULL;
685
686     vtype->isconst = true;
687     vtype->constval.vfunc = self;
688
689     return self;
690 }
691
692 MEM_VEC_FUNCTIONS(ast_function, ast_block*, blocks)
693
694 void ast_function_delete(ast_function *self)
695 {
696     size_t i;
697     if (self->name)
698         mem_d((void*)self->name);
699     if (self->vtype) {
700         /* ast_value_delete(self->vtype); */
701         self->vtype->isconst = false;
702         self->vtype->constval.vfunc = NULL;
703         /* We use unref - if it was stored in a global table it is supposed
704          * to be deleted from *there*
705          */
706         ast_unref(self->vtype);
707     }
708     for (i = 0; i < self->blocks_count; ++i)
709         ast_delete(self->blocks[i]);
710     MEM_VECTOR_CLEAR(self, blocks);
711     mem_d(self);
712 }
713
714 static void ast_util_hexitoa(char *buf, size_t size, unsigned int num)
715 {
716     unsigned int base = 10;
717 #define checknul() do { if (size == 1) { *buf = 0; return; } } while (0)
718 #define addch(x) do { *buf++ = (x); --size; checknul(); } while (0)
719     if (size < 1)
720         return;
721     checknul();
722     if (!num)
723         addch('0');
724     else {
725         while (num)
726         {
727             int digit = num % base;
728             num /= base;
729             addch('0' + digit);
730         }
731     }
732
733     *buf = 0;
734 #undef addch
735 #undef checknul
736 }
737
738 const char* ast_function_label(ast_function *self, const char *prefix)
739 {
740     size_t id = (self->labelcount++);
741     size_t len = strlen(prefix);
742     strncpy(self->labelbuf, prefix, sizeof(self->labelbuf));
743     ast_util_hexitoa(self->labelbuf + len, sizeof(self->labelbuf)-len, id);
744     return self->labelbuf;
745 }
746
747 /*********************************************************************/
748 /* AST codegen part
749  * by convention you must never pass NULL to the 'ir_value **out'
750  * parameter. If you really don't care about the output, pass a dummy.
751  * But I can't imagine a pituation where the output is truly unnecessary.
752  */
753
754 bool ast_value_codegen(ast_value *self, ast_function *func, bool lvalue, ir_value **out)
755 {
756     /* NOTE: This is the codegen for a variable used in an expression.
757      * It is not the codegen to generate the value. For this purpose,
758      * ast_local_codegen and ast_global_codegen are to be used before this
759      * is executed. ast_function_codegen should take care of its locals,
760      * and the ast-user should take care of ast_global_codegen to be used
761      * on all the globals.
762      */
763     if (!self->ir_v) {
764         asterror(ast_ctx(self), "ast_value used before generated (%s)\n", self->name);
765         return false;
766     }
767     *out = self->ir_v;
768     return true;
769 }
770
771 bool ast_global_codegen(ast_value *self, ir_builder *ir)
772 {
773     ir_value *v = NULL;
774     if (self->isconst && self->expression.vtype == TYPE_FUNCTION)
775     {
776         ir_function *func = ir_builder_create_function(ir, self->name, self->expression.next->expression.vtype);
777         if (!func)
778             return false;
779         func->context = ast_ctx(self);
780
781         self->constval.vfunc->ir_func = func;
782         self->ir_v = func->value;
783         /* The function is filled later on ast_function_codegen... */
784         return true;
785     }
786
787     if (self->expression.vtype == TYPE_FIELD) {
788         v = ir_builder_create_field(ir, self->name, self->expression.next->expression.vtype);
789         if (!v)
790             return false;
791         v->context = ast_ctx(self);
792         if (self->isconst) {
793             asterror(ast_ctx(self), "TODO: constant field pointers with value\n");
794             goto error;
795         }
796         self->ir_v = v;
797         return true;
798     }
799
800     v = ir_builder_create_global(ir, self->name, self->expression.vtype);
801     if (!v) {
802         asterror(ast_ctx(self), "ir_builder_create_global failed\n");
803         return false;
804     }
805     v->context = ast_ctx(self);
806
807     if (self->isconst) {
808         switch (self->expression.vtype)
809         {
810             case TYPE_FLOAT:
811                 if (!ir_value_set_float(v, self->constval.vfloat))
812                     goto error;
813                 break;
814             case TYPE_VECTOR:
815                 if (!ir_value_set_vector(v, self->constval.vvec))
816                     goto error;
817                 break;
818             case TYPE_STRING:
819                 if (!ir_value_set_string(v, self->constval.vstring))
820                     goto error;
821                 break;
822             case TYPE_FUNCTION:
823                 asterror(ast_ctx(self), "global of type function not properly generated\n");
824                 goto error;
825                 /* Cannot generate an IR value for a function,
826                  * need a pointer pointing to a function rather.
827                  */
828             default:
829                 asterror(ast_ctx(self), "TODO: global constant type %i\n", self->expression.vtype);
830                 break;
831         }
832     }
833
834     /* link us to the ir_value */
835     self->ir_v = v;
836     return true;
837
838 error: /* clean up */
839     ir_value_delete(v);
840     return false;
841 }
842
843 bool ast_local_codegen(ast_value *self, ir_function *func, bool param)
844 {
845     ir_value *v = NULL;
846     if (self->isconst && self->expression.vtype == TYPE_FUNCTION)
847     {
848         /* Do we allow local functions? I think not...
849          * this is NOT a function pointer atm.
850          */
851         return false;
852     }
853
854     v = ir_function_create_local(func, self->name, self->expression.vtype, param);
855     if (!v)
856         return false;
857     v->context = ast_ctx(self);
858
859     /* A constant local... hmmm...
860      * I suppose the IR will have to deal with this
861      */
862     if (self->isconst) {
863         switch (self->expression.vtype)
864         {
865             case TYPE_FLOAT:
866                 if (!ir_value_set_float(v, self->constval.vfloat))
867                     goto error;
868                 break;
869             case TYPE_VECTOR:
870                 if (!ir_value_set_vector(v, self->constval.vvec))
871                     goto error;
872                 break;
873             case TYPE_STRING:
874                 if (!ir_value_set_string(v, self->constval.vstring))
875                     goto error;
876                 break;
877             default:
878                 asterror(ast_ctx(self), "TODO: global constant type %i\n", self->expression.vtype);
879                 break;
880         }
881     }
882
883     /* link us to the ir_value */
884     self->ir_v = v;
885     return true;
886
887 error: /* clean up */
888     ir_value_delete(v);
889     return false;
890 }
891
892 bool ast_function_codegen(ast_function *self, ir_builder *ir)
893 {
894     ir_function *irf;
895     ir_value    *dummy;
896     ast_expression_common *ec;
897     size_t    i;
898
899     irf = self->ir_func;
900     if (!irf) {
901         asterror(ast_ctx(self), "ast_function's related ast_value was not generated yet\n");
902         return false;
903     }
904
905     /* fill the parameter list */
906     ec = &self->vtype->expression;
907     for (i = 0; i < ec->params_count; ++i)
908     {
909         if (!ir_function_params_add(irf, ec->params[i]->expression.vtype))
910             return false;
911         if (!self->builtin) {
912             if (!ast_local_codegen(ec->params[i], self->ir_func, true))
913                 return false;
914         }
915     }
916
917     if (self->builtin) {
918         irf->builtin = self->builtin;
919         return true;
920     }
921
922     if (!self->blocks_count) {
923         asterror(ast_ctx(self), "function `%s` has no body", self->name);
924         return false;
925     }
926
927     self->curblock = ir_function_create_block(irf, "entry");
928     if (!self->curblock)
929         return false;
930
931     for (i = 0; i < self->blocks_count; ++i) {
932         ast_expression_codegen *gen = self->blocks[i]->expression.codegen;
933         if (!(*gen)((ast_expression*)self->blocks[i], self, false, &dummy))
934             return false;
935     }
936
937     /* TODO: check return types */
938     if (!self->curblock->is_return)
939     {
940         return ir_block_create_return(self->curblock, NULL);
941         /* From now on the parser has to handle this situation */
942 #if 0
943         if (!self->vtype->expression.next ||
944             self->vtype->expression.next->expression.vtype == TYPE_VOID)
945         {
946             return ir_block_create_return(self->curblock, NULL);
947         }
948         else
949         {
950             /* error("missing return"); */
951             asterror(ast_ctx(self), "function `%s` missing return value", self->name);
952             return false;
953         }
954 #endif
955     }
956     return true;
957 }
958
959 /* Note, you will not see ast_block_codegen generate ir_blocks.
960  * To the AST and the IR, blocks are 2 different things.
961  * In the AST it represents a block of code, usually enclosed in
962  * curly braces {...}.
963  * While in the IR it represents a block in terms of control-flow.
964  */
965 bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_value **out)
966 {
967     size_t i;
968
969     /* We don't use this
970      * Note: an ast-representation using the comma-operator
971      * of the form: (a, b, c) = x should not assign to c...
972      */
973     (void)lvalue;
974     if (self->expression.outr) {
975         *out = self->expression.outr;
976         return true;
977     }
978
979     /* output is NULL at first, we'll have each expression
980      * assign to out output, thus, a comma-operator represention
981      * using an ast_block will return the last generated value,
982      * so: (b, c) + a  executed both b and c, and returns c,
983      * which is then added to a.
984      */
985     *out = NULL;
986
987     /* generate locals */
988     for (i = 0; i < self->locals_count; ++i)
989     {
990         if (!ast_local_codegen(self->locals[i], func->ir_func, false))
991             return false;
992     }
993
994     for (i = 0; i < self->exprs_count; ++i)
995     {
996         ast_expression_codegen *gen = self->exprs[i]->expression.codegen;
997         if (!(*gen)(self->exprs[i], func, false, out))
998             return false;
999     }
1000
1001     self->expression.outr = *out;
1002
1003     return true;
1004 }
1005
1006 bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
1007 {
1008     ast_expression_codegen *cgen;
1009     ir_value *left, *right;
1010
1011     if (lvalue && self->expression.outl) {
1012         *out = self->expression.outl;
1013         return true;
1014     }
1015
1016     if (!lvalue && self->expression.outr) {
1017         *out = self->expression.outr;
1018         return true;
1019     }
1020
1021     cgen = self->dest->expression.codegen;
1022     /* lvalue! */
1023     if (!(*cgen)((ast_expression*)(self->dest), func, true, &left))
1024         return false;
1025     self->expression.outl = left;
1026
1027     cgen = self->source->expression.codegen;
1028     /* rvalue! */
1029     if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
1030         return false;
1031
1032     if (!ir_block_create_store_op(func->curblock, self->op, left, right))
1033         return false;
1034     self->expression.outr = right;
1035
1036     /* Theoretically, an assinment returns its left side as an
1037      * lvalue, if we don't need an lvalue though, we return
1038      * the right side as an rvalue, otherwise we have to
1039      * somehow know whether or not we need to dereference the pointer
1040      * on the left side - that is: OP_LOAD if it was an address.
1041      * Also: in original QC we cannot OP_LOADP *anyway*.
1042      */
1043     *out = (lvalue ? left : right);
1044
1045     return true;
1046 }
1047
1048 bool ast_binary_codegen(ast_binary *self, ast_function *func, bool lvalue, ir_value **out)
1049 {
1050     ast_expression_codegen *cgen;
1051     ir_value *left, *right;
1052
1053     /* In the context of a binary operation, we can disregard
1054      * the lvalue flag.
1055      */
1056     (void)lvalue;
1057     if (self->expression.outr) {
1058         *out = self->expression.outr;
1059         return true;
1060     }
1061
1062     cgen = self->left->expression.codegen;
1063     /* lvalue! */
1064     if (!(*cgen)((ast_expression*)(self->left), func, false, &left))
1065         return false;
1066
1067     cgen = self->right->expression.codegen;
1068     /* rvalue! */
1069     if (!(*cgen)((ast_expression*)(self->right), func, false, &right))
1070         return false;
1071
1072     *out = ir_block_create_binop(func->curblock, ast_function_label(func, "bin"),
1073                                  self->op, left, right);
1074     if (!*out)
1075         return false;
1076     self->expression.outr = *out;
1077
1078     return true;
1079 }
1080
1081 bool ast_binstore_codegen(ast_binstore *self, ast_function *func, bool lvalue, ir_value **out)
1082 {
1083     ast_expression_codegen *cgen;
1084     ir_value *leftl, *leftr, *right, *bin;
1085
1086     if (lvalue && self->expression.outl) {
1087         *out = self->expression.outl;
1088         return true;
1089     }
1090
1091     if (!lvalue && self->expression.outr) {
1092         *out = self->expression.outr;
1093         return true;
1094     }
1095
1096     /* for a binstore we need both an lvalue and an rvalue for the left side */
1097     /* rvalue of destination! */
1098     cgen = self->dest->expression.codegen;
1099     if (!(*cgen)((ast_expression*)(self->dest), func, false, &leftr))
1100         return false;
1101
1102     /* source as rvalue only */
1103     cgen = self->source->expression.codegen;
1104     if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
1105         return false;
1106
1107     /* now the binary */
1108     bin = ir_block_create_binop(func->curblock, ast_function_label(func, "binst"),
1109                                 self->opbin, leftr, right);
1110     self->expression.outr = bin;
1111
1112     /* now store them */
1113     cgen = self->dest->expression.codegen;
1114     /* lvalue of destination */
1115     if (!(*cgen)((ast_expression*)(self->dest), func, true, &leftl))
1116         return false;
1117     self->expression.outl = leftl;
1118
1119     if (!ir_block_create_store_op(func->curblock, self->opstore, leftl, bin))
1120         return false;
1121     self->expression.outr = bin;
1122
1123     /* Theoretically, an assinment returns its left side as an
1124      * lvalue, if we don't need an lvalue though, we return
1125      * the right side as an rvalue, otherwise we have to
1126      * somehow know whether or not we need to dereference the pointer
1127      * on the left side - that is: OP_LOAD if it was an address.
1128      * Also: in original QC we cannot OP_LOADP *anyway*.
1129      */
1130     *out = (lvalue ? leftl : bin);
1131
1132     return true;
1133 }
1134
1135 bool ast_unary_codegen(ast_unary *self, ast_function *func, bool lvalue, ir_value **out)
1136 {
1137     ast_expression_codegen *cgen;
1138     ir_value *operand;
1139
1140     /* In the context of a unary operation, we can disregard
1141      * the lvalue flag.
1142      */
1143     (void)lvalue;
1144     if (self->expression.outr) {
1145         *out = self->expression.outr;
1146         return true;
1147     }
1148
1149     cgen = self->operand->expression.codegen;
1150     /* lvalue! */
1151     if (!(*cgen)((ast_expression*)(self->operand), func, false, &operand))
1152         return false;
1153
1154     *out = ir_block_create_unary(func->curblock, ast_function_label(func, "unary"),
1155                                  self->op, operand);
1156     if (!*out)
1157         return false;
1158     self->expression.outr = *out;
1159
1160     return true;
1161 }
1162
1163 bool ast_return_codegen(ast_return *self, ast_function *func, bool lvalue, ir_value **out)
1164 {
1165     ast_expression_codegen *cgen;
1166     ir_value *operand;
1167
1168     /* In the context of a return operation, we can disregard
1169      * the lvalue flag.
1170      */
1171     (void)lvalue;
1172     if (self->expression.outr) {
1173         asterror(ast_ctx(self), "internal error: ast_return cannot be reused, it bears no result!\n");
1174         return false;
1175     }
1176     self->expression.outr = (ir_value*)1;
1177
1178     if (self->operand) {
1179         cgen = self->operand->expression.codegen;
1180         /* lvalue! */
1181         if (!(*cgen)((ast_expression*)(self->operand), func, false, &operand))
1182             return false;
1183
1184         if (!ir_block_create_return(func->curblock, operand))
1185             return false;
1186     } else {
1187         if (!ir_block_create_return(func->curblock, NULL))
1188             return false;
1189     }
1190
1191     return true;
1192 }
1193
1194 bool ast_entfield_codegen(ast_entfield *self, ast_function *func, bool lvalue, ir_value **out)
1195 {
1196     ast_expression_codegen *cgen;
1197     ir_value *ent, *field;
1198
1199     /* This function needs to take the 'lvalue' flag into account!
1200      * As lvalue we provide a field-pointer, as rvalue we provide the
1201      * value in a temp.
1202      */
1203
1204     if (lvalue && self->expression.outl) {
1205         *out = self->expression.outl;
1206         return true;
1207     }
1208
1209     if (!lvalue && self->expression.outr) {
1210         *out = self->expression.outr;
1211         return true;
1212     }
1213
1214     cgen = self->entity->expression.codegen;
1215     if (!(*cgen)((ast_expression*)(self->entity), func, false, &ent))
1216         return false;
1217
1218     cgen = self->field->expression.codegen;
1219     if (!(*cgen)((ast_expression*)(self->field), func, false, &field))
1220         return false;
1221
1222     if (lvalue) {
1223         /* address! */
1224         *out = ir_block_create_fieldaddress(func->curblock, ast_function_label(func, "efa"),
1225                                             ent, field);
1226     } else {
1227         *out = ir_block_create_load_from_ent(func->curblock, ast_function_label(func, "efv"),
1228                                              ent, field, self->expression.vtype);
1229     }
1230     if (!*out) {
1231         asterror(ast_ctx(self), "failed to create %s instruction (output type %s)",
1232                  (lvalue ? "ADDRESS" : "FIELD"),
1233                  type_name[self->expression.vtype]);
1234         return false;
1235     }
1236
1237     if (lvalue)
1238         self->expression.outl = *out;
1239     else
1240         self->expression.outr = *out;
1241
1242     /* Hm that should be it... */
1243     return true;
1244 }
1245
1246 bool ast_member_codegen(ast_member *self, ast_function *func, bool lvalue, ir_value **out)
1247 {
1248     ast_expression_codegen *cgen;
1249     ir_value *vec;
1250
1251     /* in QC this is always an lvalue */
1252     (void)lvalue;
1253     if (self->expression.outl) {
1254         *out = self->expression.outl;
1255         return true;
1256     }
1257
1258     cgen = self->owner->expression.codegen;
1259     if (!(*cgen)((ast_expression*)(self->owner), func, true, &vec))
1260         return false;
1261
1262     if (vec->vtype != TYPE_VECTOR &&
1263         !(vec->vtype == TYPE_FIELD && self->owner->expression.next->expression.vtype == TYPE_VECTOR))
1264     {
1265         return false;
1266     }
1267
1268     *out = ir_value_vector_member(vec, self->field);
1269     self->expression.outl = *out;
1270
1271     return (*out != NULL);
1272 }
1273
1274 bool ast_ifthen_codegen(ast_ifthen *self, ast_function *func, bool lvalue, ir_value **out)
1275 {
1276     ast_expression_codegen *cgen;
1277
1278     ir_value *condval;
1279     ir_value *dummy;
1280
1281     ir_block *cond = func->curblock;
1282     ir_block *ontrue;
1283     ir_block *onfalse;
1284     ir_block *ontrue_endblock;
1285     ir_block *onfalse_endblock;
1286     ir_block *merge;
1287
1288     /* We don't output any value, thus also don't care about r/lvalue */
1289     (void)out;
1290     (void)lvalue;
1291
1292     if (self->expression.outr) {
1293         asterror(ast_ctx(self), "internal error: ast_ifthen cannot be reused, it bears no result!\n");
1294         return false;
1295     }
1296     self->expression.outr = (ir_value*)1;
1297
1298     /* generate the condition */
1299     func->curblock = cond;
1300     cgen = self->cond->expression.codegen;
1301     if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
1302         return false;
1303
1304     /* on-true path */
1305
1306     if (self->on_true) {
1307         /* create on-true block */
1308         ontrue = ir_function_create_block(func->ir_func, ast_function_label(func, "ontrue"));
1309         if (!ontrue)
1310             return false;
1311
1312         /* enter the block */
1313         func->curblock = ontrue;
1314
1315         /* generate */
1316         cgen = self->on_true->expression.codegen;
1317         if (!(*cgen)((ast_expression*)(self->on_true), func, false, &dummy))
1318             return false;
1319
1320         /* we now need to work from the current endpoint */
1321         ontrue_endblock = func->curblock;
1322     } else
1323         ontrue = NULL;
1324
1325     /* on-false path */
1326     if (self->on_false) {
1327         /* create on-false block */
1328         onfalse = ir_function_create_block(func->ir_func, ast_function_label(func, "onfalse"));
1329         if (!onfalse)
1330             return false;
1331
1332         /* enter the block */
1333         func->curblock = onfalse;
1334
1335         /* generate */
1336         cgen = self->on_false->expression.codegen;
1337         if (!(*cgen)((ast_expression*)(self->on_false), func, false, &dummy))
1338             return false;
1339
1340         /* we now need to work from the current endpoint */
1341         onfalse_endblock = func->curblock;
1342     } else
1343         onfalse = NULL;
1344
1345     /* Merge block were they all merge in to */
1346     merge = ir_function_create_block(func->ir_func, ast_function_label(func, "endif"));
1347     if (!merge)
1348         return false;
1349
1350     /* add jumps ot the merge block */
1351     if (ontrue && !ontrue_endblock->final && !ir_block_create_jump(ontrue_endblock, merge))
1352         return false;
1353     if (onfalse && !onfalse_endblock->final && !ir_block_create_jump(onfalse_endblock, merge))
1354         return false;
1355
1356     /* we create the if here, that way all blocks are ordered :)
1357      */
1358     if (!ir_block_create_if(cond, condval,
1359                             (ontrue  ? ontrue  : merge),
1360                             (onfalse ? onfalse : merge)))
1361     {
1362         return false;
1363     }
1364
1365     /* Now enter the merge block */
1366     func->curblock = merge;
1367
1368     return true;
1369 }
1370
1371 bool ast_ternary_codegen(ast_ternary *self, ast_function *func, bool lvalue, ir_value **out)
1372 {
1373     ast_expression_codegen *cgen;
1374
1375     ir_value *condval;
1376     ir_value *trueval, *falseval;
1377     ir_instr *phi;
1378
1379     ir_block *cond = func->curblock;
1380     ir_block *ontrue;
1381     ir_block *onfalse;
1382     ir_block *merge;
1383
1384     /* Ternary can never create an lvalue... */
1385     if (lvalue)
1386         return false;
1387
1388     /* In theory it shouldn't be possible to pass through a node twice, but
1389      * in case we add any kind of optimization pass for the AST itself, it
1390      * may still happen, thus we remember a created ir_value and simply return one
1391      * if it already exists.
1392      */
1393     if (self->phi_out) {
1394         *out = self->phi_out;
1395         return true;
1396     }
1397
1398     /* In the following, contraty to ast_ifthen, we assume both paths exist. */
1399
1400     /* generate the condition */
1401     func->curblock = cond;
1402     cgen = self->cond->expression.codegen;
1403     if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
1404         return false;
1405
1406     /* create on-true block */
1407     ontrue = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_T"));
1408     if (!ontrue)
1409         return false;
1410     else
1411     {
1412         /* enter the block */
1413         func->curblock = ontrue;
1414
1415         /* generate */
1416         cgen = self->on_true->expression.codegen;
1417         if (!(*cgen)((ast_expression*)(self->on_true), func, false, &trueval))
1418             return false;
1419     }
1420
1421     /* create on-false block */
1422     onfalse = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_F"));
1423     if (!onfalse)
1424         return false;
1425     else
1426     {
1427         /* enter the block */
1428         func->curblock = onfalse;
1429
1430         /* generate */
1431         cgen = self->on_false->expression.codegen;
1432         if (!(*cgen)((ast_expression*)(self->on_false), func, false, &falseval))
1433             return false;
1434     }
1435
1436     /* create merge block */
1437     merge = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_out"));
1438     if (!merge)
1439         return false;
1440     /* jump to merge block */
1441     if (!ir_block_create_jump(ontrue, merge))
1442         return false;
1443     if (!ir_block_create_jump(onfalse, merge))
1444         return false;
1445
1446     /* create if instruction */
1447     if (!ir_block_create_if(cond, condval, ontrue, onfalse))
1448         return false;
1449
1450     /* Now enter the merge block */
1451     func->curblock = merge;
1452
1453     /* Here, now, we need a PHI node
1454      * but first some sanity checking...
1455      */
1456     if (trueval->vtype != falseval->vtype) {
1457         /* error("ternary with different types on the two sides"); */
1458         return false;
1459     }
1460
1461     /* create PHI */
1462     phi = ir_block_create_phi(merge, ast_function_label(func, "phi"), trueval->vtype);
1463     if (!phi ||
1464         !ir_phi_add(phi, ontrue,  trueval) ||
1465         !ir_phi_add(phi, onfalse, falseval))
1466     {
1467         return false;
1468     }
1469
1470     self->phi_out = ir_phi_value(phi);
1471     *out = self->phi_out;
1472
1473     return true;
1474 }
1475
1476 bool ast_loop_codegen(ast_loop *self, ast_function *func, bool lvalue, ir_value **out)
1477 {
1478     ast_expression_codegen *cgen;
1479
1480     ir_value *dummy      = NULL;
1481     ir_value *precond    = NULL;
1482     ir_value *postcond   = NULL;
1483
1484     /* Since we insert some jumps "late" so we have blocks
1485      * ordered "nicely", we need to keep track of the actual end-blocks
1486      * of expressions to add the jumps to.
1487      */
1488     ir_block *bbody      = NULL, *end_bbody      = NULL;
1489     ir_block *bprecond   = NULL, *end_bprecond   = NULL;
1490     ir_block *bpostcond  = NULL, *end_bpostcond  = NULL;
1491     ir_block *bincrement = NULL, *end_bincrement = NULL;
1492     ir_block *bout       = NULL, *bin            = NULL;
1493
1494     /* let's at least move the outgoing block to the end */
1495     size_t    bout_id;
1496
1497     /* 'break' and 'continue' need to be able to find the right blocks */
1498     ir_block *bcontinue     = NULL;
1499     ir_block *bbreak        = NULL;
1500
1501     ir_block *old_bcontinue = NULL;
1502     ir_block *old_bbreak    = NULL;
1503
1504     ir_block *tmpblock      = NULL;
1505
1506     (void)lvalue;
1507     (void)out;
1508
1509     if (self->expression.outr) {
1510         asterror(ast_ctx(self), "internal error: ast_loop cannot be reused, it bears no result!\n");
1511         return false;
1512     }
1513     self->expression.outr = (ir_value*)1;
1514
1515     /* NOTE:
1516      * Should we ever need some kind of block ordering, better make this function
1517      * move blocks around than write a block ordering algorithm later... after all
1518      * the ast and ir should work together, not against each other.
1519      */
1520
1521     /* initexpr doesn't get its own block, it's pointless, it could create more blocks
1522      * anyway if for example it contains a ternary.
1523      */
1524     if (self->initexpr)
1525     {
1526         cgen = self->initexpr->expression.codegen;
1527         if (!(*cgen)((ast_expression*)(self->initexpr), func, false, &dummy))
1528             return false;
1529     }
1530
1531     /* Store the block from which we enter this chaos */
1532     bin = func->curblock;
1533
1534     /* The pre-loop condition needs its own block since we
1535      * need to be able to jump to the start of that expression.
1536      */
1537     if (self->precond)
1538     {
1539         bprecond = ir_function_create_block(func->ir_func, ast_function_label(func, "pre_loop_cond"));
1540         if (!bprecond)
1541             return false;
1542
1543         /* the pre-loop-condition the least important place to 'continue' at */
1544         bcontinue = bprecond;
1545
1546         /* enter */
1547         func->curblock = bprecond;
1548
1549         /* generate */
1550         cgen = self->precond->expression.codegen;
1551         if (!(*cgen)((ast_expression*)(self->precond), func, false, &precond))
1552             return false;
1553
1554         end_bprecond = func->curblock;
1555     } else {
1556         bprecond = end_bprecond = NULL;
1557     }
1558
1559     /* Now the next blocks won't be ordered nicely, but we need to
1560      * generate them this early for 'break' and 'continue'.
1561      */
1562     if (self->increment) {
1563         bincrement = ir_function_create_block(func->ir_func, ast_function_label(func, "loop_increment"));
1564         if (!bincrement)
1565             return false;
1566         bcontinue = bincrement; /* increment comes before the pre-loop-condition */
1567     } else {
1568         bincrement = end_bincrement = NULL;
1569     }
1570
1571     if (self->postcond) {
1572         bpostcond = ir_function_create_block(func->ir_func, ast_function_label(func, "post_loop_cond"));
1573         if (!bpostcond)
1574             return false;
1575         bcontinue = bpostcond; /* postcond comes before the increment */
1576     } else {
1577         bpostcond = end_bpostcond = NULL;
1578     }
1579
1580     bout_id = func->ir_func->blocks_count;
1581     bout = ir_function_create_block(func->ir_func, ast_function_label(func, "after_loop"));
1582     if (!bout)
1583         return false;
1584     bbreak = bout;
1585
1586     /* The loop body... */
1587     if (self->body)
1588     {
1589         bbody = ir_function_create_block(func->ir_func, ast_function_label(func, "loop_body"));
1590         if (!bbody)
1591             return false;
1592
1593         /* enter */
1594         func->curblock = bbody;
1595
1596         old_bbreak          = func->breakblock;
1597         old_bcontinue       = func->continueblock;
1598         func->breakblock    = bbreak;
1599         func->continueblock = bcontinue;
1600
1601         /* generate */
1602         cgen = self->body->expression.codegen;
1603         if (!(*cgen)((ast_expression*)(self->body), func, false, &dummy))
1604             return false;
1605
1606         end_bbody = func->curblock;
1607         func->breakblock    = old_bbreak;
1608         func->continueblock = old_bcontinue;
1609     }
1610
1611     /* post-loop-condition */
1612     if (self->postcond)
1613     {
1614         /* enter */
1615         func->curblock = bpostcond;
1616
1617         /* generate */
1618         cgen = self->postcond->expression.codegen;
1619         if (!(*cgen)((ast_expression*)(self->postcond), func, false, &postcond))
1620             return false;
1621
1622         end_bpostcond = func->curblock;
1623     }
1624
1625     /* The incrementor */
1626     if (self->increment)
1627     {
1628         /* enter */
1629         func->curblock = bincrement;
1630
1631         /* generate */
1632         cgen = self->increment->expression.codegen;
1633         if (!(*cgen)((ast_expression*)(self->increment), func, false, &dummy))
1634             return false;
1635
1636         end_bincrement = func->curblock;
1637     }
1638
1639     /* In any case now, we continue from the outgoing block */
1640     func->curblock = bout;
1641
1642     /* Now all blocks are in place */
1643     /* From 'bin' we jump to whatever comes first */
1644     if      (bprecond)   tmpblock = bprecond;
1645     else if (bbody)      tmpblock = bbody;
1646     else if (bpostcond)  tmpblock = bpostcond;
1647     else                 tmpblock = bout;
1648     if (!ir_block_create_jump(bin, tmpblock))
1649         return false;
1650
1651     /* From precond */
1652     if (bprecond)
1653     {
1654         ir_block *ontrue, *onfalse;
1655         if      (bbody)      ontrue = bbody;
1656         else if (bincrement) ontrue = bincrement;
1657         else if (bpostcond)  ontrue = bpostcond;
1658         else                 ontrue = bprecond;
1659         onfalse = bout;
1660         if (!ir_block_create_if(end_bprecond, precond, ontrue, onfalse))
1661             return false;
1662     }
1663
1664     /* from body */
1665     if (bbody)
1666     {
1667         if      (bincrement) tmpblock = bincrement;
1668         else if (bpostcond)  tmpblock = bpostcond;
1669         else if (bprecond)   tmpblock = bprecond;
1670         else                 tmpblock = bout;
1671         if (!end_bbody->final && !ir_block_create_jump(end_bbody, tmpblock))
1672             return false;
1673     }
1674
1675     /* from increment */
1676     if (bincrement)
1677     {
1678         if      (bpostcond)  tmpblock = bpostcond;
1679         else if (bprecond)   tmpblock = bprecond;
1680         else if (bbody)      tmpblock = bbody;
1681         else                 tmpblock = bout;
1682         if (!ir_block_create_jump(end_bincrement, tmpblock))
1683             return false;
1684     }
1685
1686     /* from postcond */
1687     if (bpostcond)
1688     {
1689         ir_block *ontrue, *onfalse;
1690         if      (bprecond)   ontrue = bprecond;
1691         else if (bbody)      ontrue = bbody;
1692         else if (bincrement) ontrue = bincrement;
1693         else                 ontrue = bpostcond;
1694         onfalse = bout;
1695         if (!ir_block_create_if(end_bpostcond, postcond, ontrue, onfalse))
1696             return false;
1697     }
1698
1699     /* Move 'bout' to the end */
1700     if (!ir_function_blocks_remove(func->ir_func, bout_id) ||
1701         !ir_function_blocks_add(func->ir_func, bout))
1702     {
1703         ir_block_delete(bout);
1704         return false;
1705     }
1706
1707     return true;
1708 }
1709
1710 bool ast_call_codegen(ast_call *self, ast_function *func, bool lvalue, ir_value **out)
1711 {
1712     ast_expression_codegen *cgen;
1713     ir_value_vector         params;
1714     ir_instr               *callinstr;
1715     size_t i;
1716
1717     ir_value *funval = NULL;
1718
1719     /* return values are never lvalues */
1720     (void)lvalue;
1721
1722     if (self->expression.outr) {
1723         *out = self->expression.outr;
1724         return true;
1725     }
1726
1727     cgen = self->func->expression.codegen;
1728     if (!(*cgen)((ast_expression*)(self->func), func, false, &funval))
1729         return false;
1730     if (!funval)
1731         return false;
1732
1733     MEM_VECTOR_INIT(&params, v);
1734
1735     /* parameters */
1736     for (i = 0; i < self->params_count; ++i)
1737     {
1738         ir_value *param;
1739         ast_expression *expr = self->params[i];
1740
1741         cgen = expr->expression.codegen;
1742         if (!(*cgen)(expr, func, false, &param))
1743             goto error;
1744         if (!param)
1745             goto error;
1746         if (!ir_value_vector_v_add(&params, param))
1747             goto error;
1748     }
1749
1750     callinstr = ir_block_create_call(func->curblock, ast_function_label(func, "call"), funval);
1751     if (!callinstr)
1752         goto error;
1753
1754     for (i = 0; i < params.v_count; ++i) {
1755         if (!ir_call_param(callinstr, params.v[i]))
1756             goto error;
1757     }
1758
1759     *out = ir_call_value(callinstr);
1760     self->expression.outr = *out;
1761
1762     MEM_VECTOR_CLEAR(&params, v);
1763     return true;
1764 error:
1765     MEM_VECTOR_CLEAR(&params, v);
1766     return false;
1767 }