obs-studio/libobs/util/profiler.hpp

48 lines
990 B
C++
Raw Normal View History

2015-07-10 23:01:04 -07:00
#pragma once
#include "profiler.h"
struct ScopeProfiler {
const char *name;
bool enabled = true;
ScopeProfiler(const char *name) : name(name) { profile_start(name); }
2015-07-10 23:01:04 -07:00
~ScopeProfiler() { Stop(); }
ScopeProfiler(const ScopeProfiler &) = delete;
ScopeProfiler(ScopeProfiler &&other)
: name(other.name), enabled(other.enabled)
2015-07-10 23:01:04 -07:00
{
other.enabled = false;
}
ScopeProfiler &operator=(const ScopeProfiler &) = delete;
ScopeProfiler &operator=(ScopeProfiler &&other) = delete;
void Stop()
{
if (!enabled)
return;
profile_end(name);
enabled = false;
}
};
#ifndef NO_PROFILER_MACROS
#define ScopeProfiler_NameConcatImpl(x, y) x##y
2015-07-10 23:01:04 -07:00
#define ScopeProfiler_NameConcat(x, y) ScopeProfiler_NameConcatImpl(x, y)
#ifdef __COUNTER__
#define ScopeProfiler_Name(x) ScopeProfiler_NameConcat(x, __COUNTER__)
#else
#define ScopeProfiler_Name(x) ScopeProfiler_NameConcat(x, __LINE__)
#endif
#define ProfileScope(x) \
ScopeProfiler ScopeProfiler_Name(SCOPE_PROFILE) { x }
2015-07-10 23:01:04 -07:00
#endif