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