diff options
author | bunnei <bunneidev@gmail.com> | 2022-10-04 20:08:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 20:08:02 -0700 |
commit | fc0ace6048a12ba15b873ad9d633ed7cfa11f070 (patch) | |
tree | 0a4b917eedca70acd990287e1220e521fcbc8b4d /src/video_core/macro | |
parent | 92c0ad23eb3336d7f395968ace9aa4cd18e1d1b5 (diff) | |
parent | b80f7faebe83864b7c1f53a5cc4fc22b9901c853 (diff) |
Merge pull request #9005 from liamwhite/micro-fit
macro_jit_x64: cancel exit for taken branch
Diffstat (limited to 'src/video_core/macro')
-rw-r--r-- | src/video_core/macro/macro_jit_x64.cpp | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/src/video_core/macro/macro_jit_x64.cpp b/src/video_core/macro/macro_jit_x64.cpp index 3b55228b9..a302a9603 100644 --- a/src/video_core/macro/macro_jit_x64.cpp +++ b/src/video_core/macro/macro_jit_x64.cpp @@ -401,17 +401,11 @@ void MacroJITx64Impl::Compile_Branch(Macro::Opcode opcode) { Xbyak::Label handle_post_exit{}; Xbyak::Label skip{}; jmp(skip, T_NEAR); - if (opcode.is_exit) { - L(handle_post_exit); - // Execute 1 instruction - mov(BRANCH_HOLDER, end_of_code); - // Jump to next instruction to skip delay slot check - jmp(labels[jump_address], T_NEAR); - } else { - L(handle_post_exit); - xor_(BRANCH_HOLDER, BRANCH_HOLDER); - jmp(labels[jump_address], T_NEAR); - } + + L(handle_post_exit); + xor_(BRANCH_HOLDER, BRANCH_HOLDER); + jmp(labels[jump_address], T_NEAR); + L(skip); mov(BRANCH_HOLDER, handle_post_exit); jmp(delay_skip[pc], T_NEAR); |