Module Name: src Committed By: riastradh Date: Sun Jun 9 14:10:06 UTC 2024
Modified Files: src/lib/libm: Makefile m.aarch64.expsym m.alpha.expsym m.arm.expsym m.armhf.expsym m.hppa.expsym m.i386.expsym m.ia64.expsym m.m68k.expsym m.mips.expsym m.mips64.expsym m.mipshf.expsym m.powerpc.expsym m.powerpc64.expsym m.riscv.expsym m.sh3.expsym m.sparc.expsym m.sparc64.expsym m.vax.expsym m.x86_64.expsym Added Files: src/lib/libm: m.common.expsym m.fenv.expsym m.ieee754.expsym Log Message: libm: Factor out common expected symbol list. Should substantially reduce the maintenance burden. To generate a diff of this commit: cvs rdiff -u -r1.235 -r1.236 src/lib/libm/Makefile cvs rdiff -u -r1.4 -r1.5 src/lib/libm/m.aarch64.expsym \ src/lib/libm/m.arm.expsym src/lib/libm/m.i386.expsym \ src/lib/libm/m.riscv.expsym src/lib/libm/m.sparc64.expsym \ src/lib/libm/m.x86_64.expsym cvs rdiff -u -r1.3 -r1.4 src/lib/libm/m.alpha.expsym \ src/lib/libm/m.hppa.expsym src/lib/libm/m.ia64.expsym \ src/lib/libm/m.powerpc.expsym src/lib/libm/m.sparc.expsym cvs rdiff -u -r1.2 -r1.3 src/lib/libm/m.armhf.expsym \ src/lib/libm/m.mips64.expsym src/lib/libm/m.mipshf.expsym \ src/lib/libm/m.powerpc64.expsym src/lib/libm/m.sh3.expsym cvs rdiff -u -r0 -r1.1 src/lib/libm/m.common.expsym \ src/lib/libm/m.fenv.expsym src/lib/libm/m.ieee754.expsym cvs rdiff -u -r1.5 -r1.6 src/lib/libm/m.m68k.expsym \ src/lib/libm/m.mips.expsym cvs rdiff -u -r1.6 -r1.7 src/lib/libm/m.vax.expsym Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libm/Makefile diff -u src/lib/libm/Makefile:1.235 src/lib/libm/Makefile:1.236 --- src/lib/libm/Makefile:1.235 Tue May 14 14:34:35 2024 +++ src/lib/libm/Makefile Sun Jun 9 14:10:05 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.235 2024/05/14 14:34:35 riastradh Exp $ +# $NetBSD: Makefile,v 1.236 2024/06/09 14:10:05 riastradh Exp $ # # @(#)Makefile 5.1beta 93/09/24 # @@ -59,6 +59,21 @@ LINTFLAGS.s_logl.c+= -X 161 # constant i LINTFLAGS.s_logl.c+= -X 193 # unreachable statement (due to 161) LINTFLAGS.s_logl.c+= -X 177 # non-constant initializer +EXPSYM_SRCS= m.common.expsym +EXPSYM_SRCS+= m.ieee754.expsym +EXPSYM_SRCS+= m.fenv.expsym +.if exists(${.CURDIR}/m.${LIBC_MACHINE_ARCH}.expsym) +EXPSYM_SRCS+= m.${LIBC_MACHINE_ARCH}.expsym +.elif exists(${.CURDIR}/m.${LIBC_MACHINE_CPU}.expsym) +EXPSYM_SRCS+= m.${LIBC_MACHINE_CPU}.expsym +.endif + +# We will build m.expsym with a rule below, by merging all the files +# listed in EXPSYM_SRCS, which individual architectures can override. +# (The rule has to be written below after EXPSYM_SRCS has been +# determined.) +LIB_EXPSYM= m.expsym + .if (${LIBC_MACHINE_CPU} == "aarch64") .PATH: ${.CURDIR}/arch/aarch64 ARCH_SRCS = e_sqrt.S e_sqrtf.S s_fabsf.S @@ -77,6 +92,21 @@ COMMON_SRCS+= fenv.c COMMON_SRCS+= s_fma.c s_fmaf.c s_fmal.c COPTS+= -mfloat-ieee -mieee-with-inexact -mfp-trap-mode=sui -mtrap-precision=i +# alpha doesn't have symbols for: +# +# feclearexcept +# fegetexceptflag +# fegetround +# feraiseexcept +# fesetexceptflag +# fesetround +# fetestexcept +# +# Instead, they are static inlines in fenv.h. So we won't use +# m.fenv.expsym. +# +EXPSYM_SRCS= m.common.expsym m.ieee754.expsym m.alpha.expsym + .elif (${LIBC_MACHINE_CPU} == "arm") .PATH.c: ${.CURDIR}/arch/arm .if ${MKSOFTFLOAT} == "no" @@ -179,6 +209,10 @@ COMMON_SRCS+= s_fma.c s_fmaf.c s_fmal.c ARCH_SRCS = n_scalbn.S WARNS?=5 +# No IEEE 754 stuff. Not all of it is actually specific to IEEE 754, +# but it's missing anyway: PR port-vax/57881. +EXPSYM_SRCS= m.common.expsym m.vax.expsym + .elif (${LIBC_MACHINE_CPU} == "riscv") .PATH: ${.CURDIR}/arch/riscv @@ -242,6 +276,12 @@ WARNS?=5 .PATH: ${.CURDIR}/src .PATH: ${.CURDIR}/noieee_src +m.expsym: ${EXPSYM_SRCS} + ${_MKTARGET_CREATE} + LC_ALL=C sort -m ${.ALLSRC} >${.TARGET}.tmp && \ + ${MV} ${.TARGET}.tmp ${.TARGET} +CLEANFILES+= m.expsym m.expsym.tmp + .if (${LIBC_MACHINE_ARCH} == "alpha") COPTS+= -mfp-rounding-mode=d .endif Index: src/lib/libm/m.aarch64.expsym diff -u src/lib/libm/m.aarch64.expsym:1.4 src/lib/libm/m.aarch64.expsym:1.5 --- src/lib/libm/m.aarch64.expsym:1.4 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.aarch64.expsym Sun Jun 9 14:10:05 2024 @@ -23,496 +23,25 @@ _ItL_qS8 _ItL_qS9 __bss_end__ __bss_start__ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divtc3 __divxc3 __end__ -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf __ieee754_sqrtl -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf __kernel_cosl -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf __kernel_sinl -__kernel_standard -__kernel_tan -__kernel_tanf __kernel_tanl -__log__D -__muldc3 -__mulsc3 __multc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl _bss_end__ -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv -_finite -_finitef -_floorl _fma _fmaf _fmax _fmaxf _fmin _fminf -_fmodl -_hypot -_hypotf -_hypotl -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf fabsl -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl imprecise_tgammal -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.arm.expsym diff -u src/lib/libm/m.arm.expsym:1.4 src/lib/libm/m.arm.expsym:1.5 --- src/lib/libm/m.arm.expsym:1.4 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.arm.expsym Sun Jun 9 14:10:05 2024 @@ -1,476 +1,5 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.i386.expsym diff -u src/lib/libm/m.i386.expsym:1.4 src/lib/libm/m.i386.expsym:1.5 --- src/lib/libm/m.i386.expsym:1.4 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.i386.expsym Sun Jun 9 14:10:05 2024 @@ -14,487 +14,16 @@ _ItL_qS2 _ItL_qS3 _ItL_qS4 _ItL_qS5 -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf __ieee754_sqrtl -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf __kernel_cosl -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf __kernel_sinl -__kernel_standard -__kernel_tan -__kernel_tanf __kernel_tanl -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf fabsl -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.riscv.expsym diff -u src/lib/libm/m.riscv.expsym:1.4 src/lib/libm/m.riscv.expsym:1.5 --- src/lib/libm/m.riscv.expsym:1.4 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.riscv.expsym Sun Jun 9 14:10:05 2024 @@ -21,483 +21,12 @@ _ItL_qS6 _ItL_qS7 _ItL_qS8 _ItL_qS9 -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf __ieee754_sqrtl -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf __kernel_cosl -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf __kernel_sinl -__kernel_standard -__kernel_tan -__kernel_tanf __kernel_tanl -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf fabsl -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl imprecise_tgammal -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.sparc64.expsym diff -u src/lib/libm/m.sparc64.expsym:1.4 src/lib/libm/m.sparc64.expsym:1.5 --- src/lib/libm/m.sparc64.expsym:1.4 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.sparc64.expsym Sun Jun 9 14:10:05 2024 @@ -21,489 +21,18 @@ _ItL_qS6 _ItL_qS7 _ItL_qS8 _ItL_qS9 -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divtc3 __divxc3 -__exp__D -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf __ieee754_sqrtl -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf __kernel_cosl -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf __kernel_sinl -__kernel_standard -__kernel_tan -__kernel_tanf __kernel_tanl -__log__D -__muldc3 -__mulsc3 __multc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf fabsl -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl imprecise_tgammal -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.x86_64.expsym diff -u src/lib/libm/m.x86_64.expsym:1.4 src/lib/libm/m.x86_64.expsym:1.5 --- src/lib/libm/m.x86_64.expsym:1.4 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.x86_64.expsym Sun Jun 9 14:10:05 2024 @@ -14,487 +14,16 @@ _ItL_qS2 _ItL_qS3 _ItL_qS4 _ItL_qS5 -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf __ieee754_sqrtl -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf __kernel_cosl -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf __kernel_sinl -__kernel_standard -__kernel_tan -__kernel_tanf __kernel_tanl -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf fabsl -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.alpha.expsym diff -u src/lib/libm/m.alpha.expsym:1.3 src/lib/libm/m.alpha.expsym:1.4 --- src/lib/libm/m.alpha.expsym:1.3 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.alpha.expsym Sun Jun 9 14:10:05 2024 @@ -1,123 +1,6 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version _fedisableexcept _feenableexcept _fegetenv @@ -126,184 +9,7 @@ _feholdexcept _fesetenv _feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml fedisableexcept feenableexcept fegetenv @@ -311,155 +17,6 @@ fegetexcept feholdexcept fesetenv feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.hppa.expsym diff -u src/lib/libm/m.hppa.expsym:1.3 src/lib/libm/m.hppa.expsym:1.4 --- src/lib/libm/m.hppa.expsym:1.3 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.hppa.expsym Sun Jun 9 14:10:05 2024 @@ -1,476 +1,5 @@ _GLOBAL_OFFSET_TABLE_ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.ia64.expsym diff -u src/lib/libm/m.ia64.expsym:1.3 src/lib/libm/m.ia64.expsym:1.4 --- src/lib/libm/m.ia64.expsym:1.3 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.ia64.expsym Sun Jun 9 14:10:05 2024 @@ -1,476 +1,5 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.powerpc.expsym diff -u src/lib/libm/m.powerpc.expsym:1.3 src/lib/libm/m.powerpc.expsym:1.4 --- src/lib/libm/m.powerpc.expsym:1.3 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.powerpc.expsym Sun Jun 9 14:10:05 2024 @@ -1,479 +1,8 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divtc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __multc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.sparc.expsym diff -u src/lib/libm/m.sparc.expsym:1.3 src/lib/libm/m.sparc.expsym:1.4 --- src/lib/libm/m.sparc.expsym:1.3 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.sparc.expsym Sun Jun 9 14:10:05 2024 @@ -1,478 +1,7 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.armhf.expsym diff -u src/lib/libm/m.armhf.expsym:1.2 src/lib/libm/m.armhf.expsym:1.3 --- src/lib/libm/m.armhf.expsym:1.2 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.armhf.expsym Sun Jun 9 14:10:05 2024 @@ -1,480 +1,9 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv -_finite -_finitef -_floorl _fma _fmaf _fmal -_fmodl -_hypot -_hypotf -_hypotl -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.mips64.expsym diff -u src/lib/libm/m.mips64.expsym:1.2 src/lib/libm/m.mips64.expsym:1.3 --- src/lib/libm/m.mips64.expsym:1.2 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.mips64.expsym Sun Jun 9 14:10:05 2024 @@ -21,487 +21,16 @@ _ItL_qS6 _ItL_qS7 _ItL_qS8 _ItL_qS9 -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf __ieee754_sqrtl -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf __kernel_cosl -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf __kernel_sinl -__kernel_standard -__kernel_tan -__kernel_tanf __kernel_tanl -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf fabsl -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl imprecise_tgammal -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.mipshf.expsym diff -u src/lib/libm/m.mipshf.expsym:1.2 src/lib/libm/m.mipshf.expsym:1.3 --- src/lib/libm/m.mipshf.expsym:1.2 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.mipshf.expsym Sun Jun 9 14:10:05 2024 @@ -1,479 +1,8 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.powerpc64.expsym diff -u src/lib/libm/m.powerpc64.expsym:1.2 src/lib/libm/m.powerpc64.expsym:1.3 --- src/lib/libm/m.powerpc64.expsym:1.2 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.powerpc64.expsym Sun Jun 9 14:10:05 2024 @@ -2,482 +2,11 @@ ._init .fma .fmaf -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divtc3 -__exp__D __fe_dfl_env -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __multc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.sh3.expsym diff -u src/lib/libm/m.sh3.expsym:1.2 src/lib/libm/m.sh3.expsym:1.3 --- src/lib/libm/m.sh3.expsym:1.2 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.sh3.expsym Sun Jun 9 14:10:05 2024 @@ -2,481 +2,10 @@ ___ctors ___ctors_end ___dtors ___dtors_end -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.m68k.expsym diff -u src/lib/libm/m.m68k.expsym:1.5 src/lib/libm/m.m68k.expsym:1.6 --- src/lib/libm/m.m68k.expsym:1.5 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.m68k.expsym Sun Jun 9 14:10:05 2024 @@ -14,486 +14,15 @@ _ItL_qS2 _ItL_qS3 _ItL_qS4 _ItL_qS5 -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf __ieee754_sqrtl -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf __kernel_cosl -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf __kernel_sinl -__kernel_standard -__kernel_tan -__kernel_tanf __kernel_tanl -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf fabsl -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.mips.expsym diff -u src/lib/libm/m.mips.expsym:1.5 src/lib/libm/m.mips.expsym:1.6 --- src/lib/libm/m.mips.expsym:1.5 Sun Jun 9 13:33:36 2024 +++ src/lib/libm/m.mips.expsym Sun Jun 9 14:10:05 2024 @@ -1,478 +1,7 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D -__ieee754_acos -__ieee754_acosf -__ieee754_acosh -__ieee754_acoshf -__ieee754_asin -__ieee754_asinf -__ieee754_atan2 -__ieee754_atan2f -__ieee754_atanh -__ieee754_atanhf -__ieee754_cosh -__ieee754_coshf -__ieee754_exp -__ieee754_expf -__ieee754_fmod -__ieee754_fmodf -__ieee754_fmodl -__ieee754_hypot -__ieee754_hypotf -__ieee754_j0 -__ieee754_j0f -__ieee754_j1 -__ieee754_j1f -__ieee754_jn -__ieee754_jnf -__ieee754_lgamma_r -__ieee754_lgammaf_r -__ieee754_log -__ieee754_log10 -__ieee754_log10f -__ieee754_log2 -__ieee754_log2f -__ieee754_logf -__ieee754_pow -__ieee754_powf -__ieee754_rem_pio2 -__ieee754_rem_pio2f -__ieee754_remainder -__ieee754_remainderf -__ieee754_scalb -__ieee754_scalbf -__ieee754_sinh -__ieee754_sinhf -__ieee754_sqrt -__ieee754_sqrtf -__ieee754_y0 -__ieee754_y0f -__ieee754_y1 -__ieee754_y1f -__ieee754_yn -__ieee754_ynf -__kernel_cos -__kernel_cosf -__kernel_rem_pio2 -__kernel_rem_pio2f -__kernel_sin -__kernel_sinf -__kernel_standard -__kernel_tan -__kernel_tanf -__log__D -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_acoshl -_acosl -_asin -_asinf -_asinhl -_asinl -_atan -_atan2 -_atan2f -_atan2l -_atanf -_atanhl -_atanl -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cbrtl -_cchsh -_cchshf -_cchshl -_ceill -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_cospi -_cospif -_cospil -_ctans -_ctansf -_ctansl -_end -_erfcl -_erfl -_exp -_exp2l -_expf -_expl -_expm1l -_fdlib_version -_feclearexcept -_fedisableexcept -_feenableexcept -_fegetenv -_fegetexcept -_fegetexceptflag -_fegetround -_feholdexcept -_feraiseexcept -_fesetenv -_fesetexceptflag -_fesetround -_fetestexcept -_feupdateenv _fini -_finite -_finitef -_floorl -_fmodl -_hypot -_hypotf -_hypotl _init -_lgammal -_lgammal_r -_log -_log10l -_log1pl -_log2l -_logf -_logl -_modfl -_powl -_redupi -_redupif -_redupil -_remquo -_remquof -_remquol -_roundl -_scalbln -_scalblnf -_scalblnl -_scalbn -_scalbnf -_scalbnl -_sin -_sincos -_sincosf -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sinpi -_sinpif -_sinpil -_sqrtl -_tan -_tanf -_tanhl -_tanl -_tanpi -_tanpif -_tanpil -_tgammal -_truncl -acos -acosf -acosh -acoshf -acoshl -acosl -asin -asinf -asinh -asinhf -asinhl -asinl -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -atanhl -atanl -cabs -cabsf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -coshl -cosl -cospi -cospif -cospil -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl -drem -dremf -erf -erfc -erfcf -erfcl -erff -erfl -exp -exp2 -exp2f -exp2l -expf -expl -expm1 -expm1f -expm1l -fabsf -fdim -fdimf -fdiml -feclearexcept -fedisableexcept -feenableexcept -fegetenv -fegetexcept -fegetexceptflag -fegetround -feholdexcept -feraiseexcept -fesetenv -fesetexceptflag -fesetround -fetestexcept -feupdateenv -finite -finitef -floor -floorf -floorl fma fmaf fmal -fmax -fmaxf -fmaxl -fmin -fminf -fminl -fmod -fmodf -fmodl -frexp -frexpf -frexpl -gamma -gamma_r -gammaf -gammaf_r -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl -isinff -isnanf -j0 -j0f -j1 -j1f -jn -jnf -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammaf -lgammaf_r -lgammal -lgammal_r -llrint -llrintf -llrintl -llround -llroundf -llroundl -log -log10 -log10f -log10l -log1p -log1pf -log1pl -log2 -log2f -log2l -logb -logbf -logbl -logf -logl -lrint -lrintf -lrintl -lround -lroundf -lroundl -matherr -modf -modff -modfl -nan -nanf -nanl -nearbyint -nearbyintf -nearbyintl -nextafter -nextafterf -nextafterl -nexttoward -nexttowardf -nexttowardl -pow -powf -powl -remainder -remainderf -remainderl -remquo -remquof -remquol -rint -rintf -rintl -round -roundf -roundl -scalb -scalbf -scalbln -scalblnf -scalblnl -scalbn -scalbnf -scalbnl -signgam -significand -significandf -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinhl -sinl -sinpi -sinpif -sinpil -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanhl -tanl -tanpi -tanpif -tanpil -tgamma -tgammaf -tgammal -trunc -truncf -truncl -y0 -y0f -y1 -y1f -yn -ynf Index: src/lib/libm/m.vax.expsym diff -u src/lib/libm/m.vax.expsym:1.6 src/lib/libm/m.vax.expsym:1.7 --- src/lib/libm/m.vax.expsym:1.6 Sun Jun 9 14:09:27 2024 +++ src/lib/libm/m.vax.expsym Sun Jun 9 14:10:05 2024 @@ -1,273 +1,15 @@ -__c99_cabs -__c99_cabsf -__c99_cabsl -__divdc3 -__divsc3 __divxc3 -__exp__D __exp__E __libm_cdabs_r6 -__log__D __log__L -__muldc3 -__mulsc3 __mulxc3 -_acos -_acosf -_asin -_asinf -_atan -_atan2 -_atan2f -_atan2l -_atanf _cabs -_casin -_casinf -_casinl -_catan -_catanf -_catanl -_cchsh -_cchshf -_cchshl -_copysignl -_cos -_cosf -_cosh -_coshf -_coshl -_cosl -_ctans -_ctansf -_ctansl -_end -_exp -_expf -_expl _fini -_finite -_finitef -_hypot -_hypotf -_hypotl _init -_log -_logf -_logl _pow _powf -_powl -_redupi -_redupif -_redupil -_scalbn -_scalbnf -_scalbnl -_sin -_sincosl -_sinf -_sinh -_sinhf -_sinhl -_sinl -_sqrtl -_tan -_tanf -_tanl -acos -acosf -acosh -asin -asinf -asinh -atan -atan2 -atan2f -atan2l -atanf -atanh -atanhf -cacos -cacosf -cacosh -cacoshf -cacoshl -cacosl -carg -cargf -cargl -casin -casinf -casinh -casinhf -casinhl -casinl -catan -catanf -catanh -catanhf -catanhl -catanl -cbrt -cbrtf -cbrtl -ccos -ccosf -ccosh -ccoshf -ccoshl -ccosl -ceil -ceilf -ceill -cexp -cexpf -cexpl -cimag -cimagf -cimagl -clog -clogf -clogl -conj -conjf -conjl -copysign -copysignf -copysignl -cos -cosf -cosh -coshf -cosl -cpow -cpowf -cpowl -cproj -cprojf -cprojl -creal -crealf -creall -csin -csinf -csinh -csinhf -csinhl -csinl -csqrt -csqrtf -csqrtl -ctan -ctanf -ctanh -ctanhf -ctanhl -ctanl d_cbrt d_sqrt dcbrt_ -drem -erf -erfc -erfcf -erff -exp -exp2 -exp2f -expf -expm1 -expm1f -finite -finitef -floor -floorf -floorl -fmax -fmaxf -fmaxl -fmin -fminf -fmod -fmodf -fmodl -frexpf -frexpl -gamma -hypot -hypotf -hypotl -ilogb -ilogbf -ilogbl infnan -isnanf -j0 -j1 -jn -ldexp -ldexpf -ldexpl -lgamma -lgamma_r -lgammal -lgammal_r -llrint -llrintf -log -log10 -log10f -log1p -log1pf -log2 -log2f -logb -logbf -logbl -logf -lrint -lrintf -lround -lroundf -modfl -nan -nanf -nanl -pow -powf -powl -rint -rintf -rintl -round -roundf -roundl -scalb -scalbn -scalbnf -scalbnl -signgam -sin -sincos -sincosf -sincosl -sinf -sinh -sinhf -sinl -sqrt -sqrtf -sqrtl -tan -tanf -tanh -tanhf -tanl -trunc -truncf -truncl -y0 -y1 -yn z_abs Added files: Index: src/lib/libm/m.common.expsym diff -u /dev/null src/lib/libm/m.common.expsym:1.1 --- /dev/null Sun Jun 9 14:10:06 2024 +++ src/lib/libm/m.common.expsym Sun Jun 9 14:10:05 2024 @@ -0,0 +1,258 @@ +__c99_cabs +__c99_cabsf +__c99_cabsl +__divdc3 +__divsc3 +__exp__D +__log__D +__muldc3 +__mulsc3 +_acos +_acosf +_asin +_asinf +_atan +_atan2 +_atan2f +_atan2l +_atanf +_casin +_casinf +_casinl +_catan +_catanf +_catanl +_cchsh +_cchshf +_cchshl +_copysignl +_cos +_cosf +_cosh +_coshf +_coshl +_cosl +_ctans +_ctansf +_ctansl +_end +_exp +_expf +_expl +_finite +_finitef +_hypot +_hypotf +_hypotl +_log +_logf +_logl +_powl +_redupi +_redupif +_redupil +_scalbn +_scalbnf +_scalbnl +_sin +_sincosl +_sinf +_sinh +_sinhf +_sinhl +_sinl +_sqrtl +_tan +_tanf +_tanl +acos +acosf +acosh +asin +asinf +asinh +atan +atan2 +atan2f +atan2l +atanf +atanh +atanhf +cacos +cacosf +cacosh +cacoshf +cacoshl +cacosl +carg +cargf +cargl +casin +casinf +casinh +casinhf +casinhl +casinl +catan +catanf +catanh +catanhf +catanhl +catanl +cbrt +cbrtf +cbrtl +ccos +ccosf +ccosh +ccoshf +ccoshl +ccosl +ceil +ceilf +ceill +cexp +cexpf +cexpl +cimag +cimagf +cimagl +clog +clogf +clogl +conj +conjf +conjl +copysign +copysignf +copysignl +cos +cosf +cosh +coshf +cosl +cpow +cpowf +cpowl +cproj +cprojf +cprojl +creal +crealf +creall +csin +csinf +csinh +csinhf +csinhl +csinl +csqrt +csqrtf +csqrtl +ctan +ctanf +ctanh +ctanhf +ctanhl +ctanl +drem +erf +erfc +erfcf +erff +exp +exp2 +exp2f +expf +expm1 +expm1f +finite +finitef +floor +floorf +floorl +fmax +fmaxf +fmaxl +fmin +fminf +fmod +fmodf +fmodl +frexpf +frexpl +gamma +hypot +hypotf +hypotl +ilogb +ilogbf +ilogbl +isnanf +j0 +j1 +jn +ldexp +ldexpf +ldexpl +lgamma +lgamma_r +lgammal +lgammal_r +llrint +llrintf +log +log10 +log10f +log1p +log1pf +log2 +log2f +logb +logbf +logbl +logf +lrint +lrintf +lround +lroundf +modfl +nan +nanf +nanl +pow +powf +powl +rint +rintf +rintl +round +roundf +roundl +scalb +scalbn +scalbnf +scalbnl +signgam +sin +sincos +sincosf +sincosl +sinf +sinh +sinhf +sinl +sqrt +sqrtf +sqrtl +tan +tanf +tanh +tanhf +tanl +trunc +truncf +truncl +y0 +y1 +yn Index: src/lib/libm/m.fenv.expsym diff -u /dev/null src/lib/libm/m.fenv.expsym:1.1 --- /dev/null Sun Jun 9 14:10:06 2024 +++ src/lib/libm/m.fenv.expsym Sun Jun 9 14:10:05 2024 @@ -0,0 +1,28 @@ +_feclearexcept +_fedisableexcept +_feenableexcept +_fegetenv +_fegetexcept +_fegetexceptflag +_fegetround +_feholdexcept +_feraiseexcept +_fesetenv +_fesetexceptflag +_fesetround +_fetestexcept +_feupdateenv +feclearexcept +fedisableexcept +feenableexcept +fegetenv +fegetexcept +fegetexceptflag +fegetround +feholdexcept +feraiseexcept +fesetenv +fesetexceptflag +fesetround +fetestexcept +feupdateenv Index: src/lib/libm/m.ieee754.expsym diff -u /dev/null src/lib/libm/m.ieee754.expsym:1.1 --- /dev/null Sun Jun 9 14:10:06 2024 +++ src/lib/libm/m.ieee754.expsym Sun Jun 9 14:10:05 2024 @@ -0,0 +1,185 @@ +__ieee754_acos +__ieee754_acosf +__ieee754_acosh +__ieee754_acoshf +__ieee754_asin +__ieee754_asinf +__ieee754_atan2 +__ieee754_atan2f +__ieee754_atanh +__ieee754_atanhf +__ieee754_cosh +__ieee754_coshf +__ieee754_exp +__ieee754_expf +__ieee754_fmod +__ieee754_fmodf +__ieee754_fmodl +__ieee754_hypot +__ieee754_hypotf +__ieee754_j0 +__ieee754_j0f +__ieee754_j1 +__ieee754_j1f +__ieee754_jn +__ieee754_jnf +__ieee754_lgamma_r +__ieee754_lgammaf_r +__ieee754_log +__ieee754_log10 +__ieee754_log10f +__ieee754_log2 +__ieee754_log2f +__ieee754_logf +__ieee754_pow +__ieee754_powf +__ieee754_rem_pio2 +__ieee754_rem_pio2f +__ieee754_remainder +__ieee754_remainderf +__ieee754_scalb +__ieee754_scalbf +__ieee754_sinh +__ieee754_sinhf +__ieee754_sqrt +__ieee754_sqrtf +__ieee754_y0 +__ieee754_y0f +__ieee754_y1 +__ieee754_y1f +__ieee754_yn +__ieee754_ynf +__kernel_cos +__kernel_cosf +__kernel_rem_pio2 +__kernel_rem_pio2f +__kernel_sin +__kernel_sinf +__kernel_standard +__kernel_tan +__kernel_tanf +_acoshl +_acosl +_asinhl +_asinl +_atanhl +_atanl +_cbrtl +_ceill +_cospi +_cospif +_cospil +_erfcl +_erfl +_exp2l +_expm1l +_fdlib_version +_floorl +_fmodl +_lgammal +_lgammal_r +_log10l +_log1pl +_log2l +_modfl +_remquo +_remquof +_remquol +_roundl +_scalbln +_scalblnf +_scalblnl +_sincos +_sincosf +_sinpi +_sinpif +_sinpil +_tanhl +_tanpi +_tanpif +_tanpil +_tgammal +_truncl +acoshf +acoshl +acosl +asinhf +asinhl +asinl +atanhl +atanl +cabs +cabsf +coshl +cospi +cospif +cospil +dremf +erfcl +erfl +exp2l +expl +expm1l +fabsf +fdim +fdimf +fdiml +fminl +frexp +gamma_r +gammaf +gammaf_r +isinff +j0f +j1f +jnf +lgammaf +lgammaf_r +llrintl +llround +llroundf +llroundl +log10l +log1pl +log2l +logl +lrintl +lroundl +matherr +modf +modff +nearbyint +nearbyintf +nearbyintl +nextafter +nextafterf +nextafterl +nexttoward +nexttowardf +nexttowardl +remainder +remainderf +remainderl +remquo +remquof +remquol +scalbf +scalbln +scalblnf +scalblnl +significand +significandf +sinhl +sinpi +sinpif +sinpil +tanhl +tanpi +tanpif +tanpil +tgamma +tgammaf +tgammal +y0f +y1f +ynf