23 #ifndef TESTS_CHECKASM_CHECKASM_H
24 #define TESTS_CHECKASM_CHECKASM_H
31 #include <sys/ioctl.h>
32 #include <asm/unistd.h>
33 #include <linux/perf_event.h>
95 unsigned max_ulp,
unsigned len);
101 #define rnd() av_lfg_get(&checkasm_lfg)
105 #define BENCH_RUNS 1000
108 #define check_func(func, ...) (func_ref = checkasm_check_func((func_new = func), __VA_ARGS__))
112 #define declare_func(ret, ...) declare_new(ret, __VA_ARGS__) typedef ret func_type(__VA_ARGS__)
113 #define declare_func_float(ret, ...) declare_new_float(ret, __VA_ARGS__) typedef ret func_type(__VA_ARGS__)
114 #define declare_func_emms(cpu_flags, ret, ...) declare_new_emms(cpu_flags, ret, __VA_ARGS__) typedef ret func_type(__VA_ARGS__)
117 #define fail() checkasm_fail_func("%s:%d", av_basename(__FILE__), __LINE__)
120 #define report checkasm_report
123 #define call_ref(...) ((func_type *)func_ref)(__VA_ARGS__)
125 #if ARCH_X86 && HAVE_X86ASM
128 void checkasm_checked_call(
void *func, ...);
131 void checkasm_checked_call_emms(
void *func, ...);
134 void checkasm_checked_call_float(
void *func, ...);
146 void checkasm_stack_clobber(uint64_t clobber, ...);
147 #define declare_new(ret, ...) ret (*checked_call)(void *, int, int, int, int, int, __VA_ARGS__)\
148 = (void *)checkasm_checked_call;
149 #define declare_new_float(ret, ...) ret (*checked_call)(void *, int, int, int, int, int, __VA_ARGS__)\
150 = (void *)checkasm_checked_call_float;
151 #define declare_new_emms(cpu_flags, ret, ...) \
152 ret (*checked_call)(void *, int, int, int, int, int, __VA_ARGS__) = \
153 ((cpu_flags) & av_get_cpu_flags()) ? (void *)checkasm_checked_call_emms : \
154 (void *)checkasm_checked_call;
155 #define CLOB (UINT64_C(0xdeadbeefdeadbeef))
156 #define call_new(...) (checkasm_stack_clobber(CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,\
157 CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB),\
158 checked_call(func_new, 0, 0, 0, 0, 0, __VA_ARGS__))
160 #define declare_new(ret, ...) ret (*checked_call)(void *, __VA_ARGS__) = (void *)checkasm_checked_call;
161 #define declare_new_float(ret, ...) ret (*checked_call)(void *, __VA_ARGS__) = (void *)checkasm_checked_call_float;
162 #define declare_new_emms(cpu_flags, ret, ...) ret (*checked_call)(void *, __VA_ARGS__) = \
163 ((cpu_flags) & av_get_cpu_flags()) ? (void *)checkasm_checked_call_emms : \
164 (void *)checkasm_checked_call;
165 #define call_new(...) checked_call(func_new, __VA_ARGS__)
167 #elif ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
171 void checkasm_checked_call_vfp(
void *func,
int dummy, ...);
172 void checkasm_checked_call_novfp(
void *func,
int dummy, ...);
173 extern void (*checkasm_checked_call)(
void *
func,
int dummy, ...);
174 #define declare_new(ret, ...) ret (*checked_call)(void *, int dummy, __VA_ARGS__) = (void *)checkasm_checked_call;
175 #define call_new(...) checked_call(func_new, 0, __VA_ARGS__)
176 #elif ARCH_AARCH64 && !defined(__APPLE__)
177 void checkasm_stack_clobber(uint64_t clobber, ...);
178 void checkasm_checked_call(
void *func, ...);
179 #define declare_new(ret, ...) ret (*checked_call)(void *, int, int, int, int, int, int, int, __VA_ARGS__)\
180 = (void *)checkasm_checked_call;
181 #define CLOB (UINT64_C(0xdeadbeefdeadbeef))
182 #define call_new(...) (checkasm_stack_clobber(CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,\
183 CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB),\
184 checked_call(func_new, 0, 0, 0, 0, 0, 0, 0, __VA_ARGS__))
186 #define declare_new(ret, ...)
187 #define declare_new_float(ret, ...)
188 #define declare_new_emms(cpu_flags, ret, ...)
190 #define call_new(...) ((func_type *)func_new)(__VA_ARGS__)
193 #ifndef declare_new_emms
194 #define declare_new_emms(cpu_flags, ret, ...) declare_new(ret, __VA_ARGS__)
196 #ifndef declare_new_float
197 #define declare_new_float(ret, ...) declare_new(ret, __VA_ARGS__)
206 #if defined(AV_READ_TIME) || CONFIG_LINUX_PERF
208 #if CONFIG_LINUX_PERF
209 #define PERF_START(t) do { \
210 ioctl(sysfd, PERF_EVENT_IOC_RESET, 0); \
211 ioctl(sysfd, PERF_EVENT_IOC_ENABLE, 0); \
213 #define PERF_STOP(t) do { \
214 ioctl(sysfd, PERF_EVENT_IOC_DISABLE, 0); \
215 read(sysfd, &t, sizeof(t)); \
218 #define PERF_START(t) t = AV_READ_TIME()
219 #define PERF_STOP(t) t = AV_READ_TIME() - t
223 #define bench_new(...)\
225 if (checkasm_bench_func()) {\
226 struct CheckasmPerf *perf = checkasm_get_perf_context();\
227 av_unused const int sysfd = perf->sysfd;\
228 func_type *tfunc = func_new;\
232 for (ti = 0; ti < BENCH_RUNS; ti++) {\
239 if (t*tcount <= tsum*4 && ti > 0) {\
250 #define bench_new(...) while(0)
251 #define PERF_START(t) while(0)
252 #define PERF_STOP(t) while(0)
void int float_near_ulp(float a, float b, unsigned max_ulp)
void * checkasm_check_func(void *func, const char *name,...) av_printf_format(2
int float_near_abs_eps_ulp(float a, float b, float eps, unsigned max_ulp)
void checkasm_check_v210enc(void)
void struct CheckasmPerf * checkasm_get_perf_context(void)
void checkasm_check_vp9dsp(void)
void checkasm_check_bswapdsp(void)
void checkasm_check_vf_threshold(void)
void checkasm_check_flacdsp(void)
void checkasm_check_h264pred(void)
void checkasm_check_blockdsp(void)
void checkasm_check_colorspace(void)
void checkasm_check_vp8dsp(void)
void checkasm_check_sbrdsp(void)
void checkasm_check_h264qpel(void)
high precision timer, useful to profile code
void checkasm_check_jpeg2000dsp(void)
void checkasm_check_llviddspenc(void)
void int checkasm_bench_func(void)
void checkasm_check_h264dsp(void)
void checkasm_fail_func(const char *msg,...) av_printf_format(1
void checkasm_check_hevc_add_res(void)
#define av_printf_format(fmtpos, attrpos)
void checkasm_check_videodsp(void)
common internal API header
void checkasm_check_fixed_dsp(void)
void checkasm_check_utvideodsp(void)
int double_near_abs_eps_array(const double *a, const double *b, double eps, unsigned len)
void checkasm_check_audiodsp(void)
void checkasm_check_nlmeans(void)
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
void checkasm_check_sw_rgb(void)
void checkasm_check_exrdsp(void)
static av_unused void * func_ref
void checkasm_check_hevc_idct(void)
int double_near_abs_eps(double a, double b, double eps)
void checkasm_check_fmtconvert(void)
void checkasm_check_aacpsdsp(void)
int(* func)(AVBPrint *dst, const char *in, const char *arg)
void checkasm_report(const char *name,...) av_printf_format(1
void checkasm_check_llviddsp(void)
void checkasm_check_alacdsp(void)
void checkasm_check_float_dsp(void)
void checkasm_check_huffyuvdsp(void)
static av_unused void * func_new
int float_near_abs_eps(float a, float b, float eps)
int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp, unsigned len)
void checkasm_check_pixblockdsp(void)
void checkasm_check_hevc_sao(void)
void checkasm_check_synth_filter(void)
void checkasm_check_g722dsp(void)
void checkasm_check_vf_hflip(void)
int float_near_abs_eps_array_ulp(const float *a, const float *b, float eps, unsigned max_ulp, unsigned len)
void checkasm_check_blend(void)
int float_near_abs_eps_array(const float *a, const float *b, float eps, unsigned len)