2017-02-19 22:34:47 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-08-26 15:29:08 +00:00
|
|
|
#include <array>
|
2017-02-19 22:34:47 +00:00
|
|
|
#include <chrono>
|
2019-09-10 10:57:45 +00:00
|
|
|
#include <cstddef>
|
2017-02-20 21:56:58 +00:00
|
|
|
#include <mutex>
|
2017-02-19 22:34:47 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
struct PerfStatsResults {
|
|
|
|
/// System FPS (LCD VBlanks) in Hz
|
|
|
|
double system_fps;
|
|
|
|
/// Game FPS (GSP frame submissions) in Hz
|
|
|
|
double game_fps;
|
|
|
|
/// Walltime per system frame, in seconds, excluding any waits
|
|
|
|
double frametime;
|
|
|
|
/// Ratio of walltime / emulated time elapsed
|
|
|
|
double emulation_speed;
|
|
|
|
};
|
|
|
|
|
2017-02-20 21:56:58 +00:00
|
|
|
/**
|
|
|
|
* Class to manage and query performance/timing statistics. All public functions of this class are
|
|
|
|
* thread-safe unless stated otherwise.
|
|
|
|
*/
|
2017-02-19 22:34:47 +00:00
|
|
|
class PerfStats {
|
|
|
|
public:
|
2019-08-26 15:29:08 +00:00
|
|
|
explicit PerfStats(u64 title_id);
|
|
|
|
~PerfStats();
|
|
|
|
|
2017-02-19 22:34:47 +00:00
|
|
|
using Clock = std::chrono::high_resolution_clock;
|
|
|
|
|
|
|
|
void BeginSystemFrame();
|
|
|
|
void EndSystemFrame();
|
|
|
|
void EndGameFrame();
|
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
PerfStatsResults GetAndResetStats(std::chrono::microseconds current_system_time_us);
|
2017-02-19 22:34:47 +00:00
|
|
|
|
2019-08-26 15:29:08 +00:00
|
|
|
/**
|
2020-08-03 12:12:03 +00:00
|
|
|
* Returns the arithmetic mean of all frametime values stored in the performance history.
|
2019-08-26 15:29:08 +00:00
|
|
|
*/
|
2020-08-03 12:12:03 +00:00
|
|
|
double GetMeanFrametime() const;
|
2019-08-26 15:29:08 +00:00
|
|
|
|
2017-02-20 02:18:26 +00:00
|
|
|
/**
|
|
|
|
* Gets the ratio between walltime and the emulated time of the previous system frame. This is
|
|
|
|
* useful for scaling inputs or outputs moving between the two time domains.
|
|
|
|
*/
|
2020-08-03 12:12:03 +00:00
|
|
|
double GetLastFrameTimeScale() const;
|
2017-02-20 02:18:26 +00:00
|
|
|
|
2017-02-19 22:34:47 +00:00
|
|
|
private:
|
2020-08-03 12:12:03 +00:00
|
|
|
mutable std::mutex object_mutex;
|
2019-08-26 15:29:08 +00:00
|
|
|
|
|
|
|
/// Title ID for the game that is running. 0 if there is no game running yet
|
|
|
|
u64 title_id{0};
|
|
|
|
/// Current index for writing to the perf_history array
|
|
|
|
std::size_t current_index{0};
|
|
|
|
/// Stores an hour of historical frametime data useful for processing and tracking performance
|
|
|
|
/// regressions with code changes.
|
2020-08-03 12:12:03 +00:00
|
|
|
std::array<double, 216000> perf_history{};
|
2017-02-20 21:56:58 +00:00
|
|
|
|
2017-02-27 01:13:12 +00:00
|
|
|
/// Point when the cumulative counters were reset
|
2017-02-19 22:34:47 +00:00
|
|
|
Clock::time_point reset_point = Clock::now();
|
2017-02-27 01:13:12 +00:00
|
|
|
/// System time when the cumulative counters were reset
|
2018-08-06 02:07:28 +00:00
|
|
|
std::chrono::microseconds reset_point_system_us{0};
|
2017-02-19 22:34:47 +00:00
|
|
|
|
2017-02-27 01:13:12 +00:00
|
|
|
/// Cumulative duration (excluding v-sync/frame-limiting) of frames since last reset
|
2017-02-19 22:34:47 +00:00
|
|
|
Clock::duration accumulated_frametime = Clock::duration::zero();
|
2017-02-27 01:13:12 +00:00
|
|
|
/// Cumulative number of system frames (LCD VBlanks) presented since last reset
|
2017-02-19 22:34:47 +00:00
|
|
|
u32 system_frames = 0;
|
2017-02-27 01:13:12 +00:00
|
|
|
/// Cumulative number of game frames (GSP frame submissions) since last reset
|
2017-02-19 22:34:47 +00:00
|
|
|
u32 game_frames = 0;
|
2017-02-27 01:13:12 +00:00
|
|
|
|
|
|
|
/// Point when the previous system frame ended
|
|
|
|
Clock::time_point previous_frame_end = reset_point;
|
|
|
|
/// Point when the current system frame began
|
|
|
|
Clock::time_point frame_begin = reset_point;
|
|
|
|
/// Total visible duration (including frame-limiting, etc.) of the previous system frame
|
|
|
|
Clock::duration previous_frame_length = Clock::duration::zero();
|
2017-02-19 22:34:47 +00:00
|
|
|
};
|
|
|
|
|
2017-02-21 00:31:59 +00:00
|
|
|
class FrameLimiter {
|
|
|
|
public:
|
|
|
|
using Clock = std::chrono::high_resolution_clock;
|
|
|
|
|
2018-08-06 02:07:28 +00:00
|
|
|
void DoFrameLimiting(std::chrono::microseconds current_system_time_us);
|
2017-02-21 00:31:59 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// Emulated system time (in microseconds) at the last limiter invocation
|
2018-08-06 02:07:28 +00:00
|
|
|
std::chrono::microseconds previous_system_time_us{0};
|
2017-02-21 00:31:59 +00:00
|
|
|
/// Walltime at the last limiter invocation
|
|
|
|
Clock::time_point previous_walltime = Clock::now();
|
|
|
|
|
|
|
|
/// Accumulated difference between walltime and emulated time
|
|
|
|
std::chrono::microseconds frame_limiting_delta_err{0};
|
|
|
|
};
|
|
|
|
|
2017-02-19 22:34:47 +00:00
|
|
|
} // namespace Core
|