Go to the documentation of this file.
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>
34 #elif CONFIG_MACOS_KPERF
50 #define checkasm_save_context() checkasm_handle_signal(setjmp(checkasm_context_buf))
51 #define checkasm_load_context(s) longjmp(checkasm_context_buf, s)
52 #elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
57 #define checkasm_save_context() \
58 (checkasm_context_buf.status = 0, \
59 RtlCaptureContext(&checkasm_context_buf.c), \
60 checkasm_handle_signal(checkasm_context_buf.status))
61 #define checkasm_load_context(s) \
62 (checkasm_context_buf.status = s, \
63 RtlRestoreContext(&checkasm_context_buf.c, NULL))
65 #define checkasm_context void*
66 #define checkasm_save_context() 0
67 #define checkasm_load_context() do {} while (0)
72 #define checkasm_save_context() checkasm_handle_signal(sigsetjmp(checkasm_context_buf, 1))
73 #define checkasm_load_context(s) siglongjmp(checkasm_context_buf, s)
157 unsigned max_ulp,
unsigned len);
163 #define rnd() av_lfg_get(&checkasm_lfg)
167 #define BENCH_RUNS 1000
170 #define check_func(func, ...) (checkasm_save_context(), func_ref = checkasm_check_func((func_new = func), __VA_ARGS__))
174 #define declare_func(ret, ...) declare_new(ret, __VA_ARGS__) typedef ret func_type(__VA_ARGS__)
175 #define declare_func_float(ret, ...) declare_new_float(ret, __VA_ARGS__) typedef ret func_type(__VA_ARGS__)
176 #define declare_func_emms(cpu_flags, ret, ...) declare_new_emms(cpu_flags, ret, __VA_ARGS__) typedef ret func_type(__VA_ARGS__)
179 #define fail() checkasm_fail_func("%s:%d", av_basename(__FILE__), __LINE__)
182 #define report checkasm_report
185 #define call_ref(...)\
186 (checkasm_set_signal_handler_state(1),\
187 ((func_type *)func_ref)(__VA_ARGS__));\
188 checkasm_set_signal_handler_state(0)
190 #if ARCH_X86 && HAVE_X86ASM
193 void checkasm_checked_call(
void *
func, ...);
196 void checkasm_checked_call_emms(
void *
func, ...);
199 void checkasm_checked_call_float(
void *
func, ...);
211 void checkasm_stack_clobber(uint64_t clobber, ...);
212 #define declare_new(ret, ...) ret (*checked_call)(void *, int, int, int, int, int, __VA_ARGS__)\
213 = (void *)checkasm_checked_call;
214 #define declare_new_float(ret, ...) ret (*checked_call)(void *, int, int, int, int, int, __VA_ARGS__)\
215 = (void *)checkasm_checked_call_float;
216 #define declare_new_emms(cpu_flags, ret, ...) \
217 ret (*checked_call)(void *, int, int, int, int, int, __VA_ARGS__) = \
218 ((cpu_flags) & av_get_cpu_flags()) ? (void *)checkasm_checked_call_emms : \
219 (void *)checkasm_checked_call;
220 #define CLOB (UINT64_C(0xdeadbeefdeadbeef))
221 #define call_new(...) (checkasm_set_signal_handler_state(1),\
222 checkasm_stack_clobber(CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,\
223 CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB),\
224 checked_call(func_new, 0, 0, 0, 0, 0, __VA_ARGS__));\
225 checkasm_set_signal_handler_state(0)
227 #define declare_new(ret, ...) ret (*checked_call)(void *, __VA_ARGS__) = (void *)checkasm_checked_call;
228 #define declare_new_float(ret, ...) ret (*checked_call)(void *, __VA_ARGS__) = (void *)checkasm_checked_call_float;
229 #define declare_new_emms(cpu_flags, ret, ...) ret (*checked_call)(void *, __VA_ARGS__) = \
230 ((cpu_flags) & av_get_cpu_flags()) ? (void *)checkasm_checked_call_emms : \
231 (void *)checkasm_checked_call;
232 #define call_new(...)\
233 (checkasm_set_signal_handler_state(1),\
234 checked_call(func_new, __VA_ARGS__));\
235 checkasm_set_signal_handler_state(0)
237 #elif ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
241 void checkasm_checked_call_vfp(
void *
func,
int dummy, ...);
242 void checkasm_checked_call_novfp(
void *
func,
int dummy, ...);
243 extern void (*checkasm_checked_call)(
void *
func,
int dummy, ...);
244 #define declare_new(ret, ...) ret (*checked_call)(void *, int dummy, __VA_ARGS__, \
245 int, int, int, int, int, int, int, int, \
246 int, int, int, int, int, int, int) = (void *)checkasm_checked_call;
247 #define call_new(...) \
248 (checkasm_set_signal_handler_state(1),\
249 checked_call(func_new, 0, __VA_ARGS__, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 0, 0, 0));\
250 checkasm_set_signal_handler_state(0)
251 #elif ARCH_AARCH64 && !defined(__APPLE__)
252 void checkasm_stack_clobber(uint64_t clobber, ...);
253 void checkasm_checked_call(
void *
func, ...);
254 #define declare_new(ret, ...) ret (*checked_call)(void *, int, int, int, int, int, int, int, __VA_ARGS__,\
255 int, int, int, int, int, int, int, int,\
256 int, int, int, int, int, int, int)\
257 = (void *)checkasm_checked_call;
258 #define CLOB (UINT64_C(0xdeadbeefdeadbeef))
259 #define call_new(...) (checkasm_set_signal_handler_state(1),\
260 checkasm_stack_clobber(CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,\
261 CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB,CLOB),\
262 checked_call(func_new, 0, 0, 0, 0, 0, 0, 0, __VA_ARGS__,\
263 7, 6, 5, 4, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0));\
264 checkasm_set_signal_handler_state(0)
266 void checkasm_set_function(
void *);
267 void *checkasm_get_wrapper(
void);
269 #if HAVE_RV && (__riscv_xlen == 64) && defined (__riscv_d)
270 #define declare_new(ret, ...) \
271 ret (*checked_call)(__VA_ARGS__) = checkasm_get_wrapper();
272 #define call_new(...) \
273 (checkasm_set_signal_handler_state(1),\
274 checkasm_set_function(func_new), checked_call(__VA_ARGS__));\
275 checkasm_set_signal_handler_state(0)
277 #define declare_new(ret, ...)
278 #define call_new(...)\
279 (checkasm_set_signal_handler_state(1),\
280 ((func_type *)func_new)(__VA_ARGS__));\
281 checkasm_set_signal_handler_state(0)
284 #define declare_new(ret, ...)
285 #define declare_new_float(ret, ...)
286 #define declare_new_emms(cpu_flags, ret, ...)
288 #define call_new(...)\
289 (checkasm_set_signal_handler_state(1),\
290 ((func_type *)func_new)(__VA_ARGS__));\
291 checkasm_set_signal_handler_state(0)
294 #ifndef declare_new_emms
295 #define declare_new_emms(cpu_flags, ret, ...) declare_new(ret, __VA_ARGS__)
297 #ifndef declare_new_float
298 #define declare_new_float(ret, ...) declare_new(ret, __VA_ARGS__)
307 #if defined(AV_READ_TIME) || CONFIG_LINUX_PERF || CONFIG_MACOS_KPERF
309 #if CONFIG_LINUX_PERF
310 #define PERF_START(t) do { \
311 ioctl(sysfd, PERF_EVENT_IOC_RESET, 0); \
312 ioctl(sysfd, PERF_EVENT_IOC_ENABLE, 0); \
314 #define PERF_STOP(t) do { \
316 ioctl(sysfd, PERF_EVENT_IOC_DISABLE, 0); \
317 ret = read(sysfd, &t, sizeof(t)); \
320 #elif CONFIG_MACOS_KPERF
321 #define PERF_START(t) t = ff_kperf_cycles()
322 #define PERF_STOP(t) t = ff_kperf_cycles() - t
324 #define PERF_START(t) t = AV_READ_TIME()
325 #define PERF_STOP(t) t = AV_READ_TIME() - t
329 #define bench_new(...)\
331 if (checkasm_bench_func()) {\
332 struct CheckasmPerf *perf = checkasm_get_perf_context();\
333 av_unused const int sysfd = perf->sysfd;\
334 func_type *tfunc = func_new;\
338 checkasm_set_signal_handler_state(1);\
339 for (ti = 0; ti < BENCH_RUNS; ti++) {\
346 if (t*tcount <= tsum*4 && ti > 0) {\
354 checkasm_set_signal_handler_state(0);\
358 #define bench_new(...) while(0)
359 #define PERF_START(t) while(0)
360 #define PERF_STOP(t) while(0)
363 #define DECL_CHECKASM_CHECK_FUNC(type) \
364 int checkasm_check_##type(const char *file, int line, \
365 const type *buf1, ptrdiff_t stride1, \
366 const type *buf2, ptrdiff_t stride2, \
367 int w, int h, const char *name)
375 #define PASTE(a,b) a ## b
376 #define CONCAT(a,b) PASTE(a,b)
378 #define checkasm_check(prefix, ...) CONCAT(checkasm_check_, prefix)(__FILE__, __LINE__, __VA_ARGS__)
void checkasm_check_nlmeans(void)
int(* func)(AVBPrint *dst, const char *in, const char *arg)
void checkasm_check_sw_gbrp(void)
void checkasm_check_vp8dsp(void)
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
void checkasm_check_videodsp(void)
void checkasm_check_vf_eq(void)
void checkasm_check_v210dec(void)
void checkasm_check_aacencdsp(void)
void checkasm_check_hevc_idct(void)
void checkasm_check_sw_scale(void)
void int checkasm_bench_func(void)
static av_unused void * func_ref
void checkasm_check_aacpsdsp(void)
void * checkasm_check_func(void *func, const char *name,...) av_printf_format(2
void checkasm_check_alacdsp(void)
void checkasm_check_llviddspenc(void)
int double_near_abs_eps(double a, double b, double eps)
void checkasm_check_h264dsp(void)
void checkasm_check_ac3dsp(void)
void checkasm_check_motion(void)
static av_unused void * func_new
int float_near_abs_eps_ulp(float a, float b, float eps, unsigned max_ulp)
void checkasm_check_vp9dsp(void)
void checkasm_check_vf_threshold(void)
void checkasm_check_vf_gblur(void)
void checkasm_check_vvc_mc(void)
void checkasm_report(const char *name,...) av_printf_format(1
void checkasm_check_float_dsp(void)
int double_near_abs_eps_array(const double *a, const double *b, double eps, unsigned len)
void checkasm_check_pixblockdsp(void)
void checkasm_check_bswapdsp(void)
void checkasm_check_vf_bwdif(void)
void checkasm_check_sw_rgb(void)
void checkasm_check_hevc_sao(void)
void checkasm_check_hevc_pel(void)
void checkasm_check_takdsp(void)
void checkasm_check_fmtconvert(void)
void void checkasm_set_signal_handler_state(int enabled)
int float_near_abs_eps_array(const float *a, const float *b, float eps, unsigned len)
#define av_printf_format(fmtpos, attrpos)
int float_near_abs_eps_array_ulp(const float *a, const float *b, float eps, unsigned max_ulp, unsigned len)
void checkasm_check_vorbisdsp(void)
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
void checkasm_check_vc1dsp(void)
void checkasm_check_h264chroma(void)
Context structure for the Lagged Fibonacci PRNG.
void checkasm_check_llauddsp(void)
checkasm_context checkasm_context_buf
void checkasm_check_llviddsp(void)
void checkasm_check_h264pred(void)
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
void checkasm_fail_func(const char *msg,...) av_printf_format(1
void checkasm_check_huffyuvdsp(void)
int float_near_abs_eps(float a, float b, float eps)
void checkasm_check_fixed_dsp(void)
void checkasm_check_colorspace(void)
void checkasm_check_utvideodsp(void)
void checkasm_check_flacdsp(void)
void checkasm_check_idctdsp(void)
void checkasm_check_synth_filter(void)
void checkasm_check_av_tx(void)
void checkasm_check_blockdsp(void)
void checkasm_check_lpc(void)
void checkasm_check_g722dsp(void)
void checkasm_check_svq1enc(void)
void checkasm_check_vf_hflip(void)
void checkasm_check_blend(void)
void checkasm_check_afir(void)
void checkasm_check_h264qpel(void)
void struct CheckasmPerf * checkasm_get_perf_context(void)
void checkasm_check_vf_sobel(void)
void checkasm_check_v210enc(void)
void checkasm_check_sbrdsp(void)
void checkasm_check_hevc_deblock(void)
int checkasm_handle_signal(int s)
#define DECL_CHECKASM_CHECK_FUNC(type)
void checkasm_check_jpeg2000dsp(void)
void checkasm_check_hevc_add_res(void)
sigjmp_buf checkasm_context
void checkasm_check_rv34dsp(void)
void checkasm_check_audiodsp(void)
int float_near_ulp(float a, float b, unsigned max_ulp)
void checkasm_check_exrdsp(void)
int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp, unsigned len)
void checkasm_check_opusdsp(void)