]> git.sesse.net Git - ffmpeg/blob - tests/checkasm/checkasm.c
Merge commit '136e7cf64ce9e78de7158d6720539d51cb96b743'
[ffmpeg] / tests / checkasm / checkasm.c
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
23 #include "config.h"
24
25 #if CONFIG_LINUX_PERF
26 # ifndef _GNU_SOURCE
27 #  define _GNU_SOURCE // for syscall (performance monitoring API)
28 # endif
29 #endif
30
31 #include <stdarg.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include "checkasm.h"
36 #include "libavutil/common.h"
37 #include "libavutil/cpu.h"
38 #include "libavutil/intfloat.h"
39 #include "libavutil/random_seed.h"
40
41 #if HAVE_IO_H
42 #include <io.h>
43 #endif
44
45 #if HAVE_SETCONSOLETEXTATTRIBUTE
46 #include <windows.h>
47 #define COLOR_RED    FOREGROUND_RED
48 #define COLOR_GREEN  FOREGROUND_GREEN
49 #define COLOR_YELLOW (FOREGROUND_RED|FOREGROUND_GREEN)
50 #else
51 #define COLOR_RED    1
52 #define COLOR_GREEN  2
53 #define COLOR_YELLOW 3
54 #endif
55
56 #if HAVE_UNISTD_H
57 #include <unistd.h>
58 #endif
59
60 #if !HAVE_ISATTY
61 #define isatty(fd) 1
62 #endif
63
64 #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
65 #include "libavutil/arm/cpu.h"
66
67 void (*checkasm_checked_call)(void *func, int dummy, ...) = checkasm_checked_call_novfp;
68 #endif
69
70 /* List of tests to invoke */
71 static const struct {
72     const char *name;
73     void (*func)(void);
74 } tests[] = {
75 #if CONFIG_AVCODEC
76     #if CONFIG_AAC_DECODER
77         { "aacpsdsp", checkasm_check_aacpsdsp },
78         { "sbrdsp",   checkasm_check_sbrdsp },
79     #endif
80     #if CONFIG_ALAC_DECODER
81         { "alacdsp", checkasm_check_alacdsp },
82     #endif
83     #if CONFIG_AUDIODSP
84         { "audiodsp", checkasm_check_audiodsp },
85     #endif
86     #if CONFIG_BLOCKDSP
87         { "blockdsp", checkasm_check_blockdsp },
88     #endif
89     #if CONFIG_BSWAPDSP
90         { "bswapdsp", checkasm_check_bswapdsp },
91     #endif
92     #if CONFIG_DCA_DECODER
93         { "synth_filter", checkasm_check_synth_filter },
94     #endif
95     #if CONFIG_EXR_DECODER
96         { "exrdsp", checkasm_check_exrdsp },
97     #endif
98     #if CONFIG_FLACDSP
99         { "flacdsp", checkasm_check_flacdsp },
100     #endif
101     #if CONFIG_FMTCONVERT
102         { "fmtconvert", checkasm_check_fmtconvert },
103     #endif
104     #if CONFIG_G722DSP
105         { "g722dsp", checkasm_check_g722dsp },
106     #endif
107     #if CONFIG_H264DSP
108         { "h264dsp", checkasm_check_h264dsp },
109     #endif
110     #if CONFIG_H264PRED
111         { "h264pred", checkasm_check_h264pred },
112     #endif
113     #if CONFIG_H264QPEL
114         { "h264qpel", checkasm_check_h264qpel },
115     #endif
116     #if CONFIG_HEVC_DECODER
117         { "hevc_add_res", checkasm_check_hevc_add_res },
118         { "hevc_idct", checkasm_check_hevc_idct },
119     #endif
120     #if CONFIG_HUFFYUV_DECODER
121         { "huffyuvdsp", checkasm_check_huffyuvdsp },
122     #endif
123     #if CONFIG_JPEG2000_DECODER
124         { "jpeg2000dsp", checkasm_check_jpeg2000dsp },
125     #endif
126     #if CONFIG_HUFFYUVDSP
127         { "llviddsp", checkasm_check_llviddsp },
128     #endif
129     #if CONFIG_PIXBLOCKDSP
130         { "pixblockdsp", checkasm_check_pixblockdsp },
131     #endif
132     #if CONFIG_UTVIDEO_DECODER
133         { "utvideodsp", checkasm_check_utvideodsp },
134     #endif
135     #if CONFIG_V210_ENCODER
136         { "v210enc", checkasm_check_v210enc },
137     #endif
138     #if CONFIG_VP8DSP
139         { "vp8dsp", checkasm_check_vp8dsp },
140     #endif
141     #if CONFIG_VP9_DECODER
142         { "vp9dsp", checkasm_check_vp9dsp },
143     #endif
144     #if CONFIG_VIDEODSP
145         { "videodsp", checkasm_check_videodsp },
146     #endif
147 #endif
148 #if CONFIG_AVFILTER
149     #if CONFIG_BLEND_FILTER
150         { "vf_blend", checkasm_check_blend },
151     #endif
152     #if CONFIG_COLORSPACE_FILTER
153         { "vf_colorspace", checkasm_check_colorspace },
154     #endif
155 #endif
156 #if CONFIG_AVUTIL
157         { "fixed_dsp", checkasm_check_fixed_dsp },
158         { "float_dsp", checkasm_check_float_dsp },
159 #endif
160     { NULL }
161 };
162
163 /* List of cpu flags to check */
164 static const struct {
165     const char *name;
166     const char *suffix;
167     int flag;
168 } cpus[] = {
169 #if   ARCH_AARCH64
170     { "ARMV8",    "armv8",    AV_CPU_FLAG_ARMV8 },
171     { "NEON",     "neon",     AV_CPU_FLAG_NEON },
172 #elif ARCH_ARM
173     { "ARMV5TE",  "armv5te",  AV_CPU_FLAG_ARMV5TE },
174     { "ARMV6",    "armv6",    AV_CPU_FLAG_ARMV6 },
175     { "ARMV6T2",  "armv6t2",  AV_CPU_FLAG_ARMV6T2 },
176     { "VFP",      "vfp",      AV_CPU_FLAG_VFP },
177     { "VFP_VM",   "vfp_vm",   AV_CPU_FLAG_VFP_VM },
178     { "VFPV3",    "vfp3",     AV_CPU_FLAG_VFPV3 },
179     { "NEON",     "neon",     AV_CPU_FLAG_NEON },
180 #elif ARCH_PPC
181     { "ALTIVEC",  "altivec",  AV_CPU_FLAG_ALTIVEC },
182     { "VSX",      "vsx",      AV_CPU_FLAG_VSX },
183     { "POWER8",   "power8",   AV_CPU_FLAG_POWER8 },
184 #elif ARCH_X86
185     { "MMX",      "mmx",      AV_CPU_FLAG_MMX|AV_CPU_FLAG_CMOV },
186     { "MMXEXT",   "mmxext",   AV_CPU_FLAG_MMXEXT },
187     { "3DNOW",    "3dnow",    AV_CPU_FLAG_3DNOW },
188     { "3DNOWEXT", "3dnowext", AV_CPU_FLAG_3DNOWEXT },
189     { "SSE",      "sse",      AV_CPU_FLAG_SSE },
190     { "SSE2",     "sse2",     AV_CPU_FLAG_SSE2|AV_CPU_FLAG_SSE2SLOW },
191     { "SSE3",     "sse3",     AV_CPU_FLAG_SSE3|AV_CPU_FLAG_SSE3SLOW },
192     { "SSSE3",    "ssse3",    AV_CPU_FLAG_SSSE3|AV_CPU_FLAG_ATOM },
193     { "SSE4.1",   "sse4",     AV_CPU_FLAG_SSE4 },
194     { "SSE4.2",   "sse42",    AV_CPU_FLAG_SSE42 },
195     { "AES-NI",   "aesni",    AV_CPU_FLAG_AESNI },
196     { "AVX",      "avx",      AV_CPU_FLAG_AVX },
197     { "XOP",      "xop",      AV_CPU_FLAG_XOP },
198     { "FMA3",     "fma3",     AV_CPU_FLAG_FMA3 },
199     { "FMA4",     "fma4",     AV_CPU_FLAG_FMA4 },
200     { "AVX2",     "avx2",     AV_CPU_FLAG_AVX2 },
201 #endif
202     { NULL }
203 };
204
205 typedef struct CheckasmFuncVersion {
206     struct CheckasmFuncVersion *next;
207     void *func;
208     int ok;
209     int cpu;
210     CheckasmPerf perf;
211 } CheckasmFuncVersion;
212
213 /* Binary search tree node */
214 typedef struct CheckasmFunc {
215     struct CheckasmFunc *child[2];
216     CheckasmFuncVersion versions;
217     uint8_t color; /* 0 = red, 1 = black */
218     char name[1];
219 } CheckasmFunc;
220
221 /* Internal state */
222 static struct {
223     CheckasmFunc *funcs;
224     CheckasmFunc *current_func;
225     CheckasmFuncVersion *current_func_ver;
226     const char *current_test_name;
227     const char *bench_pattern;
228     int bench_pattern_len;
229     int num_checked;
230     int num_failed;
231
232     /* perf */
233     int nop_time;
234     int sysfd;
235
236     int cpu_flag;
237     const char *cpu_flag_name;
238     const char *test_name;
239 } state;
240
241 /* PRNG state */
242 AVLFG checkasm_lfg;
243
244 /* float compare support code */
245 static int is_negative(union av_intfloat32 u)
246 {
247     return u.i >> 31;
248 }
249
250 int float_near_ulp(float a, float b, unsigned max_ulp)
251 {
252     union av_intfloat32 x, y;
253
254     x.f = a;
255     y.f = b;
256
257     if (is_negative(x) != is_negative(y)) {
258         // handle -0.0 == +0.0
259         return a == b;
260     }
261
262     if (llabs((int64_t)x.i - y.i) <= max_ulp)
263         return 1;
264
265     return 0;
266 }
267
268 int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp,
269                          unsigned len)
270 {
271     unsigned i;
272
273     for (i = 0; i < len; i++) {
274         if (!float_near_ulp(a[i], b[i], max_ulp))
275             return 0;
276     }
277     return 1;
278 }
279
280 int float_near_abs_eps(float a, float b, float eps)
281 {
282     float abs_diff = fabsf(a - b);
283
284     return abs_diff < eps;
285 }
286
287 int float_near_abs_eps_array(const float *a, const float *b, float eps,
288                          unsigned len)
289 {
290     unsigned i;
291
292     for (i = 0; i < len; i++) {
293         if (!float_near_abs_eps(a[i], b[i], eps))
294             return 0;
295     }
296     return 1;
297 }
298
299 int float_near_abs_eps_ulp(float a, float b, float eps, unsigned max_ulp)
300 {
301     return float_near_ulp(a, b, max_ulp) || float_near_abs_eps(a, b, eps);
302 }
303
304 int float_near_abs_eps_array_ulp(const float *a, const float *b, float eps,
305                          unsigned max_ulp, unsigned len)
306 {
307     unsigned i;
308
309     for (i = 0; i < len; i++) {
310         if (!float_near_abs_eps_ulp(a[i], b[i], eps, max_ulp))
311             return 0;
312     }
313     return 1;
314 }
315
316 int double_near_abs_eps(double a, double b, double eps)
317 {
318     double abs_diff = fabs(a - b);
319
320     return abs_diff < eps;
321 }
322
323 int double_near_abs_eps_array(const double *a, const double *b, double eps,
324                               unsigned len)
325 {
326     unsigned i;
327
328     for (i = 0; i < len; i++) {
329         if (!double_near_abs_eps(a[i], b[i], eps))
330             return 0;
331     }
332     return 1;
333 }
334
335 /* Print colored text to stderr if the terminal supports it */
336 static void color_printf(int color, const char *fmt, ...)
337 {
338     static int use_color = -1;
339     va_list arg;
340
341 #if HAVE_SETCONSOLETEXTATTRIBUTE
342     static HANDLE con;
343     static WORD org_attributes;
344
345     if (use_color < 0) {
346         CONSOLE_SCREEN_BUFFER_INFO con_info;
347         con = GetStdHandle(STD_ERROR_HANDLE);
348         if (con && con != INVALID_HANDLE_VALUE && GetConsoleScreenBufferInfo(con, &con_info)) {
349             org_attributes = con_info.wAttributes;
350             use_color = 1;
351         } else
352             use_color = 0;
353     }
354     if (use_color)
355         SetConsoleTextAttribute(con, (org_attributes & 0xfff0) | (color & 0x0f));
356 #else
357     if (use_color < 0) {
358         const char *term = getenv("TERM");
359         use_color = term && strcmp(term, "dumb") && isatty(2);
360     }
361     if (use_color)
362         fprintf(stderr, "\x1b[%d;3%dm", (color & 0x08) >> 3, color & 0x07);
363 #endif
364
365     va_start(arg, fmt);
366     vfprintf(stderr, fmt, arg);
367     va_end(arg);
368
369     if (use_color) {
370 #if HAVE_SETCONSOLETEXTATTRIBUTE
371         SetConsoleTextAttribute(con, org_attributes);
372 #else
373         fprintf(stderr, "\x1b[0m");
374 #endif
375     }
376 }
377
378 /* Deallocate a tree */
379 static void destroy_func_tree(CheckasmFunc *f)
380 {
381     if (f) {
382         CheckasmFuncVersion *v = f->versions.next;
383         while (v) {
384             CheckasmFuncVersion *next = v->next;
385             free(v);
386             v = next;
387         }
388
389         destroy_func_tree(f->child[0]);
390         destroy_func_tree(f->child[1]);
391         free(f);
392     }
393 }
394
395 /* Allocate a zero-initialized block, clean up and exit on failure */
396 static void *checkasm_malloc(size_t size)
397 {
398     void *ptr = calloc(1, size);
399     if (!ptr) {
400         fprintf(stderr, "checkasm: malloc failed\n");
401         destroy_func_tree(state.funcs);
402         exit(1);
403     }
404     return ptr;
405 }
406
407 /* Get the suffix of the specified cpu flag */
408 static const char *cpu_suffix(int cpu)
409 {
410     int i = FF_ARRAY_ELEMS(cpus);
411
412     while (--i >= 0)
413         if (cpu & cpus[i].flag)
414             return cpus[i].suffix;
415
416     return "c";
417 }
418
419 static int cmp_nop(const void *a, const void *b)
420 {
421     return *(const uint16_t*)a - *(const uint16_t*)b;
422 }
423
424 /* Measure the overhead of the timing code (in decicycles) */
425 static int measure_nop_time(void)
426 {
427     uint16_t nops[10000];
428     int i, nop_sum = 0;
429     av_unused const int sysfd = state.sysfd;
430
431     uint64_t t = 0;
432     for (i = 0; i < 10000; i++) {
433         PERF_START(t);
434         PERF_STOP(t);
435         nops[i] = t;
436     }
437
438     qsort(nops, 10000, sizeof(uint16_t), cmp_nop);
439     for (i = 2500; i < 7500; i++)
440         nop_sum += nops[i];
441
442     return nop_sum / 500;
443 }
444
445 /* Print benchmark results */
446 static void print_benchs(CheckasmFunc *f)
447 {
448     if (f) {
449         print_benchs(f->child[0]);
450
451         /* Only print functions with at least one assembly version */
452         if (f->versions.cpu || f->versions.next) {
453             CheckasmFuncVersion *v = &f->versions;
454             do {
455                 CheckasmPerf *p = &v->perf;
456                 if (p->iterations) {
457                     int decicycles = (10*p->cycles/p->iterations - state.nop_time) / 4;
458                     printf("%s_%s: %d.%d\n", f->name, cpu_suffix(v->cpu), decicycles/10, decicycles%10);
459                 }
460             } while ((v = v->next));
461         }
462
463         print_benchs(f->child[1]);
464     }
465 }
466
467 /* ASCIIbetical sort except preserving natural order for numbers */
468 static int cmp_func_names(const char *a, const char *b)
469 {
470     const char *start = a;
471     int ascii_diff, digit_diff;
472
473     for (; !(ascii_diff = *(const unsigned char*)a - *(const unsigned char*)b) && *a; a++, b++);
474     for (; av_isdigit(*a) && av_isdigit(*b); a++, b++);
475
476     if (a > start && av_isdigit(a[-1]) && (digit_diff = av_isdigit(*a) - av_isdigit(*b)))
477         return digit_diff;
478
479     return ascii_diff;
480 }
481
482 /* Perform a tree rotation in the specified direction and return the new root */
483 static CheckasmFunc *rotate_tree(CheckasmFunc *f, int dir)
484 {
485     CheckasmFunc *r = f->child[dir^1];
486     f->child[dir^1] = r->child[dir];
487     r->child[dir] = f;
488     r->color = f->color;
489     f->color = 0;
490     return r;
491 }
492
493 #define is_red(f) ((f) && !(f)->color)
494
495 /* Balance a left-leaning red-black tree at the specified node */
496 static void balance_tree(CheckasmFunc **root)
497 {
498     CheckasmFunc *f = *root;
499
500     if (is_red(f->child[0]) && is_red(f->child[1])) {
501         f->color ^= 1;
502         f->child[0]->color = f->child[1]->color = 1;
503     }
504
505     if (!is_red(f->child[0]) && is_red(f->child[1]))
506         *root = rotate_tree(f, 0); /* Rotate left */
507     else if (is_red(f->child[0]) && is_red(f->child[0]->child[0]))
508         *root = rotate_tree(f, 1); /* Rotate right */
509 }
510
511 /* Get a node with the specified name, creating it if it doesn't exist */
512 static CheckasmFunc *get_func(CheckasmFunc **root, const char *name)
513 {
514     CheckasmFunc *f = *root;
515
516     if (f) {
517         /* Search the tree for a matching node */
518         int cmp = cmp_func_names(name, f->name);
519         if (cmp) {
520             f = get_func(&f->child[cmp > 0], name);
521
522             /* Rebalance the tree on the way up if a new node was inserted */
523             if (!f->versions.func)
524                 balance_tree(root);
525         }
526     } else {
527         /* Allocate and insert a new node into the tree */
528         int name_length = strlen(name);
529         f = *root = checkasm_malloc(sizeof(CheckasmFunc) + name_length);
530         memcpy(f->name, name, name_length + 1);
531     }
532
533     return f;
534 }
535
536 /* Perform tests and benchmarks for the specified cpu flag if supported by the host */
537 static void check_cpu_flag(const char *name, int flag)
538 {
539     int old_cpu_flag = state.cpu_flag;
540
541     flag |= old_cpu_flag;
542     av_force_cpu_flags(-1);
543     state.cpu_flag = flag & av_get_cpu_flags();
544     av_force_cpu_flags(state.cpu_flag);
545
546     if (!flag || state.cpu_flag != old_cpu_flag) {
547         int i;
548
549         state.cpu_flag_name = name;
550         for (i = 0; tests[i].func; i++) {
551             if (state.test_name && strcmp(tests[i].name, state.test_name))
552                 continue;
553             state.current_test_name = tests[i].name;
554             tests[i].func();
555         }
556     }
557 }
558
559 /* Print the name of the current CPU flag, but only do it once */
560 static void print_cpu_name(void)
561 {
562     if (state.cpu_flag_name) {
563         color_printf(COLOR_YELLOW, "%s:\n", state.cpu_flag_name);
564         state.cpu_flag_name = NULL;
565     }
566 }
567
568 #if CONFIG_LINUX_PERF
569 static int bench_init_linux(void)
570 {
571     struct perf_event_attr attr = {
572         .type           = PERF_TYPE_HARDWARE,
573         .size           = sizeof(struct perf_event_attr),
574         .config         = PERF_COUNT_HW_CPU_CYCLES,
575         .disabled       = 1, // start counting only on demand
576         .exclude_kernel = 1,
577         .exclude_hv     = 1,
578     };
579
580     printf("benchmarking with Linux Perf Monitoring API\n");
581
582     state.sysfd = syscall(__NR_perf_event_open, &attr, 0, -1, -1, 0);
583     if (state.sysfd == -1) {
584         perror("syscall");
585         return -1;
586     }
587     return 0;
588 }
589 #endif
590
591 static int bench_init_ffmpeg(void)
592 {
593 #ifdef AV_READ_TIME
594     printf("benchmarking with native FFmpeg timers\n");
595     return 0;
596 #else
597     fprintf(stderr, "checkasm: --bench is not supported on your system\n");
598     return -1;
599 #endif
600 }
601
602 static int bench_init(void)
603 {
604 #if CONFIG_LINUX_PERF
605     int ret = bench_init_linux();
606 #else
607     int ret = bench_init_ffmpeg();
608 #endif
609     if (ret < 0)
610         return ret;
611
612     state.nop_time = measure_nop_time();
613     printf("nop: %d.%d\n", state.nop_time/10, state.nop_time%10);
614     return 0;
615 }
616
617 static void bench_uninit(void)
618 {
619 #if CONFIG_LINUX_PERF
620     if (state.sysfd > 0)
621         close(state.sysfd);
622 #endif
623 }
624
625 int main(int argc, char *argv[])
626 {
627     unsigned int seed = av_get_random_seed();
628     int i, ret = 0;
629
630 #if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
631     if (have_vfp(av_get_cpu_flags()) || have_neon(av_get_cpu_flags()))
632         checkasm_checked_call = checkasm_checked_call_vfp;
633 #endif
634
635     if (!tests[0].func || !cpus[0].flag) {
636         fprintf(stderr, "checkasm: no tests to perform\n");
637         return 0;
638     }
639
640     while (argc > 1) {
641         if (!strncmp(argv[1], "--bench", 7)) {
642             if (bench_init() < 0)
643                 return 1;
644             if (argv[1][7] == '=') {
645                 state.bench_pattern = argv[1] + 8;
646                 state.bench_pattern_len = strlen(state.bench_pattern);
647             } else
648                 state.bench_pattern = "";
649         } else if (!strncmp(argv[1], "--test=", 7)) {
650             state.test_name = argv[1] + 7;
651         } else {
652             seed = strtoul(argv[1], NULL, 10);
653         }
654
655         argc--;
656         argv++;
657     }
658
659     fprintf(stderr, "checkasm: using random seed %u\n", seed);
660     av_lfg_init(&checkasm_lfg, seed);
661
662     check_cpu_flag(NULL, 0);
663     for (i = 0; cpus[i].flag; i++)
664         check_cpu_flag(cpus[i].name, cpus[i].flag);
665
666     if (state.num_failed) {
667         fprintf(stderr, "checkasm: %d of %d tests have failed\n", state.num_failed, state.num_checked);
668         ret = 1;
669     } else {
670         fprintf(stderr, "checkasm: all %d tests passed\n", state.num_checked);
671         if (state.bench_pattern) {
672             print_benchs(state.funcs);
673         }
674     }
675
676     destroy_func_tree(state.funcs);
677     bench_uninit();
678     return ret;
679 }
680
681 /* Decide whether or not the specified function needs to be tested and
682  * allocate/initialize data structures if needed. Returns a pointer to a
683  * reference function if the function should be tested, otherwise NULL */
684 void *checkasm_check_func(void *func, const char *name, ...)
685 {
686     char name_buf[256];
687     void *ref = func;
688     CheckasmFuncVersion *v;
689     int name_length;
690     va_list arg;
691
692     va_start(arg, name);
693     name_length = vsnprintf(name_buf, sizeof(name_buf), name, arg);
694     va_end(arg);
695
696     if (!func || name_length <= 0 || name_length >= sizeof(name_buf))
697         return NULL;
698
699     state.current_func = get_func(&state.funcs, name_buf);
700     state.funcs->color = 1;
701     v = &state.current_func->versions;
702
703     if (v->func) {
704         CheckasmFuncVersion *prev;
705         do {
706             /* Only test functions that haven't already been tested */
707             if (v->func == func)
708                 return NULL;
709
710             if (v->ok)
711                 ref = v->func;
712
713             prev = v;
714         } while ((v = v->next));
715
716         v = prev->next = checkasm_malloc(sizeof(CheckasmFuncVersion));
717     }
718
719     v->func = func;
720     v->ok = 1;
721     v->cpu = state.cpu_flag;
722     state.current_func_ver = v;
723
724     if (state.cpu_flag)
725         state.num_checked++;
726
727     return ref;
728 }
729
730 /* Decide whether or not the current function needs to be benchmarked */
731 int checkasm_bench_func(void)
732 {
733     return !state.num_failed && state.bench_pattern &&
734            !strncmp(state.current_func->name, state.bench_pattern, state.bench_pattern_len);
735 }
736
737 /* Indicate that the current test has failed */
738 void checkasm_fail_func(const char *msg, ...)
739 {
740     if (state.current_func_ver->cpu && state.current_func_ver->ok) {
741         va_list arg;
742
743         print_cpu_name();
744         fprintf(stderr, "   %s_%s (", state.current_func->name, cpu_suffix(state.current_func_ver->cpu));
745         va_start(arg, msg);
746         vfprintf(stderr, msg, arg);
747         va_end(arg);
748         fprintf(stderr, ")\n");
749
750         state.current_func_ver->ok = 0;
751         state.num_failed++;
752     }
753 }
754
755 /* Get the benchmark context of the current function */
756 CheckasmPerf *checkasm_get_perf_context(void)
757 {
758     CheckasmPerf *perf = &state.current_func_ver->perf;
759     memset(perf, 0, sizeof(*perf));
760     perf->sysfd = state.sysfd;
761     return perf;
762 }
763
764 /* Print the outcome of all tests performed since the last time this function was called */
765 void checkasm_report(const char *name, ...)
766 {
767     static int prev_checked, prev_failed, max_length;
768
769     if (state.num_checked > prev_checked) {
770         int pad_length = max_length + 4;
771         va_list arg;
772
773         print_cpu_name();
774         pad_length -= fprintf(stderr, " - %s.", state.current_test_name);
775         va_start(arg, name);
776         pad_length -= vfprintf(stderr, name, arg);
777         va_end(arg);
778         fprintf(stderr, "%*c", FFMAX(pad_length, 0) + 2, '[');
779
780         if (state.num_failed == prev_failed)
781             color_printf(COLOR_GREEN, "OK");
782         else
783             color_printf(COLOR_RED, "FAILED");
784         fprintf(stderr, "]\n");
785
786         prev_checked = state.num_checked;
787         prev_failed  = state.num_failed;
788     } else if (!state.cpu_flag) {
789         /* Calculate the amount of padding required to make the output vertically aligned */
790         int length = strlen(state.current_test_name);
791         va_list arg;
792
793         va_start(arg, name);
794         length += vsnprintf(NULL, 0, name, arg);
795         va_end(arg);
796
797         if (length > max_length)
798             max_length = length;
799     }
800 }