gmqcc/ast.cpp

3116 lines
91 KiB
C++
Raw Normal View History

2015-01-15 04:34:43 +00:00
#include <new>
2012-04-25 11:17:37 +00:00
#include <stdlib.h>
#include <string.h>
#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
#include "algo.h"
/* Initialize main ast node aprts */
ast_node::ast_node(lex_ctx_t ctx, int node_type)
2015-01-29 19:29:34 +00:00
: m_context(ctx)
, m_node_type(node_type)
, m_keep_node(false)
, m_side_effects(false)
2012-04-25 11:17:37 +00:00
{
}
ast_node::~ast_node()
2012-04-25 11:17:37 +00:00
{
}
/* weight and side effects */
2015-02-01 11:12:25 +00:00
void ast_node::propagateSideEffects(const ast_node *other)
{
2015-02-01 11:12:25 +00:00
if (other->m_side_effects)
m_side_effects = true;
2012-04-25 11:17:37 +00:00
}
/* General expression initialization */
ast_expression::ast_expression(lex_ctx_t ctx, int nodetype, qc_type type)
2015-01-29 19:29:34 +00:00
: ast_node(ctx, nodetype)
, m_vtype(type)
2012-04-25 11:17:37 +00:00
{
if (OPTS_OPTION_BOOL(OPTION_COVERAGE))
m_flags |= AST_FLAG_BLOCK_COVERAGE;
if (OPTS_FLAG(DEFAULT_ERASEABLE))
m_flags |= AST_FLAG_ERASEABLE;
}
ast_expression::ast_expression(lex_ctx_t ctx, int nodetype)
2015-01-29 19:29:34 +00:00
: ast_expression(ctx, nodetype, TYPE_VOID)
{}
ast_expression::~ast_expression()
{
if (m_next)
delete m_next;
if (m_varparam)
delete m_varparam;
}
2015-01-30 17:59:48 +00:00
ast_expression::ast_expression(ast_copy_type_t, const ast_expression &other)
: ast_expression(ast_copy_type, other.m_context, other)
{}
ast_expression::ast_expression(ast_copy_type_t, lex_ctx_t ctx, const ast_expression &other)
: ast_expression(ast_copy_type, TYPE_ast_expression, ctx, other)
{}
ast_expression::ast_expression(ast_copy_type_t, int nodetype, const ast_expression &other)
2015-01-30 17:59:48 +00:00
: ast_expression(ast_copy_type, nodetype, other.m_context, other)
{}
ast_expression::ast_expression(ast_copy_type_t, int nodetype, lex_ctx_t ctx, const ast_expression &other)
: ast_expression(ctx, nodetype)
{
m_vtype = other.m_vtype;
m_count = other.m_count;
m_flags = other.m_flags;
if (other.m_next)
2015-01-30 17:59:48 +00:00
m_next = new ast_expression(ast_copy_type, *other.m_next);
m_type_params.reserve(other.m_type_params.size());
for (auto &it : other.m_type_params)
m_type_params.emplace_back(new ast_value(ast_copy_type, *it));
}
2015-01-30 17:59:48 +00:00
ast_expression *ast_expression::shallowType(lex_ctx_t ctx, qc_type vtype) {
auto expr = new ast_expression(ctx, TYPE_ast_expression);
expr->m_vtype = vtype;
return expr;
}
2015-01-30 17:59:48 +00:00
void ast_expression::adoptType(const ast_expression &other)
{
m_vtype = other.m_vtype;
if (other.m_next)
2015-01-30 17:59:48 +00:00
m_next = new ast_expression(ast_copy_type, *other.m_next);
m_count = other.m_count;
m_flags = other.m_flags;
m_type_params.clear();
m_type_params.reserve(other.m_type_params.size());
for (auto &it : other.m_type_params)
m_type_params.emplace_back(new ast_value(ast_copy_type, *it));
}
2015-01-30 17:59:48 +00:00
bool ast_expression::compareType(const ast_expression &other) const
{
if (m_vtype == TYPE_NIL ||
other.m_vtype == TYPE_NIL)
return true;
if (m_vtype != other.m_vtype)
2012-08-14 12:14:56 +00:00
return false;
if (!m_next != !other.m_next)
2012-08-14 12:14:56 +00:00
return false;
if (m_type_params.size() != other.m_type_params.size())
2012-08-14 12:14:56 +00:00
return false;
if ((m_flags & AST_FLAG_TYPE_MASK) !=
(other.m_flags & AST_FLAG_TYPE_MASK) )
{
return false;
}
if (m_type_params.size()) {
2012-08-14 12:14:56 +00:00
size_t i;
for (i = 0; i < m_type_params.size(); ++i) {
2015-01-30 17:59:48 +00:00
if (!m_type_params[i]->compareType(*other.m_type_params[i]))
2012-08-14 12:14:56 +00:00
return false;
}
}
if (m_next)
2015-01-30 17:59:48 +00:00
return m_next->compareType(*other.m_next);
2012-08-14 12:14:56 +00:00
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_expression::codegen(ast_function*, bool, ir_value**) {
compile_error(m_context, "ast_expression::codegen called!");
abort();
return false;
}
ast_value::ast_value(ast_copy_type_t, const ast_value &other, const std::string &name)
2015-01-29 19:29:34 +00:00
: ast_value(ast_copy_type, static_cast<const ast_expression&>(other), name)
2015-01-30 17:59:48 +00:00
{
m_keep_node = true; // keep values, always
memset(&m_constval, 0, sizeof(m_constval));
}
ast_value::ast_value(ast_copy_type_t, const ast_value &other)
2015-01-29 19:29:34 +00:00
: ast_value(ast_copy_type, static_cast<const ast_expression&>(other), other.m_name)
2015-01-30 17:59:48 +00:00
{
m_keep_node = true; // keep values, always
memset(&m_constval, 0, sizeof(m_constval));
}
ast_value::ast_value(ast_copy_type_t, const ast_expression &other, const std::string &name)
2015-01-30 17:59:48 +00:00
: ast_expression(ast_copy_type, TYPE_ast_value, other)
2015-01-29 19:29:34 +00:00
, m_name(name)
2015-01-30 17:59:48 +00:00
{
m_keep_node = true; // keep values, always
memset(&m_constval, 0, sizeof(m_constval));
}
ast_value::ast_value(lex_ctx_t ctx, const std::string &name, qc_type t)
2015-01-29 19:29:34 +00:00
: ast_expression(ctx, TYPE_ast_value, t)
, m_name(name)
{
m_keep_node = true; // keep values, always
memset(&m_constval, 0, sizeof(m_constval));
}
ast_value::~ast_value()
{
if (m_argcounter)
mem_d((void*)m_argcounter);
if (m_hasvalue) {
switch (m_vtype)
{
case TYPE_STRING:
mem_d((void*)m_constval.vstring);
break;
case TYPE_FUNCTION:
// unlink us from the function node
m_constval.vfunc->m_function_type = nullptr;
break;
// NOTE: delete function? currently collected in
// the parser structure
default:
break;
}
}
// initlist imples an array which implies .next in the expression exists.
if (m_initlist.size() && m_next->m_vtype == TYPE_STRING) {
for (auto &it : m_initlist)
if (it.vstring)
mem_d(it.vstring);
}
}
static size_t ast_type_to_string_impl(const ast_expression *e, char *buf, size_t bufsize, size_t pos)
2012-10-28 19:30:55 +00:00
{
const char *typestr;
size_t typelen;
size_t i;
if (!e) {
if (pos + 6 >= bufsize)
goto full;
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:
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++] = '(';
pos = ast_type_to_string_impl(e->m_type_params[0].get(), buf, bufsize, pos);
2015-01-24 11:25:46 +00:00
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++] = ' ';
pos = ast_type_to_string_impl(e->m_type_params[i].get(), 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;
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(const ast_expression *e, char *buf, size_t bufsize)
2012-10-28 19:30:55 +00:00
{
size_t pos = ast_type_to_string_impl(e, buf, bufsize-1, 0);
buf[pos] = 0;
}
2015-01-30 17:59:48 +00:00
void ast_value::addParam(ast_value *p)
{
m_type_params.emplace_back(p);
}
ast_binary::ast_binary(lex_ctx_t ctx, int op,
ast_expression* left, ast_expression* right)
2015-01-29 19:29:34 +00:00
: ast_expression(ctx, TYPE_ast_binary)
, m_op(op)
// m_left/m_right happen after the peephole step right below
, m_right_first(false)
2012-04-25 11:17:37 +00:00
{
if (ast_istype(right, ast_unary) && OPTS_OPTIMIZATION(OPTIM_PEEPHOLE)) {
ast_unary *unary = ((ast_unary*)right);
2015-01-24 11:25:46 +00:00
ast_expression *normal = unary->m_operand;
/* 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) {
if (op == INSTR_SUB_F) {
op = m_op = INSTR_ADD_F;
right = normal;
++opts_optimizationcount[OPTIM_PEEPHOLE];
} else if (op == INSTR_SUB_V) {
op = m_op = INSTR_ADD_V;
right = normal;
++opts_optimizationcount[OPTIM_PEEPHOLE];
}
}
}
m_left = left;
m_right = right;
2012-04-25 11:17:37 +00:00
2015-01-30 17:59:48 +00:00
propagateSideEffects(left);
propagateSideEffects(right);
2012-08-12 09:36:28 +00:00
if (op >= INSTR_EQ_F && op <= INSTR_GT)
m_vtype = TYPE_FLOAT;
else if (op == INSTR_AND || op == INSTR_OR) {
if (OPTS_FLAG(PERL_LOGIC))
2015-01-30 17:59:48 +00:00
adoptType(*right);
else
m_vtype = TYPE_FLOAT;
}
else if (op == INSTR_BITAND || op == INSTR_BITOR)
m_vtype = TYPE_FLOAT;
else if (op == INSTR_MUL_VF || op == INSTR_MUL_FV)
m_vtype = TYPE_VECTOR;
else if (op == INSTR_MUL_V)
m_vtype = TYPE_FLOAT;
2012-08-12 09:36:28 +00:00
else
m_vtype = left->m_vtype;
2012-08-12 09:36:28 +00:00
// references all
m_refs = AST_REF_ALL;
2012-04-25 11:17:37 +00:00
}
ast_binary::~ast_binary()
2012-04-25 11:17:37 +00:00
{
if (m_refs & AST_REF_LEFT) ast_unref(m_left);
if (m_refs & AST_REF_RIGHT) ast_unref(m_right);
2012-04-25 11:17:37 +00:00
}
ast_binstore::ast_binstore(lex_ctx_t ctx, int storop, int mathop,
ast_expression* left, ast_expression* right)
2015-01-29 19:29:34 +00:00
: ast_expression(ctx, TYPE_ast_binstore)
, m_opstore(storop)
, m_opbin(mathop)
, m_dest(left)
, m_source(right)
, m_keep_dest(false)
{
m_side_effects = true;
2015-01-30 17:59:48 +00:00
adoptType(*left);
}
ast_binstore::~ast_binstore()
{
if (!m_keep_dest)
ast_unref(m_dest);
ast_unref(m_source);
}
ast_unary* ast_unary::make(lex_ctx_t ctx, int op, ast_expression *expr)
2012-07-26 18:45:18 +00:00
{
// handle double negation, double bitwise or logical not
if (op == opid2('!','P') ||
op == opid2('~','P') ||
op == opid2('-','P'))
{
if (ast_istype(expr, ast_unary) && OPTS_OPTIMIZATION(OPTIM_PEEPHOLE)) {
ast_unary *unary = reinterpret_cast<ast_unary*>(expr);
if (unary->m_op == op) {
auto out = reinterpret_cast<ast_unary*>(unary->m_operand);
unary->m_operand = nullptr;
delete unary;
++opts_optimizationcount[OPTIM_PEEPHOLE];
return out;
}
2013-09-28 10:33:15 +00:00
}
}
return new ast_unary(ctx, op, expr);
}
ast_unary::ast_unary(lex_ctx_t ctx, int op, ast_expression *expr)
2015-01-29 19:29:34 +00:00
: ast_expression(ctx, TYPE_ast_unary)
, m_op(op)
, m_operand(expr)
{
2015-01-30 17:59:48 +00:00
propagateSideEffects(expr);
if ((op >= INSTR_NOT_F && op <= INSTR_NOT_FNC) || op == VINSTR_NEG_F) {
m_vtype = TYPE_FLOAT;
} else if (op == VINSTR_NEG_V) {
m_vtype = TYPE_VECTOR;
} else {
2013-07-28 00:23:15 +00:00
compile_error(ctx, "cannot determine type of unary operation %s", util_instr_str[op]);
}
2012-07-26 18:45:18 +00:00
}
ast_unary::~ast_unary()
2012-07-26 18:45:18 +00:00
{
if (m_operand)
ast_unref(m_operand);
2012-07-26 18:45:18 +00:00
}
ast_return::ast_return(lex_ctx_t ctx, ast_expression *expr)
2015-01-29 19:29:34 +00:00
: ast_expression(ctx, TYPE_ast_return)
, m_operand(expr)
2012-07-26 19:18:39 +00:00
{
if (expr)
2015-01-30 17:59:48 +00:00
propagateSideEffects(expr);
2012-07-26 19:18:39 +00:00
}
ast_return::~ast_return()
2012-07-26 19:18:39 +00:00
{
if (m_operand)
ast_unref(m_operand);
2012-07-26 19:18:39 +00:00
}
ast_entfield::ast_entfield(lex_ctx_t ctx, ast_expression *entity, ast_expression *field)
2015-01-29 19:29:34 +00:00
: ast_entfield(ctx, entity, field, field->m_next)
2012-05-01 13:08:54 +00:00
{
if (field->m_vtype != TYPE_FIELD)
compile_error(ctx, "ast_entfield with expression not of type field");
}
ast_entfield::ast_entfield(lex_ctx_t ctx, ast_expression *entity, ast_expression *field, const ast_expression *outtype)
2015-01-29 19:29:34 +00:00
: ast_expression(ctx, TYPE_ast_entfield)
, m_entity(entity)
, m_field(field)
{
2015-01-30 17:59:48 +00:00
propagateSideEffects(m_entity);
propagateSideEffects(m_field);
if (!outtype) {
compile_error(ctx, "ast_entfield: field has no type");
m_vtype = TYPE_VOID;
}
else
2015-01-30 17:59:48 +00:00
adoptType(*outtype);
2012-05-01 13:08:54 +00:00
}
ast_entfield::~ast_entfield()
2012-05-01 13:08:54 +00:00
{
ast_unref(m_entity);
ast_unref(m_field);
2012-05-01 13:08:54 +00:00
}
2015-01-29 19:29:34 +00:00
ast_member *ast_member::make(lex_ctx_t ctx, ast_expression *owner, unsigned int field, const std::string &name)
{
if (field >= 3) {
2015-01-29 19:29:34 +00:00
compile_error(ctx, "ast_member: invalid field (>=3): %u", field);
2015-01-15 20:18:33 +00:00
return nullptr;
}
2015-01-24 11:25:46 +00:00
if (owner->m_vtype != TYPE_VECTOR &&
2015-01-29 19:29:34 +00:00
owner->m_vtype != TYPE_FIELD)
{
2015-01-24 11:25:46 +00:00
compile_error(ctx, "member-access on an invalid owner of type %s", type_name[owner->m_vtype]);
2015-01-15 20:18:33 +00:00
return nullptr;
}
2015-01-29 19:29:34 +00:00
return new ast_member(ctx, owner, field, name);
}
2015-01-29 19:29:34 +00:00
ast_member::ast_member(lex_ctx_t ctx, ast_expression *owner, unsigned int field, const std::string &name)
: ast_expression(ctx, TYPE_ast_member)
, m_owner(owner)
, m_field(field)
, m_name(name)
, m_rvalue(false)
{
m_keep_node = true;
2015-01-29 19:29:34 +00:00
if (m_owner->m_vtype == TYPE_VECTOR) {
m_vtype = TYPE_FLOAT;
m_next = nullptr;
} else {
2015-01-29 19:29:34 +00:00
m_vtype = TYPE_FIELD;
2015-01-30 17:59:48 +00:00
m_next = ast_expression::shallowType(ctx, TYPE_FLOAT);
}
2015-01-30 17:59:48 +00:00
propagateSideEffects(owner);
}
2015-01-29 19:29:34 +00:00
ast_member::~ast_member()
{
2015-01-29 19:29:34 +00:00
// The owner is always an ast_value, which has .keep_node=true,
// also: ast_members are usually deleted after the owner, thus
// this will cause invalid access
//ast_unref(self->m_owner);
// 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.
}
2015-01-29 19:29:34 +00:00
ast_array_index* ast_array_index::make(lex_ctx_t ctx, ast_expression *array, ast_expression *index)
{
2015-01-29 19:29:34 +00:00
ast_expression *outtype = array->m_next;
2012-11-11 15:06:27 +00:00
if (!outtype) {
2015-01-29 19:29:34 +00:00
// field has no type
2015-01-15 20:18:33 +00:00
return nullptr;
2012-11-11 15:06:27 +00:00
}
2015-01-29 19:29:34 +00:00
return new ast_array_index(ctx, array, index);
}
2012-11-11 15:06:27 +00:00
2015-01-29 19:29:34 +00:00
ast_array_index::ast_array_index(lex_ctx_t ctx, ast_expression *array, ast_expression *index)
: ast_expression(ctx, TYPE_ast_array_index)
, m_array(array)
, m_index(index)
{
2015-01-30 17:59:48 +00:00
propagateSideEffects(array);
propagateSideEffects(index);
2015-01-29 19:29:34 +00:00
ast_expression *outtype = m_array->m_next;
2015-01-30 17:59:48 +00:00
adoptType(*outtype);
2012-11-11 15:06:27 +00:00
2015-01-24 11:25:46 +00:00
if (array->m_vtype == TYPE_FIELD && outtype->m_vtype == TYPE_ARRAY) {
2015-01-30 17:59:48 +00:00
// FIXME: investigate - this is not possible after adoptType
2015-01-29 19:29:34 +00:00
//if (m_vtype != TYPE_ARRAY) {
// compile_error(self->m_context, "array_index node on type");
// ast_array_index_delete(self);
// return nullptr;
//}
m_array = outtype;
m_vtype = TYPE_FIELD;
2012-11-12 22:35:47 +00:00
}
2015-01-29 19:29:34 +00:00
}
2012-11-11 15:06:27 +00:00
2015-01-29 19:29:34 +00:00
ast_array_index::~ast_array_index()
{
if (m_array)
ast_unref(m_array);
if (m_index)
ast_unref(m_index);
2012-11-11 15:06:27 +00:00
}
2015-01-29 19:29:34 +00:00
ast_argpipe::ast_argpipe(lex_ctx_t ctx, ast_expression *index)
: ast_expression(ctx, TYPE_ast_argpipe)
, m_index(index)
2012-11-11 15:06:27 +00:00
{
2015-01-29 19:29:34 +00:00
m_vtype = TYPE_NOEXPR;
2012-11-11 15:06:27 +00:00
}
2015-01-29 19:29:34 +00:00
ast_argpipe::~ast_argpipe()
{
2015-01-29 19:29:34 +00:00
if (m_index)
ast_unref(m_index);
}
2015-01-29 19:29:34 +00:00
ast_store::ast_store(lex_ctx_t ctx, int op, ast_expression *dest, ast_expression *source)
: ast_expression(ctx, TYPE_ast_store)
, m_op(op)
, m_dest(dest)
, m_source(source)
{
2015-01-29 19:29:34 +00:00
m_side_effects = true;
2015-01-30 17:59:48 +00:00
adoptType(*dest);
}
2015-01-29 19:29:34 +00:00
ast_store::~ast_store()
{
2015-01-29 19:29:34 +00:00
ast_unref(m_dest);
ast_unref(m_source);
}
2015-01-29 19:29:34 +00:00
ast_ifthen::ast_ifthen(lex_ctx_t ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
: ast_expression(ctx, TYPE_ast_ifthen)
, m_cond(cond)
, m_on_true(ontrue)
, m_on_false(onfalse)
{
2015-01-30 17:59:48 +00:00
propagateSideEffects(cond);
if (ontrue)
2015-01-30 17:59:48 +00:00
propagateSideEffects(ontrue);
if (onfalse)
2015-01-30 17:59:48 +00:00
propagateSideEffects(onfalse);
}
2015-01-29 19:29:34 +00:00
ast_ifthen::~ast_ifthen()
{
2015-01-29 19:29:34 +00:00
ast_unref(m_cond);
if (m_on_true)
ast_unref(m_on_true);
if (m_on_false)
ast_unref(m_on_false);
}
2015-01-29 19:29:34 +00:00
ast_ternary::ast_ternary(lex_ctx_t ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse)
: ast_expression(ctx, TYPE_ast_ternary)
, m_cond(cond)
, m_on_true(ontrue)
, m_on_false(onfalse)
{
2015-01-30 17:59:48 +00:00
propagateSideEffects(cond);
propagateSideEffects(ontrue);
propagateSideEffects(onfalse);
2015-01-24 11:25:46 +00:00
if (ontrue->m_vtype == TYPE_NIL)
2015-01-30 17:59:48 +00:00
adoptType(*onfalse);
2015-01-29 19:29:34 +00:00
else
2015-01-30 17:59:48 +00:00
adoptType(*ontrue);
}
2015-01-29 19:29:34 +00:00
ast_ternary::~ast_ternary()
{
/* the if()s are only there because computed-gotos can set them
2015-01-15 20:18:33 +00:00
* to nullptr
*/
2015-01-29 19:29:34 +00:00
if (m_cond) ast_unref(m_cond);
if (m_on_true) ast_unref(m_on_true);
if (m_on_false) ast_unref(m_on_false);
}
ast_loop::ast_loop(lex_ctx_t ctx,
ast_expression *initexpr,
ast_expression *precond, bool pre_not,
ast_expression *postcond, bool post_not,
ast_expression *increment,
ast_expression *body)
2015-01-30 17:59:48 +00:00
: ast_expression(ctx, TYPE_ast_loop)
2015-01-29 19:29:34 +00:00
, m_initexpr(initexpr)
, m_precond(precond)
, m_postcond(postcond)
, m_increment(increment)
, m_body(body)
, m_pre_not(pre_not)
, m_post_not(post_not)
2012-05-03 19:57:13 +00:00
{
if (initexpr)
2015-01-30 17:59:48 +00:00
propagateSideEffects(initexpr);
if (precond)
2015-01-30 17:59:48 +00:00
propagateSideEffects(precond);
if (postcond)
2015-01-30 17:59:48 +00:00
propagateSideEffects(postcond);
if (increment)
2015-01-30 17:59:48 +00:00
propagateSideEffects(increment);
if (body)
2015-01-30 17:59:48 +00:00
propagateSideEffects(body);
2012-05-03 19:57:13 +00:00
}
2015-01-29 19:29:34 +00:00
ast_loop::~ast_loop()
2012-05-03 19:57:13 +00:00
{
2015-01-29 19:29:34 +00:00
if (m_initexpr)
ast_unref(m_initexpr);
if (m_precond)
ast_unref(m_precond);
if (m_postcond)
ast_unref(m_postcond);
if (m_increment)
ast_unref(m_increment);
if (m_body)
ast_unref(m_body);
2012-05-03 19:57:13 +00:00
}
2015-01-30 17:59:48 +00:00
ast_breakcont::ast_breakcont(lex_ctx_t ctx, bool iscont, unsigned int levels)
: ast_expression(ctx, TYPE_ast_breakcont)
, m_is_continue(iscont)
, m_levels(levels)
2012-11-19 18:39:52 +00:00
{
}
2015-01-30 17:59:48 +00:00
ast_breakcont::~ast_breakcont()
2012-11-19 18:39:52 +00:00
{
}
2015-01-30 17:59:48 +00:00
ast_switch::ast_switch(lex_ctx_t ctx, ast_expression *op)
: ast_expression(ctx, TYPE_ast_switch)
, m_operand(op)
2012-11-19 20:17:44 +00:00
{
2015-01-30 17:59:48 +00:00
propagateSideEffects(op);
2012-11-19 20:17:44 +00:00
}
2015-01-30 17:59:48 +00:00
ast_switch::~ast_switch()
2012-11-19 20:17:44 +00:00
{
2015-01-30 17:59:48 +00:00
ast_unref(m_operand);
2012-11-19 20:17:44 +00:00
2015-01-30 17:59:48 +00:00
for (auto &it : m_cases) {
2015-01-24 11:25:46 +00:00
if (it.m_value)
ast_unref(it.m_value);
ast_unref(it.m_code);
2012-11-19 20:17:44 +00:00
}
}
2015-01-30 17:59:48 +00:00
ast_label::ast_label(lex_ctx_t ctx, const std::string &name, bool undefined)
: ast_expression(ctx, TYPE_ast_label)
, m_name(name)
, m_irblock(nullptr)
, m_undefined(undefined)
{
2015-01-30 17:59:48 +00:00
m_vtype = TYPE_NOEXPR;
}
2015-01-30 17:59:48 +00:00
ast_label::~ast_label()
{
}
2015-01-30 17:59:48 +00:00
void ast_label::registerGoto(ast_goto *g)
{
2015-01-30 17:59:48 +00:00
m_gotos.push_back(g);
}
2015-01-30 17:59:48 +00:00
ast_goto::ast_goto(lex_ctx_t ctx, const std::string &name)
: ast_expression(ctx, TYPE_ast_goto)
, m_name(name)
, m_target(nullptr)
, m_irblock_from(nullptr)
{
}
2015-01-30 17:59:48 +00:00
ast_goto::~ast_goto()
{
}
2015-01-30 17:59:48 +00:00
void ast_goto::setLabel(ast_label *label)
2012-11-25 20:53:14 +00:00
{
2015-01-30 17:59:48 +00:00
m_target = label;
2012-11-25 20:53:14 +00:00
}
2015-01-30 17:59:48 +00:00
ast_state::ast_state(lex_ctx_t ctx, ast_expression *frame, ast_expression *think)
: ast_expression(ctx, TYPE_ast_expression)
, m_framenum(frame)
, m_nextthink(think)
{
}
2015-01-30 17:59:48 +00:00
ast_state::~ast_state()
{
2015-01-30 17:59:48 +00:00
if (m_framenum)
ast_unref(m_framenum);
if (m_nextthink)
ast_unref(m_nextthink);
}
2015-01-30 17:59:48 +00:00
ast_call *ast_call::make(lex_ctx_t ctx, ast_expression *funcexpr)
2012-06-28 14:15:51 +00:00
{
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");
2015-01-15 20:18:33 +00:00
return nullptr;
2013-01-16 19:32:37 +00:00
}
2015-01-30 17:59:48 +00:00
return new ast_call(ctx, funcexpr);
}
2015-01-30 17:59:48 +00:00
ast_call::ast_call(lex_ctx_t ctx, ast_expression *funcexpr)
: ast_expression(ctx, TYPE_ast_call)
, m_func(funcexpr)
, m_va_count(nullptr)
{
m_side_effects = true;
adoptType(*funcexpr->m_next);
2012-06-28 14:15:51 +00:00
}
2015-01-30 17:59:48 +00:00
ast_call::~ast_call()
2012-06-28 14:15:51 +00:00
{
2015-01-30 17:59:48 +00:00
for (auto &it : m_params)
2015-01-15 04:45:00 +00:00
ast_unref(it);
2012-06-28 14:15:51 +00:00
2015-01-30 17:59:48 +00:00
if (m_func)
ast_unref(m_func);
2012-06-28 14:15:51 +00:00
2015-01-30 17:59:48 +00:00
if (m_va_count)
ast_unref(m_va_count);
2012-06-28 14:15:51 +00:00
}
2015-01-30 17:59:48 +00:00
bool ast_call::checkVararg(ast_expression *va_type, ast_expression *exp_type) const
{
char texp[1024];
char tgot[1024];
if (!exp_type)
return true;
2015-01-30 17:59:48 +00:00
if (!va_type || !va_type->compareType(*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-30 17:59:48 +00:00
if (compile_warning(m_context, WARN_UNSAFE_TYPES,
"piped variadic argument differs in type: constrained to type %s, expected type %s",
tgot, texp))
return false;
} else {
2015-01-30 17:59:48 +00:00
compile_error(m_context,
"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-30 17:59:48 +00:00
if (compile_warning(m_context, WARN_UNSAFE_TYPES,
"piped variadic argument may differ in type: expected type %s",
texp))
return false;
} else {
2015-01-30 17:59:48 +00:00
compile_error(m_context,
"piped variadic argument may differ in type: expected type %s",
texp);
return false;
}
}
}
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_call::checkTypes(ast_expression *va_type) const
{
2013-01-12 10:10:29 +00:00
char texp[1024];
char tgot[1024];
size_t i;
2015-01-15 04:34:43 +00:00
bool retval = true;
2015-01-30 17:59:48 +00:00
size_t count = m_params.size();
if (count > m_func->m_type_params.size())
count = m_func->m_type_params.size();
for (i = 0; i < count; ++i) {
2015-01-30 17:59:48 +00:00
if (ast_istype(m_params[i], ast_argpipe)) {
2013-06-15 07:49:15 +00:00
/* warn about type safety instead */
if (i+1 != count) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "argpipe must be the last parameter to a function call");
return false;
}
2015-01-30 17:59:48 +00:00
if (!checkVararg(va_type, m_func->m_type_params[i].get()))
retval = false;
}
2015-01-30 17:59:48 +00:00
else if (!m_params[i]->compareType(*m_func->m_type_params[i]))
2012-12-31 10:30:02 +00:00
{
2015-01-30 17:59:48 +00:00
ast_type_to_string(m_params[i], tgot, sizeof(tgot));
ast_type_to_string(m_func->m_type_params[i].get(), texp, sizeof(texp));
compile_error(m_context, "invalid type for parameter %u in function call: expected %s, got %s",
(unsigned int)(i+1), texp, tgot);
/* we don't immediately return */
retval = false;
}
}
2015-01-30 17:59:48 +00:00
count = m_params.size();
if (count > m_func->m_type_params.size() && m_func->m_varparam) {
2013-01-12 10:10:29 +00:00
for (; i < count; ++i) {
2015-01-30 17:59:48 +00:00
if (ast_istype(m_params[i], ast_argpipe)) {
2013-06-15 07:49:15 +00:00
/* warn about type safety instead */
if (i+1 != count) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "argpipe must be the last parameter to a function call");
return false;
}
2015-01-30 17:59:48 +00:00
if (!checkVararg(va_type, m_func->m_varparam))
retval = false;
}
2015-01-30 17:59:48 +00:00
else if (!m_params[i]->compareType(*m_func->m_varparam))
2013-01-12 10:10:29 +00:00
{
2015-01-30 17:59:48 +00:00
ast_type_to_string(m_params[i], tgot, sizeof(tgot));
ast_type_to_string(m_func->m_varparam, texp, sizeof(texp));
compile_error(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;
}
}
}
return retval;
}
2015-01-30 17:59:48 +00:00
ast_block::ast_block(lex_ctx_t ctx)
: ast_expression(ctx, TYPE_ast_block)
2012-04-25 11:17:37 +00:00
{
}
2015-01-30 17:59:48 +00:00
ast_block::~ast_block()
{
2015-01-30 17:59:48 +00:00
for (auto &it : m_exprs) ast_unref(it);
for (auto &it : m_locals) delete it;
for (auto &it : m_collect) delete it;
}
2015-01-30 17:59:48 +00:00
void ast_block::setType(const ast_expression &from)
{
2015-01-30 17:59:48 +00:00
if (m_next)
delete m_next;
adoptType(from);
}
2015-01-30 17:59:48 +00:00
bool ast_block::addExpr(ast_expression *e)
2012-04-25 11:17:37 +00:00
{
2015-01-30 17:59:48 +00:00
propagateSideEffects(e);
m_exprs.push_back(e);
if (m_next) {
delete m_next;
m_next = nullptr;
}
adoptType(*e);
return true;
2012-04-25 11:17:37 +00:00
}
2015-01-30 17:59:48 +00:00
void ast_block::collect(ast_expression *expr)
2012-07-27 11:39:58 +00:00
{
2015-01-30 17:59:48 +00:00
m_collect.push_back(expr);
expr->m_keep_node = true;
2012-07-27 11:39:58 +00:00
}
2015-01-30 17:59:48 +00:00
ast_function *ast_function::make(lex_ctx_t ctx, const std::string &name, ast_value *vtype)
2012-04-25 11:17:37 +00:00
{
2013-06-21 23:21:12 +00:00
if (!vtype) {
2015-01-30 17:59:48 +00:00
compile_error(ctx, "internal error: ast_function_new condition 0");
return nullptr;
2015-01-24 11:25:46 +00:00
} else if (vtype->m_hasvalue || vtype->m_vtype != TYPE_FUNCTION) {
2015-01-30 17:59:48 +00:00
compile_error(ctx, "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);
2015-01-30 17:59:48 +00:00
return nullptr;
}
2015-01-30 17:59:48 +00:00
return new ast_function(ctx, name, vtype);
}
2015-01-30 17:59:48 +00:00
ast_function::ast_function(lex_ctx_t ctx, const std::string &name, ast_value *vtype)
: ast_node(ctx, TYPE_ast_function)
, m_function_type(vtype)
, m_name(name)
, m_builtin(0)
, m_static_count(0)
, m_ir_func(nullptr)
, m_curblock(nullptr)
, m_labelcount(0)
, m_varargs(nullptr)
, m_argc(nullptr)
, m_fixedparams(nullptr)
, m_return_value(nullptr)
{
2015-01-24 11:25:46 +00:00
vtype->m_hasvalue = true;
2015-01-30 17:59:48 +00:00
vtype->m_constval.vfunc = this;
}
2015-01-30 17:59:48 +00:00
ast_function::~ast_function()
{
if (m_function_type) {
// ast_value_delete(m_function_type);
m_function_type->m_hasvalue = false;
m_function_type->m_constval.vfunc = nullptr;
// We use unref - if it was stored in a global table it is supposed
// to be deleted from *there*
ast_unref(m_function_type);
}
2013-07-27 11:48:55 +00:00
2015-01-30 17:59:48 +00:00
if (m_fixedparams)
ast_unref(m_fixedparams);
if (m_return_value)
ast_unref(m_return_value);
// force this to be cleared before m_varargs/m_argc as blocks might
// try to access them via ast_unref()
m_blocks.clear();
2012-04-25 11:17:37 +00:00
}
2015-01-30 17:59:48 +00:00
const char* ast_function::makeLabel(const char *prefix)
{
size_t id;
size_t len;
char *from;
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
}
2015-01-30 17:59:48 +00:00
id = (m_labelcount++);
len = strlen(prefix);
2015-01-30 17:59:48 +00:00
from = m_labelbuf + sizeof(m_labelbuf)-1;
*from-- = 0;
do {
2012-12-20 22:27:23 +00:00
*from-- = (id%10) + '0';
id /= 10;
} while (id);
2012-12-20 22:27:23 +00:00
++from;
memcpy(from - len, prefix, len);
return from - len;
}
2012-04-25 11:24:25 +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'
* 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
*/
2015-01-30 17:59:48 +00:00
static void codegen_output_type(ast_expression *self, ir_value *out)
{
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;
}
2015-01-30 17:59:48 +00:00
bool ast_value::codegen(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-30 17:59:48 +00:00
if (m_vtype == TYPE_NIL) {
2015-01-24 11:25:46 +00:00
*out = func->m_ir_func->m_owner->m_nil;
return true;
}
2015-01-30 17:59:48 +00:00
// NOTE: This is the codegen for a variable used in an expression.
// It is not the codegen to generate the value storage. For this purpose,
// generateLocal and generateGlobal are to be used before this
// is executed. ast_function::generateFunction should take care of its
// locals, and the ast-user should take care of generateGlobal to be used
// on all the globals.
if (!m_ir_v) {
char tname[1024]; /* typename is reserved in C++ */
2015-01-30 17:59:48 +00:00
ast_type_to_string(this, tname, sizeof(tname));
compile_error(m_context, "ast_value used before generated %s %s", tname, m_name);
return false;
2012-07-04 13:00:30 +00:00
}
2015-01-30 17:59:48 +00:00
*out = m_ir_v;
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_value::setGlobalArray()
2013-06-12 12:32:34 +00:00
{
2015-01-30 17:59:48 +00:00
size_t count = m_initlist.size();
2013-06-12 12:32:34 +00:00
size_t i;
2015-01-30 17:59:48 +00:00
if (count > m_count) {
compile_error(m_context, "too many elements in initializer");
count = m_count;
}
2015-01-30 17:59:48 +00:00
else if (count < m_count) {
/* add this?
2015-01-30 17:59:48 +00:00
compile_warning(m_context, "not all elements are initialized");
*/
}
2013-06-12 12:32:34 +00:00
for (i = 0; i != count; ++i) {
2015-01-30 17:59:48 +00:00
switch (m_next->m_vtype) {
2013-06-12 12:32:34 +00:00
case TYPE_FLOAT:
if (!m_ir_values[i]->setFloat(m_initlist[i].vfloat))
2013-06-12 12:32:34 +00:00
return false;
break;
case TYPE_VECTOR:
if (!m_ir_values[i]->setVector(m_initlist[i].vvec))
2013-06-12 12:32:34 +00:00
return false;
break;
case TYPE_STRING:
if (!m_ir_values[i]->setString(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-30 17:59:48 +00:00
compile_error(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-30 17:59:48 +00:00
compile_error(m_context, "global of type function not properly generated");
2013-06-12 12:32:34 +00:00
return false;
case TYPE_FIELD:
2015-01-30 17:59:48 +00:00
if (!m_initlist[i].vfield) {
compile_error(m_context, "field constant without vfield set");
2013-06-12 12:32:34 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
if (!m_initlist[i].vfield->m_ir_v) {
compile_error(m_context, "field constant generated before its field");
2013-06-12 12:32:34 +00:00
return false;
}
if (!m_ir_values[i]->setField(m_initlist[i].vfield->m_ir_v))
2013-06-12 12:32:34 +00:00
return false;
break;
default:
2015-01-30 17:59:48 +00:00
compile_error(m_context, "TODO: global constant type %i", m_vtype);
2013-06-12 12:32:34 +00:00
break;
}
}
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_value::checkArray(const ast_value &array) const
{
2015-01-30 17:59:48 +00:00
if (array.m_flags & AST_FLAG_ARRAY_INIT && array.m_initlist.empty()) {
compile_error(m_context, "array without size: %s", m_name);
return false;
}
2015-01-30 17:59:48 +00:00
// we are lame now - considering the way QC works we won't tolerate arrays > 1024 elements
if (!array.m_count || array.m_count > OPTS_OPTION_U32(OPTION_MAX_ARRAY_SIZE)) {
compile_error(m_context, "Invalid array of size %lu", (unsigned long)array.m_count);
return false;
}
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_value::generateGlobal(ir_builder *ir, bool isfield)
{
2015-01-30 17:59:48 +00:00
if (m_vtype == TYPE_NIL) {
compile_error(m_context, "internal error: trying to generate a variable of TYPE_NIL");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_hasvalue && m_vtype == TYPE_FUNCTION)
return generateGlobalFunction(ir);
2015-01-30 17:59:48 +00:00
if (isfield && m_vtype == TYPE_FIELD)
return generateGlobalField(ir);
2012-11-12 19:33:49 +00:00
2015-01-30 17:59:48 +00:00
ir_value *v = nullptr;
if (m_vtype == TYPE_ARRAY) {
v = prepareGlobalArray(ir);
if (!v)
return false;
} else {
// Arrays don't do this since there's no "array" value which spans across the
// whole thing.
v = ir->createGlobal(m_name, m_vtype);
2015-01-30 17:59:48 +00:00
if (!v) {
compile_error(m_context, "ir_builder::createGlobal failed on `%s`", m_name);
2015-01-30 17:59:48 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
codegen_output_type(this, v);
v->m_context = m_context;
}
2012-11-12 19:33:49 +00:00
2015-01-30 17:59:48 +00:00
/* link us to the ir_value */
v->m_cvq = m_cvq;
m_ir_v = v;
2012-11-12 19:33:49 +00:00
2015-01-30 17:59:48 +00:00
if (m_flags & AST_FLAG_INCLUDE_DEF)
m_ir_v->m_flags |= IR_FLAG_INCLUDE_DEF;
if (m_flags & AST_FLAG_ERASEABLE && !(m_flags & AST_FLAG_NOERASE))
2015-01-30 17:59:48 +00:00
m_ir_v->m_flags |= IR_FLAG_ERASABLE;
if (m_flags & AST_FLAG_NOREF)
m_ir_v->m_flags |= IR_FLAG_NOREF;
2012-11-12 19:33:49 +00:00
2015-01-30 17:59:48 +00:00
/* initialize */
if (m_hasvalue) {
switch (m_vtype)
{
case TYPE_FLOAT:
if (!v->setFloat(m_constval.vfloat))
2015-01-30 17:59:48 +00:00
return false;
break;
case TYPE_VECTOR:
if (!v->setVector(m_constval.vvec))
2015-01-30 17:59:48 +00:00
return false;
break;
case TYPE_STRING:
if (!v->setString(m_constval.vstring))
2015-01-30 17:59:48 +00:00
return false;
break;
case TYPE_ARRAY:
if (!setGlobalArray())
return false;
break;
case TYPE_FUNCTION:
compile_error(m_context, "global of type function not properly generated");
2012-11-12 19:33:49 +00:00
return false;
2015-01-30 17:59:48 +00:00
/* Cannot generate an IR value for a function,
* need a pointer pointing to a function rather.
*/
case TYPE_FIELD:
if (!m_constval.vfield) {
compile_error(m_context, "field constant without vfield set");
2012-11-12 19:33:49 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
if (!m_constval.vfield->m_ir_v) {
compile_error(m_context, "field constant generated before its field");
return false;
}
if (!v->setField(m_constval.vfield->m_ir_v))
2015-01-30 17:59:48 +00:00
return false;
break;
default:
compile_error(m_context, "TODO: global constant type %i", m_vtype);
break;
2012-11-12 19:33:49 +00:00
}
}
2015-01-30 17:59:48 +00:00
return true;
}
bool ast_value::generateGlobalFunction(ir_builder *ir)
{
ir_function *func = ir->createFunction(m_name, m_next->m_vtype);
2015-01-30 17:59:48 +00:00
if (!func)
return false;
func->m_context = m_context;
func->m_value->m_context = m_context;
2012-11-11 11:14:44 +00:00
2015-01-30 17:59:48 +00:00
m_constval.vfunc->m_ir_func = func;
m_ir_v = func->m_value;
if (m_flags & AST_FLAG_INCLUDE_DEF)
m_ir_v->m_flags |= IR_FLAG_INCLUDE_DEF;
if (m_flags & AST_FLAG_ERASEABLE && !(m_flags & AST_FLAG_NOERASE))
2015-01-30 17:59:48 +00:00
m_ir_v->m_flags |= IR_FLAG_ERASABLE;
if (m_flags & AST_FLAG_BLOCK_COVERAGE)
func->m_flags |= IR_FLAG_BLOCK_COVERAGE;
// The function is filled later on ast_function::generateFunction...
return true;
}
2012-11-11 22:31:57 +00:00
2015-01-30 17:59:48 +00:00
bool ast_value::generateGlobalField(ir_builder *ir)
{
ast_expression *fieldtype = m_next;
if (m_hasvalue) {
compile_error(m_context, "TODO: constant field pointers with value");
return false;
}
if (fieldtype->m_vtype == TYPE_ARRAY) {
if (!ast_istype(fieldtype, ast_value)) {
compile_error(m_context, "internal error: ast_value required");
return false;
}
2015-01-30 17:59:48 +00:00
ast_value *array = reinterpret_cast<ast_value*>(fieldtype);
2015-01-30 17:59:48 +00:00
if (!checkArray(*array))
return false;
2012-11-11 11:14:44 +00:00
2015-01-30 17:59:48 +00:00
ast_expression *elemtype = array->m_next;
qc_type vtype = elemtype->m_vtype;
ir_value *v = ir->createField(m_name, vtype);
2012-11-11 11:14:44 +00:00
if (!v) {
compile_error(m_context, "ir_builder::createGlobal failed on `%s`", m_name);
2012-11-11 11:14:44 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
v->m_context = m_context;
2015-01-24 11:25:46 +00:00
v->m_unique_life = true;
v->m_locked = true;
2015-01-30 17:59:48 +00:00
array->m_ir_v = m_ir_v = v;
if (m_flags & AST_FLAG_INCLUDE_DEF)
m_ir_v->m_flags |= IR_FLAG_INCLUDE_DEF;
if (m_flags & AST_FLAG_ERASEABLE && !(m_flags & AST_FLAG_NOERASE))
2015-01-30 17:59:48 +00:00
m_ir_v->m_flags |= IR_FLAG_ERASABLE;
if (m_flags & AST_FLAG_NOREF)
m_ir_v->m_flags |= IR_FLAG_NOREF;
2015-01-30 17:59:48 +00:00
const size_t namelen = m_name.length();
std::unique_ptr<char[]> name(new char[namelen+16]);
util_strncpy(name.get(), m_name.c_str(), namelen);
array->m_ir_values.resize(array->m_count);
array->m_ir_values[0] = v;
for (size_t ai = 1; ai < array->m_count; ++ai) {
util_snprintf(name.get() + namelen, 16, "[%u]", (unsigned int)ai);
array->m_ir_values[ai] = ir->createField(name.get(), vtype);
2015-01-30 17:59:48 +00:00
if (!array->m_ir_values[ai]) {
compile_error(m_context, "ir_builder::createGlobal failed on `%s`", name.get());
2012-11-11 11:14:44 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
array->m_ir_values[ai]->m_context = m_context;
array->m_ir_values[ai]->m_unique_life = true;
array->m_ir_values[ai]->m_locked = true;
if (m_flags & AST_FLAG_INCLUDE_DEF)
array->m_ir_values[ai]->m_flags |= IR_FLAG_INCLUDE_DEF;
if (m_flags & AST_FLAG_NOREF)
array->m_ir_values[ai]->m_flags |= IR_FLAG_NOREF;
}
}
else
{
ir_value *v = ir->createField(m_name, m_next->m_vtype);
2015-01-30 17:59:48 +00:00
if (!v)
return false;
2015-01-30 17:59:48 +00:00
v->m_context = m_context;
m_ir_v = v;
if (m_flags & AST_FLAG_INCLUDE_DEF)
m_ir_v->m_flags |= IR_FLAG_INCLUDE_DEF;
if (m_flags & AST_FLAG_ERASEABLE && !(m_flags & AST_FLAG_NOERASE))
2015-01-30 17:59:48 +00:00
m_ir_v->m_flags |= IR_FLAG_ERASABLE;
if (m_flags & AST_FLAG_NOREF)
m_ir_v->m_flags |= IR_FLAG_NOREF;
2012-08-12 09:36:28 +00:00
}
2015-01-30 17:59:48 +00:00
return true;
}
2015-01-30 17:59:48 +00:00
ir_value *ast_value::prepareGlobalArray(ir_builder *ir)
{
ast_expression *elemtype = m_next;
qc_type vtype = elemtype->m_vtype;
2015-01-30 17:59:48 +00:00
if (m_flags & AST_FLAG_ARRAY_INIT && !m_count) {
compile_error(m_context, "array `%s' has no size", m_name);
return nullptr;
}
2013-06-12 12:32:34 +00:00
2015-01-30 17:59:48 +00:00
/* same as with field arrays */
if (!checkArray(*this))
return nullptr;
ir_value *v = ir->createGlobal(m_name, vtype);
2015-01-30 17:59:48 +00:00
if (!v) {
compile_error(m_context, "ir_builder::createGlobal failed `%s`", m_name);
2015-01-30 17:59:48 +00:00
return nullptr;
}
v->m_context = m_context;
v->m_unique_life = true;
v->m_locked = true;
if (m_flags & AST_FLAG_INCLUDE_DEF)
v->m_flags |= IR_FLAG_INCLUDE_DEF;
if (m_flags & AST_FLAG_ERASEABLE && !(m_flags & AST_FLAG_NOERASE))
v->m_flags |= IR_FLAG_ERASABLE;
if (m_flags & AST_FLAG_NOREF)
v->m_flags |= IR_FLAG_NOREF;
2015-01-30 17:59:48 +00:00
const size_t namelen = m_name.length();
std::unique_ptr<char[]> name(new char[namelen+16]);
util_strncpy(name.get(), m_name.c_str(), namelen);
m_ir_values.resize(m_count);
m_ir_values[0] = v;
for (size_t ai = 1; ai < m_count; ++ai) {
util_snprintf(name.get() + namelen, 16, "[%u]", (unsigned int)ai);
m_ir_values[ai] = ir->createGlobal(name.get(), vtype);
2015-01-30 17:59:48 +00:00
if (!m_ir_values[ai]) {
compile_error(m_context, "ir_builder::createGlobal failed `%s`", name.get());
2015-01-30 17:59:48 +00:00
return nullptr;
}
2015-01-30 17:59:48 +00:00
m_ir_values[ai]->m_context = m_context;
m_ir_values[ai]->m_unique_life = true;
m_ir_values[ai]->m_locked = true;
if (m_flags & AST_FLAG_INCLUDE_DEF)
m_ir_values[ai]->m_flags |= IR_FLAG_INCLUDE_DEF;
if (m_flags & AST_FLAG_NOREF)
m_ir_values[ai]->m_flags |= IR_FLAG_NOREF;
}
2015-01-30 17:59:48 +00:00
return v;
}
2015-01-30 17:59:48 +00:00
bool ast_value::generateLocal(ir_function *func, bool param)
{
2015-01-30 17:59:48 +00:00
if (m_vtype == TYPE_NIL) {
compile_error(m_context, "internal error: trying to generate a variable of TYPE_NIL");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_hasvalue && m_vtype == TYPE_FUNCTION)
{
/* Do we allow local functions? I think not...
* this is NOT a function pointer atm.
*/
return false;
}
2015-01-30 17:59:48 +00:00
ir_value *v = nullptr;
if (m_vtype == TYPE_ARRAY) {
ast_expression *elemtype = m_next;
2015-01-24 11:25:46 +00:00
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;
2015-01-30 17:59:48 +00:00
if (param && !(m_flags & AST_FLAG_IS_VARARG)) {
compile_error(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 */
2015-01-30 17:59:48 +00:00
if (!checkArray(*this))
return false;
2012-11-11 22:31:57 +00:00
2015-01-30 17:59:48 +00:00
m_ir_values.resize(m_count);
v = ir_function_create_local(func, m_name, vtype, param);
2012-11-11 22:31:57 +00:00
if (!v) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "internal error: ir_function_create_local failed");
2012-11-11 22:31:57 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
v->m_context = m_context;
2015-01-24 11:25:46 +00:00
v->m_unique_life = true;
v->m_locked = true;
2012-11-11 22:31:57 +00:00
if (m_flags & AST_FLAG_NOREF)
v->m_flags |= IR_FLAG_NOREF;
2015-01-30 17:59:48 +00:00
const size_t namelen = m_name.length();
std::unique_ptr<char[]> name(new char[namelen+16]);
util_strncpy(name.get(), m_name.c_str(), namelen);
2012-11-11 22:31:57 +00:00
2015-01-30 17:59:48 +00:00
m_ir_values[0] = v;
for (size_t ai = 1; ai < m_count; ++ai) {
util_snprintf(name.get() + namelen, 16, "[%u]", (unsigned int)ai);
m_ir_values[ai] = ir_function_create_local(func, name.get(), vtype, param);
if (!m_ir_values[ai]) {
compile_error(m_context, "internal_error: ir_builder::createGlobal failed on `%s`", name.get());
2012-11-11 22:31:57 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
m_ir_values[ai]->m_context = m_context;
m_ir_values[ai]->m_unique_life = true;
m_ir_values[ai]->m_locked = true;
if (m_flags & AST_FLAG_NOREF)
m_ir_values[ai]->m_flags |= IR_FLAG_NOREF;
2012-11-11 22:31:57 +00:00
}
}
else
{
2015-01-30 17:59:48 +00:00
v = ir_function_create_local(func, m_name, m_vtype, param);
2012-11-11 22:31:57 +00:00
if (!v)
return false;
2015-01-30 17:59:48 +00:00
codegen_output_type(this, v);
v->m_context = m_context;
}
2015-01-30 17:59:48 +00:00
// A constant local... hmmm...
// I suppose the IR will have to deal with this
if (m_hasvalue) {
switch (m_vtype)
{
case TYPE_FLOAT:
if (!v->setFloat(m_constval.vfloat))
goto error;
break;
case TYPE_VECTOR:
if (!v->setVector(m_constval.vvec))
goto error;
break;
case TYPE_STRING:
if (!v->setString(m_constval.vstring))
goto error;
break;
default:
2015-01-30 17:59:48 +00:00
compile_error(m_context, "TODO: global constant type %i", m_vtype);
break;
}
}
2015-01-30 17:59:48 +00:00
// link us to the ir_value
v->m_cvq = m_cvq;
m_ir_v = v;
2012-11-11 22:31:57 +00:00
if (m_flags & AST_FLAG_NOREF)
m_ir_v->m_flags |= IR_FLAG_NOREF;
2015-01-30 17:59:48 +00:00
if (!generateAccessors(func->m_owner))
2012-12-02 16:57:08 +00:00
return false;
return true;
error: /* clean up */
2015-01-20 15:43:58 +00:00
delete v;
return false;
}
2015-01-30 17:59:48 +00:00
bool ast_value::generateAccessors(ir_builder *ir)
2012-12-02 16:57:08 +00:00
{
2012-12-02 17:02:44 +00:00
size_t i;
bool warn = OPTS_WARN(WARN_USED_UNINITIALIZED);
2015-01-30 17:59:48 +00:00
if (!m_setter || !m_getter)
2012-12-02 17:02:44 +00:00
return true;
2015-01-30 17:59:48 +00:00
if (m_count && m_ir_values.empty()) {
compile_error(m_context, "internal error: no array values generated for `%s`", m_name);
return false;
}
for (i = 0; i < m_count; ++i) {
if (!m_ir_values[i]) {
compile_error(m_context, "internal error: not all array values have been generated for `%s`", m_name);
2012-12-02 17:02:44 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
if (!m_ir_values[i]->m_life.empty()) {
compile_error(m_context, "internal error: function containing `%s` already generated", m_name);
2012-12-02 17:02:44 +00:00
return false;
}
}
opts_set(opts.warn, WARN_USED_UNINITIALIZED, false);
2015-01-30 17:59:48 +00:00
if (m_setter) {
if (!m_setter->generateGlobal(ir, false) ||
!m_setter->m_constval.vfunc->generateFunction(ir) ||
!ir_function_finalize(m_setter->m_constval.vfunc->m_ir_func))
2012-12-02 16:57:08 +00:00
{
2015-01-30 17:59:48 +00:00
compile_error(m_context, "internal error: failed to generate setter for `%s`", m_name);
opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
2012-12-02 16:57:08 +00:00
return false;
}
}
2015-01-30 17:59:48 +00:00
if (m_getter) {
if (!m_getter->generateGlobal(ir, false) ||
!m_getter->m_constval.vfunc->generateFunction(ir) ||
!ir_function_finalize(m_getter->m_constval.vfunc->m_ir_func))
2012-12-02 16:57:08 +00:00
{
2015-01-30 17:59:48 +00:00
compile_error(m_context, "internal error: failed to generate getter for `%s`", m_name);
opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
2012-12-02 16:57:08 +00:00
return false;
}
}
2015-01-30 17:59:48 +00:00
for (i = 0; i < m_count; ++i)
m_ir_values[i]->m_life.clear();
opts_set(opts.warn, WARN_USED_UNINITIALIZED, warn);
2012-12-02 16:57:08 +00:00
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_function::generateFunction(ir_builder *ir)
{
2012-11-22 20:39:30 +00:00
(void)ir;
2015-01-30 17:59:48 +00:00
ir_value *dummy;
ir_function *irf = m_ir_func;
if (!irf) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "internal error: ast_function's related ast_value was not generated yet");
return false;
}
/* fill the parameter list */
2015-01-30 17:59:48 +00:00
for (auto &it : m_function_type->m_type_params) {
2015-01-24 11:25:46 +00:00
if (it->m_vtype == TYPE_FIELD)
2016-12-03 20:42:15 +00:00
irf->m_params.push_back(it->m_next->m_vtype);
else
2016-12-03 20:42:15 +00:00
irf->m_params.push_back(it->m_vtype);
2015-01-30 17:59:48 +00:00
if (!m_builtin) {
if (!it->generateLocal(m_ir_func, true))
return false;
}
}
2015-01-30 17:59:48 +00:00
if (m_varargs) {
if (!m_varargs->generateLocal(m_ir_func, true))
2013-01-12 12:01:20 +00:00
return false;
2015-01-30 17:59:48 +00:00
irf->m_max_varargs = m_varargs->m_count;
2013-01-12 12:01:20 +00:00
}
2015-01-30 17:59:48 +00:00
if (m_builtin) {
irf->m_builtin = m_builtin;
return true;
}
2013-05-29 14:56:39 +00:00
/* have a local return value variable? */
2015-01-30 17:59:48 +00:00
if (m_return_value) {
if (!m_return_value->generateLocal(m_ir_func, false))
return false;
}
2015-01-30 17:59:48 +00:00
if (m_blocks.empty()) {
compile_error(m_context, "function `%s` has no body", m_name);
return false;
}
2015-01-30 17:59:48 +00:00
irf->m_first = m_curblock = ir_function_create_block(m_context, irf, "entry");
if (!m_curblock) {
compile_error(m_context, "failed to allocate entry block for `%s`", m_name);
return false;
}
2015-01-30 17:59:48 +00:00
if (m_argc) {
2013-01-12 14:06:19 +00:00
ir_value *va_count;
ir_value *fixed;
ir_value *sub;
2015-01-30 17:59:48 +00:00
if (!m_argc->generateLocal(m_ir_func, true))
2013-01-12 14:06:19 +00:00
return false;
2015-01-30 17:59:48 +00:00
if (!m_argc->codegen(this, false, &va_count))
2013-01-12 14:06:19 +00:00
return false;
2015-01-30 17:59:48 +00:00
if (!m_fixedparams->codegen(this, false, &fixed))
return false;
2015-01-30 17:59:48 +00:00
sub = ir_block_create_binop(m_curblock, m_context,
makeLabel("va_count"), INSTR_SUB_F,
ir->get_va_count(), fixed);
if (!sub)
return false;
2015-01-30 17:59:48 +00:00
if (!ir_block_create_store_op(m_curblock, m_context, INSTR_STORE_F,
va_count, sub))
2013-01-12 14:06:19 +00:00
{
return false;
}
}
2015-01-30 17:59:48 +00:00
for (auto &it : m_blocks) {
if (!it->codegen(this, false, &dummy))
return false;
}
/* TODO: check return types */
2015-01-30 17:59:48 +00:00
if (!m_curblock->m_final)
{
2015-01-30 17:59:48 +00:00
if (!m_function_type->m_next ||
m_function_type->m_next->m_vtype == TYPE_VOID)
{
2015-01-30 17:59:48 +00:00
return ir_block_create_return(m_curblock, m_context, nullptr);
}
2016-12-03 19:32:26 +00:00
else if (m_curblock->m_entries.size() || m_curblock == irf->m_first)
{
2015-01-30 17:59:48 +00:00
if (m_return_value) {
if (!m_return_value->codegen(this, false, &dummy))
return false;
2015-01-30 17:59:48 +00:00
return ir_block_create_return(m_curblock, m_context, dummy);
}
2015-01-30 17:59:48 +00:00
else if (compile_warning(m_context, WARN_MISSING_RETURN_VALUES,
"control reaches end of non-void function (`%s`) via %s",
2015-01-30 17:59:48 +00:00
m_name.c_str(), m_curblock->m_label.c_str()))
{
return false;
}
2015-01-30 17:59:48 +00:00
return ir_block_create_return(m_curblock, m_context, nullptr);
}
}
return true;
2012-04-26 08:28:42 +00:00
}
2015-01-30 17:59:48 +00:00
static bool starts_a_label(const ast_expression *ex)
{
while (ex && ast_istype(ex, ast_block)) {
2015-01-30 17:59:48 +00:00
auto b = reinterpret_cast<const ast_block*>(ex);
2015-01-24 11:25:46 +00:00
ex = b->m_exprs[0];
}
if (!ex)
return false;
return ast_istype(ex, ast_label);
}
/* 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.
*/
2015-01-30 17:59:48 +00:00
bool ast_block::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-04-26 08:28:42 +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...
*/
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "not an l-value (code-block)");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_outr) {
*out = m_outr;
return true;
}
2015-01-15 20:18:33 +00:00
/* output is nullptr at first, we'll have each expression
* 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;
/* generate locals */
2015-01-30 17:59:48 +00:00
for (auto &it : m_locals) {
if (!it->generateLocal(func->m_ir_func, false)) {
2013-01-30 05:35:07 +00:00
if (OPTS_OPTION_BOOL(OPTION_DEBUG))
2015-01-30 17:59:48 +00:00
compile_error(m_context, "failed to generate local `%s`", it->m_name);
return false;
}
}
2015-01-30 17:59:48 +00:00
for (auto &it : m_exprs) {
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"))
return false;
continue;
}
2015-01-30 17:59:48 +00:00
if (!it->codegen(func, false, out))
return false;
}
2015-01-30 17:59:48 +00:00
m_outr = *out;
return true;
2012-04-26 08:28:42 +00:00
}
2015-01-30 17:59:48 +00:00
bool ast_store::codegen(ast_function *func, bool lvalue, ir_value **out)
{
2015-01-15 20:18:33 +00:00
ir_value *left = nullptr;
ir_value *right = nullptr;
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-30 17:59:48 +00:00
if (lvalue && m_outl) {
*out = m_outl;
return true;
}
2015-01-30 17:59:48 +00:00
if (!lvalue && m_outr) {
*out = m_outr;
return true;
}
2015-01-30 17:59:48 +00:00
if (ast_istype(m_dest, ast_array_index))
2012-11-11 20:27:02 +00:00
{
2015-01-30 17:59:48 +00:00
ai = (ast_array_index*)m_dest;
2015-01-24 11:25:46 +00:00
idx = (ast_value*)ai->m_index;
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-30 17:59:48 +00:00
compile_error(m_context, "array-subscript assignment cannot produce lvalues");
2012-11-11 20:27:02 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
auto arr = reinterpret_cast<ast_value*>(ai->m_array);
2015-01-24 11:25:46 +00:00
if (!ast_istype(ai->m_array, ast_value) || !arr->m_setter) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "value has no setter (%s)", arr->m_name);
2012-11-11 20:27:02 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
if (!idx->codegen(func, false, &iridx))
2012-11-11 20:27:02 +00:00
return false;
2015-01-30 17:59:48 +00:00
if (!arr->m_setter->codegen(func, true, &funval))
2012-11-11 20:27:02 +00:00
return false;
2015-01-30 17:59:48 +00:00
if (!m_source->codegen(func, false, &right))
2012-11-11 20:27:02 +00:00
return false;
2015-01-30 17:59:48 +00:00
call = ir_block_create_call(func->m_curblock, m_context, func->makeLabel("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-30 17:59:48 +00:00
m_outr = right;
2012-11-11 20:27:02 +00:00
}
else
{
2015-01-30 17:59:48 +00:00
// regular code
2012-11-11 20:27:02 +00:00
2015-01-30 17:59:48 +00:00
// lvalue!
if (!m_dest->codegen(func, true, &left))
2012-11-11 20:27:02 +00:00
return false;
2015-01-30 17:59:48 +00:00
m_outl = left;
2012-11-11 20:27:02 +00:00
/* rvalue! */
2015-01-30 17:59:48 +00:00
if (!m_source->codegen(func, false, &right))
2012-11-11 20:27:02 +00:00
return false;
2015-01-30 17:59:48 +00:00
if (!ir_block_create_store_op(func->m_curblock, m_context, m_op, left, right))
2012-11-11 20:27:02 +00:00
return false;
2015-01-30 17:59:48 +00:00
m_outr = right;
2012-11-11 20:27:02 +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;
}
2015-01-30 17:59:48 +00:00
bool ast_binary::codegen(ast_function *func, bool lvalue, ir_value **out)
{
ir_value *left, *right;
/* A binary operation cannot yield an l-value */
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "not an l-value (binop)");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_outr) {
*out = m_outr;
return true;
}
if ((OPTS_FLAG(SHORT_LOGIC) || OPTS_FLAG(PERL_LOGIC)) &&
2015-01-30 17:59:48 +00:00
(m_op == INSTR_AND || m_op == INSTR_OR))
{
/* NOTE: The short-logic path will ignore right_first */
/* short circuit evaluation */
ir_block *other, *merge;
ir_block *from_left, *from_right;
ir_instr *phi;
size_t merge_id;
/* prepare end-block */
2015-01-24 11:25:46 +00:00
merge_id = func->m_ir_func->m_blocks.size();
2015-01-30 17:59:48 +00:00
merge = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("sce_merge"));
/* generate the left expression */
2015-01-30 17:59:48 +00:00
if (!m_left->codegen(func, false, &left))
return false;
/* remember the block */
2015-01-24 11:25:46 +00:00
from_left = func->m_curblock;
/* create a new block for the right expression */
2015-01-30 17:59:48 +00:00
other = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("sce_other"));
if (m_op == INSTR_AND) {
/* on AND: left==true -> other */
2015-01-30 17:59:48 +00:00
if (!ir_block_create_if(func->m_curblock, m_context, left, other, merge))
return false;
} else {
/* on OR: left==false -> other */
2015-01-30 17:59:48 +00:00
if (!ir_block_create_if(func->m_curblock, m_context, left, merge, other))
return false;
}
2012-11-21 16:42:44 +00:00
/* use the likely flag */
2016-12-03 20:30:33 +00:00
func->m_curblock->m_instr.back()->m_likely = true;
/* enter the right-expression's block */
2015-01-24 11:25:46 +00:00
func->m_curblock = other;
/* generate */
2015-01-30 17:59:48 +00:00
if (!m_right->codegen(func, false, &right))
return false;
/* remember block */
2015-01-24 11:25:46 +00:00
from_right = func->m_curblock;
/* jump to the merge block */
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(func->m_curblock, m_context, merge))
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());
// 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);
2015-01-24 11:25:46 +00:00
func->m_curblock = merge;
2015-01-30 17:59:48 +00:00
phi = ir_block_create_phi(func->m_curblock, m_context,
func->makeLabel("sce_value"),
m_vtype);
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;
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) {
2015-01-30 17:59:48 +00:00
*out = ir_block_create_unary(func->m_curblock, m_context,
func->makeLabel("sce_bool_v"),
INSTR_NOT_V, *out);
if (!*out)
return false;
2015-01-30 17:59:48 +00:00
*out = ir_block_create_unary(func->m_curblock, m_context,
func->makeLabel("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) {
2015-01-30 17:59:48 +00:00
*out = ir_block_create_unary(func->m_curblock, m_context,
func->makeLabel("sce_bool_s"),
INSTR_NOT_S, *out);
if (!*out)
return false;
2015-01-30 17:59:48 +00:00
*out = ir_block_create_unary(func->m_curblock, m_context,
func->makeLabel("sce_bool"),
INSTR_NOT_F, *out);
if (!*out)
return false;
}
else {
2015-01-30 17:59:48 +00:00
*out = ir_block_create_binop(func->m_curblock, m_context,
func->makeLabel("sce_bool"),
INSTR_AND, *out, *out);
if (!*out)
return false;
}
}
2015-01-30 17:59:48 +00:00
m_outr = *out;
codegen_output_type(this, *out);
return true;
}
2015-01-30 17:59:48 +00:00
if (m_right_first) {
if (!m_right->codegen(func, false, &right))
return false;
2015-01-30 17:59:48 +00:00
if (!m_left->codegen(func, false, &left))
return false;
} else {
2015-01-30 17:59:48 +00:00
if (!m_left->codegen(func, false, &left))
return false;
2015-01-30 17:59:48 +00:00
if (!m_right->codegen(func, false, &right))
return false;
}
2015-01-30 17:59:48 +00:00
*out = ir_block_create_binop(func->m_curblock, m_context, func->makeLabel("bin"),
m_op, left, right);
if (!*out)
return false;
2015-01-30 17:59:48 +00:00
m_outr = *out;
codegen_output_type(this, *out);
return true;
}
2012-05-01 13:08:54 +00:00
2015-01-30 17:59:48 +00:00
bool ast_binstore::codegen(ast_function *func, bool lvalue, ir_value **out)
{
2015-01-15 20:18:33 +00:00
ir_value *leftl = nullptr, *leftr, *right, *bin;
ast_value *arr;
ast_value *idx = 0;
2015-01-15 20:18:33 +00:00
ast_array_index *ai = nullptr;
ir_value *iridx = nullptr;
2015-01-30 17:59:48 +00:00
if (lvalue && m_outl) {
*out = m_outl;
return true;
}
2015-01-30 17:59:48 +00:00
if (!lvalue && m_outr) {
*out = m_outr;
return true;
}
2015-01-30 17:59:48 +00:00
if (ast_istype(m_dest, ast_array_index))
{
2015-01-30 17:59:48 +00:00
ai = (ast_array_index*)m_dest;
2015-01-24 11:25:46 +00:00
idx = (ast_value*)ai->m_index;
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;
}
/* for a binstore we need both an lvalue and an rvalue for the left side */
/* rvalue of destination! */
if (ai) {
2015-01-30 17:59:48 +00:00
if (!idx->codegen(func, false, &iridx))
return false;
}
2015-01-30 17:59:48 +00:00
if (!m_dest->codegen(func, false, &leftr))
return false;
/* source as rvalue only */
2015-01-30 17:59:48 +00:00
if (!m_source->codegen(func, false, &right))
return false;
/* now the binary */
2015-01-30 17:59:48 +00:00
bin = ir_block_create_binop(func->m_curblock, m_context, func->makeLabel("binst"),
m_opbin, leftr, right);
m_outr = bin;
if (ai) {
/* we need to call the setter */
ir_value *funval;
ir_instr *call;
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "array-subscript assignment cannot produce lvalues");
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) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "value has no setter (%s)", arr->m_name);
return false;
}
2015-01-30 17:59:48 +00:00
if (!arr->m_setter->codegen(func, true, &funval))
return false;
2015-01-30 17:59:48 +00:00
call = ir_block_create_call(func->m_curblock, m_context, func->makeLabel("store"), funval, false);
if (!call)
return false;
ir_call_param(call, iridx);
ir_call_param(call, bin);
2015-01-30 17:59:48 +00:00
m_outr = bin;
} else {
2015-01-30 17:59:48 +00:00
// now store them
// lvalue of destination
if (!m_dest->codegen(func, true, &leftl))
return false;
2015-01-30 17:59:48 +00:00
m_outl = leftl;
2015-01-30 17:59:48 +00:00
if (!ir_block_create_store_op(func->m_curblock, m_context, m_opstore, leftl, bin))
return false;
2015-01-30 17:59:48 +00:00
m_outr = bin;
}
/* 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;
}
2015-01-30 17:59:48 +00:00
bool ast_unary::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-07-26 18:45:18 +00:00
{
ir_value *operand;
/* An unary operation cannot yield an l-value */
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "not an l-value (binop)");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_outr) {
*out = m_outr;
return true;
}
2012-07-26 18:45:18 +00:00
/* lvalue! */
2015-01-30 17:59:48 +00:00
if (!m_operand->codegen(func, false, &operand))
2012-07-26 18:45:18 +00:00
return false;
2015-01-30 17:59:48 +00:00
*out = ir_block_create_unary(func->m_curblock, m_context, func->makeLabel("unary"),
m_op, operand);
2012-07-26 18:45:18 +00:00
if (!*out)
return false;
2015-01-30 17:59:48 +00:00
m_outr = *out;
2012-07-26 18:45:18 +00:00
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_return::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-07-26 19:18:39 +00:00
{
ir_value *operand;
2015-01-15 20:18:33 +00:00
*out = nullptr;
2012-11-22 20:39:30 +00:00
/* In the context of a return operation, we don't actually return
* anything...
2012-07-26 19:18:39 +00:00
*/
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "return-expression is not an l-value");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_outr) {
compile_error(m_context, "internal error: ast_return cannot be reused, it bears no result!");
return false;
}
2015-01-30 17:59:48 +00:00
m_outr = (ir_value*)1;
2012-07-26 19:18:39 +00:00
2015-01-30 17:59:48 +00:00
if (m_operand) {
/* lvalue! */
2015-01-30 17:59:48 +00:00
if (!m_operand->codegen(func, false, &operand))
return false;
2012-07-26 19:18:39 +00:00
2015-01-30 17:59:48 +00:00
if (!ir_block_create_return(func->m_curblock, m_context, operand))
return false;
} else {
2015-01-30 17:59:48 +00:00
if (!ir_block_create_return(func->m_curblock, m_context, nullptr))
return false;
}
2012-07-26 19:18:39 +00:00
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_entfield::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-05-01 13:08:54 +00:00
{
2012-05-03 10:19:33 +00:00
ir_value *ent, *field;
2015-01-30 17:59:48 +00:00
// 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.
2012-05-03 10:19:33 +00:00
2015-01-30 17:59:48 +00:00
if (lvalue && m_outl) {
*out = m_outl;
return true;
}
2015-01-30 17:59:48 +00:00
if (!lvalue && m_outr) {
*out = m_outr;
return true;
}
2015-01-30 17:59:48 +00:00
if (!m_entity->codegen(func, false, &ent))
2012-05-03 10:19:33 +00:00
return false;
2015-01-30 17:59:48 +00:00
if (!m_field->codegen(func, false, &field))
2012-05-03 10:19:33 +00:00
return false;
if (lvalue) {
/* address! */
2015-01-30 17:59:48 +00:00
*out = ir_block_create_fieldaddress(func->m_curblock, m_context, func->makeLabel("efa"),
2012-05-03 10:19:33 +00:00
ent, field);
} else {
2015-01-30 17:59:48 +00:00
*out = ir_block_create_load_from_ent(func->m_curblock, m_context, func->makeLabel("efv"),
ent, field, m_vtype);
2013-04-21 10:24:55 +00:00
/* Done AFTER error checking:
2015-01-30 17:59:48 +00:00
codegen_output_type(this, *out);
*/
2012-05-03 10:19:33 +00:00
}
if (!*out) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "failed to create %s instruction (output type %s)",
(lvalue ? "ADDRESS" : "FIELD"),
2015-01-30 17:59:48 +00:00
type_name[m_vtype]);
2012-05-03 10:19:33 +00:00
return false;
}
if (!lvalue)
2015-01-30 17:59:48 +00:00
codegen_output_type(this, *out);
2012-05-03 10:19:33 +00:00
if (lvalue)
2015-01-30 17:59:48 +00:00
m_outl = *out;
else
2015-01-30 17:59:48 +00:00
m_outr = *out;
2015-01-30 17:59:48 +00:00
// Hm that should be it...
2012-05-03 10:19:33 +00:00
return true;
2012-05-01 13:08:54 +00:00
}
2015-01-30 17:59:48 +00:00
bool ast_member::codegen(ast_function *func, bool lvalue, ir_value **out)
{
2012-08-11 13:41:37 +00:00
ir_value *vec;
/* in QC this is always an lvalue */
2015-01-30 17:59:48 +00:00
if (lvalue && m_rvalue) {
compile_error(m_context, "not an l-value (member access)");
return false;
}
if (lvalue && m_outl) {
2015-01-30 17:59:48 +00:00
*out = m_outl;
return true;
}
if (!lvalue && m_outr) {
*out = m_outr;
return true;
}
if (ast_istype(m_owner, ast_entfield)) {
ir_value *ent, *field;
auto entfield = reinterpret_cast<ast_entfield*>(m_owner);
if (!entfield->m_entity->codegen(func, false, &ent))
return false;
if (!entfield->m_field->codegen(func, false, &vec))
return false;
field = vec->vectorMember(m_field);
if (lvalue) {
*out = ir_block_create_fieldaddress(func->m_curblock, m_context, func->makeLabel("mefa"),
ent, field);
} else {
*out = ir_block_create_load_from_ent(func->m_curblock, m_context, func->makeLabel("mefv"),
ent, field, m_vtype);
}
if (!*out) {
compile_error(m_context, "failed to create %s instruction (output type %s)",
(lvalue ? "ADDRESS" : "FIELD"),
type_name[m_vtype]);
return false;
}
if (lvalue)
m_outl = *out;
else
m_outr = *out;
return (*out != nullptr);
}
// Vector member access
if (!m_owner->codegen(func, lvalue, &vec))
return false;
2015-01-24 11:25:46 +00:00
if (vec->m_vtype != TYPE_VECTOR &&
2015-01-30 17:59:48 +00:00
!(vec->m_vtype == TYPE_FIELD && m_owner->m_next->m_vtype == TYPE_VECTOR))
{
compile_error(m_context, "vector member produced neither vector nor field");
return false;
}
*out = vec->vectorMember(m_field);
if (!*out) {
compile_error(m_context, "internal error: failed to create vector member access");
return false;
}
if (lvalue)
m_outl = *out;
else
m_outr = *out;
2015-01-15 20:18:33 +00:00
return (*out != nullptr);
}
2015-01-30 17:59:48 +00:00
bool ast_array_index::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-11-11 15:06:27 +00:00
{
ast_value *arr;
ast_value *idx;
2015-01-30 17:59:48 +00:00
if (!lvalue && m_outr) {
*out = m_outr;
return true;
}
2015-01-30 17:59:48 +00:00
if (lvalue && m_outl) {
*out = m_outl;
return true;
}
2015-01-30 17:59:48 +00:00
if (!ast_istype(m_array, ast_value)) {
compile_error(m_context, "array indexing this way is not supported");
/* 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-30 17:59:48 +00:00
arr = reinterpret_cast<ast_value*>(m_array);
idx = reinterpret_cast<ast_value*>(m_index);
2012-11-11 18:02:50 +00:00
2015-01-30 17:59:48 +00:00
if (!ast_istype(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 */
ir_value *iridx, *funval;
ir_instr *call;
2012-11-11 15:06:27 +00:00
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(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
}
2015-01-24 11:25:46 +00:00
if (!arr->m_getter) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "value has no getter, don't know how to index it");
2012-11-11 18:02:50 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
if (!m_index->codegen(func, false, &iridx))
2012-11-11 18:02:50 +00:00
return false;
2015-01-30 17:59:48 +00:00
if (!arr->m_getter->codegen(func, true, &funval))
2012-11-11 18:02:50 +00:00
return false;
2012-11-11 15:06:27 +00:00
2015-01-30 17:59:48 +00:00
call = ir_block_create_call(func->m_curblock, m_context, func->makeLabel("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-30 17:59:48 +00:00
m_outr = *out;
(*out)->m_vtype = m_vtype;
codegen_output_type(this, *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;
2015-01-30 17:59:48 +00:00
if (arridx >= m_array->m_count)
{
2015-01-30 17:59:48 +00:00
compile_error(m_context, "array index out of bounds: %i", arridx);
return false;
}
2015-01-24 11:25:46 +00:00
*out = arr->m_ir_values[arridx];
}
2015-01-24 11:25:46 +00:00
else if (idx->m_vtype == TYPE_INTEGER) {
unsigned int arridx = idx->m_constval.vint;
2015-01-30 17:59:48 +00:00
if (arridx >= m_array->m_count)
{
2015-01-30 17:59:48 +00:00
compile_error(m_context, "array index out of bounds: %i", arridx);
return false;
}
2015-01-24 11:25:46 +00:00
*out = arr->m_ir_values[arridx];
}
2012-11-11 15:06:27 +00:00
else {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "array indexing here needs an integer constant");
2012-11-11 15:06:27 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
(*out)->m_vtype = m_vtype;
codegen_output_type(this, *out);
2012-11-11 15:06:27 +00:00
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_argpipe::codegen(ast_function *func, bool lvalue, ir_value **out)
{
2015-01-15 20:18:33 +00:00
*out = nullptr;
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "argpipe node: not an lvalue");
return false;
}
(void)func;
(void)out;
2015-01-30 17:59:48 +00:00
compile_error(m_context, "TODO: argpipe codegen not implemented");
return false;
}
2015-01-30 17:59:48 +00:00
bool ast_ifthen::codegen(ast_function *func, bool lvalue, ir_value **out)
{
2012-05-03 10:38:43 +00:00
ir_value *condval;
ir_value *dummy;
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-30 17:59:48 +00:00
if (m_outr) {
compile_error(m_context, "internal error: ast_ifthen cannot be reused, it bears no result!");
return false;
}
2015-01-30 17:59:48 +00:00
m_outr = (ir_value*)1;
/* generate the condition */
2015-01-30 17:59:48 +00:00
if (!m_cond->codegen(func, false, &condval))
return false;
/* 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;
/* try constant folding away the condition */
2015-01-30 17:59:48 +00:00
if ((folded = fold::cond_ifthen(condval, func, this)) != -1)
2015-01-16 01:27:17 +00:00
return folded;
2013-08-17 23:43:41 +00:00
2015-01-30 17:59:48 +00:00
if (m_on_true) {
2012-05-03 10:38:43 +00:00
/* create on-true block */
2015-01-30 17:59:48 +00:00
ontrue = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("ontrue"));
2012-05-03 10:38:43 +00:00
if (!ontrue)
return false;
/* enter the block */
2015-01-24 11:25:46 +00:00
func->m_curblock = ontrue;
/* generate */
2015-01-30 17:59:48 +00:00
if (!m_on_true->codegen(func, false, &dummy))
return false;
/* 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
/* on-false path */
2015-01-30 17:59:48 +00:00
if (m_on_false) {
2012-05-03 10:38:43 +00:00
/* create on-false block */
2015-01-30 17:59:48 +00:00
onfalse = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("onfalse"));
2012-05-03 10:38:43 +00:00
if (!onfalse)
return false;
/* enter the block */
2015-01-24 11:25:46 +00:00
func->m_curblock = onfalse;
/* generate */
2015-01-30 17:59:48 +00:00
if (!m_on_false->codegen(func, false, &dummy))
return false;
/* 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
/* 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-30 17:59:48 +00:00
merge = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("endif"));
if (!merge)
return false;
/* add jumps ot the merge block */
2015-01-30 17:59:48 +00:00
if (ontrue && !ontrue_endblock->m_final && !ir_block_create_jump(ontrue_endblock, m_context, merge))
return false;
2015-01-30 17:59:48 +00:00
if (onfalse && !onfalse_endblock->m_final && !ir_block_create_jump(onfalse_endblock, m_context, merge))
return false;
/* Now enter the merge block */
2015-01-24 11:25:46 +00:00
func->m_curblock = merge;
}
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-30 17:59:48 +00:00
if (!ir_block_create_if(cond, 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;
}
2015-01-30 17:59:48 +00:00
bool ast_ternary::codegen(ast_function *func, bool lvalue, ir_value **out)
{
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;
ir_block *merge;
2015-01-16 01:27:17 +00:00
int folded = 0;
/* Ternary can never create an lvalue... */
if (lvalue)
return false;
/* 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-30 17:59:48 +00:00
if (m_outr) {
*out = m_outr;
return true;
}
/* In the following, contraty to ast_ifthen, we assume both paths exist. */
2012-06-11 17:25:21 +00:00
/* generate the condition */
2015-01-24 11:25:46 +00:00
func->m_curblock = cond;
2015-01-30 17:59:48 +00:00
if (!m_cond->codegen(func, false, &condval))
return false;
2015-01-24 11:25:46 +00:00
cond_out = func->m_curblock;
/* try constant folding away the condition */
2015-01-30 17:59:48 +00:00
if ((folded = fold::cond_ternary(condval, func, this)) != -1)
2015-01-16 01:27:17 +00:00
return folded;
/* create on-true block */
2015-01-30 17:59:48 +00:00
ontrue = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("tern_T"));
if (!ontrue)
return false;
else
{
/* enter the block */
2015-01-24 11:25:46 +00:00
func->m_curblock = ontrue;
/* generate */
2015-01-30 17:59:48 +00:00
if (!m_on_true->codegen(func, false, &trueval))
return false;
2015-01-24 11:25:46 +00:00
ontrue_out = func->m_curblock;
}
2012-06-11 17:25:21 +00:00
/* create on-false block */
2015-01-30 17:59:48 +00:00
onfalse = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("tern_F"));
if (!onfalse)
return false;
else
{
/* enter the block */
2015-01-24 11:25:46 +00:00
func->m_curblock = onfalse;
/* generate */
2015-01-30 17:59:48 +00:00
if (!m_on_false->codegen(func, false, &falseval))
return false;
2015-01-24 11:25:46 +00:00
onfalse_out = func->m_curblock;
}
/* create merge block */
2015-01-30 17:59:48 +00:00
merge = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("tern_out"));
if (!merge)
2012-06-11 17:25:21 +00:00
return false;
/* jump to merge block */
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(ontrue_out, m_context, merge))
return false;
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(onfalse_out, m_context, merge))
return false;
/* create if instruction */
2015-01-30 17:59:48 +00:00
if (!ir_block_create_if(cond_out, m_context, condval, ontrue, onfalse))
return false;
/* Now enter the merge block */
2015-01-24 11:25:46 +00:00
func->m_curblock = merge;
/* 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) {
/* error("ternary with different types on the two sides"); */
2015-01-30 17:59:48 +00:00
compile_error(m_context, "internal error: ternary operand types invalid");
return false;
}
/* create PHI */
2015-01-30 17:59:48 +00:00
phi = ir_block_create_phi(merge, m_context, func->makeLabel("phi"), m_vtype);
if (!phi) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "internal error: failed to generate phi node");
return false;
}
ir_phi_add(phi, ontrue_out, trueval);
ir_phi_add(phi, onfalse_out, falseval);
2015-01-30 17:59:48 +00:00
m_outr = ir_phi_value(phi);
*out = m_outr;
2015-01-30 17:59:48 +00:00
codegen_output_type(this, *out);
return true;
}
2012-05-03 19:57:13 +00:00
2015-01-30 17:59:48 +00:00
bool ast_loop::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-05-03 19:57:13 +00:00
{
2015-01-15 20:18:33 +00:00
ir_value *dummy = nullptr;
ir_value *precond = nullptr;
ir_value *postcond = nullptr;
/* 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;
/* let's at least move the outgoing block to the end */
size_t bout_id;
/* '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;
2015-01-15 20:18:33 +00:00
ir_block *tmpblock = nullptr;
(void)lvalue;
(void)out;
2015-01-30 17:59:48 +00:00
if (m_outr) {
compile_error(m_context, "internal error: ast_loop cannot be reused, it bears no result!");
return false;
}
2015-01-30 17:59:48 +00:00
m_outr = (ir_value*)1;
/* 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-30 17:59:48 +00:00
if (m_initexpr)
{
2015-01-30 17:59:48 +00:00
if (!m_initexpr->codegen(func, false, &dummy))
return false;
}
/* Store the block from which we enter this chaos */
2015-01-24 11:25:46 +00:00
bin = func->m_curblock;
/* The pre-loop condition needs its own block since we
* need to be able to jump to the start of that expression.
*/
2015-01-30 17:59:48 +00:00
if (m_precond)
{
2015-01-30 17:59:48 +00:00
bprecond = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("pre_loop_cond"));
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;
/* generate */
2015-01-30 17:59:48 +00:00
if (!m_precond->codegen(func, false, &precond))
return false;
2015-01-24 11:25:46 +00:00
end_bprecond = func->m_curblock;
} else {
2015-01-15 20:18:33 +00:00
bprecond = end_bprecond = nullptr;
}
/* Now the next blocks won't be ordered nicely, but we need to
* generate them this early for 'break' and 'continue'.
*/
2015-01-30 17:59:48 +00:00
if (m_increment) {
bincrement = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("loop_increment"));
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;
}
2015-01-30 17:59:48 +00:00
if (m_postcond) {
bpostcond = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("post_loop_cond"));
if (!bpostcond)
return false;
bcontinue = bpostcond; /* postcond comes before the increment */
} else {
2015-01-15 20:18:33 +00:00
bpostcond = end_bpostcond = nullptr;
}
2015-01-24 11:25:46 +00:00
bout_id = func->m_ir_func->m_blocks.size();
2015-01-30 17:59:48 +00:00
bout = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("after_loop"));
if (!bout)
return false;
bbreak = bout;
/* The loop body... */
2015-01-30 17:59:48 +00:00
/* if (m_body) */
{
2015-01-30 17:59:48 +00:00
bbody = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("loop_body"));
if (!bbody)
return false;
/* enter */
2015-01-24 11:25:46 +00:00
func->m_curblock = bbody;
2015-01-24 11:25:46 +00:00
func->m_breakblocks.push_back(bbreak);
if (bcontinue)
2015-01-24 11:25:46 +00:00
func->m_continueblocks.push_back(bcontinue);
else
2015-01-24 11:25:46 +00:00
func->m_continueblocks.push_back(bbody);
/* generate */
2015-01-30 17:59:48 +00:00
if (m_body) {
if (!m_body->codegen(func, false, &dummy))
2012-11-30 20:34:49 +00:00
return false;
}
2015-01-24 11:25:46 +00:00
end_bbody = func->m_curblock;
func->m_breakblocks.pop_back();
func->m_continueblocks.pop_back();
}
/* post-loop-condition */
2015-01-30 17:59:48 +00:00
if (m_postcond)
{
/* enter */
2015-01-24 11:25:46 +00:00
func->m_curblock = bpostcond;
/* generate */
2015-01-30 17:59:48 +00:00
if (!m_postcond->codegen(func, false, &postcond))
return false;
2015-01-24 11:25:46 +00:00
end_bpostcond = func->m_curblock;
}
/* The incrementor */
2015-01-30 17:59:48 +00:00
if (m_increment)
{
/* enter */
2015-01-24 11:25:46 +00:00
func->m_curblock = bincrement;
/* generate */
2015-01-30 17:59:48 +00:00
if (!m_increment->codegen(func, false, &dummy))
return false;
2015-01-24 11:25:46 +00:00
end_bincrement = func->m_curblock;
}
/* In any case now, we continue from the outgoing block */
2015-01-24 11:25:46 +00:00
func->m_curblock = bout;
/* Now all blocks are in place */
/* From 'bin' we jump to whatever comes first */
if (bprecond) tmpblock = bprecond;
else tmpblock = bbody; /* can never be null */
2013-07-27 11:48:55 +00:00
/* DEAD CODE
else if (bpostcond) tmpblock = bpostcond;
else tmpblock = bout;
*/
2013-07-27 11:48:55 +00:00
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(bin, m_context, tmpblock))
return false;
/* From precond */
if (bprecond)
{
ir_block *ontrue, *onfalse;
ontrue = bbody; /* can never be null */
2013-07-27 11:48:55 +00:00
/* all of this is dead code
else if (bincrement) ontrue = bincrement;
else ontrue = bpostcond;
*/
onfalse = bout;
2015-01-30 17:59:48 +00:00
if (m_pre_not) {
tmpblock = ontrue;
ontrue = onfalse;
onfalse = tmpblock;
}
2015-01-30 17:59:48 +00:00
if (!ir_block_create_if(end_bprecond, m_context, precond, ontrue, onfalse))
return false;
}
/* from body */
if (bbody)
{
if (bincrement) tmpblock = bincrement;
else if (bpostcond) tmpblock = bpostcond;
else if (bprecond) tmpblock = bprecond;
else tmpblock = bbody;
2015-01-30 17:59:48 +00:00
if (!end_bbody->m_final && !ir_block_create_jump(end_bbody, m_context, tmpblock))
return false;
}
/* from increment */
if (bincrement)
{
if (bpostcond) tmpblock = bpostcond;
else if (bprecond) tmpblock = bprecond;
else if (bbody) tmpblock = bbody;
else tmpblock = bout;
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(end_bincrement, m_context, tmpblock))
return false;
}
/* from postcond */
if (bpostcond)
{
ir_block *ontrue, *onfalse;
if (bprecond) ontrue = bprecond;
else ontrue = bbody; /* can never be null */
2013-07-27 11:48:55 +00:00
/* all of this is dead code
else if (bincrement) ontrue = bincrement;
else ontrue = bpostcond;
*/
onfalse = bout;
2015-01-30 17:59:48 +00:00
if (m_post_not) {
tmpblock = ontrue;
ontrue = onfalse;
onfalse = tmpblock;
}
2015-01-30 17:59:48 +00:00
if (!ir_block_create_if(end_bpostcond, m_context, postcond, ontrue, onfalse))
return false;
}
/* 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());
// FIXME::DELME::
2015-01-30 17:59:48 +00:00
//func->m_ir_func->m_blocks[bout_id].release(); // it's a vector<std::unique_ptr<>>
2015-01-24 11:25:46 +00:00
//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);
return true;
2012-05-03 19:57:13 +00:00
}
2012-06-28 14:15:51 +00:00
2015-01-30 17:59:48 +00:00
bool ast_breakcont::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-11-19 18:39:52 +00:00
{
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-30 17:59:48 +00:00
compile_error(m_context, "break/continue expression is not an l-value");
2012-11-19 18:39:52 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
if (m_outr) {
compile_error(m_context, "internal error: ast_breakcont cannot be reused!");
2012-11-19 18:39:52 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
m_outr = (ir_value*)1;
2012-11-19 18:39:52 +00:00
2015-01-30 17:59:48 +00:00
if (m_is_continue)
target = func->m_continueblocks[func->m_continueblocks.size()-1-m_levels];
2012-11-19 18:39:52 +00:00
else
2015-01-30 17:59:48 +00:00
target = func->m_breakblocks[func->m_breakblocks.size()-1-m_levels];
2012-11-19 18:39:52 +00:00
if (!target) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "%s is lacking a target block", (m_is_continue ? "continue" : "break"));
return false;
}
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(func->m_curblock, m_context, target))
2012-11-19 18:39:52 +00:00
return false;
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_switch::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-11-19 20:17:44 +00:00
{
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;
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-30 17:59:48 +00:00
compile_error(m_context, "switch expression is not an l-value");
2012-11-19 20:17:44 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
if (m_outr) {
compile_error(m_context, "internal error: ast_switch cannot be reused!");
2012-11-19 20:17:44 +00:00
return false;
}
2015-01-30 17:59:48 +00:00
m_outr = (ir_value*)1;
2012-11-19 20:17:44 +00:00
(void)lvalue;
(void)out;
2015-01-30 17:59:48 +00:00
if (!m_operand->codegen(func, false, &irop))
2012-11-19 20:17:44 +00:00
return false;
2015-01-30 17:59:48 +00:00
if (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];
if (cmpinstr >= VINSTR_END) {
2015-01-30 17:59:48 +00:00
ast_type_to_string(m_operand, typestr, sizeof(typestr));
compile_error(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();
2015-01-30 17:59:48 +00:00
bout = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("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-30 17:59:48 +00:00
for (auto &it : 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 = &it;
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-30 17:59:48 +00:00
if (!swcase->m_value->codegen(func, false, &val))
2012-11-19 20:17:44 +00:00
return false;
/* generate the condition */
2015-01-30 17:59:48 +00:00
cond = ir_block_create_binop(func->m_curblock, m_context, func->makeLabel("switch_eq"), cmpinstr, irop, val);
2012-11-19 20:17:44 +00:00
if (!cond)
return false;
2015-01-30 17:59:48 +00:00
bcase = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("case"));
2015-01-24 11:25:46 +00:00
bnot_id = func->m_ir_func->m_blocks.size();
2015-01-30 17:59:48 +00:00
bnot = ir_function_create_block(m_context, func->m_ir_func, func->makeLabel("not_case"));
2012-11-19 20:17:44 +00:00
if (!bcase || !bnot)
return false;
if (set_def_bfall_to) {
set_def_bfall_to = false;
def_bfall_to = bcase;
}
2015-01-30 17:59:48 +00:00
if (!ir_block_create_if(func->m_curblock, 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) {
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(bfall, 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;
2015-01-30 17:59:48 +00:00
if (!swcase->m_code->codegen(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());
// 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;
/* And the next case will be remembered */
set_def_bfall_to = true;
2012-11-19 20:17:44 +00:00
}
}
/* Jump from the last bnot to bout */
2015-01-30 17:59:48 +00:00
if (bfall && !bfall->m_final && !ir_block_create_jump(bfall, m_context, bout)) {
/*
2015-01-24 11:25:46 +00:00
astwarning(bfall->m_context, WARN_???, "missing break after last case");
*/
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) {
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(def_bfall, m_context, bcase))
2012-11-19 20:17:44 +00:00
return false;
}
/* Now generate the default code */
2015-01-30 17:59:48 +00:00
if (!def_case->m_code->codegen(func, false, &dummy))
2012-11-19 20:17:44 +00:00
return false;
/* see if we need to fall through */
2015-01-24 11:25:46 +00:00
if (def_bfall_to && !func->m_curblock->m_final)
{
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(func->m_curblock, m_context, def_bfall_to))
return false;
}
2012-11-19 20:17:44 +00:00
}
/* Jump from the last bnot to bout */
2015-01-30 17:59:48 +00:00
if (!func->m_curblock->m_final && !ir_block_create_jump(func->m_curblock, m_context, bout))
2012-11-19 20:17:44 +00:00
return false;
/* 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());
// 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;
}
2015-01-30 17:59:48 +00:00
bool ast_label::codegen(ast_function *func, bool lvalue, ir_value **out)
{
ir_value *dummy;
2015-01-30 17:59:48 +00:00
if (m_undefined) {
compile_error(m_context, "internal error: ast_label never defined");
return false;
}
2015-01-15 20:18:33 +00:00
*out = nullptr;
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "internal error: ast_label cannot be an lvalue");
return false;
}
/* simply create a new block and jump to it */
2015-01-30 17:59:48 +00:00
m_irblock = ir_function_create_block(m_context, func->m_ir_func, m_name.c_str());
if (!m_irblock) {
compile_error(m_context, "failed to allocate label block `%s`", m_name);
return false;
}
2015-01-24 11:25:46 +00:00
if (!func->m_curblock->m_final) {
2015-01-30 17:59:48 +00:00
if (!ir_block_create_jump(func->m_curblock, m_context, m_irblock))
return false;
}
/* enter the new block */
2015-01-30 17:59:48 +00:00
func->m_curblock = m_irblock;
/* Generate all the leftover gotos */
2015-01-30 17:59:48 +00:00
for (auto &it : m_gotos) {
if (!it->codegen(func, false, &dummy))
return false;
}
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_goto::codegen(ast_function *func, bool lvalue, ir_value **out)
{
2015-01-15 20:18:33 +00:00
*out = nullptr;
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "internal error: ast_goto cannot be an lvalue");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_target->m_irblock) {
if (m_irblock_from) {
/* we already tried once, this is the callback */
2015-01-30 17:59:48 +00:00
m_irblock_from->m_final = false;
if (!ir_block_create_goto(m_irblock_from, m_context, m_target->m_irblock)) {
compile_error(m_context, "failed to generate goto to `%s`", m_name);
return false;
}
}
else
{
2015-01-30 17:59:48 +00:00
if (!ir_block_create_goto(func->m_curblock, m_context, m_target->m_irblock)) {
compile_error(m_context, "failed to generate goto to `%s`", m_name);
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;
2015-01-30 17:59:48 +00:00
m_irblock_from = func->m_curblock;
m_target->registerGoto(this);
}
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_state::codegen(ast_function *func, bool lvalue, ir_value **out)
{
ir_value *frameval, *thinkval;
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "not an l-value (state operation)");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_outr) {
compile_error(m_context, "internal error: ast_state cannot be reused!");
return false;
}
2015-01-15 20:18:33 +00:00
*out = nullptr;
2015-01-30 17:59:48 +00:00
if (!m_framenum->codegen(func, false, &frameval))
return false;
if (!frameval)
return false;
2015-01-30 17:59:48 +00:00
if (!m_nextthink->codegen(func, false, &thinkval))
return false;
if (!frameval)
return false;
2015-01-30 17:59:48 +00:00
if (!ir_block_create_state_op(func->m_curblock, m_context, frameval, thinkval)) {
compile_error(m_context, "failed to create STATE instruction");
return false;
}
2015-01-30 17:59:48 +00:00
m_outr = (ir_value*)1;
return true;
}
2015-01-30 17:59:48 +00:00
bool ast_call::codegen(ast_function *func, bool lvalue, ir_value **out)
2012-06-28 14:15:51 +00:00
{
2015-01-15 20:15:35 +00:00
std::vector<ir_value*> params;
ir_instr *callinstr;
2015-01-15 20:18:33 +00:00
ir_value *funval = nullptr;
/* return values are never lvalues */
if (lvalue) {
2015-01-30 17:59:48 +00:00
compile_error(m_context, "not an l-value (function call)");
return false;
}
2015-01-30 17:59:48 +00:00
if (m_outr) {
*out = m_outr;
return true;
}
2015-01-30 17:59:48 +00:00
if (!m_func->codegen(func, false, &funval))
return false;
if (!funval)
return false;
/* parameters */
2015-01-30 17:59:48 +00:00
for (auto &it : m_params) {
ir_value *param;
2015-01-30 17:59:48 +00:00
if (!it->codegen(func, false, &param))
2015-01-15 20:15:35 +00:00
return false;
if (!param)
2015-01-15 20:15:35 +00:00
return false;
params.push_back(param);
}
/* varargs counter */
2015-01-30 17:59:48 +00:00
if (m_va_count) {
ir_value *va_count;
2015-01-24 11:25:46 +00:00
ir_builder *builder = func->m_curblock->m_owner->m_owner;
2015-01-30 17:59:48 +00:00
if (!m_va_count->codegen(func, false, &va_count))
return false;
2015-01-30 17:59:48 +00:00
if (!ir_block_create_store_op(func->m_curblock, m_context, INSTR_STORE_F,
builder->get_va_count(), va_count))
{
return false;
}
}
2015-01-30 17:59:48 +00:00
callinstr = ir_block_create_call(func->m_curblock, m_context,
func->makeLabel("call"),
funval, !!(m_func->m_flags & AST_FLAG_NORETURN));
if (!callinstr)
2015-01-15 20:15:35 +00:00
return false;
2015-01-15 20:15:35 +00:00
for (auto &it : params)
ir_call_param(callinstr, it);
*out = ir_call_value(callinstr);
2015-01-30 17:59:48 +00:00
m_outr = *out;
2015-01-30 17:59:48 +00:00
codegen_output_type(this, *out);
return true;
2012-06-28 14:15:51 +00:00
}