2022-04-23 10:59:50 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-02-09 21:53:22 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <chrono>
|
2020-02-10 16:20:40 +01:00
|
|
|
#include <memory>
|
2023-04-23 05:08:28 +02:00
|
|
|
#include <ratio>
|
2020-02-09 21:53:22 +01:00
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
class WallClock {
|
|
|
|
public:
|
2023-06-08 03:38:28 +02: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 18:36:56 +01:00
|
|
|
|
2020-09-29 21:19:37 +02:00
|
|
|
virtual ~WallClock() = default;
|
|
|
|
|
2023-04-23 05:08:28 +02:00
|
|
|
/// @returns The time in nanoseconds since the construction of this clock.
|
|
|
|
virtual std::chrono::nanoseconds GetTimeNS() const = 0;
|
2020-02-10 16:20:40 +01:00
|
|
|
|
2023-04-23 05:08:28 +02:00
|
|
|
/// @returns The time in microseconds since the construction of this clock.
|
|
|
|
virtual std::chrono::microseconds GetTimeUS() const = 0;
|
2020-02-10 16:20:40 +01:00
|
|
|
|
2023-04-23 05:08:28 +02:00
|
|
|
/// @returns The time in milliseconds since the construction of this clock.
|
|
|
|
virtual std::chrono::milliseconds GetTimeMS() const = 0;
|
2020-02-10 16:20:40 +01:00
|
|
|
|
2023-04-23 05:08:28 +02:00
|
|
|
/// @returns The guest CNTPCT ticks since the construction of this clock.
|
2023-10-29 14:50:55 +01:00
|
|
|
virtual s64 GetCNTPCT() const = 0;
|
2020-02-10 16:20:40 +01:00
|
|
|
|
2023-05-28 23:45:47 +02:00
|
|
|
/// @returns The guest GPU ticks since the construction of this clock.
|
2023-10-29 14:50:55 +01:00
|
|
|
virtual s64 GetGPUTick() const = 0;
|
2023-05-28 23:45:47 +02:00
|
|
|
|
2023-04-23 05:08:28 +02:00
|
|
|
/// @returns The raw host timer ticks since an indeterminate epoch.
|
2023-10-29 14:50:55 +01:00
|
|
|
virtual s64 GetUptime() const = 0;
|
2020-02-25 17:28:55 +01:00
|
|
|
|
2023-04-23 05:08:28 +02:00
|
|
|
/// @returns Whether the clock directly uses the host's hardware clock.
|
|
|
|
virtual bool IsNative() const = 0;
|
2020-02-09 21:53:22 +01:00
|
|
|
|
2023-04-23 06:01:08 +02:00
|
|
|
static inline u64 NSToCNTPCT(u64 ns) {
|
|
|
|
return ns * NsToCNTPCTRatio::num / NsToCNTPCTRatio::den;
|
|
|
|
}
|
|
|
|
|
2023-05-28 23:45:47 +02:00
|
|
|
static inline u64 NSToGPUTick(u64 ns) {
|
|
|
|
return ns * NsToGPUTickRatio::num / NsToGPUTickRatio::den;
|
|
|
|
}
|
|
|
|
|
2023-06-08 03:38:28 +02:00
|
|
|
// Cycle Timing
|
|
|
|
|
|
|
|
static inline u64 CPUTickToNS(u64 cpu_tick) {
|
|
|
|
return cpu_tick * CPUTickToNsRatio::num / CPUTickToNsRatio::den;
|
2023-04-23 06:01:08 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 03:38:28 +02:00
|
|
|
static inline u64 CPUTickToUS(u64 cpu_tick) {
|
|
|
|
return cpu_tick * CPUTickToUsRatio::num / CPUTickToUsRatio::den;
|
2023-04-23 06:01:08 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 03:38:28 +02:00
|
|
|
static inline u64 CPUTickToCNTPCT(u64 cpu_tick) {
|
|
|
|
return cpu_tick * CPUTickToCNTPCTRatio::num / CPUTickToCNTPCTRatio::den;
|
2023-05-28 23:45:47 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 03:38:28 +02:00
|
|
|
static inline u64 CPUTickToGPUTick(u64 cpu_tick) {
|
|
|
|
return cpu_tick * CPUTickToGPUTickRatio::num / CPUTickToGPUTickRatio::den;
|
2023-05-28 23:45:47 +02:00
|
|
|
}
|
|
|
|
|
2020-02-09 21:53:22 +01:00
|
|
|
protected:
|
2023-04-23 05:08:28 +02:00
|
|
|
using NsRatio = std::nano;
|
|
|
|
using UsRatio = std::micro;
|
|
|
|
using MsRatio = std::milli;
|
2020-02-09 21:53:22 +01:00
|
|
|
|
2023-04-23 05:08:28 +02: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 23:45:47 +02:00
|
|
|
using NsToGPUTickRatio = std::ratio<GPUTickFreq, std::nano::den>;
|
2023-06-08 03:38:28 +02: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>;
|
2020-02-09 21:53:22 +01:00
|
|
|
};
|
|
|
|
|
2023-04-23 05:08:28 +02:00
|
|
|
std::unique_ptr<WallClock> CreateOptimalClock();
|
2020-02-09 21:53:22 +01:00
|
|
|
|
2023-04-23 05:08:28 +02:00
|
|
|
std::unique_ptr<WallClock> CreateStandardWallClock();
|
2023-03-02 03:06:19 +01:00
|
|
|
|
2020-02-09 21:53:22 +01:00
|
|
|
} // namespace Common
|