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;
80 static void ast_expression_delete(ast_expression *self)
83 if (self->expression.next)
84 ast_delete(self->expression.next);
85 for (i = 0; i < vec_size(self->expression.params); ++i) {
86 ast_delete(self->expression.params[i]);
88 vec_free(self->expression.params);
91 static void ast_expression_delete_full(ast_expression *self)
93 ast_expression_delete(self);
97 ast_value* ast_value_copy(const ast_value *self)
100 const ast_expression_common *fromex;
101 ast_expression_common *selfex;
102 ast_value *cp = ast_value_new(self->expression.node.context, self->name, self->expression.vtype);
103 if (self->expression.next) {
104 cp->expression.next = ast_type_copy(self->expression.node.context, self->expression.next);
105 if (!cp->expression.next) {
106 ast_value_delete(cp);
110 fromex = &self->expression;
111 selfex = &cp->expression;
112 selfex->count = fromex->count;
113 selfex->flags = fromex->flags;
114 for (i = 0; i < vec_size(fromex->params); ++i) {
115 ast_value *v = ast_value_copy(fromex->params[i]);
117 ast_value_delete(cp);
120 vec_push(selfex->params, v);
125 bool ast_type_adopt_impl(ast_expression *self, const ast_expression *other)
128 const ast_expression_common *fromex;
129 ast_expression_common *selfex;
130 self->expression.vtype = other->expression.vtype;
131 if (other->expression.next) {
132 self->expression.next = (ast_expression*)ast_type_copy(ast_ctx(self), other->expression.next);
133 if (!self->expression.next)
136 fromex = &other->expression;
137 selfex = &self->expression;
138 selfex->count = fromex->count;
139 selfex->flags = fromex->flags;
140 for (i = 0; i < vec_size(fromex->params); ++i) {
141 ast_value *v = ast_value_copy(fromex->params[i]);
144 vec_push(selfex->params, v);
149 static ast_expression* ast_shallow_type(lex_ctx ctx, int vtype)
151 ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
152 ast_expression_init(self, NULL);
153 self->expression.codegen = NULL;
154 self->expression.next = NULL;
155 self->expression.vtype = vtype;
159 ast_expression* ast_type_copy(lex_ctx ctx, const ast_expression *ex)
162 const ast_expression_common *fromex;
163 ast_expression_common *selfex;
169 ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
170 ast_expression_init(self, NULL);
172 fromex = &ex->expression;
173 selfex = &self->expression;
175 /* This may never be codegen()d */
176 selfex->codegen = NULL;
178 selfex->vtype = fromex->vtype;
181 selfex->next = ast_type_copy(ctx, fromex->next);
183 ast_expression_delete_full(self);
190 selfex->count = fromex->count;
191 selfex->flags = fromex->flags;
192 for (i = 0; i < vec_size(fromex->params); ++i) {
193 ast_value *v = ast_value_copy(fromex->params[i]);
195 ast_expression_delete_full(self);
198 vec_push(selfex->params, v);
205 bool ast_compare_type(ast_expression *a, ast_expression *b)
207 if (a->expression.vtype == TYPE_NIL ||
208 b->expression.vtype == TYPE_NIL)
210 if (a->expression.vtype != b->expression.vtype)
212 if (!a->expression.next != !b->expression.next)
214 if (vec_size(a->expression.params) != vec_size(b->expression.params))
216 if ((a->expression.flags & AST_FLAG_TYPE_MASK) !=
217 (b->expression.flags & AST_FLAG_TYPE_MASK) )
221 if (vec_size(a->expression.params)) {
223 for (i = 0; i < vec_size(a->expression.params); ++i) {
224 if (!ast_compare_type((ast_expression*)a->expression.params[i],
225 (ast_expression*)b->expression.params[i]))
229 if (a->expression.next)
230 return ast_compare_type(a->expression.next, b->expression.next);
234 static size_t ast_type_to_string_impl(ast_expression *e, char *buf, size_t bufsize, size_t pos)
241 if (pos + 6 >= bufsize)
243 strcpy(buf + pos, "(null)");
247 if (pos + 1 >= bufsize)
250 switch (e->expression.vtype) {
252 strcpy(buf + pos, "(variant)");
257 return ast_type_to_string_impl(e->expression.next, buf, bufsize, pos);
260 if (pos + 3 >= bufsize)
264 pos = ast_type_to_string_impl(e->expression.next, buf, bufsize, pos);
265 if (pos + 1 >= bufsize)
271 pos = ast_type_to_string_impl(e->expression.next, buf, bufsize, pos);
272 if (pos + 2 >= bufsize)
274 if (!vec_size(e->expression.params)) {
280 pos = ast_type_to_string_impl((ast_expression*)(e->expression.params[0]), buf, bufsize, pos);
281 for (i = 1; i < vec_size(e->expression.params); ++i) {
282 if (pos + 2 >= bufsize)
286 pos = ast_type_to_string_impl((ast_expression*)(e->expression.params[i]), buf, bufsize, pos);
288 if (pos + 1 >= bufsize)
294 pos = ast_type_to_string_impl(e->expression.next, buf, bufsize, pos);
295 if (pos + 1 >= bufsize)
298 pos += snprintf(buf + pos, bufsize - pos - 1, "%i", (int)e->expression.count);
299 if (pos + 1 >= bufsize)
305 typestr = type_name[e->expression.vtype];
306 typelen = strlen(typestr);
307 if (pos + typelen >= bufsize)
309 strcpy(buf + pos, typestr);
310 return pos + typelen;
314 buf[bufsize-3] = '.';
315 buf[bufsize-2] = '.';
316 buf[bufsize-1] = '.';
320 void ast_type_to_string(ast_expression *e, char *buf, size_t bufsize)
322 size_t pos = ast_type_to_string_impl(e, buf, bufsize-1, 0);
326 ast_value* ast_value_new(lex_ctx ctx, const char *name, int t)
328 ast_instantiate(ast_value, ctx, ast_value_delete);
329 ast_expression_init((ast_expression*)self,
330 (ast_expression_codegen*)&ast_value_codegen);
331 self->expression.node.keep = true; /* keep */
333 self->name = name ? util_strdup(name) : NULL;
334 self->expression.vtype = t;
335 self->expression.next = NULL;
336 self->isfield = false;
338 self->hasvalue = false;
340 memset(&self->constval, 0, sizeof(self->constval));
343 self->ir_values = NULL;
344 self->ir_value_count = 0;
353 void ast_value_delete(ast_value* self)
356 mem_d((void*)self->name);
357 if (self->hasvalue) {
358 switch (self->expression.vtype)
361 mem_d((void*)self->constval.vstring);
364 /* unlink us from the function node */
365 self->constval.vfunc->vtype = NULL;
367 /* NOTE: delete function? currently collected in
368 * the parser structure
375 mem_d(self->ir_values);
380 ast_expression_delete((ast_expression*)self);
384 void ast_value_params_add(ast_value *self, ast_value *p)
386 vec_push(self->expression.params, p);
389 bool ast_value_set_name(ast_value *self, const char *name)
392 mem_d((void*)self->name);
393 self->name = util_strdup(name);
397 ast_binary* ast_binary_new(lex_ctx ctx, int op,
398 ast_expression* left, ast_expression* right)
400 ast_instantiate(ast_binary, ctx, ast_binary_delete);
401 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binary_codegen);
407 ast_propagate_effects(self, left);
408 ast_propagate_effects(self, right);
410 if (op >= INSTR_EQ_F && op <= INSTR_GT)
411 self->expression.vtype = TYPE_FLOAT;
412 else if (op == INSTR_AND || op == INSTR_OR) {
413 if (OPTS_FLAG(PERL_LOGIC))
414 ast_type_adopt(self, right);
416 self->expression.vtype = TYPE_FLOAT;
418 else if (op == INSTR_BITAND || op == INSTR_BITOR)
419 self->expression.vtype = TYPE_FLOAT;
420 else if (op == INSTR_MUL_VF || op == INSTR_MUL_FV)
421 self->expression.vtype = TYPE_VECTOR;
422 else if (op == INSTR_MUL_V)
423 self->expression.vtype = TYPE_FLOAT;
425 self->expression.vtype = left->expression.vtype;
430 void ast_binary_delete(ast_binary *self)
432 ast_unref(self->left);
433 ast_unref(self->right);
434 ast_expression_delete((ast_expression*)self);
438 ast_binstore* ast_binstore_new(lex_ctx ctx, int storop, int op,
439 ast_expression* left, ast_expression* right)
441 ast_instantiate(ast_binstore, ctx, ast_binstore_delete);
442 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binstore_codegen);
444 ast_side_effects(self) = true;
446 self->opstore = storop;
449 self->source = right;
451 self->keep_dest = false;
453 if (!ast_type_adopt(self, left)) {
461 void ast_binstore_delete(ast_binstore *self)
463 if (!self->keep_dest)
464 ast_unref(self->dest);
465 ast_unref(self->source);
466 ast_expression_delete((ast_expression*)self);
470 ast_unary* ast_unary_new(lex_ctx ctx, int op,
471 ast_expression *expr)
473 ast_instantiate(ast_unary, ctx, ast_unary_delete);
474 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_unary_codegen);
477 self->operand = expr;
479 ast_propagate_effects(self, expr);
481 if (op >= INSTR_NOT_F && op <= INSTR_NOT_FNC) {
482 self->expression.vtype = TYPE_FLOAT;
484 compile_error(ctx, "cannot determine type of unary operation %s", asm_instr[op].m);
489 void ast_unary_delete(ast_unary *self)
491 if (self->operand) ast_unref(self->operand);
492 ast_expression_delete((ast_expression*)self);
496 ast_return* ast_return_new(lex_ctx ctx, ast_expression *expr)
498 ast_instantiate(ast_return, ctx, ast_return_delete);
499 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_return_codegen);
501 self->operand = expr;
504 ast_propagate_effects(self, expr);
509 void ast_return_delete(ast_return *self)
512 ast_unref(self->operand);
513 ast_expression_delete((ast_expression*)self);
517 ast_entfield* ast_entfield_new(lex_ctx ctx, ast_expression *entity, ast_expression *field)
519 if (field->expression.vtype != TYPE_FIELD) {
520 compile_error(ctx, "ast_entfield_new with expression not of type field");
523 return ast_entfield_new_force(ctx, entity, field, field->expression.next);
526 ast_entfield* ast_entfield_new_force(lex_ctx ctx, ast_expression *entity, ast_expression *field, const ast_expression *outtype)
528 ast_instantiate(ast_entfield, ctx, ast_entfield_delete);
532 /* Error: field has no type... */
536 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_entfield_codegen);
538 self->entity = entity;
540 ast_propagate_effects(self, entity);
541 ast_propagate_effects(self, field);
543 if (!ast_type_adopt(self, outtype)) {
544 ast_entfield_delete(self);
551 void ast_entfield_delete(ast_entfield *self)
553 ast_unref(self->entity);
554 ast_unref(self->field);
555 ast_expression_delete((ast_expression*)self);
559 ast_member* ast_member_new(lex_ctx ctx, ast_expression *owner, unsigned int field, const char *name)
561 ast_instantiate(ast_member, ctx, ast_member_delete);
567 if (owner->expression.vtype != TYPE_VECTOR &&
568 owner->expression.vtype != TYPE_FIELD) {
569 compile_error(ctx, "member-access on an invalid owner of type %s", type_name[owner->expression.vtype]);
574 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_member_codegen);
575 self->expression.node.keep = true; /* keep */
577 if (owner->expression.vtype == TYPE_VECTOR) {
578 self->expression.vtype = TYPE_FLOAT;
579 self->expression.next = NULL;
581 self->expression.vtype = TYPE_FIELD;
582 self->expression.next = ast_shallow_type(ctx, TYPE_FLOAT);
585 self->rvalue = false;
587 ast_propagate_effects(self, owner);
591 self->name = util_strdup(name);
598 void ast_member_delete(ast_member *self)
600 /* The owner is always an ast_value, which has .keep=true,
601 * also: ast_members are usually deleted after the owner, thus
602 * this will cause invalid access
603 ast_unref(self->owner);
604 * once we allow (expression).x to access a vector-member, we need
605 * to change this: preferably by creating an alternate ast node for this
606 * purpose that is not garbage-collected.
608 ast_expression_delete((ast_expression*)self);
612 bool ast_member_set_name(ast_member *self, const char *name)
615 mem_d((void*)self->name);
616 self->name = util_strdup(name);
620 ast_array_index* ast_array_index_new(lex_ctx ctx, ast_expression *array, ast_expression *index)
622 ast_expression *outtype;
623 ast_instantiate(ast_array_index, ctx, ast_array_index_delete);
625 outtype = array->expression.next;
628 /* Error: field has no type... */
632 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_array_index_codegen);
636 ast_propagate_effects(self, array);
637 ast_propagate_effects(self, index);
639 if (!ast_type_adopt(self, outtype)) {
640 ast_array_index_delete(self);
643 if (array->expression.vtype == TYPE_FIELD && outtype->expression.vtype == TYPE_ARRAY) {
644 if (self->expression.vtype != TYPE_ARRAY) {
645 compile_error(ast_ctx(self), "array_index node on type");
646 ast_array_index_delete(self);
649 self->array = outtype;
650 self->expression.vtype = TYPE_FIELD;
656 void ast_array_index_delete(ast_array_index *self)
658 ast_unref(self->array);
659 ast_unref(self->index);
660 ast_expression_delete((ast_expression*)self);
664 ast_ifthen* ast_ifthen_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
666 ast_instantiate(ast_ifthen, ctx, ast_ifthen_delete);
667 if (!ontrue && !onfalse) {
668 /* because it is invalid */
672 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ifthen_codegen);
675 self->on_true = ontrue;
676 self->on_false = onfalse;
677 ast_propagate_effects(self, cond);
679 ast_propagate_effects(self, ontrue);
681 ast_propagate_effects(self, onfalse);
686 void ast_ifthen_delete(ast_ifthen *self)
688 ast_unref(self->cond);
690 ast_unref(self->on_true);
692 ast_unref(self->on_false);
693 ast_expression_delete((ast_expression*)self);
697 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
699 ast_expression *exprtype = ontrue;
700 ast_instantiate(ast_ternary, ctx, ast_ternary_delete);
701 /* This time NEITHER must be NULL */
702 if (!ontrue || !onfalse) {
706 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ternary_codegen);
709 self->on_true = ontrue;
710 self->on_false = onfalse;
711 ast_propagate_effects(self, cond);
712 ast_propagate_effects(self, ontrue);
713 ast_propagate_effects(self, onfalse);
715 if (ontrue->expression.vtype == TYPE_NIL)
717 if (!ast_type_adopt(self, exprtype)) {
718 ast_ternary_delete(self);
725 void ast_ternary_delete(ast_ternary *self)
727 ast_unref(self->cond);
728 ast_unref(self->on_true);
729 ast_unref(self->on_false);
730 ast_expression_delete((ast_expression*)self);
734 ast_loop* ast_loop_new(lex_ctx ctx,
735 ast_expression *initexpr,
736 ast_expression *precond, bool pre_not,
737 ast_expression *postcond, bool post_not,
738 ast_expression *increment,
739 ast_expression *body)
741 ast_instantiate(ast_loop, ctx, ast_loop_delete);
742 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_loop_codegen);
744 self->initexpr = initexpr;
745 self->precond = precond;
746 self->postcond = postcond;
747 self->increment = increment;
750 self->pre_not = pre_not;
751 self->post_not = post_not;
754 ast_propagate_effects(self, initexpr);
756 ast_propagate_effects(self, precond);
758 ast_propagate_effects(self, postcond);
760 ast_propagate_effects(self, increment);
762 ast_propagate_effects(self, body);
767 void ast_loop_delete(ast_loop *self)
770 ast_unref(self->initexpr);
772 ast_unref(self->precond);
774 ast_unref(self->postcond);
776 ast_unref(self->increment);
778 ast_unref(self->body);
779 ast_expression_delete((ast_expression*)self);
783 ast_breakcont* ast_breakcont_new(lex_ctx ctx, bool iscont, unsigned int levels)
785 ast_instantiate(ast_breakcont, ctx, ast_breakcont_delete);
786 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_breakcont_codegen);
788 self->is_continue = iscont;
789 self->levels = levels;
794 void ast_breakcont_delete(ast_breakcont *self)
796 ast_expression_delete((ast_expression*)self);
800 ast_switch* ast_switch_new(lex_ctx ctx, ast_expression *op)
802 ast_instantiate(ast_switch, ctx, ast_switch_delete);
803 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_switch_codegen);
808 ast_propagate_effects(self, op);
813 void ast_switch_delete(ast_switch *self)
816 ast_unref(self->operand);
818 for (i = 0; i < vec_size(self->cases); ++i) {
819 if (self->cases[i].value)
820 ast_unref(self->cases[i].value);
821 ast_unref(self->cases[i].code);
823 vec_free(self->cases);
825 ast_expression_delete((ast_expression*)self);
829 ast_label* ast_label_new(lex_ctx ctx, const char *name)
831 ast_instantiate(ast_label, ctx, ast_label_delete);
832 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_label_codegen);
834 self->name = util_strdup(name);
835 self->irblock = NULL;
841 void ast_label_delete(ast_label *self)
843 mem_d((void*)self->name);
844 vec_free(self->gotos);
845 ast_expression_delete((ast_expression*)self);
849 void ast_label_register_goto(ast_label *self, ast_goto *g)
851 vec_push(self->gotos, g);
854 ast_goto* ast_goto_new(lex_ctx ctx, const char *name)
856 ast_instantiate(ast_goto, ctx, ast_goto_delete);
857 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_goto_codegen);
859 self->name = util_strdup(name);
861 self->irblock_from = NULL;
866 void ast_goto_delete(ast_goto *self)
868 mem_d((void*)self->name);
869 ast_expression_delete((ast_expression*)self);
873 void ast_goto_set_label(ast_goto *self, ast_label *label)
875 self->target = label;
878 ast_call* ast_call_new(lex_ctx ctx,
879 ast_expression *funcexpr)
881 ast_instantiate(ast_call, ctx, ast_call_delete);
882 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_call_codegen);
884 ast_side_effects(self) = true;
887 self->func = funcexpr;
889 ast_type_adopt(self, funcexpr->expression.next);
894 void ast_call_delete(ast_call *self)
897 for (i = 0; i < vec_size(self->params); ++i)
898 ast_unref(self->params[i]);
899 vec_free(self->params);
902 ast_unref(self->func);
904 ast_expression_delete((ast_expression*)self);
908 bool ast_call_check_types(ast_call *self)
912 const ast_expression *func = self->func;
913 size_t count = vec_size(self->params);
914 if (count > vec_size(func->expression.params))
915 count = vec_size(func->expression.params);
917 for (i = 0; i < count; ++i) {
918 if (!ast_compare_type(self->params[i], (ast_expression*)(func->expression.params[i])))
922 ast_type_to_string(self->params[i], tgot, sizeof(tgot));
923 ast_type_to_string((ast_expression*)func->expression.params[i], texp, sizeof(texp));
924 compile_error(ast_ctx(self), "invalid type for parameter %u in function call: expected %s, got %s",
925 (unsigned int)(i+1), texp, tgot);
926 /* we don't immediately return */
933 ast_store* ast_store_new(lex_ctx ctx, int op,
934 ast_expression *dest, ast_expression *source)
936 ast_instantiate(ast_store, ctx, ast_store_delete);
937 ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_store_codegen);
939 ast_side_effects(self) = true;
943 self->source = source;
945 if (!ast_type_adopt(self, dest)) {
953 void ast_store_delete(ast_store *self)
955 ast_unref(self->dest);
956 ast_unref(self->source);
957 ast_expression_delete((ast_expression*)self);
961 ast_block* ast_block_new(lex_ctx ctx)
963 ast_instantiate(ast_block, ctx, ast_block_delete);
964 ast_expression_init((ast_expression*)self,
965 (ast_expression_codegen*)&ast_block_codegen);
969 self->collect = NULL;
974 bool ast_block_add_expr(ast_block *self, ast_expression *e)
976 ast_propagate_effects(self, e);
977 vec_push(self->exprs, e);
978 if (self->expression.next) {
979 ast_delete(self->expression.next);
980 self->expression.next = NULL;
982 if (!ast_type_adopt(self, e)) {
983 compile_error(ast_ctx(self), "internal error: failed to adopt type");
989 void ast_block_collect(ast_block *self, ast_expression *expr)
991 vec_push(self->collect, expr);
992 expr->expression.node.keep = true;
995 void ast_block_delete(ast_block *self)
998 for (i = 0; i < vec_size(self->exprs); ++i)
999 ast_unref(self->exprs[i]);
1000 vec_free(self->exprs);
1001 for (i = 0; i < vec_size(self->locals); ++i)
1002 ast_delete(self->locals[i]);
1003 vec_free(self->locals);
1004 for (i = 0; i < vec_size(self->collect); ++i)
1005 ast_delete(self->collect[i]);
1006 vec_free(self->collect);
1007 ast_expression_delete((ast_expression*)self);
1011 bool ast_block_set_type(ast_block *self, ast_expression *from)
1013 if (self->expression.next)
1014 ast_delete(self->expression.next);
1015 if (!ast_type_adopt(self, from))
1020 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype)
1022 ast_instantiate(ast_function, ctx, ast_function_delete);
1026 vtype->expression.vtype != TYPE_FUNCTION)
1028 compile_error(ast_ctx(self), "internal error: ast_function_new condition %i %i type=%i (probably 2 bodies?)",
1030 (int)vtype->hasvalue,
1031 vtype->expression.vtype);
1036 self->vtype = vtype;
1037 self->name = name ? util_strdup(name) : NULL;
1038 self->blocks = NULL;
1040 self->labelcount = 0;
1043 self->ir_func = NULL;
1044 self->curblock = NULL;
1046 self->breakblocks = NULL;
1047 self->continueblocks = NULL;
1049 vtype->hasvalue = true;
1050 vtype->constval.vfunc = self;
1055 void ast_function_delete(ast_function *self)
1059 mem_d((void*)self->name);
1061 /* ast_value_delete(self->vtype); */
1062 self->vtype->hasvalue = false;
1063 self->vtype->constval.vfunc = NULL;
1064 /* We use unref - if it was stored in a global table it is supposed
1065 * to be deleted from *there*
1067 ast_unref(self->vtype);
1069 for (i = 0; i < vec_size(self->blocks); ++i)
1070 ast_delete(self->blocks[i]);
1071 vec_free(self->blocks);
1072 vec_free(self->breakblocks);
1073 vec_free(self->continueblocks);
1077 const char* ast_function_label(ast_function *self, const char *prefix)
1083 if (!opts.dump && !opts.dumpfin && !opts.debug)
1086 id = (self->labelcount++);
1087 len = strlen(prefix);
1089 from = self->labelbuf + sizeof(self->labelbuf)-1;
1092 *from-- = (id%10) + '0';
1096 memcpy(from - len, prefix, len);
1100 /*********************************************************************/
1102 * by convention you must never pass NULL to the 'ir_value **out'
1103 * parameter. If you really don't care about the output, pass a dummy.
1104 * But I can't imagine a pituation where the output is truly unnecessary.
1107 void _ast_codegen_output_type(ast_expression_common *self, ir_value *out)
1109 if (out->vtype == TYPE_FIELD)
1110 out->fieldtype = self->next->expression.vtype;
1111 if (out->vtype == TYPE_FUNCTION)
1112 out->outtype = self->next->expression.vtype;
1115 #define codegen_output_type(a,o) (_ast_codegen_output_type(&((a)->expression),(o)))
1117 bool ast_value_codegen(ast_value *self, ast_function *func, bool lvalue, ir_value **out)
1121 if (self->expression.vtype == TYPE_NIL) {
1122 *out = func->ir_func->owner->nil;
1125 /* NOTE: This is the codegen for a variable used in an expression.
1126 * It is not the codegen to generate the value. For this purpose,
1127 * ast_local_codegen and ast_global_codegen are to be used before this
1128 * is executed. ast_function_codegen should take care of its locals,
1129 * and the ast-user should take care of ast_global_codegen to be used
1130 * on all the globals.
1133 char tname[1024]; /* typename is reserved in C++ */
1134 ast_type_to_string((ast_expression*)self, tname, sizeof(tname));
1135 compile_error(ast_ctx(self), "ast_value used before generated %s %s", tname, self->name);
1142 bool ast_global_codegen(ast_value *self, ir_builder *ir, bool isfield)
1146 if (self->expression.vtype == TYPE_NIL) {
1147 compile_error(ast_ctx(self), "internal error: trying to generate a variable of TYPE_NIL");
1151 if (self->hasvalue && self->expression.vtype == TYPE_FUNCTION)
1153 ir_function *func = ir_builder_create_function(ir, self->name, self->expression.next->expression.vtype);
1156 func->context = ast_ctx(self);
1157 func->value->context = ast_ctx(self);
1159 self->constval.vfunc->ir_func = func;
1160 self->ir_v = func->value;
1161 /* The function is filled later on ast_function_codegen... */
1165 if (isfield && self->expression.vtype == TYPE_FIELD) {
1166 ast_expression *fieldtype = self->expression.next;
1168 if (self->hasvalue) {
1169 compile_error(ast_ctx(self), "TODO: constant field pointers with value");
1173 if (fieldtype->expression.vtype == TYPE_ARRAY) {
1178 ast_expression_common *elemtype;
1180 ast_value *array = (ast_value*)fieldtype;
1182 if (!ast_istype(fieldtype, ast_value)) {
1183 compile_error(ast_ctx(self), "internal error: ast_value required");
1187 /* we are lame now - considering the way QC works we won't tolerate arrays > 1024 elements */
1188 if (!array->expression.count || array->expression.count > opts.max_array_size)
1189 compile_error(ast_ctx(self), "Invalid array of size %lu", (unsigned long)array->expression.count);
1191 elemtype = &array->expression.next->expression;
1192 vtype = elemtype->vtype;
1194 v = ir_builder_create_field(ir, self->name, vtype);
1196 compile_error(ast_ctx(self), "ir_builder_create_global failed on `%s`", self->name);
1199 v->context = ast_ctx(self);
1200 v->unique_life = true;
1202 array->ir_v = self->ir_v = v;
1204 namelen = strlen(self->name);
1205 name = (char*)mem_a(namelen + 16);
1206 strcpy(name, self->name);
1208 array->ir_values = (ir_value**)mem_a(sizeof(array->ir_values[0]) * array->expression.count);
1209 array->ir_values[0] = v;
1210 for (ai = 1; ai < array->expression.count; ++ai) {
1211 snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
1212 array->ir_values[ai] = ir_builder_create_field(ir, name, vtype);
1213 if (!array->ir_values[ai]) {
1215 compile_error(ast_ctx(self), "ir_builder_create_global failed on `%s`", name);
1218 array->ir_values[ai]->context = ast_ctx(self);
1219 array->ir_values[ai]->unique_life = true;
1220 array->ir_values[ai]->locked = true;
1226 v = ir_builder_create_field(ir, self->name, self->expression.next->expression.vtype);
1229 v->context = ast_ctx(self);
1235 if (self->expression.vtype == TYPE_ARRAY) {
1240 ast_expression_common *elemtype = &self->expression.next->expression;
1241 int vtype = elemtype->vtype;
1243 /* same as with field arrays */
1244 if (!self->expression.count || self->expression.count > opts.max_array_size)
1245 compile_error(ast_ctx(self), "Invalid array of size %lu", (unsigned long)self->expression.count);
1247 v = ir_builder_create_global(ir, self->name, vtype);
1249 compile_error(ast_ctx(self), "ir_builder_create_global failed `%s`", self->name);
1252 v->context = ast_ctx(self);
1253 v->unique_life = true;
1256 namelen = strlen(self->name);
1257 name = (char*)mem_a(namelen + 16);
1258 strcpy(name, self->name);
1260 self->ir_values = (ir_value**)mem_a(sizeof(self->ir_values[0]) * self->expression.count);
1261 self->ir_values[0] = v;
1262 for (ai = 1; ai < self->expression.count; ++ai) {
1263 snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
1264 self->ir_values[ai] = ir_builder_create_global(ir, name, vtype);
1265 if (!self->ir_values[ai]) {
1267 compile_error(ast_ctx(self), "ir_builder_create_global failed `%s`", name);
1270 self->ir_values[ai]->context = ast_ctx(self);
1271 self->ir_values[ai]->unique_life = true;
1272 self->ir_values[ai]->locked = true;
1278 /* Arrays don't do this since there's no "array" value which spans across the
1281 v = ir_builder_create_global(ir, self->name, self->expression.vtype);
1283 compile_error(ast_ctx(self), "ir_builder_create_global failed on `%s`", self->name);
1286 codegen_output_type(self, v);
1287 v->context = ast_ctx(self);
1290 if (self->hasvalue) {
1291 switch (self->expression.vtype)
1294 if (!ir_value_set_float(v, self->constval.vfloat))
1298 if (!ir_value_set_vector(v, self->constval.vvec))
1302 if (!ir_value_set_string(v, self->constval.vstring))
1306 compile_error(ast_ctx(self), "TODO: global constant array");
1309 compile_error(ast_ctx(self), "global of type function not properly generated");
1311 /* Cannot generate an IR value for a function,
1312 * need a pointer pointing to a function rather.
1315 if (!self->constval.vfield) {
1316 compile_error(ast_ctx(self), "field constant without vfield set");
1319 if (!self->constval.vfield->ir_v) {
1320 compile_error(ast_ctx(self), "field constant generated before its field");
1323 if (!ir_value_set_field(v, self->constval.vfield->ir_v))
1327 compile_error(ast_ctx(self), "TODO: global constant type %i", self->expression.vtype);
1332 /* link us to the ir_value */
1337 error: /* clean up */
1342 bool ast_local_codegen(ast_value *self, ir_function *func, bool param)
1346 if (self->expression.vtype == TYPE_NIL) {
1347 compile_error(ast_ctx(self), "internal error: trying to generate a variable of TYPE_NIL");
1351 if (self->hasvalue && self->expression.vtype == TYPE_FUNCTION)
1353 /* Do we allow local functions? I think not...
1354 * this is NOT a function pointer atm.
1359 if (self->expression.vtype == TYPE_ARRAY) {
1364 ast_expression_common *elemtype = &self->expression.next->expression;
1365 int vtype = elemtype->vtype;
1367 func->flags |= IR_FLAG_HAS_ARRAYS;
1370 compile_error(ast_ctx(self), "array-parameters are not supported");
1374 /* we are lame now - considering the way QC works we won't tolerate arrays > 1024 elements */
1375 if (!self->expression.count || self->expression.count > opts.max_array_size) {
1376 compile_error(ast_ctx(self), "Invalid array of size %lu", (unsigned long)self->expression.count);
1379 self->ir_values = (ir_value**)mem_a(sizeof(self->ir_values[0]) * self->expression.count);
1380 if (!self->ir_values) {
1381 compile_error(ast_ctx(self), "failed to allocate array values");
1385 v = ir_function_create_local(func, self->name, vtype, param);
1387 compile_error(ast_ctx(self), "ir_function_create_local failed");
1390 v->context = ast_ctx(self);
1391 v->unique_life = true;
1394 namelen = strlen(self->name);
1395 name = (char*)mem_a(namelen + 16);
1396 strcpy(name, self->name);
1398 self->ir_values[0] = v;
1399 for (ai = 1; ai < self->expression.count; ++ai) {
1400 snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
1401 self->ir_values[ai] = ir_function_create_local(func, name, vtype, param);
1402 if (!self->ir_values[ai]) {
1403 compile_error(ast_ctx(self), "ir_builder_create_global failed on `%s`", name);
1406 self->ir_values[ai]->context = ast_ctx(self);
1407 self->ir_values[ai]->unique_life = true;
1408 self->ir_values[ai]->locked = true;
1413 v = ir_function_create_local(func, self->name, self->expression.vtype, param);
1416 codegen_output_type(self, v);
1417 v->context = ast_ctx(self);
1420 /* A constant local... hmmm...
1421 * I suppose the IR will have to deal with this
1423 if (self->hasvalue) {
1424 switch (self->expression.vtype)
1427 if (!ir_value_set_float(v, self->constval.vfloat))
1431 if (!ir_value_set_vector(v, self->constval.vvec))
1435 if (!ir_value_set_string(v, self->constval.vstring))
1439 compile_error(ast_ctx(self), "TODO: global constant type %i", self->expression.vtype);
1444 /* link us to the ir_value */
1448 if (!ast_generate_accessors(self, func->owner))
1452 error: /* clean up */
1457 bool ast_generate_accessors(ast_value *self, ir_builder *ir)
1460 bool warn = OPTS_WARN(WARN_USED_UNINITIALIZED);
1461 if (!self->setter || !self->getter)
1463 for (i = 0; i < self->expression.count; ++i) {
1464 if (!self->ir_values) {
1465 compile_error(ast_ctx(self), "internal error: no array values generated for `%s`", self->name);
1468 if (!self->ir_values[i]) {
1469 compile_error(ast_ctx(self), "internal error: not all array values have been generated for `%s`", self->name);
1472 if (self->ir_values[i]->life) {
1473 compile_error(ast_ctx(self), "internal error: function containing `%s` already generated", self->name);
1478 opts_set(opts.warn, WARN_USED_UNINITIALIZED, false);
1480 if (!ast_global_codegen (self->setter, ir, false) ||
1481 !ast_function_codegen(self->setter->constval.vfunc, ir) ||
1482 !ir_function_finalize(self->setter->constval.vfunc->ir_func))
1484 compile_error(ast_ctx(self), "internal error: failed to generate setter for `%s`", self->name);
1485 opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
1490 if (!ast_global_codegen (self->getter, ir, false) ||
1491 !ast_function_codegen(self->getter->constval.vfunc, ir) ||
1492 !ir_function_finalize(self->getter->constval.vfunc->ir_func))
1494 compile_error(ast_ctx(self), "internal error: failed to generate getter for `%s`", self->name);
1495 opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
1499 for (i = 0; i < self->expression.count; ++i) {
1500 vec_free(self->ir_values[i]->life);
1502 opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
1506 bool ast_function_codegen(ast_function *self, ir_builder *ir)
1510 ast_expression_common *ec;
1515 irf = self->ir_func;
1517 compile_error(ast_ctx(self), "ast_function's related ast_value was not generated yet");
1521 /* fill the parameter list */
1522 ec = &self->vtype->expression;
1523 for (i = 0; i < vec_size(ec->params); ++i)
1525 if (ec->params[i]->expression.vtype == TYPE_FIELD)
1526 vec_push(irf->params, ec->params[i]->expression.next->expression.vtype);
1528 vec_push(irf->params, ec->params[i]->expression.vtype);
1529 if (!self->builtin) {
1530 if (!ast_local_codegen(ec->params[i], self->ir_func, true))
1535 if (self->builtin) {
1536 irf->builtin = self->builtin;
1540 if (!vec_size(self->blocks)) {
1541 compile_error(ast_ctx(self), "function `%s` has no body", self->name);
1545 self->curblock = ir_function_create_block(ast_ctx(self), irf, "entry");
1546 if (!self->curblock) {
1547 compile_error(ast_ctx(self), "failed to allocate entry block for `%s`", self->name);
1551 for (i = 0; i < vec_size(self->blocks); ++i) {
1552 ast_expression_codegen *gen = self->blocks[i]->expression.codegen;
1553 if (!(*gen)((ast_expression*)self->blocks[i], self, false, &dummy))
1557 /* TODO: check return types */
1558 if (!self->curblock->final)
1560 if (!self->vtype->expression.next ||
1561 self->vtype->expression.next->expression.vtype == TYPE_VOID)
1563 return ir_block_create_return(self->curblock, ast_ctx(self), NULL);
1565 else if (vec_size(self->curblock->entries))
1567 /* error("missing return"); */
1568 if (compile_warning(ast_ctx(self), WARN_MISSING_RETURN_VALUES,
1569 "control reaches end of non-void function (`%s`) via %s",
1570 self->name, self->curblock->label))
1574 return ir_block_create_return(self->curblock, ast_ctx(self), NULL);
1580 /* Note, you will not see ast_block_codegen generate ir_blocks.
1581 * To the AST and the IR, blocks are 2 different things.
1582 * In the AST it represents a block of code, usually enclosed in
1583 * curly braces {...}.
1584 * While in the IR it represents a block in terms of control-flow.
1586 bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_value **out)
1590 /* We don't use this
1591 * Note: an ast-representation using the comma-operator
1592 * of the form: (a, b, c) = x should not assign to c...
1595 compile_error(ast_ctx(self), "not an l-value (code-block)");
1599 if (self->expression.outr) {
1600 *out = self->expression.outr;
1604 /* output is NULL at first, we'll have each expression
1605 * assign to out output, thus, a comma-operator represention
1606 * using an ast_block will return the last generated value,
1607 * so: (b, c) + a executed both b and c, and returns c,
1608 * which is then added to a.
1612 /* generate locals */
1613 for (i = 0; i < vec_size(self->locals); ++i)
1615 if (!ast_local_codegen(self->locals[i], func->ir_func, false)) {
1617 compile_error(ast_ctx(self), "failed to generate local `%s`", self->locals[i]->name);
1622 for (i = 0; i < vec_size(self->exprs); ++i)
1624 ast_expression_codegen *gen;
1625 if (func->curblock->final && !ast_istype(self->exprs[i], ast_label)) {
1626 if (compile_warning(ast_ctx(self->exprs[i]), WARN_UNREACHABLE_CODE, "unreachable statement"))
1630 gen = self->exprs[i]->expression.codegen;
1631 if (!(*gen)(self->exprs[i], func, false, out))
1635 self->expression.outr = *out;
1640 bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
1642 ast_expression_codegen *cgen;
1643 ir_value *left = NULL;
1644 ir_value *right = NULL;
1648 ast_array_index *ai = NULL;
1650 if (lvalue && self->expression.outl) {
1651 *out = self->expression.outl;
1655 if (!lvalue && self->expression.outr) {
1656 *out = self->expression.outr;
1660 if (ast_istype(self->dest, ast_array_index))
1663 ai = (ast_array_index*)self->dest;
1664 idx = (ast_value*)ai->index;
1666 if (ast_istype(ai->index, ast_value) && idx->hasvalue && idx->cvq == CV_CONST)
1671 /* we need to call the setter */
1672 ir_value *iridx, *funval;
1676 compile_error(ast_ctx(self), "array-subscript assignment cannot produce lvalues");
1680 arr = (ast_value*)ai->array;
1681 if (!ast_istype(ai->array, ast_value) || !arr->setter) {
1682 compile_error(ast_ctx(self), "value has no setter (%s)", arr->name);
1686 cgen = idx->expression.codegen;
1687 if (!(*cgen)((ast_expression*)(idx), func, false, &iridx))
1690 cgen = arr->setter->expression.codegen;
1691 if (!(*cgen)((ast_expression*)(arr->setter), func, true, &funval))
1694 cgen = self->source->expression.codegen;
1695 if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
1698 call = ir_block_create_call(func->curblock, ast_ctx(self), ast_function_label(func, "store"), funval, false);
1701 ir_call_param(call, iridx);
1702 ir_call_param(call, right);
1703 self->expression.outr = right;
1709 cgen = self->dest->expression.codegen;
1711 if (!(*cgen)((ast_expression*)(self->dest), func, true, &left))
1713 self->expression.outl = left;
1715 cgen = self->source->expression.codegen;
1717 if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
1720 if (!ir_block_create_store_op(func->curblock, ast_ctx(self), self->op, left, right))
1722 self->expression.outr = right;
1725 /* Theoretically, an assinment returns its left side as an
1726 * lvalue, if we don't need an lvalue though, we return
1727 * the right side as an rvalue, otherwise we have to
1728 * somehow know whether or not we need to dereference the pointer
1729 * on the left side - that is: OP_LOAD if it was an address.
1730 * Also: in original QC we cannot OP_LOADP *anyway*.
1732 *out = (lvalue ? left : right);
1737 bool ast_binary_codegen(ast_binary *self, ast_function *func, bool lvalue, ir_value **out)
1739 ast_expression_codegen *cgen;
1740 ir_value *left, *right;
1742 /* A binary operation cannot yield an l-value */
1744 compile_error(ast_ctx(self), "not an l-value (binop)");
1748 if (self->expression.outr) {
1749 *out = self->expression.outr;
1753 if ((OPTS_FLAG(SHORT_LOGIC) || OPTS_FLAG(PERL_LOGIC)) &&
1754 (self->op == INSTR_AND || self->op == INSTR_OR))
1756 /* short circuit evaluation */
1757 ir_block *other, *merge;
1758 ir_block *from_left, *from_right;
1762 /* prepare end-block */
1763 merge_id = vec_size(func->ir_func->blocks);
1764 merge = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "sce_merge"));
1766 /* generate the left expression */
1767 cgen = self->left->expression.codegen;
1768 if (!(*cgen)((ast_expression*)(self->left), func, false, &left))
1770 /* remember the block */
1771 from_left = func->curblock;
1773 /* create a new block for the right expression */
1774 other = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "sce_other"));
1775 if (self->op == INSTR_AND) {
1776 /* on AND: left==true -> other */
1777 if (!ir_block_create_if(func->curblock, ast_ctx(self), left, other, merge))
1780 /* on OR: left==false -> other */
1781 if (!ir_block_create_if(func->curblock, ast_ctx(self), left, merge, other))
1784 /* use the likely flag */
1785 vec_last(func->curblock->instr)->likely = true;
1787 /* enter the right-expression's block */
1788 func->curblock = other;
1790 cgen = self->right->expression.codegen;
1791 if (!(*cgen)((ast_expression*)(self->right), func, false, &right))
1793 /* remember block */
1794 from_right = func->curblock;
1796 /* jump to the merge block */
1797 if (!ir_block_create_jump(func->curblock, ast_ctx(self), merge))
1800 vec_remove(func->ir_func->blocks, merge_id, 1);
1801 vec_push(func->ir_func->blocks, merge);
1803 func->curblock = merge;
1804 phi = ir_block_create_phi(func->curblock, ast_ctx(self),
1805 ast_function_label(func, "sce_value"),
1806 self->expression.vtype);
1807 ir_phi_add(phi, from_left, left);
1808 ir_phi_add(phi, from_right, right);
1809 *out = ir_phi_value(phi);
1813 if (!OPTS_FLAG(PERL_LOGIC)) {
1815 if (OPTS_FLAG(CORRECT_LOGIC) && (*out)->vtype == TYPE_VECTOR) {
1816 *out = ir_block_create_unary(func->curblock, ast_ctx(self),
1817 ast_function_label(func, "sce_bool_v"),
1821 *out = ir_block_create_unary(func->curblock, ast_ctx(self),
1822 ast_function_label(func, "sce_bool"),
1827 else if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && (*out)->vtype == TYPE_STRING) {
1828 *out = ir_block_create_unary(func->curblock, ast_ctx(self),
1829 ast_function_label(func, "sce_bool_s"),
1833 *out = ir_block_create_unary(func->curblock, ast_ctx(self),
1834 ast_function_label(func, "sce_bool"),
1840 *out = ir_block_create_binop(func->curblock, ast_ctx(self),
1841 ast_function_label(func, "sce_bool"),
1842 INSTR_AND, *out, *out);
1848 self->expression.outr = *out;
1849 codegen_output_type(self, *out);
1853 cgen = self->left->expression.codegen;
1854 if (!(*cgen)((ast_expression*)(self->left), func, false, &left))
1857 cgen = self->right->expression.codegen;
1858 if (!(*cgen)((ast_expression*)(self->right), func, false, &right))
1861 *out = ir_block_create_binop(func->curblock, ast_ctx(self), ast_function_label(func, "bin"),
1862 self->op, left, right);
1865 self->expression.outr = *out;
1866 codegen_output_type(self, *out);
1871 bool ast_binstore_codegen(ast_binstore *self, ast_function *func, bool lvalue, ir_value **out)
1873 ast_expression_codegen *cgen;
1874 ir_value *leftl = NULL, *leftr, *right, *bin;
1878 ast_array_index *ai = NULL;
1879 ir_value *iridx = NULL;
1881 if (lvalue && self->expression.outl) {
1882 *out = self->expression.outl;
1886 if (!lvalue && self->expression.outr) {
1887 *out = self->expression.outr;
1891 if (ast_istype(self->dest, ast_array_index))
1894 ai = (ast_array_index*)self->dest;
1895 idx = (ast_value*)ai->index;
1897 if (ast_istype(ai->index, ast_value) && idx->hasvalue && idx->cvq == CV_CONST)
1901 /* for a binstore we need both an lvalue and an rvalue for the left side */
1902 /* rvalue of destination! */
1904 cgen = idx->expression.codegen;
1905 if (!(*cgen)((ast_expression*)(idx), func, false, &iridx))
1908 cgen = self->dest->expression.codegen;
1909 if (!(*cgen)((ast_expression*)(self->dest), func, false, &leftr))
1912 /* source as rvalue only */
1913 cgen = self->source->expression.codegen;
1914 if (!(*cgen)((ast_expression*)(self->source), func, false, &right))
1917 /* now the binary */
1918 bin = ir_block_create_binop(func->curblock, ast_ctx(self), ast_function_label(func, "binst"),
1919 self->opbin, leftr, right);
1920 self->expression.outr = bin;
1924 /* we need to call the setter */
1929 compile_error(ast_ctx(self), "array-subscript assignment cannot produce lvalues");
1933 arr = (ast_value*)ai->array;
1934 if (!ast_istype(ai->array, ast_value) || !arr->setter) {
1935 compile_error(ast_ctx(self), "value has no setter (%s)", arr->name);
1939 cgen = arr->setter->expression.codegen;
1940 if (!(*cgen)((ast_expression*)(arr->setter), func, true, &funval))
1943 call = ir_block_create_call(func->curblock, ast_ctx(self), ast_function_label(func, "store"), funval, false);
1946 ir_call_param(call, iridx);
1947 ir_call_param(call, bin);
1948 self->expression.outr = bin;
1950 /* now store them */
1951 cgen = self->dest->expression.codegen;
1952 /* lvalue of destination */
1953 if (!(*cgen)((ast_expression*)(self->dest), func, true, &leftl))
1955 self->expression.outl = leftl;
1957 if (!ir_block_create_store_op(func->curblock, ast_ctx(self), self->opstore, leftl, bin))
1959 self->expression.outr = bin;
1962 /* Theoretically, an assinment returns its left side as an
1963 * lvalue, if we don't need an lvalue though, we return
1964 * the right side as an rvalue, otherwise we have to
1965 * somehow know whether or not we need to dereference the pointer
1966 * on the left side - that is: OP_LOAD if it was an address.
1967 * Also: in original QC we cannot OP_LOADP *anyway*.
1969 *out = (lvalue ? leftl : bin);
1974 bool ast_unary_codegen(ast_unary *self, ast_function *func, bool lvalue, ir_value **out)
1976 ast_expression_codegen *cgen;
1979 /* An unary operation cannot yield an l-value */
1981 compile_error(ast_ctx(self), "not an l-value (binop)");
1985 if (self->expression.outr) {
1986 *out = self->expression.outr;
1990 cgen = self->operand->expression.codegen;
1992 if (!(*cgen)((ast_expression*)(self->operand), func, false, &operand))
1995 *out = ir_block_create_unary(func->curblock, ast_ctx(self), ast_function_label(func, "unary"),
1999 self->expression.outr = *out;
2004 bool ast_return_codegen(ast_return *self, ast_function *func, bool lvalue, ir_value **out)
2006 ast_expression_codegen *cgen;
2011 /* In the context of a return operation, we don't actually return
2015 compile_error(ast_ctx(self), "return-expression is not an l-value");
2019 if (self->expression.outr) {
2020 compile_error(ast_ctx(self), "internal error: ast_return cannot be reused, it bears no result!");
2023 self->expression.outr = (ir_value*)1;
2025 if (self->operand) {
2026 cgen = self->operand->expression.codegen;
2028 if (!(*cgen)((ast_expression*)(self->operand), func, false, &operand))
2031 if (!ir_block_create_return(func->curblock, ast_ctx(self), operand))
2034 if (!ir_block_create_return(func->curblock, ast_ctx(self), NULL))
2041 bool ast_entfield_codegen(ast_entfield *self, ast_function *func, bool lvalue, ir_value **out)
2043 ast_expression_codegen *cgen;
2044 ir_value *ent, *field;
2046 /* This function needs to take the 'lvalue' flag into account!
2047 * As lvalue we provide a field-pointer, as rvalue we provide the
2051 if (lvalue && self->expression.outl) {
2052 *out = self->expression.outl;
2056 if (!lvalue && self->expression.outr) {
2057 *out = self->expression.outr;
2061 cgen = self->entity->expression.codegen;
2062 if (!(*cgen)((ast_expression*)(self->entity), func, false, &ent))
2065 cgen = self->field->expression.codegen;
2066 if (!(*cgen)((ast_expression*)(self->field), func, false, &field))
2071 *out = ir_block_create_fieldaddress(func->curblock, ast_ctx(self), ast_function_label(func, "efa"),
2074 *out = ir_block_create_load_from_ent(func->curblock, ast_ctx(self), ast_function_label(func, "efv"),
2075 ent, field, self->expression.vtype);
2076 /* Done AFTER error checking:
2077 codegen_output_type(self, *out);
2081 compile_error(ast_ctx(self), "failed to create %s instruction (output type %s)",
2082 (lvalue ? "ADDRESS" : "FIELD"),
2083 type_name[self->expression.vtype]);
2087 codegen_output_type(self, *out);
2090 self->expression.outl = *out;
2092 self->expression.outr = *out;
2094 /* Hm that should be it... */
2098 bool ast_member_codegen(ast_member *self, ast_function *func, bool lvalue, ir_value **out)
2100 ast_expression_codegen *cgen;
2103 /* in QC this is always an lvalue */
2104 if (lvalue && self->rvalue) {
2105 compile_error(ast_ctx(self), "not an l-value (member access)");
2108 if (self->expression.outl) {
2109 *out = self->expression.outl;
2113 cgen = self->owner->expression.codegen;
2114 if (!(*cgen)((ast_expression*)(self->owner), func, false, &vec))
2117 if (vec->vtype != TYPE_VECTOR &&
2118 !(vec->vtype == TYPE_FIELD && self->owner->expression.next->expression.vtype == TYPE_VECTOR))
2123 *out = ir_value_vector_member(vec, self->field);
2124 self->expression.outl = *out;
2126 return (*out != NULL);
2129 bool ast_array_index_codegen(ast_array_index *self, ast_function *func, bool lvalue, ir_value **out)
2134 if (!lvalue && self->expression.outr) {
2135 *out = self->expression.outr;
2137 if (lvalue && self->expression.outl) {
2138 *out = self->expression.outl;
2141 if (!ast_istype(self->array, ast_value)) {
2142 compile_error(ast_ctx(self), "array indexing this way is not supported");
2143 /* note this would actually be pointer indexing because the left side is
2144 * not an actual array but (hopefully) an indexable expression.
2145 * Once we get integer arithmetic, and GADDRESS/GSTORE/GLOAD instruction
2146 * support this path will be filled.
2151 arr = (ast_value*)self->array;
2152 idx = (ast_value*)self->index;
2154 if (!ast_istype(self->index, ast_value) || !idx->hasvalue || idx->cvq != CV_CONST) {
2155 /* Time to use accessor functions */
2156 ast_expression_codegen *cgen;
2157 ir_value *iridx, *funval;
2161 compile_error(ast_ctx(self), "(.2) array indexing here needs a compile-time constant");
2166 compile_error(ast_ctx(self), "value has no getter, don't know how to index it");
2170 cgen = self->index->expression.codegen;
2171 if (!(*cgen)((ast_expression*)(self->index), func, false, &iridx))
2174 cgen = arr->getter->expression.codegen;
2175 if (!(*cgen)((ast_expression*)(arr->getter), func, true, &funval))
2178 call = ir_block_create_call(func->curblock, ast_ctx(self), ast_function_label(func, "fetch"), funval, false);
2181 ir_call_param(call, iridx);
2183 *out = ir_call_value(call);
2184 self->expression.outr = *out;
2188 if (idx->expression.vtype == TYPE_FLOAT) {
2189 unsigned int arridx = idx->constval.vfloat;
2190 if (arridx >= self->array->expression.count)
2192 compile_error(ast_ctx(self), "array index out of bounds: %i", arridx);
2195 *out = arr->ir_values[arridx];
2197 else if (idx->expression.vtype == TYPE_INTEGER) {
2198 unsigned int arridx = idx->constval.vint;
2199 if (arridx >= self->array->expression.count)
2201 compile_error(ast_ctx(self), "array index out of bounds: %i", arridx);
2204 *out = arr->ir_values[arridx];
2207 compile_error(ast_ctx(self), "array indexing here needs an integer constant");
2213 bool ast_ifthen_codegen(ast_ifthen *self, ast_function *func, bool lvalue, ir_value **out)
2215 ast_expression_codegen *cgen;
2223 ir_block *ontrue_endblock = NULL;
2224 ir_block *onfalse_endblock = NULL;
2225 ir_block *merge = NULL;
2227 /* We don't output any value, thus also don't care about r/lvalue */
2231 if (self->expression.outr) {
2232 compile_error(ast_ctx(self), "internal error: ast_ifthen cannot be reused, it bears no result!");
2235 self->expression.outr = (ir_value*)1;
2237 /* generate the condition */
2238 cgen = self->cond->expression.codegen;
2239 if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
2241 /* update the block which will get the jump - because short-logic or ternaries may have changed this */
2242 cond = func->curblock;
2246 if (self->on_true) {
2247 /* create on-true block */
2248 ontrue = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "ontrue"));
2252 /* enter the block */
2253 func->curblock = ontrue;
2256 cgen = self->on_true->expression.codegen;
2257 if (!(*cgen)((ast_expression*)(self->on_true), func, false, &dummy))
2260 /* we now need to work from the current endpoint */
2261 ontrue_endblock = func->curblock;
2266 if (self->on_false) {
2267 /* create on-false block */
2268 onfalse = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "onfalse"));
2272 /* enter the block */
2273 func->curblock = onfalse;
2276 cgen = self->on_false->expression.codegen;
2277 if (!(*cgen)((ast_expression*)(self->on_false), func, false, &dummy))
2280 /* we now need to work from the current endpoint */
2281 onfalse_endblock = func->curblock;
2285 /* Merge block were they all merge in to */
2286 if (!ontrue || !onfalse || !ontrue_endblock->final || !onfalse_endblock->final)
2288 merge = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "endif"));
2291 /* add jumps ot the merge block */
2292 if (ontrue && !ontrue_endblock->final && !ir_block_create_jump(ontrue_endblock, ast_ctx(self), merge))
2294 if (onfalse && !onfalse_endblock->final && !ir_block_create_jump(onfalse_endblock, ast_ctx(self), merge))
2297 /* Now enter the merge block */
2298 func->curblock = merge;
2301 /* we create the if here, that way all blocks are ordered :)
2303 if (!ir_block_create_if(cond, ast_ctx(self), condval,
2304 (ontrue ? ontrue : merge),
2305 (onfalse ? onfalse : merge)))
2313 bool ast_ternary_codegen(ast_ternary *self, ast_function *func, bool lvalue, ir_value **out)
2315 ast_expression_codegen *cgen;
2318 ir_value *trueval, *falseval;
2321 ir_block *cond = func->curblock;
2322 ir_block *cond_out = NULL;
2323 ir_block *ontrue, *ontrue_out = NULL;
2324 ir_block *onfalse, *onfalse_out = NULL;
2327 /* Ternary can never create an lvalue... */
2331 /* In theory it shouldn't be possible to pass through a node twice, but
2332 * in case we add any kind of optimization pass for the AST itself, it
2333 * may still happen, thus we remember a created ir_value and simply return one
2334 * if it already exists.
2336 if (self->expression.outr) {
2337 *out = self->expression.outr;
2341 /* In the following, contraty to ast_ifthen, we assume both paths exist. */
2343 /* generate the condition */
2344 func->curblock = cond;
2345 cgen = self->cond->expression.codegen;
2346 if (!(*cgen)((ast_expression*)(self->cond), func, false, &condval))
2348 cond_out = func->curblock;
2350 /* create on-true block */
2351 ontrue = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "tern_T"));
2356 /* enter the block */
2357 func->curblock = ontrue;
2360 cgen = self->on_true->expression.codegen;
2361 if (!(*cgen)((ast_expression*)(self->on_true), func, false, &trueval))
2364 ontrue_out = func->curblock;
2367 /* create on-false block */
2368 onfalse = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "tern_F"));
2373 /* enter the block */
2374 func->curblock = onfalse;
2377 cgen = self->on_false->expression.codegen;
2378 if (!(*cgen)((ast_expression*)(self->on_false), func, false, &falseval))
2381 onfalse_out = func->curblock;
2384 /* create merge block */
2385 merge = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "tern_out"));
2388 /* jump to merge block */
2389 if (!ir_block_create_jump(ontrue_out, ast_ctx(self), merge))
2391 if (!ir_block_create_jump(onfalse_out, ast_ctx(self), merge))
2394 /* create if instruction */
2395 if (!ir_block_create_if(cond_out, ast_ctx(self), condval, ontrue, onfalse))
2398 /* Now enter the merge block */
2399 func->curblock = merge;
2401 /* Here, now, we need a PHI node
2402 * but first some sanity checking...
2404 if (trueval->vtype != falseval->vtype && trueval->vtype != TYPE_NIL && falseval->vtype != TYPE_NIL) {
2405 /* error("ternary with different types on the two sides"); */
2406 compile_error(ast_ctx(self), "internal error: ternary operand types invalid");
2411 phi = ir_block_create_phi(merge, ast_ctx(self), ast_function_label(func, "phi"), self->expression.vtype);
2413 compile_error(ast_ctx(self), "internal error: failed to generate phi node");
2416 ir_phi_add(phi, ontrue_out, trueval);
2417 ir_phi_add(phi, onfalse_out, falseval);
2419 self->expression.outr = ir_phi_value(phi);
2420 *out = self->expression.outr;
2422 codegen_output_type(self, *out);
2427 bool ast_loop_codegen(ast_loop *self, ast_function *func, bool lvalue, ir_value **out)
2429 ast_expression_codegen *cgen;
2431 ir_value *dummy = NULL;
2432 ir_value *precond = NULL;
2433 ir_value *postcond = NULL;
2435 /* Since we insert some jumps "late" so we have blocks
2436 * ordered "nicely", we need to keep track of the actual end-blocks
2437 * of expressions to add the jumps to.
2439 ir_block *bbody = NULL, *end_bbody = NULL;
2440 ir_block *bprecond = NULL, *end_bprecond = NULL;
2441 ir_block *bpostcond = NULL, *end_bpostcond = NULL;
2442 ir_block *bincrement = NULL, *end_bincrement = NULL;
2443 ir_block *bout = NULL, *bin = NULL;
2445 /* let's at least move the outgoing block to the end */
2448 /* 'break' and 'continue' need to be able to find the right blocks */
2449 ir_block *bcontinue = NULL;
2450 ir_block *bbreak = NULL;
2452 ir_block *tmpblock = NULL;
2457 if (self->expression.outr) {
2458 compile_error(ast_ctx(self), "internal error: ast_loop cannot be reused, it bears no result!");
2461 self->expression.outr = (ir_value*)1;
2464 * Should we ever need some kind of block ordering, better make this function
2465 * move blocks around than write a block ordering algorithm later... after all
2466 * the ast and ir should work together, not against each other.
2469 /* initexpr doesn't get its own block, it's pointless, it could create more blocks
2470 * anyway if for example it contains a ternary.
2474 cgen = self->initexpr->expression.codegen;
2475 if (!(*cgen)((ast_expression*)(self->initexpr), func, false, &dummy))
2479 /* Store the block from which we enter this chaos */
2480 bin = func->curblock;
2482 /* The pre-loop condition needs its own block since we
2483 * need to be able to jump to the start of that expression.
2487 bprecond = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "pre_loop_cond"));
2491 /* the pre-loop-condition the least important place to 'continue' at */
2492 bcontinue = bprecond;
2495 func->curblock = bprecond;
2498 cgen = self->precond->expression.codegen;
2499 if (!(*cgen)((ast_expression*)(self->precond), func, false, &precond))
2502 end_bprecond = func->curblock;
2504 bprecond = end_bprecond = NULL;
2507 /* Now the next blocks won't be ordered nicely, but we need to
2508 * generate them this early for 'break' and 'continue'.
2510 if (self->increment) {
2511 bincrement = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "loop_increment"));
2514 bcontinue = bincrement; /* increment comes before the pre-loop-condition */
2516 bincrement = end_bincrement = NULL;
2519 if (self->postcond) {
2520 bpostcond = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "post_loop_cond"));
2523 bcontinue = bpostcond; /* postcond comes before the increment */
2525 bpostcond = end_bpostcond = NULL;
2528 bout_id = vec_size(func->ir_func->blocks);
2529 bout = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "after_loop"));
2534 /* The loop body... */
2535 /* if (self->body) */
2537 bbody = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "loop_body"));
2542 func->curblock = bbody;
2544 vec_push(func->breakblocks, bbreak);
2546 vec_push(func->continueblocks, bcontinue);
2548 vec_push(func->continueblocks, bbody);
2552 cgen = self->body->expression.codegen;
2553 if (!(*cgen)((ast_expression*)(self->body), func, false, &dummy))
2557 end_bbody = func->curblock;
2558 vec_pop(func->breakblocks);
2559 vec_pop(func->continueblocks);
2562 /* post-loop-condition */
2566 func->curblock = bpostcond;
2569 cgen = self->postcond->expression.codegen;
2570 if (!(*cgen)((ast_expression*)(self->postcond), func, false, &postcond))
2573 end_bpostcond = func->curblock;
2576 /* The incrementor */
2577 if (self->increment)
2580 func->curblock = bincrement;
2583 cgen = self->increment->expression.codegen;
2584 if (!(*cgen)((ast_expression*)(self->increment), func, false, &dummy))
2587 end_bincrement = func->curblock;
2590 /* In any case now, we continue from the outgoing block */
2591 func->curblock = bout;
2593 /* Now all blocks are in place */
2594 /* From 'bin' we jump to whatever comes first */
2595 if (bprecond) tmpblock = bprecond;
2596 else if (bbody) tmpblock = bbody;
2597 else if (bpostcond) tmpblock = bpostcond;
2598 else tmpblock = bout;
2599 if (!ir_block_create_jump(bin, ast_ctx(self), tmpblock))
2605 ir_block *ontrue, *onfalse;
2606 if (bbody) ontrue = bbody;
2607 else if (bincrement) ontrue = bincrement;
2608 else if (bpostcond) ontrue = bpostcond;
2609 else ontrue = bprecond;
2611 if (self->pre_not) {
2616 if (!ir_block_create_if(end_bprecond, ast_ctx(self), precond, ontrue, onfalse))
2623 if (bincrement) tmpblock = bincrement;
2624 else if (bpostcond) tmpblock = bpostcond;
2625 else if (bprecond) tmpblock = bprecond;
2626 else tmpblock = bbody;
2627 if (!end_bbody->final && !ir_block_create_jump(end_bbody, ast_ctx(self), tmpblock))
2631 /* from increment */
2634 if (bpostcond) tmpblock = bpostcond;
2635 else if (bprecond) tmpblock = bprecond;
2636 else if (bbody) tmpblock = bbody;
2637 else tmpblock = bout;
2638 if (!ir_block_create_jump(end_bincrement, ast_ctx(self), tmpblock))
2645 ir_block *ontrue, *onfalse;
2646 if (bprecond) ontrue = bprecond;
2647 else if (bbody) ontrue = bbody;
2648 else if (bincrement) ontrue = bincrement;
2649 else ontrue = bpostcond;
2651 if (self->post_not) {
2656 if (!ir_block_create_if(end_bpostcond, ast_ctx(self), postcond, ontrue, onfalse))
2660 /* Move 'bout' to the end */
2661 vec_remove(func->ir_func->blocks, bout_id, 1);
2662 vec_push(func->ir_func->blocks, bout);
2667 bool ast_breakcont_codegen(ast_breakcont *self, ast_function *func, bool lvalue, ir_value **out)
2674 compile_error(ast_ctx(self), "break/continue expression is not an l-value");
2678 if (self->expression.outr) {
2679 compile_error(ast_ctx(self), "internal error: ast_breakcont cannot be reused!");
2682 self->expression.outr = (ir_value*)1;
2684 if (self->is_continue)
2685 target = func->continueblocks[vec_size(func->continueblocks)-1-self->levels];
2687 target = func->breakblocks[vec_size(func->breakblocks)-1-self->levels];
2690 compile_error(ast_ctx(self), "%s is lacking a target block", (self->is_continue ? "continue" : "break"));
2694 if (!ir_block_create_jump(func->curblock, ast_ctx(self), target))
2699 bool ast_switch_codegen(ast_switch *self, ast_function *func, bool lvalue, ir_value **out)
2701 ast_expression_codegen *cgen;
2703 ast_switch_case *def_case = NULL;
2704 ir_block *def_bfall = NULL;
2705 ir_block *def_bfall_to = NULL;
2706 bool set_def_bfall_to = false;
2708 ir_value *dummy = NULL;
2709 ir_value *irop = NULL;
2710 ir_block *bout = NULL;
2711 ir_block *bfall = NULL;
2719 compile_error(ast_ctx(self), "switch expression is not an l-value");
2723 if (self->expression.outr) {
2724 compile_error(ast_ctx(self), "internal error: ast_switch cannot be reused!");
2727 self->expression.outr = (ir_value*)1;
2732 cgen = self->operand->expression.codegen;
2733 if (!(*cgen)((ast_expression*)(self->operand), func, false, &irop))
2736 if (!vec_size(self->cases))
2739 cmpinstr = type_eq_instr[irop->vtype];
2740 if (cmpinstr >= AINSTR_END) {
2741 ast_type_to_string(self->operand, typestr, sizeof(typestr));
2742 compile_error(ast_ctx(self), "invalid type to perform a switch on: %s", typestr);
2746 bout_id = vec_size(func->ir_func->blocks);
2747 bout = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "after_switch"));
2751 /* setup the break block */
2752 vec_push(func->breakblocks, bout);
2754 /* Now create all cases */
2755 for (c = 0; c < vec_size(self->cases); ++c) {
2756 ir_value *cond, *val;
2757 ir_block *bcase, *bnot;
2760 ast_switch_case *swcase = &self->cases[c];
2762 if (swcase->value) {
2763 /* A regular case */
2764 /* generate the condition operand */
2765 cgen = swcase->value->expression.codegen;
2766 if (!(*cgen)((ast_expression*)(swcase->value), func, false, &val))
2768 /* generate the condition */
2769 cond = ir_block_create_binop(func->curblock, ast_ctx(self), ast_function_label(func, "switch_eq"), cmpinstr, irop, val);
2773 bcase = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "case"));
2774 bnot_id = vec_size(func->ir_func->blocks);
2775 bnot = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "not_case"));
2776 if (!bcase || !bnot)
2778 if (set_def_bfall_to) {
2779 set_def_bfall_to = false;
2780 def_bfall_to = bcase;
2782 if (!ir_block_create_if(func->curblock, ast_ctx(self), cond, bcase, bnot))
2785 /* Make the previous case-end fall through */
2786 if (bfall && !bfall->final) {
2787 if (!ir_block_create_jump(bfall, ast_ctx(self), bcase))
2791 /* enter the case */
2792 func->curblock = bcase;
2793 cgen = swcase->code->expression.codegen;
2794 if (!(*cgen)((ast_expression*)swcase->code, func, false, &dummy))
2797 /* remember this block to fall through from */
2798 bfall = func->curblock;
2800 /* enter the else and move it down */
2801 func->curblock = bnot;
2802 vec_remove(func->ir_func->blocks, bnot_id, 1);
2803 vec_push(func->ir_func->blocks, bnot);
2805 /* The default case */
2806 /* Remember where to fall through from: */
2809 /* remember which case it was */
2811 /* And the next case will be remembered */
2812 set_def_bfall_to = true;
2816 /* Jump from the last bnot to bout */
2817 if (bfall && !bfall->final && !ir_block_create_jump(bfall, ast_ctx(self), bout)) {
2819 astwarning(ast_ctx(bfall), WARN_???, "missing break after last case");
2824 /* If there was a default case, put it down here */
2828 /* No need to create an extra block */
2829 bcase = func->curblock;
2831 /* Insert the fallthrough jump */
2832 if (def_bfall && !def_bfall->final) {
2833 if (!ir_block_create_jump(def_bfall, ast_ctx(self), bcase))
2837 /* Now generate the default code */
2838 cgen = def_case->code->expression.codegen;
2839 if (!(*cgen)((ast_expression*)def_case->code, func, false, &dummy))
2842 /* see if we need to fall through */
2843 if (def_bfall_to && !func->curblock->final)
2845 if (!ir_block_create_jump(func->curblock, ast_ctx(self), def_bfall_to))
2850 /* Jump from the last bnot to bout */
2851 if (!func->curblock->final && !ir_block_create_jump(func->curblock, ast_ctx(self), bout))
2853 /* enter the outgoing block */
2854 func->curblock = bout;
2856 /* restore the break block */
2857 vec_pop(func->breakblocks);
2859 /* Move 'bout' to the end, it's nicer */
2860 vec_remove(func->ir_func->blocks, bout_id, 1);
2861 vec_push(func->ir_func->blocks, bout);
2866 bool ast_label_codegen(ast_label *self, ast_function *func, bool lvalue, ir_value **out)
2873 compile_error(ast_ctx(self), "internal error: ast_label cannot be an lvalue");
2877 /* simply create a new block and jump to it */
2878 self->irblock = ir_function_create_block(ast_ctx(self), func->ir_func, self->name);
2879 if (!self->irblock) {
2880 compile_error(ast_ctx(self), "failed to allocate label block `%s`", self->name);
2883 if (!func->curblock->final) {
2884 if (!ir_block_create_jump(func->curblock, ast_ctx(self), self->irblock))
2888 /* enter the new block */
2889 func->curblock = self->irblock;
2891 /* Generate all the leftover gotos */
2892 for (i = 0; i < vec_size(self->gotos); ++i) {
2893 if (!ast_goto_codegen(self->gotos[i], func, false, &dummy))
2900 bool ast_goto_codegen(ast_goto *self, ast_function *func, bool lvalue, ir_value **out)
2904 compile_error(ast_ctx(self), "internal error: ast_goto cannot be an lvalue");
2908 if (self->target->irblock) {
2909 if (self->irblock_from) {
2910 /* we already tried once, this is the callback */
2911 self->irblock_from->final = false;
2912 if (!ir_block_create_goto(self->irblock_from, ast_ctx(self), self->target->irblock)) {
2913 compile_error(ast_ctx(self), "failed to generate goto to `%s`", self->name);
2919 if (!ir_block_create_goto(func->curblock, ast_ctx(self), self->target->irblock)) {
2920 compile_error(ast_ctx(self), "failed to generate goto to `%s`", self->name);
2927 /* the target has not yet been created...
2928 * close this block in a sneaky way:
2930 func->curblock->final = true;
2931 self->irblock_from = func->curblock;
2932 ast_label_register_goto(self->target, self);
2938 bool ast_call_codegen(ast_call *self, ast_function *func, bool lvalue, ir_value **out)
2940 ast_expression_codegen *cgen;
2942 ir_instr *callinstr;
2945 ir_value *funval = NULL;
2947 /* return values are never lvalues */
2949 compile_error(ast_ctx(self), "not an l-value (function call)");
2953 if (self->expression.outr) {
2954 *out = self->expression.outr;
2958 cgen = self->func->expression.codegen;
2959 if (!(*cgen)((ast_expression*)(self->func), func, false, &funval))
2967 for (i = 0; i < vec_size(self->params); ++i)
2970 ast_expression *expr = self->params[i];
2972 cgen = expr->expression.codegen;
2973 if (!(*cgen)(expr, func, false, ¶m))
2977 vec_push(params, param);
2980 callinstr = ir_block_create_call(func->curblock, ast_ctx(self),
2981 ast_function_label(func, "call"),
2982 funval, !!(self->func->expression.flags & AST_FLAG_NORETURN));
2986 for (i = 0; i < vec_size(params); ++i) {
2987 ir_call_param(callinstr, params[i]);
2990 *out = ir_call_value(callinstr);
2991 self->expression.outr = *out;
2993 codegen_output_type(self, *out);