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