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.

673 lines
18KB

  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. #include <stdarg.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include "checkasm.h"
  27. #include "libavutil/common.h"
  28. #include "libavutil/cpu.h"
  29. #include "libavutil/intfloat.h"
  30. #include "libavutil/random_seed.h"
  31. #if HAVE_IO_H
  32. #include <io.h>
  33. #endif
  34. #if HAVE_SETCONSOLETEXTATTRIBUTE
  35. #include <windows.h>
  36. #define COLOR_RED FOREGROUND_RED
  37. #define COLOR_GREEN FOREGROUND_GREEN
  38. #define COLOR_YELLOW (FOREGROUND_RED|FOREGROUND_GREEN)
  39. #else
  40. #define COLOR_RED 1
  41. #define COLOR_GREEN 2
  42. #define COLOR_YELLOW 3
  43. #endif
  44. #if HAVE_UNISTD_H
  45. #include <unistd.h>
  46. #endif
  47. #if !HAVE_ISATTY
  48. #define isatty(fd) 1
  49. #endif
  50. #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
  51. #include "libavutil/arm/cpu.h"
  52. void (*checkasm_checked_call)(void *func, int dummy, ...) = checkasm_checked_call_novfp;
  53. #endif
  54. /* List of tests to invoke */
  55. static const struct {
  56. const char *name;
  57. void (*func)(void);
  58. } tests[] = {
  59. #if CONFIG_AVCODEC
  60. #if CONFIG_ALAC_DECODER
  61. { "alacdsp", checkasm_check_alacdsp },
  62. #endif
  63. #if CONFIG_BSWAPDSP
  64. { "bswapdsp", checkasm_check_bswapdsp },
  65. #endif
  66. #if CONFIG_DCA_DECODER
  67. { "synth_filter", checkasm_check_synth_filter },
  68. #endif
  69. #if CONFIG_FLACDSP
  70. { "flacdsp", checkasm_check_flacdsp },
  71. #endif
  72. #if CONFIG_FMTCONVERT
  73. { "fmtconvert", checkasm_check_fmtconvert },
  74. #endif
  75. #if CONFIG_H264DSP
  76. { "h264dsp", checkasm_check_h264dsp },
  77. #endif
  78. #if CONFIG_H264PRED
  79. { "h264pred", checkasm_check_h264pred },
  80. #endif
  81. #if CONFIG_H264QPEL
  82. { "h264qpel", checkasm_check_h264qpel },
  83. #endif
  84. #if CONFIG_JPEG2000_DECODER
  85. { "jpeg2000dsp", checkasm_check_jpeg2000dsp },
  86. #endif
  87. #if CONFIG_PIXBLOCKDSP
  88. { "pixblockdsp", checkasm_check_pixblockdsp },
  89. #endif
  90. #if CONFIG_V210_ENCODER
  91. { "v210enc", checkasm_check_v210enc },
  92. #endif
  93. #if CONFIG_VP8DSP
  94. { "vp8dsp", checkasm_check_vp8dsp },
  95. #endif
  96. #if CONFIG_VP9_DECODER
  97. { "vp9dsp", checkasm_check_vp9dsp },
  98. #endif
  99. #if CONFIG_VIDEODSP
  100. { "videodsp", checkasm_check_videodsp },
  101. #endif
  102. #endif
  103. #if CONFIG_AVFILTER
  104. #if CONFIG_BLEND_FILTER
  105. { "vf_blend", checkasm_check_blend },
  106. #endif
  107. #if CONFIG_COLORSPACE_FILTER
  108. { "vf_colorspace", checkasm_check_colorspace },
  109. #endif
  110. #endif
  111. { NULL }
  112. };
  113. /* List of cpu flags to check */
  114. static const struct {
  115. const char *name;
  116. const char *suffix;
  117. int flag;
  118. } cpus[] = {
  119. #if ARCH_AARCH64
  120. { "ARMV8", "armv8", AV_CPU_FLAG_ARMV8 },
  121. { "NEON", "neon", AV_CPU_FLAG_NEON },
  122. #elif ARCH_ARM
  123. { "ARMV5TE", "armv5te", AV_CPU_FLAG_ARMV5TE },
  124. { "ARMV6", "armv6", AV_CPU_FLAG_ARMV6 },
  125. { "ARMV6T2", "armv6t2", AV_CPU_FLAG_ARMV6T2 },
  126. { "VFP", "vfp", AV_CPU_FLAG_VFP },
  127. { "VFP_VM", "vfp_vm", AV_CPU_FLAG_VFP_VM },
  128. { "VFPV3", "vfp3", AV_CPU_FLAG_VFPV3 },
  129. { "NEON", "neon", AV_CPU_FLAG_NEON },
  130. #elif ARCH_PPC
  131. { "ALTIVEC", "altivec", AV_CPU_FLAG_ALTIVEC },
  132. { "VSX", "vsx", AV_CPU_FLAG_VSX },
  133. { "POWER8", "power8", AV_CPU_FLAG_POWER8 },
  134. #elif ARCH_X86
  135. { "MMX", "mmx", AV_CPU_FLAG_MMX|AV_CPU_FLAG_CMOV },
  136. { "MMXEXT", "mmxext", AV_CPU_FLAG_MMXEXT },
  137. { "3DNOW", "3dnow", AV_CPU_FLAG_3DNOW },
  138. { "3DNOWEXT", "3dnowext", AV_CPU_FLAG_3DNOWEXT },
  139. { "SSE", "sse", AV_CPU_FLAG_SSE },
  140. { "SSE2", "sse2", AV_CPU_FLAG_SSE2|AV_CPU_FLAG_SSE2SLOW },
  141. { "SSE3", "sse3", AV_CPU_FLAG_SSE3|AV_CPU_FLAG_SSE3SLOW },
  142. { "SSSE3", "ssse3", AV_CPU_FLAG_SSSE3|AV_CPU_FLAG_ATOM },
  143. { "SSE4.1", "sse4", AV_CPU_FLAG_SSE4 },
  144. { "SSE4.2", "sse42", AV_CPU_FLAG_SSE42 },
  145. { "AES-NI", "aesni", AV_CPU_FLAG_AESNI },
  146. { "AVX", "avx", AV_CPU_FLAG_AVX },
  147. { "XOP", "xop", AV_CPU_FLAG_XOP },
  148. { "FMA3", "fma3", AV_CPU_FLAG_FMA3 },
  149. { "FMA4", "fma4", AV_CPU_FLAG_FMA4 },
  150. { "AVX2", "avx2", AV_CPU_FLAG_AVX2 },
  151. #endif
  152. { NULL }
  153. };
  154. typedef struct CheckasmFuncVersion {
  155. struct CheckasmFuncVersion *next;
  156. void *func;
  157. int ok;
  158. int cpu;
  159. int iterations;
  160. uint64_t cycles;
  161. } CheckasmFuncVersion;
  162. /* Binary search tree node */
  163. typedef struct CheckasmFunc {
  164. struct CheckasmFunc *child[2];
  165. CheckasmFuncVersion versions;
  166. uint8_t color; /* 0 = red, 1 = black */
  167. char name[1];
  168. } CheckasmFunc;
  169. /* Internal state */
  170. static struct {
  171. CheckasmFunc *funcs;
  172. CheckasmFunc *current_func;
  173. CheckasmFuncVersion *current_func_ver;
  174. const char *current_test_name;
  175. const char *bench_pattern;
  176. int bench_pattern_len;
  177. int num_checked;
  178. int num_failed;
  179. int nop_time;
  180. int cpu_flag;
  181. const char *cpu_flag_name;
  182. } state;
  183. /* PRNG state */
  184. AVLFG checkasm_lfg;
  185. /* float compare support code */
  186. static int is_negative(union av_intfloat32 u)
  187. {
  188. return u.i >> 31;
  189. }
  190. int float_near_ulp(float a, float b, unsigned max_ulp)
  191. {
  192. union av_intfloat32 x, y;
  193. x.f = a;
  194. y.f = b;
  195. if (is_negative(x) != is_negative(y)) {
  196. // handle -0.0 == +0.0
  197. return a == b;
  198. }
  199. if (abs(x.i - y.i) <= max_ulp)
  200. return 1;
  201. return 0;
  202. }
  203. int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp,
  204. unsigned len)
  205. {
  206. unsigned i;
  207. for (i = 0; i < len; i++) {
  208. if (!float_near_ulp(a[i], b[i], max_ulp))
  209. return 0;
  210. }
  211. return 1;
  212. }
  213. int float_near_abs_eps(float a, float b, float eps)
  214. {
  215. float abs_diff = fabsf(a - b);
  216. return abs_diff < eps;
  217. }
  218. int float_near_abs_eps_array(const float *a, const float *b, float eps,
  219. unsigned len)
  220. {
  221. unsigned i;
  222. for (i = 0; i < len; i++) {
  223. if (!float_near_abs_eps(a[i], b[i], eps))
  224. return 0;
  225. }
  226. return 1;
  227. }
  228. int float_near_abs_eps_ulp(float a, float b, float eps, unsigned max_ulp)
  229. {
  230. return float_near_ulp(a, b, max_ulp) || float_near_abs_eps(a, b, eps);
  231. }
  232. int float_near_abs_eps_array_ulp(const float *a, const float *b, float eps,
  233. unsigned max_ulp, unsigned len)
  234. {
  235. unsigned i;
  236. for (i = 0; i < len; i++) {
  237. if (!float_near_abs_eps_ulp(a[i], b[i], eps, max_ulp))
  238. return 0;
  239. }
  240. return 1;
  241. }
  242. /* Print colored text to stderr if the terminal supports it */
  243. static void color_printf(int color, const char *fmt, ...)
  244. {
  245. static int use_color = -1;
  246. va_list arg;
  247. #if HAVE_SETCONSOLETEXTATTRIBUTE
  248. static HANDLE con;
  249. static WORD org_attributes;
  250. if (use_color < 0) {
  251. CONSOLE_SCREEN_BUFFER_INFO con_info;
  252. con = GetStdHandle(STD_ERROR_HANDLE);
  253. if (con && con != INVALID_HANDLE_VALUE && GetConsoleScreenBufferInfo(con, &con_info)) {
  254. org_attributes = con_info.wAttributes;
  255. use_color = 1;
  256. } else
  257. use_color = 0;
  258. }
  259. if (use_color)
  260. SetConsoleTextAttribute(con, (org_attributes & 0xfff0) | (color & 0x0f));
  261. #else
  262. if (use_color < 0) {
  263. const char *term = getenv("TERM");
  264. use_color = term && strcmp(term, "dumb") && isatty(2);
  265. }
  266. if (use_color)
  267. fprintf(stderr, "\x1b[%d;3%dm", (color & 0x08) >> 3, color & 0x07);
  268. #endif
  269. va_start(arg, fmt);
  270. vfprintf(stderr, fmt, arg);
  271. va_end(arg);
  272. if (use_color) {
  273. #if HAVE_SETCONSOLETEXTATTRIBUTE
  274. SetConsoleTextAttribute(con, org_attributes);
  275. #else
  276. fprintf(stderr, "\x1b[0m");
  277. #endif
  278. }
  279. }
  280. /* Deallocate a tree */
  281. static void destroy_func_tree(CheckasmFunc *f)
  282. {
  283. if (f) {
  284. CheckasmFuncVersion *v = f->versions.next;
  285. while (v) {
  286. CheckasmFuncVersion *next = v->next;
  287. free(v);
  288. v = next;
  289. }
  290. destroy_func_tree(f->child[0]);
  291. destroy_func_tree(f->child[1]);
  292. free(f);
  293. }
  294. }
  295. /* Allocate a zero-initialized block, clean up and exit on failure */
  296. static void *checkasm_malloc(size_t size)
  297. {
  298. void *ptr = calloc(1, size);
  299. if (!ptr) {
  300. fprintf(stderr, "checkasm: malloc failed\n");
  301. destroy_func_tree(state.funcs);
  302. exit(1);
  303. }
  304. return ptr;
  305. }
  306. /* Get the suffix of the specified cpu flag */
  307. static const char *cpu_suffix(int cpu)
  308. {
  309. int i = FF_ARRAY_ELEMS(cpus);
  310. while (--i >= 0)
  311. if (cpu & cpus[i].flag)
  312. return cpus[i].suffix;
  313. return "c";
  314. }
  315. #ifdef AV_READ_TIME
  316. static int cmp_nop(const void *a, const void *b)
  317. {
  318. return *(const uint16_t*)a - *(const uint16_t*)b;
  319. }
  320. /* Measure the overhead of the timing code (in decicycles) */
  321. static int measure_nop_time(void)
  322. {
  323. uint16_t nops[10000];
  324. int i, nop_sum = 0;
  325. for (i = 0; i < 10000; i++) {
  326. uint64_t t = AV_READ_TIME();
  327. nops[i] = AV_READ_TIME() - t;
  328. }
  329. qsort(nops, 10000, sizeof(uint16_t), cmp_nop);
  330. for (i = 2500; i < 7500; i++)
  331. nop_sum += nops[i];
  332. return nop_sum / 500;
  333. }
  334. /* Print benchmark results */
  335. static void print_benchs(CheckasmFunc *f)
  336. {
  337. if (f) {
  338. print_benchs(f->child[0]);
  339. /* Only print functions with at least one assembly version */
  340. if (f->versions.cpu || f->versions.next) {
  341. CheckasmFuncVersion *v = &f->versions;
  342. do {
  343. if (v->iterations) {
  344. int decicycles = (10*v->cycles/v->iterations - state.nop_time) / 4;
  345. printf("%s_%s: %d.%d\n", f->name, cpu_suffix(v->cpu), decicycles/10, decicycles%10);
  346. }
  347. } while ((v = v->next));
  348. }
  349. print_benchs(f->child[1]);
  350. }
  351. }
  352. #endif
  353. /* ASCIIbetical sort except preserving natural order for numbers */
  354. static int cmp_func_names(const char *a, const char *b)
  355. {
  356. const char *start = a;
  357. int ascii_diff, digit_diff;
  358. for (; !(ascii_diff = *(const unsigned char*)a - *(const unsigned char*)b) && *a; a++, b++);
  359. for (; av_isdigit(*a) && av_isdigit(*b); a++, b++);
  360. if (a > start && av_isdigit(a[-1]) && (digit_diff = av_isdigit(*a) - av_isdigit(*b)))
  361. return digit_diff;
  362. return ascii_diff;
  363. }
  364. /* Perform a tree rotation in the specified direction and return the new root */
  365. static CheckasmFunc *rotate_tree(CheckasmFunc *f, int dir)
  366. {
  367. CheckasmFunc *r = f->child[dir^1];
  368. f->child[dir^1] = r->child[dir];
  369. r->child[dir] = f;
  370. r->color = f->color;
  371. f->color = 0;
  372. return r;
  373. }
  374. #define is_red(f) ((f) && !(f)->color)
  375. /* Balance a left-leaning red-black tree at the specified node */
  376. static void balance_tree(CheckasmFunc **root)
  377. {
  378. CheckasmFunc *f = *root;
  379. if (is_red(f->child[0]) && is_red(f->child[1])) {
  380. f->color ^= 1;
  381. f->child[0]->color = f->child[1]->color = 1;
  382. }
  383. if (!is_red(f->child[0]) && is_red(f->child[1]))
  384. *root = rotate_tree(f, 0); /* Rotate left */
  385. else if (is_red(f->child[0]) && is_red(f->child[0]->child[0]))
  386. *root = rotate_tree(f, 1); /* Rotate right */
  387. }
  388. /* Get a node with the specified name, creating it if it doesn't exist */
  389. static CheckasmFunc *get_func(CheckasmFunc **root, const char *name)
  390. {
  391. CheckasmFunc *f = *root;
  392. if (f) {
  393. /* Search the tree for a matching node */
  394. int cmp = cmp_func_names(name, f->name);
  395. if (cmp) {
  396. f = get_func(&f->child[cmp > 0], name);
  397. /* Rebalance the tree on the way up if a new node was inserted */
  398. if (!f->versions.func)
  399. balance_tree(root);
  400. }
  401. } else {
  402. /* Allocate and insert a new node into the tree */
  403. int name_length = strlen(name);
  404. f = *root = checkasm_malloc(sizeof(CheckasmFunc) + name_length);
  405. memcpy(f->name, name, name_length + 1);
  406. }
  407. return f;
  408. }
  409. /* Perform tests and benchmarks for the specified cpu flag if supported by the host */
  410. static void check_cpu_flag(const char *name, int flag)
  411. {
  412. int old_cpu_flag = state.cpu_flag;
  413. flag |= old_cpu_flag;
  414. av_force_cpu_flags(-1);
  415. state.cpu_flag = flag & av_get_cpu_flags();
  416. av_force_cpu_flags(state.cpu_flag);
  417. if (!flag || state.cpu_flag != old_cpu_flag) {
  418. int i;
  419. state.cpu_flag_name = name;
  420. for (i = 0; tests[i].func; i++) {
  421. state.current_test_name = tests[i].name;
  422. tests[i].func();
  423. }
  424. }
  425. }
  426. /* Print the name of the current CPU flag, but only do it once */
  427. static void print_cpu_name(void)
  428. {
  429. if (state.cpu_flag_name) {
  430. color_printf(COLOR_YELLOW, "%s:\n", state.cpu_flag_name);
  431. state.cpu_flag_name = NULL;
  432. }
  433. }
  434. int main(int argc, char *argv[])
  435. {
  436. int i, seed, ret = 0;
  437. #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
  438. if (have_vfp(av_get_cpu_flags()) || have_neon(av_get_cpu_flags()))
  439. checkasm_checked_call = checkasm_checked_call_vfp;
  440. #endif
  441. if (!tests[0].func || !cpus[0].flag) {
  442. fprintf(stderr, "checkasm: no tests to perform\n");
  443. return 0;
  444. }
  445. if (argc > 1 && !strncmp(argv[1], "--bench", 7)) {
  446. #ifndef AV_READ_TIME
  447. fprintf(stderr, "checkasm: --bench is not supported on your system\n");
  448. return 1;
  449. #endif
  450. if (argv[1][7] == '=') {
  451. state.bench_pattern = argv[1] + 8;
  452. state.bench_pattern_len = strlen(state.bench_pattern);
  453. } else
  454. state.bench_pattern = "";
  455. argc--;
  456. argv++;
  457. }
  458. seed = (argc > 1) ? atoi(argv[1]) : av_get_random_seed();
  459. fprintf(stderr, "checkasm: using random seed %u\n", seed);
  460. av_lfg_init(&checkasm_lfg, seed);
  461. check_cpu_flag(NULL, 0);
  462. for (i = 0; cpus[i].flag; i++)
  463. check_cpu_flag(cpus[i].name, cpus[i].flag);
  464. if (state.num_failed) {
  465. fprintf(stderr, "checkasm: %d of %d tests have failed\n", state.num_failed, state.num_checked);
  466. ret = 1;
  467. } else {
  468. fprintf(stderr, "checkasm: all %d tests passed\n", state.num_checked);
  469. #ifdef AV_READ_TIME
  470. if (state.bench_pattern) {
  471. state.nop_time = measure_nop_time();
  472. printf("nop: %d.%d\n", state.nop_time/10, state.nop_time%10);
  473. print_benchs(state.funcs);
  474. }
  475. #endif
  476. }
  477. destroy_func_tree(state.funcs);
  478. return ret;
  479. }
  480. /* Decide whether or not the specified function needs to be tested and
  481. * allocate/initialize data structures if needed. Returns a pointer to a
  482. * reference function if the function should be tested, otherwise NULL */
  483. void *checkasm_check_func(void *func, const char *name, ...)
  484. {
  485. char name_buf[256];
  486. void *ref = func;
  487. CheckasmFuncVersion *v;
  488. int name_length;
  489. va_list arg;
  490. va_start(arg, name);
  491. name_length = vsnprintf(name_buf, sizeof(name_buf), name, arg);
  492. va_end(arg);
  493. if (!func || name_length <= 0 || name_length >= sizeof(name_buf))
  494. return NULL;
  495. state.current_func = get_func(&state.funcs, name_buf);
  496. state.funcs->color = 1;
  497. v = &state.current_func->versions;
  498. if (v->func) {
  499. CheckasmFuncVersion *prev;
  500. do {
  501. /* Only test functions that haven't already been tested */
  502. if (v->func == func)
  503. return NULL;
  504. if (v->ok)
  505. ref = v->func;
  506. prev = v;
  507. } while ((v = v->next));
  508. v = prev->next = checkasm_malloc(sizeof(CheckasmFuncVersion));
  509. }
  510. v->func = func;
  511. v->ok = 1;
  512. v->cpu = state.cpu_flag;
  513. state.current_func_ver = v;
  514. if (state.cpu_flag)
  515. state.num_checked++;
  516. return ref;
  517. }
  518. /* Decide whether or not the current function needs to be benchmarked */
  519. int checkasm_bench_func(void)
  520. {
  521. return !state.num_failed && state.bench_pattern &&
  522. !strncmp(state.current_func->name, state.bench_pattern, state.bench_pattern_len);
  523. }
  524. /* Indicate that the current test has failed */
  525. void checkasm_fail_func(const char *msg, ...)
  526. {
  527. if (state.current_func_ver->cpu && state.current_func_ver->ok) {
  528. va_list arg;
  529. print_cpu_name();
  530. fprintf(stderr, " %s_%s (", state.current_func->name, cpu_suffix(state.current_func_ver->cpu));
  531. va_start(arg, msg);
  532. vfprintf(stderr, msg, arg);
  533. va_end(arg);
  534. fprintf(stderr, ")\n");
  535. state.current_func_ver->ok = 0;
  536. state.num_failed++;
  537. }
  538. }
  539. /* Update benchmark results of the current function */
  540. void checkasm_update_bench(int iterations, uint64_t cycles)
  541. {
  542. state.current_func_ver->iterations += iterations;
  543. state.current_func_ver->cycles += cycles;
  544. }
  545. /* Print the outcome of all tests performed since the last time this function was called */
  546. void checkasm_report(const char *name, ...)
  547. {
  548. static int prev_checked, prev_failed, max_length;
  549. if (state.num_checked > prev_checked) {
  550. int pad_length = max_length + 4;
  551. va_list arg;
  552. print_cpu_name();
  553. pad_length -= fprintf(stderr, " - %s.", state.current_test_name);
  554. va_start(arg, name);
  555. pad_length -= vfprintf(stderr, name, arg);
  556. va_end(arg);
  557. fprintf(stderr, "%*c", FFMAX(pad_length, 0) + 2, '[');
  558. if (state.num_failed == prev_failed)
  559. color_printf(COLOR_GREEN, "OK");
  560. else
  561. color_printf(COLOR_RED, "FAILED");
  562. fprintf(stderr, "]\n");
  563. prev_checked = state.num_checked;
  564. prev_failed = state.num_failed;
  565. } else if (!state.cpu_flag) {
  566. /* Calculate the amount of padding required to make the output vertically aligned */
  567. int length = strlen(state.current_test_name);
  568. va_list arg;
  569. va_start(arg, name);
  570. length += vsnprintf(NULL, 0, name, arg);
  571. va_end(arg);
  572. if (length > max_length)
  573. max_length = length;
  574. }
  575. }