if (param &&
self->locals_count &&
self->locals[self->locals_count-1]->store != store_param) {
- irerror(self->context, "cannot add parameters after adding locals\n");
+ irerror(self->context, "cannot add parameters after adding locals");
return NULL;
}
}
else
{
- irerror(self->context, "invalid member access on %s\n", self->name);
+ irerror(self->context, "invalid member access on %s", self->name);
return NULL;
}
if (target->store == store_value &&
(op < INSTR_STOREP_F || op > INSTR_STOREP_FNC))
{
- irerror(self->context, "cannot store to an SSA value\n");
- irerror(self->context, "trying to store: %s <- %s\n", target->name, what->name);
- irerror(self->context, "instruction: %s\n", asm_instr[op].m);
+ irerror(self->context, "cannot store to an SSA value");
+ irerror(self->context, "trying to store: %s <- %s", target->name, what->name);
+ irerror(self->context, "instruction: %s", asm_instr[op].m);
return false;
}
{
ir_instr *in;
if (self->final) {
- irerror(self->context, "block already ended (%s)\n", self->label);
+ irerror(self->context, "block already ended (%s)", self->label);
return false;
}
self->final = true;
{
ir_instr *in;
if (self->final) {
- irerror(self->context, "block already ended (%s)\n", self->label);
+ irerror(self->context, "block already ended (%s)", self->label);
return false;
}
self->final = true;
{
ir_instr *in;
if (self->final) {
- irerror(self->context, "block already ended (%s)\n", self->label);
+ irerror(self->context, "block already ended (%s)", self->label);
return false;
}
self->final = true;
{
ir_instr *in;
if (self->final) {
- irerror(self->context, "block already ended (%s)\n", self->label);
+ irerror(self->context, "block already ended (%s)", self->label);
return false;
}
self->final = true;
/* Must not be possible to cause this, otherwise the AST
* is doing something wrong.
*/
- irerror(self->context, "Invalid entry block for PHI\n");
+ irerror(self->context, "Invalid entry block for PHI");
abort();
}
tempbool = ir_value_life_merge(self->living[i], eid);
/* debug
if (tempbool)
- irerror(self->context, "block_living_add_instr() value instruction added %s: %i\n", self->living[i]->_name, (int)eid);
+ irerror(self->context, "block_living_add_instr() value instruction added %s: %i", self->living[i]->_name, (int)eid);
*/
changed = changed || tempbool;
}
if (!ir_block_living_add(self, prev->living[i]))
return false;
/*
- irerror(self->contextt from prev: %s\n", self->label, prev->living[i]->_name);
+ irerror(self->contextt from prev: %s", self->label, prev->living[i]->_name);
*/
}
return true;
{
ir_value *fld = global->constval.vpointer;
if (!fld) {
- irerror(global->context, "Invalid field constant with no field: %s\n", global->name);
+ irerror(global->context, "Invalid field constant with no field: %s", global->name);
return false;
}
* for functions... might as well support that here.
*/
if (!fld->code.globaladdr) {
- irerror(global->context, "FIXME: Relocation support\n");
+ irerror(global->context, "FIXME: Relocation support");
return false;
}
{
ir_value *target = global->constval.vpointer;
if (!target) {
- irerror(global->context, "Invalid pointer constant: %s\n", global->name);
+ irerror(global->context, "Invalid pointer constant: %s", global->name);
/* NULL pointers are pointing to the NULL constant, which also
* sits at address 0, but still has an ir_value for itself.
*/
/* FIXME: Check for the constant nullptr ir_value!
* because then code.globaladdr being 0 is valid.
*/
- irerror(global->context, "FIXME: Relocation support\n");
+ irerror(global->context, "FIXME: Relocation support");
return false;
}
instr = block->instr[i];
if (instr->opcode == VINSTR_PHI) {
- irerror(block->context, "cannot generate virtual instruction (phi)\n");
+ irerror(block->context, "cannot generate virtual instruction (phi)");
return false;
}
}
if (instr->opcode == INSTR_STATE) {
- irerror(block->context, "TODO: state instruction\n");
+ irerror(block->context, "TODO: state instruction");
return false;
}
* for now. Dead blocks will not be translated obviously.
*/
if (!self->blocks_count) {
- irerror(self->context, "Function '%s' declared without body.\n", self->name);
+ irerror(self->context, "Function '%s' declared without body.", self->name);
return false;
}
return true;
if (!gen_blocks_recursive(self, block)) {
- irerror(self->context, "failed to generate blocks for '%s'\n", self->name);
+ irerror(self->context, "failed to generate blocks for '%s'", self->name);
return false;
}
if (!global->isconst || (!global->constval.vfunc))
{
- irerror(global->context, "Invalid state of function-global: not constant: %s\n", global->name);
+ irerror(global->context, "Invalid state of function-global: not constant: %s", global->name);
return false;
}
return true;
default:
/* refuse to create 'void' type or any other fancy business. */
- irerror(global->context, "Invalid type for global variable `%s`: %s\n",
+ irerror(global->context, "Invalid type for global variable `%s`: %s",
global->name, type_name[global->vtype]);
return false;
}
* bytes is more than enough for a variable/field name
*/
if (len+2 >= sizeof(name)) {
- irerror(field->context, "invalid field name size: %u\n", (unsigned int)len);
+ irerror(field->context, "invalid field name size: %u", (unsigned int)len);
return false;
}
fld.type = field->fieldtype;
if (fld.type == TYPE_VOID) {
- irerror(field->context, "field is missing a type: %s - don't know its size\n", field->name);
+ irerror(field->context, "field is missing a type: %s - don't know its size", field->name);
return false;
}