From: Paul Cercueil Date: Wed, 8 Jan 2025 14:29:46 +0000 (+0100) Subject: git subrepo pull --force deps/lightrec X-Git-Tag: r25l~15^2~1 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2476185f02635f2638bd9f66568e992c2f6b71c2;p=pcsx_rearmed.git git subrepo pull --force deps/lightrec subrepo: subdir: "deps/lightrec" merged: "05f7e09e919" upstream: origin: "https://github.com/pcercuei/lightrec.git" branch: "master" commit: "05f7e09e919" git-subrepo: version: "0.4.6" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "110b9eb" --- diff --git a/deps/lightrec/.gitrepo b/deps/lightrec/.gitrepo index 0d3c14bf..5045b807 100644 --- a/deps/lightrec/.gitrepo +++ b/deps/lightrec/.gitrepo @@ -6,7 +6,7 @@ [subrepo] remote = https://github.com/pcercuei/lightrec.git branch = master - commit = ea20362c9542f12fb6a0f27aa7df66b2af06b84d - parent = 8847df50c67c19c605f60a109d30556b74d08eee + commit = 05f7e09e919327677454099664656e681f755ee5 + parent = 60e75dbfc3a5c7278e5bf4bf39801ea8fbcf3892 method = merge cmdver = 0.4.6 diff --git a/deps/lightrec/CMakeLists.txt b/deps/lightrec/CMakeLists.txt index 6f3d53e7..1556fb8c 100644 --- a/deps/lightrec/CMakeLists.txt +++ b/deps/lightrec/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) project(lightrec LANGUAGES C VERSION 0.9) list(APPEND LIGHTREC_SOURCES diff --git a/deps/lightrec/interpreter.c b/deps/lightrec/interpreter.c index 4267bec2..c0a5d54d 100644 --- a/deps/lightrec/interpreter.c +++ b/deps/lightrec/interpreter.c @@ -204,7 +204,13 @@ static u32 int_delay_slot(struct interpreter *inter, u32 pc, bool branch) 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) { diff --git a/deps/lightrec/optimizer.c b/deps/lightrec/optimizer.c index 991ef778..035e52bc 100644 --- a/deps/lightrec/optimizer.c +++ b/deps/lightrec/optimizer.c @@ -731,6 +731,13 @@ static int lightrec_transform_branches(struct lightrec_state *state, 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;