project64/Source/Project64-core/N64System/Profiling.h

31 lines
768 B
C
Raw Normal View History

2012-12-19 09:30:18 +00:00
#pragma once
2015-12-06 09:59:58 +00:00
#include <Project64-core/N64System/N64Types.h>
2016-10-02 21:46:05 +00:00
#include <Common/HighResTimeStamp.h>
class CProfiling
{
public:
2015-12-23 19:51:37 +00:00
CProfiling();
2016-10-02 21:46:05 +00:00
void RecordTime(PROFILE_TIMERS timer, uint32_t time);
2016-10-04 19:58:11 +00:00
uint64_t NonCPUTime(void);
2016-10-02 21:46:05 +00:00
// Recording timing against the current timer, returns the address of the timer stopped
2016-10-02 21:46:05 +00:00
PROFILE_TIMERS StartTimer(PROFILE_TIMERS TimerType);
PROFILE_TIMERS StopTimer();
// Display the CPU usage
2015-12-23 19:51:37 +00:00
void ShowCPU_Usage();
2016-10-02 21:46:05 +00:00
void ResetTimers(void);
private:
CProfiling(const CProfiling&);
CProfiling& operator=(const CProfiling&);
2015-12-23 19:51:37 +00:00
uint32_t m_CurrentDisplayCount;
2016-10-02 21:46:05 +00:00
PROFILE_TIMERS m_CurrentTimerType;
HighResTimeStamp m_StartTime;
uint64_t m_Timers[Timer_Max];
};