]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.c
sprintf with length modifiers is annoying...
[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     ast_unref(self->on_true);
242     ast_unref(self->on_false);
243     ast_expression_delete((ast_expression*)self);
244     mem_d(self);
245 }
246
247 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
248 {
249     ast_instantiate(ast_ternary, ctx, ast_ternary_delete);
250     /* This time NEITHER must be NULL */
251     if (!ontrue || !onfalse) {
252         mem_d(self);
253         return NULL;
254     }
255     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ternary_codegen);
256
257     self->cond     = cond;
258     self->on_true  = ontrue;
259     self->on_false = onfalse;
260     self->phi_out  = NULL;
261
262     return self;
263 }
264
265 void ast_ternary_delete(ast_ternary *self)
266 {
267     ast_unref(self->cond);
268     ast_unref(self->on_true);
269     ast_unref(self->on_false);
270     ast_expression_delete((ast_expression*)self);
271     mem_d(self);
272 }
273
274 ast_store* ast_store_new(lex_ctx ctx, int op,
275                          ast_value *dest, ast_expression *source)
276 {
277     ast_instantiate(ast_store, ctx, ast_store_delete);
278     ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_store_codegen);
279
280     self->op = op;
281     self->dest = dest;
282     self->source = source;
283
284     return self;
285 }
286
287 void ast_store_delete(ast_store *self)
288 {
289     ast_unref(self->dest);
290     ast_unref(self->source);
291     ast_expression_delete((ast_expression*)self);
292     mem_d(self);
293 }
294
295 ast_block* ast_block_new(lex_ctx ctx)
296 {
297     ast_instantiate(ast_block, ctx, ast_block_delete);
298     ast_expression_init((ast_expression*)self,
299                         (ast_expression_codegen*)&ast_block_codegen);
300
301     MEM_VECTOR_INIT(self, locals);
302     MEM_VECTOR_INIT(self, exprs);
303
304     return self;
305 }
306 MEM_VEC_FUNCTIONS(ast_block, ast_value*, locals)
307 MEM_VEC_FUNCTIONS(ast_block, ast_expression*, exprs)
308
309 void ast_block_delete(ast_block *self)
310 {
311     size_t i;
312     for (i = 0; i < self->exprs_count; ++i)
313         ast_unref(self->exprs[i]);
314     MEM_VECTOR_CLEAR(self, exprs);
315     for (i = 0; i < self->locals_count; ++i)
316         ast_delete(self->locals[i]);
317     MEM_VECTOR_CLEAR(self, locals);
318     ast_expression_delete((ast_expression*)self);
319     mem_d(self);
320 }
321
322 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype)
323 {
324     ast_instantiate(ast_function, ctx, ast_function_delete);
325
326     if (!vtype ||
327         vtype->isconst ||
328         vtype->expression.vtype != TYPE_FUNCTION)
329     {
330         mem_d(self);
331         return NULL;
332     }
333
334     self->vtype = vtype;
335     self->name = name ? util_strdup(name) : NULL;
336     MEM_VECTOR_INIT(self, blocks);
337
338     self->labelcount = 0;
339
340     self->ir_func = NULL;
341     self->curblock = NULL;
342
343     vtype->isconst = true;
344     vtype->constval.vfunc = self;
345
346     return self;
347 }
348
349 MEM_VEC_FUNCTIONS(ast_function, ast_block*, blocks)
350
351 void ast_function_delete(ast_function *self)
352 {
353     size_t i;
354     if (self->name)
355         mem_d((void*)self->name);
356     if (self->vtype) {
357         /* ast_value_delete(self->vtype); */
358         self->vtype->isconst = false;
359         self->vtype->constval.vfunc = NULL;
360         /* We use unref - if it was stored in a global table it is supposed
361          * to be deleted from *there*
362          */
363         ast_unref(self->vtype);
364     }
365     for (i = 0; i < self->blocks_count; ++i)
366         ast_delete(self->blocks[i]);
367     MEM_VECTOR_CLEAR(self, blocks);
368     mem_d(self);
369 }
370
371 static void ast_util_hexitoa(char *buf, size_t size, unsigned int num)
372 {
373     unsigned int base = 10;
374 #define checknul() do { if (size == 1) { *buf = 0; return; } } while (0)
375 #define addch(x) do { *buf++ = (x); --size; checknul(); } while (0)
376     if (size < 1)
377         return;
378     checknul();
379     if (!num)
380         addch('0');
381     else {
382         while (num)
383         {
384             int digit = num % base;
385             num /= base;
386             addch('0' + digit);
387         }
388     }
389
390     *buf = 0;
391 #undef addch
392 #undef checknul
393 }
394
395 const char* ast_function_label(ast_function *self, const char *prefix)
396 {
397     size_t id = (self->labelcount++);
398     size_t len = strlen(prefix);
399     strncpy(self->labelbuf, prefix, sizeof(self->labelbuf));
400     ast_util_hexitoa(self->labelbuf + len, sizeof(self->labelbuf)-len, id);
401     return self->labelbuf;
402 }
403
404 /*********************************************************************/
405 /* AST codegen part
406  * by convention you must never pass NULL to the 'ir_value **out'
407  * parameter. If you really don't care about the output, pass a dummy.
408  * But I can't imagine a pituation where the output is truly unnecessary.
409  */
410
411 bool ast_value_codegen(ast_value *self, ast_function *func, bool lvalue, ir_value **out)
412 {
413     /* NOTE: This is the codegen for a variable used in an expression.
414      * It is not the codegen to generate the value. For this purpose,
415      * ast_local_codegen and ast_global_codegen are to be used before this
416      * is executed. ast_function_codegen should take care of its locals,
417      * and the ast-user should take care of ast_global_codegen to be used
418      * on all the globals.
419      */
420     if (!self->ir_v)
421         return false;
422     *out = self->ir_v;
423     return true;
424 }
425
426 bool ast_global_codegen(ast_value *self, ir_builder *ir)
427 {
428     ir_value *v = NULL;
429     if (self->isconst && self->expression.vtype == TYPE_FUNCTION)
430     {
431         ir_function *func = ir_builder_create_function(ir, self->name);
432         if (!func)
433             return false;
434
435         self->constval.vfunc->ir_func = func;
436         /* The function is filled later on ast_function_codegen... */
437         return true;
438     }
439
440     v = ir_builder_create_global(ir, self->name, self->expression.vtype);
441     if (!v)
442         return false;
443
444     if (self->isconst) {
445         switch (self->expression.vtype)
446         {
447             case TYPE_FLOAT:
448                 if (!ir_value_set_float(v, self->constval.vfloat))
449                     goto error;
450                 break;
451             case TYPE_VECTOR:
452                 if (!ir_value_set_vector(v, self->constval.vvec))
453                     goto error;
454                 break;
455             case TYPE_STRING:
456                 if (!ir_value_set_string(v, self->constval.vstring))
457                     goto error;
458                 break;
459             case TYPE_FUNCTION:
460                 /* Cannot generate an IR value for a function,
461                  * need a pointer pointing to a function rather.
462                  */
463                 goto error;
464             default:
465                 printf("TODO: global constant type %i\n", self->expression.vtype);
466                 break;
467         }
468     }
469
470     /* link us to the ir_value */
471     self->ir_v = v;
472     return true;
473
474 error: /* clean up */
475     ir_value_delete(v);
476     return false;
477 }
478
479 bool ast_local_codegen(ast_value *self, ir_function *func)
480 {
481     ir_value *v = NULL;
482     if (self->isconst && self->expression.vtype == TYPE_FUNCTION)
483     {
484         /* Do we allow local functions? I think not...
485          * this is NOT a function pointer atm.
486          */
487         return false;
488     }
489
490     v = ir_function_create_local(func, self->name, self->expression.vtype);
491     if (!v)
492         return false;
493
494     /* A constant local... hmmm...
495      * I suppose the IR will have to deal with this
496      */
497     if (self->isconst) {
498         switch (self->expression.vtype)
499         {
500             case TYPE_FLOAT:
501                 if (!ir_value_set_float(v, self->constval.vfloat))
502                     goto error;
503                 break;
504             case TYPE_VECTOR:
505                 if (!ir_value_set_vector(v, self->constval.vvec))
506                     goto error;
507                 break;
508             case TYPE_STRING:
509                 if (!ir_value_set_string(v, self->constval.vstring))
510                     goto error;
511                 break;
512             default:
513                 printf("TODO: global constant type %i\n", self->expression.vtype);
514                 break;
515         }
516     }
517
518     /* link us to the ir_value */
519     self->ir_v = v;
520     return true;
521
522 error: /* clean up */
523     ir_value_delete(v);
524     return false;
525 }
526
527 bool ast_function_codegen(ast_function *self, ir_builder *ir)
528 {
529     ir_function *irf;
530     ir_value    *dummy;
531     size_t    i;
532
533     irf = self->ir_func;
534     if (!irf) {
535         printf("ast_function's related ast_value was not generated yet\n");
536         return false;
537     }
538
539     self->curblock = ir_function_create_block(irf, "entry");
540     if (!self->curblock)
541         return false;
542
543     for (i = 0; i < self->blocks_count; ++i) {
544         ast_expression_codegen *gen = self->blocks[i]->expression.codegen;
545         if (!(*gen)((ast_expression*)self->blocks[i], self, false, &dummy))
546             return false;
547     }
548     return true;
549 }
550
551 /* Note, you will not see ast_block_codegen generate ir_blocks.
552  * To the AST and the IR, blocks are 2 different things.
553  * In the AST it represents a block of code, usually enclosed in
554  * curly braces {...}.
555  * While in the IR it represents a block in terms of control-flow.
556  */
557 bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_value **out)
558 {
559     size_t i;
560
561     /* We don't use this
562      * Note: an ast-representation using the comma-operator
563      * of the form: (a, b, c) = x should not assign to c...
564      */
565     (void)lvalue;
566
567     /* output is NULL at first, we'll have each expression
568      * assign to out output, thus, a comma-operator represention
569      * using an ast_block will return the last generated value,
570      * so: (b, c) + a  executed both b and c, and returns c,
571      * which is then added to a.
572      */
573     *out = NULL;
574
575     /* generate locals */
576     for (i = 0; i < self->locals_count; ++i)
577     {
578         if (!ast_local_codegen(self->locals[i], func->ir_func))
579             return false;
580     }
581
582     for (i = 0; i < self->exprs_count; ++i)
583     {
584         ast_expression_codegen *gen = self->exprs[i]->expression.codegen;
585         if (!(*gen)(self->exprs[i], func, false, out))
586             return false;
587     }
588
589     return true;
590 }
591
592 bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
593 {
594     ast_expression_codegen *cgen;
595     ir_value *left, *right;
596
597     cgen = self->dest->expression.codegen;
598     /* lvalue! */
599     if (!(*cgen)((ast_expression*)(self->dest), func, true, &left))
600         return false;
601
602     cgen = self->source->expression.codegen;
603     /* rvalue! */
604     if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
605         return false;
606
607     if (!ir_block_create_store_op(func->curblock, self->op, left, right))
608         return false;
609
610     /* Theoretically, an assinment returns its left side as an
611      * lvalue, if we don't need an lvalue though, we return
612      * the right side as an rvalue, otherwise we have to
613      * somehow know whether or not we need to dereference the pointer
614      * on the left side - that is: OP_LOAD if it was an address.
615      * Also: in original QC we cannot OP_LOADP *anyway*.
616      */
617     *out = (lvalue ? left : right);
618
619     return true;
620 }
621
622 bool ast_binary_codegen(ast_binary *self, ast_function *func, bool lvalue, ir_value **out)
623 {
624     ast_expression_codegen *cgen;
625     ir_value *left, *right;
626
627     /* In the context of a binary operation, we can disregard
628      * the lvalue flag.
629      */
630      (void)lvalue;
631
632     cgen = self->left->expression.codegen;
633     /* lvalue! */
634     if (!(*cgen)((ast_expression*)(self->left), func, false, &left))
635         return false;
636
637     cgen = self->right->expression.codegen;
638     /* rvalue! */
639     if (!(*cgen)((ast_expression*)(self->right), func, false, &right))
640         return false;
641
642     *out = ir_block_create_binop(func->curblock, ast_function_label(func, "bin"),
643                                  self->op, left, right);
644     if (!*out)
645         return false;
646
647     return true;
648 }
649
650 bool ast_entfield_codegen(ast_entfield *self, ast_function *func, bool lvalue, ir_value **out)
651 {
652     ast_expression_codegen *cgen;
653     ir_value *ent, *field;
654
655     /* This function needs to take the 'lvalue' flag into account!
656      * As lvalue we provide a field-pointer, as rvalue we provide the
657      * value in a temp.
658      */
659
660     cgen = self->entity->expression.codegen;
661     if (!(*cgen)((ast_expression*)(self->entity), func, false, &ent))
662         return false;
663
664     cgen = self->field->expression.codegen;
665     if (!(*cgen)((ast_expression*)(self->field), func, false, &field))
666         return false;
667
668     if (lvalue) {
669         /* address! */
670         *out = ir_block_create_fieldaddress(func->curblock, ast_function_label(func, "efa"),
671                                             ent, field);
672     } else {
673         *out = ir_block_create_load_from_ent(func->curblock, ast_function_label(func, "efv"),
674                                              ent, field, self->expression.vtype);
675     }
676     if (!*out)
677         return false;
678
679     /* Hm that should be it... */
680     return true;
681 }
682
683 bool ast_ifthen_codegen(ast_ifthen *self, ast_function *func, bool lvalue, ir_value **out)
684 {
685     ast_expression_codegen *cgen;
686
687     ir_value *condval;
688     ir_value *dummy;
689
690     ir_block *cond = func->curblock;
691     ir_block *ontrue;
692     ir_block *onfalse;
693     ir_block *merge;
694
695     /* We don't output any value, thus also don't care about r/lvalue */
696     (void)out;
697     (void)lvalue;
698
699     /* create blocks first, it's nicer if they're ordered */
700
701     if (self->on_true) {
702         /* create on-true block */
703         ontrue = ir_function_create_block(func->ir_func, ast_function_label(func, "ontrue"));
704         if (!ontrue)
705             return false;
706     } else
707         ontrue = NULL;
708     
709     if (self->on_false) {
710         /* create on-false block */
711         onfalse = ir_function_create_block(func->ir_func, ast_function_label(func, "onfalse"));
712         if (!onfalse)
713             return false;
714     } else
715         onfalse = NULL;
716
717     merge = ir_function_create_block(func->ir_func, ast_function_label(func, "endif"));
718     if (!merge)
719         return NULL;
720
721     /* generate the condition */
722     func->curblock = cond;
723     cgen = self->cond->expression.codegen;
724     if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
725         return false;
726
727     if (!ir_block_create_if(cond, condval,
728                             (ontrue  ? ontrue  : merge),
729                             (onfalse ? onfalse : merge)))
730     {
731         return false;
732     }
733
734     /* on-true path */
735     if (ontrue) {
736         /* enter the block */
737         func->curblock = ontrue;
738
739         /* generate */
740         cgen = self->on_true->expression.codegen;
741         if (!(*cgen)((ast_expression*)(self->on_true), func, false, &dummy))
742             return false;
743
744         /* jump to merge block */
745         if (!ir_block_create_jump(ontrue, merge))
746             return false;
747     }
748
749     /* on-false path */
750     if (onfalse) {
751         /* enter the block */
752         func->curblock = onfalse;
753
754         /* generate */
755         cgen = self->on_false->expression.codegen;
756         if (!(*cgen)((ast_expression*)(self->on_false), func, false, &dummy))
757             return false;
758
759         /* jump to merge block */
760         if (!ir_block_create_jump(ontrue, merge))
761             return false;
762     }
763
764     /* Now enter the merge block */
765     func->curblock = merge;
766
767     return true;
768 }
769
770 bool ast_ternary_codegen(ast_ternary *self, ast_function *func, bool lvalue, ir_value **out)
771 {
772     ast_expression_codegen *cgen;
773
774     ir_value *condval;
775     ir_value *trueval, *falseval;
776     ir_instr *phi;
777
778     ir_block *cond = func->curblock;
779     ir_block *ontrue;
780     ir_block *onfalse;
781     ir_block *merge;
782
783     /* In theory it shouldn't be possible to pass through a node twice, but
784      * in case we add any kind of optimization pass for the AST itself, it
785      * may still happen, thus we remember a created ir_value and simply return one
786      * if it already exists.
787      */
788     if (self->phi_out) {
789         *out = self->phi_out;
790         return true;
791     }
792
793     /* Ternary can never create an lvalue... */
794     if (lvalue)
795         return false;
796
797     /* In the following, contraty to ast_ifthen, we assume both paths exist. */
798
799     /* create on-true block */
800     ontrue = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_T"));
801     if (!ontrue)
802         return false;
803     
804     /* create on-false block */
805     onfalse = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_F"));
806     if (!onfalse)
807         return false;
808
809     merge = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_out"));
810     if (!merge)
811         return NULL;
812
813     /* generate the condition */
814     func->curblock = cond;
815     cgen = self->cond->expression.codegen;
816     if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
817         return false;
818
819     if (!ir_block_create_if(cond, condval, ontrue, onfalse))
820         return false;
821
822     /* on-true path */
823     /* enter the block */
824     func->curblock = ontrue;
825
826     /* generate */
827     cgen = self->on_true->expression.codegen;
828     if (!(*cgen)((ast_expression*)(self->on_true), func, false, &trueval))
829         return false;
830
831     /* jump to merge block */
832     if (!ir_block_create_jump(ontrue, merge))
833         return false;
834
835     /* on-false path */
836     /* enter the block */
837     func->curblock = onfalse;
838
839     /* generate */
840     cgen = self->on_false->expression.codegen;
841     if (!(*cgen)((ast_expression*)(self->on_false), func, false, &falseval))
842         return false;
843
844     /* jump to merge block */
845     if (!ir_block_create_jump(ontrue, merge))
846         return false;
847
848     /* Now enter the merge block */
849     func->curblock = merge;
850
851     /* Here, now, we need a PHI node
852      * but first some sanity checking...
853      */
854     if (trueval->vtype != falseval->vtype) {
855         /* error("ternary with different types on the two sides"); */
856         return false;
857     }
858
859     /* create PHI */
860     phi = ir_block_create_phi(merge, ast_function_label(func, "phi"), trueval->vtype);
861     if (!phi ||
862         !ir_phi_add(phi, ontrue,  trueval) ||
863         !ir_phi_add(phi, onfalse, falseval))
864     {
865         return false;
866     }
867
868     self->phi_out = ir_phi_value(phi);
869     *out = self->phi_out;
870
871     return true;
872 }