Go to the documentation of this file.
26 #ifndef AVUTIL_TIMER_H
27 #define AVUTIL_TIMER_H
36 # include <sys/ioctl.h>
37 # include <asm/unistd.h>
38 # include <linux/perf_event.h>
45 #if CONFIG_MACOS_KPERF
47 #elif HAVE_MACH_ABSOLUTE_TIME
48 #include <mach/mach_time.h>
63 #if !defined(AV_READ_TIME)
65 # define AV_READ_TIME gethrtime
66 # elif HAVE_MACH_ABSOLUTE_TIME
67 # define AV_READ_TIME mach_absolute_time
71 #ifndef FF_TIMER_UNITS
72 # define FF_TIMER_UNITS "UNITS"
75 #define TIMER_REPORT(id, tdiff) \
77 static uint64_t tsum = 0; \
78 static int tcount = 0; \
79 static int tskip_count = 0; \
80 static int thistogram[32] = {0}; \
81 thistogram[av_log2(tdiff)]++; \
83 (tdiff) < 8 * tsum / tcount || \
89 if (((tcount + tskip_count) & (tcount + tskip_count - 1)) == 0) { \
91 av_log(NULL, AV_LOG_ERROR, \
92 "%7" PRIu64 " " FF_TIMER_UNITS " in %s,%8d runs,%7d skips",\
93 tsum * 10 / tcount, id, tcount, tskip_count); \
94 for (i = 0; i < 32; i++) \
95 av_log(NULL, AV_LOG_VERBOSE, " %2d", av_log2(2*thistogram[i]));\
96 av_log(NULL, AV_LOG_ERROR, "\n"); \
100 #if CONFIG_LINUX_PERF
102 #define START_TIMER \
103 static int linux_perf_fd; \
105 if (!linux_perf_fd) { \
106 struct perf_event_attr attr = { \
107 .type = PERF_TYPE_HARDWARE, \
108 .size = sizeof(struct perf_event_attr), \
109 .config = PERF_COUNT_HW_CPU_CYCLES, \
111 .exclude_kernel = 1, \
114 linux_perf_fd = syscall(__NR_perf_event_open, &attr, \
117 if (linux_perf_fd == -1) { \
118 av_log(NULL, AV_LOG_ERROR, "perf_event_open failed: %s\n", \
119 av_err2str(AVERROR(errno))); \
121 ioctl(linux_perf_fd, PERF_EVENT_IOC_RESET, 0); \
122 ioctl(linux_perf_fd, PERF_EVENT_IOC_ENABLE, 0); \
125 #define STOP_TIMER(id) \
126 ioctl(linux_perf_fd, PERF_EVENT_IOC_DISABLE, 0); \
127 read(linux_perf_fd, &tperf, sizeof(tperf)); \
128 TIMER_REPORT(id, tperf)
130 #elif CONFIG_MACOS_KPERF
132 #define START_TIMER \
135 tperf = ff_kperf_cycles();
137 #define STOP_TIMER(id) \
138 TIMER_REPORT(id, ff_kperf_cycles() - tperf);
140 #elif defined(AV_READ_TIME)
141 #define START_TIMER \
143 uint64_t tstart = AV_READ_TIME(); \
145 #define STOP_TIMER(id) \
146 tend = AV_READ_TIME(); \
147 TIMER_REPORT(id, tend - tstart)
150 #define STOP_TIMER(id) { }