2 * Copyright (C) 2012, 2013
6 * Permission is hereby granted, free of charge, to any person obtaining a copy of
7 * this software and associated documentation files (the "Software"), to deal in
8 * the Software without restriction, including without limitation the rights to
9 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10 * of the Software, and to permit persons to whom the Software is furnished to do
11 * so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 #define ast_instantiate(T, ctx, destroyfn) \
32 T* self = (T*)mem_a(sizeof(T)); \
36 ast_node_init((ast_node*)self, ctx, TYPE_##T); \
37 ( (ast_node*)self )->node.destroy = (ast_node_delete*)destroyfn
40 /* It must not be possible to get here. */
41 static GMQCC_NORETURN void _ast_node_destroy(ast_node *self)
44 con_err("ast node missing destroy()\n");
48 /* Initialize main ast node aprts */
49 static void ast_node_init(ast_node *self, lex_ctx ctx, int nodetype)
51 self->node.context = ctx;
52 self->node.destroy = &_ast_node_destroy;
53 self->node.keep = false;
54 self->node.nodetype = nodetype;
55 self->node.side_effects = false;
58 /* weight and side effects */
59 static void _ast_propagate_effects(ast_node *self, ast_node *other)
61 if (ast_side_effects(other))
62 ast_side_effects(self) = true;
64 #define ast_propagate_effects(s,o) _ast_propagate_effects(((ast_node*)(s)), ((ast_node*)(o)))
66 /* General expression initialization */
67 static void ast_expression_init(ast_expression *self,
68 ast_expression_codegen *codegen)
70 self->expression.codegen = codegen;
71 self->expression.vtype = TYPE_VOID;
72 self->expression.next = NULL;
73 self->expression.outl = NULL;
74 self->expression.outr = NULL;
75 self->expression.params = NULL;
76 self->expression.count = 0;
77 self->expression.flags = 0;
78 self->expression.varparam = NULL;
81 static void ast_expression_delete(ast_expression *self)
84 if (self->expression.next)
85 ast_delete(self->expression.next);
86 for (i = 0; i < vec_size(self->expression.params); ++i) {
87 ast_delete(self->expression.params[i]);
89 vec_free(self->expression.params);
92 static void ast_expression_delete_full(ast_expression *self)
94 ast_expression_delete(self);
98 ast_value* ast_value_copy(const ast_value *self)
101 const ast_expression_common *fromex;
102 ast_expression_common *selfex;
103 ast_value *cp = ast_value_new(self->expression.node.context, self->name, self->expression.vtype);
104 if (self->expression.next) {
105 cp->expression.next = ast_type_copy(self->expression.node.context, self->expression.next);
106 if (!cp->expression.next) {
107 ast_value_delete(cp);
111 fromex = &self->expression;
112 selfex = &cp->expression;
113 selfex->count = fromex->count;
114 selfex->flags = fromex->flags;
115 for (i = 0; i < vec_size(fromex->params); ++i) {
116 ast_value *v = ast_value_copy(fromex->params[i]);
118 ast_value_delete(cp);
121 vec_push(selfex->params, v);
126 bool ast_type_adopt_impl(ast_expression *self, const ast_expression *other)
129 const ast_expression_common *fromex;
130 ast_expression_common *selfex;
131 self->expression.vtype = other->expression.vtype;
132 if (other->expression.next) {
133 self->expression.next = (ast_expression*)ast_type_copy(ast_ctx(self), other->expression.next);
134 if (!self->expression.next)
137 fromex = &other->expression;
138 selfex = &self->expression;
139 selfex->count = fromex->count;
140 selfex->flags = fromex->flags;
141 for (i = 0; i < vec_size(fromex->params); ++i) {
142 ast_value *v = ast_value_copy(fromex->params[i]);
145 vec_push(selfex->params, v);
150 static ast_expression* ast_shallow_type(lex_ctx ctx, int vtype)
152 ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
153 ast_expression_init(self, NULL);
154 self->expression.codegen = NULL;
155 self->expression.next = NULL;
156 self->expression.vtype = vtype;
160 ast_expression* ast_type_copy(lex_ctx ctx, const ast_expression *ex)
163 const ast_expression_common *fromex;
164 ast_expression_common *selfex;
170 ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
171 ast_expression_init(self, NULL);
173 fromex = &ex->expression;
174 selfex = &self->expression;
176 /* This may never be codegen()d */
177 selfex->codegen = NULL;
179 selfex->vtype = fromex->vtype;
182 selfex->next = ast_type_copy(ctx, fromex->next);
184 ast_expression_delete_full(self);
191 selfex->count = fromex->count;
192 selfex->flags = fromex->flags;
193 for (i = 0; i < vec_size(fromex->params); ++i) {
194 ast_value *v = ast_value_copy(fromex->params[i]);
196 ast_expression_delete_full(self);
199 vec_push(selfex->params, v);
206 bool ast_compare_type(ast_expression *a, ast_expression *b)
208 if (a->expression.vtype == TYPE_NIL ||
209 b->expression.vtype == TYPE_NIL)
211 if (a->expression.vtype != b->expression.vtype)
213 if (!a->expression.next != !b->expression.next)
215 if (vec_size(a->expression.params) != vec_size(b->expression.params))
217 if ((a->expression.flags & AST_FLAG_TYPE_MASK) !=
218 (b->expression.flags & AST_FLAG_TYPE_MASK) )
222 if (vec_size(a->expression.params)) {
224 for (i = 0; i < vec_size(a->expression.params); ++i) {
225 if (!ast_compare_type((ast_expression*)a->expression.params[i],
226 (ast_expression*)b->expression.params[i]))
230 if (a->expression.next)
231 return ast_compare_type(a->expression.next, b->expression.next);
235 static size_t ast_type_to_string_impl(ast_expression *e, char *buf, size_t bufsize, size_t pos)
242 if (pos + 6 >= bufsize)
244 strcpy(buf + pos, "(null)");
248 if (pos + 1 >= bufsize)
251 switch (e->expression.vtype) {
253 strcpy(buf + pos, "(variant)");
258 return ast_type_to_string_impl(e->expression.next, buf, bufsize, pos);
261 if (pos + 3 >= bufsize)
265 pos = ast_type_to_string_impl(e->expression.next, buf, bufsize, pos);
266 if (pos + 1 >= bufsize)
272 pos = ast_type_to_string_impl(e->expression.next, buf, bufsize, pos);
273 if (pos + 2 >= bufsize)
275 if (!vec_size(e->expression.params)) {
281 pos = ast_type_to_string_impl((ast_expression*)(e->expression.params[0]), buf, bufsize, pos);
282 for (i = 1; i < vec_size(e->expression.params); ++i) {
283 if (pos + 2 >= bufsize)
287 pos = ast_type_to_string_impl((ast_expression*)(e->expression.params[i]), buf, bufsize, pos);
289 if (pos + 1 >= bufsize)
295 pos = ast_type_to_string_impl(e->expression.next, buf, bufsize, pos);
296 if (pos + 1 >= bufsize)
299 pos += snprintf(buf + pos, bufsize - pos - 1, "%i", (int)e->expression.count);
300 if (pos + 1 >= bufsize)
306 typestr = type_name[e->expression.vtype];
307 typelen = strlen(typestr);
308 if (pos + typelen >= bufsize)
310 strcpy(buf + pos, typestr);
311 return pos + typelen;
315 buf[bufsize-3] = '.';
316 buf[bufsize-2] = '.';
317 buf[bufsize-1] = '.';
321 void ast_type_to_string(ast_expression *e, char *buf, size_t bufsize)
323 size_t pos = ast_type_to_string_impl(e, buf, bufsize-1, 0);
327 ast_value* ast_value_new(lex_ctx ctx, const char *name, int t)
329 ast_instantiate(ast_value, ctx, ast_value_delete);
330 ast_expression_init((ast_expression*)self,
331 (ast_expression_codegen*)&ast_value_codegen);
332 self->expression.node.keep = true; /* keep */
334 self->name = name ? util_strdup(name) : NULL;
335 self->expression.vtype = t;
336 self->expression.next = NULL;
337 self->isfield = false;
339 self->hasvalue = false;
341 memset(&self->constval, 0, sizeof(self->constval));
344 self->ir_values = NULL;
345 self->ir_value_count = 0;
351 self->argcounter = NULL;
356 void ast_value_delete(ast_value* self)
359 mem_d((void*)self->name);
360 if (self->argcounter)
361 mem_d((void*)self->argcounter);
362 if (self->hasvalue) {
363 switch (self->expression.vtype)
366 mem_d((void*)self->constval.vstring);
369 /* unlink us from the function node */
370 self->constval.vfunc->vtype = NULL;
372 /* NOTE: delete function? currently collected in
373 * the parser structure
380 mem_d(self->ir_values);
385 ast_expression_delete((ast_expression*)self);
389 void ast_value_params_add(ast_value *self, ast_value *p)
391 vec_push(self->expression.params, p);
394 bool ast_value_set_name(ast_value *self, const char *name)
397 mem_d((void*)self->name);
398 self->name = util_strdup(name);
402 ast_binary* ast_binary_new(lex_ctx ctx, int op,
403 ast_expression* left, ast_expression* right)
405 ast_instantiate(ast_binary, ctx, ast_binary_delete);
406 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binary_codegen);
412 ast_propagate_effects(self, left);
413 ast_propagate_effects(self, right);
415 if (op >= INSTR_EQ_F && op <= INSTR_GT)
416 self->expression.vtype = TYPE_FLOAT;
417 else if (op == INSTR_AND || op == INSTR_OR) {
418 if (OPTS_FLAG(PERL_LOGIC))
419 ast_type_adopt(self, right);
421 self->expression.vtype = TYPE_FLOAT;
423 else if (op == INSTR_BITAND || op == INSTR_BITOR)
424 self->expression.vtype = TYPE_FLOAT;
425 else if (op == INSTR_MUL_VF || op == INSTR_MUL_FV)
426 self->expression.vtype = TYPE_VECTOR;
427 else if (op == INSTR_MUL_V)
428 self->expression.vtype = TYPE_FLOAT;
430 self->expression.vtype = left->expression.vtype;
435 void ast_binary_delete(ast_binary *self)
437 ast_unref(self->left);
438 ast_unref(self->right);
439 ast_expression_delete((ast_expression*)self);
443 ast_binstore* ast_binstore_new(lex_ctx ctx, int storop, int op,
444 ast_expression* left, ast_expression* right)
446 ast_instantiate(ast_binstore, ctx, ast_binstore_delete);
447 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binstore_codegen);
449 ast_side_effects(self) = true;
451 self->opstore = storop;
454 self->source = right;
456 self->keep_dest = false;
458 if (!ast_type_adopt(self, left)) {
466 void ast_binstore_delete(ast_binstore *self)
468 if (!self->keep_dest)
469 ast_unref(self->dest);
470 ast_unref(self->source);
471 ast_expression_delete((ast_expression*)self);
475 ast_unary* ast_unary_new(lex_ctx ctx, int op,
476 ast_expression *expr)
478 ast_instantiate(ast_unary, ctx, ast_unary_delete);
479 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_unary_codegen);
482 self->operand = expr;
484 ast_propagate_effects(self, expr);
486 if (op >= INSTR_NOT_F && op <= INSTR_NOT_FNC) {
487 self->expression.vtype = TYPE_FLOAT;
489 compile_error(ctx, "cannot determine type of unary operation %s", asm_instr[op].m);
494 void ast_unary_delete(ast_unary *self)
496 if (self->operand) ast_unref(self->operand);
497 ast_expression_delete((ast_expression*)self);
501 ast_return* ast_return_new(lex_ctx ctx, ast_expression *expr)
503 ast_instantiate(ast_return, ctx, ast_return_delete);
504 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_return_codegen);
506 self->operand = expr;
509 ast_propagate_effects(self, expr);
514 void ast_return_delete(ast_return *self)
517 ast_unref(self->operand);
518 ast_expression_delete((ast_expression*)self);
522 ast_entfield* ast_entfield_new(lex_ctx ctx, ast_expression *entity, ast_expression *field)
524 if (field->expression.vtype != TYPE_FIELD) {
525 compile_error(ctx, "ast_entfield_new with expression not of type field");
528 return ast_entfield_new_force(ctx, entity, field, field->expression.next);
531 ast_entfield* ast_entfield_new_force(lex_ctx ctx, ast_expression *entity, ast_expression *field, const ast_expression *outtype)
533 ast_instantiate(ast_entfield, ctx, ast_entfield_delete);
537 /* Error: field has no type... */
541 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_entfield_codegen);
543 self->entity = entity;
545 ast_propagate_effects(self, entity);
546 ast_propagate_effects(self, field);
548 if (!ast_type_adopt(self, outtype)) {
549 ast_entfield_delete(self);
556 void ast_entfield_delete(ast_entfield *self)
558 ast_unref(self->entity);
559 ast_unref(self->field);
560 ast_expression_delete((ast_expression*)self);
564 ast_member* ast_member_new(lex_ctx ctx, ast_expression *owner, unsigned int field, const char *name)
566 ast_instantiate(ast_member, ctx, ast_member_delete);
572 if (owner->expression.vtype != TYPE_VECTOR &&
573 owner->expression.vtype != TYPE_FIELD) {
574 compile_error(ctx, "member-access on an invalid owner of type %s", type_name[owner->expression.vtype]);
579 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_member_codegen);
580 self->expression.node.keep = true; /* keep */
582 if (owner->expression.vtype == TYPE_VECTOR) {
583 self->expression.vtype = TYPE_FLOAT;
584 self->expression.next = NULL;
586 self->expression.vtype = TYPE_FIELD;
587 self->expression.next = ast_shallow_type(ctx, TYPE_FLOAT);
590 self->rvalue = false;
592 ast_propagate_effects(self, owner);
596 self->name = util_strdup(name);
603 void ast_member_delete(ast_member *self)
605 /* The owner is always an ast_value, which has .keep=true,
606 * also: ast_members are usually deleted after the owner, thus
607 * this will cause invalid access
608 ast_unref(self->owner);
609 * once we allow (expression).x to access a vector-member, we need
610 * to change this: preferably by creating an alternate ast node for this
611 * purpose that is not garbage-collected.
613 ast_expression_delete((ast_expression*)self);
617 bool ast_member_set_name(ast_member *self, const char *name)
620 mem_d((void*)self->name);
621 self->name = util_strdup(name);
625 ast_array_index* ast_array_index_new(lex_ctx ctx, ast_expression *array, ast_expression *index)
627 ast_expression *outtype;
628 ast_instantiate(ast_array_index, ctx, ast_array_index_delete);
630 outtype = array->expression.next;
633 /* Error: field has no type... */
637 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_array_index_codegen);
641 ast_propagate_effects(self, array);
642 ast_propagate_effects(self, index);
644 if (!ast_type_adopt(self, outtype)) {
645 ast_array_index_delete(self);
648 if (array->expression.vtype == TYPE_FIELD && outtype->expression.vtype == TYPE_ARRAY) {
649 if (self->expression.vtype != TYPE_ARRAY) {
650 compile_error(ast_ctx(self), "array_index node on type");
651 ast_array_index_delete(self);
654 self->array = outtype;
655 self->expression.vtype = TYPE_FIELD;
661 void ast_array_index_delete(ast_array_index *self)
663 ast_unref(self->array);
664 ast_unref(self->index);
665 ast_expression_delete((ast_expression*)self);
669 ast_ifthen* ast_ifthen_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
671 ast_instantiate(ast_ifthen, ctx, ast_ifthen_delete);
672 if (!ontrue && !onfalse) {
673 /* because it is invalid */
677 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ifthen_codegen);
680 self->on_true = ontrue;
681 self->on_false = onfalse;
682 ast_propagate_effects(self, cond);
684 ast_propagate_effects(self, ontrue);
686 ast_propagate_effects(self, onfalse);
691 void ast_ifthen_delete(ast_ifthen *self)
693 ast_unref(self->cond);
695 ast_unref(self->on_true);
697 ast_unref(self->on_false);
698 ast_expression_delete((ast_expression*)self);
702 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
704 ast_expression *exprtype = ontrue;
705 ast_instantiate(ast_ternary, ctx, ast_ternary_delete);
706 /* This time NEITHER must be NULL */
707 if (!ontrue || !onfalse) {
711 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ternary_codegen);
714 self->on_true = ontrue;
715 self->on_false = onfalse;
716 ast_propagate_effects(self, cond);
717 ast_propagate_effects(self, ontrue);
718 ast_propagate_effects(self, onfalse);
720 if (ontrue->expression.vtype == TYPE_NIL)
722 if (!ast_type_adopt(self, exprtype)) {
723 ast_ternary_delete(self);
730 void ast_ternary_delete(ast_ternary *self)
732 /* the if()s are only there because computed-gotos can set them
735 if (self->cond) ast_unref(self->cond);
736 if (self->on_true) ast_unref(self->on_true);
737 if (self->on_false) ast_unref(self->on_false);
738 ast_expression_delete((ast_expression*)self);
742 ast_loop* ast_loop_new(lex_ctx ctx,
743 ast_expression *initexpr,
744 ast_expression *precond, bool pre_not,
745 ast_expression *postcond, bool post_not,
746 ast_expression *increment,
747 ast_expression *body)
749 ast_instantiate(ast_loop, ctx, ast_loop_delete);
750 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_loop_codegen);
752 self->initexpr = initexpr;
753 self->precond = precond;
754 self->postcond = postcond;
755 self->increment = increment;
758 self->pre_not = pre_not;
759 self->post_not = post_not;
762 ast_propagate_effects(self, initexpr);
764 ast_propagate_effects(self, precond);
766 ast_propagate_effects(self, postcond);
768 ast_propagate_effects(self, increment);
770 ast_propagate_effects(self, body);
775 void ast_loop_delete(ast_loop *self)
778 ast_unref(self->initexpr);
780 ast_unref(self->precond);
782 ast_unref(self->postcond);
784 ast_unref(self->increment);
786 ast_unref(self->body);
787 ast_expression_delete((ast_expression*)self);
791 ast_breakcont* ast_breakcont_new(lex_ctx ctx, bool iscont, unsigned int levels)
793 ast_instantiate(ast_breakcont, ctx, ast_breakcont_delete);
794 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_breakcont_codegen);
796 self->is_continue = iscont;
797 self->levels = levels;
802 void ast_breakcont_delete(ast_breakcont *self)
804 ast_expression_delete((ast_expression*)self);
808 ast_switch* ast_switch_new(lex_ctx ctx, ast_expression *op)
810 ast_instantiate(ast_switch, ctx, ast_switch_delete);
811 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_switch_codegen);
816 ast_propagate_effects(self, op);
821 void ast_switch_delete(ast_switch *self)
824 ast_unref(self->operand);
826 for (i = 0; i < vec_size(self->cases); ++i) {
827 if (self->cases[i].value)
828 ast_unref(self->cases[i].value);
829 ast_unref(self->cases[i].code);
831 vec_free(self->cases);
833 ast_expression_delete((ast_expression*)self);
837 ast_label* ast_label_new(lex_ctx ctx, const char *name, bool undefined)
839 ast_instantiate(ast_label, ctx, ast_label_delete);
840 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_label_codegen);
842 self->expression.vtype = TYPE_NOEXPR;
844 self->name = util_strdup(name);
845 self->irblock = NULL;
847 self->undefined = undefined;
852 void ast_label_delete(ast_label *self)
854 mem_d((void*)self->name);
855 vec_free(self->gotos);
856 ast_expression_delete((ast_expression*)self);
860 void ast_label_register_goto(ast_label *self, ast_goto *g)
862 vec_push(self->gotos, g);
865 ast_goto* ast_goto_new(lex_ctx ctx, const char *name)
867 ast_instantiate(ast_goto, ctx, ast_goto_delete);
868 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_goto_codegen);
870 self->name = util_strdup(name);
872 self->irblock_from = NULL;
877 void ast_goto_delete(ast_goto *self)
879 mem_d((void*)self->name);
880 ast_expression_delete((ast_expression*)self);
884 void ast_goto_set_label(ast_goto *self, ast_label *label)
886 self->target = label;
889 ast_call* ast_call_new(lex_ctx ctx,
890 ast_expression *funcexpr)
892 ast_instantiate(ast_call, ctx, ast_call_delete);
893 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_call_codegen);
895 ast_side_effects(self) = true;
898 self->func = funcexpr;
900 ast_type_adopt(self, funcexpr->expression.next);
905 void ast_call_delete(ast_call *self)
908 for (i = 0; i < vec_size(self->params); ++i)
909 ast_unref(self->params[i]);
910 vec_free(self->params);
913 ast_unref(self->func);
915 ast_expression_delete((ast_expression*)self);
919 bool ast_call_check_types(ast_call *self)
925 const ast_expression *func = self->func;
926 size_t count = vec_size(self->params);
927 if (count > vec_size(func->expression.params))
928 count = vec_size(func->expression.params);
930 for (i = 0; i < count; ++i) {
931 if (!ast_compare_type(self->params[i], (ast_expression*)(func->expression.params[i])))
933 ast_type_to_string(self->params[i], tgot, sizeof(tgot));
934 ast_type_to_string((ast_expression*)func->expression.params[i], texp, sizeof(texp));
935 compile_error(ast_ctx(self), "invalid type for parameter %u in function call: expected %s, got %s",
936 (unsigned int)(i+1), texp, tgot);
937 /* we don't immediately return */
941 count = vec_size(self->params);
942 if (count > vec_size(func->expression.params) && func->expression.varparam) {
943 for (; i < count; ++i) {
944 if (!ast_compare_type(self->params[i], func->expression.varparam))
946 ast_type_to_string(self->params[i], tgot, sizeof(tgot));
947 ast_type_to_string(func->expression.varparam, texp, sizeof(texp));
948 compile_error(ast_ctx(self), "invalid type for parameter %u in function call: expected %s, got %s",
949 (unsigned int)(i+1), texp, tgot);
950 /* we don't immediately return */
958 ast_store* ast_store_new(lex_ctx ctx, int op,
959 ast_expression *dest, ast_expression *source)
961 ast_instantiate(ast_store, ctx, ast_store_delete);
962 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_store_codegen);
964 ast_side_effects(self) = true;
968 self->source = source;
970 if (!ast_type_adopt(self, dest)) {
978 void ast_store_delete(ast_store *self)
980 ast_unref(self->dest);
981 ast_unref(self->source);
982 ast_expression_delete((ast_expression*)self);
986 ast_block* ast_block_new(lex_ctx ctx)
988 ast_instantiate(ast_block, ctx, ast_block_delete);
989 ast_expression_init((ast_expression*)self,
990 (ast_expression_codegen*)&ast_block_codegen);
994 self->collect = NULL;
999 bool ast_block_add_expr(ast_block *self, ast_expression *e)
1001 ast_propagate_effects(self, e);
1002 vec_push(self->exprs, e);
1003 if (self->expression.next) {
1004 ast_delete(self->expression.next);
1005 self->expression.next = NULL;
1007 if (!ast_type_adopt(self, e)) {
1008 compile_error(ast_ctx(self), "internal error: failed to adopt type");
1014 void ast_block_collect(ast_block *self, ast_expression *expr)
1016 vec_push(self->collect, expr);
1017 expr->expression.node.keep = true;
1020 void ast_block_delete(ast_block *self)
1023 for (i = 0; i < vec_size(self->exprs); ++i)
1024 ast_unref(self->exprs[i]);
1025 vec_free(self->exprs);
1026 for (i = 0; i < vec_size(self->locals); ++i)
1027 ast_delete(self->locals[i]);
1028 vec_free(self->locals);
1029 for (i = 0; i < vec_size(self->collect); ++i)
1030 ast_delete(self->collect[i]);
1031 vec_free(self->collect);
1032 ast_expression_delete((ast_expression*)self);
1036 bool ast_block_set_type(ast_block *self, ast_expression *from)
1038 if (self->expression.next)
1039 ast_delete(self->expression.next);
1040 if (!ast_type_adopt(self, from))
1045 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype)
1047 ast_instantiate(ast_function, ctx, ast_function_delete);
1051 vtype->expression.vtype != TYPE_FUNCTION)
1053 compile_error(ast_ctx(self), "internal error: ast_function_new condition %i %i type=%i (probably 2 bodies?)",
1055 (int)vtype->hasvalue,
1056 vtype->expression.vtype);
1061 self->vtype = vtype;
1062 self->name = name ? util_strdup(name) : NULL;
1063 self->blocks = NULL;
1065 self->labelcount = 0;
1068 self->ir_func = NULL;
1069 self->curblock = NULL;
1071 self->breakblocks = NULL;
1072 self->continueblocks = NULL;
1074 vtype->hasvalue = true;
1075 vtype->constval.vfunc = self;
1080 void ast_function_delete(ast_function *self)
1084 mem_d((void*)self->name);
1086 /* ast_value_delete(self->vtype); */
1087 self->vtype->hasvalue = false;
1088 self->vtype->constval.vfunc = NULL;
1089 /* We use unref - if it was stored in a global table it is supposed
1090 * to be deleted from *there*
1092 ast_unref(self->vtype);
1094 for (i = 0; i < vec_size(self->blocks); ++i)
1095 ast_delete(self->blocks[i]);
1096 vec_free(self->blocks);
1097 vec_free(self->breakblocks);
1098 vec_free(self->continueblocks);
1102 const char* ast_function_label(ast_function *self, const char *prefix)
1108 if (!opts.dump && !opts.dumpfin && !opts.debug)
1111 id = (self->labelcount++);
1112 len = strlen(prefix);
1114 from = self->labelbuf + sizeof(self->labelbuf)-1;
1117 *from-- = (id%10) + '0';
1121 memcpy(from - len, prefix, len);
1125 /*********************************************************************/
1127 * by convention you must never pass NULL to the 'ir_value **out'
1128 * parameter. If you really don't care about the output, pass a dummy.
1129 * But I can't imagine a pituation where the output is truly unnecessary.
1132 void _ast_codegen_output_type(ast_expression_common *self, ir_value *out)
1134 if (out->vtype == TYPE_FIELD)
1135 out->fieldtype = self->next->expression.vtype;
1136 if (out->vtype == TYPE_FUNCTION)
1137 out->outtype = self->next->expression.vtype;
1140 #define codegen_output_type(a,o) (_ast_codegen_output_type(&((a)->expression),(o)))
1142 bool ast_value_codegen(ast_value *self, ast_function *func, bool lvalue, ir_value **out)
1146 if (self->expression.vtype == TYPE_NIL) {
1147 *out = func->ir_func->owner->nil;
1150 /* NOTE: This is the codegen for a variable used in an expression.
1151 * It is not the codegen to generate the value. For this purpose,
1152 * ast_local_codegen and ast_global_codegen are to be used before this
1153 * is executed. ast_function_codegen should take care of its locals,
1154 * and the ast-user should take care of ast_global_codegen to be used
1155 * on all the globals.
1158 char tname[1024]; /* typename is reserved in C++ */
1159 ast_type_to_string((ast_expression*)self, tname, sizeof(tname));
1160 compile_error(ast_ctx(self), "ast_value used before generated %s %s", tname, self->name);
1167 bool ast_global_codegen(ast_value *self, ir_builder *ir, bool isfield)
1171 if (self->expression.vtype == TYPE_NIL) {
1172 compile_error(ast_ctx(self), "internal error: trying to generate a variable of TYPE_NIL");
1176 if (self->hasvalue && self->expression.vtype == TYPE_FUNCTION)
1178 ir_function *func = ir_builder_create_function(ir, self->name, self->expression.next->expression.vtype);
1181 func->context = ast_ctx(self);
1182 func->value->context = ast_ctx(self);
1184 self->constval.vfunc->ir_func = func;
1185 self->ir_v = func->value;
1186 if (self->expression.flags & AST_FLAG_INCLUDE_DEF)
1187 self->ir_v->flags |= IR_FLAG_INCLUDE_DEF;
1188 /* The function is filled later on ast_function_codegen... */
1192 if (isfield && self->expression.vtype == TYPE_FIELD) {
1193 ast_expression *fieldtype = self->expression.next;
1195 if (self->hasvalue) {
1196 compile_error(ast_ctx(self), "TODO: constant field pointers with value");
1200 if (fieldtype->expression.vtype == TYPE_ARRAY) {
1205 ast_expression_common *elemtype;
1207 ast_value *array = (ast_value*)fieldtype;
1209 if (!ast_istype(fieldtype, ast_value)) {
1210 compile_error(ast_ctx(self), "internal error: ast_value required");
1214 /* we are lame now - considering the way QC works we won't tolerate arrays > 1024 elements */
1215 if (!array->expression.count || array->expression.count > opts.max_array_size)
1216 compile_error(ast_ctx(self), "Invalid array of size %lu", (unsigned long)array->expression.count);
1218 elemtype = &array->expression.next->expression;
1219 vtype = elemtype->vtype;
1221 v = ir_builder_create_field(ir, self->name, vtype);
1223 compile_error(ast_ctx(self), "ir_builder_create_global failed on `%s`", self->name);
1226 v->context = ast_ctx(self);
1227 v->unique_life = true;
1229 array->ir_v = self->ir_v = v;
1230 if (self->expression.flags & AST_FLAG_INCLUDE_DEF)
1231 self->ir_v->flags |= IR_FLAG_INCLUDE_DEF;
1233 namelen = strlen(self->name);
1234 name = (char*)mem_a(namelen + 16);
1235 strcpy(name, self->name);
1237 array->ir_values = (ir_value**)mem_a(sizeof(array->ir_values[0]) * array->expression.count);
1238 array->ir_values[0] = v;
1239 for (ai = 1; ai < array->expression.count; ++ai) {
1240 snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
1241 array->ir_values[ai] = ir_builder_create_field(ir, name, vtype);
1242 if (!array->ir_values[ai]) {
1244 compile_error(ast_ctx(self), "ir_builder_create_global failed on `%s`", name);
1247 array->ir_values[ai]->context = ast_ctx(self);
1248 array->ir_values[ai]->unique_life = true;
1249 array->ir_values[ai]->locked = true;
1250 if (self->expression.flags & AST_FLAG_INCLUDE_DEF)
1251 self->ir_values[ai]->flags |= IR_FLAG_INCLUDE_DEF;
1257 v = ir_builder_create_field(ir, self->name, self->expression.next->expression.vtype);
1260 v->context = ast_ctx(self);
1262 if (self->expression.flags & AST_FLAG_INCLUDE_DEF)
1263 self->ir_v->flags |= IR_FLAG_INCLUDE_DEF;
1268 if (self->expression.vtype == TYPE_ARRAY) {
1273 ast_expression_common *elemtype = &self->expression.next->expression;
1274 int vtype = elemtype->vtype;
1276 /* same as with field arrays */
1277 if (!self->expression.count || self->expression.count > opts.max_array_size)
1278 compile_error(ast_ctx(self), "Invalid array of size %lu", (unsigned long)self->expression.count);
1280 v = ir_builder_create_global(ir, self->name, vtype);
1282 compile_error(ast_ctx(self), "ir_builder_create_global failed `%s`", self->name);
1285 v->context = ast_ctx(self);
1286 v->unique_life = true;
1288 if (self->expression.flags & AST_FLAG_INCLUDE_DEF)
1289 v->flags |= IR_FLAG_INCLUDE_DEF;
1291 namelen = strlen(self->name);
1292 name = (char*)mem_a(namelen + 16);
1293 strcpy(name, self->name);
1295 self->ir_values = (ir_value**)mem_a(sizeof(self->ir_values[0]) * self->expression.count);
1296 self->ir_values[0] = v;
1297 for (ai = 1; ai < self->expression.count; ++ai) {
1298 snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
1299 self->ir_values[ai] = ir_builder_create_global(ir, name, vtype);
1300 if (!self->ir_values[ai]) {
1302 compile_error(ast_ctx(self), "ir_builder_create_global failed `%s`", name);
1305 self->ir_values[ai]->context = ast_ctx(self);
1306 self->ir_values[ai]->unique_life = true;
1307 self->ir_values[ai]->locked = true;
1308 if (self->expression.flags & AST_FLAG_INCLUDE_DEF)
1309 self->ir_values[ai]->flags |= IR_FLAG_INCLUDE_DEF;
1315 /* Arrays don't do this since there's no "array" value which spans across the
1318 v = ir_builder_create_global(ir, self->name, self->expression.vtype);
1320 compile_error(ast_ctx(self), "ir_builder_create_global failed on `%s`", self->name);
1323 codegen_output_type(self, v);
1324 v->context = ast_ctx(self);
1327 if (self->hasvalue) {
1328 switch (self->expression.vtype)
1331 if (!ir_value_set_float(v, self->constval.vfloat))
1335 if (!ir_value_set_vector(v, self->constval.vvec))
1339 if (!ir_value_set_string(v, self->constval.vstring))
1343 compile_error(ast_ctx(self), "TODO: global constant array");
1346 compile_error(ast_ctx(self), "global of type function not properly generated");
1348 /* Cannot generate an IR value for a function,
1349 * need a pointer pointing to a function rather.
1352 if (!self->constval.vfield) {
1353 compile_error(ast_ctx(self), "field constant without vfield set");
1356 if (!self->constval.vfield->ir_v) {
1357 compile_error(ast_ctx(self), "field constant generated before its field");
1360 if (!ir_value_set_field(v, self->constval.vfield->ir_v))
1364 compile_error(ast_ctx(self), "TODO: global constant type %i", self->expression.vtype);
1369 /* link us to the ir_value */
1372 if (self->expression.flags & AST_FLAG_INCLUDE_DEF)
1373 self->ir_v->flags |= IR_FLAG_INCLUDE_DEF;
1376 error: /* clean up */
1381 bool ast_local_codegen(ast_value *self, ir_function *func, bool param)
1385 if (self->expression.vtype == TYPE_NIL) {
1386 compile_error(ast_ctx(self), "internal error: trying to generate a variable of TYPE_NIL");
1390 if (self->hasvalue && self->expression.vtype == TYPE_FUNCTION)
1392 /* Do we allow local functions? I think not...
1393 * this is NOT a function pointer atm.
1398 if (self->expression.vtype == TYPE_ARRAY) {
1403 ast_expression_common *elemtype = &self->expression.next->expression;
1404 int vtype = elemtype->vtype;
1406 func->flags |= IR_FLAG_HAS_ARRAYS;
1409 compile_error(ast_ctx(self), "array-parameters are not supported");
1413 /* we are lame now - considering the way QC works we won't tolerate arrays > 1024 elements */
1414 if (!self->expression.count || self->expression.count > opts.max_array_size) {
1415 compile_error(ast_ctx(self), "Invalid array of size %lu", (unsigned long)self->expression.count);
1418 self->ir_values = (ir_value**)mem_a(sizeof(self->ir_values[0]) * self->expression.count);
1419 if (!self->ir_values) {
1420 compile_error(ast_ctx(self), "failed to allocate array values");
1424 v = ir_function_create_local(func, self->name, vtype, param);
1426 compile_error(ast_ctx(self), "ir_function_create_local failed");
1429 v->context = ast_ctx(self);
1430 v->unique_life = true;
1433 namelen = strlen(self->name);
1434 name = (char*)mem_a(namelen + 16);
1435 strcpy(name, self->name);
1437 self->ir_values[0] = v;
1438 for (ai = 1; ai < self->expression.count; ++ai) {
1439 snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
1440 self->ir_values[ai] = ir_function_create_local(func, name, vtype, param);
1441 if (!self->ir_values[ai]) {
1442 compile_error(ast_ctx(self), "ir_builder_create_global failed on `%s`", name);
1445 self->ir_values[ai]->context = ast_ctx(self);
1446 self->ir_values[ai]->unique_life = true;
1447 self->ir_values[ai]->locked = true;
1452 v = ir_function_create_local(func, self->name, self->expression.vtype, param);
1455 codegen_output_type(self, v);
1456 v->context = ast_ctx(self);
1459 /* A constant local... hmmm...
1460 * I suppose the IR will have to deal with this
1462 if (self->hasvalue) {
1463 switch (self->expression.vtype)
1466 if (!ir_value_set_float(v, self->constval.vfloat))
1470 if (!ir_value_set_vector(v, self->constval.vvec))
1474 if (!ir_value_set_string(v, self->constval.vstring))
1478 compile_error(ast_ctx(self), "TODO: global constant type %i", self->expression.vtype);
1483 /* link us to the ir_value */
1487 if (!ast_generate_accessors(self, func->owner))
1491 error: /* clean up */
1496 bool ast_generate_accessors(ast_value *self, ir_builder *ir)
1499 bool warn = OPTS_WARN(WARN_USED_UNINITIALIZED);
1500 if (!self->setter || !self->getter)
1502 for (i = 0; i < self->expression.count; ++i) {
1503 if (!self->ir_values) {
1504 compile_error(ast_ctx(self), "internal error: no array values generated for `%s`", self->name);
1507 if (!self->ir_values[i]) {
1508 compile_error(ast_ctx(self), "internal error: not all array values have been generated for `%s`", self->name);
1511 if (self->ir_values[i]->life) {
1512 compile_error(ast_ctx(self), "internal error: function containing `%s` already generated", self->name);
1517 opts_set(opts.warn, WARN_USED_UNINITIALIZED, false);
1519 if (!ast_global_codegen (self->setter, ir, false) ||
1520 !ast_function_codegen(self->setter->constval.vfunc, ir) ||
1521 !ir_function_finalize(self->setter->constval.vfunc->ir_func))
1523 compile_error(ast_ctx(self), "internal error: failed to generate setter for `%s`", self->name);
1524 opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
1529 if (!ast_global_codegen (self->getter, ir, false) ||
1530 !ast_function_codegen(self->getter->constval.vfunc, ir) ||
1531 !ir_function_finalize(self->getter->constval.vfunc->ir_func))
1533 compile_error(ast_ctx(self), "internal error: failed to generate getter for `%s`", self->name);
1534 opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
1538 for (i = 0; i < self->expression.count; ++i) {
1539 vec_free(self->ir_values[i]->life);
1541 opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
1545 bool ast_function_codegen(ast_function *self, ir_builder *ir)
1549 ast_expression_common *ec;
1554 irf = self->ir_func;
1556 compile_error(ast_ctx(self), "ast_function's related ast_value was not generated yet");
1560 /* fill the parameter list */
1561 ec = &self->vtype->expression;
1562 for (i = 0; i < vec_size(ec->params); ++i)
1564 if (ec->params[i]->expression.vtype == TYPE_FIELD)
1565 vec_push(irf->params, ec->params[i]->expression.next->expression.vtype);
1567 vec_push(irf->params, ec->params[i]->expression.vtype);
1568 if (!self->builtin) {
1569 if (!ast_local_codegen(ec->params[i], self->ir_func, true))
1574 if (self->builtin) {
1575 irf->builtin = self->builtin;
1579 if (!vec_size(self->blocks)) {
1580 compile_error(ast_ctx(self), "function `%s` has no body", self->name);
1584 self->curblock = ir_function_create_block(ast_ctx(self), irf, "entry");
1585 if (!self->curblock) {
1586 compile_error(ast_ctx(self), "failed to allocate entry block for `%s`", self->name);
1590 for (i = 0; i < vec_size(self->blocks); ++i) {
1591 ast_expression_codegen *gen = self->blocks[i]->expression.codegen;
1592 if (!(*gen)((ast_expression*)self->blocks[i], self, false, &dummy))
1596 /* TODO: check return types */
1597 if (!self->curblock->final)
1599 if (!self->vtype->expression.next ||
1600 self->vtype->expression.next->expression.vtype == TYPE_VOID)
1602 return ir_block_create_return(self->curblock, ast_ctx(self), NULL);
1604 else if (vec_size(self->curblock->entries))
1606 /* error("missing return"); */
1607 if (compile_warning(ast_ctx(self), WARN_MISSING_RETURN_VALUES,
1608 "control reaches end of non-void function (`%s`) via %s",
1609 self->name, self->curblock->label))
1613 return ir_block_create_return(self->curblock, ast_ctx(self), NULL);
1619 /* Note, you will not see ast_block_codegen generate ir_blocks.
1620 * To the AST and the IR, blocks are 2 different things.
1621 * In the AST it represents a block of code, usually enclosed in
1622 * curly braces {...}.
1623 * While in the IR it represents a block in terms of control-flow.
1625 bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_value **out)
1629 /* We don't use this
1630 * Note: an ast-representation using the comma-operator
1631 * of the form: (a, b, c) = x should not assign to c...
1634 compile_error(ast_ctx(self), "not an l-value (code-block)");
1638 if (self->expression.outr) {
1639 *out = self->expression.outr;
1643 /* output is NULL at first, we'll have each expression
1644 * assign to out output, thus, a comma-operator represention
1645 * using an ast_block will return the last generated value,
1646 * so: (b, c) + a executed both b and c, and returns c,
1647 * which is then added to a.
1651 /* generate locals */
1652 for (i = 0; i < vec_size(self->locals); ++i)
1654 if (!ast_local_codegen(self->locals[i], func->ir_func, false)) {
1656 compile_error(ast_ctx(self), "failed to generate local `%s`", self->locals[i]->name);
1661 for (i = 0; i < vec_size(self->exprs); ++i)
1663 ast_expression_codegen *gen;
1664 if (func->curblock->final && !ast_istype(self->exprs[i], ast_label)) {
1665 if (compile_warning(ast_ctx(self->exprs[i]), WARN_UNREACHABLE_CODE, "unreachable statement"))
1669 gen = self->exprs[i]->expression.codegen;
1670 if (!(*gen)(self->exprs[i], func, false, out))
1674 self->expression.outr = *out;
1679 bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
1681 ast_expression_codegen *cgen;
1682 ir_value *left = NULL;
1683 ir_value *right = NULL;
1687 ast_array_index *ai = NULL;
1689 if (lvalue && self->expression.outl) {
1690 *out = self->expression.outl;
1694 if (!lvalue && self->expression.outr) {
1695 *out = self->expression.outr;
1699 if (ast_istype(self->dest, ast_array_index))
1702 ai = (ast_array_index*)self->dest;
1703 idx = (ast_value*)ai->index;
1705 if (ast_istype(ai->index, ast_value) && idx->hasvalue && idx->cvq == CV_CONST)
1710 /* we need to call the setter */
1711 ir_value *iridx, *funval;
1715 compile_error(ast_ctx(self), "array-subscript assignment cannot produce lvalues");
1719 arr = (ast_value*)ai->array;
1720 if (!ast_istype(ai->array, ast_value) || !arr->setter) {
1721 compile_error(ast_ctx(self), "value has no setter (%s)", arr->name);
1725 cgen = idx->expression.codegen;
1726 if (!(*cgen)((ast_expression*)(idx), func, false, &iridx))
1729 cgen = arr->setter->expression.codegen;
1730 if (!(*cgen)((ast_expression*)(arr->setter), func, true, &funval))
1733 cgen = self->source->expression.codegen;
1734 if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
1737 call = ir_block_create_call(func->curblock, ast_ctx(self), ast_function_label(func, "store"), funval, false);
1740 ir_call_param(call, iridx);
1741 ir_call_param(call, right);
1742 self->expression.outr = right;
1748 cgen = self->dest->expression.codegen;
1750 if (!(*cgen)((ast_expression*)(self->dest), func, true, &left))
1752 self->expression.outl = left;
1754 cgen = self->source->expression.codegen;
1756 if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
1759 if (!ir_block_create_store_op(func->curblock, ast_ctx(self), self->op, left, right))
1761 self->expression.outr = right;
1764 /* Theoretically, an assinment returns its left side as an
1765 * lvalue, if we don't need an lvalue though, we return
1766 * the right side as an rvalue, otherwise we have to
1767 * somehow know whether or not we need to dereference the pointer
1768 * on the left side - that is: OP_LOAD if it was an address.
1769 * Also: in original QC we cannot OP_LOADP *anyway*.
1771 *out = (lvalue ? left : right);
1776 bool ast_binary_codegen(ast_binary *self, ast_function *func, bool lvalue, ir_value **out)
1778 ast_expression_codegen *cgen;
1779 ir_value *left, *right;
1781 /* A binary operation cannot yield an l-value */
1783 compile_error(ast_ctx(self), "not an l-value (binop)");
1787 if (self->expression.outr) {
1788 *out = self->expression.outr;
1792 if ((OPTS_FLAG(SHORT_LOGIC) || OPTS_FLAG(PERL_LOGIC)) &&
1793 (self->op == INSTR_AND || self->op == INSTR_OR))
1795 /* short circuit evaluation */
1796 ir_block *other, *merge;
1797 ir_block *from_left, *from_right;
1801 /* prepare end-block */
1802 merge_id = vec_size(func->ir_func->blocks);
1803 merge = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "sce_merge"));
1805 /* generate the left expression */
1806 cgen = self->left->expression.codegen;
1807 if (!(*cgen)((ast_expression*)(self->left), func, false, &left))
1809 /* remember the block */
1810 from_left = func->curblock;
1812 /* create a new block for the right expression */
1813 other = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "sce_other"));
1814 if (self->op == INSTR_AND) {
1815 /* on AND: left==true -> other */
1816 if (!ir_block_create_if(func->curblock, ast_ctx(self), left, other, merge))
1819 /* on OR: left==false -> other */
1820 if (!ir_block_create_if(func->curblock, ast_ctx(self), left, merge, other))
1823 /* use the likely flag */
1824 vec_last(func->curblock->instr)->likely = true;
1826 /* enter the right-expression's block */
1827 func->curblock = other;
1829 cgen = self->right->expression.codegen;
1830 if (!(*cgen)((ast_expression*)(self->right), func, false, &right))
1832 /* remember block */
1833 from_right = func->curblock;
1835 /* jump to the merge block */
1836 if (!ir_block_create_jump(func->curblock, ast_ctx(self), merge))
1839 vec_remove(func->ir_func->blocks, merge_id, 1);
1840 vec_push(func->ir_func->blocks, merge);
1842 func->curblock = merge;
1843 phi = ir_block_create_phi(func->curblock, ast_ctx(self),
1844 ast_function_label(func, "sce_value"),
1845 self->expression.vtype);
1846 ir_phi_add(phi, from_left, left);
1847 ir_phi_add(phi, from_right, right);
1848 *out = ir_phi_value(phi);
1852 if (!OPTS_FLAG(PERL_LOGIC)) {
1854 if (OPTS_FLAG(CORRECT_LOGIC) && (*out)->vtype == TYPE_VECTOR) {
1855 *out = ir_block_create_unary(func->curblock, ast_ctx(self),
1856 ast_function_label(func, "sce_bool_v"),
1860 *out = ir_block_create_unary(func->curblock, ast_ctx(self),
1861 ast_function_label(func, "sce_bool"),
1866 else if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && (*out)->vtype == TYPE_STRING) {
1867 *out = ir_block_create_unary(func->curblock, ast_ctx(self),
1868 ast_function_label(func, "sce_bool_s"),
1872 *out = ir_block_create_unary(func->curblock, ast_ctx(self),
1873 ast_function_label(func, "sce_bool"),
1879 *out = ir_block_create_binop(func->curblock, ast_ctx(self),
1880 ast_function_label(func, "sce_bool"),
1881 INSTR_AND, *out, *out);
1887 self->expression.outr = *out;
1888 codegen_output_type(self, *out);
1892 cgen = self->left->expression.codegen;
1893 if (!(*cgen)((ast_expression*)(self->left), func, false, &left))
1896 cgen = self->right->expression.codegen;
1897 if (!(*cgen)((ast_expression*)(self->right), func, false, &right))
1900 *out = ir_block_create_binop(func->curblock, ast_ctx(self), ast_function_label(func, "bin"),
1901 self->op, left, right);
1904 self->expression.outr = *out;
1905 codegen_output_type(self, *out);
1910 bool ast_binstore_codegen(ast_binstore *self, ast_function *func, bool lvalue, ir_value **out)
1912 ast_expression_codegen *cgen;
1913 ir_value *leftl = NULL, *leftr, *right, *bin;
1917 ast_array_index *ai = NULL;
1918 ir_value *iridx = NULL;
1920 if (lvalue && self->expression.outl) {
1921 *out = self->expression.outl;
1925 if (!lvalue && self->expression.outr) {
1926 *out = self->expression.outr;
1930 if (ast_istype(self->dest, ast_array_index))
1933 ai = (ast_array_index*)self->dest;
1934 idx = (ast_value*)ai->index;
1936 if (ast_istype(ai->index, ast_value) && idx->hasvalue && idx->cvq == CV_CONST)
1940 /* for a binstore we need both an lvalue and an rvalue for the left side */
1941 /* rvalue of destination! */
1943 cgen = idx->expression.codegen;
1944 if (!(*cgen)((ast_expression*)(idx), func, false, &iridx))
1947 cgen = self->dest->expression.codegen;
1948 if (!(*cgen)((ast_expression*)(self->dest), func, false, &leftr))
1951 /* source as rvalue only */
1952 cgen = self->source->expression.codegen;
1953 if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
1956 /* now the binary */
1957 bin = ir_block_create_binop(func->curblock, ast_ctx(self), ast_function_label(func, "binst"),
1958 self->opbin, leftr, right);
1959 self->expression.outr = bin;
1963 /* we need to call the setter */
1968 compile_error(ast_ctx(self), "array-subscript assignment cannot produce lvalues");
1972 arr = (ast_value*)ai->array;
1973 if (!ast_istype(ai->array, ast_value) || !arr->setter) {
1974 compile_error(ast_ctx(self), "value has no setter (%s)", arr->name);
1978 cgen = arr->setter->expression.codegen;
1979 if (!(*cgen)((ast_expression*)(arr->setter), func, true, &funval))
1982 call = ir_block_create_call(func->curblock, ast_ctx(self), ast_function_label(func, "store"), funval, false);
1985 ir_call_param(call, iridx);
1986 ir_call_param(call, bin);
1987 self->expression.outr = bin;
1989 /* now store them */
1990 cgen = self->dest->expression.codegen;
1991 /* lvalue of destination */
1992 if (!(*cgen)((ast_expression*)(self->dest), func, true, &leftl))
1994 self->expression.outl = leftl;
1996 if (!ir_block_create_store_op(func->curblock, ast_ctx(self), self->opstore, leftl, bin))
1998 self->expression.outr = bin;
2001 /* Theoretically, an assinment returns its left side as an
2002 * lvalue, if we don't need an lvalue though, we return
2003 * the right side as an rvalue, otherwise we have to
2004 * somehow know whether or not we need to dereference the pointer
2005 * on the left side - that is: OP_LOAD if it was an address.
2006 * Also: in original QC we cannot OP_LOADP *anyway*.
2008 *out = (lvalue ? leftl : bin);
2013 bool ast_unary_codegen(ast_unary *self, ast_function *func, bool lvalue, ir_value **out)
2015 ast_expression_codegen *cgen;
2018 /* An unary operation cannot yield an l-value */
2020 compile_error(ast_ctx(self), "not an l-value (binop)");
2024 if (self->expression.outr) {
2025 *out = self->expression.outr;
2029 cgen = self->operand->expression.codegen;
2031 if (!(*cgen)((ast_expression*)(self->operand), func, false, &operand))
2034 *out = ir_block_create_unary(func->curblock, ast_ctx(self), ast_function_label(func, "unary"),
2038 self->expression.outr = *out;
2043 bool ast_return_codegen(ast_return *self, ast_function *func, bool lvalue, ir_value **out)
2045 ast_expression_codegen *cgen;
2050 /* In the context of a return operation, we don't actually return
2054 compile_error(ast_ctx(self), "return-expression is not an l-value");
2058 if (self->expression.outr) {
2059 compile_error(ast_ctx(self), "internal error: ast_return cannot be reused, it bears no result!");
2062 self->expression.outr = (ir_value*)1;
2064 if (self->operand) {
2065 cgen = self->operand->expression.codegen;
2067 if (!(*cgen)((ast_expression*)(self->operand), func, false, &operand))
2070 if (!ir_block_create_return(func->curblock, ast_ctx(self), operand))
2073 if (!ir_block_create_return(func->curblock, ast_ctx(self), NULL))
2080 bool ast_entfield_codegen(ast_entfield *self, ast_function *func, bool lvalue, ir_value **out)
2082 ast_expression_codegen *cgen;
2083 ir_value *ent, *field;
2085 /* This function needs to take the 'lvalue' flag into account!
2086 * As lvalue we provide a field-pointer, as rvalue we provide the
2090 if (lvalue && self->expression.outl) {
2091 *out = self->expression.outl;
2095 if (!lvalue && self->expression.outr) {
2096 *out = self->expression.outr;
2100 cgen = self->entity->expression.codegen;
2101 if (!(*cgen)((ast_expression*)(self->entity), func, false, &ent))
2104 cgen = self->field->expression.codegen;
2105 if (!(*cgen)((ast_expression*)(self->field), func, false, &field))
2110 *out = ir_block_create_fieldaddress(func->curblock, ast_ctx(self), ast_function_label(func, "efa"),
2113 *out = ir_block_create_load_from_ent(func->curblock, ast_ctx(self), ast_function_label(func, "efv"),
2114 ent, field, self->expression.vtype);
2115 /* Done AFTER error checking:
2116 codegen_output_type(self, *out);
2120 compile_error(ast_ctx(self), "failed to create %s instruction (output type %s)",
2121 (lvalue ? "ADDRESS" : "FIELD"),
2122 type_name[self->expression.vtype]);
2126 codegen_output_type(self, *out);
2129 self->expression.outl = *out;
2131 self->expression.outr = *out;
2133 /* Hm that should be it... */
2137 bool ast_member_codegen(ast_member *self, ast_function *func, bool lvalue, ir_value **out)
2139 ast_expression_codegen *cgen;
2142 /* in QC this is always an lvalue */
2143 if (lvalue && self->rvalue) {
2144 compile_error(ast_ctx(self), "not an l-value (member access)");
2147 if (self->expression.outl) {
2148 *out = self->expression.outl;
2152 cgen = self->owner->expression.codegen;
2153 if (!(*cgen)((ast_expression*)(self->owner), func, false, &vec))
2156 if (vec->vtype != TYPE_VECTOR &&
2157 !(vec->vtype == TYPE_FIELD && self->owner->expression.next->expression.vtype == TYPE_VECTOR))
2162 *out = ir_value_vector_member(vec, self->field);
2163 self->expression.outl = *out;
2165 return (*out != NULL);
2168 bool ast_array_index_codegen(ast_array_index *self, ast_function *func, bool lvalue, ir_value **out)
2173 if (!lvalue && self->expression.outr) {
2174 *out = self->expression.outr;
2176 if (lvalue && self->expression.outl) {
2177 *out = self->expression.outl;
2180 if (!ast_istype(self->array, ast_value)) {
2181 compile_error(ast_ctx(self), "array indexing this way is not supported");
2182 /* note this would actually be pointer indexing because the left side is
2183 * not an actual array but (hopefully) an indexable expression.
2184 * Once we get integer arithmetic, and GADDRESS/GSTORE/GLOAD instruction
2185 * support this path will be filled.
2190 arr = (ast_value*)self->array;
2191 idx = (ast_value*)self->index;
2193 if (!ast_istype(self->index, ast_value) || !idx->hasvalue || idx->cvq != CV_CONST) {
2194 /* Time to use accessor functions */
2195 ast_expression_codegen *cgen;
2196 ir_value *iridx, *funval;
2200 compile_error(ast_ctx(self), "(.2) array indexing here needs a compile-time constant");
2205 compile_error(ast_ctx(self), "value has no getter, don't know how to index it");
2209 cgen = self->index->expression.codegen;
2210 if (!(*cgen)((ast_expression*)(self->index), func, false, &iridx))
2213 cgen = arr->getter->expression.codegen;
2214 if (!(*cgen)((ast_expression*)(arr->getter), func, true, &funval))
2217 call = ir_block_create_call(func->curblock, ast_ctx(self), ast_function_label(func, "fetch"), funval, false);
2220 ir_call_param(call, iridx);
2222 *out = ir_call_value(call);
2223 self->expression.outr = *out;
2227 if (idx->expression.vtype == TYPE_FLOAT) {
2228 unsigned int arridx = idx->constval.vfloat;
2229 if (arridx >= self->array->expression.count)
2231 compile_error(ast_ctx(self), "array index out of bounds: %i", arridx);
2234 *out = arr->ir_values[arridx];
2236 else if (idx->expression.vtype == TYPE_INTEGER) {
2237 unsigned int arridx = idx->constval.vint;
2238 if (arridx >= self->array->expression.count)
2240 compile_error(ast_ctx(self), "array index out of bounds: %i", arridx);
2243 *out = arr->ir_values[arridx];
2246 compile_error(ast_ctx(self), "array indexing here needs an integer constant");
2252 bool ast_ifthen_codegen(ast_ifthen *self, ast_function *func, bool lvalue, ir_value **out)
2254 ast_expression_codegen *cgen;
2262 ir_block *ontrue_endblock = NULL;
2263 ir_block *onfalse_endblock = NULL;
2264 ir_block *merge = NULL;
2266 /* We don't output any value, thus also don't care about r/lvalue */
2270 if (self->expression.outr) {
2271 compile_error(ast_ctx(self), "internal error: ast_ifthen cannot be reused, it bears no result!");
2274 self->expression.outr = (ir_value*)1;
2276 /* generate the condition */
2277 cgen = self->cond->expression.codegen;
2278 if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
2280 /* update the block which will get the jump - because short-logic or ternaries may have changed this */
2281 cond = func->curblock;
2285 if (self->on_true) {
2286 /* create on-true block */
2287 ontrue = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "ontrue"));
2291 /* enter the block */
2292 func->curblock = ontrue;
2295 cgen = self->on_true->expression.codegen;
2296 if (!(*cgen)((ast_expression*)(self->on_true), func, false, &dummy))
2299 /* we now need to work from the current endpoint */
2300 ontrue_endblock = func->curblock;
2305 if (self->on_false) {
2306 /* create on-false block */
2307 onfalse = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "onfalse"));
2311 /* enter the block */
2312 func->curblock = onfalse;
2315 cgen = self->on_false->expression.codegen;
2316 if (!(*cgen)((ast_expression*)(self->on_false), func, false, &dummy))
2319 /* we now need to work from the current endpoint */
2320 onfalse_endblock = func->curblock;
2324 /* Merge block were they all merge in to */
2325 if (!ontrue || !onfalse || !ontrue_endblock->final || !onfalse_endblock->final)
2327 merge = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "endif"));
2330 /* add jumps ot the merge block */
2331 if (ontrue && !ontrue_endblock->final && !ir_block_create_jump(ontrue_endblock, ast_ctx(self), merge))
2333 if (onfalse && !onfalse_endblock->final && !ir_block_create_jump(onfalse_endblock, ast_ctx(self), merge))
2336 /* Now enter the merge block */
2337 func->curblock = merge;
2340 /* we create the if here, that way all blocks are ordered :)
2342 if (!ir_block_create_if(cond, ast_ctx(self), condval,
2343 (ontrue ? ontrue : merge),
2344 (onfalse ? onfalse : merge)))
2352 bool ast_ternary_codegen(ast_ternary *self, ast_function *func, bool lvalue, ir_value **out)
2354 ast_expression_codegen *cgen;
2357 ir_value *trueval, *falseval;
2360 ir_block *cond = func->curblock;
2361 ir_block *cond_out = NULL;
2362 ir_block *ontrue, *ontrue_out = NULL;
2363 ir_block *onfalse, *onfalse_out = NULL;
2366 /* Ternary can never create an lvalue... */
2370 /* In theory it shouldn't be possible to pass through a node twice, but
2371 * in case we add any kind of optimization pass for the AST itself, it
2372 * may still happen, thus we remember a created ir_value and simply return one
2373 * if it already exists.
2375 if (self->expression.outr) {
2376 *out = self->expression.outr;
2380 /* In the following, contraty to ast_ifthen, we assume both paths exist. */
2382 /* generate the condition */
2383 func->curblock = cond;
2384 cgen = self->cond->expression.codegen;
2385 if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
2387 cond_out = func->curblock;
2389 /* create on-true block */
2390 ontrue = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "tern_T"));
2395 /* enter the block */
2396 func->curblock = ontrue;
2399 cgen = self->on_true->expression.codegen;
2400 if (!(*cgen)((ast_expression*)(self->on_true), func, false, &trueval))
2403 ontrue_out = func->curblock;
2406 /* create on-false block */
2407 onfalse = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "tern_F"));
2412 /* enter the block */
2413 func->curblock = onfalse;
2416 cgen = self->on_false->expression.codegen;
2417 if (!(*cgen)((ast_expression*)(self->on_false), func, false, &falseval))
2420 onfalse_out = func->curblock;
2423 /* create merge block */
2424 merge = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "tern_out"));
2427 /* jump to merge block */
2428 if (!ir_block_create_jump(ontrue_out, ast_ctx(self), merge))
2430 if (!ir_block_create_jump(onfalse_out, ast_ctx(self), merge))
2433 /* create if instruction */
2434 if (!ir_block_create_if(cond_out, ast_ctx(self), condval, ontrue, onfalse))
2437 /* Now enter the merge block */
2438 func->curblock = merge;
2440 /* Here, now, we need a PHI node
2441 * but first some sanity checking...
2443 if (trueval->vtype != falseval->vtype && trueval->vtype != TYPE_NIL && falseval->vtype != TYPE_NIL) {
2444 /* error("ternary with different types on the two sides"); */
2445 compile_error(ast_ctx(self), "internal error: ternary operand types invalid");
2450 phi = ir_block_create_phi(merge, ast_ctx(self), ast_function_label(func, "phi"), self->expression.vtype);
2452 compile_error(ast_ctx(self), "internal error: failed to generate phi node");
2455 ir_phi_add(phi, ontrue_out, trueval);
2456 ir_phi_add(phi, onfalse_out, falseval);
2458 self->expression.outr = ir_phi_value(phi);
2459 *out = self->expression.outr;
2461 codegen_output_type(self, *out);
2466 bool ast_loop_codegen(ast_loop *self, ast_function *func, bool lvalue, ir_value **out)
2468 ast_expression_codegen *cgen;
2470 ir_value *dummy = NULL;
2471 ir_value *precond = NULL;
2472 ir_value *postcond = NULL;
2474 /* Since we insert some jumps "late" so we have blocks
2475 * ordered "nicely", we need to keep track of the actual end-blocks
2476 * of expressions to add the jumps to.
2478 ir_block *bbody = NULL, *end_bbody = NULL;
2479 ir_block *bprecond = NULL, *end_bprecond = NULL;
2480 ir_block *bpostcond = NULL, *end_bpostcond = NULL;
2481 ir_block *bincrement = NULL, *end_bincrement = NULL;
2482 ir_block *bout = NULL, *bin = NULL;
2484 /* let's at least move the outgoing block to the end */
2487 /* 'break' and 'continue' need to be able to find the right blocks */
2488 ir_block *bcontinue = NULL;
2489 ir_block *bbreak = NULL;
2491 ir_block *tmpblock = NULL;
2496 if (self->expression.outr) {
2497 compile_error(ast_ctx(self), "internal error: ast_loop cannot be reused, it bears no result!");
2500 self->expression.outr = (ir_value*)1;
2503 * Should we ever need some kind of block ordering, better make this function
2504 * move blocks around than write a block ordering algorithm later... after all
2505 * the ast and ir should work together, not against each other.
2508 /* initexpr doesn't get its own block, it's pointless, it could create more blocks
2509 * anyway if for example it contains a ternary.
2513 cgen = self->initexpr->expression.codegen;
2514 if (!(*cgen)((ast_expression*)(self->initexpr), func, false, &dummy))
2518 /* Store the block from which we enter this chaos */
2519 bin = func->curblock;
2521 /* The pre-loop condition needs its own block since we
2522 * need to be able to jump to the start of that expression.
2526 bprecond = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "pre_loop_cond"));
2530 /* the pre-loop-condition the least important place to 'continue' at */
2531 bcontinue = bprecond;
2534 func->curblock = bprecond;
2537 cgen = self->precond->expression.codegen;
2538 if (!(*cgen)((ast_expression*)(self->precond), func, false, &precond))
2541 end_bprecond = func->curblock;
2543 bprecond = end_bprecond = NULL;
2546 /* Now the next blocks won't be ordered nicely, but we need to
2547 * generate them this early for 'break' and 'continue'.
2549 if (self->increment) {
2550 bincrement = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "loop_increment"));
2553 bcontinue = bincrement; /* increment comes before the pre-loop-condition */
2555 bincrement = end_bincrement = NULL;
2558 if (self->postcond) {
2559 bpostcond = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "post_loop_cond"));
2562 bcontinue = bpostcond; /* postcond comes before the increment */
2564 bpostcond = end_bpostcond = NULL;
2567 bout_id = vec_size(func->ir_func->blocks);
2568 bout = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "after_loop"));
2573 /* The loop body... */
2574 /* if (self->body) */
2576 bbody = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "loop_body"));
2581 func->curblock = bbody;
2583 vec_push(func->breakblocks, bbreak);
2585 vec_push(func->continueblocks, bcontinue);
2587 vec_push(func->continueblocks, bbody);
2591 cgen = self->body->expression.codegen;
2592 if (!(*cgen)((ast_expression*)(self->body), func, false, &dummy))
2596 end_bbody = func->curblock;
2597 vec_pop(func->breakblocks);
2598 vec_pop(func->continueblocks);
2601 /* post-loop-condition */
2605 func->curblock = bpostcond;
2608 cgen = self->postcond->expression.codegen;
2609 if (!(*cgen)((ast_expression*)(self->postcond), func, false, &postcond))
2612 end_bpostcond = func->curblock;
2615 /* The incrementor */
2616 if (self->increment)
2619 func->curblock = bincrement;
2622 cgen = self->increment->expression.codegen;
2623 if (!(*cgen)((ast_expression*)(self->increment), func, false, &dummy))
2626 end_bincrement = func->curblock;
2629 /* In any case now, we continue from the outgoing block */
2630 func->curblock = bout;
2632 /* Now all blocks are in place */
2633 /* From 'bin' we jump to whatever comes first */
2634 if (bprecond) tmpblock = bprecond;
2635 else if (bbody) tmpblock = bbody;
2636 else if (bpostcond) tmpblock = bpostcond;
2637 else tmpblock = bout;
2638 if (!ir_block_create_jump(bin, ast_ctx(self), tmpblock))
2644 ir_block *ontrue, *onfalse;
2645 if (bbody) ontrue = bbody;
2646 else if (bincrement) ontrue = bincrement;
2647 else if (bpostcond) ontrue = bpostcond;
2648 else ontrue = bprecond;
2650 if (self->pre_not) {
2655 if (!ir_block_create_if(end_bprecond, ast_ctx(self), precond, ontrue, onfalse))
2662 if (bincrement) tmpblock = bincrement;
2663 else if (bpostcond) tmpblock = bpostcond;
2664 else if (bprecond) tmpblock = bprecond;
2665 else tmpblock = bbody;
2666 if (!end_bbody->final && !ir_block_create_jump(end_bbody, ast_ctx(self), tmpblock))
2670 /* from increment */
2673 if (bpostcond) tmpblock = bpostcond;
2674 else if (bprecond) tmpblock = bprecond;
2675 else if (bbody) tmpblock = bbody;
2676 else tmpblock = bout;
2677 if (!ir_block_create_jump(end_bincrement, ast_ctx(self), tmpblock))
2684 ir_block *ontrue, *onfalse;
2685 if (bprecond) ontrue = bprecond;
2686 else if (bbody) ontrue = bbody;
2687 else if (bincrement) ontrue = bincrement;
2688 else ontrue = bpostcond;
2690 if (self->post_not) {
2695 if (!ir_block_create_if(end_bpostcond, ast_ctx(self), postcond, ontrue, onfalse))
2699 /* Move 'bout' to the end */
2700 vec_remove(func->ir_func->blocks, bout_id, 1);
2701 vec_push(func->ir_func->blocks, bout);
2706 bool ast_breakcont_codegen(ast_breakcont *self, ast_function *func, bool lvalue, ir_value **out)
2713 compile_error(ast_ctx(self), "break/continue expression is not an l-value");
2717 if (self->expression.outr) {
2718 compile_error(ast_ctx(self), "internal error: ast_breakcont cannot be reused!");
2721 self->expression.outr = (ir_value*)1;
2723 if (self->is_continue)
2724 target = func->continueblocks[vec_size(func->continueblocks)-1-self->levels];
2726 target = func->breakblocks[vec_size(func->breakblocks)-1-self->levels];
2729 compile_error(ast_ctx(self), "%s is lacking a target block", (self->is_continue ? "continue" : "break"));
2733 if (!ir_block_create_jump(func->curblock, ast_ctx(self), target))
2738 bool ast_switch_codegen(ast_switch *self, ast_function *func, bool lvalue, ir_value **out)
2740 ast_expression_codegen *cgen;
2742 ast_switch_case *def_case = NULL;
2743 ir_block *def_bfall = NULL;
2744 ir_block *def_bfall_to = NULL;
2745 bool set_def_bfall_to = false;
2747 ir_value *dummy = NULL;
2748 ir_value *irop = NULL;
2749 ir_block *bout = NULL;
2750 ir_block *bfall = NULL;
2758 compile_error(ast_ctx(self), "switch expression is not an l-value");
2762 if (self->expression.outr) {
2763 compile_error(ast_ctx(self), "internal error: ast_switch cannot be reused!");
2766 self->expression.outr = (ir_value*)1;
2771 cgen = self->operand->expression.codegen;
2772 if (!(*cgen)((ast_expression*)(self->operand), func, false, &irop))
2775 if (!vec_size(self->cases))
2778 cmpinstr = type_eq_instr[irop->vtype];
2779 if (cmpinstr >= AINSTR_END) {
2780 ast_type_to_string(self->operand, typestr, sizeof(typestr));
2781 compile_error(ast_ctx(self), "invalid type to perform a switch on: %s", typestr);
2785 bout_id = vec_size(func->ir_func->blocks);
2786 bout = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "after_switch"));
2790 /* setup the break block */
2791 vec_push(func->breakblocks, bout);
2793 /* Now create all cases */
2794 for (c = 0; c < vec_size(self->cases); ++c) {
2795 ir_value *cond, *val;
2796 ir_block *bcase, *bnot;
2799 ast_switch_case *swcase = &self->cases[c];
2801 if (swcase->value) {
2802 /* A regular case */
2803 /* generate the condition operand */
2804 cgen = swcase->value->expression.codegen;
2805 if (!(*cgen)((ast_expression*)(swcase->value), func, false, &val))
2807 /* generate the condition */
2808 cond = ir_block_create_binop(func->curblock, ast_ctx(self), ast_function_label(func, "switch_eq"), cmpinstr, irop, val);
2812 bcase = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "case"));
2813 bnot_id = vec_size(func->ir_func->blocks);
2814 bnot = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "not_case"));
2815 if (!bcase || !bnot)
2817 if (set_def_bfall_to) {
2818 set_def_bfall_to = false;
2819 def_bfall_to = bcase;
2821 if (!ir_block_create_if(func->curblock, ast_ctx(self), cond, bcase, bnot))
2824 /* Make the previous case-end fall through */
2825 if (bfall && !bfall->final) {
2826 if (!ir_block_create_jump(bfall, ast_ctx(self), bcase))
2830 /* enter the case */
2831 func->curblock = bcase;
2832 cgen = swcase->code->expression.codegen;
2833 if (!(*cgen)((ast_expression*)swcase->code, func, false, &dummy))
2836 /* remember this block to fall through from */
2837 bfall = func->curblock;
2839 /* enter the else and move it down */
2840 func->curblock = bnot;
2841 vec_remove(func->ir_func->blocks, bnot_id, 1);
2842 vec_push(func->ir_func->blocks, bnot);
2844 /* The default case */
2845 /* Remember where to fall through from: */
2848 /* remember which case it was */
2850 /* And the next case will be remembered */
2851 set_def_bfall_to = true;
2855 /* Jump from the last bnot to bout */
2856 if (bfall && !bfall->final && !ir_block_create_jump(bfall, ast_ctx(self), bout)) {
2858 astwarning(ast_ctx(bfall), WARN_???, "missing break after last case");
2863 /* If there was a default case, put it down here */
2867 /* No need to create an extra block */
2868 bcase = func->curblock;
2870 /* Insert the fallthrough jump */
2871 if (def_bfall && !def_bfall->final) {
2872 if (!ir_block_create_jump(def_bfall, ast_ctx(self), bcase))
2876 /* Now generate the default code */
2877 cgen = def_case->code->expression.codegen;
2878 if (!(*cgen)((ast_expression*)def_case->code, func, false, &dummy))
2881 /* see if we need to fall through */
2882 if (def_bfall_to && !func->curblock->final)
2884 if (!ir_block_create_jump(func->curblock, ast_ctx(self), def_bfall_to))
2889 /* Jump from the last bnot to bout */
2890 if (!func->curblock->final && !ir_block_create_jump(func->curblock, ast_ctx(self), bout))
2892 /* enter the outgoing block */
2893 func->curblock = bout;
2895 /* restore the break block */
2896 vec_pop(func->breakblocks);
2898 /* Move 'bout' to the end, it's nicer */
2899 vec_remove(func->ir_func->blocks, bout_id, 1);
2900 vec_push(func->ir_func->blocks, bout);
2905 bool ast_label_codegen(ast_label *self, ast_function *func, bool lvalue, ir_value **out)
2910 if (self->undefined) {
2911 compile_error(ast_ctx(self), "internal error: ast_label never defined");
2917 compile_error(ast_ctx(self), "internal error: ast_label cannot be an lvalue");
2921 /* simply create a new block and jump to it */
2922 self->irblock = ir_function_create_block(ast_ctx(self), func->ir_func, self->name);
2923 if (!self->irblock) {
2924 compile_error(ast_ctx(self), "failed to allocate label block `%s`", self->name);
2927 if (!func->curblock->final) {
2928 if (!ir_block_create_jump(func->curblock, ast_ctx(self), self->irblock))
2932 /* enter the new block */
2933 func->curblock = self->irblock;
2935 /* Generate all the leftover gotos */
2936 for (i = 0; i < vec_size(self->gotos); ++i) {
2937 if (!ast_goto_codegen(self->gotos[i], func, false, &dummy))
2944 bool ast_goto_codegen(ast_goto *self, ast_function *func, bool lvalue, ir_value **out)
2948 compile_error(ast_ctx(self), "internal error: ast_goto cannot be an lvalue");
2952 if (self->target->irblock) {
2953 if (self->irblock_from) {
2954 /* we already tried once, this is the callback */
2955 self->irblock_from->final = false;
2956 if (!ir_block_create_goto(self->irblock_from, ast_ctx(self), self->target->irblock)) {
2957 compile_error(ast_ctx(self), "failed to generate goto to `%s`", self->name);
2963 if (!ir_block_create_goto(func->curblock, ast_ctx(self), self->target->irblock)) {
2964 compile_error(ast_ctx(self), "failed to generate goto to `%s`", self->name);
2971 /* the target has not yet been created...
2972 * close this block in a sneaky way:
2974 func->curblock->final = true;
2975 self->irblock_from = func->curblock;
2976 ast_label_register_goto(self->target, self);
2982 bool ast_call_codegen(ast_call *self, ast_function *func, bool lvalue, ir_value **out)
2984 ast_expression_codegen *cgen;
2986 ir_instr *callinstr;
2989 ir_value *funval = NULL;
2991 /* return values are never lvalues */
2993 compile_error(ast_ctx(self), "not an l-value (function call)");
2997 if (self->expression.outr) {
2998 *out = self->expression.outr;
3002 cgen = self->func->expression.codegen;
3003 if (!(*cgen)((ast_expression*)(self->func), func, false, &funval))
3011 for (i = 0; i < vec_size(self->params); ++i)
3014 ast_expression *expr = self->params[i];
3016 cgen = expr->expression.codegen;
3017 if (!(*cgen)(expr, func, false, ¶m))
3021 vec_push(params, param);
3024 callinstr = ir_block_create_call(func->curblock, ast_ctx(self),
3025 ast_function_label(func, "call"),
3026 funval, !!(self->func->expression.flags & AST_FLAG_NORETURN));
3030 for (i = 0; i < vec_size(params); ++i) {
3031 ir_call_param(callinstr, params[i]);
3034 *out = ir_call_value(callinstr);
3035 self->expression.outr = *out;
3037 codegen_output_type(self, *out);