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