summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormerry <git@mary.rs>2022-04-02 22:05:49 +0200
committermerry <git@mary.rs>2022-04-02 23:22:48 +0200
commit979e53b87b5288c582392beff618da978ca4152c (patch)
tree791c5fdcc52e9650ebafce30ca4c51b317aa133f
parentatomic_ops: Implement AtomicCompareAndSwap with writeback (diff)
downloadyuzu-979e53b87b5288c582392beff618da978ca4152c.tar
yuzu-979e53b87b5288c582392beff618da978ca4152c.tar.gz
yuzu-979e53b87b5288c582392beff618da978ca4152c.tar.bz2
yuzu-979e53b87b5288c582392beff618da978ca4152c.tar.lz
yuzu-979e53b87b5288c582392beff618da978ca4152c.tar.xz
yuzu-979e53b87b5288c582392beff618da978ca4152c.tar.zst
yuzu-979e53b87b5288c582392beff618da978ca4152c.zip
-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 2a2664e5d..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 = Common::AtomicLoad128(time_point.pack.data());
_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 = Common::AtomicLoad128(time_point.pack.data());
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));
}
}