You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

128 lines
4.9KB

  1. /*
  2. * Assembly testing and benchmarking tool
  3. * Copyright (c) 2015 Henrik Gramner
  4. * Copyright (c) 2008 Loren Merritt
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  20. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  21. */
  22. #ifndef CHECKASM_H
  23. #define CHECKASM_H
  24. #include <stdint.h>
  25. #include "config.h"
  26. #include "libavutil/avstring.h"
  27. #include "libavutil/lfg.h"
  28. #include "libavutil/timer.h"
  29. void checkasm_check_bswapdsp(void);
  30. void checkasm_check_flacdsp(void);
  31. void checkasm_check_h264pred(void);
  32. void checkasm_check_h264qpel(void);
  33. void checkasm_check_jpeg2000dsp(void);
  34. void checkasm_check_v210enc(void);
  35. void checkasm_check_vp9dsp(void);
  36. void *checkasm_check_func(void *func, const char *name, ...) av_printf_format(2, 3);
  37. int checkasm_bench_func(void);
  38. void checkasm_fail_func(const char *msg, ...) av_printf_format(1, 2);
  39. void checkasm_update_bench(int iterations, uint64_t cycles);
  40. void checkasm_report(const char *name, ...) av_printf_format(1, 2);
  41. extern AVLFG checkasm_lfg;
  42. #define rnd() av_lfg_get(&checkasm_lfg)
  43. static av_unused void *func_ref, *func_new;
  44. #define BENCH_RUNS 1000 /* Trade-off between accuracy and speed */
  45. /* Decide whether or not the specified function needs to be tested */
  46. #define check_func(func, ...) (func_ref = checkasm_check_func((func_new = func), __VA_ARGS__))
  47. /* Declare the function prototype. The first argument is the return value, the remaining
  48. * arguments are the function parameters. Naming parameters is optional. */
  49. #define declare_func(ret, ...) declare_new(ret, __VA_ARGS__) typedef ret func_type(__VA_ARGS__)
  50. /* Indicate that the current test has failed */
  51. #define fail() checkasm_fail_func("%s:%d", av_basename(__FILE__), __LINE__)
  52. /* Print the test outcome */
  53. #define report checkasm_report
  54. /* Call the reference function */
  55. #define call_ref(...) ((func_type *)func_ref)(__VA_ARGS__)
  56. #if ARCH_X86 && HAVE_YASM
  57. /* Verifies that clobbered callee-saved registers are properly saved and restored */
  58. void checkasm_checked_call(void *func, ...);
  59. #if ARCH_X86_64
  60. /* Evil hack: detect incorrect assumptions that 32-bit ints are zero-extended to 64-bit.
  61. * This is done by clobbering the stack with junk around the stack pointer and calling the
  62. * assembly function through checked_call() with added dummy arguments which forces all
  63. * real arguments to be passed on the stack and not in registers. For 32-bit arguments the
  64. * upper half of the 64-bit register locations on the stack will now contain junk which will
  65. * cause misbehaving functions to either produce incorrect output or segfault. Note that
  66. * even though this works extremely well in practice, it's technically not guaranteed
  67. * and false negatives is theoretically possible, but there can never be any false positives.
  68. */
  69. void checkasm_stack_clobber(uint64_t clobber, ...);
  70. #define declare_new(ret, ...) ret (*checked_call)(void *, int, int, int, int, int, __VA_ARGS__)\
  71. = (void *)checkasm_checked_call;
  72. #define CLOB (UINT64_C(0xdeadbeefdeadbeef))
  73. #define call_new(...) (checkasm_stack_clobber(CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,\
  74. CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB),\
  75. checked_call(func_new, 0, 0, 0, 0, 0, __VA_ARGS__))
  76. #elif ARCH_X86_32
  77. #define declare_new(ret, ...) ret (*checked_call)(void *, __VA_ARGS__) = (void *)checkasm_checked_call;
  78. #define call_new(...) checked_call(func_new, __VA_ARGS__)
  79. #endif
  80. #else
  81. #define declare_new(ret, ...)
  82. /* Call the function */
  83. #define call_new(...) ((func_type *)func_new)(__VA_ARGS__)
  84. #endif
  85. /* Benchmark the function */
  86. #ifdef AV_READ_TIME
  87. #define bench_new(...)\
  88. do {\
  89. if (checkasm_bench_func()) {\
  90. func_type *tfunc = func_new;\
  91. uint64_t tsum = 0;\
  92. int ti, tcount = 0;\
  93. for (ti = 0; ti < BENCH_RUNS; ti++) {\
  94. uint64_t t = AV_READ_TIME();\
  95. tfunc(__VA_ARGS__);\
  96. tfunc(__VA_ARGS__);\
  97. tfunc(__VA_ARGS__);\
  98. tfunc(__VA_ARGS__);\
  99. t = AV_READ_TIME() - t;\
  100. if (t*tcount <= tsum*4 && ti > 0) {\
  101. tsum += t;\
  102. tcount++;\
  103. }\
  104. }\
  105. checkasm_update_bench(tcount, tsum);\
  106. }\
  107. } while (0)
  108. #else
  109. #define bench_new(...) while(0)
  110. #endif
  111. #endif