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.

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