timer.h 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. * @file
  22. * high precision timer, useful to profile code
  23. */
  24. #ifndef AVUTIL_TIMER_H
  25. #define AVUTIL_TIMER_H
  26. #include <stdlib.h>
  27. #include <stdint.h>
  28. #include <inttypes.h>
  29. #include "config.h"
  30. #if HAVE_MACH_MACH_TIME_H
  31. #include <mach/mach_time.h>
  32. #endif
  33. #include "log.h"
  34. #if ARCH_AARCH64
  35. # include "aarch64/timer.h"
  36. #elif ARCH_ARM
  37. # include "arm/timer.h"
  38. #elif ARCH_PPC
  39. # include "ppc/timer.h"
  40. #elif ARCH_X86
  41. # include "x86/timer.h"
  42. #endif
  43. #if !defined(AV_READ_TIME)
  44. # if HAVE_GETHRTIME
  45. # define AV_READ_TIME gethrtime
  46. # elif HAVE_MACH_ABSOLUTE_TIME
  47. # define AV_READ_TIME mach_absolute_time
  48. # endif
  49. #endif
  50. #ifndef FF_TIMER_UNITS
  51. # define FF_TIMER_UNITS "UNITS"
  52. #endif
  53. #ifdef AV_READ_TIME
  54. #define START_TIMER \
  55. uint64_t tend; \
  56. uint64_t tstart = AV_READ_TIME(); \
  57. #define STOP_TIMER(id) \
  58. tend = AV_READ_TIME(); \
  59. { \
  60. static uint64_t tsum = 0; \
  61. static int tcount = 0; \
  62. static int tskip_count = 0; \
  63. static int thistogram[32] = {0}; \
  64. thistogram[av_log2(tend - tstart)]++; \
  65. if (tcount < 2 || \
  66. tend - tstart < 8 * tsum / tcount || \
  67. tend - tstart < 2000) { \
  68. tsum+= tend - tstart; \
  69. tcount++; \
  70. } else \
  71. tskip_count++; \
  72. if (((tcount + tskip_count) & (tcount + tskip_count - 1)) == 0) { \
  73. int i; \
  74. av_log(NULL, AV_LOG_ERROR, \
  75. "%7"PRIu64" " FF_TIMER_UNITS " in %s,%8d runs,%7d skips", \
  76. tsum * 10 / tcount, id, tcount, tskip_count); \
  77. for (i = 0; i < 32; i++) \
  78. av_log(NULL, AV_LOG_VERBOSE, " %2d", av_log2(2*thistogram[i]));\
  79. av_log(NULL, AV_LOG_ERROR, "\n"); \
  80. } \
  81. }
  82. #else
  83. #define START_TIMER
  84. #define STOP_TIMER(id) { }
  85. #endif
  86. #endif /* AVUTIL_TIMER_H */