[sparticle] 2d hud particles (#849)

* wip, taking a break to work on asm stuff first

* the goal code for sparticle

* mips2c the first sparticle asm function

* temp

* particle processing no longer crashing

* temp

* working texture cache for vi1 and hud textures

* sprites

* cleanup 1

* temp

* temp

* add zstd library

* temp

* working

* tests

* include fix

* uncomment

* better decomp of sparticle stuff, part 1

* update references
This commit is contained in:
water111
2021-09-26 11:41:58 -04:00
committed by GitHub
parent d777337095
commit f0ceea8b2e
158 changed files with 19773 additions and 44989 deletions
+297 -47
View File
@@ -1,12 +1,31 @@
#include <set>
#include "mips2c.h"
#include "common/util/print_float.h"
#include "decompiler/Disasm/InstructionMatching.h"
#include "decompiler/Function/Function.h"
#include "decompiler/ObjectFile/LinkedObjectFile.h"
/*!
* Mips2C:
* The mips2c analysis pass converts mips assembly into C code. It is a very literal translation.
* This relies on the helper functions in mips2c_private.h header.
*
* We generate a "link" function and an "execute" function. The "link" function performs symbol
* table lookups and saves the address of the slots in a cache structure used during runtime. It
* also allocates a stub function on the GOAL heap that jumps to the C++ function in the proper way.
*
* The "link" function should be called by the linker when the appropriate object file is linked.
* It should happen after GOAL linking, but before executing the top-level segment.
* This _only_ allocates a function, but doesn't set the symbol.
* You have to do that yourself, in the top level.
* This order seems weird and annoying, but it makes sure that we get the order of allocations
* right. It's likely that nothing depends on this, but better to be safe.
*
* The "execute" function is the function that should be called from GOAL.
*/
namespace decompiler {
//////////////////////
@@ -45,6 +64,10 @@ Register make_vf(int idx) {
return Register(Reg::VF, idx);
}
/*!
* Convert a GOAL symbol name to a valid C++ variable name.
* dashes become underscores, and !/?/ * are dropped.
*/
std::string goal_to_c_name(const std::string& name) {
std::string result;
for (auto c : name) {
@@ -61,6 +84,9 @@ std::string goal_to_c_name(const std::string& name) {
return result;
}
/*!
* Convert a decompiler function name to a valid C++ variable name.
*/
std::string goal_to_c_function_name(const FunctionName& name) {
switch (name.kind) {
case FunctionName::FunctionKind::GLOBAL:
@@ -70,11 +96,17 @@ std::string goal_to_c_function_name(const FunctionName& name) {
}
}
/*!
* Convert a decompiler register into the name of the register constant in mips2c_private.h
*/
const char* reg_to_name(const InstructionAtom& atom) {
assert(atom.is_reg());
return atom.get_reg().to_charp();
}
/*!
* A line of code in the mips2c function output. Just code + end of line comment.
*/
struct Mips2C_Line {
std::string code;
std::string comment;
@@ -85,14 +117,32 @@ struct Mips2C_Line {
: code(_code), comment(_comment) {}
};
/*!
* Mips2C output. Contains the execute and link function.
* This is built up in the order of MIPS instructions/labels/comments using the output_* functions.
* The output is built by write_to_string.
*/
struct Mips2C_Output {
/*!
* Add a label at the current line.
*/
void output_label(int block_idx) { lines.push_back(fmt::format("\nblock_{}:", block_idx)); }
/*!
* Add a full line comment at the current line. Includes "//" automatically
*/
void output_line_comment(const std::string& text) { lines.emplace_back("// " + text); }
/*!
* Output code and comment for an instruction.
*/
void output_instr(const std::string& instr, const std::string& comment) {
lines.emplace_back(instr, comment);
}
/*!
* Convert the output to a string.
*/
std::string write_to_string(const FunctionName& goal_func_name) const {
std::string name = goal_to_c_function_name(goal_func_name);
std::string result = "//--------------------------MIPS2C---------------------\n";
@@ -103,6 +153,7 @@ struct Mips2C_Output {
result += "namespace Mips2C {\n";
result += fmt::format("namespace {} {{\n", name);
// definition of the symbol cache.
if (!symbol_cache.empty()) {
result += "struct Cache {\n";
for (auto& sym : symbol_cache) {
@@ -111,9 +162,23 @@ struct Mips2C_Output {
result += "} cache;\n\n";
}
// definition of the function
// the mips2c_call function will build and pass an ExecutionContext
result += "u64 execute(void* ctxt) {\n";
result += " auto* c = (ExecutionContext*)ctxt;\n";
result += " bool bc = false;";
// the branch condition (for delay slots)
result += " bool bc = false;\n";
// the function call address (for jalr delay slots)
result += " u32 call_addr = 0;\n";
if (needs_cop1_bc) {
// the cop1 branch flag (separate from delay slot bc).
result += " bool cop1_bc = false;\n";
}
// add all lines
for (auto& line : lines) {
result += " ";
result += line.code;
@@ -130,14 +195,17 @@ struct Mips2C_Output {
result += '\n';
}
// return!
result += "end_of_function:\n return c->gprs[v0].du64[0];\n";
result += "}\n\n";
// link function:
result += "void link() {\n";
// lookup all symbols
for (auto& sym : symbol_cache) {
result += fmt::format(" cache.{} = intern_from_c(\"{}\").c();\n", goal_to_c_name(sym), sym);
}
// this adds us to a table for lookup later, and also allocates our trampoline.
result +=
fmt::format(" gLinkedFunctionTable.reg(\"{}\", execute);\n", goal_func_name.to_string());
result += "}\n\n";
@@ -145,6 +213,7 @@ struct Mips2C_Output {
result += fmt::format("}} // namespace {}\n", name);
result += "} // namespace Mips2C\n";
// reminder to the user to add a callback to the link function in the linker.
result +=
fmt::format("// add {}::link to the link callback table for the object file.\n", name);
result += "// FWD DEC:\n";
@@ -152,24 +221,31 @@ struct Mips2C_Output {
return result;
}
/*!
* Adds name to the symbol cache, if it's not there already.
*/
void require_symbol(const std::string& name) { symbol_cache.insert(name); }
std::vector<Mips2C_Line> lines;
std::set<std::string> symbol_cache;
bool needs_cop1_bc = false;
};
/*!
* Basic block used for mips2c.
*/
struct M2C_Block {
int idx = -1;
int succ_branch = -1;
int succ_ft = -1;
std::vector<int> pred;
int idx = -1; // block idx
int succ_branch = -1; // block idx if we take the branch
int succ_ft = -1; // block idx if we don't take the branch (or there is none)
std::vector<int> pred; // block idx of predecessors
int start_instr = -1;
int end_instr = -1;
int start_instr = -1; // first instruction idx
int end_instr = -1; // last instruction idx (not inclusive)
bool has_branch = false;
bool branch_likely = false;
bool branch_always = false;
bool has_branch = false; // ends in a branch instruction?
bool branch_likely = false; // that branch is likely branch?
bool branch_always = false; // that branch is always taken?
bool has_pred(int pidx) const {
for (auto p : pred) {
@@ -181,6 +257,9 @@ struct M2C_Block {
}
};
/*!
* Make second_idx be a fallthrough of first_idx.
*/
void link_fall_through(int first_idx, int second_idx, std::vector<M2C_Block>& blocks) {
auto& first = blocks.at(first_idx);
auto& second = blocks.at(second_idx);
@@ -198,6 +277,9 @@ void link_fall_through(int first_idx, int second_idx, std::vector<M2C_Block>& bl
}
}
/*!
* Make second_idx be the branch destination of first_idx.
*/
void link_branch(int first_idx, int second_idx, std::vector<M2C_Block>& blocks) {
auto& first = blocks.at(first_idx);
auto& second = blocks.at(second_idx);
@@ -210,6 +292,9 @@ void link_branch(int first_idx, int second_idx, std::vector<M2C_Block>& blocks)
}
}
/*!
* Make second_idx be the fall through of a likely branch (after the delay slot)
*/
void link_fall_through_likely(int first_idx, int second_idx, std::vector<M2C_Block>& blocks) {
auto& first = blocks.at(first_idx);
auto& second = blocks.at(second_idx);
@@ -236,7 +321,9 @@ void link_fall_through_likely(int first_idx, int second_idx, std::vector<M2C_Blo
* Otherwise, has_branch is true, and the succ_branch is taken if the branch condition is true.
* The succ_ft and succ_branch may be _anywhere_. succ_ft may not always be the next destination.
*/
std::vector<M2C_Block> setup_preds_and_succs(const Function& func, const LinkedObjectFile& file) {
std::vector<M2C_Block> setup_preds_and_succs(const Function& func,
const LinkedObjectFile& file,
std::unordered_set<int>& likely_delay_slot_blocks) {
// create m2c blocks
std::vector<M2C_Block> blocks;
blocks.resize(func.basic_blocks.size());
@@ -249,7 +336,13 @@ std::vector<M2C_Block> setup_preds_and_succs(const Function& func, const LinkedO
// set up succ / pred
for (int i = 0; i < int(func.basic_blocks.size()); i++) {
auto& b = func.basic_blocks[i];
assert(!blocks.at(i).branch_always);
if (blocks.at(i).branch_always) {
// likely branch, already set up.
assert(likely_delay_slot_blocks.count(i));
continue;
} else {
assert(!likely_delay_slot_blocks.count(i));
}
bool not_last = (i + 1) < int(func.basic_blocks.size());
if (b.end_word == b.start_word) {
@@ -306,7 +399,8 @@ std::vector<M2C_Block> setup_preds_and_succs(const Function& func, const LinkedO
delay_block.branch_likely = false;
delay_block.branch_always = true;
delay_block.has_branch = true;
// delay_block.kind = CfgVtx::DelaySlotKind::NO_DELAY;
auto inserted = likely_delay_slot_blocks.insert(i + 1).second;
assert(inserted);
link_branch(i + 1, block_target, blocks);
} else {
@@ -320,11 +414,9 @@ std::vector<M2C_Block> setup_preds_and_succs(const Function& func, const LinkedO
int idx = b.end_word - 2;
assert(idx >= b.start_word);
auto& branch_candidate = func.instructions.at(idx);
// auto& delay_slot_candidate = func.instructions.at(idx + 1);
if (is_branch(branch_candidate, false)) {
blocks.at(i).has_branch = true;
blocks.at(i).branch_likely = false;
// blocks.at(i).kind = get_delay_slot(delay_slot_candidate);
bool branch_always = is_always_branch(branch_candidate);
// need to find block target
@@ -337,10 +429,6 @@ std::vector<M2C_Block> setup_preds_and_succs(const Function& func, const LinkedO
int offset = label.offset / 4 - func.start_word;
assert(offset >= 0);
// the order here matters when there are zero size blocks. Unclear what the best answer
// is.
// i think in end it doesn't actually matter??
// for (int j = 0; j < int(func.basic_blocks.size()); j++) {
for (int j = int(func.basic_blocks.size()); j-- > 0;) {
if (func.basic_blocks[j].start_word == offset) {
block_target = j;
@@ -373,6 +461,9 @@ std::vector<M2C_Block> setup_preds_and_succs(const Function& func, const LinkedO
return blocks;
}
/*!
* Does the given block require a label in front of it?
*/
bool block_requires_label(const Function* f,
const std::vector<M2C_Block>& blocks,
size_t block_idx) {
@@ -388,26 +479,46 @@ bool block_requires_label(const Function* f,
if (block.pred.size() == 1 && block_idx > 0 && block.pred.front() == (int)block_idx - 1 &&
blocks.at(block_idx - 1).succ_ft == (int)block_idx) {
// the only way to get to this block is to fall through.
// the only way to get to this block is to fall through, no need for a label.
return false;
}
return true;
}
namespace {
// hack counter for total number of unknown instruction. TODO remove
int g_unknown = 0;
} // namespace
/*!
* Complain about an unknown instruction.
*/
Mips2C_Line handle_unknown(const std::string& instr_str) {
g_unknown++;
lg::warn("mips2c unknown: {}", instr_str);
return fmt::format("// Unknown instr: {}", instr_str);
}
Mips2C_Line handle_generic_load(const Instruction& i0, const std::string& instr_str) {
if (i0.get_src(1).is_reg(rsp())) {
return handle_unknown(instr_str);
} else {
return {fmt::format("c->{}({}, {}, {});", i0.op_name_to_string(), reg_to_name(i0.get_dst(0)),
i0.get_src(0).get_imm(), reg_to_name(i0.get_src(1))),
return {fmt::format("c->{}({}, {}, {});", i0.op_name_to_string(), reg_to_name(i0.get_dst(0)),
i0.get_src(0).get_imm(), reg_to_name(i0.get_src(1))),
instr_str};
}
Mips2C_Line handle_lwc1(const Instruction& i0,
const std::string& instr_str,
const LinkedObjectFile* file) {
if (i0.get_src(0).is_label() && i0.get_src(1).is_reg(Register(Reg::GPR, Reg::FP))) {
auto& label = file->labels.at(i0.get_src(0).get_label());
auto& word = file->words_by_seg.at(label.target_segment).at(label.offset / 4);
assert(word.kind == LinkedWord::PLAIN_DATA);
float f;
memcpy(&f, &word.data, 4);
return {fmt::format("c->fprs[{}] = {};", reg_to_name(i0.get_dst(0)), float_to_string(f)),
instr_str};
} else {
return handle_generic_load(i0, instr_str);
}
}
@@ -428,13 +539,9 @@ Mips2C_Line handle_lw(Mips2C_Output& out, const Instruction& i0, const std::stri
Mips2C_Line handle_generic_store(Mips2C_Output& /*out*/,
const Instruction& i0,
const std::string& instr_str) {
if (i0.get_src(2).is_reg(Register(Reg::GPR, Reg::SP))) {
return handle_unknown(instr_str);
} else {
return {fmt::format("c->{}({}, {}, {});", i0.op_name_to_string(), reg_to_name(i0.get_src(0)),
i0.get_src(1).get_imm(), reg_to_name(i0.get_src(2))),
instr_str};
}
return {fmt::format("c->{}({}, {}, {});", i0.op_name_to_string(), reg_to_name(i0.get_src(0)),
i0.get_src(1).get_imm(), reg_to_name(i0.get_src(2))),
instr_str};
}
Mips2C_Line handle_generic_op2_u16(const Instruction& i0, const std::string& instr_str) {
@@ -528,10 +635,12 @@ Mips2C_Line handle_generic_op2(const Instruction& i0,
Mips2C_Line handle_or(const Instruction& i0, const std::string& instr_str) {
if (is_gpr_3(i0, InstructionKind::OR, {}, rs7(), rr0())) {
// set reg_dest to #f : or reg_dest, s7, r0
return handle_unknown(instr_str);
return {
fmt::format("c->mov64({}, {});", reg_to_name(i0.get_dst(0)), reg_to_name(i0.get_src(0))),
instr_str};
} else if (is_gpr_3(i0, InstructionKind::OR, {}, rr0(), rr0())) {
// set reg_dest to 0 : or reg_dest, r0, r0
return handle_unknown(instr_str);
return {fmt::format("c->gprs[{}].du64[0] = 0;", reg_to_name(i0.get_dst(0))), instr_str};
} else if (is_gpr_3(i0, InstructionKind::OR, {}, {}, rr0())) {
// set dst to src : or dst, src, r0
return {
@@ -589,6 +698,25 @@ Mips2C_Line handle_non_likely_branch_bc(const Instruction& i0, const std::string
return {fmt::format("bc = ((s64){}) < 0;", reg64_or_zero(i0.get_src(0))), instr_str};
case InstructionKind::BGTZ:
return {fmt::format("bc = ((s64){}) > 0;", reg64_or_zero(i0.get_src(0))), instr_str};
case InstructionKind::BGEZ:
return {fmt::format("bc = ((s64){}) >= 0;", reg64_or_zero(i0.get_src(0))), instr_str};
case InstructionKind::BLEZ:
return {fmt::format("bc = ((s64){}) <= 0;", reg64_or_zero(i0.get_src(0))), instr_str};
case InstructionKind::BC1F:
return {fmt::format("bc = !cop1_bc;"), instr_str};
default:
return handle_unknown(instr_str);
}
}
Mips2C_Line handle_likely_branch_bc(const Instruction& i0, const std::string& instr_str) {
switch (i0.kind) {
case InstructionKind::BLTZL:
return {fmt::format("((s64){}) < 0", reg64_or_zero(i0.get_src(0))), instr_str};
case InstructionKind::BNEL:
return {fmt::format("((s64){}) != ((s64){})", reg64_or_zero(i0.get_src(0)),
reg64_or_zero(i0.get_src(1))),
instr_str};
default:
return handle_unknown(instr_str);
}
@@ -601,6 +729,29 @@ Mips2C_Line handle_vdiv(const Instruction& i0, const std::string& instr_string)
instr_string};
}
Mips2C_Line handle_vsqrt(const Instruction& i0, const std::string& instr_string) {
return {fmt::format("c->vsqrt({}, BC::{});", reg_to_name(i0.get_src(0)),
"xyzw"[i0.get_src(1).get_vf_field()]),
instr_string};
}
Mips2C_Line handle_vrxor(const Instruction& i0, const std::string& instr_string) {
return {fmt::format("c->vrxor({}, BC::{});", reg_to_name(i0.get_src(0)), i0.cop2_bc_to_char()),
instr_string};
}
Mips2C_Line handle_vrget(const Instruction& i0, const std::string& instr_string) {
return {fmt::format("c->vrget(DEST::{}, {});", dest_to_char(i0.cop2_dest),
reg_to_name(i0.get_dst(0))),
instr_string};
}
Mips2C_Line handle_vrnext(const Instruction& i0, const std::string& instr_string) {
return {fmt::format("c->vrnext(DEST::{}, {});", dest_to_char(i0.cop2_dest),
reg_to_name(i0.get_dst(0))),
instr_string};
}
Mips2C_Line handle_por(const Instruction& i0, const std::string& instr_string) {
if (is_gpr_3(i0, InstructionKind::POR, {}, {}, rr0())) {
return {fmt::format("c->mov128_gpr_gpr({}, {});", reg_to_name(i0.get_dst(0)),
@@ -611,10 +762,22 @@ Mips2C_Line handle_por(const Instruction& i0, const std::string& instr_string) {
}
}
Mips2C_Line handle_lui(const Instruction& i0, const std::string& instr_string) {
return {fmt::format("c->lui({}, {});", reg_to_name(i0.get_dst(0)), i0.get_src(0).get_imm()),
instr_string};
}
Mips2C_Line handle_clts(const Instruction& i0, const std::string& instr_string) {
return {fmt::format("cop1_bc = c->fprs[{}] < c->fprs[{}];", reg_to_name(i0.get_src(0)),
reg_to_name(i0.get_src(1))),
instr_string};
}
Mips2C_Line handle_normal_instr(Mips2C_Output& output,
const Instruction& i0,
const std::string& instr_str,
int& unknown_count) {
int& unknown_count,
const LinkedObjectFile* file) {
switch (i0.kind) {
case InstructionKind::LW:
return handle_lw(output, i0, instr_str);
@@ -622,12 +785,24 @@ Mips2C_Line handle_normal_instr(Mips2C_Output& output,
case InstructionKind::LWU:
case InstructionKind::LQ:
case InstructionKind::LQC2:
case InstructionKind::LH:
case InstructionKind::LHU:
case InstructionKind::LD:
return handle_generic_load(i0, instr_str);
case InstructionKind::LWC1:
return handle_lwc1(i0, instr_str, file);
case InstructionKind::SQ:
case InstructionKind::SQC2:
case InstructionKind::SH:
case InstructionKind::SD:
case InstructionKind::SWC1:
return handle_generic_store(output, i0, instr_str);
case InstructionKind::VADD_BC:
return handle_generic_op3_bc_mask(i0, instr_str, "vadd_bc");
case InstructionKind::VMINI_BC:
return handle_generic_op3_bc_mask(i0, instr_str, "vmini_bc");
case InstructionKind::VMAX_BC:
return handle_generic_op3_bc_mask(i0, instr_str, "vmax_bc");
case InstructionKind::VSUB_BC:
return handle_generic_op3_bc_mask(i0, instr_str, "vsub_bc");
case InstructionKind::VMUL_BC:
@@ -646,21 +821,43 @@ Mips2C_Line handle_normal_instr(Mips2C_Output& output,
return handle_generic_op2_mask(i0, instr_str, "vmove");
case InstructionKind::VITOF0:
return handle_generic_op2_mask(i0, instr_str, "vitof0");
case InstructionKind::VFTOI0:
return handle_generic_op2_mask(i0, instr_str, "vftoi0");
case InstructionKind::VFTOI4:
return handle_generic_op2_mask(i0, instr_str, "vftoi4");
case InstructionKind::VADDQ:
return handle_generic_op2_mask(i0, instr_str, "vaddq");
case InstructionKind::ANDI:
case InstructionKind::ORI:
case InstructionKind::SRA:
case InstructionKind::DSLL:
case InstructionKind::DSLL32:
case InstructionKind::DSRA:
case InstructionKind::DSRA32:
return handle_generic_op2_u16(i0, instr_str);
case InstructionKind::SLL:
return handle_sll(i0, instr_str);
case InstructionKind::DADDU:
case InstructionKind::DSUBU:
case InstructionKind::ADDU:
case InstructionKind::PEXTLH:
case InstructionKind::PEXTLB:
case InstructionKind::MOVN:
case InstructionKind::PEXTUW:
case InstructionKind::PCPYUD:
case InstructionKind::MOVZ:
case InstructionKind::MULT3:
case InstructionKind::PMINW:
case InstructionKind::PMAXW:
return handle_generic_op3(i0, instr_str, {});
case InstructionKind::MULS:
return handle_generic_op3(i0, instr_str, "muls");
case InstructionKind::ADDS:
return handle_generic_op3(i0, instr_str, "adds");
case InstructionKind::SUBS:
return handle_generic_op3(i0, instr_str, "subs");
case InstructionKind::XOR:
return handle_generic_op3(i0, instr_str, "xor_");
case InstructionKind::AND:
return handle_generic_op3(i0, instr_str, "and_"); // and isn't allowed in C++
case InstructionKind::DADDIU:
@@ -678,6 +875,14 @@ Mips2C_Line handle_normal_instr(Mips2C_Output& output,
return handle_generic_op3_bc_mask(i0, instr_str, "vmadd_bc");
case InstructionKind::VDIV:
return handle_vdiv(i0, instr_str);
case InstructionKind::VSQRT:
return handle_vsqrt(i0, instr_str);
case InstructionKind::VRXOR:
return handle_vrxor(i0, instr_str);
case InstructionKind::VRGET:
return handle_vrget(i0, instr_str);
case InstructionKind::VRNEXT:
return handle_vrnext(i0, instr_str);
case InstructionKind::POR:
return handle_por(i0, instr_str);
case InstructionKind::VMULQ:
@@ -686,6 +891,21 @@ Mips2C_Line handle_normal_instr(Mips2C_Output& output,
return {"// nop", instr_str};
case InstructionKind::MFC1:
return handle_generic_op2(i0, instr_str, "mfc1");
case InstructionKind::MTC1:
return handle_generic_op2(i0, instr_str, "mtc1");
case InstructionKind::CVTWS:
return handle_generic_op2(i0, instr_str, "cvtws");
case InstructionKind::CVTSW:
return handle_generic_op2(i0, instr_str, "cvtsw");
case InstructionKind::PEXEW:
return handle_generic_op2(i0, instr_str, "pexew");
case InstructionKind::SQRTS:
return handle_generic_op2(i0, instr_str, "sqrts");
case InstructionKind::LUI:
return handle_lui(i0, instr_str);
case InstructionKind::CLTS:
output.needs_cop1_bc = true;
return handle_clts(i0, instr_str);
default:
unknown_count++;
return handle_unknown(instr_str);
@@ -697,17 +917,20 @@ Mips2C_Line handle_normal_instr(Mips2C_Output& output,
void run_mips2c(Function* f) {
g_unknown = 0;
auto* file = f->ir2.env.file;
auto blocks = setup_preds_and_succs(*f, *file);
std::unordered_set<int> likely_delay_blocks;
auto blocks = setup_preds_and_succs(*f, *file, likely_delay_blocks);
Mips2C_Output output;
int unknown_count = 0;
for (size_t block_idx = 0; block_idx < blocks.size(); block_idx++) {
const auto& block = blocks[block_idx];
// fmt::print("block {}: {} to {}\n", block_idx, block.start_instr, block.end_instr);
if (likely_delay_blocks.count(block_idx)) {
continue;
}
if (block_requires_label(f, blocks, block_idx)) {
output.output_label(block_idx);
} else {
// output.comment_line("block {}",)
}
for (int i = block.start_instr; i < block.end_instr; i++) {
@@ -717,7 +940,22 @@ void run_mips2c(Function* f) {
if (is_branch(instr, {})) {
if (block.branch_likely) {
output.lines.push_back(handle_unknown(instr_str));
auto branch_line = handle_likely_branch_bc(instr, instr_str);
output.lines.emplace_back(fmt::format("if ({}) {{", branch_line.code),
branch_line.comment);
// next block should be the delay slot
assert((int)block_idx + 1 == block.succ_branch);
auto& delay_block = blocks.at(block.succ_branch);
assert(delay_block.end_instr - delay_block.start_instr == 1); // only 1 instr.
auto& delay_instr = f->instructions.at(delay_block.start_instr);
auto delay_instr_str = delay_instr.to_string(file->labels);
auto delay_instr_line =
handle_normal_instr(output, delay_instr, delay_instr_str, unknown_count, file);
output.lines.emplace_back(fmt::format(" {}", delay_instr_line.code),
delay_instr_line.comment);
assert(delay_block.succ_ft == -1);
output.lines.emplace_back(fmt::format(" goto block_{};", delay_block.succ_branch), "");
output.lines.emplace_back("}", "");
} else {
if (is_always_branch(instr)) {
// skip the branch ins.
@@ -728,7 +966,7 @@ void run_mips2c(Function* f) {
auto& delay_i = f->instructions.at(i);
auto delay_i_str = delay_i.to_string(file->labels);
output.lines.push_back(
handle_normal_instr(output, delay_i, delay_i_str, unknown_count));
handle_normal_instr(output, delay_i, delay_i_str, unknown_count, file));
assert(i + 1 == block.end_instr);
// then the goto
output.lines.emplace_back(fmt::format("goto block_{};", block.succ_branch),
@@ -742,7 +980,7 @@ void run_mips2c(Function* f) {
auto& delay_i = f->instructions.at(i);
auto delay_i_str = delay_i.to_string(file->labels);
output.lines.push_back(
handle_normal_instr(output, delay_i, delay_i_str, unknown_count));
handle_normal_instr(output, delay_i, delay_i_str, unknown_count, file));
assert(i + 1 == block.end_instr);
// then the goto
output.lines.emplace_back(fmt::format("if (bc) {{goto block_{};}}", block.succ_branch),
@@ -757,15 +995,27 @@ void run_mips2c(Function* f) {
i++;
auto& delay_i = f->instructions.at(i);
auto delay_i_str = delay_i.to_string(file->labels);
output.lines.push_back(handle_normal_instr(output, delay_i, delay_i_str, unknown_count));
assert(i + 1 == block.end_instr);
output.lines.push_back(
handle_normal_instr(output, delay_i, delay_i_str, unknown_count, file));
// then the goto
output.lines.emplace_back(fmt::format("goto end_of_function;", block.succ_branch),
"return\n");
} else if (instr.kind == InstructionKind::JALR) {
assert(instr.get_dst(0).is_reg(Register(Reg::GPR, Reg::RA)));
assert(i < block.end_instr - 1);
output.lines.emplace_back(
fmt::format("call_addr = c->gprs[{}].du32[0];", reg_to_name(instr.get_src(0))),
"function call:");
i++;
auto& delay_i = f->instructions.at(i);
auto delay_i_str = delay_i.to_string(file->labels);
output.lines.push_back(
handle_normal_instr(output, delay_i, delay_i_str, unknown_count, file));
output.lines.emplace_back("c->jalr(call_addr);", instr_str);
} else {
output.lines.push_back(handle_normal_instr(output, instr, instr_str, unknown_count));
output.lines.push_back(handle_normal_instr(output, instr, instr_str, unknown_count, file));
}
// fmt::print("I: {}\n", instr_str);
assert(output.lines.size() > old_line_count);
}