x86/iR5900: Use event test to break execution on exit

Particularly relevant for TLB misses, we want to stop execution as soon
as possible.
This commit is contained in:
Stenzek 2023-01-26 01:07:53 +10:00 committed by refractionpcsx2
parent d12fa690c0
commit 00c158387b
1 changed files with 19 additions and 22 deletions

View File

@ -666,19 +666,6 @@ static void recShutdown()
Perf::dump();
}
static void recResetEE()
{
if (eeCpuExecuting)
{
// get outta here as soon as we can
eeRecNeedsReset = true;
eeRecExitRequested = true;
return;
}
recResetRaw();
}
void recStep()
{
}
@ -687,11 +674,6 @@ static fastjmp_buf m_SetJmp_StateCheck;
static void recExitExecution()
{
// Without SEH we'll need to hop to a safehouse point outside the scope of recompiled
// code. C++ exceptions can't cross the mighty chasm in the stackframe that the recompiler
// creates. However, the longjump is slow so we only want to do one when absolutely
// necessary:
fastjmp_jmp(&m_SetJmp_StateCheck, 1);
}
@ -699,10 +681,25 @@ static void recSafeExitExecution()
{
// If we're currently processing events, we can't safely jump out of the recompiler here, because we'll
// leave things in an inconsistent state. So instead, we flag it for exiting once cpuEventTest() returns.
if (eeEventTestIsActive)
eeRecExitRequested = true;
else
recExitExecution();
// Exiting in the middle of a rec block with the registers unsaved would be a bad idea too..
eeRecExitRequested = true;
// Force an event test at the end of this block.
if (!eeEventTestIsActive)
cpuRegs.nextEventCycle = 0;
}
static void recResetEE()
{
if (eeCpuExecuting)
{
// get outta here as soon as we can
eeRecNeedsReset = true;
recSafeExitExecution();
return;
}
recResetRaw();
}
static void recCancelInstruction()