summaryrefslogtreecommitdiffstats
path: root/src/common/wall_clock.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-02-02 02:34:31 +0100
committerGitHub <noreply@github.com>2022-02-02 02:34:31 +0100
commit50e9ba34b49a5440487529bece8cbf15b78f8df0 (patch)
tree48fc259e944baa16a401e52a25eb4eb6ac236d63 /src/common/wall_clock.cpp
parentMerge pull request #7831 from lioncash/motion (diff)
parentcommon: wall_clock: Check precision against the emulated CPU and CNTFRQ (diff)
downloadyuzu-50e9ba34b49a5440487529bece8cbf15b78f8df0.tar
yuzu-50e9ba34b49a5440487529bece8cbf15b78f8df0.tar.gz
yuzu-50e9ba34b49a5440487529bece8cbf15b78f8df0.tar.bz2
yuzu-50e9ba34b49a5440487529bece8cbf15b78f8df0.tar.lz
yuzu-50e9ba34b49a5440487529bece8cbf15b78f8df0.tar.xz
yuzu-50e9ba34b49a5440487529bece8cbf15b78f8df0.tar.zst
yuzu-50e9ba34b49a5440487529bece8cbf15b78f8df0.zip
Diffstat (limited to '')
-rw-r--r--src/common/wall_clock.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/common/wall_clock.cpp b/src/common/wall_clock.cpp
index ffa282e88..9acf7551e 100644
--- a/src/common/wall_clock.cpp
+++ b/src/common/wall_clock.cpp
@@ -65,16 +65,20 @@ private:
#ifdef ARCHITECTURE_x86_64
-std::unique_ptr<WallClock> CreateBestMatchingClock(u32 emulated_cpu_frequency,
- u32 emulated_clock_frequency) {
+std::unique_ptr<WallClock> CreateBestMatchingClock(u64 emulated_cpu_frequency,
+ u64 emulated_clock_frequency) {
const auto& caps = GetCPUCaps();
u64 rtsc_frequency = 0;
if (caps.invariant_tsc) {
rtsc_frequency = EstimateRDTSCFrequency();
}
- // Fallback to StandardWallClock if rtsc period is higher than a nano second
- if (rtsc_frequency <= 1000000000) {
+ // Fallback to StandardWallClock if the hardware TSC does not have the precision greater than:
+ // - A nanosecond
+ // - The emulated CPU frequency
+ // - The emulated clock counter frequency (CNTFRQ)
+ if (rtsc_frequency <= WallClock::NS_RATIO || rtsc_frequency <= emulated_cpu_frequency ||
+ rtsc_frequency <= emulated_clock_frequency) {
return std::make_unique<StandardWallClock>(emulated_cpu_frequency,
emulated_clock_frequency);
} else {
@@ -85,8 +89,8 @@ std::unique_ptr<WallClock> CreateBestMatchingClock(u32 emulated_cpu_frequency,
#else
-std::unique_ptr<WallClock> CreateBestMatchingClock(u32 emulated_cpu_frequency,
- u32 emulated_clock_frequency) {
+std::unique_ptr<WallClock> CreateBestMatchingClock(u64 emulated_cpu_frequency,
+ u64 emulated_clock_frequency) {
return std::make_unique<StandardWallClock>(emulated_cpu_frequency, emulated_clock_frequency);
}