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.

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