Don't enable stepping on ARMv7 JIT core if just in the debugger.
Also makes sure we aren't profiling CPU run times unless we are actually profiling.
This commit is contained in:
parent
c048691a57
commit
85605389d7
|
@ -307,9 +307,13 @@ const u8* JitArm::DoJit(u32 em_address, PPCAnalyst::CodeBuffer *code_buf, JitBlo
|
||||||
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bEnableDebugging)
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bEnableDebugging)
|
||||||
{
|
{
|
||||||
// Comment out the following to disable breakpoints (speed-up)
|
// Comment out the following to disable breakpoints (speed-up)
|
||||||
|
if (!Profiler::g_ProfileBlocks)
|
||||||
|
{
|
||||||
|
if (PowerPC::GetState() == PowerPC::CPU_STEPPING)
|
||||||
blockSize = 1;
|
blockSize = 1;
|
||||||
Trace();
|
Trace();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (em_address == 0)
|
if (em_address == 0)
|
||||||
{
|
{
|
||||||
|
@ -444,7 +448,7 @@ const u8* JitArm::DoJit(u32 em_address, PPCAnalyst::CodeBuffer *code_buf, JitBlo
|
||||||
POP(4, R0, R1, R2, R3);
|
POP(4, R0, R1, R2, R3);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bEnableDebugging)
|
if (Profiler::g_ProfileBlocks)
|
||||||
{
|
{
|
||||||
// Add run count
|
// Add run count
|
||||||
static const u64 One = 1;
|
static const u64 One = 1;
|
||||||
|
|
Loading…
Reference in New Issue