summaryrefslogtreecommitdiffstats
path: root/src/core/cpu_manager.cpp
diff options
context:
space:
mode:
authorMai <mathew1800@gmail.com>2022-06-15 03:07:47 +0200
committerGitHub <noreply@github.com>2022-06-15 03:07:47 +0200
commitc9de5474bfb7543a01337b73c33c4bf3b76e276e (patch)
tree7f9899bf3621fd4be5d7ef224a4c1f113aa2862e /src/core/cpu_manager.cpp
parentMerge pull request #8461 from Morph1984/msvc-narrow-conv (diff)
parentcore: centralize profile scope for Dynarmic (diff)
downloadyuzu-c9de5474bfb7543a01337b73c33c4bf3b76e276e.tar
yuzu-c9de5474bfb7543a01337b73c33c4bf3b76e276e.tar.gz
yuzu-c9de5474bfb7543a01337b73c33c4bf3b76e276e.tar.bz2
yuzu-c9de5474bfb7543a01337b73c33c4bf3b76e276e.tar.lz
yuzu-c9de5474bfb7543a01337b73c33c4bf3b76e276e.tar.xz
yuzu-c9de5474bfb7543a01337b73c33c4bf3b76e276e.tar.zst
yuzu-c9de5474bfb7543a01337b73c33c4bf3b76e276e.zip
Diffstat (limited to '')
-rw-r--r--src/core/cpu_manager.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/cpu_manager.cpp b/src/core/cpu_manager.cpp
index b4718fbbe..132fe5b60 100644
--- a/src/core/cpu_manager.cpp
+++ b/src/core/cpu_manager.cpp
@@ -113,12 +113,10 @@ void CpuManager::MultiCoreRunGuestLoop() {
while (true) {
auto* physical_core = &kernel.CurrentPhysicalCore();
- system.EnterDynarmicProfile();
while (!physical_core->IsInterrupted()) {
physical_core->Run();
physical_core = &kernel.CurrentPhysicalCore();
}
- system.ExitDynarmicProfile();
{
Kernel::KScopedDisableDispatch dd(kernel);
physical_core->ArmInterface().ClearExclusiveState();
@@ -166,12 +164,10 @@ void CpuManager::SingleCoreRunGuestLoop() {
auto& kernel = system.Kernel();
while (true) {
auto* physical_core = &kernel.CurrentPhysicalCore();
- system.EnterDynarmicProfile();
if (!physical_core->IsInterrupted()) {
physical_core->Run();
physical_core = &kernel.CurrentPhysicalCore();
}
- system.ExitDynarmicProfile();
kernel.SetIsPhantomModeForSingleCore(true);
system.CoreTiming().Advance();
kernel.SetIsPhantomModeForSingleCore(false);