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.

662 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. } state;
  172. /* PRNG state */
  173. AVLFG checkasm_lfg;
  174. /* float compare support code */
  175. static int is_negative(union av_intfloat32 u)
  176. {
  177. return u.i >> 31;
  178. }
  179. int float_near_ulp(float a, float b, unsigned max_ulp)
  180. {
  181. union av_intfloat32 x, y;
  182. x.f = a;
  183. y.f = b;
  184. if (is_negative(x) != is_negative(y)) {
  185. // handle -0.0 == +0.0
  186. return a == b;
  187. }
  188. if (llabs((int64_t)x.i - y.i) <= max_ulp)
  189. return 1;
  190. return 0;
  191. }
  192. int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp,
  193. unsigned len)
  194. {
  195. unsigned i;
  196. for (i = 0; i < len; i++) {
  197. if (!float_near_ulp(a[i], b[i], max_ulp))
  198. return 0;
  199. }
  200. return 1;
  201. }
  202. int float_near_abs_eps(float a, float b, float eps)
  203. {
  204. float abs_diff = fabsf(a - b);
  205. return abs_diff < eps;
  206. }
  207. int float_near_abs_eps_array(const float *a, const float *b, float eps,
  208. unsigned len)
  209. {
  210. unsigned i;
  211. for (i = 0; i < len; i++) {
  212. if (!float_near_abs_eps(a[i], b[i], eps))
  213. return 0;
  214. }
  215. return 1;
  216. }
  217. int float_near_abs_eps_ulp(float a, float b, float eps, unsigned max_ulp)
  218. {
  219. return float_near_ulp(a, b, max_ulp) || float_near_abs_eps(a, b, eps);
  220. }
  221. int float_near_abs_eps_array_ulp(const float *a, const float *b, float eps,
  222. unsigned max_ulp, unsigned len)
  223. {
  224. unsigned i;
  225. for (i = 0; i < len; i++) {
  226. if (!float_near_abs_eps_ulp(a[i], b[i], eps, max_ulp))
  227. return 0;
  228. }
  229. return 1;
  230. }
  231. /* Print colored text to stderr if the terminal supports it */
  232. static void color_printf(int color, const char *fmt, ...)
  233. {
  234. static int use_color = -1;
  235. va_list arg;
  236. #if HAVE_SETCONSOLETEXTATTRIBUTE
  237. static HANDLE con;
  238. static WORD org_attributes;
  239. if (use_color < 0) {
  240. CONSOLE_SCREEN_BUFFER_INFO con_info;
  241. con = GetStdHandle(STD_ERROR_HANDLE);
  242. if (con && con != INVALID_HANDLE_VALUE && GetConsoleScreenBufferInfo(con, &con_info)) {
  243. org_attributes = con_info.wAttributes;
  244. use_color = 1;
  245. } else
  246. use_color = 0;
  247. }
  248. if (use_color)
  249. SetConsoleTextAttribute(con, (org_attributes & 0xfff0) | (color & 0x0f));
  250. #else
  251. if (use_color < 0) {
  252. const char *term = getenv("TERM");
  253. use_color = term && strcmp(term, "dumb") && isatty(2);
  254. }
  255. if (use_color)
  256. fprintf(stderr, "\x1b[%d;3%dm", (color & 0x08) >> 3, color & 0x07);
  257. #endif
  258. va_start(arg, fmt);
  259. vfprintf(stderr, fmt, arg);
  260. va_end(arg);
  261. if (use_color) {
  262. #if HAVE_SETCONSOLETEXTATTRIBUTE
  263. SetConsoleTextAttribute(con, org_attributes);
  264. #else
  265. fprintf(stderr, "\x1b[0m");
  266. #endif
  267. }
  268. }
  269. /* Deallocate a tree */
  270. static void destroy_func_tree(CheckasmFunc *f)
  271. {
  272. if (f) {
  273. CheckasmFuncVersion *v = f->versions.next;
  274. while (v) {
  275. CheckasmFuncVersion *next = v->next;
  276. free(v);
  277. v = next;
  278. }
  279. destroy_func_tree(f->child[0]);
  280. destroy_func_tree(f->child[1]);
  281. free(f);
  282. }
  283. }
  284. /* Allocate a zero-initialized block, clean up and exit on failure */
  285. static void *checkasm_malloc(size_t size)
  286. {
  287. void *ptr = calloc(1, size);
  288. if (!ptr) {
  289. fprintf(stderr, "checkasm: malloc failed\n");
  290. destroy_func_tree(state.funcs);
  291. exit(1);
  292. }
  293. return ptr;
  294. }
  295. /* Get the suffix of the specified cpu flag */
  296. static const char *cpu_suffix(int cpu)
  297. {
  298. int i = FF_ARRAY_ELEMS(cpus);
  299. while (--i >= 0)
  300. if (cpu & cpus[i].flag)
  301. return cpus[i].suffix;
  302. return "c";
  303. }
  304. #ifdef AV_READ_TIME
  305. static int cmp_nop(const void *a, const void *b)
  306. {
  307. return *(const uint16_t*)a - *(const uint16_t*)b;
  308. }
  309. /* Measure the overhead of the timing code (in decicycles) */
  310. static int measure_nop_time(void)
  311. {
  312. uint16_t nops[10000];
  313. int i, nop_sum = 0;
  314. for (i = 0; i < 10000; i++) {
  315. uint64_t t = AV_READ_TIME();
  316. nops[i] = AV_READ_TIME() - t;
  317. }
  318. qsort(nops, 10000, sizeof(uint16_t), cmp_nop);
  319. for (i = 2500; i < 7500; i++)
  320. nop_sum += nops[i];
  321. return nop_sum / 500;
  322. }
  323. /* Print benchmark results */
  324. static void print_benchs(CheckasmFunc *f)
  325. {
  326. if (f) {
  327. print_benchs(f->child[0]);
  328. /* Only print functions with at least one assembly version */
  329. if (f->versions.cpu || f->versions.next) {
  330. CheckasmFuncVersion *v = &f->versions;
  331. do {
  332. if (v->iterations) {
  333. int decicycles = (10*v->cycles/v->iterations - state.nop_time) / 4;
  334. printf("%s_%s: %d.%d\n", f->name, cpu_suffix(v->cpu), decicycles/10, decicycles%10);
  335. }
  336. } while ((v = v->next));
  337. }
  338. print_benchs(f->child[1]);
  339. }
  340. }
  341. #endif
  342. /* ASCIIbetical sort except preserving natural order for numbers */
  343. static int cmp_func_names(const char *a, const char *b)
  344. {
  345. const char *start = a;
  346. int ascii_diff, digit_diff;
  347. for (; !(ascii_diff = *(const unsigned char*)a - *(const unsigned char*)b) && *a; a++, b++);
  348. for (; av_isdigit(*a) && av_isdigit(*b); a++, b++);
  349. if (a > start && av_isdigit(a[-1]) && (digit_diff = av_isdigit(*a) - av_isdigit(*b)))
  350. return digit_diff;
  351. return ascii_diff;
  352. }
  353. /* Perform a tree rotation in the specified direction and return the new root */
  354. static CheckasmFunc *rotate_tree(CheckasmFunc *f, int dir)
  355. {
  356. CheckasmFunc *r = f->child[dir^1];
  357. f->child[dir^1] = r->child[dir];
  358. r->child[dir] = f;
  359. r->color = f->color;
  360. f->color = 0;
  361. return r;
  362. }
  363. #define is_red(f) ((f) && !(f)->color)
  364. /* Balance a left-leaning red-black tree at the specified node */
  365. static void balance_tree(CheckasmFunc **root)
  366. {
  367. CheckasmFunc *f = *root;
  368. if (is_red(f->child[0]) && is_red(f->child[1])) {
  369. f->color ^= 1;
  370. f->child[0]->color = f->child[1]->color = 1;
  371. }
  372. if (!is_red(f->child[0]) && is_red(f->child[1]))
  373. *root = rotate_tree(f, 0); /* Rotate left */
  374. else if (is_red(f->child[0]) && is_red(f->child[0]->child[0]))
  375. *root = rotate_tree(f, 1); /* Rotate right */
  376. }
  377. /* Get a node with the specified name, creating it if it doesn't exist */
  378. static CheckasmFunc *get_func(CheckasmFunc **root, const char *name)
  379. {
  380. CheckasmFunc *f = *root;
  381. if (f) {
  382. /* Search the tree for a matching node */
  383. int cmp = cmp_func_names(name, f->name);
  384. if (cmp) {
  385. f = get_func(&f->child[cmp > 0], name);
  386. /* Rebalance the tree on the way up if a new node was inserted */
  387. if (!f->versions.func)
  388. balance_tree(root);
  389. }
  390. } else {
  391. /* Allocate and insert a new node into the tree */
  392. int name_length = strlen(name);
  393. f = *root = checkasm_malloc(sizeof(CheckasmFunc) + name_length);
  394. memcpy(f->name, name, name_length + 1);
  395. }
  396. return f;
  397. }
  398. /* Perform tests and benchmarks for the specified cpu flag if supported by the host */
  399. static void check_cpu_flag(const char *name, int flag)
  400. {
  401. int old_cpu_flag = state.cpu_flag;
  402. flag |= old_cpu_flag;
  403. av_set_cpu_flags_mask(flag);
  404. state.cpu_flag = av_get_cpu_flags();
  405. if (!flag || state.cpu_flag != old_cpu_flag) {
  406. int i;
  407. state.cpu_flag_name = name;
  408. for (i = 0; tests[i].func; i++) {
  409. state.current_test_name = tests[i].name;
  410. tests[i].func();
  411. }
  412. }
  413. }
  414. /* Print the name of the current CPU flag, but only do it once */
  415. static void print_cpu_name(void)
  416. {
  417. if (state.cpu_flag_name) {
  418. color_printf(COLOR_YELLOW, "%s:\n", state.cpu_flag_name);
  419. state.cpu_flag_name = NULL;
  420. }
  421. }
  422. int main(int argc, char *argv[])
  423. {
  424. unsigned int seed;
  425. int i, ret = 0;
  426. #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
  427. if (have_vfp(av_get_cpu_flags()) || have_neon(av_get_cpu_flags()))
  428. checkasm_checked_call = checkasm_checked_call_vfp;
  429. #endif
  430. if (!tests[0].func || !cpus[0].flag) {
  431. fprintf(stderr, "checkasm: no tests to perform\n");
  432. return 0;
  433. }
  434. if (argc > 1 && !strncmp(argv[1], "--bench", 7)) {
  435. #ifndef AV_READ_TIME
  436. fprintf(stderr, "checkasm: --bench is not supported on your system\n");
  437. return 1;
  438. #endif
  439. if (argv[1][7] == '=') {
  440. state.bench_pattern = argv[1] + 8;
  441. state.bench_pattern_len = strlen(state.bench_pattern);
  442. } else
  443. state.bench_pattern = "";
  444. argc--;
  445. argv++;
  446. }
  447. seed = (argc > 1) ? strtoul(argv[1], NULL, 10) : av_get_random_seed();
  448. fprintf(stderr, "checkasm: using random seed %u\n", seed);
  449. av_lfg_init(&checkasm_lfg, seed);
  450. check_cpu_flag(NULL, 0);
  451. for (i = 0; cpus[i].flag; i++)
  452. check_cpu_flag(cpus[i].name, cpus[i].flag);
  453. if (state.num_failed) {
  454. fprintf(stderr, "checkasm: %d of %d tests have failed\n", state.num_failed, state.num_checked);
  455. ret = 1;
  456. } else {
  457. fprintf(stderr, "checkasm: all %d tests passed\n", state.num_checked);
  458. #ifdef AV_READ_TIME
  459. if (state.bench_pattern) {
  460. state.nop_time = measure_nop_time();
  461. printf("nop: %d.%d\n", state.nop_time/10, state.nop_time%10);
  462. print_benchs(state.funcs);
  463. }
  464. #endif
  465. }
  466. destroy_func_tree(state.funcs);
  467. return ret;
  468. }
  469. /* Decide whether or not the specified function needs to be tested and
  470. * allocate/initialize data structures if needed. Returns a pointer to a
  471. * reference function if the function should be tested, otherwise NULL */
  472. void *checkasm_check_func(void *func, const char *name, ...)
  473. {
  474. char name_buf[256];
  475. void *ref = func;
  476. CheckasmFuncVersion *v;
  477. int name_length;
  478. va_list arg;
  479. va_start(arg, name);
  480. name_length = vsnprintf(name_buf, sizeof(name_buf), name, arg);
  481. va_end(arg);
  482. if (!func || name_length <= 0 || name_length >= sizeof(name_buf))
  483. return NULL;
  484. state.current_func = get_func(&state.funcs, name_buf);
  485. state.funcs->color = 1;
  486. v = &state.current_func->versions;
  487. if (v->func) {
  488. CheckasmFuncVersion *prev;
  489. do {
  490. /* Only test functions that haven't already been tested */
  491. if (v->func == func)
  492. return NULL;
  493. if (v->ok)
  494. ref = v->func;
  495. prev = v;
  496. } while ((v = v->next));
  497. v = prev->next = checkasm_malloc(sizeof(CheckasmFuncVersion));
  498. }
  499. v->func = func;
  500. v->ok = 1;
  501. v->cpu = state.cpu_flag;
  502. state.current_func_ver = v;
  503. if (state.cpu_flag)
  504. state.num_checked++;
  505. return ref;
  506. }
  507. /* Decide whether or not the current function needs to be benchmarked */
  508. int checkasm_bench_func(void)
  509. {
  510. return !state.num_failed && state.bench_pattern &&
  511. !strncmp(state.current_func->name, state.bench_pattern, state.bench_pattern_len);
  512. }
  513. /* Indicate that the current test has failed */
  514. void checkasm_fail_func(const char *msg, ...)
  515. {
  516. if (state.current_func_ver->cpu && state.current_func_ver->ok) {
  517. va_list arg;
  518. print_cpu_name();
  519. fprintf(stderr, " %s_%s (", state.current_func->name, cpu_suffix(state.current_func_ver->cpu));
  520. va_start(arg, msg);
  521. vfprintf(stderr, msg, arg);
  522. va_end(arg);
  523. fprintf(stderr, ")\n");
  524. state.current_func_ver->ok = 0;
  525. state.num_failed++;
  526. }
  527. }
  528. /* Update benchmark results of the current function */
  529. void checkasm_update_bench(int iterations, uint64_t cycles)
  530. {
  531. state.current_func_ver->iterations += iterations;
  532. state.current_func_ver->cycles += cycles;
  533. }
  534. /* Print the outcome of all tests performed since the last time this function was called */
  535. void checkasm_report(const char *name, ...)
  536. {
  537. static int prev_checked, prev_failed, max_length;
  538. if (state.num_checked > prev_checked) {
  539. int pad_length = max_length + 4;
  540. va_list arg;
  541. print_cpu_name();
  542. pad_length -= fprintf(stderr, " - %s.", state.current_test_name);
  543. va_start(arg, name);
  544. pad_length -= vfprintf(stderr, name, arg);
  545. va_end(arg);
  546. fprintf(stderr, "%*c", FFMAX(pad_length, 0) + 2, '[');
  547. if (state.num_failed == prev_failed)
  548. color_printf(COLOR_GREEN, "OK");
  549. else
  550. color_printf(COLOR_RED, "FAILED");
  551. fprintf(stderr, "]\n");
  552. prev_checked = state.num_checked;
  553. prev_failed = state.num_failed;
  554. } else if (!state.cpu_flag) {
  555. /* Calculate the amount of padding required to make the output vertically aligned */
  556. int length = strlen(state.current_test_name);
  557. va_list arg;
  558. va_start(arg, name);
  559. length += vsnprintf(NULL, 0, name, arg);
  560. va_end(arg);
  561. if (length > max_length)
  562. max_length = length;
  563. }
  564. }