Make sure the JitInterface's WriteProfileResults instruction pauses and resumes the CPU core.
This commit is contained in:
parent
2fa29ae8bb
commit
0da086e389
|
@ -120,6 +120,10 @@ namespace JitInterface
|
|||
if (!jit)
|
||||
return;
|
||||
|
||||
PowerPC::CPUState old_state = PowerPC::GetState();
|
||||
if (old_state == PowerPC::CPUState::CPU_RUNNING)
|
||||
PowerPC::Pause();
|
||||
|
||||
std::vector<BlockStat> stats;
|
||||
stats.reserve(jit->GetBlockCache()->GetNumBlocks());
|
||||
u64 cost_sum = 0;
|
||||
|
@ -161,6 +165,9 @@ namespace JitInterface
|
|||
(double)block->ticCounter*1000.0/(double)countsPerSec, block->codeSize);
|
||||
}
|
||||
}
|
||||
|
||||
if (old_state == PowerPC::CPUState::CPU_RUNNING)
|
||||
PowerPC::Start();
|
||||
}
|
||||
bool HandleFault(uintptr_t access_address, SContext* ctx)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue