Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11077 from JosJuice/jitasm-no-breakpoint
Jit64: Remove breakpoint check from JitAsm.cpp
  • Loading branch information
AdmiralCurtiss committed Oct 16, 2022
2 parents cd1f89a + b9aed42 commit fbe782f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Source/Core/Core/PowerPC/Jit64/JitAsm.cpp
Expand Up @@ -91,16 +91,9 @@ void Jit64AsmRoutineManager::Generate()

if (enable_debugging)
{
MOV(64, R(RSCRATCH), ImmPtr(CPU::GetStatePtr()));
TEST(32, MatR(RSCRATCH), Imm32(static_cast<u32>(CPU::State::Stepping)));
FixupBranch notStepping = J_CC(CC_Z);
ABI_PushRegistersAndAdjustStack({}, 0);
ABI_CallFunction(PowerPC::CheckBreakPoints);
ABI_PopRegistersAndAdjustStack({}, 0);
MOV(64, R(RSCRATCH), ImmPtr(CPU::GetStatePtr()));
TEST(32, MatR(RSCRATCH), Imm32(0xFFFFFFFF));
dbg_exit = J_CC(CC_NZ, true);
SetJumpTarget(notStepping);
}

SetJumpTarget(skipToRealDispatch);
Expand Down

0 comments on commit fbe782f

Please sign in to comment.