[subrepo]
remote = https://github.com/pcercuei/lightrec.git
branch = master
- commit = ea20362c9542f12fb6a0f27aa7df66b2af06b84d
- parent = 8847df50c67c19c605f60a109d30556b74d08eee
+ commit = 05f7e09e919327677454099664656e681f755ee5
+ parent = 60e75dbfc3a5c7278e5bf4bf39801ea8fbcf3892
method = merge
cmdver = 0.4.6
-cmake_minimum_required(VERSION 3.5)
+cmake_minimum_required(VERSION 3.10)
project(lightrec LANGUAGES C VERSION 0.9)
list(APPEND LIGHTREC_SOURCES
if (branch_in_ds) {
run_first_op = true;
- next_pc = pc + 4;
+
+ if (op->i.op == OP_SPECIAL)
+ next_pc = reg_cache[op->r.rs]; /* TODO: is it the old or new rs? */
+ else if (op->i.op == OP_J || op->i.op == OP_JAL)
+ next_pc = (pc & 0xf0000000) | (op->j.imm << 2);
+ else
+ next_pc = pc + 4 + ((s16)op->i.imm << 2);
}
if (load_in_ds && run_first_op) {
switch (op->i.op) {
case OP_J:
+ if (is_delay_slot(block->opcode_list, i)) {
+ /* Jumps in delay slots cannot be converted to
+ * branches, as they have a different behaviour
+ * there. */
+ continue;
+ }
+
/* Transform J opcode into BEQ $zero, $zero if possible. */
offset = (s32)((block->pc & 0xf0000000) >> 2 | op->j.imm)
- (s32)(block->pc >> 2) - (s32)i - 1;