timer.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 "config.h"
  29. #if ARCH_ARM
  30. # include "arm/timer.h"
  31. #elif ARCH_BFIN
  32. # include "bfin/timer.h"
  33. #elif ARCH_PPC
  34. # include "ppc/timer.h"
  35. #elif ARCH_X86
  36. # include "x86/timer.h"
  37. #endif
  38. #if !defined(AV_READ_TIME) && HAVE_GETHRTIME
  39. # define AV_READ_TIME gethrtime
  40. #endif
  41. #ifdef AV_READ_TIME
  42. #define START_TIMER \
  43. uint64_t tend; \
  44. uint64_t tstart = AV_READ_TIME(); \
  45. #define STOP_TIMER(id) \
  46. tend = AV_READ_TIME(); \
  47. { \
  48. static uint64_t tsum = 0; \
  49. static int tcount = 0; \
  50. static int tskip_count = 0; \
  51. if (tcount < 2 || \
  52. tend - tstart < 8 * tsum / tcount || \
  53. tend - tstart < 2000) { \
  54. tsum+= tend - tstart; \
  55. tcount++; \
  56. } else \
  57. tskip_count++; \
  58. if (((tcount + tskip_count) & (tcount + tskip_count - 1)) == 0) { \
  59. av_log(NULL, AV_LOG_ERROR, \
  60. "%"PRIu64" decicycles in %s, %d runs, %d skips\n", \
  61. tsum * 10 / tcount, id, tcount, tskip_count); \
  62. } \
  63. }
  64. #else
  65. #define START_TIMER
  66. #define STOP_TIMER(id) { }
  67. #endif
  68. #endif /* AVUTIL_TIMER_H */