2014-11-19 18:57:12 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-11-19 18:57:12 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <list>
|
2015-08-20 09:41:49 +00:00
|
|
|
#include <mutex>
|
2014-11-19 18:57:12 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "CommonTypes.h"
|
|
|
|
|
2015-08-20 09:41:49 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2014-11-19 18:57:12 +00:00
|
|
|
class Profiler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Profiler(const std::string& name);
|
|
|
|
~Profiler();
|
|
|
|
|
|
|
|
static std::string ToString();
|
|
|
|
|
|
|
|
void Start();
|
|
|
|
void Stop();
|
|
|
|
std::string Read();
|
|
|
|
|
2015-08-20 09:41:49 +00:00
|
|
|
bool operator<(const Profiler& b) const;
|
|
|
|
|
2014-11-19 18:57:12 +00:00
|
|
|
private:
|
|
|
|
static std::list<Profiler*> s_all_profilers;
|
2015-08-20 09:41:49 +00:00
|
|
|
static std::mutex s_mutex;
|
2014-11-19 18:57:12 +00:00
|
|
|
static u32 s_max_length;
|
|
|
|
static u64 s_frame_time;
|
|
|
|
static u64 s_usecs_frame;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2014-11-19 18:57:12 +00:00
|
|
|
static std::string s_lazy_result;
|
|
|
|
static int s_lazy_delay;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2014-11-19 18:57:12 +00:00
|
|
|
std::string m_name;
|
|
|
|
u64 m_usecs;
|
|
|
|
u64 m_usecs_min;
|
|
|
|
u64 m_usecs_max;
|
|
|
|
u64 m_usecs_quad;
|
|
|
|
u64 m_calls;
|
|
|
|
u64 m_time;
|
|
|
|
int m_depth;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ProfilerExecuter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProfilerExecuter(Profiler* _p) : m_p(_p) { m_p->Start(); }
|
|
|
|
~ProfilerExecuter() { m_p->Stop(); }
|
2018-04-12 12:18:04 +00:00
|
|
|
|
2014-11-19 18:57:12 +00:00
|
|
|
private:
|
|
|
|
Profiler* m_p;
|
|
|
|
};
|
2024-08-18 13:08:44 +00:00
|
|
|
} // namespace Common
|
2015-08-20 09:41:49 +00:00
|
|
|
|
2014-11-19 18:57:12 +00:00
|
|
|
// Warning: This profiler isn't thread safe. Only profile functions which doesn't run simultaneously
|
2015-08-20 09:41:49 +00:00
|
|
|
#define PROFILE(name) \
|
|
|
|
static Common::Profiler prof_gen(name); \
|
|
|
|
Common::ProfilerExecuter prof_e(&prof_gen);
|