summaryrefslogtreecommitdiffstats
path: root/src/common/x64/native_clock.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-04-03 23:26:28 +0200
committerGitHub <noreply@github.com>2022-04-03 23:26:28 +0200
commite9cf2d43f1fb62dd06f9e8ef2e51cb43147ad808 (patch)
treeaa18db7afeb453c32f1c3e2eae328d059c39e490 /src/common/x64/native_clock.cpp
parentMerge pull request #8135 from Morph1984/websession-hack (diff)
parentnative_clock: Use writeback from CAS to avoid double-loading (diff)
downloadyuzu-e9cf2d43f1fb62dd06f9e8ef2e51cb43147ad808.tar
yuzu-e9cf2d43f1fb62dd06f9e8ef2e51cb43147ad808.tar.gz
yuzu-e9cf2d43f1fb62dd06f9e8ef2e51cb43147ad808.tar.bz2
yuzu-e9cf2d43f1fb62dd06f9e8ef2e51cb43147ad808.tar.lz
yuzu-e9cf2d43f1fb62dd06f9e8ef2e51cb43147ad808.tar.xz
yuzu-e9cf2d43f1fb62dd06f9e8ef2e51cb43147ad808.tar.zst
yuzu-e9cf2d43f1fb62dd06f9e8ef2e51cb43147ad808.zip
Diffstat (limited to '')
-rw-r--r--src/common/x64/native_clock.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/common/x64/native_clock.cpp b/src/common/x64/native_clock.cpp
index 347e41efc..7a3f21dcf 100644
--- a/src/common/x64/native_clock.cpp
+++ b/src/common/x64/native_clock.cpp
@@ -55,8 +55,9 @@ NativeClock::NativeClock(u64 emulated_cpu_frequency_, u64 emulated_clock_frequen
u64 NativeClock::GetRTSC() {
TimePoint new_time_point{};
TimePoint current_time_point{};
+
+ current_time_point.pack = Common::AtomicLoad128(time_point.pack.data());
do {
- current_time_point.pack = time_point.pack;
_mm_mfence();
const u64 current_measure = __rdtsc();
u64 diff = current_measure - current_time_point.inner.last_measure;
@@ -66,7 +67,7 @@ u64 NativeClock::GetRTSC() {
: current_time_point.inner.last_measure;
new_time_point.inner.accumulated_ticks = current_time_point.inner.accumulated_ticks + diff;
} while (!Common::AtomicCompareAndSwap(time_point.pack.data(), new_time_point.pack,
- current_time_point.pack));
+ current_time_point.pack, current_time_point.pack));
/// The clock cannot be more precise than the guest timer, remove the lower bits
return new_time_point.inner.accumulated_ticks & inaccuracy_mask;
}
@@ -75,13 +76,14 @@ void NativeClock::Pause(bool is_paused) {
if (!is_paused) {
TimePoint current_time_point{};
TimePoint new_time_point{};
+
+ current_time_point.pack = Common::AtomicLoad128(time_point.pack.data());
do {
- current_time_point.pack = time_point.pack;
new_time_point.pack = current_time_point.pack;
_mm_mfence();
new_time_point.inner.last_measure = __rdtsc();
} while (!Common::AtomicCompareAndSwap(time_point.pack.data(), new_time_point.pack,
- current_time_point.pack));
+ current_time_point.pack, current_time_point.pack));
}
}