]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.c
reorder ifthen codegen and fix a jump generation where I used ontrue instead of onfalse
[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);                            \
36     ( (ast_node*)self )->node.destroy = (ast_node_delete*)destroyfn
37
38 /* It must not be possible to get here. */
39 static void _ast_node_destroy(ast_node *self)
40 {
41     fprintf(stderr, "ast node missing destroy()\n");
42     abort();
43 }
44
45 /* Initialize main ast node aprts */
46 static void ast_node_init(ast_node *self, lex_ctx ctx)
47 {
48     self->node.context = ctx;
49     self->node.destroy = &_ast_node_destroy;
50     self->node.keep    = false;
51 }
52
53 /* General expression initialization */
54 static void ast_expression_init(ast_expression *self,
55                                 ast_expression_codegen *codegen)
56 {
57     self->expression.codegen = codegen;
58     self->expression.vtype   = TYPE_VOID;
59     self->expression.next    = NULL;
60 }
61
62 static void ast_expression_delete(ast_expression *self)
63 {
64     if (self->expression.next)
65         ast_delete(self->expression.next);
66 }
67
68 static void ast_expression_delete_full(ast_expression *self)
69 {
70     ast_expression_delete(self);
71     mem_d(self);
72 }
73
74 static ast_expression* ast_type_copy(lex_ctx ctx, const ast_expression *ex)
75 {
76     const ast_expression_common *cpex;
77     ast_expression_common *selfex;
78
79     if (!ex)
80         return NULL;
81     else
82     {
83         ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
84
85         cpex   = &ex->expression;
86         selfex = &self->expression;
87
88         selfex->vtype = cpex->vtype;
89         if (cpex->next)
90         {
91             selfex->next = ast_type_copy(ctx, cpex->next);
92             if (!selfex->next) {
93                 mem_d(self);
94                 return NULL;
95             }
96         }
97         else
98             selfex->next = NULL;
99
100         /* This may never be codegen()d */
101         selfex->codegen = NULL;
102         return self;
103     }
104 }
105
106 ast_value* ast_value_new(lex_ctx ctx, const char *name, int t)
107 {
108     ast_instantiate(ast_value, ctx, ast_value_delete);
109     ast_expression_init((ast_expression*)self,
110                         (ast_expression_codegen*)&ast_value_codegen);
111     self->expression.node.keep = true; /* keep */
112
113     self->name = name ? util_strdup(name) : NULL;
114     self->expression.vtype = t;
115     self->expression.next  = NULL;
116     MEM_VECTOR_INIT(self, params);
117     self->isconst = false;
118     memset(&self->constval, 0, sizeof(self->constval));
119
120     self->ir_v    = NULL;
121
122     return self;
123 }
124 MEM_VEC_FUNCTIONS(ast_value, ast_value*, params)
125
126 void ast_value_delete(ast_value* self)
127 {
128     size_t i;
129     if (self->name)
130         mem_d((void*)self->name);
131     for (i = 0; i < self->params_count; ++i)
132         ast_value_delete(self->params[i]); /* delete, the ast_function is expected to die first */
133     MEM_VECTOR_CLEAR(self, params);
134     if (self->isconst) {
135         switch (self->expression.vtype)
136         {
137         case TYPE_STRING:
138             mem_d((void*)self->constval.vstring);
139             break;
140         case TYPE_FUNCTION:
141             /* unlink us from the function node */
142             self->constval.vfunc->vtype = NULL;
143             break;
144         /* NOTE: delete function? currently collected in
145          * the parser structure
146          */
147         default:
148             break;
149         }
150     }
151     ast_expression_delete((ast_expression*)self);
152     mem_d(self);
153 }
154
155 bool ast_value_set_name(ast_value *self, const char *name)
156 {
157     if (self->name)
158         mem_d((void*)self->name);
159     self->name = util_strdup(name);
160     return !!self->name;
161 }
162
163 ast_binary* ast_binary_new(lex_ctx ctx, int op,
164                            ast_expression* left, ast_expression* right)
165 {
166     ast_instantiate(ast_binary, ctx, ast_binary_delete);
167     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binary_codegen);
168
169     self->op = op;
170     self->left = left;
171     self->right = right;
172
173     return self;
174 }
175
176 void ast_binary_delete(ast_binary *self)
177 {
178     ast_unref(self->left);
179     ast_unref(self->right);
180     ast_expression_delete((ast_expression*)self);
181     mem_d(self);
182 }
183
184 ast_entfield* ast_entfield_new(lex_ctx ctx, ast_expression *entity, ast_expression *field)
185 {
186     const ast_expression *outtype;
187
188     ast_instantiate(ast_entfield, ctx, ast_entfield_delete);
189
190     if (field->expression.vtype != TYPE_FIELD) {
191         mem_d(self);
192         return NULL;
193     }
194
195     outtype = field->expression.next;
196     if (!outtype) {
197         mem_d(self);
198         /* Error: field has no type... */
199         return NULL;
200     }
201
202     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_entfield_codegen);
203
204     self->expression.vtype = outtype->expression.vtype;
205     self->expression.next  = ast_type_copy(ctx, outtype->expression.next);
206
207     self->entity = entity;
208     self->field  = field;
209
210     return self;
211 }
212
213 void ast_entfield_delete(ast_entfield *self)
214 {
215     ast_unref(self->entity);
216     ast_unref(self->field);
217     ast_expression_delete((ast_expression*)self);
218     mem_d(self);
219 }
220
221 ast_ifthen* ast_ifthen_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
222 {
223     ast_instantiate(ast_ifthen, ctx, ast_ifthen_delete);
224     if (!ontrue && !onfalse) {
225         /* because it is invalid */
226         mem_d(self);
227         return NULL;
228     }
229     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ifthen_codegen);
230
231     self->cond     = cond;
232     self->on_true  = ontrue;
233     self->on_false = onfalse;
234
235     return self;
236 }
237
238 void ast_ifthen_delete(ast_ifthen *self)
239 {
240     ast_unref(self->cond);
241     if (self->on_true)
242         ast_unref(self->on_true);
243     if (self->on_flase)
244         ast_unref(self->on_false);
245     ast_expression_delete((ast_expression*)self);
246     mem_d(self);
247 }
248
249 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
250 {
251     ast_instantiate(ast_ternary, ctx, ast_ternary_delete);
252     /* This time NEITHER must be NULL */
253     if (!ontrue || !onfalse) {
254         mem_d(self);
255         return NULL;
256     }
257     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ternary_codegen);
258
259     self->cond     = cond;
260     self->on_true  = ontrue;
261     self->on_false = onfalse;
262     self->phi_out  = NULL;
263
264     return self;
265 }
266
267 void ast_ternary_delete(ast_ternary *self)
268 {
269     ast_unref(self->cond);
270     ast_unref(self->on_true);
271     ast_unref(self->on_false);
272     ast_expression_delete((ast_expression*)self);
273     mem_d(self);
274 }
275
276 ast_loop* ast_loop_new(lex_ctx ctx,
277                        ast_expression *initexpr,
278                        ast_expression *precond,
279                        ast_expression *postcond,
280                        ast_expression *increment)
281 {
282     ast_instantiate(ast_loop, ctx, ast_loop_delete);
283     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_loop_codegen);
284
285     self->initexpr  = initexpr;
286     self->precond   = precond;
287     self->postcond  = postcond;
288     self->increment = increment;
289
290     return self;
291 }
292
293 void ast_loop_delete(ast_loop *self)
294 {
295     if (self->initexpr)
296         ast_unref(self->initexpr);
297     if (self->precond)
298         ast_unref(self->precond);
299     if (self->postcond)
300         ast_unref(self->postcond);
301     if (self->increment)
302         ast_unref(self->increment);
303     ast_expression_delete((ast_expression*)self);
304     mem_d(self);
305 }
306
307 ast_store* ast_store_new(lex_ctx ctx, int op,
308                          ast_value *dest, ast_expression *source)
309 {
310     ast_instantiate(ast_store, ctx, ast_store_delete);
311     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_store_codegen);
312
313     self->op = op;
314     self->dest = dest;
315     self->source = source;
316
317     return self;
318 }
319
320 void ast_store_delete(ast_store *self)
321 {
322     ast_unref(self->dest);
323     ast_unref(self->source);
324     ast_expression_delete((ast_expression*)self);
325     mem_d(self);
326 }
327
328 ast_block* ast_block_new(lex_ctx ctx)
329 {
330     ast_instantiate(ast_block, ctx, ast_block_delete);
331     ast_expression_init((ast_expression*)self,
332                         (ast_expression_codegen*)&ast_block_codegen);
333
334     MEM_VECTOR_INIT(self, locals);
335     MEM_VECTOR_INIT(self, exprs);
336
337     return self;
338 }
339 MEM_VEC_FUNCTIONS(ast_block, ast_value*, locals)
340 MEM_VEC_FUNCTIONS(ast_block, ast_expression*, exprs)
341
342 void ast_block_delete(ast_block *self)
343 {
344     size_t i;
345     for (i = 0; i < self->exprs_count; ++i)
346         ast_unref(self->exprs[i]);
347     MEM_VECTOR_CLEAR(self, exprs);
348     for (i = 0; i < self->locals_count; ++i)
349         ast_delete(self->locals[i]);
350     MEM_VECTOR_CLEAR(self, locals);
351     ast_expression_delete((ast_expression*)self);
352     mem_d(self);
353 }
354
355 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype)
356 {
357     ast_instantiate(ast_function, ctx, ast_function_delete);
358
359     if (!vtype ||
360         vtype->isconst ||
361         vtype->expression.vtype != TYPE_FUNCTION)
362     {
363         mem_d(self);
364         return NULL;
365     }
366
367     self->vtype = vtype;
368     self->name = name ? util_strdup(name) : NULL;
369     MEM_VECTOR_INIT(self, blocks);
370
371     self->labelcount = 0;
372
373     self->ir_func = NULL;
374     self->curblock = NULL;
375
376     vtype->isconst = true;
377     vtype->constval.vfunc = self;
378
379     return self;
380 }
381
382 MEM_VEC_FUNCTIONS(ast_function, ast_block*, blocks)
383
384 void ast_function_delete(ast_function *self)
385 {
386     size_t i;
387     if (self->name)
388         mem_d((void*)self->name);
389     if (self->vtype) {
390         /* ast_value_delete(self->vtype); */
391         self->vtype->isconst = false;
392         self->vtype->constval.vfunc = NULL;
393         /* We use unref - if it was stored in a global table it is supposed
394          * to be deleted from *there*
395          */
396         ast_unref(self->vtype);
397     }
398     for (i = 0; i < self->blocks_count; ++i)
399         ast_delete(self->blocks[i]);
400     MEM_VECTOR_CLEAR(self, blocks);
401     mem_d(self);
402 }
403
404 static void ast_util_hexitoa(char *buf, size_t size, unsigned int num)
405 {
406     unsigned int base = 10;
407 #define checknul() do { if (size == 1) { *buf = 0; return; } } while (0)
408 #define addch(x) do { *buf++ = (x); --size; checknul(); } while (0)
409     if (size < 1)
410         return;
411     checknul();
412     if (!num)
413         addch('0');
414     else {
415         while (num)
416         {
417             int digit = num % base;
418             num /= base;
419             addch('0' + digit);
420         }
421     }
422
423     *buf = 0;
424 #undef addch
425 #undef checknul
426 }
427
428 const char* ast_function_label(ast_function *self, const char *prefix)
429 {
430     size_t id = (self->labelcount++);
431     size_t len = strlen(prefix);
432     strncpy(self->labelbuf, prefix, sizeof(self->labelbuf));
433     ast_util_hexitoa(self->labelbuf + len, sizeof(self->labelbuf)-len, id);
434     return self->labelbuf;
435 }
436
437 /*********************************************************************/
438 /* AST codegen part
439  * by convention you must never pass NULL to the 'ir_value **out'
440  * parameter. If you really don't care about the output, pass a dummy.
441  * But I can't imagine a pituation where the output is truly unnecessary.
442  */
443
444 bool ast_value_codegen(ast_value *self, ast_function *func, bool lvalue, ir_value **out)
445 {
446     /* NOTE: This is the codegen for a variable used in an expression.
447      * It is not the codegen to generate the value. For this purpose,
448      * ast_local_codegen and ast_global_codegen are to be used before this
449      * is executed. ast_function_codegen should take care of its locals,
450      * and the ast-user should take care of ast_global_codegen to be used
451      * on all the globals.
452      */
453     if (!self->ir_v)
454         return false;
455     *out = self->ir_v;
456     return true;
457 }
458
459 bool ast_global_codegen(ast_value *self, ir_builder *ir)
460 {
461     ir_value *v = NULL;
462     if (self->isconst && self->expression.vtype == TYPE_FUNCTION)
463     {
464         ir_function *func = ir_builder_create_function(ir, self->name);
465         if (!func)
466             return false;
467
468         self->constval.vfunc->ir_func = func;
469         /* The function is filled later on ast_function_codegen... */
470         return true;
471     }
472
473     v = ir_builder_create_global(ir, self->name, self->expression.vtype);
474     if (!v)
475         return false;
476
477     if (self->isconst) {
478         switch (self->expression.vtype)
479         {
480             case TYPE_FLOAT:
481                 if (!ir_value_set_float(v, self->constval.vfloat))
482                     goto error;
483                 break;
484             case TYPE_VECTOR:
485                 if (!ir_value_set_vector(v, self->constval.vvec))
486                     goto error;
487                 break;
488             case TYPE_STRING:
489                 if (!ir_value_set_string(v, self->constval.vstring))
490                     goto error;
491                 break;
492             case TYPE_FUNCTION:
493                 /* Cannot generate an IR value for a function,
494                  * need a pointer pointing to a function rather.
495                  */
496                 goto error;
497             default:
498                 printf("TODO: global constant type %i\n", self->expression.vtype);
499                 break;
500         }
501     }
502
503     /* link us to the ir_value */
504     self->ir_v = v;
505     return true;
506
507 error: /* clean up */
508     ir_value_delete(v);
509     return false;
510 }
511
512 bool ast_local_codegen(ast_value *self, ir_function *func)
513 {
514     ir_value *v = NULL;
515     if (self->isconst && self->expression.vtype == TYPE_FUNCTION)
516     {
517         /* Do we allow local functions? I think not...
518          * this is NOT a function pointer atm.
519          */
520         return false;
521     }
522
523     v = ir_function_create_local(func, self->name, self->expression.vtype);
524     if (!v)
525         return false;
526
527     /* A constant local... hmmm...
528      * I suppose the IR will have to deal with this
529      */
530     if (self->isconst) {
531         switch (self->expression.vtype)
532         {
533             case TYPE_FLOAT:
534                 if (!ir_value_set_float(v, self->constval.vfloat))
535                     goto error;
536                 break;
537             case TYPE_VECTOR:
538                 if (!ir_value_set_vector(v, self->constval.vvec))
539                     goto error;
540                 break;
541             case TYPE_STRING:
542                 if (!ir_value_set_string(v, self->constval.vstring))
543                     goto error;
544                 break;
545             default:
546                 printf("TODO: global constant type %i\n", self->expression.vtype);
547                 break;
548         }
549     }
550
551     /* link us to the ir_value */
552     self->ir_v = v;
553     return true;
554
555 error: /* clean up */
556     ir_value_delete(v);
557     return false;
558 }
559
560 bool ast_function_codegen(ast_function *self, ir_builder *ir)
561 {
562     ir_function *irf;
563     ir_value    *dummy;
564     size_t    i;
565
566     irf = self->ir_func;
567     if (!irf) {
568         printf("ast_function's related ast_value was not generated yet\n");
569         return false;
570     }
571
572     self->curblock = ir_function_create_block(irf, "entry");
573     if (!self->curblock)
574         return false;
575
576     for (i = 0; i < self->blocks_count; ++i) {
577         ast_expression_codegen *gen = self->blocks[i]->expression.codegen;
578         if (!(*gen)((ast_expression*)self->blocks[i], self, false, &dummy))
579             return false;
580     }
581
582     /* TODO: check return types */
583     if (!self->curblock->is_return)
584     {
585         if (!self->vtype->expression.next ||
586             self->vtype->expression.next->expression.vtype == TYPE_VOID)
587             return ir_block_create_return(self->curblock, NULL);
588         else
589         {
590             /* error("missing return"); */
591             return false;
592         }
593     }
594     return true;
595 }
596
597 /* Note, you will not see ast_block_codegen generate ir_blocks.
598  * To the AST and the IR, blocks are 2 different things.
599  * In the AST it represents a block of code, usually enclosed in
600  * curly braces {...}.
601  * While in the IR it represents a block in terms of control-flow.
602  */
603 bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_value **out)
604 {
605     size_t i;
606
607     /* We don't use this
608      * Note: an ast-representation using the comma-operator
609      * of the form: (a, b, c) = x should not assign to c...
610      */
611     (void)lvalue;
612
613     /* output is NULL at first, we'll have each expression
614      * assign to out output, thus, a comma-operator represention
615      * using an ast_block will return the last generated value,
616      * so: (b, c) + a  executed both b and c, and returns c,
617      * which is then added to a.
618      */
619     *out = NULL;
620
621     /* generate locals */
622     for (i = 0; i < self->locals_count; ++i)
623     {
624         if (!ast_local_codegen(self->locals[i], func->ir_func))
625             return false;
626     }
627
628     for (i = 0; i < self->exprs_count; ++i)
629     {
630         ast_expression_codegen *gen = self->exprs[i]->expression.codegen;
631         if (!(*gen)(self->exprs[i], func, false, out))
632             return false;
633     }
634
635     return true;
636 }
637
638 bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
639 {
640     ast_expression_codegen *cgen;
641     ir_value *left, *right;
642
643     cgen = self->dest->expression.codegen;
644     /* lvalue! */
645     if (!(*cgen)((ast_expression*)(self->dest), func, true, &left))
646         return false;
647
648     cgen = self->source->expression.codegen;
649     /* rvalue! */
650     if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
651         return false;
652
653     if (!ir_block_create_store_op(func->curblock, self->op, left, right))
654         return false;
655
656     /* Theoretically, an assinment returns its left side as an
657      * lvalue, if we don't need an lvalue though, we return
658      * the right side as an rvalue, otherwise we have to
659      * somehow know whether or not we need to dereference the pointer
660      * on the left side - that is: OP_LOAD if it was an address.
661      * Also: in original QC we cannot OP_LOADP *anyway*.
662      */
663     *out = (lvalue ? left : right);
664
665     return true;
666 }
667
668 bool ast_binary_codegen(ast_binary *self, ast_function *func, bool lvalue, ir_value **out)
669 {
670     ast_expression_codegen *cgen;
671     ir_value *left, *right;
672
673     /* In the context of a binary operation, we can disregard
674      * the lvalue flag.
675      */
676      (void)lvalue;
677
678     cgen = self->left->expression.codegen;
679     /* lvalue! */
680     if (!(*cgen)((ast_expression*)(self->left), func, false, &left))
681         return false;
682
683     cgen = self->right->expression.codegen;
684     /* rvalue! */
685     if (!(*cgen)((ast_expression*)(self->right), func, false, &right))
686         return false;
687
688     *out = ir_block_create_binop(func->curblock, ast_function_label(func, "bin"),
689                                  self->op, left, right);
690     if (!*out)
691         return false;
692
693     return true;
694 }
695
696 bool ast_entfield_codegen(ast_entfield *self, ast_function *func, bool lvalue, ir_value **out)
697 {
698     ast_expression_codegen *cgen;
699     ir_value *ent, *field;
700
701     /* This function needs to take the 'lvalue' flag into account!
702      * As lvalue we provide a field-pointer, as rvalue we provide the
703      * value in a temp.
704      */
705
706     cgen = self->entity->expression.codegen;
707     if (!(*cgen)((ast_expression*)(self->entity), func, false, &ent))
708         return false;
709
710     cgen = self->field->expression.codegen;
711     if (!(*cgen)((ast_expression*)(self->field), func, false, &field))
712         return false;
713
714     if (lvalue) {
715         /* address! */
716         *out = ir_block_create_fieldaddress(func->curblock, ast_function_label(func, "efa"),
717                                             ent, field);
718     } else {
719         *out = ir_block_create_load_from_ent(func->curblock, ast_function_label(func, "efv"),
720                                              ent, field, self->expression.vtype);
721     }
722     if (!*out)
723         return false;
724
725     /* Hm that should be it... */
726     return true;
727 }
728
729 bool ast_ifthen_codegen(ast_ifthen *self, ast_function *func, bool lvalue, ir_value **out)
730 {
731     ast_expression_codegen *cgen;
732
733     ir_value *condval;
734     ir_value *dummy;
735
736     ir_block *cond = func->curblock;
737     ir_block *ontrue;
738     ir_block *onfalse;
739     ir_block *merge;
740
741     /* We don't output any value, thus also don't care about r/lvalue */
742     (void)out;
743     (void)lvalue;
744
745     /* generate the condition */
746     func->curblock = cond;
747     cgen = self->cond->expression.codegen;
748     if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
749         return false;
750
751     /* on-true path */
752
753     if (self->on_true) {
754         /* create on-true block */
755         ontrue = ir_function_create_block(func->ir_func, ast_function_label(func, "ontrue"));
756         if (!ontrue)
757             return false;
758
759         /* enter the block */
760         func->curblock = ontrue;
761
762         /* generate */
763         cgen = self->on_true->expression.codegen;
764         if (!(*cgen)((ast_expression*)(self->on_true), func, false, &dummy))
765             return false;
766     } else
767         ontrue = NULL;
768     
769     /* on-false path */
770     if (self->on_false) {
771         /* create on-false block */
772         onfalse = ir_function_create_block(func->ir_func, ast_function_label(func, "onfalse"));
773         if (!onfalse)
774             return false;
775
776         /* enter the block */
777         func->curblock = onfalse;
778
779         /* generate */
780         cgen = self->on_false->expression.codegen;
781         if (!(*cgen)((ast_expression*)(self->on_false), func, false, &dummy))
782             return false;
783     } else
784         onfalse = NULL;
785
786     /* Merge block were they all merge in to */
787     merge = ir_function_create_block(func->ir_func, ast_function_label(func, "endif"));
788     if (!merge)
789         return NULL;
790
791     /* add jumps ot the merge block */
792     if (ontrue && !ir_block_create_jump(ontrue, merge))
793         return false;
794     if (onfalse && !ir_block_create_jump(onfalse, merge))
795         return false;
796
797     /* we create the if here, that way all blocks are ordered :)
798      */
799     if (!ir_block_create_if(cond, condval,
800                             (ontrue  ? ontrue  : merge),
801                             (onfalse ? onfalse : merge)))
802     {
803         return false;
804     }
805
806     /* Now enter the merge block */
807     func->curblock = merge;
808
809     return true;
810 }
811
812 bool ast_ternary_codegen(ast_ternary *self, ast_function *func, bool lvalue, ir_value **out)
813 {
814     ast_expression_codegen *cgen;
815
816     ir_value *condval;
817     ir_value *trueval, *falseval;
818     ir_instr *phi;
819
820     ir_block *cond = func->curblock;
821     ir_block *ontrue;
822     ir_block *onfalse;
823     ir_block *merge;
824
825     /* In theory it shouldn't be possible to pass through a node twice, but
826      * in case we add any kind of optimization pass for the AST itself, it
827      * may still happen, thus we remember a created ir_value and simply return one
828      * if it already exists.
829      */
830     if (self->phi_out) {
831         *out = self->phi_out;
832         return true;
833     }
834
835     /* Ternary can never create an lvalue... */
836     if (lvalue)
837         return false;
838
839     /* In the following, contraty to ast_ifthen, we assume both paths exist. */
840
841     /* create on-true block */
842     ontrue = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_T"));
843     if (!ontrue)
844         return false;
845     
846     /* create on-false block */
847     onfalse = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_F"));
848     if (!onfalse)
849         return false;
850
851     merge = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_out"));
852     if (!merge)
853         return NULL;
854
855     /* generate the condition */
856     func->curblock = cond;
857     cgen = self->cond->expression.codegen;
858     if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
859         return false;
860
861     if (!ir_block_create_if(cond, condval, ontrue, onfalse))
862         return false;
863
864     /* on-true path */
865     /* enter the block */
866     func->curblock = ontrue;
867
868     /* generate */
869     cgen = self->on_true->expression.codegen;
870     if (!(*cgen)((ast_expression*)(self->on_true), func, false, &trueval))
871         return false;
872
873     /* jump to merge block */
874     if (!ir_block_create_jump(ontrue, merge))
875         return false;
876
877     /* on-false path */
878     /* enter the block */
879     func->curblock = onfalse;
880
881     /* generate */
882     cgen = self->on_false->expression.codegen;
883     if (!(*cgen)((ast_expression*)(self->on_false), func, false, &falseval))
884         return false;
885
886     /* jump to merge block */
887     if (!ir_block_create_jump(ontrue, merge))
888         return false;
889
890     /* Now enter the merge block */
891     func->curblock = merge;
892
893     /* Here, now, we need a PHI node
894      * but first some sanity checking...
895      */
896     if (trueval->vtype != falseval->vtype) {
897         /* error("ternary with different types on the two sides"); */
898         return false;
899     }
900
901     /* create PHI */
902     phi = ir_block_create_phi(merge, ast_function_label(func, "phi"), trueval->vtype);
903     if (!phi ||
904         !ir_phi_add(phi, ontrue,  trueval) ||
905         !ir_phi_add(phi, onfalse, falseval))
906     {
907         return false;
908     }
909
910     self->phi_out = ir_phi_value(phi);
911     *out = self->phi_out;
912
913     return true;
914 }
915
916 bool ast_loop_codegen(ast_loop *self, ast_function *func, bool lvalue, ir_value **out)
917 {
918     ast_expression_codegen *cgen;
919
920     ir_value *precond;
921     ir_value *postcond;
922
923     ir_block *binit;
924     ir_block *bprecond;
925     ir_block *bpostcond;
926     ir_block *bincrement;
927
928     (void)lvalue;
929
930     return false;
931 }