FFmpeg
timer.h
Go to the documentation of this file.
1 /*
2  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file
23  * high precision timer, useful to profile code
24  */
25 
26 #ifndef AVUTIL_TIMER_H
27 #define AVUTIL_TIMER_H
28 
29 #include "config.h"
30 
31 #if CONFIG_LINUX_PERF
32 # ifndef _GNU_SOURCE
33 # define _GNU_SOURCE
34 # endif
35 # include <unistd.h> // read(3)
36 # include <sys/ioctl.h>
37 # include <asm/unistd.h>
38 # include <linux/perf_event.h>
39 #endif
40 
41 #include <stdlib.h>
42 #include <stdint.h>
43 #include <inttypes.h>
44 
45 #if CONFIG_MACOS_KPERF
46 #include "macos_kperf.h"
47 #elif HAVE_MACH_ABSOLUTE_TIME
48 #include <mach/mach_time.h>
49 #endif
50 
51 #include "log.h"
52 
53 #if ARCH_AARCH64
54 # include "aarch64/timer.h"
55 #elif ARCH_ARM
56 # include "arm/timer.h"
57 #elif ARCH_PPC
58 # include "ppc/timer.h"
59 #elif ARCH_X86
60 # include "x86/timer.h"
61 #endif
62 
63 #if !defined(AV_READ_TIME)
64 # if HAVE_GETHRTIME
65 # define AV_READ_TIME gethrtime
66 # elif HAVE_MACH_ABSOLUTE_TIME
67 # define AV_READ_TIME mach_absolute_time
68 # endif
69 #endif
70 
71 #ifndef FF_TIMER_UNITS
72 # define FF_TIMER_UNITS "UNITS"
73 #endif
74 
75 #define TIMER_REPORT(id, tdiff) \
76  { \
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)]++; \
82  if (tcount < 2 || \
83  (tdiff) < 8 * tsum / tcount || \
84  (tdiff) < 2000) { \
85  tsum += (tdiff); \
86  tcount++; \
87  } else \
88  tskip_count++; \
89  if (((tcount + tskip_count) & (tcount + tskip_count - 1)) == 0) { \
90  int i; \
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"); \
97  } \
98  }
99 
100 #if CONFIG_LINUX_PERF
101 
102 #define START_TIMER \
103  static int linux_perf_fd; \
104  uint64_t tperf; \
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, \
110  .disabled = 1, \
111  .exclude_kernel = 1, \
112  .exclude_hv = 1, \
113  }; \
114  linux_perf_fd = syscall(__NR_perf_event_open, &attr, \
115  0, -1, -1, 0); \
116  } \
117  if (linux_perf_fd == -1) { \
118  av_log(NULL, AV_LOG_ERROR, "perf_event_open failed: %s\n", \
119  av_err2str(AVERROR(errno))); \
120  } else { \
121  ioctl(linux_perf_fd, PERF_EVENT_IOC_RESET, 0); \
122  ioctl(linux_perf_fd, PERF_EVENT_IOC_ENABLE, 0); \
123  }
124 
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)
129 
130 #elif CONFIG_MACOS_KPERF
131 
132 #define START_TIMER \
133  uint64_t tperf; \
134  ff_kperf_init(); \
135  tperf = ff_kperf_cycles();
136 
137 #define STOP_TIMER(id) \
138  TIMER_REPORT(id, ff_kperf_cycles() - tperf);
139 
140 #elif defined(AV_READ_TIME)
141 #define START_TIMER \
142  uint64_t tend; \
143  uint64_t tstart = AV_READ_TIME(); \
144 
145 #define STOP_TIMER(id) \
146  tend = AV_READ_TIME(); \
147  TIMER_REPORT(id, tend - tstart)
148 #else
149 #define START_TIMER
150 #define STOP_TIMER(id) { }
151 #endif
152 
153 #endif /* AVUTIL_TIMER_H */
timer.h
timer.h
macos_kperf.h
log.h
timer.h
timer.h