2026-05-15 22:06:38 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
2026-01-16 23:39:16 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-02-09 16:53:22 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <chrono>
|
2020-02-10 11:20:40 -04:00
|
|
|
#include <memory>
|
2023-04-22 23:08:28 -04:00
|
|
|
#include <ratio>
|
2020-02-09 16:53:22 -04:00
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
|
|
class WallClock {
|
|
|
|
|
public:
|
2023-06-07 21:38:28 -04:00
|
|
|
static constexpr u64 CNTFRQ = 19'200'000; // CNTPCT_EL0 Frequency = 19.2 MHz
|
|
|
|
|
static constexpr u64 GPUTickFreq = 614'400'000; // GM20B GPU Tick Frequency = 614.4 MHz
|
|
|
|
|
static constexpr u64 CPUTickFreq = 1'020'000'000; // T210/4 A57 CPU Tick Frequency = 1020.0 MHz
|
2022-01-30 12:36:56 -05:00
|
|
|
|
2026-05-15 22:06:38 +02:00
|
|
|
explicit WallClock(bool invariant, u64 rdtsc_frequency_) noexcept;
|
2020-09-29 16:19:37 -03:00
|
|
|
|
2023-04-22 23:08:28 -04:00
|
|
|
/// @returns The time in nanoseconds since the construction of this clock.
|
2026-05-15 22:06:38 +02:00
|
|
|
std::chrono::nanoseconds GetTimeNS() const;
|
2020-02-10 11:20:40 -04:00
|
|
|
|
2023-04-22 23:08:28 -04:00
|
|
|
/// @returns The time in microseconds since the construction of this clock.
|
2026-05-15 22:06:38 +02:00
|
|
|
std::chrono::microseconds GetTimeUS() const;
|
2020-02-10 11:20:40 -04:00
|
|
|
|
2023-04-22 23:08:28 -04:00
|
|
|
/// @returns The time in milliseconds since the construction of this clock.
|
2026-05-15 22:06:38 +02:00
|
|
|
std::chrono::milliseconds GetTimeMS() const;
|
2020-02-10 11:20:40 -04:00
|
|
|
|
2023-04-22 23:08:28 -04:00
|
|
|
/// @returns The guest CNTPCT ticks since the construction of this clock.
|
2026-05-15 22:06:38 +02:00
|
|
|
s64 GetCNTPCT() const;
|
2020-02-10 11:20:40 -04:00
|
|
|
|
2023-05-28 17:45:47 -04:00
|
|
|
/// @returns The guest GPU ticks since the construction of this clock.
|
2026-05-15 22:06:38 +02:00
|
|
|
s64 GetGPUTick() const;
|
2023-05-28 17:45:47 -04:00
|
|
|
|
2023-04-22 23:08:28 -04:00
|
|
|
/// @returns The raw host timer ticks since an indeterminate epoch.
|
2026-05-15 22:06:38 +02:00
|
|
|
s64 GetUptime() const;
|
2020-02-25 12:28:55 -04:00
|
|
|
|
2023-04-22 23:08:28 -04:00
|
|
|
/// @returns Whether the clock directly uses the host's hardware clock.
|
2026-05-15 22:06:38 +02:00
|
|
|
bool IsNative() const;
|
2020-02-09 16:53:22 -04:00
|
|
|
|
2023-04-23 00:01:08 -04:00
|
|
|
static inline u64 NSToCNTPCT(u64 ns) {
|
|
|
|
|
return ns * NsToCNTPCTRatio::num / NsToCNTPCTRatio::den;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-28 17:45:47 -04:00
|
|
|
static inline u64 NSToGPUTick(u64 ns) {
|
|
|
|
|
return ns * NsToGPUTickRatio::num / NsToGPUTickRatio::den;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-07 21:38:28 -04:00
|
|
|
// Cycle Timing
|
|
|
|
|
|
|
|
|
|
static inline u64 CPUTickToNS(u64 cpu_tick) {
|
|
|
|
|
return cpu_tick * CPUTickToNsRatio::num / CPUTickToNsRatio::den;
|
2023-04-23 00:01:08 -04:00
|
|
|
}
|
|
|
|
|
|
2023-06-07 21:38:28 -04:00
|
|
|
static inline u64 CPUTickToUS(u64 cpu_tick) {
|
|
|
|
|
return cpu_tick * CPUTickToUsRatio::num / CPUTickToUsRatio::den;
|
2023-04-23 00:01:08 -04:00
|
|
|
}
|
|
|
|
|
|
2023-06-07 21:38:28 -04:00
|
|
|
static inline u64 CPUTickToCNTPCT(u64 cpu_tick) {
|
|
|
|
|
return cpu_tick * CPUTickToCNTPCTRatio::num / CPUTickToCNTPCTRatio::den;
|
2023-05-28 17:45:47 -04:00
|
|
|
}
|
|
|
|
|
|
2023-06-07 21:38:28 -04:00
|
|
|
static inline u64 CPUTickToGPUTick(u64 cpu_tick) {
|
|
|
|
|
return cpu_tick * CPUTickToGPUTickRatio::num / CPUTickToGPUTickRatio::den;
|
2023-05-28 17:45:47 -04:00
|
|
|
}
|
|
|
|
|
|
2020-02-09 16:53:22 -04:00
|
|
|
protected:
|
2023-04-22 23:08:28 -04:00
|
|
|
using NsRatio = std::nano;
|
|
|
|
|
using UsRatio = std::micro;
|
|
|
|
|
using MsRatio = std::milli;
|
2020-02-09 16:53:22 -04:00
|
|
|
|
2023-04-22 23:08:28 -04:00
|
|
|
using NsToUsRatio = std::ratio_divide<std::nano, std::micro>;
|
|
|
|
|
using NsToMsRatio = std::ratio_divide<std::nano, std::milli>;
|
|
|
|
|
using NsToCNTPCTRatio = std::ratio<CNTFRQ, std::nano::den>;
|
2023-05-28 17:45:47 -04:00
|
|
|
using NsToGPUTickRatio = std::ratio<GPUTickFreq, std::nano::den>;
|
2023-06-07 21:38:28 -04:00
|
|
|
|
|
|
|
|
// Cycle Timing
|
|
|
|
|
|
|
|
|
|
using CPUTickToNsRatio = std::ratio<std::nano::den, CPUTickFreq>;
|
|
|
|
|
using CPUTickToUsRatio = std::ratio<std::micro::den, CPUTickFreq>;
|
|
|
|
|
using CPUTickToCNTPCTRatio = std::ratio<CNTFRQ, CPUTickFreq>;
|
|
|
|
|
using CPUTickToGPUTickRatio = std::ratio<GPUTickFreq, CPUTickFreq>;
|
2026-05-15 22:06:38 +02:00
|
|
|
|
|
|
|
|
#if defined(ARCHITECTURE_x86_64)
|
|
|
|
|
bool invariant;
|
|
|
|
|
u64 rdtsc_frequency;
|
|
|
|
|
u64 ns_rdtsc_factor;
|
|
|
|
|
u64 us_rdtsc_factor;
|
|
|
|
|
u64 ms_rdtsc_factor;
|
|
|
|
|
u64 cntpct_rdtsc_factor;
|
|
|
|
|
u64 gputick_rdtsc_factor;
|
|
|
|
|
#elif defined(HAS_NCE)
|
|
|
|
|
public:
|
|
|
|
|
using FactorType = unsigned __int128;
|
|
|
|
|
|
|
|
|
|
FactorType GetGuestCNTFRQFactor() const {
|
|
|
|
|
return guest_cntfrq_factor;
|
|
|
|
|
}
|
|
|
|
|
protected:
|
|
|
|
|
FactorType ns_cntfrq_factor;
|
|
|
|
|
FactorType us_cntfrq_factor;
|
|
|
|
|
FactorType ms_cntfrq_factor;
|
|
|
|
|
FactorType guest_cntfrq_factor;
|
|
|
|
|
FactorType gputick_cntfrq_factor;
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
#endif
|
2020-02-09 16:53:22 -04:00
|
|
|
};
|
|
|
|
|
|
2026-05-15 22:06:38 +02:00
|
|
|
[[nodiscard]] WallClock CreateOptimalClock() noexcept;
|
2023-03-01 21:06:19 -05:00
|
|
|
|
2020-02-09 16:53:22 -04:00
|
|
|
} // namespace Common
|