mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
4f3647e46e
The initial obsoletion of SVID libm error handling left the old wrappers and __kernel_standard still being used for new ports and static linking, just with macro definitions of _LIB_VERSION and matherr that meant symbols with those names were never actually used and the code for different error handling variants could be optimized out. This patch cleans things up further by eliminating the __kernel_standard use for new ports and static linking. Now, the old wrappers no longer generate any code in the !LIBM_SVID_COMPAT case, while the new errno-only wrappers that were added for float128 support are now also used for float, double and long double in that case. The changes are generally straightforward. The w_scalb*_compat wrappers continue to be used (scalb is obsolescent in the sense of not being supported for float128, but is present in supported standards - the 2001 edition of POSIX and earlier XSI versions - so remains supported for static linking and new ports, as do the float and long double variants that are existing GNU extensions). Those wrappers would only call __kernel_standard in the _LIB_VERSION == _SVID_ case. Since we would like to be able to compile most of glibc without optimization, relying on a static function whose only use is under an if (0) condition being optimized away to avoid an undefined __kernel_standard reference may not be a good idea. Thus, the relevant code in the scalb wrappers has LIBM_SVID_COMPAT conditionals added to guarantee it's not built at all in the case where __kernel_standard does not exist. Just as i386 has its own w_sqrt_compat.c, so w_sqrt.c is also added. ia64 gets dummy w_*.c to prevent those files being built where they would conflict with the ia64 libm, as with its existing w_*_compat.c. Conditions disabling code for !LIBM_SVID_COMPAT are needed in both the math/ wrappers and in the long double wrappers in ldbl-opt (to avoid them setting up aliases and symbol versions for undefined symbols). I hope that future cleanups to how libm function aliases and symbol versioning are done will eliminate the need for most of the ldbl-opt wrappers. Tested for x86_64 and x86, and with build-many-glibcs.py. * sysdeps/generic/math-type-macros-double.h: Include <math-svid-compat.h>. (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT. * sysdeps/generic/math-type-macros-float.h: Include <math-svid-compat.h>. (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT. * sysdeps/generic/math-type-macros-ldouble.h: Include <math-svid-compat.h>. (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT. * math/lgamma-compat.h (BUILD_LGAMMA): Include LIBM_SVID_COMPAT condition. * math/w_acos_compat.c: Condition contents on [LIBM_SVID_COMPAT]. * math/w_acosf_compat.c: Likewise. * math/w_acosh_compat.c: Likewise. * math/w_acoshf_compat.c: Likewise. * math/w_acoshl_compat.c: Likewise. * math/w_acosl_compat.c: Likewise. * math/w_asin_compat.c: Likewise. * math/w_asinf_compat.c: Likewise. * math/w_asinl_compat.c: Likewise. * math/w_atan2_compat.c: Likewise. * math/w_atan2f_compat.c: Likewise. * math/w_atan2l_compat.c: Likewise. * math/w_atanh_compat.c: Likewise. * math/w_atanhf_compat.c: Likewise. * math/w_atanhl_compat.c: Likewise. * math/w_cosh_compat.c: Likewise. * math/w_coshf_compat.c: Likewise. * math/w_coshl_compat.c: Likewise. * math/w_exp10_compat.c: Likewise. * math/w_exp10f_compat.c: Likewise. * math/w_exp10l_compat.c: Likewise. * math/w_exp2_compat.c: Likewise. * math/w_exp2f_compat.c: Likewise. * math/w_exp2l_compat.c: Likewise. * math/w_fmod_compat.c: Likewise. * math/w_fmodf_compat.c: Likewise. * math/w_fmodl_compat.c: Likewise. * math/w_hypot_compat.c: Likewise. * math/w_hypotf_compat.c: Likewise. * math/w_hypotl_compat.c: Likewise. * math/w_j0_compat.c: Likewise. * math/w_j0f_compat.c: Likewise. * math/w_j0l_compat.c: Likewise. * math/w_j1_compat.c: Likewise. * math/w_j1f_compat.c: Likewise. * math/w_j1l_compat.c: Likewise. * math/w_jn_compat.c: Likewise. * math/w_jnf_compat.c: Likewise. * math/w_jnl_compat.c: Likewise. * math/w_lgamma_r_compat.c: Likewise. * math/w_lgammaf_r_compat.c: Likewise. * math/w_lgammal_r_compat.c: Likewise. * math/w_log10_compat.c: Likewise. * math/w_log10f_compat.c: Likewise. * math/w_log10l_compat.c: Likewise. * math/w_log2_compat.c: Likewise. * math/w_log2f_compat.c: Likewise. * math/w_log2l_compat.c: Likewise. * math/w_log_compat.c: Likewise. * math/w_logf_compat.c: Likewise. * math/w_logl_compat.c: Likewise. * math/w_pow_compat.c: Likewise. * math/w_powf_compat.c: Likewise. * math/w_powl_compat.c: Likewise. * math/w_remainder_compat.c: Likewise. * math/w_remainderf_compat.c: Likewise. * math/w_remainderl_compat.c: Likewise. * math/w_sinh_compat.c: Likewise. * math/w_sinhf_compat.c: Likewise. * math/w_sinhl_compat.c: Likewise. * math/w_sqrt_compat.c: Likewise. * math/w_sqrtf_compat.c: Likewise. * math/w_sqrtl_compat.c: Likewise. * math/w_tgamma_compat.c: Likewise. * math/w_tgammaf_compat.c: Likewise. * math/w_tgammal_compat.c: Likewise. * math/w_scalb_compat.c (sysv_scalb): Condition definition on [LIBM_SVID_COMPAT]. (__scalb): Condition call to sysv_scalb on [LIBM_SVID_COMPAT]. * math/w_scalbf_compat.c (sysv_scalbf): Condition definition on [LIBM_SVID_COMPAT]. (__scalbf): Condition call to sysv_scalbf on [LIBM_SVID_COMPAT]. * math/w_scalbl_compat.c (sysv_scalbl): Condition definition on [LIBM_SVID_COMPAT]. (__scalbl): Condition call to sysv_scalbl on [LIBM_SVID_COMPAT]. * sysdeps/i386/fpu/w_sqrt.c: New file. * sysdeps/ia64/fpu/w_acos.c: Likewise. * sysdeps/ia64/fpu/w_acosf.c: Likewise. * sysdeps/ia64/fpu/w_acosh.c: Likewise. * sysdeps/ia64/fpu/w_acoshf.c: Likewise. * sysdeps/ia64/fpu/w_acoshl.c: Likewise. * sysdeps/ia64/fpu/w_acosl.c: Likewise. * sysdeps/ia64/fpu/w_asin.c: Likewise. * sysdeps/ia64/fpu/w_asinf.c: Likewise. * sysdeps/ia64/fpu/w_asinl.c: Likewise. * sysdeps/ia64/fpu/w_atan2.c: Likewise. * sysdeps/ia64/fpu/w_atan2f.c: Likewise. * sysdeps/ia64/fpu/w_atan2l.c: Likewise. * sysdeps/ia64/fpu/w_atanh.c: Likewise. * sysdeps/ia64/fpu/w_atanhf.c: Likewise. * sysdeps/ia64/fpu/w_atanhl.c: Likewise. * sysdeps/ia64/fpu/w_cosh.c: Likewise. * sysdeps/ia64/fpu/w_coshf.c: Likewise. * sysdeps/ia64/fpu/w_coshl.c: Likewise. * sysdeps/ia64/fpu/w_exp.c: Likewise. * sysdeps/ia64/fpu/w_exp10.c: Likewise. * sysdeps/ia64/fpu/w_exp10f.c: Likewise. * sysdeps/ia64/fpu/w_exp10l.c: Likewise. * sysdeps/ia64/fpu/w_exp2.c: Likewise. * sysdeps/ia64/fpu/w_exp2f.c: Likewise. * sysdeps/ia64/fpu/w_exp2l.c: Likewise. * sysdeps/ia64/fpu/w_expf.c: Likewise. * sysdeps/ia64/fpu/w_expl.c: Likewise. * sysdeps/ia64/fpu/w_fmod.c: Likewise. * sysdeps/ia64/fpu/w_fmodf.c: Likewise. * sysdeps/ia64/fpu/w_fmodl.c: Likewise. * sysdeps/ia64/fpu/w_hypot.c: Likewise. * sysdeps/ia64/fpu/w_hypotf.c: Likewise. * sysdeps/ia64/fpu/w_hypotl.c: Likewise. * sysdeps/ia64/fpu/w_lgamma_r.c: Likewise. * sysdeps/ia64/fpu/w_lgammaf_r.c: Likewise. * sysdeps/ia64/fpu/w_lgammal_r.c: Likewise. * sysdeps/ia64/fpu/w_log.c: Likewise. * sysdeps/ia64/fpu/w_log10.c: Likewise. * sysdeps/ia64/fpu/w_log10f.c: Likewise. * sysdeps/ia64/fpu/w_log10l.c: Likewise. * sysdeps/ia64/fpu/w_log2.c: Likewise. * sysdeps/ia64/fpu/w_log2f.c: Likewise. * sysdeps/ia64/fpu/w_log2l.c: Likewise. * sysdeps/ia64/fpu/w_logf.c: Likewise. * sysdeps/ia64/fpu/w_logl.c: Likewise. * sysdeps/ia64/fpu/w_pow.c: Likewise. * sysdeps/ia64/fpu/w_powf.c: Likewise. * sysdeps/ia64/fpu/w_powl.c: Likewise. * sysdeps/ia64/fpu/w_remainder.c: Likewise. * sysdeps/ia64/fpu/w_remainderf.c: Likewise. * sysdeps/ia64/fpu/w_remainderl.c: Likewise. * sysdeps/ia64/fpu/w_sinh.c: Likewise. * sysdeps/ia64/fpu/w_sinhf.c: Likewise. * sysdeps/ia64/fpu/w_sinhl.c: Likewise. * sysdeps/ia64/fpu/w_sqrt.c: Likewise. * sysdeps/ia64/fpu/w_sqrtf.c: Likewise. * sysdeps/ia64/fpu/w_sqrtl.c: Likewise. * sysdeps/ia64/fpu/w_tgamma.c: Likewise. * sysdeps/ia64/fpu/w_tgammaf.c: Likewise. * sysdeps/ia64/fpu/w_tgammal.c: Likewise. * sysdeps/ieee754/dbl-64/w_exp_compat.c: Condition contents on [LIBM_SVID_COMPAT]. * sysdeps/ieee754/flt-32/w_expf_compat.c: Likewise. * sysdeps/ieee754/k_standard.c: Likewise. * sysdeps/ieee754/k_standardf.c: Likewise. * sysdeps/ieee754/k_standardl.c: Likewise. * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Likewise. * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Likewise. * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Likewise. * sysdeps/ieee754/ldbl-64-128/w_expl_compat.c: Condition long_double_symbol call on [LIBM_SVID_COMPAT]. * sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_acosl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_asinl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_coshl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_j0l_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_j1l_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_jnl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_lgammal_r_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_log10l_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_log2l_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_logl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_powl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c: Likewise. * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c: Condition long_double_symbol and compat_symbol calls on [LIBM_SVID_COMPAT]. |
||
---|---|---|
.. | ||
bits | ||
machine | ||
atest-exp2.c | ||
atest-exp.c | ||
atest-sincos.c | ||
auto-libm-test-in | ||
auto-libm-test-out-acos | ||
auto-libm-test-out-acosh | ||
auto-libm-test-out-asin | ||
auto-libm-test-out-asinh | ||
auto-libm-test-out-atan | ||
auto-libm-test-out-atan2 | ||
auto-libm-test-out-atanh | ||
auto-libm-test-out-cabs | ||
auto-libm-test-out-cacos | ||
auto-libm-test-out-cacosh | ||
auto-libm-test-out-carg | ||
auto-libm-test-out-casin | ||
auto-libm-test-out-casinh | ||
auto-libm-test-out-catan | ||
auto-libm-test-out-catanh | ||
auto-libm-test-out-cbrt | ||
auto-libm-test-out-ccos | ||
auto-libm-test-out-ccosh | ||
auto-libm-test-out-cexp | ||
auto-libm-test-out-clog | ||
auto-libm-test-out-clog10 | ||
auto-libm-test-out-cos | ||
auto-libm-test-out-cosh | ||
auto-libm-test-out-cpow | ||
auto-libm-test-out-csin | ||
auto-libm-test-out-csinh | ||
auto-libm-test-out-csqrt | ||
auto-libm-test-out-ctan | ||
auto-libm-test-out-ctanh | ||
auto-libm-test-out-erf | ||
auto-libm-test-out-erfc | ||
auto-libm-test-out-exp | ||
auto-libm-test-out-exp2 | ||
auto-libm-test-out-exp10 | ||
auto-libm-test-out-expm1 | ||
auto-libm-test-out-fma | ||
auto-libm-test-out-hypot | ||
auto-libm-test-out-j0 | ||
auto-libm-test-out-j1 | ||
auto-libm-test-out-jn | ||
auto-libm-test-out-lgamma | ||
auto-libm-test-out-log | ||
auto-libm-test-out-log1p | ||
auto-libm-test-out-log2 | ||
auto-libm-test-out-log10 | ||
auto-libm-test-out-pow | ||
auto-libm-test-out-sin | ||
auto-libm-test-out-sincos | ||
auto-libm-test-out-sinh | ||
auto-libm-test-out-sqrt | ||
auto-libm-test-out-tan | ||
auto-libm-test-out-tanh | ||
auto-libm-test-out-tgamma | ||
auto-libm-test-out-y0 | ||
auto-libm-test-out-y1 | ||
auto-libm-test-out-yn | ||
basic-test.c | ||
bug-nextafter.c | ||
bug-nexttoward.c | ||
bug-tgmath1.c | ||
cabs_template.c | ||
carg_template.c | ||
cimag_template.c | ||
complex.h | ||
conj_template.c | ||
creal_template.c | ||
divtc3.c | ||
e_acoshl.c | ||
e_acosl.c | ||
e_asinl.c | ||
e_atan2l.c | ||
e_atanhl.c | ||
e_coshl.c | ||
e_exp2_template.c | ||
e_exp10.c | ||
e_exp10f.c | ||
e_exp10l.c | ||
e_expl.c | ||
e_fmodl.c | ||
e_gammal_r.c | ||
e_hypotl.c | ||
e_j0l.c | ||
e_j1l.c | ||
e_jnl.c | ||
e_lgammal_r.c | ||
e_log2l.c | ||
e_log10l.c | ||
e_logl.c | ||
e_powl.c | ||
e_rem_pio2l.c | ||
e_scalb.c | ||
e_scalbf.c | ||
e_scalbl.c | ||
e_sinhl.c | ||
e_sqrtf128.c | ||
e_sqrtl.c | ||
fclrexcpt.c | ||
fedisblxcpt.c | ||
feenablxcpt.c | ||
fegetenv.c | ||
fegetexcept.c | ||
fegetmode.c | ||
fegetround.c | ||
feholdexcpt.c | ||
fenv.h | ||
fesetenv.c | ||
fesetexcept.c | ||
fesetmode.c | ||
fesetround.c | ||
fetestexceptflag.c | ||
feupdateenv.c | ||
fgetexcptflg.c | ||
fpu_control.c | ||
fraiseexcpt.c | ||
fromfp.h | ||
fsetexcptflg.c | ||
ftestexcept.c | ||
gen-auto-libm-tests.c | ||
gen-fromfp-tests-inputs | ||
gen-fromfp-tests.py | ||
gen-libm-test.pl | ||
gen-tgmath-tests.py | ||
k_casinh_template.c | ||
k_cosl.c | ||
k_sincosl.c | ||
k_sinl.c | ||
k_tanl.c | ||
lgamma-compat.h | ||
libm-test-acos.inc | ||
libm-test-acosh.inc | ||
libm-test-asin.inc | ||
libm-test-asinh.inc | ||
libm-test-atan2.inc | ||
libm-test-atan.inc | ||
libm-test-atanh.inc | ||
libm-test-cabs.inc | ||
libm-test-cacos.inc | ||
libm-test-cacosh.inc | ||
libm-test-canonicalize.inc | ||
libm-test-carg.inc | ||
libm-test-casin.inc | ||
libm-test-casinh.inc | ||
libm-test-catan.inc | ||
libm-test-catanh.inc | ||
libm-test-cbrt.inc | ||
libm-test-ccos.inc | ||
libm-test-ccosh.inc | ||
libm-test-ceil.inc | ||
libm-test-cexp.inc | ||
libm-test-cimag.inc | ||
libm-test-clog10.inc | ||
libm-test-clog.inc | ||
libm-test-conj.inc | ||
libm-test-copysign.inc | ||
libm-test-cos.inc | ||
libm-test-cosh.inc | ||
libm-test-cpow.inc | ||
libm-test-cproj.inc | ||
libm-test-creal.inc | ||
libm-test-csin.inc | ||
libm-test-csinh.inc | ||
libm-test-csqrt.inc | ||
libm-test-ctan.inc | ||
libm-test-ctanh.inc | ||
libm-test-driver.c | ||
libm-test-erf.inc | ||
libm-test-erfc.inc | ||
libm-test-exp2.inc | ||
libm-test-exp10.inc | ||
libm-test-exp.inc | ||
libm-test-expm1.inc | ||
libm-test-fabs.inc | ||
libm-test-fdim.inc | ||
libm-test-floor.inc | ||
libm-test-fma.inc | ||
libm-test-fmax.inc | ||
libm-test-fmaxmag.inc | ||
libm-test-fmin.inc | ||
libm-test-fminmag.inc | ||
libm-test-fmod.inc | ||
libm-test-fpclassify.inc | ||
libm-test-frexp.inc | ||
libm-test-fromfp.inc | ||
libm-test-fromfpx.inc | ||
libm-test-getpayload.inc | ||
libm-test-hypot.inc | ||
libm-test-ilogb.inc | ||
libm-test-iscanonical.inc | ||
libm-test-iseqsig.inc | ||
libm-test-isfinite.inc | ||
libm-test-isgreater.inc | ||
libm-test-isgreaterequal.inc | ||
libm-test-isinf.inc | ||
libm-test-isless.inc | ||
libm-test-islessequal.inc | ||
libm-test-islessgreater.inc | ||
libm-test-isnan.inc | ||
libm-test-isnormal.inc | ||
libm-test-issignaling.inc | ||
libm-test-issubnormal.inc | ||
libm-test-isunordered.inc | ||
libm-test-iszero.inc | ||
libm-test-j0.inc | ||
libm-test-j1.inc | ||
libm-test-jn.inc | ||
libm-test-lgamma.inc | ||
libm-test-llogb.inc | ||
libm-test-llrint.inc | ||
libm-test-llround.inc | ||
libm-test-log1p.inc | ||
libm-test-log2.inc | ||
libm-test-log10.inc | ||
libm-test-log.inc | ||
libm-test-logb.inc | ||
libm-test-lrint.inc | ||
libm-test-lround.inc | ||
libm-test-modf.inc | ||
libm-test-nearbyint.inc | ||
libm-test-nextafter.inc | ||
libm-test-nextdown.inc | ||
libm-test-nexttoward.inc | ||
libm-test-nextup.inc | ||
libm-test-pow.inc | ||
libm-test-remainder.inc | ||
libm-test-remquo.inc | ||
libm-test-rint.inc | ||
libm-test-round.inc | ||
libm-test-roundeven.inc | ||
libm-test-scalb.inc | ||
libm-test-scalbln.inc | ||
libm-test-scalbn.inc | ||
libm-test-setpayload.inc | ||
libm-test-setpayloadsig.inc | ||
libm-test-signbit.inc | ||
libm-test-significand.inc | ||
libm-test-sin.inc | ||
libm-test-sincos.inc | ||
libm-test-sinh.inc | ||
libm-test-sqrt.inc | ||
libm-test-support.c | ||
libm-test-support.h | ||
libm-test-tan.inc | ||
libm-test-tanh.inc | ||
libm-test-tgamma.inc | ||
libm-test-totalorder.inc | ||
libm-test-totalordermag.inc | ||
libm-test-trunc.inc | ||
libm-test-ufromfp.inc | ||
libm-test-ufromfpx.inc | ||
libm-test-y0.inc | ||
libm-test-y1.inc | ||
libm-test-yn.inc | ||
Makefile | ||
math-svid-compat.h | ||
math.h | ||
mul_split.h | ||
mul_splitl.h | ||
multc3.c | ||
README.libm-test | ||
s_asinhl.c | ||
s_atanl.c | ||
s_cacos_template.c | ||
s_cacosh_template.c | ||
s_canonicalize_template.c | ||
s_casin_template.c | ||
s_casinh_template.c | ||
s_catan_template.c | ||
s_catanh_template.c | ||
s_cbrtl.c | ||
s_ccos_template.c | ||
s_ccosh_template.c | ||
s_cexp_template.c | ||
s_clog10_template.c | ||
s_clog_template.c | ||
s_cpow_template.c | ||
s_cproj_template.c | ||
s_csin_template.c | ||
s_csinh_template.c | ||
s_csqrt_template.c | ||
s_ctan_template.c | ||
s_ctanh_template.c | ||
s_erfl.c | ||
s_expm1l.c | ||
s_fdim_template.c | ||
s_fma.c | ||
s_fmaf.c | ||
s_fmal.c | ||
s_fmax_template.c | ||
s_fmaxmag_template.c | ||
s_fmin_template.c | ||
s_fminmag_template.c | ||
s_iscanonicall.c | ||
s_iseqsig_template.c | ||
s_ldexp_template.c | ||
s_log1pl.c | ||
s_nan_template.c | ||
s_nextafter.c | ||
s_nextdown_template.c | ||
s_nexttowardf.c | ||
s_nexttowardl.c | ||
s_significand.c | ||
s_significandf.c | ||
s_significandl.c | ||
s_tanhl.c | ||
setfpucw.c | ||
t_sincosl.c | ||
test-double-vlen2.h | ||
test-double-vlen4.h | ||
test-double-vlen8.h | ||
test-double.h | ||
test-fe-snans-always-signal.c | ||
test-femode-traps.c | ||
test-femode.c | ||
test-fenv-clear-main.c | ||
test-fenv-clear.c | ||
test-fenv-preserve.c | ||
test-fenv-return.c | ||
test-fenv-tls.c | ||
test-fenv.c | ||
test-fenvinline.c | ||
test-fesetexcept-traps.c | ||
test-fesetexcept.c | ||
test-fetestexceptflag.c | ||
test-fexcept-traps.c | ||
test-fexcept.c | ||
test-finite-macros.c | ||
test-float128.h | ||
test-float-vlen4.h | ||
test-float-vlen8.h | ||
test-float-vlen16.h | ||
test-float.h | ||
test-flt-eval-method.c | ||
test-fp-ilogb-constants.c | ||
test-fp-llogb-constants.c | ||
test-fpucw-ieee-static.c | ||
test-fpucw-ieee.c | ||
test-fpucw-static.c | ||
test-fpucw.c | ||
test-iseqsig-excess-precision.c | ||
test-iszero-excess-precision.c | ||
test-ldouble.h | ||
test-math-errno.h | ||
test-math-finite.h | ||
test-math-floatn.h | ||
test-math-inline.h | ||
test-math-isinff.cc | ||
test-math-issignaling.cc | ||
test-math-iszero.cc | ||
test-math-no-finite.h | ||
test-math-no-inline.h | ||
test-math-scalar.h | ||
test-math-vector.h | ||
test-matherr-2.c | ||
test-matherr-3.c | ||
test-matherr.c | ||
test-misc.c | ||
test-nan-overflow.c | ||
test-nan-payload.c | ||
test-nearbyint-except-2.c | ||
test-nearbyint-except.c | ||
test-powl.c | ||
test-signgam-finite-c11.c | ||
test-signgam-finite-c99.c | ||
test-signgam-finite.c | ||
test-signgam-main.c | ||
test-signgam-uchar-init-static.c | ||
test-signgam-uchar-init.c | ||
test-signgam-uchar-static.c | ||
test-signgam-uchar.c | ||
test-signgam-uint-init-static.c | ||
test-signgam-uint-init.c | ||
test-signgam-uint-static.c | ||
test-signgam-uint.c | ||
test-signgam-ullong-init-static.c | ||
test-signgam-ullong-init.c | ||
test-signgam-ullong-static.c | ||
test-signgam-ullong.c | ||
test-snan.c | ||
test-tgmath2.c | ||
test-tgmath-int.c | ||
test-tgmath-ret.c | ||
test-tgmath.c | ||
tgmath.h | ||
tst-CMPLX2.c | ||
tst-CMPLX.c | ||
tst-definitions.c | ||
Versions | ||
w_acos_compat.c | ||
w_acos_template.c | ||
w_acosf_compat.c | ||
w_acosh_compat.c | ||
w_acosh_template.c | ||
w_acoshf_compat.c | ||
w_acoshl_compat.c | ||
w_acosl_compat.c | ||
w_asin_compat.c | ||
w_asin_template.c | ||
w_asinf_compat.c | ||
w_asinl_compat.c | ||
w_atan2_compat.c | ||
w_atan2_template.c | ||
w_atan2f_compat.c | ||
w_atan2l_compat.c | ||
w_atanh_compat.c | ||
w_atanh_template.c | ||
w_atanhf_compat.c | ||
w_atanhl_compat.c | ||
w_cosh_compat.c | ||
w_cosh_template.c | ||
w_coshf_compat.c | ||
w_coshl_compat.c | ||
w_exp2_compat.c | ||
w_exp2_template.c | ||
w_exp2f_compat.c | ||
w_exp2l_compat.c | ||
w_exp10_compat.c | ||
w_exp10_template.c | ||
w_exp10f_compat.c | ||
w_exp10l_compat.c | ||
w_exp_template.c | ||
w_expl_compat.c | ||
w_fmod_compat.c | ||
w_fmod_template.c | ||
w_fmodf_compat.c | ||
w_fmodl_compat.c | ||
w_hypot_compat.c | ||
w_hypot_template.c | ||
w_hypotf_compat.c | ||
w_hypotl_compat.c | ||
w_ilogb_template.c | ||
w_j0_compat.c | ||
w_j0_template.c | ||
w_j0f_compat.c | ||
w_j0l_compat.c | ||
w_j1_compat.c | ||
w_j1_template.c | ||
w_j1f_compat.c | ||
w_j1l_compat.c | ||
w_jn_compat.c | ||
w_jn_template.c | ||
w_jnf_compat.c | ||
w_jnl_compat.c | ||
w_lgamma_compat2.c | ||
w_lgamma_compat.c | ||
w_lgamma_compatf.c | ||
w_lgamma_compatl.c | ||
w_lgamma_main.c | ||
w_lgamma_r_compat.c | ||
w_lgamma_r_template.c | ||
w_lgamma_template.c | ||
w_lgammaf_compat2.c | ||
w_lgammaf_main.c | ||
w_lgammaf_r_compat.c | ||
w_lgammal_compat2.c | ||
w_lgammal_main.c | ||
w_lgammal_r_compat.c | ||
w_llogb_template.c | ||
w_log1p_template.c | ||
w_log2_compat.c | ||
w_log2_template.c | ||
w_log2f_compat.c | ||
w_log2l_compat.c | ||
w_log10_compat.c | ||
w_log10_template.c | ||
w_log10f_compat.c | ||
w_log10l_compat.c | ||
w_log_compat.c | ||
w_log_template.c | ||
w_logf_compat.c | ||
w_logl_compat.c | ||
w_pow_compat.c | ||
w_pow_template.c | ||
w_powf_compat.c | ||
w_powl_compat.c | ||
w_remainder_compat.c | ||
w_remainder_template.c | ||
w_remainderf_compat.c | ||
w_remainderl_compat.c | ||
w_scalb_compat.c | ||
w_scalbf_compat.c | ||
w_scalbl_compat.c | ||
w_scalbln_template.c | ||
w_sinh_compat.c | ||
w_sinh_template.c | ||
w_sinhf_compat.c | ||
w_sinhl_compat.c | ||
w_sqrt_compat.c | ||
w_sqrt_template.c | ||
w_sqrtf_compat.c | ||
w_sqrtl_compat.c | ||
w_tgamma_compat.c | ||
w_tgamma_template.c | ||
w_tgammaf_compat.c | ||
w_tgammal_compat.c |
README for libm-test math test suite ==================================== The libm-test math test suite tests a number of function points of math functions in the GNU C library. The following sections contain a brief overview. Please note that the test drivers and the Perl script "gen-libm-test.pl" have some options. A full list of options is available with --help (for the test drivers) and -h for "gen-libm-test.pl". What is tested? =============== The tests just evaluate the functions at specified points and compare the results with precomputed values and the requirements of the ISO C99 standard. Besides testing the special values mandated by IEEE 754 (infinities, NaNs and minus zero), some more or less random values are tested. Files that are part of libm-test ================================ The main files are "libm-test-<func>.inc". They are independent of the target platform and the specific real floating type and format and contain placeholder test "templates" for math functions defined in libm. These files, along with generated files named "auto-libm-test-out-<func>", are preprocessed by the Perl script "gen-libm-test.pl" to expand the templates and produce a set of test cases for each math function that are specific to the target platform but still independent of the real floating type. The results of the processing are "libm-test-<func>.c" and a file "libm-test-ulps.h" with platform specific deltas by which the actual math function results may deviate from the expected results and still be considered correct. The test drivers "test-double-<func>.c", "test-float-<func>.c", and "test-ldouble-<func>.c", generated by the Makefile, test the normal double, float and long double implementation of libm. The test drivers with an 'i' in their name ("test-idouble-<func>.c", "test-ifloat-<func>.c", and "test-ildoubl-<func>.c") test the corresponding inline functions (where available - otherwise they also test the real functions in libm). Each driver selects the desired real floating type to exercise the math functions to test with (float, double, or long double) by defining a small set of macros just before including the generic "libm-test.c" file. Each driver also either defines or undefines the __NO_MATH_INLINES macro just before including "libm-test-<func>.c" to select either the real or inline functions, respectively. Each driver is compiled into a single executable test program with the corresponding name. As mentioned above, the "gen-libm-test.pl" script looks for a file named "libm-test-ulps" in the platform specific sysdep directory (or its fpu or nofpu subdirectory) and for each variant (real floating type and rounding mode) of every tested function reads from it the maximum difference expressed as Units of Least Precision (ULP) the actual result of the function may deviate from the expected result before it's considered incorrect. The "auto-libm-test-out-<func>" files contain sets of test cases to exercise, the conditions under which to exercise each, and the expected results. The files are generated by the "gen-auto-libm-tests" program from the "auto-libm-test-in" file. See the comments in gen-auto-libm-tests.c for details about the content and format of the -in and -out files. How can I generate "libm-test-ulps"? ==================================== To automatically generate a new "libm-test-ulps" run "make regen-ulps". This generates the file "math/NewUlps" in the build directory. The file contains the sorted results of all the tests. You can use the "NewUlps" file as the machine's updated "libm-test-ulps" file. Copy "NewUlps" to "libm-test-ulps" in the appropriate machine sysdep directory. Verify the changes, post your patch, and check it in after review. To manually generate a new "libm-test-ulps" file, first remove "ULPs" file in the current directory, then you can execute for example: ./testrun.sh math/test-double -u --ignore-max-ulp=yes This generates a file "ULPs" with all double ULPs in it, ignoring any previously calculated ULPs, and running with the newly built dynamic loader and math library (assumes you didn't install your build). Now generate the ULPs for all other formats, the tests will be appending the data to the "ULPs" file. As final step run "gen-libm-test.pl" with the file as input and ask to generate a pretty printed output in the file "NewUlps": gen-libm-test.pl -u ULPs -n NewUlps Copy "NewUlps" to "libm-test-ulps" in the appropriate machine sysdep directory. Note that the test drivers have an option "-u" to output an unsorted list of all epsilons that the functions have. The output can be read in directly but it's better to pretty print it first. "gen-libm-test.pl" has an option to generate a pretty-printed and sorted new ULPs file from the output of the test drivers. Contents of libm-test-ulps ========================== Since libm-test-ulps can be generated automatically, just a few notes. The file contains lines for maximal errors of single functions, like: Function "yn": idouble: 6 The keywords are float, ifloat, double, idouble, ldouble and ildouble (the prefix i stands for inline). Adding tests to libm-test-<func>.inc ==================================== The tests are evaluated by a set of special test macros. The macros start with "TEST_" followed by a specification the input values, an underscore and a specification of the output values. As an example, the test macro for a function with input of type FLOAT (FLOAT is either float, double, long double) and output of type FLOAT is "TEST_f_f". The macro's parameter are the name of the function, the input parameter, output parameter and optionally one exception parameter. The accepted parameter types are: - "f" for FLOAT - "j" for long double. - "b" for boolean - just tests if the output parameter evaluates to 0 or 1 (only for output). - "c" for complex. This parameter needs two values, first the real, then the imaginary part. - "i" for int. - "l" for long int. - "L" for long long int. - "u" for unsigned int. - "M" for intmax_t. - "U" for uintmax_t. - "p" for an argument (described in the previous character) passed through a pointer rather than directly. - "F" for the address of a FLOAT (only as input parameter) - "I" for the address of an int (only as input parameter) - "1" for an additional output (either output through a pointer passed as an argument, or to a global variable such as signgam). How to read the test output =========================== Running each test on its own at the default level of verbosity will print on stdout a line describing the implementation of math functions exercised by the test (float, double, or long double), along with whether the inline set has been selected, regardless of whether or not any inline functions actually exist. This is then followed by the details of test failures (if any). The output concludes by a summary listing the number of test cases exercised and the number of test failures uncovered. For each test failure (and for each test case at higher levels of verbosity), the output contains the name of the function under test and its arguments or conditions that triggered the failure. Note that the name of the function in the output need not correspond exactly to the name of the math function actually invoked. For example, the output will refer to the "acos" function even if the actual function under test is acosf (for the float version) or acosl (for the long double version). Also note that the function arguments may be shown in either the decimal or the hexadecimal floating point format which may or may not correspond to the format used in the auto-libm-test-in file. Besides the name of the function, for each test failure the output contains the actual and expected results and the difference between the two, printed in both the decimal and hexadecimal floating point format, and the ULP and maximum ULP for the test case.