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.

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