]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.c
ast_function_codegen: Add a return instruction if it is missing, or error if we're...
[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
549     /* TODO: check return types */
550     if (!self->curblock->is_return)
551     {
552         if (!self->vtype->expression.next ||
553             self->vtype->expression.next->expression.vtype == TYPE_VOID)
554             return ir_block_create_return(self->curblock, NULL);
555         else
556         {
557             /* error("missing return"); */
558             return false;
559         }
560     }
561     return true;
562 }
563
564 /* Note, you will not see ast_block_codegen generate ir_blocks.
565  * To the AST and the IR, blocks are 2 different things.
566  * In the AST it represents a block of code, usually enclosed in
567  * curly braces {...}.
568  * While in the IR it represents a block in terms of control-flow.
569  */
570 bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_value **out)
571 {
572     size_t i;
573
574     /* We don't use this
575      * Note: an ast-representation using the comma-operator
576      * of the form: (a, b, c) = x should not assign to c...
577      */
578     (void)lvalue;
579
580     /* output is NULL at first, we'll have each expression
581      * assign to out output, thus, a comma-operator represention
582      * using an ast_block will return the last generated value,
583      * so: (b, c) + a  executed both b and c, and returns c,
584      * which is then added to a.
585      */
586     *out = NULL;
587
588     /* generate locals */
589     for (i = 0; i < self->locals_count; ++i)
590     {
591         if (!ast_local_codegen(self->locals[i], func->ir_func))
592             return false;
593     }
594
595     for (i = 0; i < self->exprs_count; ++i)
596     {
597         ast_expression_codegen *gen = self->exprs[i]->expression.codegen;
598         if (!(*gen)(self->exprs[i], func, false, out))
599             return false;
600     }
601
602     return true;
603 }
604
605 bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
606 {
607     ast_expression_codegen *cgen;
608     ir_value *left, *right;
609
610     cgen = self->dest->expression.codegen;
611     /* lvalue! */
612     if (!(*cgen)((ast_expression*)(self->dest), func, true, &left))
613         return false;
614
615     cgen = self->source->expression.codegen;
616     /* rvalue! */
617     if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
618         return false;
619
620     if (!ir_block_create_store_op(func->curblock, self->op, left, right))
621         return false;
622
623     /* Theoretically, an assinment returns its left side as an
624      * lvalue, if we don't need an lvalue though, we return
625      * the right side as an rvalue, otherwise we have to
626      * somehow know whether or not we need to dereference the pointer
627      * on the left side - that is: OP_LOAD if it was an address.
628      * Also: in original QC we cannot OP_LOADP *anyway*.
629      */
630     *out = (lvalue ? left : right);
631
632     return true;
633 }
634
635 bool ast_binary_codegen(ast_binary *self, ast_function *func, bool lvalue, ir_value **out)
636 {
637     ast_expression_codegen *cgen;
638     ir_value *left, *right;
639
640     /* In the context of a binary operation, we can disregard
641      * the lvalue flag.
642      */
643      (void)lvalue;
644
645     cgen = self->left->expression.codegen;
646     /* lvalue! */
647     if (!(*cgen)((ast_expression*)(self->left), func, false, &left))
648         return false;
649
650     cgen = self->right->expression.codegen;
651     /* rvalue! */
652     if (!(*cgen)((ast_expression*)(self->right), func, false, &right))
653         return false;
654
655     *out = ir_block_create_binop(func->curblock, ast_function_label(func, "bin"),
656                                  self->op, left, right);
657     if (!*out)
658         return false;
659
660     return true;
661 }
662
663 bool ast_entfield_codegen(ast_entfield *self, ast_function *func, bool lvalue, ir_value **out)
664 {
665     ast_expression_codegen *cgen;
666     ir_value *ent, *field;
667
668     /* This function needs to take the 'lvalue' flag into account!
669      * As lvalue we provide a field-pointer, as rvalue we provide the
670      * value in a temp.
671      */
672
673     cgen = self->entity->expression.codegen;
674     if (!(*cgen)((ast_expression*)(self->entity), func, false, &ent))
675         return false;
676
677     cgen = self->field->expression.codegen;
678     if (!(*cgen)((ast_expression*)(self->field), func, false, &field))
679         return false;
680
681     if (lvalue) {
682         /* address! */
683         *out = ir_block_create_fieldaddress(func->curblock, ast_function_label(func, "efa"),
684                                             ent, field);
685     } else {
686         *out = ir_block_create_load_from_ent(func->curblock, ast_function_label(func, "efv"),
687                                              ent, field, self->expression.vtype);
688     }
689     if (!*out)
690         return false;
691
692     /* Hm that should be it... */
693     return true;
694 }
695
696 bool ast_ifthen_codegen(ast_ifthen *self, ast_function *func, bool lvalue, ir_value **out)
697 {
698     ast_expression_codegen *cgen;
699
700     ir_value *condval;
701     ir_value *dummy;
702
703     ir_block *cond = func->curblock;
704     ir_block *ontrue;
705     ir_block *onfalse;
706     ir_block *merge;
707
708     /* We don't output any value, thus also don't care about r/lvalue */
709     (void)out;
710     (void)lvalue;
711
712     /* create blocks first, it's nicer if they're ordered */
713
714     if (self->on_true) {
715         /* create on-true block */
716         ontrue = ir_function_create_block(func->ir_func, ast_function_label(func, "ontrue"));
717         if (!ontrue)
718             return false;
719     } else
720         ontrue = NULL;
721     
722     if (self->on_false) {
723         /* create on-false block */
724         onfalse = ir_function_create_block(func->ir_func, ast_function_label(func, "onfalse"));
725         if (!onfalse)
726             return false;
727     } else
728         onfalse = NULL;
729
730     merge = ir_function_create_block(func->ir_func, ast_function_label(func, "endif"));
731     if (!merge)
732         return NULL;
733
734     /* generate the condition */
735     func->curblock = cond;
736     cgen = self->cond->expression.codegen;
737     if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
738         return false;
739
740     if (!ir_block_create_if(cond, condval,
741                             (ontrue  ? ontrue  : merge),
742                             (onfalse ? onfalse : merge)))
743     {
744         return false;
745     }
746
747     /* on-true path */
748     if (ontrue) {
749         /* enter the block */
750         func->curblock = ontrue;
751
752         /* generate */
753         cgen = self->on_true->expression.codegen;
754         if (!(*cgen)((ast_expression*)(self->on_true), func, false, &dummy))
755             return false;
756
757         /* jump to merge block */
758         if (!ir_block_create_jump(ontrue, merge))
759             return false;
760     }
761
762     /* on-false path */
763     if (onfalse) {
764         /* enter the block */
765         func->curblock = onfalse;
766
767         /* generate */
768         cgen = self->on_false->expression.codegen;
769         if (!(*cgen)((ast_expression*)(self->on_false), func, false, &dummy))
770             return false;
771
772         /* jump to merge block */
773         if (!ir_block_create_jump(ontrue, merge))
774             return false;
775     }
776
777     /* Now enter the merge block */
778     func->curblock = merge;
779
780     return true;
781 }
782
783 bool ast_ternary_codegen(ast_ternary *self, ast_function *func, bool lvalue, ir_value **out)
784 {
785     ast_expression_codegen *cgen;
786
787     ir_value *condval;
788     ir_value *trueval, *falseval;
789     ir_instr *phi;
790
791     ir_block *cond = func->curblock;
792     ir_block *ontrue;
793     ir_block *onfalse;
794     ir_block *merge;
795
796     /* In theory it shouldn't be possible to pass through a node twice, but
797      * in case we add any kind of optimization pass for the AST itself, it
798      * may still happen, thus we remember a created ir_value and simply return one
799      * if it already exists.
800      */
801     if (self->phi_out) {
802         *out = self->phi_out;
803         return true;
804     }
805
806     /* Ternary can never create an lvalue... */
807     if (lvalue)
808         return false;
809
810     /* In the following, contraty to ast_ifthen, we assume both paths exist. */
811
812     /* create on-true block */
813     ontrue = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_T"));
814     if (!ontrue)
815         return false;
816     
817     /* create on-false block */
818     onfalse = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_F"));
819     if (!onfalse)
820         return false;
821
822     merge = ir_function_create_block(func->ir_func, ast_function_label(func, "tern_out"));
823     if (!merge)
824         return NULL;
825
826     /* generate the condition */
827     func->curblock = cond;
828     cgen = self->cond->expression.codegen;
829     if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
830         return false;
831
832     if (!ir_block_create_if(cond, condval, ontrue, onfalse))
833         return false;
834
835     /* on-true path */
836     /* enter the block */
837     func->curblock = ontrue;
838
839     /* generate */
840     cgen = self->on_true->expression.codegen;
841     if (!(*cgen)((ast_expression*)(self->on_true), func, false, &trueval))
842         return false;
843
844     /* jump to merge block */
845     if (!ir_block_create_jump(ontrue, merge))
846         return false;
847
848     /* on-false path */
849     /* enter the block */
850     func->curblock = onfalse;
851
852     /* generate */
853     cgen = self->on_false->expression.codegen;
854     if (!(*cgen)((ast_expression*)(self->on_false), func, false, &falseval))
855         return false;
856
857     /* jump to merge block */
858     if (!ir_block_create_jump(ontrue, merge))
859         return false;
860
861     /* Now enter the merge block */
862     func->curblock = merge;
863
864     /* Here, now, we need a PHI node
865      * but first some sanity checking...
866      */
867     if (trueval->vtype != falseval->vtype) {
868         /* error("ternary with different types on the two sides"); */
869         return false;
870     }
871
872     /* create PHI */
873     phi = ir_block_create_phi(merge, ast_function_label(func, "phi"), trueval->vtype);
874     if (!phi ||
875         !ir_phi_add(phi, ontrue,  trueval) ||
876         !ir_phi_add(phi, onfalse, falseval))
877     {
878         return false;
879     }
880
881     self->phi_out = ir_phi_value(phi);
882     *out = self->phi_out;
883
884     return true;
885 }