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.

718 lines
19KB

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