From 20eab9fed9435ecf4d222cefc4487fc8a2f81fe3 Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 14 Jun 2022 18:19:04 -0400 Subject: core: centralize profile scope for Dynarmic --- src/core/arm/arm_interface.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/arm/arm_interface.cpp') diff --git a/src/core/arm/arm_interface.cpp b/src/core/arm/arm_interface.cpp index 9b5a5ca57..9a285dfc6 100644 --- a/src/core/arm/arm_interface.cpp +++ b/src/core/arm/arm_interface.cpp @@ -107,6 +107,7 @@ void ARM_Interface::Run() { } // Otherwise, run the thread. + system.EnterDynarmicProfile(); if (current_thread->GetStepState() == StepState::StepPending) { hr = StepJit(); @@ -116,6 +117,7 @@ void ARM_Interface::Run() { } else { hr = RunJit(); } + system.ExitDynarmicProfile(); // Notify the debugger and go to sleep if a breakpoint was hit. if (Has(hr, breakpoint)) { -- cgit v1.2.3