2015-01-15 04:34:43 +00:00
|
|
|
#include <new>
|
|
|
|
|
2012-04-25 11:17:37 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-04-25 14:21:04 +00:00
|
|
|
#include "gmqcc.h"
|
2012-04-25 11:17:37 +00:00
|
|
|
#include "ast.h"
|
2015-01-16 01:27:17 +00:00
|
|
|
#include "fold.h"
|
|
|
|
//#include "parser.h"
|
2012-04-25 11:17:37 +00:00
|
|
|
|
2015-01-20 19:25:56 +00:00
|
|
|
#include "algo.h"
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
#define ast_instantiate(T, ctx, destroyfn) \
|
|
|
|
T* self = new T; \
|
|
|
|
if (!self) return nullptr; \
|
|
|
|
ast_node_init(self, ctx, TYPE_##T); \
|
|
|
|
self->m_destroy = (ast_node_delete*)destroyfn
|
2012-04-25 11:17:37 +00:00
|
|
|
|
2013-05-29 03:29:04 +00:00
|
|
|
/*
|
|
|
|
* forward declarations, these need not be in ast.h for obvious
|
|
|
|
* static reasons.
|
|
|
|
*/
|
|
|
|
static bool ast_member_codegen(ast_member*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_array_index_delete(ast_array_index*);
|
|
|
|
static bool ast_array_index_codegen(ast_array_index*, ast_function*, bool lvalue, ir_value**);
|
2013-06-12 15:23:39 +00:00
|
|
|
static void ast_argpipe_delete(ast_argpipe*);
|
|
|
|
static bool ast_argpipe_codegen(ast_argpipe*, ast_function*, bool lvalue, ir_value**);
|
2013-05-29 03:29:04 +00:00
|
|
|
static void ast_store_delete(ast_store*);
|
|
|
|
static bool ast_store_codegen(ast_store*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_ifthen_delete(ast_ifthen*);
|
|
|
|
static bool ast_ifthen_codegen(ast_ifthen*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_ternary_delete(ast_ternary*);
|
|
|
|
static bool ast_ternary_codegen(ast_ternary*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_loop_delete(ast_loop*);
|
|
|
|
static bool ast_loop_codegen(ast_loop*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_breakcont_delete(ast_breakcont*);
|
|
|
|
static bool ast_breakcont_codegen(ast_breakcont*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_switch_delete(ast_switch*);
|
|
|
|
static bool ast_switch_codegen(ast_switch*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_label_delete(ast_label*);
|
|
|
|
static void ast_label_register_goto(ast_label*, ast_goto*);
|
|
|
|
static bool ast_label_codegen(ast_label*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static bool ast_goto_codegen(ast_goto*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_goto_delete(ast_goto*);
|
|
|
|
static void ast_call_delete(ast_call*);
|
|
|
|
static bool ast_call_codegen(ast_call*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static bool ast_block_codegen(ast_block*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_unary_delete(ast_unary*);
|
|
|
|
static bool ast_unary_codegen(ast_unary*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_entfield_delete(ast_entfield*);
|
|
|
|
static bool ast_entfield_codegen(ast_entfield*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_return_delete(ast_return*);
|
|
|
|
static bool ast_return_codegen(ast_return*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_binstore_delete(ast_binstore*);
|
|
|
|
static bool ast_binstore_codegen(ast_binstore*, ast_function*, bool lvalue, ir_value**);
|
|
|
|
static void ast_binary_delete(ast_binary*);
|
|
|
|
static bool ast_binary_codegen(ast_binary*, ast_function*, bool lvalue, ir_value**);
|
2014-04-08 12:34:55 +00:00
|
|
|
static bool ast_state_codegen(ast_state*, ast_function*, bool lvalue, ir_value**);
|
2012-11-25 18:19:36 +00:00
|
|
|
|
2012-04-25 11:17:37 +00:00
|
|
|
/* It must not be possible to get here. */
|
2012-06-07 15:09:29 +00:00
|
|
|
static GMQCC_NORETURN void _ast_node_destroy(ast_node *self)
|
2012-04-25 11:17:37 +00:00
|
|
|
{
|
2012-11-22 20:39:30 +00:00
|
|
|
(void)self;
|
2012-11-15 00:28:46 +00:00
|
|
|
con_err("ast node missing destroy()\n");
|
2013-04-14 01:14:14 +00:00
|
|
|
exit(EXIT_FAILURE);
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize main ast node aprts */
|
2015-01-19 12:32:26 +00:00
|
|
|
static void ast_node_init(ast_node *self, lex_ctx_t ctx, int node_type)
|
2012-04-25 11:17:37 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_context = ctx;
|
|
|
|
self->m_destroy = &_ast_node_destroy;
|
|
|
|
self->m_keep_node = false;
|
|
|
|
self->m_node_type = node_type;
|
|
|
|
self->m_side_effects = false;
|
2012-11-25 18:19:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* weight and side effects */
|
|
|
|
static void _ast_propagate_effects(ast_node *self, ast_node *other)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (other->m_side_effects)
|
|
|
|
self->m_side_effects = true;
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
2012-11-25 18:19:36 +00:00
|
|
|
#define ast_propagate_effects(s,o) _ast_propagate_effects(((ast_node*)(s)), ((ast_node*)(o)))
|
2012-04-25 11:17:37 +00:00
|
|
|
|
|
|
|
/* General expression initialization */
|
|
|
|
static void ast_expression_init(ast_expression *self,
|
|
|
|
ast_expression_codegen *codegen)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_codegen = codegen;
|
|
|
|
self->m_vtype = TYPE_VOID;
|
|
|
|
self->m_next = nullptr;
|
|
|
|
self->m_outl = nullptr;
|
|
|
|
self->m_outr = nullptr;
|
|
|
|
self->m_count = 0;
|
|
|
|
self->m_varparam = nullptr;
|
|
|
|
self->m_flags = 0;
|
2014-01-07 13:33:26 +00:00
|
|
|
if (OPTS_OPTION_BOOL(OPTION_COVERAGE))
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_flags |= AST_FLAG_BLOCK_COVERAGE;
|
2012-05-03 10:12:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ast_expression_delete(ast_expression *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_next)
|
|
|
|
ast_delete(self->m_next);
|
|
|
|
for (auto &it : self->m_type_params)
|
2015-01-15 04:34:43 +00:00
|
|
|
ast_delete(it);
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_varparam)
|
|
|
|
ast_delete(self->m_varparam);
|
2012-05-03 10:12:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ast_expression_delete_full(ast_expression *self)
|
|
|
|
{
|
|
|
|
ast_expression_delete(self);
|
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2012-08-18 15:16:20 +00:00
|
|
|
ast_value* ast_value_copy(const ast_value *self)
|
2012-07-27 13:22:39 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_value *cp = ast_value_new(self->m_context, self->m_name, self->m_vtype);
|
|
|
|
if (self->m_next) {
|
|
|
|
cp->m_next = ast_type_copy(self->m_context, self->m_next);
|
2012-07-27 13:22:39 +00:00
|
|
|
}
|
2015-01-19 13:00:04 +00:00
|
|
|
const ast_expression *fromex = self;
|
|
|
|
ast_expression *selfex = cp;
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_count = fromex->m_count;
|
|
|
|
selfex->m_flags = fromex->m_flags;
|
|
|
|
for (auto &it : fromex->m_type_params) {
|
2015-01-15 04:34:43 +00:00
|
|
|
ast_value *v = ast_value_copy(it);
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_type_params.push_back(v);
|
2012-08-18 15:16:20 +00:00
|
|
|
}
|
2012-07-27 13:22:39 +00:00
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
2013-02-05 16:34:40 +00:00
|
|
|
void ast_type_adopt_impl(ast_expression *self, const ast_expression *other)
|
2012-08-18 18:30:24 +00:00
|
|
|
{
|
2013-05-11 20:34:01 +00:00
|
|
|
const ast_expression *fromex;
|
2015-01-15 04:34:43 +00:00
|
|
|
ast_expression *selfex;
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = other->m_vtype;
|
|
|
|
if (other->m_next) {
|
|
|
|
self->m_next = (ast_expression*)ast_type_copy(self->m_context, other->m_next);
|
2013-05-11 20:34:01 +00:00
|
|
|
}
|
|
|
|
fromex = other;
|
|
|
|
selfex = self;
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_count = fromex->m_count;
|
|
|
|
selfex->m_flags = fromex->m_flags;
|
|
|
|
for (auto &it : fromex->m_type_params) {
|
2015-01-15 04:34:43 +00:00
|
|
|
ast_value *v = ast_value_copy(it);
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_type_params.push_back(v);
|
2012-08-18 18:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-20 15:43:58 +00:00
|
|
|
static ast_expression* ast_shallow_type(lex_ctx_t ctx, qc_type vtype)
|
2012-08-11 20:14:16 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
|
2015-01-15 20:18:33 +00:00
|
|
|
ast_expression_init(self, nullptr);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_codegen = nullptr;
|
|
|
|
self->m_next = nullptr;
|
|
|
|
self->m_vtype = vtype;
|
2012-08-11 20:14:16 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_expression* ast_type_copy(lex_ctx_t ctx, const ast_expression *ex)
|
2012-05-03 10:12:22 +00:00
|
|
|
{
|
2013-05-11 20:34:01 +00:00
|
|
|
const ast_expression *fromex;
|
|
|
|
ast_expression *selfex;
|
2012-05-03 10:12:22 +00:00
|
|
|
|
|
|
|
if (!ex)
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-05-03 10:12:22 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ast_instantiate(ast_expression, ctx, ast_expression_delete_full);
|
2015-01-15 20:18:33 +00:00
|
|
|
ast_expression_init(self, nullptr);
|
2012-05-03 10:12:22 +00:00
|
|
|
|
2013-05-11 20:34:01 +00:00
|
|
|
fromex = ex;
|
|
|
|
selfex = self;
|
2012-05-03 10:12:22 +00:00
|
|
|
|
2012-07-27 13:22:39 +00:00
|
|
|
/* This may never be codegen()d */
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_codegen = nullptr;
|
2012-07-27 13:22:39 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_vtype = fromex->m_vtype;
|
|
|
|
if (fromex->m_next)
|
|
|
|
selfex->m_next = ast_type_copy(ctx, fromex->m_next);
|
2012-05-03 10:12:22 +00:00
|
|
|
else
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_next = nullptr;
|
2012-05-03 10:12:22 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_count = fromex->m_count;
|
|
|
|
selfex->m_flags = fromex->m_flags;
|
|
|
|
for (auto &it : fromex->m_type_params) {
|
2015-01-15 04:34:43 +00:00
|
|
|
ast_value *v = ast_value_copy(it);
|
2015-01-24 11:25:46 +00:00
|
|
|
selfex->m_type_params.push_back(v);
|
2012-07-27 13:22:39 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 10:12:22 +00:00
|
|
|
return self;
|
|
|
|
}
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 12:14:56 +00:00
|
|
|
bool ast_compare_type(ast_expression *a, ast_expression *b)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (a->m_vtype == TYPE_NIL ||
|
|
|
|
b->m_vtype == TYPE_NIL)
|
2012-12-31 10:34:29 +00:00
|
|
|
return true;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (a->m_vtype != b->m_vtype)
|
2012-08-14 12:14:56 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!a->m_next != !b->m_next)
|
2012-08-14 12:14:56 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (a->m_type_params.size() != b->m_type_params.size())
|
2012-08-14 12:14:56 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
if ((a->m_flags & AST_FLAG_TYPE_MASK) !=
|
|
|
|
(b->m_flags & AST_FLAG_TYPE_MASK) )
|
2012-12-29 20:15:59 +00:00
|
|
|
{
|
2012-08-23 09:29:48 +00:00
|
|
|
return false;
|
2012-12-29 20:15:59 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (a->m_type_params.size()) {
|
2012-08-14 12:14:56 +00:00
|
|
|
size_t i;
|
2015-01-24 11:25:46 +00:00
|
|
|
for (i = 0; i < a->m_type_params.size(); ++i) {
|
|
|
|
if (!ast_compare_type((ast_expression*)a->m_type_params[i],
|
|
|
|
(ast_expression*)b->m_type_params[i]))
|
2012-08-14 12:14:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (a->m_next)
|
|
|
|
return ast_compare_type(a->m_next, b->m_next);
|
2012-08-14 12:14:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-10-28 19:30:55 +00:00
|
|
|
static size_t ast_type_to_string_impl(ast_expression *e, char *buf, size_t bufsize, size_t pos)
|
|
|
|
{
|
|
|
|
const char *typestr;
|
|
|
|
size_t typelen;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (!e) {
|
|
|
|
if (pos + 6 >= bufsize)
|
|
|
|
goto full;
|
2013-04-24 01:43:53 +00:00
|
|
|
util_strncpy(buf + pos, "(null)", 6);
|
2012-10-28 19:30:55 +00:00
|
|
|
return pos + 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos + 1 >= bufsize)
|
|
|
|
goto full;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
switch (e->m_vtype) {
|
2012-10-28 19:30:55 +00:00
|
|
|
case TYPE_VARIANT:
|
2013-04-24 01:43:53 +00:00
|
|
|
util_strncpy(buf + pos, "(variant)", 9);
|
2012-10-28 19:30:55 +00:00
|
|
|
return pos + 9;
|
|
|
|
|
|
|
|
case TYPE_FIELD:
|
|
|
|
buf[pos++] = '.';
|
2015-01-24 11:25:46 +00:00
|
|
|
return ast_type_to_string_impl(e->m_next, buf, bufsize, pos);
|
2012-10-28 19:30:55 +00:00
|
|
|
|
|
|
|
case TYPE_POINTER:
|
|
|
|
if (pos + 3 >= bufsize)
|
|
|
|
goto full;
|
|
|
|
buf[pos++] = '*';
|
|
|
|
buf[pos++] = '(';
|
2015-01-24 11:25:46 +00:00
|
|
|
pos = ast_type_to_string_impl(e->m_next, buf, bufsize, pos);
|
2012-10-28 19:30:55 +00:00
|
|
|
if (pos + 1 >= bufsize)
|
|
|
|
goto full;
|
|
|
|
buf[pos++] = ')';
|
|
|
|
return pos;
|
|
|
|
|
|
|
|
case TYPE_FUNCTION:
|
2015-01-24 11:25:46 +00:00
|
|
|
pos = ast_type_to_string_impl(e->m_next, buf, bufsize, pos);
|
2012-10-28 19:30:55 +00:00
|
|
|
if (pos + 2 >= bufsize)
|
|
|
|
goto full;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (e->m_type_params.empty()) {
|
2012-10-28 19:30:55 +00:00
|
|
|
buf[pos++] = '(';
|
|
|
|
buf[pos++] = ')';
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
buf[pos++] = '(';
|
2015-01-24 11:25:46 +00:00
|
|
|
pos = ast_type_to_string_impl((ast_expression*)(e->m_type_params[0]), buf, bufsize, pos);
|
|
|
|
for (i = 1; i < e->m_type_params.size(); ++i) {
|
2012-10-28 19:30:55 +00:00
|
|
|
if (pos + 2 >= bufsize)
|
|
|
|
goto full;
|
|
|
|
buf[pos++] = ',';
|
|
|
|
buf[pos++] = ' ';
|
2015-01-24 11:25:46 +00:00
|
|
|
pos = ast_type_to_string_impl((ast_expression*)(e->m_type_params[i]), buf, bufsize, pos);
|
2012-10-28 19:30:55 +00:00
|
|
|
}
|
|
|
|
if (pos + 1 >= bufsize)
|
|
|
|
goto full;
|
|
|
|
buf[pos++] = ')';
|
|
|
|
return pos;
|
|
|
|
|
2012-11-11 11:14:44 +00:00
|
|
|
case TYPE_ARRAY:
|
2015-01-24 11:25:46 +00:00
|
|
|
pos = ast_type_to_string_impl(e->m_next, buf, bufsize, pos);
|
2012-11-11 11:14:44 +00:00
|
|
|
if (pos + 1 >= bufsize)
|
|
|
|
goto full;
|
|
|
|
buf[pos++] = '[';
|
2015-01-24 11:25:46 +00:00
|
|
|
pos += util_snprintf(buf + pos, bufsize - pos - 1, "%i", (int)e->m_count);
|
2012-11-11 11:14:44 +00:00
|
|
|
if (pos + 1 >= bufsize)
|
|
|
|
goto full;
|
|
|
|
buf[pos++] = ']';
|
|
|
|
return pos;
|
|
|
|
|
2012-10-28 19:30:55 +00:00
|
|
|
default:
|
2015-01-24 11:25:46 +00:00
|
|
|
typestr = type_name[e->m_vtype];
|
2012-10-28 19:30:55 +00:00
|
|
|
typelen = strlen(typestr);
|
|
|
|
if (pos + typelen >= bufsize)
|
|
|
|
goto full;
|
2013-04-24 01:43:53 +00:00
|
|
|
util_strncpy(buf + pos, typestr, typelen);
|
2012-10-28 19:30:55 +00:00
|
|
|
return pos + typelen;
|
|
|
|
}
|
|
|
|
|
|
|
|
full:
|
|
|
|
buf[bufsize-3] = '.';
|
|
|
|
buf[bufsize-2] = '.';
|
|
|
|
buf[bufsize-1] = '.';
|
|
|
|
return bufsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_type_to_string(ast_expression *e, char *buf, size_t bufsize)
|
|
|
|
{
|
|
|
|
size_t pos = ast_type_to_string_impl(e, buf, bufsize-1, 0);
|
|
|
|
buf[pos] = 0;
|
|
|
|
}
|
|
|
|
|
2013-05-29 03:29:04 +00:00
|
|
|
static bool ast_value_codegen(ast_value *self, ast_function *func, bool lvalue, ir_value **out);
|
2015-01-20 15:43:58 +00:00
|
|
|
ast_value* ast_value_new(lex_ctx_t ctx, const char *name, qc_type t)
|
2012-04-25 11:17:37 +00:00
|
|
|
{
|
2012-04-25 11:19:22 +00:00
|
|
|
ast_instantiate(ast_value, ctx, ast_value_delete);
|
|
|
|
ast_expression_init((ast_expression*)self,
|
|
|
|
(ast_expression_codegen*)&ast_value_codegen);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_keep_node = true; /* keep */
|
|
|
|
|
|
|
|
self->m_name = name ? util_strdup(name) : nullptr;
|
|
|
|
self->m_vtype = t;
|
|
|
|
self->m_next = nullptr;
|
|
|
|
self->m_isfield = false;
|
|
|
|
self->m_cvq = CV_NONE;
|
|
|
|
self->m_hasvalue = false;
|
|
|
|
self->m_isimm = false;
|
|
|
|
self->m_inexact = false;
|
|
|
|
self->m_uses = 0;
|
|
|
|
memset(&self->m_constval, 0, sizeof(self->m_constval));
|
|
|
|
|
|
|
|
self->m_ir_v = nullptr;
|
|
|
|
self->m_ir_values = nullptr;
|
|
|
|
self->m_ir_value_count = 0;
|
|
|
|
|
|
|
|
self->m_setter = nullptr;
|
|
|
|
self->m_getter = nullptr;
|
|
|
|
self->m_desc = nullptr;
|
|
|
|
|
|
|
|
self->m_argcounter = nullptr;
|
|
|
|
self->m_intrinsic = false;
|
2013-01-12 10:29:03 +00:00
|
|
|
|
2012-04-25 11:19:22 +00:00
|
|
|
return self;
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ast_value_delete(ast_value* self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_name)
|
|
|
|
mem_d((void*)self->m_name);
|
|
|
|
if (self->m_argcounter)
|
|
|
|
mem_d((void*)self->m_argcounter);
|
|
|
|
if (self->m_hasvalue) {
|
|
|
|
switch (self->m_vtype)
|
2012-04-25 11:19:22 +00:00
|
|
|
{
|
2012-04-28 08:42:03 +00:00
|
|
|
case TYPE_STRING:
|
2015-01-24 11:25:46 +00:00
|
|
|
mem_d((void*)self->m_constval.vstring);
|
2012-04-25 11:19:22 +00:00
|
|
|
break;
|
2012-04-28 13:57:19 +00:00
|
|
|
case TYPE_FUNCTION:
|
|
|
|
/* unlink us from the function node */
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_constval.vfunc->m_function_type = nullptr;
|
2012-04-28 13:57:19 +00:00
|
|
|
break;
|
2012-04-25 11:19:22 +00:00
|
|
|
/* NOTE: delete function? currently collected in
|
|
|
|
* the parser structure
|
|
|
|
*/
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_ir_values)
|
|
|
|
mem_d(self->m_ir_values);
|
2012-12-30 09:58:52 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_desc)
|
|
|
|
mem_d(self->m_desc);
|
2012-12-30 09:58:52 +00:00
|
|
|
|
2015-01-15 19:07:26 +00:00
|
|
|
// initlist imples an array which implies .next in the expression exists.
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_initlist.size() && self->m_next->m_vtype == TYPE_STRING) {
|
|
|
|
for (auto &it : self->m_initlist)
|
2015-01-15 19:07:26 +00:00
|
|
|
if (it.vstring)
|
|
|
|
mem_d(it.vstring);
|
2013-04-26 08:45:13 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 10:12:22 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:25:56 +00:00
|
|
|
self->~ast_value();
|
2012-04-25 11:19:22 +00:00
|
|
|
mem_d(self);
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
2012-11-15 17:32:03 +00:00
|
|
|
void ast_value_params_add(ast_value *self, ast_value *p)
|
2012-07-27 13:22:39 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_type_params.push_back(p);
|
2012-07-27 13:22:39 +00:00
|
|
|
}
|
|
|
|
|
2012-04-27 11:32:52 +00:00
|
|
|
bool ast_value_set_name(ast_value *self, const char *name)
|
2012-04-25 11:17:37 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_name)
|
|
|
|
mem_d((void*)self->m_name);
|
|
|
|
self->m_name = util_strdup(name);
|
|
|
|
return !!self->m_name;
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_binary* ast_binary_new(lex_ctx_t ctx, int op,
|
2012-04-28 15:27:06 +00:00
|
|
|
ast_expression* left, ast_expression* right)
|
2012-04-25 11:17:37 +00:00
|
|
|
{
|
2012-04-25 11:19:22 +00:00
|
|
|
ast_instantiate(ast_binary, ctx, ast_binary_delete);
|
2012-04-26 09:36:46 +00:00
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binary_codegen);
|
2012-04-25 11:17:37 +00:00
|
|
|
|
2013-11-23 18:13:21 +00:00
|
|
|
if (ast_istype(right, ast_unary) && OPTS_OPTIMIZATION(OPTIM_PEEPHOLE)) {
|
2013-12-09 00:01:44 +00:00
|
|
|
ast_unary *unary = ((ast_unary*)right);
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_expression *normal = unary->m_operand;
|
2013-11-23 18:13:21 +00:00
|
|
|
|
|
|
|
/* make a-(-b) => a + b */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (unary->m_op == VINSTR_NEG_F || unary->m_op == VINSTR_NEG_V) {
|
2013-12-09 00:01:44 +00:00
|
|
|
if (op == INSTR_SUB_F) {
|
|
|
|
op = INSTR_ADD_F;
|
|
|
|
right = normal;
|
|
|
|
++opts_optimizationcount[OPTIM_PEEPHOLE];
|
|
|
|
} else if (op == INSTR_SUB_V) {
|
|
|
|
op = INSTR_ADD_V;
|
|
|
|
right = normal;
|
|
|
|
++opts_optimizationcount[OPTIM_PEEPHOLE];
|
|
|
|
}
|
2013-11-23 18:13:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_op = op;
|
|
|
|
self->m_left = left;
|
|
|
|
self->m_right = right;
|
|
|
|
self->m_right_first = false;
|
2012-04-25 11:17:37 +00:00
|
|
|
|
2012-11-25 18:19:36 +00:00
|
|
|
ast_propagate_effects(self, left);
|
|
|
|
ast_propagate_effects(self, right);
|
|
|
|
|
2012-08-12 09:36:28 +00:00
|
|
|
if (op >= INSTR_EQ_F && op <= INSTR_GT)
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_FLOAT;
|
2012-12-18 15:56:22 +00:00
|
|
|
else if (op == INSTR_AND || op == INSTR_OR) {
|
|
|
|
if (OPTS_FLAG(PERL_LOGIC))
|
|
|
|
ast_type_adopt(self, right);
|
|
|
|
else
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_FLOAT;
|
2012-12-18 15:56:22 +00:00
|
|
|
}
|
2013-10-06 03:36:48 +00:00
|
|
|
else if (op == INSTR_BITAND || op == INSTR_BITOR)
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_FLOAT;
|
2013-10-06 03:36:48 +00:00
|
|
|
else if (op == INSTR_MUL_VF || op == INSTR_MUL_FV)
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_VECTOR;
|
2013-10-06 03:36:48 +00:00
|
|
|
else if (op == INSTR_MUL_V)
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_FLOAT;
|
2012-08-12 09:36:28 +00:00
|
|
|
else
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = left->m_vtype;
|
2012-08-12 09:36:28 +00:00
|
|
|
|
2013-02-05 17:14:56 +00:00
|
|
|
/* references all */
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_refs = AST_REF_ALL;
|
2013-02-05 17:14:56 +00:00
|
|
|
|
2012-04-25 11:19:22 +00:00
|
|
|
return self;
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ast_binary_delete(ast_binary *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_refs & AST_REF_LEFT) ast_unref(self->m_left);
|
|
|
|
if (self->m_refs & AST_REF_RIGHT) ast_unref(self->m_right);
|
2013-02-05 17:14:56 +00:00
|
|
|
|
2012-05-03 10:12:22 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_binary();
|
2012-04-25 11:19:22 +00:00
|
|
|
mem_d(self);
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_binstore* ast_binstore_new(lex_ctx_t ctx, int storop, int op,
|
2012-08-14 08:40:48 +00:00
|
|
|
ast_expression* left, ast_expression* right)
|
|
|
|
{
|
|
|
|
ast_instantiate(ast_binstore, ctx, ast_binstore_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_binstore_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_side_effects = true;
|
2012-11-25 18:19:36 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_opstore = storop;
|
|
|
|
self->m_opbin = op;
|
|
|
|
self->m_dest = left;
|
|
|
|
self->m_source = right;
|
2012-08-14 08:40:48 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_keep_dest = false;
|
2012-11-25 23:15:07 +00:00
|
|
|
|
2013-02-05 16:34:40 +00:00
|
|
|
ast_type_adopt(self, left);
|
2012-08-14 08:40:48 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_binstore_delete(ast_binstore *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_keep_dest)
|
|
|
|
ast_unref(self->m_dest);
|
|
|
|
ast_unref(self->m_source);
|
2012-08-14 08:40:48 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_binstore();
|
2012-08-14 08:40:48 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_unary* ast_unary_new(lex_ctx_t ctx, int op,
|
2012-07-26 18:45:18 +00:00
|
|
|
ast_expression *expr)
|
|
|
|
{
|
|
|
|
ast_instantiate(ast_unary, ctx, ast_unary_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_unary_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_op = op;
|
|
|
|
self->m_operand = expr;
|
2012-07-26 18:45:18 +00:00
|
|
|
|
2013-09-30 09:12:28 +00:00
|
|
|
|
2013-09-28 10:41:40 +00:00
|
|
|
if (ast_istype(expr, ast_unary) && OPTS_OPTIMIZATION(OPTIM_PEEPHOLE)) {
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_unary *prev = (ast_unary*)((ast_unary*)expr)->m_operand;
|
2013-09-30 09:12:28 +00:00
|
|
|
|
|
|
|
/* Handle for double negation */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (((ast_unary*)expr)->m_op == op)
|
|
|
|
prev = (ast_unary*)((ast_unary*)expr)->m_operand;
|
2013-09-30 09:12:28 +00:00
|
|
|
|
2013-09-28 10:33:15 +00:00
|
|
|
if (ast_istype(prev, ast_unary)) {
|
|
|
|
ast_expression_delete((ast_expression*)self);
|
|
|
|
mem_d(self);
|
|
|
|
++opts_optimizationcount[OPTIM_PEEPHOLE];
|
2013-09-28 10:36:00 +00:00
|
|
|
return prev;
|
2013-09-28 10:33:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-25 18:19:36 +00:00
|
|
|
ast_propagate_effects(self, expr);
|
|
|
|
|
2013-09-30 18:32:21 +00:00
|
|
|
if ((op >= INSTR_NOT_F && op <= INSTR_NOT_FNC) || op == VINSTR_NEG_F) {
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_FLOAT;
|
2013-09-30 18:32:21 +00:00
|
|
|
} else if (op == VINSTR_NEG_V) {
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_VECTOR;
|
2013-09-30 02:01:46 +00:00
|
|
|
} else {
|
2013-07-28 00:23:15 +00:00
|
|
|
compile_error(ctx, "cannot determine type of unary operation %s", util_instr_str[op]);
|
2013-09-30 02:01:46 +00:00
|
|
|
}
|
2012-08-18 18:02:18 +00:00
|
|
|
|
2012-07-26 18:45:18 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_unary_delete(ast_unary *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_operand) ast_unref(self->m_operand);
|
2012-07-26 18:45:18 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_unary();
|
2012-07-26 18:45:18 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_return* ast_return_new(lex_ctx_t ctx, ast_expression *expr)
|
2012-07-26 19:18:39 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_return, ctx, ast_return_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_return_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_operand = expr;
|
2012-07-26 19:18:39 +00:00
|
|
|
|
2012-11-25 18:19:36 +00:00
|
|
|
if (expr)
|
|
|
|
ast_propagate_effects(self, expr);
|
|
|
|
|
2012-07-26 19:18:39 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_return_delete(ast_return *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_operand)
|
|
|
|
ast_unref(self->m_operand);
|
2012-07-26 19:18:39 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_return();
|
2012-07-26 19:18:39 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_entfield* ast_entfield_new(lex_ctx_t ctx, ast_expression *entity, ast_expression *field)
|
2012-05-01 13:08:54 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (field->m_vtype != TYPE_FIELD) {
|
2012-11-26 15:12:40 +00:00
|
|
|
compile_error(ctx, "ast_entfield_new with expression not of type field");
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-05-03 10:12:22 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
return ast_entfield_new_force(ctx, entity, field, field->m_next);
|
2012-11-12 21:39:43 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_entfield* ast_entfield_new_force(lex_ctx_t ctx, ast_expression *entity, ast_expression *field, const ast_expression *outtype)
|
2012-11-12 21:39:43 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_entfield, ctx, ast_entfield_delete);
|
2012-05-03 10:12:22 +00:00
|
|
|
|
|
|
|
if (!outtype) {
|
|
|
|
mem_d(self);
|
|
|
|
/* Error: field has no type... */
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-05-03 10:12:22 +00:00
|
|
|
}
|
|
|
|
|
2012-05-01 13:08:54 +00:00
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_entfield_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_entity = entity;
|
|
|
|
self->m_field = field;
|
2012-11-25 18:19:36 +00:00
|
|
|
ast_propagate_effects(self, entity);
|
|
|
|
ast_propagate_effects(self, field);
|
2012-05-01 13:08:54 +00:00
|
|
|
|
2013-02-05 16:34:40 +00:00
|
|
|
ast_type_adopt(self, outtype);
|
2012-05-01 13:08:54 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_entfield_delete(ast_entfield *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_unref(self->m_entity);
|
|
|
|
ast_unref(self->m_field);
|
2012-05-03 10:12:22 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_entfield();
|
2012-05-01 13:08:54 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_member* ast_member_new(lex_ctx_t ctx, ast_expression *owner, unsigned int field, const char *name)
|
2012-08-08 12:49:37 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_member, ctx, ast_member_delete);
|
|
|
|
if (field >= 3) {
|
|
|
|
mem_d(self);
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-08-08 12:49:37 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (owner->m_vtype != TYPE_VECTOR &&
|
|
|
|
owner->m_vtype != TYPE_FIELD) {
|
|
|
|
compile_error(ctx, "member-access on an invalid owner of type %s", type_name[owner->m_vtype]);
|
2012-08-11 20:14:16 +00:00
|
|
|
mem_d(self);
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-08-11 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2012-08-08 12:49:37 +00:00
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_member_codegen);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_keep_node = true; /* keep */
|
2012-08-08 12:49:37 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (owner->m_vtype == TYPE_VECTOR) {
|
|
|
|
self->m_vtype = TYPE_FLOAT;
|
|
|
|
self->m_next = nullptr;
|
2012-08-11 20:14:16 +00:00
|
|
|
} else {
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_FIELD;
|
|
|
|
self->m_next = ast_shallow_type(ctx, TYPE_FLOAT);
|
2012-08-11 20:14:16 +00:00
|
|
|
}
|
2012-08-08 12:49:37 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_rvalue = false;
|
|
|
|
self->m_owner = owner;
|
2012-11-25 18:19:36 +00:00
|
|
|
ast_propagate_effects(self, owner);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_field = field;
|
2012-11-25 12:23:37 +00:00
|
|
|
if (name)
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_name = util_strdup(name);
|
2012-11-25 12:23:37 +00:00
|
|
|
else
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_name = nullptr;
|
2012-08-08 12:49:37 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_member_delete(ast_member *self)
|
|
|
|
{
|
2015-01-19 12:32:26 +00:00
|
|
|
/* The owner is always an ast_value, which has .keep_node=true,
|
2012-08-18 14:32:07 +00:00
|
|
|
* also: ast_members are usually deleted after the owner, thus
|
|
|
|
* this will cause invalid access
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_unref(self->m_owner);
|
2012-08-18 14:32:07 +00:00
|
|
|
* once we allow (expression).x to access a vector-member, we need
|
|
|
|
* to change this: preferably by creating an alternate ast node for this
|
|
|
|
* purpose that is not garbage-collected.
|
|
|
|
*/
|
2012-08-08 12:49:37 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-24 11:25:46 +00:00
|
|
|
mem_d(self->m_name);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_member();
|
2012-08-08 12:49:37 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2012-12-24 10:30:58 +00:00
|
|
|
bool ast_member_set_name(ast_member *self, const char *name)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_name)
|
|
|
|
mem_d((void*)self->m_name);
|
|
|
|
self->m_name = util_strdup(name);
|
|
|
|
return !!self->m_name;
|
2012-12-24 10:30:58 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_array_index* ast_array_index_new(lex_ctx_t ctx, ast_expression *array, ast_expression *index)
|
2012-11-11 15:06:27 +00:00
|
|
|
{
|
2012-11-12 23:11:07 +00:00
|
|
|
ast_expression *outtype;
|
2012-11-11 15:06:27 +00:00
|
|
|
ast_instantiate(ast_array_index, ctx, ast_array_index_delete);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
outtype = array->m_next;
|
2012-11-11 15:06:27 +00:00
|
|
|
if (!outtype) {
|
|
|
|
mem_d(self);
|
|
|
|
/* Error: field has no type... */
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-11-11 15:06:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_array_index_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_array = array;
|
|
|
|
self->m_index = index;
|
2012-11-25 18:19:36 +00:00
|
|
|
ast_propagate_effects(self, array);
|
|
|
|
ast_propagate_effects(self, index);
|
2012-11-11 15:06:27 +00:00
|
|
|
|
2013-02-05 16:34:40 +00:00
|
|
|
ast_type_adopt(self, outtype);
|
2015-01-24 11:25:46 +00:00
|
|
|
if (array->m_vtype == TYPE_FIELD && outtype->m_vtype == TYPE_ARRAY) {
|
|
|
|
if (self->m_vtype != TYPE_ARRAY) {
|
|
|
|
compile_error(self->m_context, "array_index node on type");
|
2012-11-12 22:35:47 +00:00
|
|
|
ast_array_index_delete(self);
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-11-12 22:35:47 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_array = outtype;
|
|
|
|
self->m_vtype = TYPE_FIELD;
|
2012-11-12 22:35:47 +00:00
|
|
|
}
|
2012-11-11 15:06:27 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_array_index_delete(ast_array_index *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_array)
|
|
|
|
ast_unref(self->m_array);
|
|
|
|
if (self->m_index)
|
|
|
|
ast_unref(self->m_index);
|
2012-11-11 15:06:27 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_argpipe* ast_argpipe_new(lex_ctx_t ctx, ast_expression *index)
|
2013-06-12 15:23:39 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_argpipe, ctx, ast_argpipe_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_argpipe_codegen);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_index = index;
|
|
|
|
self->m_vtype = TYPE_NOEXPR;
|
2013-06-12 15:23:39 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_argpipe_delete(ast_argpipe *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_index)
|
|
|
|
ast_unref(self->m_index);
|
2013-06-12 15:23:39 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_argpipe();
|
2013-06-12 15:23:39 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_ifthen* ast_ifthen_new(lex_ctx_t ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
|
2012-05-01 14:55:02 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_ifthen, ctx, ast_ifthen_delete);
|
|
|
|
if (!ontrue && !onfalse) {
|
|
|
|
/* because it is invalid */
|
|
|
|
mem_d(self);
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-05-01 14:55:02 +00:00
|
|
|
}
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ifthen_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_cond = cond;
|
|
|
|
self->m_on_true = ontrue;
|
|
|
|
self->m_on_false = onfalse;
|
2012-11-25 18:19:36 +00:00
|
|
|
ast_propagate_effects(self, cond);
|
|
|
|
if (ontrue)
|
|
|
|
ast_propagate_effects(self, ontrue);
|
|
|
|
if (onfalse)
|
|
|
|
ast_propagate_effects(self, onfalse);
|
2012-05-01 14:55:02 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_ifthen_delete(ast_ifthen *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_unref(self->m_cond);
|
|
|
|
if (self->m_on_true)
|
|
|
|
ast_unref(self->m_on_true);
|
|
|
|
if (self->m_on_false)
|
|
|
|
ast_unref(self->m_on_false);
|
2012-05-03 10:12:22 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_ifthen();
|
2012-05-01 14:55:02 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_ternary* ast_ternary_new(lex_ctx_t ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
|
2012-05-01 15:02:45 +00:00
|
|
|
{
|
2012-12-31 10:45:00 +00:00
|
|
|
ast_expression *exprtype = ontrue;
|
2012-05-01 15:02:45 +00:00
|
|
|
ast_instantiate(ast_ternary, ctx, ast_ternary_delete);
|
2015-01-15 20:18:33 +00:00
|
|
|
/* This time NEITHER must be nullptr */
|
2012-05-01 15:02:45 +00:00
|
|
|
if (!ontrue || !onfalse) {
|
|
|
|
mem_d(self);
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-05-01 15:02:45 +00:00
|
|
|
}
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_ternary_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_cond = cond;
|
|
|
|
self->m_on_true = ontrue;
|
|
|
|
self->m_on_false = onfalse;
|
2012-11-25 18:19:36 +00:00
|
|
|
ast_propagate_effects(self, cond);
|
|
|
|
ast_propagate_effects(self, ontrue);
|
|
|
|
ast_propagate_effects(self, onfalse);
|
2012-05-01 15:02:45 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (ontrue->m_vtype == TYPE_NIL)
|
2012-12-31 10:45:00 +00:00
|
|
|
exprtype = onfalse;
|
2013-02-05 16:34:40 +00:00
|
|
|
ast_type_adopt(self, exprtype);
|
2012-11-21 19:57:00 +00:00
|
|
|
|
2012-05-01 15:02:45 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_ternary_delete(ast_ternary *self)
|
|
|
|
{
|
2013-01-03 12:20:57 +00:00
|
|
|
/* the if()s are only there because computed-gotos can set them
|
2015-01-15 20:18:33 +00:00
|
|
|
* to nullptr
|
2013-01-03 12:20:57 +00:00
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_cond) ast_unref(self->m_cond);
|
|
|
|
if (self->m_on_true) ast_unref(self->m_on_true);
|
|
|
|
if (self->m_on_false) ast_unref(self->m_on_false);
|
2012-05-03 10:12:22 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_ternary();
|
2012-05-01 15:02:45 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_loop* ast_loop_new(lex_ctx_t ctx,
|
2012-05-03 19:57:13 +00:00
|
|
|
ast_expression *initexpr,
|
2012-12-20 19:22:31 +00:00
|
|
|
ast_expression *precond, bool pre_not,
|
|
|
|
ast_expression *postcond, bool post_not,
|
2012-05-03 22:16:51 +00:00
|
|
|
ast_expression *increment,
|
|
|
|
ast_expression *body)
|
2012-05-03 19:57:13 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_loop, ctx, ast_loop_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_loop_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_initexpr = initexpr;
|
|
|
|
self->m_precond = precond;
|
|
|
|
self->m_postcond = postcond;
|
|
|
|
self->m_increment = increment;
|
|
|
|
self->m_body = body;
|
2012-05-03 19:57:13 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_pre_not = pre_not;
|
|
|
|
self->m_post_not = post_not;
|
2012-12-20 19:22:31 +00:00
|
|
|
|
2012-11-25 18:19:36 +00:00
|
|
|
if (initexpr)
|
|
|
|
ast_propagate_effects(self, initexpr);
|
|
|
|
if (precond)
|
|
|
|
ast_propagate_effects(self, precond);
|
|
|
|
if (postcond)
|
|
|
|
ast_propagate_effects(self, postcond);
|
|
|
|
if (increment)
|
|
|
|
ast_propagate_effects(self, increment);
|
|
|
|
if (body)
|
|
|
|
ast_propagate_effects(self, body);
|
|
|
|
|
2012-05-03 19:57:13 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_loop_delete(ast_loop *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_initexpr)
|
|
|
|
ast_unref(self->m_initexpr);
|
|
|
|
if (self->m_precond)
|
|
|
|
ast_unref(self->m_precond);
|
|
|
|
if (self->m_postcond)
|
|
|
|
ast_unref(self->m_postcond);
|
|
|
|
if (self->m_increment)
|
|
|
|
ast_unref(self->m_increment);
|
|
|
|
if (self->m_body)
|
|
|
|
ast_unref(self->m_body);
|
2012-05-03 19:57:13 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_loop();
|
2012-05-03 19:57:13 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_breakcont* ast_breakcont_new(lex_ctx_t ctx, bool iscont, unsigned int levels)
|
2012-11-19 18:39:52 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_breakcont, ctx, ast_breakcont_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_breakcont_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_is_continue = iscont;
|
|
|
|
self->m_levels = levels;
|
2012-11-19 18:39:52 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_breakcont_delete(ast_breakcont *self)
|
|
|
|
{
|
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_breakcont();
|
2012-11-19 18:39:52 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_switch* ast_switch_new(lex_ctx_t ctx, ast_expression *op)
|
2012-11-19 20:17:44 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_switch, ctx, ast_switch_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_switch_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_operand = op;
|
2012-11-19 20:17:44 +00:00
|
|
|
|
2012-11-25 18:19:36 +00:00
|
|
|
ast_propagate_effects(self, op);
|
|
|
|
|
2012-11-19 20:17:44 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_switch_delete(ast_switch *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_unref(self->m_operand);
|
2012-11-19 20:17:44 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_cases) {
|
|
|
|
if (it.m_value)
|
|
|
|
ast_unref(it.m_value);
|
|
|
|
ast_unref(it.m_code);
|
2012-11-19 20:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_switch();
|
2012-11-19 20:17:44 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_label* ast_label_new(lex_ctx_t ctx, const char *name, bool undefined)
|
2012-11-25 20:27:14 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_label, ctx, ast_label_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_label_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype = TYPE_NOEXPR;
|
2013-01-03 11:49:21 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_name = util_strdup(name);
|
|
|
|
self->m_irblock = nullptr;
|
|
|
|
self->m_undefined = undefined;
|
2012-11-25 20:27:14 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_label_delete(ast_label *self)
|
2012-11-25 20:40:26 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
mem_d((void*)self->m_name);
|
2012-11-25 20:40:26 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_label();
|
2012-11-25 20:40:26 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-05-29 03:29:04 +00:00
|
|
|
static void ast_label_register_goto(ast_label *self, ast_goto *g)
|
2012-11-25 20:40:26 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_gotos.push_back(g);
|
2012-11-25 20:40:26 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_goto* ast_goto_new(lex_ctx_t ctx, const char *name)
|
2012-11-25 20:40:26 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_goto, ctx, ast_goto_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_goto_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_name = util_strdup(name);
|
|
|
|
self->m_target = nullptr;
|
|
|
|
self->m_irblock_from = nullptr;
|
2012-11-25 20:40:26 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_goto_delete(ast_goto *self)
|
2012-11-25 20:27:14 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
mem_d((void*)self->m_name);
|
2012-11-25 20:27:14 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_goto();
|
2012-11-25 20:27:14 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2012-11-25 20:53:14 +00:00
|
|
|
void ast_goto_set_label(ast_goto *self, ast_label *label)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_target = label;
|
2012-11-25 20:53:14 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 12:34:55 +00:00
|
|
|
ast_state* ast_state_new(lex_ctx_t ctx, ast_expression *frame, ast_expression *think)
|
|
|
|
{
|
|
|
|
ast_instantiate(ast_state, ctx, ast_state_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_state_codegen);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_framenum = frame;
|
|
|
|
self->m_nextthink = think;
|
2014-04-08 12:34:55 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_state_delete(ast_state *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_framenum)
|
|
|
|
ast_unref(self->m_framenum);
|
|
|
|
if (self->m_nextthink)
|
|
|
|
ast_unref(self->m_nextthink);
|
2014-04-08 12:34:55 +00:00
|
|
|
|
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_state();
|
2014-04-08 12:34:55 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_call* ast_call_new(lex_ctx_t ctx,
|
2012-06-28 14:15:51 +00:00
|
|
|
ast_expression *funcexpr)
|
|
|
|
{
|
|
|
|
ast_instantiate(ast_call, ctx, ast_call_delete);
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!funcexpr->m_next) {
|
2013-01-16 19:32:37 +00:00
|
|
|
compile_error(ctx, "not a function");
|
|
|
|
mem_d(self);
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2013-01-16 19:32:37 +00:00
|
|
|
}
|
2012-06-28 14:15:51 +00:00
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_call_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_side_effects = true;
|
2012-11-25 18:19:36 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_func = funcexpr;
|
|
|
|
self->m_va_count = nullptr;
|
2012-07-04 12:41:39 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_type_adopt(self, funcexpr->m_next);
|
2012-08-18 17:37:51 +00:00
|
|
|
|
2012-06-28 14:15:51 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_call_delete(ast_call *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_params)
|
2015-01-15 04:45:00 +00:00
|
|
|
ast_unref(it);
|
2012-06-28 14:15:51 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_func)
|
|
|
|
ast_unref(self->m_func);
|
2012-06-28 14:15:51 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_va_count)
|
|
|
|
ast_unref(self->m_va_count);
|
2013-01-12 12:29:47 +00:00
|
|
|
|
2012-06-28 14:15:51 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_call();
|
2012-06-28 14:15:51 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-06-12 15:23:39 +00:00
|
|
|
static bool ast_call_check_vararg(ast_call *self, ast_expression *va_type, ast_expression *exp_type)
|
|
|
|
{
|
|
|
|
char texp[1024];
|
|
|
|
char tgot[1024];
|
|
|
|
if (!exp_type)
|
|
|
|
return true;
|
|
|
|
if (!va_type || !ast_compare_type(va_type, exp_type))
|
|
|
|
{
|
|
|
|
if (va_type && exp_type)
|
|
|
|
{
|
|
|
|
ast_type_to_string(va_type, tgot, sizeof(tgot));
|
|
|
|
ast_type_to_string(exp_type, texp, sizeof(texp));
|
|
|
|
if (OPTS_FLAG(UNSAFE_VARARGS)) {
|
2015-01-24 11:25:46 +00:00
|
|
|
if (compile_warning(self->m_context, WARN_UNSAFE_TYPES,
|
2013-06-12 15:23:39 +00:00
|
|
|
"piped variadic argument differs in type: constrained to type %s, expected type %s",
|
|
|
|
tgot, texp))
|
|
|
|
return false;
|
|
|
|
} else {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context,
|
2013-06-12 15:23:39 +00:00
|
|
|
"piped variadic argument differs in type: constrained to type %s, expected type %s",
|
|
|
|
tgot, texp);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ast_type_to_string(exp_type, texp, sizeof(texp));
|
|
|
|
if (OPTS_FLAG(UNSAFE_VARARGS)) {
|
2015-01-24 11:25:46 +00:00
|
|
|
if (compile_warning(self->m_context, WARN_UNSAFE_TYPES,
|
2013-06-12 15:23:39 +00:00
|
|
|
"piped variadic argument may differ in type: expected type %s",
|
|
|
|
texp))
|
|
|
|
return false;
|
|
|
|
} else {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context,
|
2013-06-12 15:23:39 +00:00
|
|
|
"piped variadic argument may differ in type: expected type %s",
|
|
|
|
texp);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ast_call_check_types(ast_call *self, ast_expression *va_type)
|
2012-10-28 14:44:27 +00:00
|
|
|
{
|
2013-01-12 10:10:29 +00:00
|
|
|
char texp[1024];
|
|
|
|
char tgot[1024];
|
2012-10-28 14:44:27 +00:00
|
|
|
size_t i;
|
2015-01-15 04:34:43 +00:00
|
|
|
bool retval = true;
|
2015-01-24 11:25:46 +00:00
|
|
|
const ast_expression *func = self->m_func;
|
|
|
|
size_t count = self->m_params.size();
|
|
|
|
if (count > func->m_type_params.size())
|
|
|
|
count = func->m_type_params.size();
|
2012-10-28 14:44:27 +00:00
|
|
|
|
2012-10-29 13:35:50 +00:00
|
|
|
for (i = 0; i < count; ++i) {
|
2015-01-24 11:25:46 +00:00
|
|
|
if (ast_istype(self->m_params[i], ast_argpipe)) {
|
2013-06-15 07:49:15 +00:00
|
|
|
/* warn about type safety instead */
|
2013-06-12 15:23:39 +00:00
|
|
|
if (i+1 != count) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "argpipe must be the last parameter to a function call");
|
2013-06-12 15:23:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ast_call_check_vararg(self, va_type, (ast_expression*)func->m_type_params[i]))
|
2013-06-12 15:23:39 +00:00
|
|
|
retval = false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
else if (!ast_compare_type(self->m_params[i], (ast_expression*)(func->m_type_params[i])))
|
2012-12-31 10:30:02 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_type_to_string(self->m_params[i], tgot, sizeof(tgot));
|
|
|
|
ast_type_to_string((ast_expression*)func->m_type_params[i], texp, sizeof(texp));
|
|
|
|
compile_error(self->m_context, "invalid type for parameter %u in function call: expected %s, got %s",
|
2012-11-21 19:53:00 +00:00
|
|
|
(unsigned int)(i+1), texp, tgot);
|
2012-10-28 14:44:27 +00:00
|
|
|
/* we don't immediately return */
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
count = self->m_params.size();
|
|
|
|
if (count > func->m_type_params.size() && func->m_varparam) {
|
2013-01-12 10:10:29 +00:00
|
|
|
for (; i < count; ++i) {
|
2015-01-24 11:25:46 +00:00
|
|
|
if (ast_istype(self->m_params[i], ast_argpipe)) {
|
2013-06-15 07:49:15 +00:00
|
|
|
/* warn about type safety instead */
|
2013-06-12 15:23:39 +00:00
|
|
|
if (i+1 != count) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "argpipe must be the last parameter to a function call");
|
2013-06-12 15:23:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ast_call_check_vararg(self, va_type, func->m_varparam))
|
2013-06-12 15:23:39 +00:00
|
|
|
retval = false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
else if (!ast_compare_type(self->m_params[i], func->m_varparam))
|
2013-01-12 10:10:29 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_type_to_string(self->m_params[i], tgot, sizeof(tgot));
|
|
|
|
ast_type_to_string(func->m_varparam, texp, sizeof(texp));
|
|
|
|
compile_error(self->m_context, "invalid type for variadic parameter %u in function call: expected %s, got %s",
|
2013-01-12 10:10:29 +00:00
|
|
|
(unsigned int)(i+1), texp, tgot);
|
|
|
|
/* we don't immediately return */
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-10-28 14:44:27 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_store* ast_store_new(lex_ctx_t ctx, int op,
|
2012-07-28 16:13:12 +00:00
|
|
|
ast_expression *dest, ast_expression *source)
|
2012-04-26 09:36:46 +00:00
|
|
|
{
|
|
|
|
ast_instantiate(ast_store, ctx, ast_store_delete);
|
|
|
|
ast_expression_init((ast_expression*)self, (ast_expression_codegen*)&ast_store_codegen);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_side_effects = true;
|
2012-11-25 18:19:36 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_op = op;
|
|
|
|
self->m_dest = dest;
|
|
|
|
self->m_source = source;
|
2012-04-26 09:36:46 +00:00
|
|
|
|
2013-02-05 16:34:40 +00:00
|
|
|
ast_type_adopt(self, dest);
|
2012-10-28 19:02:57 +00:00
|
|
|
|
2012-04-26 09:36:46 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ast_store_delete(ast_store *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_unref(self->m_dest);
|
|
|
|
ast_unref(self->m_source);
|
2012-05-03 10:12:22 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_store();
|
2012-04-26 09:36:46 +00:00
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_block* ast_block_new(lex_ctx_t ctx)
|
2012-04-25 11:17:37 +00:00
|
|
|
{
|
2012-04-25 11:19:22 +00:00
|
|
|
ast_instantiate(ast_block, ctx, ast_block_delete);
|
|
|
|
ast_expression_init((ast_expression*)self,
|
|
|
|
(ast_expression_codegen*)&ast_block_codegen);
|
|
|
|
return self;
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
2012-12-05 11:57:00 +00:00
|
|
|
bool ast_block_add_expr(ast_block *self, ast_expression *e)
|
2012-11-25 18:19:36 +00:00
|
|
|
{
|
|
|
|
ast_propagate_effects(self, e);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_exprs.push_back(e);
|
|
|
|
if (self->m_next) {
|
|
|
|
ast_delete(self->m_next);
|
|
|
|
self->m_next = nullptr;
|
2012-12-05 11:57:00 +00:00
|
|
|
}
|
2013-02-05 16:34:40 +00:00
|
|
|
ast_type_adopt(self, e);
|
2012-12-05 11:57:00 +00:00
|
|
|
return true;
|
2012-11-25 18:19:36 +00:00
|
|
|
}
|
|
|
|
|
2012-11-15 17:32:03 +00:00
|
|
|
void ast_block_collect(ast_block *self, ast_expression *expr)
|
2012-08-18 14:27:40 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_collect.push_back(expr);
|
|
|
|
expr->m_keep_node = true;
|
2012-08-18 14:27:40 +00:00
|
|
|
}
|
|
|
|
|
2012-04-25 11:17:37 +00:00
|
|
|
void ast_block_delete(ast_block *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_exprs) ast_unref(it);
|
|
|
|
for (auto &it : self->m_locals) ast_delete(it);
|
|
|
|
for (auto &it : self->m_collect) ast_delete(it);
|
2012-05-03 10:12:22 +00:00
|
|
|
ast_expression_delete((ast_expression*)self);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_block();
|
2012-04-25 11:19:22 +00:00
|
|
|
mem_d(self);
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
2013-02-05 16:34:40 +00:00
|
|
|
void ast_block_set_type(ast_block *self, ast_expression *from)
|
2012-07-27 11:39:58 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_next)
|
|
|
|
ast_delete(self->m_next);
|
2013-02-05 16:34:40 +00:00
|
|
|
ast_type_adopt(self, from);
|
2012-07-27 11:39:58 +00:00
|
|
|
}
|
|
|
|
|
2013-07-30 16:00:51 +00:00
|
|
|
ast_function* ast_function_new(lex_ctx_t ctx, const char *name, ast_value *vtype)
|
2012-04-25 11:17:37 +00:00
|
|
|
{
|
2012-04-28 22:56:09 +00:00
|
|
|
ast_instantiate(ast_function, ctx, ast_function_delete);
|
2012-04-28 22:41:35 +00:00
|
|
|
|
2013-06-21 23:21:12 +00:00
|
|
|
if (!vtype) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: ast_function_new condition 0");
|
2013-06-21 23:21:12 +00:00
|
|
|
goto cleanup;
|
2015-01-24 11:25:46 +00:00
|
|
|
} else if (vtype->m_hasvalue || vtype->m_vtype != TYPE_FUNCTION) {
|
|
|
|
compile_error(self->m_context, "internal error: ast_function_new condition %i %i type=%i (probably 2 bodies?)",
|
2012-11-23 21:15:17 +00:00
|
|
|
(int)!vtype,
|
2015-01-24 11:25:46 +00:00
|
|
|
(int)vtype->m_hasvalue,
|
|
|
|
vtype->m_vtype);
|
2013-06-21 23:21:12 +00:00
|
|
|
goto cleanup;
|
2012-04-28 22:41:35 +00:00
|
|
|
}
|
2012-04-28 13:57:19 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_function_type = vtype;
|
|
|
|
self->m_name = name ? util_strdup(name) : nullptr;
|
2012-04-25 11:17:37 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_labelcount = 0;
|
|
|
|
self->m_builtin = 0;
|
2012-05-02 21:11:39 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_ir_func = nullptr;
|
|
|
|
self->m_curblock = nullptr;
|
2012-04-28 16:54:27 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
vtype->m_hasvalue = true;
|
|
|
|
vtype->m_constval.vfunc = self;
|
2012-04-28 13:57:19 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_varargs = nullptr;
|
|
|
|
self->m_argc = nullptr;
|
|
|
|
self->m_fixedparams = nullptr;
|
|
|
|
self->m_return_value = nullptr;
|
|
|
|
self->m_static_count = 0;
|
2013-11-28 11:04:01 +00:00
|
|
|
|
2012-04-25 11:19:22 +00:00
|
|
|
return self;
|
2013-07-27 11:48:55 +00:00
|
|
|
|
2013-06-21 23:21:12 +00:00
|
|
|
cleanup:
|
|
|
|
mem_d(self);
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ast_function_delete(ast_function *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_name)
|
|
|
|
mem_d((void*)self->m_name);
|
|
|
|
if (self->m_function_type) {
|
|
|
|
/* ast_value_delete(self->m_function_type); */
|
|
|
|
self->m_function_type->m_hasvalue = false;
|
|
|
|
self->m_function_type->m_constval.vfunc = nullptr;
|
2012-04-28 13:57:19 +00:00
|
|
|
/* We use unref - if it was stored in a global table it is supposed
|
|
|
|
* to be deleted from *there*
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_unref(self->m_function_type);
|
2012-04-28 13:57:19 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_static_names)
|
2015-01-15 20:15:35 +00:00
|
|
|
mem_d(it);
|
2015-01-20 19:25:56 +00:00
|
|
|
// FIXME::DELME:: unique_ptr used on ast_block
|
2015-01-24 11:25:46 +00:00
|
|
|
//for (auto &it : self->m_blocks)
|
2015-01-20 19:25:56 +00:00
|
|
|
// ast_delete(it);
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_varargs)
|
|
|
|
ast_delete(self->m_varargs);
|
|
|
|
if (self->m_argc)
|
|
|
|
ast_delete(self->m_argc);
|
|
|
|
if (self->m_fixedparams)
|
|
|
|
ast_unref(self->m_fixedparams);
|
|
|
|
if (self->m_return_value)
|
|
|
|
ast_unref(self->m_return_value);
|
2015-01-20 19:33:07 +00:00
|
|
|
self->~ast_function();
|
2012-04-25 11:19:22 +00:00
|
|
|
mem_d(self);
|
2012-04-25 11:17:37 +00:00
|
|
|
}
|
2012-04-25 11:24:25 +00:00
|
|
|
|
2013-07-31 19:34:38 +00:00
|
|
|
const char* ast_function_label(ast_function *self, const char *prefix)
|
2012-05-02 21:11:39 +00:00
|
|
|
{
|
2012-08-24 16:10:41 +00:00
|
|
|
size_t id;
|
|
|
|
size_t len;
|
|
|
|
char *from;
|
2012-08-24 16:08:28 +00:00
|
|
|
|
2013-01-30 05:35:07 +00:00
|
|
|
if (!OPTS_OPTION_BOOL(OPTION_DUMP) &&
|
|
|
|
!OPTS_OPTION_BOOL(OPTION_DUMPFIN) &&
|
|
|
|
!OPTS_OPTION_BOOL(OPTION_DEBUG))
|
2013-01-30 05:24:30 +00:00
|
|
|
{
|
2015-01-15 20:18:33 +00:00
|
|
|
return nullptr;
|
2013-01-30 05:24:30 +00:00
|
|
|
}
|
2012-08-24 16:10:41 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
id = (self->m_labelcount++);
|
2012-08-24 16:10:41 +00:00
|
|
|
len = strlen(prefix);
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
from = self->m_labelbuf + sizeof(self->m_labelbuf)-1;
|
2012-08-24 16:08:28 +00:00
|
|
|
*from-- = 0;
|
|
|
|
do {
|
2012-12-20 22:27:23 +00:00
|
|
|
*from-- = (id%10) + '0';
|
2012-08-24 16:08:28 +00:00
|
|
|
id /= 10;
|
|
|
|
} while (id);
|
2012-12-20 22:27:23 +00:00
|
|
|
++from;
|
2012-08-24 16:08:28 +00:00
|
|
|
memcpy(from - len, prefix, len);
|
|
|
|
return from - len;
|
2012-05-02 21:11:39 +00:00
|
|
|
}
|
|
|
|
|
2012-04-25 11:24:25 +00:00
|
|
|
/*********************************************************************/
|
2012-05-02 16:34:24 +00:00
|
|
|
/* AST codegen part
|
2015-01-15 20:18:33 +00:00
|
|
|
* by convention you must never pass nullptr to the 'ir_value **out'
|
2012-05-02 16:34:24 +00:00
|
|
|
* parameter. If you really don't care about the output, pass a dummy.
|
|
|
|
* But I can't imagine a pituation where the output is truly unnecessary.
|
2012-04-25 11:24:25 +00:00
|
|
|
*/
|
|
|
|
|
2013-05-29 03:43:49 +00:00
|
|
|
static void _ast_codegen_output_type(ast_expression *self, ir_value *out)
|
2012-12-01 15:39:29 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (out->m_vtype == TYPE_FIELD)
|
|
|
|
out->m_fieldtype = self->m_next->m_vtype;
|
|
|
|
if (out->m_vtype == TYPE_FUNCTION)
|
|
|
|
out->m_outtype = self->m_next->m_vtype;
|
2012-12-01 15:39:29 +00:00
|
|
|
}
|
|
|
|
|
2015-01-19 13:00:04 +00:00
|
|
|
#define codegen_output_type(a,o) (_ast_codegen_output_type(static_cast<ast_expression*>((a)),(o)))
|
2012-12-01 15:39:29 +00:00
|
|
|
|
2012-05-01 13:14:44 +00:00
|
|
|
bool ast_value_codegen(ast_value *self, ast_function *func, bool lvalue, ir_value **out)
|
2012-04-26 08:28:42 +00:00
|
|
|
{
|
2012-11-22 20:39:30 +00:00
|
|
|
(void)func;
|
|
|
|
(void)lvalue;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_vtype == TYPE_NIL) {
|
|
|
|
*out = func->m_ir_func->m_owner->m_nil;
|
2012-12-28 17:05:28 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-01-19 13:00:04 +00:00
|
|
|
/* NOTE: This is the codegen for a variable used in an
|
2012-04-28 16:54:27 +00:00
|
|
|
* It is not the codegen to generate the value. For this purpose,
|
|
|
|
* ast_local_codegen and ast_global_codegen are to be used before this
|
|
|
|
* is executed. ast_function_codegen should take care of its locals,
|
|
|
|
* and the ast-user should take care of ast_global_codegen to be used
|
|
|
|
* on all the globals.
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_ir_v) {
|
2012-12-23 07:51:19 +00:00
|
|
|
char tname[1024]; /* typename is reserved in C++ */
|
|
|
|
ast_type_to_string((ast_expression*)self, tname, sizeof(tname));
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "ast_value used before generated %s %s", tname, self->m_name);
|
2012-05-02 16:25:59 +00:00
|
|
|
return false;
|
2012-07-04 13:00:30 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = self->m_ir_v;
|
2012-05-02 16:25:59 +00:00
|
|
|
return true;
|
2012-04-28 16:54:27 +00:00
|
|
|
}
|
|
|
|
|
2013-06-12 12:32:34 +00:00
|
|
|
static bool ast_global_array_set(ast_value *self)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
size_t count = self->m_initlist.size();
|
2013-06-12 12:32:34 +00:00
|
|
|
size_t i;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (count > self->m_count) {
|
|
|
|
compile_error(self->m_context, "too many elements in initializer");
|
|
|
|
count = self->m_count;
|
2013-06-12 12:41:38 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
else if (count < self->m_count) {
|
2013-06-12 12:41:38 +00:00
|
|
|
/* add this?
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_warning(self->m_context, "not all elements are initialized");
|
2013-06-12 12:41:38 +00:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2013-06-12 12:32:34 +00:00
|
|
|
for (i = 0; i != count; ++i) {
|
2015-01-24 11:25:46 +00:00
|
|
|
switch (self->m_next->m_vtype) {
|
2013-06-12 12:32:34 +00:00
|
|
|
case TYPE_FLOAT:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_float(self->m_ir_values[i], self->m_initlist[i].vfloat))
|
2013-06-12 12:32:34 +00:00
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case TYPE_VECTOR:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_vector(self->m_ir_values[i], self->m_initlist[i].vvec))
|
2013-06-12 12:32:34 +00:00
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case TYPE_STRING:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_string(self->m_ir_values[i], self->m_initlist[i].vstring))
|
2013-06-12 12:32:34 +00:00
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case TYPE_ARRAY:
|
|
|
|
/* we don't support them in any other place yet either */
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "TODO: nested arrays");
|
2013-06-12 12:32:34 +00:00
|
|
|
return false;
|
|
|
|
case TYPE_FUNCTION:
|
|
|
|
/* this requiers a bit more work - similar to the fields I suppose */
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "global of type function not properly generated");
|
2013-06-12 12:32:34 +00:00
|
|
|
return false;
|
|
|
|
case TYPE_FIELD:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_initlist[i].vfield) {
|
|
|
|
compile_error(self->m_context, "field constant without vfield set");
|
2013-06-12 12:32:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_initlist[i].vfield->m_ir_v) {
|
|
|
|
compile_error(self->m_context, "field constant generated before its field");
|
2013-06-12 12:32:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_field(self->m_ir_values[i], self->m_initlist[i].vfield->m_ir_v))
|
2013-06-12 12:32:34 +00:00
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
default:
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "TODO: global constant type %i", self->m_vtype);
|
2013-06-12 12:32:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-08-27 08:19:05 +00:00
|
|
|
static bool check_array(ast_value *self, ast_value *array)
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (array->m_flags & AST_FLAG_ARRAY_INIT && array->m_initlist.empty()) {
|
|
|
|
compile_error(self->m_context, "array without size: %s", self->m_name);
|
2013-08-27 08:19:05 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/* we are lame now - considering the way QC works we won't tolerate arrays > 1024 elements */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!array->m_count || array->m_count > OPTS_OPTION_U32(OPTION_MAX_ARRAY_SIZE)) {
|
|
|
|
compile_error(self->m_context, "Invalid array of size %lu", (unsigned long)array->m_count);
|
2013-08-27 08:19:05 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-10 11:15:59 +00:00
|
|
|
bool ast_global_codegen(ast_value *self, ir_builder *ir, bool isfield)
|
2012-04-28 16:54:27 +00:00
|
|
|
{
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_value *v = nullptr;
|
2012-11-11 15:22:09 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_vtype == TYPE_NIL) {
|
|
|
|
compile_error(self->m_context, "internal error: trying to generate a variable of TYPE_NIL");
|
2012-12-28 17:05:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_hasvalue && self->m_vtype == TYPE_FUNCTION)
|
2012-04-28 16:54:27 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
ir_function *func = ir_builder_create_function(ir, self->m_name, self->m_next->m_vtype);
|
2012-04-28 16:54:27 +00:00
|
|
|
if (!func)
|
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_context = self->m_context;
|
|
|
|
func->m_value->m_context = self->m_context;
|
|
|
|
|
|
|
|
self->m_constval.vfunc->m_ir_func = func;
|
|
|
|
self->m_ir_v = func->m_value;
|
|
|
|
if (self->m_flags & AST_FLAG_INCLUDE_DEF)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_INCLUDE_DEF;
|
|
|
|
if (self->m_flags & AST_FLAG_ERASEABLE)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_ERASABLE;
|
|
|
|
if (self->m_flags & AST_FLAG_BLOCK_COVERAGE)
|
|
|
|
func->m_flags |= IR_FLAG_BLOCK_COVERAGE;
|
2012-04-28 16:54:27 +00:00
|
|
|
/* The function is filled later on ast_function_codegen... */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (isfield && self->m_vtype == TYPE_FIELD) {
|
|
|
|
ast_expression *fieldtype = self->m_next;
|
2012-11-12 19:33:49 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_hasvalue) {
|
|
|
|
compile_error(self->m_context, "TODO: constant field pointers with value");
|
2012-08-11 16:05:56 +00:00
|
|
|
goto error;
|
|
|
|
}
|
2012-11-12 19:33:49 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (fieldtype->m_vtype == TYPE_ARRAY) {
|
2012-11-12 19:33:49 +00:00
|
|
|
size_t ai;
|
|
|
|
char *name;
|
|
|
|
size_t namelen;
|
|
|
|
|
2013-05-11 20:34:01 +00:00
|
|
|
ast_expression *elemtype;
|
2015-01-20 15:43:58 +00:00
|
|
|
qc_type vtype;
|
2013-05-11 20:34:01 +00:00
|
|
|
ast_value *array = (ast_value*)fieldtype;
|
2012-11-12 19:33:49 +00:00
|
|
|
|
|
|
|
if (!ast_istype(fieldtype, ast_value)) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: ast_value required");
|
2012-11-12 19:33:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-27 08:19:05 +00:00
|
|
|
if (!check_array(self, array))
|
2013-08-27 08:09:31 +00:00
|
|
|
return false;
|
2012-11-12 19:33:49 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
elemtype = array->m_next;
|
|
|
|
vtype = elemtype->m_vtype;
|
2012-11-12 19:33:49 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
v = ir_builder_create_field(ir, self->m_name, vtype);
|
2012-11-12 19:33:49 +00:00
|
|
|
if (!v) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "ir_builder_create_global failed on `%s`", self->m_name);
|
2012-11-12 19:33:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
v->m_context = self->m_context;
|
|
|
|
v->m_unique_life = true;
|
|
|
|
v->m_locked = true;
|
|
|
|
array->m_ir_v = self->m_ir_v = v;
|
2013-08-29 04:05:37 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_flags & AST_FLAG_INCLUDE_DEF)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_INCLUDE_DEF;
|
|
|
|
if (self->m_flags & AST_FLAG_ERASEABLE)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_ERASABLE;
|
2012-11-12 19:33:49 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
namelen = strlen(self->m_name);
|
2012-11-12 19:33:49 +00:00
|
|
|
name = (char*)mem_a(namelen + 16);
|
2015-01-24 11:25:46 +00:00
|
|
|
util_strncpy(name, self->m_name, namelen);
|
2012-11-12 19:33:49 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
array->m_ir_values = (ir_value**)mem_a(sizeof(array->m_ir_values[0]) * array->m_count);
|
|
|
|
array->m_ir_values[0] = v;
|
|
|
|
for (ai = 1; ai < array->m_count; ++ai) {
|
2013-04-24 01:43:53 +00:00
|
|
|
util_snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
|
2015-01-24 11:25:46 +00:00
|
|
|
array->m_ir_values[ai] = ir_builder_create_field(ir, name, vtype);
|
|
|
|
if (!array->m_ir_values[ai]) {
|
2012-11-12 19:33:49 +00:00
|
|
|
mem_d(name);
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "ir_builder_create_global failed on `%s`", name);
|
2012-11-12 19:33:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
array->m_ir_values[ai]->m_context = self->m_context;
|
|
|
|
array->m_ir_values[ai]->m_unique_life = true;
|
|
|
|
array->m_ir_values[ai]->m_locked = true;
|
|
|
|
if (self->m_flags & AST_FLAG_INCLUDE_DEF)
|
|
|
|
self->m_ir_values[ai]->m_flags |= IR_FLAG_INCLUDE_DEF;
|
2012-11-12 19:33:49 +00:00
|
|
|
}
|
|
|
|
mem_d(name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
v = ir_builder_create_field(ir, self->m_name, self->m_next->m_vtype);
|
2012-11-12 19:33:49 +00:00
|
|
|
if (!v)
|
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
v->m_context = self->m_context;
|
|
|
|
self->m_ir_v = v;
|
|
|
|
if (self->m_flags & AST_FLAG_INCLUDE_DEF)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_INCLUDE_DEF;
|
2013-08-29 04:05:37 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_flags & AST_FLAG_ERASEABLE)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_ERASABLE;
|
2012-11-12 19:33:49 +00:00
|
|
|
}
|
2012-08-11 16:05:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_vtype == TYPE_ARRAY) {
|
2012-11-11 10:09:36 +00:00
|
|
|
size_t ai;
|
2012-11-11 11:14:44 +00:00
|
|
|
char *name;
|
|
|
|
size_t namelen;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_expression *elemtype = self->m_next;
|
|
|
|
qc_type vtype = elemtype->m_vtype;
|
2012-11-11 22:31:57 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_flags & AST_FLAG_ARRAY_INIT && !self->m_count) {
|
|
|
|
compile_error(self->m_context, "array `%s' has no size", self->m_name);
|
2013-06-12 13:47:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-12 19:33:49 +00:00
|
|
|
/* same as with field arrays */
|
2013-08-27 08:19:05 +00:00
|
|
|
if (!check_array(self, self))
|
2013-08-27 08:09:31 +00:00
|
|
|
return false;
|
2012-11-11 11:14:44 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
v = ir_builder_create_global(ir, self->m_name, vtype);
|
2012-11-11 11:14:44 +00:00
|
|
|
if (!v) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "ir_builder_create_global failed `%s`", self->m_name);
|
2012-11-11 11:14:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
v->m_context = self->m_context;
|
|
|
|
v->m_unique_life = true;
|
|
|
|
v->m_locked = true;
|
2013-08-29 04:05:37 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_flags & AST_FLAG_INCLUDE_DEF)
|
|
|
|
v->m_flags |= IR_FLAG_INCLUDE_DEF;
|
|
|
|
if (self->m_flags & AST_FLAG_ERASEABLE)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_ERASABLE;
|
2012-11-11 11:14:44 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
namelen = strlen(self->m_name);
|
2012-11-11 11:14:44 +00:00
|
|
|
name = (char*)mem_a(namelen + 16);
|
2015-01-24 11:25:46 +00:00
|
|
|
util_strncpy(name, self->m_name, namelen);
|
2012-11-11 11:14:44 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_ir_values = (ir_value**)mem_a(sizeof(self->m_ir_values[0]) * self->m_count);
|
|
|
|
self->m_ir_values[0] = v;
|
|
|
|
for (ai = 1; ai < self->m_count; ++ai) {
|
2013-04-24 01:43:53 +00:00
|
|
|
util_snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_ir_values[ai] = ir_builder_create_global(ir, name, vtype);
|
|
|
|
if (!self->m_ir_values[ai]) {
|
2012-11-12 19:33:49 +00:00
|
|
|
mem_d(name);
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "ir_builder_create_global failed `%s`", name);
|
2012-11-11 11:14:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_ir_values[ai]->m_context = self->m_context;
|
|
|
|
self->m_ir_values[ai]->m_unique_life = true;
|
|
|
|
self->m_ir_values[ai]->m_locked = true;
|
|
|
|
if (self->m_flags & AST_FLAG_INCLUDE_DEF)
|
|
|
|
self->m_ir_values[ai]->m_flags |= IR_FLAG_INCLUDE_DEF;
|
2012-11-11 10:09:36 +00:00
|
|
|
}
|
2012-11-12 19:33:49 +00:00
|
|
|
mem_d(name);
|
2012-11-11 10:09:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Arrays don't do this since there's no "array" value which spans across the
|
|
|
|
* whole thing.
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
v = ir_builder_create_global(ir, self->m_name, self->m_vtype);
|
2012-11-11 10:09:36 +00:00
|
|
|
if (!v) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "ir_builder_create_global failed on `%s`", self->m_name);
|
2012-11-11 10:09:36 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-12-01 15:39:29 +00:00
|
|
|
codegen_output_type(self, v);
|
2015-01-24 11:25:46 +00:00
|
|
|
v->m_context = self->m_context;
|
2012-08-12 09:36:28 +00:00
|
|
|
}
|
2012-04-28 16:54:27 +00:00
|
|
|
|
2013-06-12 12:32:34 +00:00
|
|
|
/* link us to the ir_value */
|
2015-01-24 11:25:46 +00:00
|
|
|
v->m_cvq = self->m_cvq;
|
|
|
|
self->m_ir_v = v;
|
2013-08-29 04:05:37 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_flags & AST_FLAG_INCLUDE_DEF)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_INCLUDE_DEF;
|
|
|
|
if (self->m_flags & AST_FLAG_ERASEABLE)
|
|
|
|
self->m_ir_v->m_flags |= IR_FLAG_ERASABLE;
|
2013-06-12 12:32:34 +00:00
|
|
|
|
|
|
|
/* initialize */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_hasvalue) {
|
|
|
|
switch (self->m_vtype)
|
2012-04-28 16:54:27 +00:00
|
|
|
{
|
|
|
|
case TYPE_FLOAT:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_float(v, self->m_constval.vfloat))
|
2012-04-28 16:54:27 +00:00
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
case TYPE_VECTOR:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_vector(v, self->m_constval.vvec))
|
2012-04-28 16:54:27 +00:00
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
case TYPE_STRING:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_string(v, self->m_constval.vstring))
|
2012-04-28 16:54:27 +00:00
|
|
|
goto error;
|
|
|
|
break;
|
2012-11-11 10:09:36 +00:00
|
|
|
case TYPE_ARRAY:
|
2013-06-12 12:32:34 +00:00
|
|
|
ast_global_array_set(self);
|
2012-11-11 10:09:36 +00:00
|
|
|
break;
|
2012-04-28 16:54:27 +00:00
|
|
|
case TYPE_FUNCTION:
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "global of type function not properly generated");
|
2012-07-03 21:38:38 +00:00
|
|
|
goto error;
|
2012-04-28 16:54:27 +00:00
|
|
|
/* Cannot generate an IR value for a function,
|
|
|
|
* need a pointer pointing to a function rather.
|
|
|
|
*/
|
2012-11-30 20:11:12 +00:00
|
|
|
case TYPE_FIELD:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_constval.vfield) {
|
|
|
|
compile_error(self->m_context, "field constant without vfield set");
|
2012-11-30 20:11:12 +00:00
|
|
|
goto error;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_constval.vfield->m_ir_v) {
|
|
|
|
compile_error(self->m_context, "field constant generated before its field");
|
2012-11-30 20:11:12 +00:00
|
|
|
goto error;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_field(v, self->m_constval.vfield->m_ir_v))
|
2012-11-30 20:11:12 +00:00
|
|
|
goto error;
|
|
|
|
break;
|
2012-04-28 16:54:27 +00:00
|
|
|
default:
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "TODO: global constant type %i", self->m_vtype);
|
2012-04-28 16:54:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error: /* clean up */
|
2015-01-20 15:43:58 +00:00
|
|
|
if (v) delete v;
|
2012-04-28 16:54:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-29 11:32:42 +00:00
|
|
|
static bool ast_local_codegen(ast_value *self, ir_function *func, bool param)
|
2012-05-02 16:34:24 +00:00
|
|
|
{
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_value *v = nullptr;
|
2012-12-28 17:05:28 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_vtype == TYPE_NIL) {
|
|
|
|
compile_error(self->m_context, "internal error: trying to generate a variable of TYPE_NIL");
|
2012-12-28 17:05:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_hasvalue && self->m_vtype == TYPE_FUNCTION)
|
2012-05-02 16:34:24 +00:00
|
|
|
{
|
|
|
|
/* Do we allow local functions? I think not...
|
|
|
|
* this is NOT a function pointer atm.
|
|
|
|
*/
|
|
|
|
return false;
|
2012-11-11 10:09:36 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_vtype == TYPE_ARRAY) {
|
2012-11-11 22:31:57 +00:00
|
|
|
size_t ai;
|
|
|
|
char *name;
|
|
|
|
size_t namelen;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_expression *elemtype = self->m_next;
|
|
|
|
qc_type vtype = elemtype->m_vtype;
|
2012-11-11 22:31:57 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_flags |= IR_FLAG_HAS_ARRAYS;
|
2012-12-23 15:21:38 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (param && !(self->m_flags & AST_FLAG_IS_VARARG)) {
|
|
|
|
compile_error(self->m_context, "array-parameters are not supported");
|
2012-11-11 22:31:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we are lame now - considering the way QC works we won't tolerate arrays > 1024 elements */
|
2013-08-27 08:19:05 +00:00
|
|
|
if (!check_array(self, self))
|
2013-08-27 08:09:31 +00:00
|
|
|
return false;
|
2012-11-11 22:31:57 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_ir_values = (ir_value**)mem_a(sizeof(self->m_ir_values[0]) * self->m_count);
|
|
|
|
if (!self->m_ir_values) {
|
|
|
|
compile_error(self->m_context, "failed to allocate array values");
|
2012-11-11 22:31:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
v = ir_function_create_local(func, self->m_name, vtype, param);
|
2012-11-11 22:31:57 +00:00
|
|
|
if (!v) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: ir_function_create_local failed");
|
2012-11-11 22:31:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
v->m_context = self->m_context;
|
|
|
|
v->m_unique_life = true;
|
|
|
|
v->m_locked = true;
|
2012-11-11 22:31:57 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
namelen = strlen(self->m_name);
|
2012-11-11 22:31:57 +00:00
|
|
|
name = (char*)mem_a(namelen + 16);
|
2015-01-24 11:25:46 +00:00
|
|
|
util_strncpy(name, self->m_name, namelen);
|
2012-11-11 22:31:57 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_ir_values[0] = v;
|
|
|
|
for (ai = 1; ai < self->m_count; ++ai) {
|
2013-04-24 01:43:53 +00:00
|
|
|
util_snprintf(name + namelen, 16, "[%u]", (unsigned int)ai);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_ir_values[ai] = ir_function_create_local(func, name, vtype, param);
|
|
|
|
if (!self->m_ir_values[ai]) {
|
|
|
|
compile_error(self->m_context, "internal_error: ir_builder_create_global failed on `%s`", name);
|
2012-11-11 22:31:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_ir_values[ai]->m_context = self->m_context;
|
|
|
|
self->m_ir_values[ai]->m_unique_life = true;
|
|
|
|
self->m_ir_values[ai]->m_locked = true;
|
2012-11-11 22:31:57 +00:00
|
|
|
}
|
2013-04-15 18:56:48 +00:00
|
|
|
mem_d(name);
|
2012-11-11 22:31:57 +00:00
|
|
|
}
|
|
|
|
else
|
2012-11-11 10:09:36 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
v = ir_function_create_local(func, self->m_name, self->m_vtype, param);
|
2012-11-11 22:31:57 +00:00
|
|
|
if (!v)
|
|
|
|
return false;
|
2012-12-01 15:39:29 +00:00
|
|
|
codegen_output_type(self, v);
|
2015-01-24 11:25:46 +00:00
|
|
|
v->m_context = self->m_context;
|
2012-05-02 16:34:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* A constant local... hmmm...
|
|
|
|
* I suppose the IR will have to deal with this
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_hasvalue) {
|
|
|
|
switch (self->m_vtype)
|
2012-05-02 16:34:24 +00:00
|
|
|
{
|
|
|
|
case TYPE_FLOAT:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_float(v, self->m_constval.vfloat))
|
2012-05-02 16:34:24 +00:00
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
case TYPE_VECTOR:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_vector(v, self->m_constval.vvec))
|
2012-05-02 16:34:24 +00:00
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
case TYPE_STRING:
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_value_set_string(v, self->m_constval.vstring))
|
2012-05-02 16:34:24 +00:00
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
default:
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "TODO: global constant type %i", self->m_vtype);
|
2012-05-02 16:34:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* link us to the ir_value */
|
2015-01-24 11:25:46 +00:00
|
|
|
v->m_cvq = self->m_cvq;
|
|
|
|
self->m_ir_v = v;
|
2012-11-11 22:31:57 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ast_generate_accessors(self, func->m_owner))
|
2012-12-02 16:57:08 +00:00
|
|
|
return false;
|
2012-05-02 16:34:24 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error: /* clean up */
|
2015-01-20 15:43:58 +00:00
|
|
|
delete v;
|
2012-05-02 16:34:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-02 17:02:44 +00:00
|
|
|
bool ast_generate_accessors(ast_value *self, ir_builder *ir)
|
2012-12-02 16:57:08 +00:00
|
|
|
{
|
2012-12-02 17:02:44 +00:00
|
|
|
size_t i;
|
2012-12-02 17:09:59 +00:00
|
|
|
bool warn = OPTS_WARN(WARN_USED_UNINITIALIZED);
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_setter || !self->m_getter)
|
2012-12-02 17:02:44 +00:00
|
|
|
return true;
|
2015-01-24 11:25:46 +00:00
|
|
|
for (i = 0; i < self->m_count; ++i) {
|
|
|
|
if (!self->m_ir_values) {
|
|
|
|
compile_error(self->m_context, "internal error: no array values generated for `%s`", self->m_name);
|
2012-12-02 17:02:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_ir_values[i]) {
|
|
|
|
compile_error(self->m_context, "internal error: not all array values have been generated for `%s`", self->m_name);
|
2012-12-02 17:02:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_ir_values[i]->m_life.empty()) {
|
|
|
|
compile_error(self->m_context, "internal error: function containing `%s` already generated", self->m_name);
|
2012-12-02 17:02:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-12-02 17:09:59 +00:00
|
|
|
|
2012-12-18 04:57:17 +00:00
|
|
|
opts_set(opts.warn, WARN_USED_UNINITIALIZED, false);
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_setter) {
|
|
|
|
if (!ast_global_codegen (self->m_setter, ir, false) ||
|
|
|
|
!ast_function_codegen(self->m_setter->m_constval.vfunc, ir) ||
|
|
|
|
!ir_function_finalize(self->m_setter->m_constval.vfunc->m_ir_func))
|
2012-12-02 16:57:08 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: failed to generate setter for `%s`", self->m_name);
|
2012-12-18 04:57:17 +00:00
|
|
|
opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
|
2012-12-02 16:57:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_getter) {
|
|
|
|
if (!ast_global_codegen (self->m_getter, ir, false) ||
|
|
|
|
!ast_function_codegen(self->m_getter->m_constval.vfunc, ir) ||
|
|
|
|
!ir_function_finalize(self->m_getter->m_constval.vfunc->m_ir_func))
|
2012-12-02 16:57:08 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: failed to generate getter for `%s`", self->m_name);
|
2012-12-18 04:57:17 +00:00
|
|
|
opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
|
2012-12-02 16:57:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
for (i = 0; i < self->m_count; ++i)
|
|
|
|
self->m_ir_values[i]->m_life.clear();
|
2012-12-18 04:57:17 +00:00
|
|
|
opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
|
2012-12-02 16:57:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-04-28 16:54:27 +00:00
|
|
|
bool ast_function_codegen(ast_function *self, ir_builder *ir)
|
|
|
|
{
|
2012-05-02 17:25:25 +00:00
|
|
|
ir_function *irf;
|
|
|
|
ir_value *dummy;
|
2013-05-11 20:34:01 +00:00
|
|
|
ast_expression *ec;
|
2013-01-12 14:06:19 +00:00
|
|
|
ast_expression_codegen *cgen;
|
2013-10-17 07:21:30 +00:00
|
|
|
|
2012-11-22 20:39:30 +00:00
|
|
|
(void)ir;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
irf = self->m_ir_func;
|
2012-05-02 17:25:25 +00:00
|
|
|
if (!irf) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: ast_function's related ast_value was not generated yet");
|
2012-04-28 16:54:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-05-02 17:21:25 +00:00
|
|
|
|
2012-07-22 10:15:48 +00:00
|
|
|
/* fill the parameter list */
|
2015-01-24 11:25:46 +00:00
|
|
|
ec = self->m_function_type;
|
|
|
|
for (auto &it : ec->m_type_params) {
|
|
|
|
if (it->m_vtype == TYPE_FIELD)
|
|
|
|
vec_push(irf->m_params, it->m_next->m_vtype);
|
2012-11-30 19:33:40 +00:00
|
|
|
else
|
2015-01-24 11:25:46 +00:00
|
|
|
vec_push(irf->m_params, it->m_vtype);
|
|
|
|
if (!self->m_builtin) {
|
|
|
|
if (!ast_local_codegen(it, self->m_ir_func, true))
|
2012-07-22 10:35:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 10:15:48 +00:00
|
|
|
}
|
2012-07-03 21:38:38 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_varargs) {
|
|
|
|
if (!ast_local_codegen(self->m_varargs, self->m_ir_func, true))
|
2013-01-12 12:01:20 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
irf->m_max_varargs = self->m_varargs->m_count;
|
2013-01-12 12:01:20 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_builtin) {
|
|
|
|
irf->m_builtin = self->m_builtin;
|
2012-07-03 21:38:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-29 14:56:39 +00:00
|
|
|
/* have a local return value variable? */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_return_value) {
|
|
|
|
if (!ast_local_codegen(self->m_return_value, self->m_ir_func, false))
|
2013-05-29 14:51:59 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_blocks.empty()) {
|
|
|
|
compile_error(self->m_context, "function `%s` has no body", self->m_name);
|
2012-08-16 13:31:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
irf->m_first = self->m_curblock = ir_function_create_block(self->m_context, irf, "entry");
|
|
|
|
if (!self->m_curblock) {
|
|
|
|
compile_error(self->m_context, "failed to allocate entry block for `%s`", self->m_name);
|
2012-05-02 17:25:25 +00:00
|
|
|
return false;
|
2012-08-23 15:16:07 +00:00
|
|
|
}
|
2012-05-02 17:25:25 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_argc) {
|
2013-01-12 14:06:19 +00:00
|
|
|
ir_value *va_count;
|
2013-01-17 09:30:32 +00:00
|
|
|
ir_value *fixed;
|
|
|
|
ir_value *sub;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ast_local_codegen(self->m_argc, self->m_ir_func, true))
|
2013-01-12 14:06:19 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_argc->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_argc), self, false, &va_count))
|
2013-01-12 14:06:19 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_fixedparams->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_fixedparams), self, false, &fixed))
|
2013-01-17 09:30:32 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
sub = ir_block_create_binop(self->m_curblock, self->m_context,
|
2013-01-17 09:30:32 +00:00
|
|
|
ast_function_label(self, "va_count"), INSTR_SUB_F,
|
|
|
|
ir_builder_get_va_count(ir), fixed);
|
|
|
|
if (!sub)
|
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_store_op(self->m_curblock, self->m_context, INSTR_STORE_F,
|
2013-01-17 09:30:32 +00:00
|
|
|
va_count, sub))
|
2013-01-12 14:06:19 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_blocks) {
|
|
|
|
cgen = it->m_codegen;
|
2015-01-20 19:25:56 +00:00
|
|
|
if (!(*cgen)(it.get(), self, false, &dummy))
|
2012-05-02 17:21:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-05-03 12:15:02 +00:00
|
|
|
|
|
|
|
/* TODO: check return types */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_curblock->m_final)
|
2012-05-03 12:15:02 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!self->m_function_type->m_next ||
|
|
|
|
self->m_function_type->m_next->m_vtype == TYPE_VOID)
|
2012-07-04 13:16:02 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
return ir_block_create_return(self->m_curblock, self->m_context, nullptr);
|
2012-07-04 13:16:02 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
else if (vec_size(self->m_curblock->m_entries) || self->m_curblock == irf->m_first)
|
2012-05-03 12:15:02 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_return_value) {
|
|
|
|
cgen = self->m_return_value->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_return_value), self, false, &dummy))
|
2013-05-29 15:08:03 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
return ir_block_create_return(self->m_curblock, self->m_context, dummy);
|
2013-05-29 15:08:03 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
else if (compile_warning(self->m_context, WARN_MISSING_RETURN_VALUES,
|
2012-11-30 11:28:51 +00:00
|
|
|
"control reaches end of non-void function (`%s`) via %s",
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_name, self->m_curblock->m_label.c_str()))
|
2012-11-26 15:12:40 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
return ir_block_create_return(self->m_curblock, self->m_context, nullptr);
|
2012-05-03 12:15:02 +00:00
|
|
|
}
|
|
|
|
}
|
2012-05-02 17:21:25 +00:00
|
|
|
return true;
|
2012-04-26 08:28:42 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 08:48:24 +00:00
|
|
|
static bool starts_a_label(ast_expression *ex)
|
|
|
|
{
|
|
|
|
while (ex && ast_istype(ex, ast_block)) {
|
|
|
|
ast_block *b = (ast_block*)ex;
|
2015-01-24 11:25:46 +00:00
|
|
|
ex = b->m_exprs[0];
|
2013-08-31 08:48:24 +00:00
|
|
|
}
|
|
|
|
if (!ex)
|
|
|
|
return false;
|
|
|
|
return ast_istype(ex, ast_label);
|
|
|
|
}
|
|
|
|
|
2012-05-02 17:46:27 +00:00
|
|
|
/* Note, you will not see ast_block_codegen generate ir_blocks.
|
|
|
|
* To the AST and the IR, blocks are 2 different things.
|
|
|
|
* In the AST it represents a block of code, usually enclosed in
|
|
|
|
* curly braces {...}.
|
|
|
|
* While in the IR it represents a block in terms of control-flow.
|
|
|
|
*/
|
2012-05-01 13:14:44 +00:00
|
|
|
bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_value **out)
|
2012-04-26 08:28:42 +00:00
|
|
|
{
|
2012-05-02 17:45:16 +00:00
|
|
|
/* We don't use this
|
|
|
|
* Note: an ast-representation using the comma-operator
|
|
|
|
* of the form: (a, b, c) = x should not assign to c...
|
|
|
|
*/
|
2012-10-30 20:15:42 +00:00
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "not an l-value (code-block)");
|
2012-10-30 20:15:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-05-02 17:45:16 +00:00
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
/* output is nullptr at first, we'll have each expression
|
2012-05-02 17:45:16 +00:00
|
|
|
* assign to out output, thus, a comma-operator represention
|
|
|
|
* using an ast_block will return the last generated value,
|
|
|
|
* so: (b, c) + a executed both b and c, and returns c,
|
|
|
|
* which is then added to a.
|
|
|
|
*/
|
2015-01-15 20:18:33 +00:00
|
|
|
*out = nullptr;
|
2012-05-02 17:45:16 +00:00
|
|
|
|
|
|
|
/* generate locals */
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_locals) {
|
|
|
|
if (!ast_local_codegen(it, func->m_ir_func, false)) {
|
2013-01-30 05:35:07 +00:00
|
|
|
if (OPTS_OPTION_BOOL(OPTION_DEBUG))
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "failed to generate local `%s`", it->m_name);
|
2012-05-02 17:45:16 +00:00
|
|
|
return false;
|
2012-08-23 15:22:13 +00:00
|
|
|
}
|
2012-05-02 17:45:16 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_exprs) {
|
2012-12-20 14:27:15 +00:00
|
|
|
ast_expression_codegen *gen;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (func->m_curblock->m_final && !starts_a_label(it)) {
|
|
|
|
if (compile_warning(it->m_context, WARN_UNREACHABLE_CODE, "unreachable statement"))
|
2012-12-20 15:29:32 +00:00
|
|
|
return false;
|
|
|
|
continue;
|
2012-11-19 18:42:25 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
gen = it->m_codegen;
|
2015-01-15 04:34:43 +00:00
|
|
|
if (!(*gen)(it, func, false, out))
|
2012-05-02 17:45:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = *out;
|
2012-08-13 17:54:53 +00:00
|
|
|
|
2012-05-02 17:45:16 +00:00
|
|
|
return true;
|
2012-04-26 08:28:42 +00:00
|
|
|
}
|
2012-04-26 08:38:00 +00:00
|
|
|
|
2012-05-01 13:14:44 +00:00
|
|
|
bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
|
2012-04-26 08:38:00 +00:00
|
|
|
{
|
2012-05-02 18:36:11 +00:00
|
|
|
ast_expression_codegen *cgen;
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_value *left = nullptr;
|
|
|
|
ir_value *right = nullptr;
|
2012-05-02 18:36:11 +00:00
|
|
|
|
2012-11-11 20:27:02 +00:00
|
|
|
ast_value *arr;
|
2012-11-22 20:10:34 +00:00
|
|
|
ast_value *idx = 0;
|
2015-01-15 20:18:33 +00:00
|
|
|
ast_array_index *ai = nullptr;
|
2012-11-11 20:27:02 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (lvalue && self->m_outl) {
|
|
|
|
*out = self->m_outl;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!lvalue && self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (ast_istype(self->m_dest, ast_array_index))
|
2012-11-11 20:27:02 +00:00
|
|
|
{
|
2012-05-02 18:36:11 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
ai = (ast_array_index*)self->m_dest;
|
|
|
|
idx = (ast_value*)ai->m_index;
|
2012-05-02 18:36:11 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (ast_istype(ai->m_index, ast_value) && idx->m_hasvalue && idx->m_cvq == CV_CONST)
|
2015-01-15 20:18:33 +00:00
|
|
|
ai = nullptr;
|
2012-11-11 20:27:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ai) {
|
|
|
|
/* we need to call the setter */
|
|
|
|
ir_value *iridx, *funval;
|
|
|
|
ir_instr *call;
|
|
|
|
|
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "array-subscript assignment cannot produce lvalues");
|
2012-11-11 20:27:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
arr = (ast_value*)ai->m_array;
|
|
|
|
if (!ast_istype(ai->m_array, ast_value) || !arr->m_setter) {
|
|
|
|
compile_error(self->m_context, "value has no setter (%s)", arr->m_name);
|
2012-11-11 20:27:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = idx->m_codegen;
|
2012-11-11 20:27:02 +00:00
|
|
|
if (!(*cgen)((ast_expression*)(idx), func, false, &iridx))
|
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = arr->m_setter->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(arr->m_setter), func, true, &funval))
|
2012-11-11 20:27:02 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_source->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_source), func, false, &right))
|
2012-11-11 20:27:02 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
call = ir_block_create_call(func->m_curblock, self->m_context, ast_function_label(func, "store"), funval, false);
|
2012-11-11 20:27:02 +00:00
|
|
|
if (!call)
|
|
|
|
return false;
|
2012-11-15 17:32:03 +00:00
|
|
|
ir_call_param(call, iridx);
|
|
|
|
ir_call_param(call, right);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = right;
|
2012-11-11 20:27:02 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* regular code */
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_dest->m_codegen;
|
2012-11-11 20:27:02 +00:00
|
|
|
/* lvalue! */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!(*cgen)((ast_expression*)(self->m_dest), func, true, &left))
|
2012-11-11 20:27:02 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outl = left;
|
2012-11-11 20:27:02 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_source->m_codegen;
|
2012-11-11 20:27:02 +00:00
|
|
|
/* rvalue! */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!(*cgen)((ast_expression*)(self->m_source), func, false, &right))
|
2012-11-11 20:27:02 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_store_op(func->m_curblock, self->m_context, self->m_op, left, right))
|
2012-11-11 20:27:02 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = right;
|
2012-11-11 20:27:02 +00:00
|
|
|
}
|
2012-05-02 18:36:11 +00:00
|
|
|
|
|
|
|
/* Theoretically, an assinment returns its left side as an
|
|
|
|
* lvalue, if we don't need an lvalue though, we return
|
|
|
|
* the right side as an rvalue, otherwise we have to
|
|
|
|
* somehow know whether or not we need to dereference the pointer
|
|
|
|
* on the left side - that is: OP_LOAD if it was an address.
|
|
|
|
* Also: in original QC we cannot OP_LOADP *anyway*.
|
|
|
|
*/
|
|
|
|
*out = (lvalue ? left : right);
|
|
|
|
|
|
|
|
return true;
|
2012-04-26 08:38:00 +00:00
|
|
|
}
|
|
|
|
|
2012-05-01 13:14:44 +00:00
|
|
|
bool ast_binary_codegen(ast_binary *self, ast_function *func, bool lvalue, ir_value **out)
|
2012-04-26 08:38:00 +00:00
|
|
|
{
|
2012-05-02 21:11:39 +00:00
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
ir_value *left, *right;
|
|
|
|
|
2012-10-30 20:15:42 +00:00
|
|
|
/* A binary operation cannot yield an l-value */
|
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "not an l-value (binop)");
|
2012-10-30 20:15:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-05-02 21:11:39 +00:00
|
|
|
|
2012-12-22 19:05:15 +00:00
|
|
|
if ((OPTS_FLAG(SHORT_LOGIC) || OPTS_FLAG(PERL_LOGIC)) &&
|
2015-01-24 11:25:46 +00:00
|
|
|
(self->m_op == INSTR_AND || self->m_op == INSTR_OR))
|
2012-11-21 15:08:08 +00:00
|
|
|
{
|
2013-08-27 08:42:09 +00:00
|
|
|
/* NOTE: The short-logic path will ignore right_first */
|
|
|
|
|
2012-11-21 15:08:08 +00:00
|
|
|
/* short circuit evaluation */
|
|
|
|
ir_block *other, *merge;
|
|
|
|
ir_block *from_left, *from_right;
|
|
|
|
ir_instr *phi;
|
|
|
|
size_t merge_id;
|
|
|
|
|
2012-12-22 16:18:37 +00:00
|
|
|
/* prepare end-block */
|
2015-01-24 11:25:46 +00:00
|
|
|
merge_id = func->m_ir_func->m_blocks.size();
|
|
|
|
merge = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "sce_merge"));
|
2012-11-21 15:08:08 +00:00
|
|
|
|
2012-12-22 16:18:37 +00:00
|
|
|
/* generate the left expression */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_left->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_left), func, false, &left))
|
2012-11-21 15:08:08 +00:00
|
|
|
return false;
|
2012-12-22 16:18:37 +00:00
|
|
|
/* remember the block */
|
2015-01-24 11:25:46 +00:00
|
|
|
from_left = func->m_curblock;
|
2012-11-21 18:36:28 +00:00
|
|
|
|
2012-12-22 16:18:37 +00:00
|
|
|
/* create a new block for the right expression */
|
2015-01-24 11:25:46 +00:00
|
|
|
other = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "sce_other"));
|
|
|
|
if (self->m_op == INSTR_AND) {
|
2012-12-22 16:18:37 +00:00
|
|
|
/* on AND: left==true -> other */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_if(func->m_curblock, self->m_context, left, other, merge))
|
2012-11-21 15:08:08 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2012-12-22 16:18:37 +00:00
|
|
|
/* on OR: left==false -> other */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_if(func->m_curblock, self->m_context, left, merge, other))
|
2012-11-21 15:08:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-11-21 16:42:44 +00:00
|
|
|
/* use the likely flag */
|
2015-01-24 11:25:46 +00:00
|
|
|
vec_last(func->m_curblock->m_instr)->m_likely = true;
|
2012-11-21 15:08:08 +00:00
|
|
|
|
2012-12-22 16:18:37 +00:00
|
|
|
/* enter the right-expression's block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = other;
|
2012-12-22 16:18:37 +00:00
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_right->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_right), func, false, &right))
|
2012-11-21 15:08:08 +00:00
|
|
|
return false;
|
2012-12-22 16:18:37 +00:00
|
|
|
/* remember block */
|
2015-01-24 11:25:46 +00:00
|
|
|
from_right = func->m_curblock;
|
2012-11-21 15:08:08 +00:00
|
|
|
|
2012-12-22 16:18:37 +00:00
|
|
|
/* jump to the merge block */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_jump(func->m_curblock, self->m_context, merge))
|
2012-11-21 15:08:08 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
algo::shiftback(func->m_ir_func->m_blocks.begin() + merge_id,
|
|
|
|
func->m_ir_func->m_blocks.end());
|
2015-01-20 19:25:56 +00:00
|
|
|
// FIXME::DELME::
|
2015-01-24 11:25:46 +00:00
|
|
|
//func->m_ir_func->m_blocks[merge_id].release();
|
|
|
|
//func->m_ir_func->m_blocks.erase(func->m_ir_func->m_blocks.begin() + merge_id);
|
|
|
|
//func->m_ir_func->m_blocks.emplace_back(merge);
|
2012-11-21 15:08:08 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = merge;
|
|
|
|
phi = ir_block_create_phi(func->m_curblock, self->m_context,
|
2012-12-22 19:05:15 +00:00
|
|
|
ast_function_label(func, "sce_value"),
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_vtype);
|
2012-11-21 15:08:08 +00:00
|
|
|
ir_phi_add(phi, from_left, left);
|
|
|
|
ir_phi_add(phi, from_right, right);
|
|
|
|
*out = ir_phi_value(phi);
|
2012-11-21 18:55:12 +00:00
|
|
|
if (!*out)
|
|
|
|
return false;
|
2012-12-22 19:05:15 +00:00
|
|
|
|
|
|
|
if (!OPTS_FLAG(PERL_LOGIC)) {
|
|
|
|
/* cast-to-bool */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (OPTS_FLAG(CORRECT_LOGIC) && (*out)->m_vtype == TYPE_VECTOR) {
|
|
|
|
*out = ir_block_create_unary(func->m_curblock, self->m_context,
|
2012-12-22 19:05:15 +00:00
|
|
|
ast_function_label(func, "sce_bool_v"),
|
|
|
|
INSTR_NOT_V, *out);
|
|
|
|
if (!*out)
|
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = ir_block_create_unary(func->m_curblock, self->m_context,
|
2012-12-22 19:05:15 +00:00
|
|
|
ast_function_label(func, "sce_bool"),
|
|
|
|
INSTR_NOT_F, *out);
|
|
|
|
if (!*out)
|
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
else if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && (*out)->m_vtype == TYPE_STRING) {
|
|
|
|
*out = ir_block_create_unary(func->m_curblock, self->m_context,
|
2012-12-22 19:05:15 +00:00
|
|
|
ast_function_label(func, "sce_bool_s"),
|
|
|
|
INSTR_NOT_S, *out);
|
|
|
|
if (!*out)
|
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = ir_block_create_unary(func->m_curblock, self->m_context,
|
2012-12-22 19:05:15 +00:00
|
|
|
ast_function_label(func, "sce_bool"),
|
|
|
|
INSTR_NOT_F, *out);
|
|
|
|
if (!*out)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else {
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = ir_block_create_binop(func->m_curblock, self->m_context,
|
2012-12-22 19:05:15 +00:00
|
|
|
ast_function_label(func, "sce_bool"),
|
|
|
|
INSTR_AND, *out, *out);
|
|
|
|
if (!*out)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = *out;
|
2012-12-31 12:20:08 +00:00
|
|
|
codegen_output_type(self, *out);
|
2012-11-21 15:08:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_right_first) {
|
|
|
|
cgen = self->m_right->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_right), func, false, &right))
|
2013-08-27 08:42:09 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_left->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_left), func, false, &left))
|
2013-08-27 08:42:09 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_left->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_left), func, false, &left))
|
2013-08-27 08:42:09 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_right->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_right), func, false, &right))
|
2013-08-27 08:42:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-05-02 21:11:39 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = ir_block_create_binop(func->m_curblock, self->m_context, ast_function_label(func, "bin"),
|
|
|
|
self->m_op, left, right);
|
2012-05-02 21:11:39 +00:00
|
|
|
if (!*out)
|
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = *out;
|
2012-12-31 12:20:08 +00:00
|
|
|
codegen_output_type(self, *out);
|
2012-05-02 21:11:39 +00:00
|
|
|
|
|
|
|
return true;
|
2012-04-26 08:38:00 +00:00
|
|
|
}
|
2012-05-01 13:08:54 +00:00
|
|
|
|
2012-08-14 08:40:48 +00:00
|
|
|
bool ast_binstore_codegen(ast_binstore *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
|
|
|
ast_expression_codegen *cgen;
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_value *leftl = nullptr, *leftr, *right, *bin;
|
2012-08-14 08:40:48 +00:00
|
|
|
|
2012-11-22 21:03:06 +00:00
|
|
|
ast_value *arr;
|
|
|
|
ast_value *idx = 0;
|
2015-01-15 20:18:33 +00:00
|
|
|
ast_array_index *ai = nullptr;
|
|
|
|
ir_value *iridx = nullptr;
|
2012-11-22 21:03:06 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (lvalue && self->m_outl) {
|
|
|
|
*out = self->m_outl;
|
2012-08-14 08:40:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!lvalue && self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2012-08-14 08:40:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (ast_istype(self->m_dest, ast_array_index))
|
2012-11-22 21:03:06 +00:00
|
|
|
{
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
ai = (ast_array_index*)self->m_dest;
|
|
|
|
idx = (ast_value*)ai->m_index;
|
2012-11-22 21:03:06 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (ast_istype(ai->m_index, ast_value) && idx->m_hasvalue && idx->m_cvq == CV_CONST)
|
2015-01-15 20:18:33 +00:00
|
|
|
ai = nullptr;
|
2012-11-22 21:03:06 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 08:40:48 +00:00
|
|
|
/* for a binstore we need both an lvalue and an rvalue for the left side */
|
|
|
|
/* rvalue of destination! */
|
2012-11-22 21:03:06 +00:00
|
|
|
if (ai) {
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = idx->m_codegen;
|
2012-11-22 21:03:06 +00:00
|
|
|
if (!(*cgen)((ast_expression*)(idx), func, false, &iridx))
|
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_dest->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_dest), func, false, &leftr))
|
2012-08-14 08:40:48 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* source as rvalue only */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_source->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_source), func, false, &right))
|
2012-08-14 08:40:48 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* now the binary */
|
2015-01-24 11:25:46 +00:00
|
|
|
bin = ir_block_create_binop(func->m_curblock, self->m_context, ast_function_label(func, "binst"),
|
|
|
|
self->m_opbin, leftr, right);
|
|
|
|
self->m_outr = bin;
|
2012-08-14 08:40:48 +00:00
|
|
|
|
2012-11-22 21:03:06 +00:00
|
|
|
if (ai) {
|
|
|
|
/* we need to call the setter */
|
|
|
|
ir_value *funval;
|
|
|
|
ir_instr *call;
|
|
|
|
|
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "array-subscript assignment cannot produce lvalues");
|
2012-11-22 21:03:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
arr = (ast_value*)ai->m_array;
|
|
|
|
if (!ast_istype(ai->m_array, ast_value) || !arr->m_setter) {
|
|
|
|
compile_error(self->m_context, "value has no setter (%s)", arr->m_name);
|
2012-11-22 21:03:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = arr->m_setter->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(arr->m_setter), func, true, &funval))
|
2012-11-22 21:03:06 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
call = ir_block_create_call(func->m_curblock, self->m_context, ast_function_label(func, "store"), funval, false);
|
2012-11-22 21:03:06 +00:00
|
|
|
if (!call)
|
|
|
|
return false;
|
|
|
|
ir_call_param(call, iridx);
|
|
|
|
ir_call_param(call, bin);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = bin;
|
2012-11-22 21:03:06 +00:00
|
|
|
} else {
|
|
|
|
/* now store them */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_dest->m_codegen;
|
2012-11-22 21:03:06 +00:00
|
|
|
/* lvalue of destination */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!(*cgen)((ast_expression*)(self->m_dest), func, true, &leftl))
|
2012-11-22 21:03:06 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outl = leftl;
|
2012-11-22 21:03:06 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_store_op(func->m_curblock, self->m_context, self->m_opstore, leftl, bin))
|
2012-11-22 21:03:06 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = bin;
|
2012-11-22 21:03:06 +00:00
|
|
|
}
|
2012-08-14 08:40:48 +00:00
|
|
|
|
|
|
|
/* Theoretically, an assinment returns its left side as an
|
|
|
|
* lvalue, if we don't need an lvalue though, we return
|
|
|
|
* the right side as an rvalue, otherwise we have to
|
|
|
|
* somehow know whether or not we need to dereference the pointer
|
|
|
|
* on the left side - that is: OP_LOAD if it was an address.
|
|
|
|
* Also: in original QC we cannot OP_LOADP *anyway*.
|
|
|
|
*/
|
|
|
|
*out = (lvalue ? leftl : bin);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-26 18:45:18 +00:00
|
|
|
bool ast_unary_codegen(ast_unary *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
ir_value *operand;
|
|
|
|
|
2012-10-30 20:15:42 +00:00
|
|
|
/* An unary operation cannot yield an l-value */
|
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "not an l-value (binop)");
|
2012-10-30 20:15:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-07-26 18:45:18 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_operand->m_codegen;
|
2012-07-26 18:45:18 +00:00
|
|
|
/* lvalue! */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!(*cgen)((ast_expression*)(self->m_operand), func, false, &operand))
|
2012-07-26 18:45:18 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = ir_block_create_unary(func->m_curblock, self->m_context, ast_function_label(func, "unary"),
|
|
|
|
self->m_op, operand);
|
2012-07-26 18:45:18 +00:00
|
|
|
if (!*out)
|
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = *out;
|
2012-07-26 18:45:18 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-26 19:18:39 +00:00
|
|
|
bool ast_return_codegen(ast_return *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
ir_value *operand;
|
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
*out = nullptr;
|
2012-11-22 20:39:30 +00:00
|
|
|
|
2012-10-30 20:15:42 +00:00
|
|
|
/* In the context of a return operation, we don't actually return
|
|
|
|
* anything...
|
2012-07-26 19:18:39 +00:00
|
|
|
*/
|
2012-10-30 20:15:42 +00:00
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "return-expression is not an l-value");
|
2012-10-30 20:15:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
compile_error(self->m_context, "internal error: ast_return cannot be reused, it bears no result!");
|
2012-08-13 17:54:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = (ir_value*)1;
|
2012-07-26 19:18:39 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_operand) {
|
|
|
|
cgen = self->m_operand->m_codegen;
|
2012-08-18 15:58:38 +00:00
|
|
|
/* lvalue! */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!(*cgen)((ast_expression*)(self->m_operand), func, false, &operand))
|
2012-08-18 15:58:38 +00:00
|
|
|
return false;
|
2012-07-26 19:18:39 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_return(func->m_curblock, self->m_context, operand))
|
2012-08-18 15:58:38 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_return(func->m_curblock, self->m_context, nullptr))
|
2012-08-18 15:58:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-26 19:18:39 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-01 13:14:44 +00:00
|
|
|
bool ast_entfield_codegen(ast_entfield *self, ast_function *func, bool lvalue, ir_value **out)
|
2012-05-01 13:08:54 +00:00
|
|
|
{
|
2012-05-03 10:19:33 +00:00
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
ir_value *ent, *field;
|
|
|
|
|
|
|
|
/* This function needs to take the 'lvalue' flag into account!
|
|
|
|
* As lvalue we provide a field-pointer, as rvalue we provide the
|
|
|
|
* value in a temp.
|
|
|
|
*/
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (lvalue && self->m_outl) {
|
|
|
|
*out = self->m_outl;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!lvalue && self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_entity->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_entity), func, false, &ent))
|
2012-05-03 10:19:33 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_field->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_field), func, false, &field))
|
2012-05-03 10:19:33 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (lvalue) {
|
|
|
|
/* address! */
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = ir_block_create_fieldaddress(func->m_curblock, self->m_context, ast_function_label(func, "efa"),
|
2012-05-03 10:19:33 +00:00
|
|
|
ent, field);
|
|
|
|
} else {
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = ir_block_create_load_from_ent(func->m_curblock, self->m_context, ast_function_label(func, "efv"),
|
|
|
|
ent, field, self->m_vtype);
|
2013-04-21 10:24:55 +00:00
|
|
|
/* Done AFTER error checking:
|
2012-12-01 15:39:29 +00:00
|
|
|
codegen_output_type(self, *out);
|
2012-12-17 14:43:14 +00:00
|
|
|
*/
|
2012-05-03 10:19:33 +00:00
|
|
|
}
|
2012-08-18 10:45:29 +00:00
|
|
|
if (!*out) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "failed to create %s instruction (output type %s)",
|
2012-08-18 10:45:29 +00:00
|
|
|
(lvalue ? "ADDRESS" : "FIELD"),
|
2015-01-24 11:25:46 +00:00
|
|
|
type_name[self->m_vtype]);
|
2012-05-03 10:19:33 +00:00
|
|
|
return false;
|
2012-08-18 10:45:29 +00:00
|
|
|
}
|
2012-12-17 14:43:14 +00:00
|
|
|
if (!lvalue)
|
|
|
|
codegen_output_type(self, *out);
|
2012-05-03 10:19:33 +00:00
|
|
|
|
2012-08-13 17:54:53 +00:00
|
|
|
if (lvalue)
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outl = *out;
|
2012-08-13 17:54:53 +00:00
|
|
|
else
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = *out;
|
2012-08-13 17:54:53 +00:00
|
|
|
|
2012-05-03 10:19:33 +00:00
|
|
|
/* Hm that should be it... */
|
|
|
|
return true;
|
2012-05-01 13:08:54 +00:00
|
|
|
}
|
2012-05-01 14:55:02 +00:00
|
|
|
|
2012-08-08 12:49:37 +00:00
|
|
|
bool ast_member_codegen(ast_member *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
|
|
|
ast_expression_codegen *cgen;
|
2012-08-11 13:41:37 +00:00
|
|
|
ir_value *vec;
|
2012-08-08 12:49:37 +00:00
|
|
|
|
2012-08-13 17:54:53 +00:00
|
|
|
/* in QC this is always an lvalue */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (lvalue && self->m_rvalue) {
|
|
|
|
compile_error(self->m_context, "not an l-value (member access)");
|
2012-12-29 14:13:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outl) {
|
|
|
|
*out = self->m_outl;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_owner->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_owner), func, false, &vec))
|
2012-08-08 12:49:37 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (vec->m_vtype != TYPE_VECTOR &&
|
|
|
|
!(vec->m_vtype == TYPE_FIELD && self->m_owner->m_next->m_vtype == TYPE_VECTOR))
|
2012-08-11 20:14:16 +00:00
|
|
|
{
|
2012-08-08 12:49:37 +00:00
|
|
|
return false;
|
2012-08-11 20:14:16 +00:00
|
|
|
}
|
2012-08-08 12:49:37 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = ir_value_vector_member(vec, self->m_field);
|
|
|
|
self->m_outl = *out;
|
2012-08-08 12:49:37 +00:00
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
return (*out != nullptr);
|
2012-08-08 12:49:37 +00:00
|
|
|
}
|
|
|
|
|
2012-11-11 15:06:27 +00:00
|
|
|
bool ast_array_index_codegen(ast_array_index *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
|
|
|
ast_value *arr;
|
|
|
|
ast_value *idx;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!lvalue && self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2013-02-05 16:54:14 +00:00
|
|
|
return true;
|
2012-11-11 15:32:59 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (lvalue && self->m_outl) {
|
|
|
|
*out = self->m_outl;
|
2013-02-05 16:54:14 +00:00
|
|
|
return true;
|
2012-11-11 15:32:59 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ast_istype(self->m_array, ast_value)) {
|
|
|
|
compile_error(self->m_context, "array indexing this way is not supported");
|
2012-11-11 15:32:59 +00:00
|
|
|
/* note this would actually be pointer indexing because the left side is
|
|
|
|
* not an actual array but (hopefully) an indexable expression.
|
|
|
|
* Once we get integer arithmetic, and GADDRESS/GSTORE/GLOAD instruction
|
|
|
|
* support this path will be filled.
|
|
|
|
*/
|
2012-11-11 15:06:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
arr = (ast_value*)self->m_array;
|
|
|
|
idx = (ast_value*)self->m_index;
|
2012-11-11 18:02:50 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ast_istype(self->m_index, ast_value) || !idx->m_hasvalue || idx->m_cvq != CV_CONST) {
|
2012-11-11 18:02:50 +00:00
|
|
|
/* Time to use accessor functions */
|
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
ir_value *iridx, *funval;
|
|
|
|
ir_instr *call;
|
|
|
|
|
2012-11-11 15:06:27 +00:00
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "(.2) array indexing here needs a compile-time constant");
|
2012-11-11 15:06:27 +00:00
|
|
|
return false;
|
2012-11-11 18:02:50 +00:00
|
|
|
}
|
2012-11-11 15:32:59 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!arr->m_getter) {
|
|
|
|
compile_error(self->m_context, "value has no getter, don't know how to index it");
|
2012-11-11 18:02:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-11-11 15:32:59 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_index->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_index), func, false, &iridx))
|
2012-11-11 18:02:50 +00:00
|
|
|
return false;
|
2012-11-11 15:32:59 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = arr->m_getter->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(arr->m_getter), func, true, &funval))
|
2012-11-11 18:02:50 +00:00
|
|
|
return false;
|
2012-11-11 15:06:27 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
call = ir_block_create_call(func->m_curblock, self->m_context, ast_function_label(func, "fetch"), funval, false);
|
2012-11-11 18:02:50 +00:00
|
|
|
if (!call)
|
|
|
|
return false;
|
2012-11-15 17:32:03 +00:00
|
|
|
ir_call_param(call, iridx);
|
2012-11-11 15:06:27 +00:00
|
|
|
|
2012-11-11 18:02:50 +00:00
|
|
|
*out = ir_call_value(call);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = *out;
|
|
|
|
(*out)->m_vtype = self->m_vtype;
|
2013-01-12 14:15:58 +00:00
|
|
|
codegen_output_type(self, *out);
|
2012-11-11 18:02:50 +00:00
|
|
|
return true;
|
2012-11-11 15:06:27 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (idx->m_vtype == TYPE_FLOAT) {
|
|
|
|
unsigned int arridx = idx->m_constval.vfloat;
|
|
|
|
if (arridx >= self->m_array->m_count)
|
2012-11-30 15:23:34 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "array index out of bounds: %i", arridx);
|
2012-11-30 15:23:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = arr->m_ir_values[arridx];
|
2012-11-30 15:23:34 +00:00
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
else if (idx->m_vtype == TYPE_INTEGER) {
|
|
|
|
unsigned int arridx = idx->m_constval.vint;
|
|
|
|
if (arridx >= self->m_array->m_count)
|
2012-11-30 15:23:34 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "array index out of bounds: %i", arridx);
|
2012-11-30 15:23:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
*out = arr->m_ir_values[arridx];
|
2012-11-30 15:23:34 +00:00
|
|
|
}
|
2012-11-11 15:06:27 +00:00
|
|
|
else {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "array indexing here needs an integer constant");
|
2012-11-11 15:06:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
(*out)->m_vtype = self->m_vtype;
|
2013-01-12 14:15:58 +00:00
|
|
|
codegen_output_type(self, *out);
|
2012-11-11 15:06:27 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-12 15:23:39 +00:00
|
|
|
bool ast_argpipe_codegen(ast_argpipe *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
2015-01-15 20:18:33 +00:00
|
|
|
*out = nullptr;
|
2013-06-12 15:23:39 +00:00
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "argpipe node: not an lvalue");
|
2013-06-12 15:23:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
(void)func;
|
|
|
|
(void)out;
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "TODO: argpipe codegen not implemented");
|
2013-06-12 15:23:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-01 14:55:02 +00:00
|
|
|
bool ast_ifthen_codegen(ast_ifthen *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
2012-05-03 10:38:43 +00:00
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
|
|
|
|
ir_value *condval;
|
|
|
|
ir_value *dummy;
|
|
|
|
|
2012-12-18 15:45:18 +00:00
|
|
|
ir_block *cond;
|
2012-05-03 10:38:43 +00:00
|
|
|
ir_block *ontrue;
|
|
|
|
ir_block *onfalse;
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_block *ontrue_endblock = nullptr;
|
|
|
|
ir_block *onfalse_endblock = nullptr;
|
|
|
|
ir_block *merge = nullptr;
|
2015-01-16 01:27:17 +00:00
|
|
|
int folded = 0;
|
2012-05-03 10:38:43 +00:00
|
|
|
|
|
|
|
/* We don't output any value, thus also don't care about r/lvalue */
|
|
|
|
(void)out;
|
|
|
|
(void)lvalue;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
compile_error(self->m_context, "internal error: ast_ifthen cannot be reused, it bears no result!");
|
2012-08-13 17:54:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = (ir_value*)1;
|
2012-08-13 17:54:53 +00:00
|
|
|
|
2012-05-03 20:05:20 +00:00
|
|
|
/* generate the condition */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_cond->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_cond), func, false, &condval))
|
2012-05-03 20:05:20 +00:00
|
|
|
return false;
|
2012-11-22 19:04:18 +00:00
|
|
|
/* update the block which will get the jump - because short-logic or ternaries may have changed this */
|
2015-01-24 11:25:46 +00:00
|
|
|
cond = func->m_curblock;
|
2012-05-03 20:05:20 +00:00
|
|
|
|
2013-09-26 10:51:49 +00:00
|
|
|
/* try constant folding away the condition */
|
2015-01-16 01:27:17 +00:00
|
|
|
if ((folded = fold::cond_ifthen(condval, func, self)) != -1)
|
|
|
|
return folded;
|
2013-08-17 23:43:41 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_on_true) {
|
2012-05-03 10:38:43 +00:00
|
|
|
/* create on-true block */
|
2015-01-24 11:25:46 +00:00
|
|
|
ontrue = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "ontrue"));
|
2012-05-03 10:38:43 +00:00
|
|
|
if (!ontrue)
|
|
|
|
return false;
|
2012-05-03 20:05:20 +00:00
|
|
|
|
|
|
|
/* enter the block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = ontrue;
|
2012-05-03 20:05:20 +00:00
|
|
|
|
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_on_true->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_on_true), func, false, &dummy))
|
2012-05-03 20:05:20 +00:00
|
|
|
return false;
|
2012-08-21 16:25:41 +00:00
|
|
|
|
|
|
|
/* we now need to work from the current endpoint */
|
2015-01-24 11:25:46 +00:00
|
|
|
ontrue_endblock = func->m_curblock;
|
2012-05-03 10:38:43 +00:00
|
|
|
} else
|
2015-01-15 20:18:33 +00:00
|
|
|
ontrue = nullptr;
|
2012-06-11 17:25:21 +00:00
|
|
|
|
2012-05-03 20:05:20 +00:00
|
|
|
/* on-false path */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_on_false) {
|
2012-05-03 10:38:43 +00:00
|
|
|
/* create on-false block */
|
2015-01-24 11:25:46 +00:00
|
|
|
onfalse = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "onfalse"));
|
2012-05-03 10:38:43 +00:00
|
|
|
if (!onfalse)
|
|
|
|
return false;
|
2012-05-03 20:05:20 +00:00
|
|
|
|
|
|
|
/* enter the block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = onfalse;
|
2012-05-03 20:05:20 +00:00
|
|
|
|
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_on_false->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_on_false), func, false, &dummy))
|
2012-05-03 20:05:20 +00:00
|
|
|
return false;
|
2012-08-21 16:25:41 +00:00
|
|
|
|
|
|
|
/* we now need to work from the current endpoint */
|
2015-01-24 11:25:46 +00:00
|
|
|
onfalse_endblock = func->m_curblock;
|
2012-05-03 10:38:43 +00:00
|
|
|
} else
|
2015-01-15 20:18:33 +00:00
|
|
|
onfalse = nullptr;
|
2012-05-03 10:38:43 +00:00
|
|
|
|
2012-05-03 20:05:20 +00:00
|
|
|
/* Merge block were they all merge in to */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ontrue || !onfalse || !ontrue_endblock->m_final || !onfalse_endblock->m_final)
|
2012-05-03 10:38:43 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
merge = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "endif"));
|
2012-11-30 11:21:10 +00:00
|
|
|
if (!merge)
|
|
|
|
return false;
|
|
|
|
/* add jumps ot the merge block */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (ontrue && !ontrue_endblock->m_final && !ir_block_create_jump(ontrue_endblock, self->m_context, merge))
|
2012-11-30 11:21:10 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (onfalse && !onfalse_endblock->m_final && !ir_block_create_jump(onfalse_endblock, self->m_context, merge))
|
2012-11-30 11:21:10 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Now enter the merge block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = merge;
|
2012-11-30 11:21:10 +00:00
|
|
|
}
|
2012-05-03 10:38:43 +00:00
|
|
|
|
2012-11-30 11:23:27 +00:00
|
|
|
/* we create the if here, that way all blocks are ordered :)
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_if(cond, self->m_context, condval,
|
2012-11-30 11:23:27 +00:00
|
|
|
(ontrue ? ontrue : merge),
|
|
|
|
(onfalse ? onfalse : merge)))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-03 10:38:43 +00:00
|
|
|
return true;
|
2012-05-01 14:55:02 +00:00
|
|
|
}
|
2012-05-01 15:02:45 +00:00
|
|
|
|
|
|
|
bool ast_ternary_codegen(ast_ternary *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
2012-05-03 11:02:29 +00:00
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
|
|
|
|
ir_value *condval;
|
|
|
|
ir_value *trueval, *falseval;
|
|
|
|
ir_instr *phi;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
ir_block *cond = func->m_curblock;
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_block *cond_out = nullptr;
|
|
|
|
ir_block *ontrue, *ontrue_out = nullptr;
|
|
|
|
ir_block *onfalse, *onfalse_out = nullptr;
|
2012-05-03 11:02:29 +00:00
|
|
|
ir_block *merge;
|
2015-01-16 01:27:17 +00:00
|
|
|
int folded = 0;
|
2012-05-03 11:02:29 +00:00
|
|
|
|
2012-08-13 17:54:53 +00:00
|
|
|
/* Ternary can never create an lvalue... */
|
|
|
|
if (lvalue)
|
|
|
|
return false;
|
|
|
|
|
2012-05-01 15:02:45 +00:00
|
|
|
/* In theory it shouldn't be possible to pass through a node twice, but
|
|
|
|
* in case we add any kind of optimization pass for the AST itself, it
|
|
|
|
* may still happen, thus we remember a created ir_value and simply return one
|
|
|
|
* if it already exists.
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2012-05-01 15:02:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-05-03 11:02:29 +00:00
|
|
|
|
|
|
|
/* In the following, contraty to ast_ifthen, we assume both paths exist. */
|
2012-06-11 17:25:21 +00:00
|
|
|
|
2012-05-03 20:07:58 +00:00
|
|
|
/* generate the condition */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = cond;
|
|
|
|
cgen = self->m_cond->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_cond), func, false, &condval))
|
2012-05-03 20:07:58 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
cond_out = func->m_curblock;
|
2012-05-03 11:02:29 +00:00
|
|
|
|
2013-09-26 10:51:49 +00:00
|
|
|
/* try constant folding away the condition */
|
2015-01-16 01:27:17 +00:00
|
|
|
if ((folded = fold::cond_ternary(condval, func, self)) != -1)
|
|
|
|
return folded;
|
2013-09-26 10:51:49 +00:00
|
|
|
|
2012-05-03 11:02:29 +00:00
|
|
|
/* create on-true block */
|
2015-01-24 11:25:46 +00:00
|
|
|
ontrue = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "tern_T"));
|
2012-05-03 11:02:29 +00:00
|
|
|
if (!ontrue)
|
|
|
|
return false;
|
2012-05-03 20:07:58 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* enter the block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = ontrue;
|
2012-05-03 20:07:58 +00:00
|
|
|
|
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_on_true->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_on_true), func, false, &trueval))
|
2012-05-03 20:07:58 +00:00
|
|
|
return false;
|
2012-11-25 22:48:29 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
ontrue_out = func->m_curblock;
|
2012-05-03 20:07:58 +00:00
|
|
|
}
|
2012-06-11 17:25:21 +00:00
|
|
|
|
2012-05-03 11:02:29 +00:00
|
|
|
/* create on-false block */
|
2015-01-24 11:25:46 +00:00
|
|
|
onfalse = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "tern_F"));
|
2012-05-03 11:02:29 +00:00
|
|
|
if (!onfalse)
|
|
|
|
return false;
|
2012-05-03 20:07:58 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* enter the block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = onfalse;
|
2012-05-03 20:07:58 +00:00
|
|
|
|
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_on_false->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_on_false), func, false, &falseval))
|
2012-05-03 20:07:58 +00:00
|
|
|
return false;
|
2012-11-25 22:48:29 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
onfalse_out = func->m_curblock;
|
2012-05-03 20:07:58 +00:00
|
|
|
}
|
2012-05-03 11:02:29 +00:00
|
|
|
|
2012-05-03 20:07:58 +00:00
|
|
|
/* create merge block */
|
2015-01-24 11:25:46 +00:00
|
|
|
merge = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "tern_out"));
|
2012-05-03 11:02:29 +00:00
|
|
|
if (!merge)
|
2012-06-11 17:25:21 +00:00
|
|
|
return false;
|
2012-05-03 11:02:29 +00:00
|
|
|
/* jump to merge block */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_jump(ontrue_out, self->m_context, merge))
|
2012-05-03 11:02:29 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_jump(onfalse_out, self->m_context, merge))
|
2012-05-03 11:02:29 +00:00
|
|
|
return false;
|
|
|
|
|
2012-05-03 20:07:58 +00:00
|
|
|
/* create if instruction */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_if(cond_out, self->m_context, condval, ontrue, onfalse))
|
2012-05-03 11:02:29 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Now enter the merge block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = merge;
|
2012-05-03 11:02:29 +00:00
|
|
|
|
|
|
|
/* Here, now, we need a PHI node
|
|
|
|
* but first some sanity checking...
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (trueval->m_vtype != falseval->m_vtype && trueval->m_vtype != TYPE_NIL && falseval->m_vtype != TYPE_NIL) {
|
2012-05-03 11:02:29 +00:00
|
|
|
/* error("ternary with different types on the two sides"); */
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: ternary operand types invalid");
|
2012-05-03 11:02:29 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create PHI */
|
2015-01-24 11:25:46 +00:00
|
|
|
phi = ir_block_create_phi(merge, self->m_context, ast_function_label(func, "phi"), self->m_vtype);
|
2012-12-31 11:08:47 +00:00
|
|
|
if (!phi) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: failed to generate phi node");
|
2012-05-03 11:02:29 +00:00
|
|
|
return false;
|
2012-12-31 11:08:47 +00:00
|
|
|
}
|
2012-11-25 22:48:29 +00:00
|
|
|
ir_phi_add(phi, ontrue_out, trueval);
|
|
|
|
ir_phi_add(phi, onfalse_out, falseval);
|
2012-05-03 11:02:29 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = ir_phi_value(phi);
|
|
|
|
*out = self->m_outr;
|
2012-05-03 11:02:29 +00:00
|
|
|
|
2012-12-04 13:11:49 +00:00
|
|
|
codegen_output_type(self, *out);
|
|
|
|
|
2012-05-03 11:02:29 +00:00
|
|
|
return true;
|
2012-05-01 15:02:45 +00:00
|
|
|
}
|
2012-05-03 19:57:13 +00:00
|
|
|
|
|
|
|
bool ast_loop_codegen(ast_loop *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
2012-05-03 20:05:20 +00:00
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_value *dummy = nullptr;
|
|
|
|
ir_value *precond = nullptr;
|
|
|
|
ir_value *postcond = nullptr;
|
2012-05-03 20:05:20 +00:00
|
|
|
|
2012-05-03 22:16:51 +00:00
|
|
|
/* Since we insert some jumps "late" so we have blocks
|
|
|
|
* ordered "nicely", we need to keep track of the actual end-blocks
|
|
|
|
* of expressions to add the jumps to.
|
|
|
|
*/
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_block *bbody = nullptr, *end_bbody = nullptr;
|
|
|
|
ir_block *bprecond = nullptr, *end_bprecond = nullptr;
|
|
|
|
ir_block *bpostcond = nullptr, *end_bpostcond = nullptr;
|
|
|
|
ir_block *bincrement = nullptr, *end_bincrement = nullptr;
|
|
|
|
ir_block *bout = nullptr, *bin = nullptr;
|
2012-05-03 22:16:51 +00:00
|
|
|
|
2012-05-04 08:01:38 +00:00
|
|
|
/* let's at least move the outgoing block to the end */
|
|
|
|
size_t bout_id;
|
|
|
|
|
2012-05-03 22:16:51 +00:00
|
|
|
/* 'break' and 'continue' need to be able to find the right blocks */
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_block *bcontinue = nullptr;
|
|
|
|
ir_block *bbreak = nullptr;
|
2012-05-03 22:16:51 +00:00
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_block *tmpblock = nullptr;
|
2012-05-04 10:24:44 +00:00
|
|
|
|
2012-05-03 20:05:20 +00:00
|
|
|
(void)lvalue;
|
2012-05-03 22:16:51 +00:00
|
|
|
(void)out;
|
2012-05-03 20:05:20 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
compile_error(self->m_context, "internal error: ast_loop cannot be reused, it bears no result!");
|
2012-08-13 17:54:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = (ir_value*)1;
|
2012-08-13 17:54:53 +00:00
|
|
|
|
2012-05-03 22:16:51 +00:00
|
|
|
/* NOTE:
|
|
|
|
* Should we ever need some kind of block ordering, better make this function
|
|
|
|
* move blocks around than write a block ordering algorithm later... after all
|
|
|
|
* the ast and ir should work together, not against each other.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* initexpr doesn't get its own block, it's pointless, it could create more blocks
|
|
|
|
* anyway if for example it contains a ternary.
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_initexpr)
|
2012-05-03 22:16:51 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_initexpr->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_initexpr), func, false, &dummy))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Store the block from which we enter this chaos */
|
2015-01-24 11:25:46 +00:00
|
|
|
bin = func->m_curblock;
|
2012-05-03 22:16:51 +00:00
|
|
|
|
|
|
|
/* The pre-loop condition needs its own block since we
|
|
|
|
* need to be able to jump to the start of that expression.
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_precond)
|
2012-05-03 22:16:51 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
bprecond = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "pre_loop_cond"));
|
2012-05-03 22:16:51 +00:00
|
|
|
if (!bprecond)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* the pre-loop-condition the least important place to 'continue' at */
|
|
|
|
bcontinue = bprecond;
|
|
|
|
|
|
|
|
/* enter */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = bprecond;
|
2012-05-03 22:16:51 +00:00
|
|
|
|
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_precond->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_precond), func, false, &precond))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
end_bprecond = func->m_curblock;
|
2012-05-03 22:16:51 +00:00
|
|
|
} else {
|
2015-01-15 20:18:33 +00:00
|
|
|
bprecond = end_bprecond = nullptr;
|
2012-05-03 22:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Now the next blocks won't be ordered nicely, but we need to
|
|
|
|
* generate them this early for 'break' and 'continue'.
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_increment) {
|
|
|
|
bincrement = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "loop_increment"));
|
2012-05-03 22:16:51 +00:00
|
|
|
if (!bincrement)
|
|
|
|
return false;
|
|
|
|
bcontinue = bincrement; /* increment comes before the pre-loop-condition */
|
|
|
|
} else {
|
2015-01-15 20:18:33 +00:00
|
|
|
bincrement = end_bincrement = nullptr;
|
2012-05-03 22:16:51 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_postcond) {
|
|
|
|
bpostcond = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "post_loop_cond"));
|
2012-05-03 22:16:51 +00:00
|
|
|
if (!bpostcond)
|
|
|
|
return false;
|
|
|
|
bcontinue = bpostcond; /* postcond comes before the increment */
|
|
|
|
} else {
|
2015-01-15 20:18:33 +00:00
|
|
|
bpostcond = end_bpostcond = nullptr;
|
2012-05-03 22:16:51 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
bout_id = func->m_ir_func->m_blocks.size();
|
|
|
|
bout = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "after_loop"));
|
2012-05-03 22:16:51 +00:00
|
|
|
if (!bout)
|
|
|
|
return false;
|
|
|
|
bbreak = bout;
|
|
|
|
|
|
|
|
/* The loop body... */
|
2015-01-24 11:25:46 +00:00
|
|
|
/* if (self->m_body) */
|
2012-05-03 22:16:51 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
bbody = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "loop_body"));
|
2012-05-03 22:16:51 +00:00
|
|
|
if (!bbody)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* enter */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = bbody;
|
2012-05-03 22:16:51 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_breakblocks.push_back(bbreak);
|
2012-12-27 23:04:09 +00:00
|
|
|
if (bcontinue)
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_continueblocks.push_back(bcontinue);
|
2012-12-27 23:04:09 +00:00
|
|
|
else
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_continueblocks.push_back(bbody);
|
2012-05-03 22:16:51 +00:00
|
|
|
|
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_body) {
|
|
|
|
cgen = self->m_body->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_body), func, false, &dummy))
|
2012-11-30 20:34:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-05-03 22:16:51 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
end_bbody = func->m_curblock;
|
|
|
|
func->m_breakblocks.pop_back();
|
|
|
|
func->m_continueblocks.pop_back();
|
2012-05-03 22:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* post-loop-condition */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_postcond)
|
2012-05-03 22:16:51 +00:00
|
|
|
{
|
|
|
|
/* enter */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = bpostcond;
|
2012-05-03 22:16:51 +00:00
|
|
|
|
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_postcond->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_postcond), func, false, &postcond))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
end_bpostcond = func->m_curblock;
|
2012-05-03 22:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The incrementor */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_increment)
|
2012-05-03 22:16:51 +00:00
|
|
|
{
|
|
|
|
/* enter */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = bincrement;
|
2012-05-03 22:16:51 +00:00
|
|
|
|
|
|
|
/* generate */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_increment->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_increment), func, false, &dummy))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
end_bincrement = func->m_curblock;
|
2012-05-03 22:16:51 +00:00
|
|
|
}
|
|
|
|
|
2012-05-04 10:01:53 +00:00
|
|
|
/* In any case now, we continue from the outgoing block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = bout;
|
2012-05-04 10:01:53 +00:00
|
|
|
|
2012-05-03 22:16:51 +00:00
|
|
|
/* Now all blocks are in place */
|
|
|
|
/* From 'bin' we jump to whatever comes first */
|
2012-05-04 10:24:44 +00:00
|
|
|
if (bprecond) tmpblock = bprecond;
|
2013-06-22 01:56:22 +00:00
|
|
|
else tmpblock = bbody; /* can never be null */
|
2013-07-27 11:48:55 +00:00
|
|
|
|
2013-06-22 01:56:22 +00:00
|
|
|
/* DEAD CODE
|
2012-05-04 10:24:44 +00:00
|
|
|
else if (bpostcond) tmpblock = bpostcond;
|
|
|
|
else tmpblock = bout;
|
2013-06-22 01:56:22 +00:00
|
|
|
*/
|
2013-07-27 11:48:55 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_jump(bin, self->m_context, tmpblock))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* From precond */
|
|
|
|
if (bprecond)
|
|
|
|
{
|
|
|
|
ir_block *ontrue, *onfalse;
|
2013-06-22 01:23:59 +00:00
|
|
|
ontrue = bbody; /* can never be null */
|
|
|
|
|
2013-07-27 11:48:55 +00:00
|
|
|
/* all of this is dead code
|
2012-05-03 22:16:51 +00:00
|
|
|
else if (bincrement) ontrue = bincrement;
|
2013-06-22 01:23:59 +00:00
|
|
|
else ontrue = bpostcond;
|
|
|
|
*/
|
|
|
|
|
2012-05-03 22:16:51 +00:00
|
|
|
onfalse = bout;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_pre_not) {
|
2012-12-20 19:22:31 +00:00
|
|
|
tmpblock = ontrue;
|
|
|
|
ontrue = onfalse;
|
|
|
|
onfalse = tmpblock;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_if(end_bprecond, self->m_context, precond, ontrue, onfalse))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* from body */
|
|
|
|
if (bbody)
|
|
|
|
{
|
2012-05-04 10:24:44 +00:00
|
|
|
if (bincrement) tmpblock = bincrement;
|
|
|
|
else if (bpostcond) tmpblock = bpostcond;
|
|
|
|
else if (bprecond) tmpblock = bprecond;
|
2012-11-30 11:28:51 +00:00
|
|
|
else tmpblock = bbody;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!end_bbody->m_final && !ir_block_create_jump(end_bbody, self->m_context, tmpblock))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* from increment */
|
|
|
|
if (bincrement)
|
|
|
|
{
|
2012-05-04 10:24:44 +00:00
|
|
|
if (bpostcond) tmpblock = bpostcond;
|
|
|
|
else if (bprecond) tmpblock = bprecond;
|
|
|
|
else if (bbody) tmpblock = bbody;
|
|
|
|
else tmpblock = bout;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_jump(end_bincrement, self->m_context, tmpblock))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* from postcond */
|
|
|
|
if (bpostcond)
|
|
|
|
{
|
|
|
|
ir_block *ontrue, *onfalse;
|
|
|
|
if (bprecond) ontrue = bprecond;
|
2013-06-21 23:40:51 +00:00
|
|
|
else ontrue = bbody; /* can never be null */
|
|
|
|
|
2013-07-27 11:48:55 +00:00
|
|
|
/* all of this is dead code
|
2012-05-03 22:16:51 +00:00
|
|
|
else if (bincrement) ontrue = bincrement;
|
|
|
|
else ontrue = bpostcond;
|
2013-06-21 23:40:51 +00:00
|
|
|
*/
|
|
|
|
|
2012-05-03 22:16:51 +00:00
|
|
|
onfalse = bout;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_post_not) {
|
2012-12-20 19:22:31 +00:00
|
|
|
tmpblock = ontrue;
|
|
|
|
ontrue = onfalse;
|
|
|
|
onfalse = tmpblock;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_if(end_bpostcond, self->m_context, postcond, ontrue, onfalse))
|
2012-05-03 22:16:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-04 08:01:38 +00:00
|
|
|
/* Move 'bout' to the end */
|
2015-01-24 11:25:46 +00:00
|
|
|
algo::shiftback(func->m_ir_func->m_blocks.begin() + bout_id,
|
|
|
|
func->m_ir_func->m_blocks.end());
|
2015-01-20 19:25:56 +00:00
|
|
|
// FIXME::DELME::
|
2015-01-24 11:25:46 +00:00
|
|
|
//func->m_ir_func->m_blocks[bout_id].release(); // it's a vector<unique_ptr<>>
|
|
|
|
//func->m_ir_func->m_blocks.erase(func->m_ir_func->m_blocks.begin() + bout_id);
|
|
|
|
//func->m_ir_func->m_blocks.emplace_back(bout);
|
2012-05-04 08:01:38 +00:00
|
|
|
|
2012-05-03 22:16:51 +00:00
|
|
|
return true;
|
2012-05-03 19:57:13 +00:00
|
|
|
}
|
2012-06-28 14:15:51 +00:00
|
|
|
|
2012-11-19 18:39:52 +00:00
|
|
|
bool ast_breakcont_codegen(ast_breakcont *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
|
|
|
ir_block *target;
|
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
*out = nullptr;
|
2012-11-22 20:39:30 +00:00
|
|
|
|
2012-11-19 18:39:52 +00:00
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "break/continue expression is not an l-value");
|
2012-11-19 18:39:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
compile_error(self->m_context, "internal error: ast_breakcont cannot be reused!");
|
2012-11-19 18:39:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = (ir_value*)1;
|
2012-11-19 18:39:52 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_is_continue)
|
|
|
|
target = func->m_continueblocks[func->m_continueblocks.size()-1-self->m_levels];
|
2012-11-19 18:39:52 +00:00
|
|
|
else
|
2015-01-24 11:25:46 +00:00
|
|
|
target = func->m_breakblocks[func->m_breakblocks.size()-1-self->m_levels];
|
2012-11-19 18:39:52 +00:00
|
|
|
|
2012-11-25 22:51:39 +00:00
|
|
|
if (!target) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "%s is lacking a target block", (self->m_is_continue ? "continue" : "break"));
|
2012-11-25 22:51:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_jump(func->m_curblock, self->m_context, target))
|
2012-11-19 18:39:52 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-19 20:17:44 +00:00
|
|
|
bool ast_switch_codegen(ast_switch *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
ast_switch_case *def_case = nullptr;
|
|
|
|
ir_block *def_bfall = nullptr;
|
|
|
|
ir_block *def_bfall_to = nullptr;
|
2012-12-17 16:01:07 +00:00
|
|
|
bool set_def_bfall_to = false;
|
2012-11-19 20:17:44 +00:00
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_value *dummy = nullptr;
|
|
|
|
ir_value *irop = nullptr;
|
|
|
|
ir_block *bout = nullptr;
|
|
|
|
ir_block *bfall = nullptr;
|
2012-11-19 20:17:44 +00:00
|
|
|
size_t bout_id;
|
|
|
|
|
|
|
|
char typestr[1024];
|
|
|
|
uint16_t cmpinstr;
|
|
|
|
|
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "switch expression is not an l-value");
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
compile_error(self->m_context, "internal error: ast_switch cannot be reused!");
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = (ir_value*)1;
|
2012-11-19 20:17:44 +00:00
|
|
|
|
|
|
|
(void)lvalue;
|
|
|
|
(void)out;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_operand->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_operand), func, false, &irop))
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_cases.empty())
|
2012-11-19 20:17:44 +00:00
|
|
|
return true;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cmpinstr = type_eq_instr[irop->m_vtype];
|
2013-01-30 06:31:24 +00:00
|
|
|
if (cmpinstr >= VINSTR_END) {
|
2015-01-24 11:25:46 +00:00
|
|
|
ast_type_to_string(self->m_operand, typestr, sizeof(typestr));
|
|
|
|
compile_error(self->m_context, "invalid type to perform a switch on: %s", typestr);
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
bout_id = func->m_ir_func->m_blocks.size();
|
|
|
|
bout = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "after_switch"));
|
2012-11-19 20:17:44 +00:00
|
|
|
if (!bout)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* setup the break block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_breakblocks.push_back(bout);
|
2012-11-19 20:17:44 +00:00
|
|
|
|
|
|
|
/* Now create all cases */
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_cases) {
|
2012-11-19 20:17:44 +00:00
|
|
|
ir_value *cond, *val;
|
|
|
|
ir_block *bcase, *bnot;
|
|
|
|
size_t bnot_id;
|
|
|
|
|
2015-01-15 19:19:07 +00:00
|
|
|
ast_switch_case *swcase = ⁢
|
2012-11-19 20:17:44 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (swcase->m_value) {
|
2012-11-19 20:17:44 +00:00
|
|
|
/* A regular case */
|
|
|
|
/* generate the condition operand */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = swcase->m_value->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(swcase->m_value), func, false, &val))
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
/* generate the condition */
|
2015-01-24 11:25:46 +00:00
|
|
|
cond = ir_block_create_binop(func->m_curblock, self->m_context, ast_function_label(func, "switch_eq"), cmpinstr, irop, val);
|
2012-11-19 20:17:44 +00:00
|
|
|
if (!cond)
|
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
bcase = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "case"));
|
|
|
|
bnot_id = func->m_ir_func->m_blocks.size();
|
|
|
|
bnot = ir_function_create_block(self->m_context, func->m_ir_func, ast_function_label(func, "not_case"));
|
2012-11-19 20:17:44 +00:00
|
|
|
if (!bcase || !bnot)
|
|
|
|
return false;
|
2012-12-17 16:01:07 +00:00
|
|
|
if (set_def_bfall_to) {
|
|
|
|
set_def_bfall_to = false;
|
|
|
|
def_bfall_to = bcase;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_if(func->m_curblock, self->m_context, cond, bcase, bnot))
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Make the previous case-end fall through */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (bfall && !bfall->m_final) {
|
|
|
|
if (!ir_block_create_jump(bfall, self->m_context, bcase))
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enter the case */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = bcase;
|
|
|
|
cgen = swcase->m_code->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)swcase->m_code, func, false, &dummy))
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* remember this block to fall through from */
|
2015-01-24 11:25:46 +00:00
|
|
|
bfall = func->m_curblock;
|
2012-11-19 20:17:44 +00:00
|
|
|
|
|
|
|
/* enter the else and move it down */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = bnot;
|
|
|
|
algo::shiftback(func->m_ir_func->m_blocks.begin() + bnot_id,
|
|
|
|
func->m_ir_func->m_blocks.end());
|
2015-01-20 19:25:56 +00:00
|
|
|
// FIXME::DELME::
|
2015-01-24 11:25:46 +00:00
|
|
|
//func->m_ir_func->m_blocks[bnot_id].release();
|
|
|
|
//func->m_ir_func->m_blocks.erase(func->m_ir_func->m_blocks.begin() + bnot_id);
|
|
|
|
//func->m_ir_func->m_blocks.emplace_back(bnot);
|
2012-11-19 20:17:44 +00:00
|
|
|
} else {
|
|
|
|
/* The default case */
|
|
|
|
/* Remember where to fall through from: */
|
|
|
|
def_bfall = bfall;
|
2015-01-15 20:18:33 +00:00
|
|
|
bfall = nullptr;
|
2012-11-19 20:17:44 +00:00
|
|
|
/* remember which case it was */
|
|
|
|
def_case = swcase;
|
2012-12-17 16:01:07 +00:00
|
|
|
/* And the next case will be remembered */
|
|
|
|
set_def_bfall_to = true;
|
2012-11-19 20:17:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-19 21:17:24 +00:00
|
|
|
/* Jump from the last bnot to bout */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (bfall && !bfall->m_final && !ir_block_create_jump(bfall, self->m_context, bout)) {
|
2012-11-19 21:17:24 +00:00
|
|
|
/*
|
2015-01-24 11:25:46 +00:00
|
|
|
astwarning(bfall->m_context, WARN_???, "missing break after last case");
|
2012-11-19 21:17:24 +00:00
|
|
|
*/
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-19 20:17:44 +00:00
|
|
|
/* If there was a default case, put it down here */
|
|
|
|
if (def_case) {
|
|
|
|
ir_block *bcase;
|
|
|
|
|
|
|
|
/* No need to create an extra block */
|
2015-01-24 11:25:46 +00:00
|
|
|
bcase = func->m_curblock;
|
2012-11-19 20:17:44 +00:00
|
|
|
|
|
|
|
/* Insert the fallthrough jump */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (def_bfall && !def_bfall->m_final) {
|
|
|
|
if (!ir_block_create_jump(def_bfall, self->m_context, bcase))
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now generate the default code */
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = def_case->m_code->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)def_case->m_code, func, false, &dummy))
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
2012-12-17 16:01:07 +00:00
|
|
|
|
|
|
|
/* see if we need to fall through */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (def_bfall_to && !func->m_curblock->m_final)
|
2012-12-17 16:01:07 +00:00
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_jump(func->m_curblock, self->m_context, def_bfall_to))
|
2012-12-17 16:01:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-11-19 20:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Jump from the last bnot to bout */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!func->m_curblock->m_final && !ir_block_create_jump(func->m_curblock, self->m_context, bout))
|
2012-11-19 20:17:44 +00:00
|
|
|
return false;
|
2012-11-19 21:08:38 +00:00
|
|
|
/* enter the outgoing block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = bout;
|
2012-11-19 20:17:44 +00:00
|
|
|
|
|
|
|
/* restore the break block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_breakblocks.pop_back();
|
2012-11-19 20:17:44 +00:00
|
|
|
|
|
|
|
/* Move 'bout' to the end, it's nicer */
|
2015-01-24 11:25:46 +00:00
|
|
|
algo::shiftback(func->m_ir_func->m_blocks.begin() + bout_id,
|
|
|
|
func->m_ir_func->m_blocks.end());
|
2015-01-20 19:25:56 +00:00
|
|
|
// FIXME::DELME::
|
2015-01-24 11:25:46 +00:00
|
|
|
//func->m_ir_func->m_blocks[bout_id].release();
|
|
|
|
//func->m_ir_func->m_blocks.erase(func->m_ir_func->m_blocks.begin() + bout_id);
|
|
|
|
//func->m_ir_func->m_blocks.emplace_back(bout);
|
2012-11-19 20:17:44 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-25 20:27:14 +00:00
|
|
|
bool ast_label_codegen(ast_label *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
2012-11-25 20:40:26 +00:00
|
|
|
ir_value *dummy;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_undefined) {
|
|
|
|
compile_error(self->m_context, "internal error: ast_label never defined");
|
2013-01-03 11:46:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
*out = nullptr;
|
2012-11-25 20:27:14 +00:00
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: ast_label cannot be an lvalue");
|
2012-11-25 20:27:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* simply create a new block and jump to it */
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_irblock = ir_function_create_block(self->m_context, func->m_ir_func, self->m_name);
|
|
|
|
if (!self->m_irblock) {
|
|
|
|
compile_error(self->m_context, "failed to allocate label block `%s`", self->m_name);
|
2012-11-25 20:27:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!func->m_curblock->m_final) {
|
|
|
|
if (!ir_block_create_jump(func->m_curblock, self->m_context, self->m_irblock))
|
2012-11-25 20:27:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enter the new block */
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock = self->m_irblock;
|
2012-11-25 20:40:26 +00:00
|
|
|
|
|
|
|
/* Generate all the leftover gotos */
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_gotos) {
|
2015-01-15 04:34:43 +00:00
|
|
|
if (!ast_goto_codegen(it, func, false, &dummy))
|
2012-11-25 20:40:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ast_goto_codegen(ast_goto *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
2015-01-15 20:18:33 +00:00
|
|
|
*out = nullptr;
|
2012-11-25 20:40:26 +00:00
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "internal error: ast_goto cannot be an lvalue");
|
2012-11-25 20:40:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_target->m_irblock) {
|
|
|
|
if (self->m_irblock_from) {
|
2012-11-25 20:40:26 +00:00
|
|
|
/* we already tried once, this is the callback */
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_irblock_from->m_final = false;
|
|
|
|
if (!ir_block_create_goto(self->m_irblock_from, self->m_context, self->m_target->m_irblock)) {
|
|
|
|
compile_error(self->m_context, "failed to generate goto to `%s`", self->m_name);
|
2012-11-25 20:40:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_goto(func->m_curblock, self->m_context, self->m_target->m_irblock)) {
|
|
|
|
compile_error(self->m_context, "failed to generate goto to `%s`", self->m_name);
|
2012-11-25 20:40:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* the target has not yet been created...
|
|
|
|
* close this block in a sneaky way:
|
|
|
|
*/
|
2015-01-24 11:25:46 +00:00
|
|
|
func->m_curblock->m_final = true;
|
|
|
|
self->m_irblock_from = func->m_curblock;
|
|
|
|
ast_label_register_goto(self->m_target, self);
|
2012-11-25 20:40:26 +00:00
|
|
|
}
|
|
|
|
|
2012-11-25 20:27:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-08 12:34:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
bool ast_state_codegen(ast_state *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
|
|
|
ast_expression_codegen *cgen;
|
|
|
|
|
|
|
|
ir_value *frameval, *thinkval;
|
|
|
|
|
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "not an l-value (state operation)");
|
2014-04-08 12:34:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
compile_error(self->m_context, "internal error: ast_state cannot be reused!");
|
2014-04-08 12:34:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-15 20:18:33 +00:00
|
|
|
*out = nullptr;
|
2014-04-08 12:34:55 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_framenum->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_framenum), func, false, &frameval))
|
2014-04-08 12:34:55 +00:00
|
|
|
return false;
|
|
|
|
if (!frameval)
|
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_nextthink->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_nextthink), func, false, &thinkval))
|
2014-04-08 12:34:55 +00:00
|
|
|
return false;
|
|
|
|
if (!frameval)
|
|
|
|
return false;
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_state_op(func->m_curblock, self->m_context, frameval, thinkval)) {
|
|
|
|
compile_error(self->m_context, "failed to create STATE instruction");
|
2014-04-08 12:34:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = (ir_value*)1;
|
2014-04-08 12:34:55 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-28 14:15:51 +00:00
|
|
|
bool ast_call_codegen(ast_call *self, ast_function *func, bool lvalue, ir_value **out)
|
|
|
|
{
|
2012-06-28 15:21:26 +00:00
|
|
|
ast_expression_codegen *cgen;
|
2015-01-15 20:15:35 +00:00
|
|
|
std::vector<ir_value*> params;
|
|
|
|
ir_instr *callinstr;
|
2012-06-28 15:21:26 +00:00
|
|
|
|
2015-01-15 20:18:33 +00:00
|
|
|
ir_value *funval = nullptr;
|
2012-06-28 15:21:26 +00:00
|
|
|
|
2012-08-13 17:54:53 +00:00
|
|
|
/* return values are never lvalues */
|
2012-10-30 20:15:42 +00:00
|
|
|
if (lvalue) {
|
2015-01-24 11:25:46 +00:00
|
|
|
compile_error(self->m_context, "not an l-value (function call)");
|
2012-10-30 20:15:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-06-28 15:21:26 +00:00
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_outr) {
|
|
|
|
*out = self->m_outr;
|
2012-08-13 17:54:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = self->m_func->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_func), func, false, &funval))
|
2012-06-28 15:21:26 +00:00
|
|
|
return false;
|
|
|
|
if (!funval)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* parameters */
|
2015-01-24 11:25:46 +00:00
|
|
|
for (auto &it : self->m_params) {
|
2012-06-28 15:21:26 +00:00
|
|
|
ir_value *param;
|
2015-01-24 11:25:46 +00:00
|
|
|
cgen = it->m_codegen;
|
2015-01-15 04:45:00 +00:00
|
|
|
if (!(*cgen)(it, func, false, ¶m))
|
2015-01-15 20:15:35 +00:00
|
|
|
return false;
|
2012-06-28 15:21:26 +00:00
|
|
|
if (!param)
|
2015-01-15 20:15:35 +00:00
|
|
|
return false;
|
|
|
|
params.push_back(param);
|
2012-06-28 15:21:26 +00:00
|
|
|
}
|
|
|
|
|
2013-01-12 12:29:47 +00:00
|
|
|
/* varargs counter */
|
2015-01-24 11:25:46 +00:00
|
|
|
if (self->m_va_count) {
|
2013-01-12 12:29:47 +00:00
|
|
|
ir_value *va_count;
|
2015-01-24 11:25:46 +00:00
|
|
|
ir_builder *builder = func->m_curblock->m_owner->m_owner;
|
|
|
|
cgen = self->m_va_count->m_codegen;
|
|
|
|
if (!(*cgen)((ast_expression*)(self->m_va_count), func, false, &va_count))
|
2013-01-12 12:29:47 +00:00
|
|
|
return false;
|
2015-01-24 11:25:46 +00:00
|
|
|
if (!ir_block_create_store_op(func->m_curblock, self->m_context, INSTR_STORE_F,
|
2013-01-12 12:29:47 +00:00
|
|
|
ir_builder_get_va_count(builder), va_count))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:25:46 +00:00
|
|
|
callinstr = ir_block_create_call(func->m_curblock, self->m_context,
|
2012-12-19 19:47:01 +00:00
|
|
|
ast_function_label(func, "call"),
|
2015-01-24 11:25:46 +00:00
|
|
|
funval, !!(self->m_func->m_flags & AST_FLAG_NORETURN));
|
2012-06-28 15:21:26 +00:00
|
|
|
if (!callinstr)
|
2015-01-15 20:15:35 +00:00
|
|
|
return false;
|
2012-06-28 15:21:26 +00:00
|
|
|
|
2015-01-15 20:15:35 +00:00
|
|
|
for (auto &it : params)
|
|
|
|
ir_call_param(callinstr, it);
|
2012-06-28 15:21:26 +00:00
|
|
|
|
|
|
|
*out = ir_call_value(callinstr);
|
2015-01-24 11:25:46 +00:00
|
|
|
self->m_outr = *out;
|
2012-06-28 15:21:26 +00:00
|
|
|
|
2012-12-01 15:39:29 +00:00
|
|
|
codegen_output_type(self, *out);
|
2012-12-01 15:11:04 +00:00
|
|
|
|
2012-06-28 15:21:26 +00:00
|
|
|
return true;
|
2012-06-28 14:15:51 +00:00
|
|
|
}
|