mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: fallback to the interpreter if bad register allocation
This commit is contained in:
parent
796f831296
commit
a4c37d7f51
|
@ -1479,13 +1479,10 @@ void recompileNextInstruction(int delayslot)
|
|||
try {
|
||||
opcode.recompile();
|
||||
} catch (Exception::FailedToAllocateRegister&) {
|
||||
// TODO: fallback to interpreter
|
||||
// Fall back to the interpreter
|
||||
recCall(opcode.interpret);
|
||||
#if 0
|
||||
iFlushCall(FLUSH_INTERPRETER);
|
||||
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::MMI::PMFHL );
|
||||
#endif
|
||||
// TODO: Free register ?
|
||||
#if 0
|
||||
// _freeXMMregs();
|
||||
// _freeMMXregs();
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue