#ifndef LIBANGLE_HISTOGRAM_MACROS_H_
#define LIBANGLE_HISTOGRAM_MACROS_H_
#include <platform/PlatformMethods.h>
#define ANGLE_HISTOGRAM_TIMES(name, sample) ANGLE_HISTOGRAM_CUSTOM_TIMES(name, sample, 1, 10000, 50)
#define ANGLE_HISTOGRAM_MEDIUM_TIMES(name, sample) \
ANGLE_HISTOGRAM_CUSTOM_TIMES(name, sample, 10, 180000, 50)
#define ANGLE_HISTOGRAM_LONG_TIMES(name, sample) \
ANGLE_HISTOGRAM_CUSTOM_TIMES(name, sample, 1, 3600000, 50)
#define ANGLE_HISTOGRAM_LONG_TIMES_100(name, sample) \
ANGLE_HISTOGRAM_CUSTOM_TIMES(name, sample, 1, 3600000, 100)
#define ANGLE_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count)
#define ANGLE_HISTOGRAM_COUNTS(name, sample) \
ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 1000000, 50)
#define ANGLE_HISTOGRAM_COUNTS_100(name, sample) \
ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 100, 50)
#define ANGLE_HISTOGRAM_COUNTS_10000(name, sample) \
ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 10000, 50)
#define ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
ANGLEPlatformCurrent()->histogramCustomCounts(ANGLEPlatformCurrent(), name, sample, min, max, \
bucket_count)
#define ANGLE_HISTOGRAM_PERCENTAGE(name, under_one_hundred) \
ANGLE_HISTOGRAM_ENUMERATION(name, under_one_hundred, 101)
#define ANGLE_HISTOGRAM_BOOLEAN(name, sample) \
ANGLEPlatformCurrent()->histogramBoolean(ANGLEPlatformCurrent(), name, sample)
#define ANGLE_HISTOGRAM_ENUMERATION(name, sample, boundary_value) \
ANGLEPlatformCurrent()->histogramEnumeration(ANGLEPlatformCurrent(), name, sample, \
boundary_value)
#define ANGLE_HISTOGRAM_MEMORY_KB(name, sample) \
ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1000, 500000, 50)
#define ANGLE_HISTOGRAM_MEMORY_MB(name, sample) \
ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 1000, 50)
#define ANGLE_HISTOGRAM_SPARSE_SLOWLY(name, sample) \
ANGLEPlatformCurrent()->histogramSparse(ANGLEPlatformCurrent(), name, sample)
#define SCOPED_ANGLE_HISTOGRAM_TIMER_US(name) \
SCOPED_ANGLE_HISTOGRAM_TIMER_US_EXPANDER(name, __COUNTER__)
#define SCOPED_ANGLE_HISTOGRAM_TIMER_US_EXPANDER(name, key) \
SCOPED_ANGLE_HISTOGRAM_TIMER_US_UNIQUE(name, key)
#define SCOPED_ANGLE_HISTOGRAM_TIMER_US_UNIQUE(name, key) \
class [[nodiscard]] ScopedHistogramTimerUs##key \
{ \
public: \
ScopedHistogramTimerUs##key() \
: constructed_(ANGLEPlatformCurrent()->currentTime(ANGLEPlatformCurrent())) \
{} \
~ScopedHistogramTimerUs##key() \
{ \
if (constructed_ == 0) \
return; \
auto *platform = ANGLEPlatformCurrent(); \
double elapsed = platform->currentTime(platform) - constructed_; \
int elapsedUS = static_cast<int>(elapsed * 1e6); \
ANGLE_HISTOGRAM_COUNTS(name, elapsedUS); \
} \
\
private: \
double constructed_; \
} scoped_histogram_timer_us_##key
#endif