glibc/sysdeps/unix/sysv/linux/aarch64/libm.abilist
Joseph Myers 55a38f8236 Add llogb, llogbf, llogbl.
TS 18661-1 defines llogb functions that are like ilogb except that
they return long int instead of int.  Corresponding FP_LLOGB* macros
are defined, whose values are required to have the obvious
correspondence to those of the FP_ILOGB* macros.

This patch implements these functions and macros for glibc.  llogb
uses the type-generic infrastructure, with an implementation similar
to the wrapper for ilogb but with additional conversion from FP_ILOGB*
to FP_LLOGB*; this approach avoids needing to modify or duplicate any
of the architecture-specific ilogb implementations.  Tests are also
based on those for ilogb.

Ideally the llogb functions would alias the ilogb ones when long is
32-bit, but such aliasing requires the associated header declarations
of the different-type alias to be hidden, typically by defining macros
before including the header (see e.g. how
sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c defines lround to
__hidden_lround before including <math.h>).  The infrastructure for
type-generic function implementations does not support defining such
macros at present (since C code can't define a macro whose name is
determined by other macros).  So this patch leaves them as separate
functions (similar to e.g. scalbln and scalbn being separate in such a
case as well), but with the remapping of FP_ILOGB* to FP_LLOGB*
conditioned out in the case where it would be the identity map.

Tested for x86_64, x86, mips64 and powerpc.

	* math/bits/mathcalls.h [__GLIBC_USE (IEC_60559_BFP_EXT)] (llogb):
	New declaration.
	* math/tgmath.h [__GLIBC_USE (IEC_60559_BFP_EXT)] (llogb): New
	macro.
	* math/math.h [__GLIBC_USE (IEC_60559_BFP_EXT)] (__FP_LONG_MAX):
	New macro.
	[__GLIBC_USE (IEC_60559_BFP_EXT)] (FP_LLOGB0): Likewise.
	[__GLIBC_USE (IEC_60559_BFP_EXT)] (FP_LLOGBNAN): Likewise.
	* math/Versions (llogb): New libm symbol at version GLIBC_2.25.
	(llogbf): Likewise.
	(llogbl): Likewise.
	* math/Makefile (gen-libm-calls): Add w_llogbF.
	(tests): Add test-fp-llogb-constants.
	* math/w_llogb_template.c: New file.  Based on
	math/w_ilogb_template.c.
	* math/libm-test.inc (llogb_test_data): New array.
	(llogb_test): New function.
	(main): Call llogb_test.
	* math/test-fp-llogb-constants.c: New file.  Based on
	math/test-fp-ilogb-constants.c.
	* math/test-tgmath-ret.c (llogb): New CHECK_RET_CONST call.
	(do_test): Call check_return_llogb.
	* math/test-tgmath.c (NCALLS): Increase to 126.
	(F(compile_test)): Call llogb.
	(F(llogb)): New function.
	* manual/math.texi (Exponents and Logarithms): Document llogb,
	llogbf, llogbl, FP_LLOGB0 and FP_LLOGBNAN.
	* manual/libm-err-tab.pl (@all_functions): Add llogb.
	* sysdeps/ieee754/ldbl-opt/nldbl-llogb.c: New file.
	* sysdeps/ieee754/ldbl-opt/w_llogbl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add llogb.
	(CFLAGS-nldbl-llogb.c): New variable.
	* sysdeps/nacl/libm.abilist: Update.
	* sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
	Likewise.
	* sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
	Likewise.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
	Likewise.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
	Likewise.
	* sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
	Likewise.
	* sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
	Likewise.
	* sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
	* sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
2016-12-02 01:42:49 +00:00

442 lines
9.4 KiB
Plaintext

GLIBC_2.17 GLIBC_2.17 A
GLIBC_2.17 _LIB_VERSION D 0x4
GLIBC_2.17 __acos_finite F
GLIBC_2.17 __acosf_finite F
GLIBC_2.17 __acosh_finite F
GLIBC_2.17 __acoshf_finite F
GLIBC_2.17 __acoshl_finite F
GLIBC_2.17 __acosl_finite F
GLIBC_2.17 __asin_finite F
GLIBC_2.17 __asinf_finite F
GLIBC_2.17 __asinl_finite F
GLIBC_2.17 __atan2_finite F
GLIBC_2.17 __atan2f_finite F
GLIBC_2.17 __atan2l_finite F
GLIBC_2.17 __atanh_finite F
GLIBC_2.17 __atanhf_finite F
GLIBC_2.17 __atanhl_finite F
GLIBC_2.17 __clog10 F
GLIBC_2.17 __clog10f F
GLIBC_2.17 __clog10l F
GLIBC_2.17 __cosh_finite F
GLIBC_2.17 __coshf_finite F
GLIBC_2.17 __coshl_finite F
GLIBC_2.17 __exp10_finite F
GLIBC_2.17 __exp10f_finite F
GLIBC_2.17 __exp10l_finite F
GLIBC_2.17 __exp2_finite F
GLIBC_2.17 __exp2f_finite F
GLIBC_2.17 __exp2l_finite F
GLIBC_2.17 __exp_finite F
GLIBC_2.17 __expf_finite F
GLIBC_2.17 __expl_finite F
GLIBC_2.17 __finite F
GLIBC_2.17 __finitef F
GLIBC_2.17 __finitel F
GLIBC_2.17 __fmod_finite F
GLIBC_2.17 __fmodf_finite F
GLIBC_2.17 __fmodl_finite F
GLIBC_2.17 __fpclassify F
GLIBC_2.17 __fpclassifyf F
GLIBC_2.17 __fpclassifyl F
GLIBC_2.17 __gamma_r_finite F
GLIBC_2.17 __gammaf_r_finite F
GLIBC_2.17 __gammal_r_finite F
GLIBC_2.17 __hypot_finite F
GLIBC_2.17 __hypotf_finite F
GLIBC_2.17 __hypotl_finite F
GLIBC_2.17 __j0_finite F
GLIBC_2.17 __j0f_finite F
GLIBC_2.17 __j0l_finite F
GLIBC_2.17 __j1_finite F
GLIBC_2.17 __j1f_finite F
GLIBC_2.17 __j1l_finite F
GLIBC_2.17 __jn_finite F
GLIBC_2.17 __jnf_finite F
GLIBC_2.17 __jnl_finite F
GLIBC_2.17 __lgamma_r_finite F
GLIBC_2.17 __lgammaf_r_finite F
GLIBC_2.17 __lgammal_r_finite F
GLIBC_2.17 __log10_finite F
GLIBC_2.17 __log10f_finite F
GLIBC_2.17 __log10l_finite F
GLIBC_2.17 __log2_finite F
GLIBC_2.17 __log2f_finite F
GLIBC_2.17 __log2l_finite F
GLIBC_2.17 __log_finite F
GLIBC_2.17 __logf_finite F
GLIBC_2.17 __logl_finite F
GLIBC_2.17 __pow_finite F
GLIBC_2.17 __powf_finite F
GLIBC_2.17 __powl_finite F
GLIBC_2.17 __remainder_finite F
GLIBC_2.17 __remainderf_finite F
GLIBC_2.17 __remainderl_finite F
GLIBC_2.17 __scalb_finite F
GLIBC_2.17 __scalbf_finite F
GLIBC_2.17 __scalbl_finite F
GLIBC_2.17 __signbit F
GLIBC_2.17 __signbitf F
GLIBC_2.17 __signbitl F
GLIBC_2.17 __sinh_finite F
GLIBC_2.17 __sinhf_finite F
GLIBC_2.17 __sinhl_finite F
GLIBC_2.17 __sqrt_finite F
GLIBC_2.17 __sqrtf_finite F
GLIBC_2.17 __sqrtl_finite F
GLIBC_2.17 __y0_finite F
GLIBC_2.17 __y0f_finite F
GLIBC_2.17 __y0l_finite F
GLIBC_2.17 __y1_finite F
GLIBC_2.17 __y1f_finite F
GLIBC_2.17 __y1l_finite F
GLIBC_2.17 __yn_finite F
GLIBC_2.17 __ynf_finite F
GLIBC_2.17 __ynl_finite F
GLIBC_2.17 acos F
GLIBC_2.17 acosf F
GLIBC_2.17 acosh F
GLIBC_2.17 acoshf F
GLIBC_2.17 acoshl F
GLIBC_2.17 acosl F
GLIBC_2.17 asin F
GLIBC_2.17 asinf F
GLIBC_2.17 asinh F
GLIBC_2.17 asinhf F
GLIBC_2.17 asinhl F
GLIBC_2.17 asinl F
GLIBC_2.17 atan F
GLIBC_2.17 atan2 F
GLIBC_2.17 atan2f F
GLIBC_2.17 atan2l F
GLIBC_2.17 atanf F
GLIBC_2.17 atanh F
GLIBC_2.17 atanhf F
GLIBC_2.17 atanhl F
GLIBC_2.17 atanl F
GLIBC_2.17 cabs F
GLIBC_2.17 cabsf F
GLIBC_2.17 cabsl F
GLIBC_2.17 cacos F
GLIBC_2.17 cacosf F
GLIBC_2.17 cacosh F
GLIBC_2.17 cacoshf F
GLIBC_2.17 cacoshl F
GLIBC_2.17 cacosl F
GLIBC_2.17 carg F
GLIBC_2.17 cargf F
GLIBC_2.17 cargl F
GLIBC_2.17 casin F
GLIBC_2.17 casinf F
GLIBC_2.17 casinh F
GLIBC_2.17 casinhf F
GLIBC_2.17 casinhl F
GLIBC_2.17 casinl F
GLIBC_2.17 catan F
GLIBC_2.17 catanf F
GLIBC_2.17 catanh F
GLIBC_2.17 catanhf F
GLIBC_2.17 catanhl F
GLIBC_2.17 catanl F
GLIBC_2.17 cbrt F
GLIBC_2.17 cbrtf F
GLIBC_2.17 cbrtl F
GLIBC_2.17 ccos F
GLIBC_2.17 ccosf F
GLIBC_2.17 ccosh F
GLIBC_2.17 ccoshf F
GLIBC_2.17 ccoshl F
GLIBC_2.17 ccosl F
GLIBC_2.17 ceil F
GLIBC_2.17 ceilf F
GLIBC_2.17 ceill F
GLIBC_2.17 cexp F
GLIBC_2.17 cexpf F
GLIBC_2.17 cexpl F
GLIBC_2.17 cimag F
GLIBC_2.17 cimagf F
GLIBC_2.17 cimagl F
GLIBC_2.17 clog F
GLIBC_2.17 clog10 F
GLIBC_2.17 clog10f F
GLIBC_2.17 clog10l F
GLIBC_2.17 clogf F
GLIBC_2.17 clogl F
GLIBC_2.17 conj F
GLIBC_2.17 conjf F
GLIBC_2.17 conjl F
GLIBC_2.17 copysign F
GLIBC_2.17 copysignf F
GLIBC_2.17 copysignl F
GLIBC_2.17 cos F
GLIBC_2.17 cosf F
GLIBC_2.17 cosh F
GLIBC_2.17 coshf F
GLIBC_2.17 coshl F
GLIBC_2.17 cosl F
GLIBC_2.17 cpow F
GLIBC_2.17 cpowf F
GLIBC_2.17 cpowl F
GLIBC_2.17 cproj F
GLIBC_2.17 cprojf F
GLIBC_2.17 cprojl F
GLIBC_2.17 creal F
GLIBC_2.17 crealf F
GLIBC_2.17 creall F
GLIBC_2.17 csin F
GLIBC_2.17 csinf F
GLIBC_2.17 csinh F
GLIBC_2.17 csinhf F
GLIBC_2.17 csinhl F
GLIBC_2.17 csinl F
GLIBC_2.17 csqrt F
GLIBC_2.17 csqrtf F
GLIBC_2.17 csqrtl F
GLIBC_2.17 ctan F
GLIBC_2.17 ctanf F
GLIBC_2.17 ctanh F
GLIBC_2.17 ctanhf F
GLIBC_2.17 ctanhl F
GLIBC_2.17 ctanl F
GLIBC_2.17 drem F
GLIBC_2.17 dremf F
GLIBC_2.17 dreml F
GLIBC_2.17 erf F
GLIBC_2.17 erfc F
GLIBC_2.17 erfcf F
GLIBC_2.17 erfcl F
GLIBC_2.17 erff F
GLIBC_2.17 erfl F
GLIBC_2.17 exp F
GLIBC_2.17 exp10 F
GLIBC_2.17 exp10f F
GLIBC_2.17 exp10l F
GLIBC_2.17 exp2 F
GLIBC_2.17 exp2f F
GLIBC_2.17 exp2l F
GLIBC_2.17 expf F
GLIBC_2.17 expl F
GLIBC_2.17 expm1 F
GLIBC_2.17 expm1f F
GLIBC_2.17 expm1l F
GLIBC_2.17 fabs F
GLIBC_2.17 fabsf F
GLIBC_2.17 fabsl F
GLIBC_2.17 fdim F
GLIBC_2.17 fdimf F
GLIBC_2.17 fdiml F
GLIBC_2.17 feclearexcept F
GLIBC_2.17 fedisableexcept F
GLIBC_2.17 feenableexcept F
GLIBC_2.17 fegetenv F
GLIBC_2.17 fegetexcept F
GLIBC_2.17 fegetexceptflag F
GLIBC_2.17 fegetround F
GLIBC_2.17 feholdexcept F
GLIBC_2.17 feraiseexcept F
GLIBC_2.17 fesetenv F
GLIBC_2.17 fesetexceptflag F
GLIBC_2.17 fesetround F
GLIBC_2.17 fetestexcept F
GLIBC_2.17 feupdateenv F
GLIBC_2.17 finite F
GLIBC_2.17 finitef F
GLIBC_2.17 finitel F
GLIBC_2.17 floor F
GLIBC_2.17 floorf F
GLIBC_2.17 floorl F
GLIBC_2.17 fma F
GLIBC_2.17 fmaf F
GLIBC_2.17 fmal F
GLIBC_2.17 fmax F
GLIBC_2.17 fmaxf F
GLIBC_2.17 fmaxl F
GLIBC_2.17 fmin F
GLIBC_2.17 fminf F
GLIBC_2.17 fminl F
GLIBC_2.17 fmod F
GLIBC_2.17 fmodf F
GLIBC_2.17 fmodl F
GLIBC_2.17 frexp F
GLIBC_2.17 frexpf F
GLIBC_2.17 frexpl F
GLIBC_2.17 gamma F
GLIBC_2.17 gammaf F
GLIBC_2.17 gammal F
GLIBC_2.17 hypot F
GLIBC_2.17 hypotf F
GLIBC_2.17 hypotl F
GLIBC_2.17 ilogb F
GLIBC_2.17 ilogbf F
GLIBC_2.17 ilogbl F
GLIBC_2.17 j0 F
GLIBC_2.17 j0f F
GLIBC_2.17 j0l F
GLIBC_2.17 j1 F
GLIBC_2.17 j1f F
GLIBC_2.17 j1l F
GLIBC_2.17 jn F
GLIBC_2.17 jnf F
GLIBC_2.17 jnl F
GLIBC_2.17 ldexp F
GLIBC_2.17 ldexpf F
GLIBC_2.17 ldexpl F
GLIBC_2.17 lgamma F
GLIBC_2.17 lgamma_r F
GLIBC_2.17 lgammaf F
GLIBC_2.17 lgammaf_r F
GLIBC_2.17 lgammal F
GLIBC_2.17 lgammal_r F
GLIBC_2.17 llrint F
GLIBC_2.17 llrintf F
GLIBC_2.17 llrintl F
GLIBC_2.17 llround F
GLIBC_2.17 llroundf F
GLIBC_2.17 llroundl F
GLIBC_2.17 log F
GLIBC_2.17 log10 F
GLIBC_2.17 log10f F
GLIBC_2.17 log10l F
GLIBC_2.17 log1p F
GLIBC_2.17 log1pf F
GLIBC_2.17 log1pl F
GLIBC_2.17 log2 F
GLIBC_2.17 log2f F
GLIBC_2.17 log2l F
GLIBC_2.17 logb F
GLIBC_2.17 logbf F
GLIBC_2.17 logbl F
GLIBC_2.17 logf F
GLIBC_2.17 logl F
GLIBC_2.17 lrint F
GLIBC_2.17 lrintf F
GLIBC_2.17 lrintl F
GLIBC_2.17 lround F
GLIBC_2.17 lroundf F
GLIBC_2.17 lroundl F
GLIBC_2.17 matherr F
GLIBC_2.17 modf F
GLIBC_2.17 modff F
GLIBC_2.17 modfl F
GLIBC_2.17 nan F
GLIBC_2.17 nanf F
GLIBC_2.17 nanl F
GLIBC_2.17 nearbyint F
GLIBC_2.17 nearbyintf F
GLIBC_2.17 nearbyintl F
GLIBC_2.17 nextafter F
GLIBC_2.17 nextafterf F
GLIBC_2.17 nextafterl F
GLIBC_2.17 nexttoward F
GLIBC_2.17 nexttowardf F
GLIBC_2.17 nexttowardl F
GLIBC_2.17 pow F
GLIBC_2.17 pow10 F
GLIBC_2.17 pow10f F
GLIBC_2.17 pow10l F
GLIBC_2.17 powf F
GLIBC_2.17 powl F
GLIBC_2.17 remainder F
GLIBC_2.17 remainderf F
GLIBC_2.17 remainderl F
GLIBC_2.17 remquo F
GLIBC_2.17 remquof F
GLIBC_2.17 remquol F
GLIBC_2.17 rint F
GLIBC_2.17 rintf F
GLIBC_2.17 rintl F
GLIBC_2.17 round F
GLIBC_2.17 roundf F
GLIBC_2.17 roundl F
GLIBC_2.17 scalb F
GLIBC_2.17 scalbf F
GLIBC_2.17 scalbl F
GLIBC_2.17 scalbln F
GLIBC_2.17 scalblnf F
GLIBC_2.17 scalblnl F
GLIBC_2.17 scalbn F
GLIBC_2.17 scalbnf F
GLIBC_2.17 scalbnl F
GLIBC_2.17 signgam D 0x4
GLIBC_2.17 significand F
GLIBC_2.17 significandf F
GLIBC_2.17 significandl F
GLIBC_2.17 sin F
GLIBC_2.17 sincos F
GLIBC_2.17 sincosf F
GLIBC_2.17 sincosl F
GLIBC_2.17 sinf F
GLIBC_2.17 sinh F
GLIBC_2.17 sinhf F
GLIBC_2.17 sinhl F
GLIBC_2.17 sinl F
GLIBC_2.17 sqrt F
GLIBC_2.17 sqrtf F
GLIBC_2.17 sqrtl F
GLIBC_2.17 tan F
GLIBC_2.17 tanf F
GLIBC_2.17 tanh F
GLIBC_2.17 tanhf F
GLIBC_2.17 tanhl F
GLIBC_2.17 tanl F
GLIBC_2.17 tgamma F
GLIBC_2.17 tgammaf F
GLIBC_2.17 tgammal F
GLIBC_2.17 trunc F
GLIBC_2.17 truncf F
GLIBC_2.17 truncl F
GLIBC_2.17 y0 F
GLIBC_2.17 y0f F
GLIBC_2.17 y0l F
GLIBC_2.17 y1 F
GLIBC_2.17 y1f F
GLIBC_2.17 y1l F
GLIBC_2.17 yn F
GLIBC_2.17 ynf F
GLIBC_2.17 ynl F
GLIBC_2.18 GLIBC_2.18 A
GLIBC_2.18 __issignaling F
GLIBC_2.18 __issignalingf F
GLIBC_2.18 __issignalingl F
GLIBC_2.23 GLIBC_2.23 A
GLIBC_2.23 __signgam D 0x4
GLIBC_2.23 lgamma F
GLIBC_2.23 lgammaf F
GLIBC_2.23 lgammal F
GLIBC_2.24 GLIBC_2.24 A
GLIBC_2.24 nextdown F
GLIBC_2.24 nextdownf F
GLIBC_2.24 nextdownl F
GLIBC_2.24 nextup F
GLIBC_2.24 nextupf F
GLIBC_2.24 nextupl F
GLIBC_2.25 GLIBC_2.25 A
GLIBC_2.25 __iseqsig F
GLIBC_2.25 __iseqsigf F
GLIBC_2.25 __iseqsigl F
GLIBC_2.25 canonicalize F
GLIBC_2.25 canonicalizef F
GLIBC_2.25 canonicalizel F
GLIBC_2.25 fegetmode F
GLIBC_2.25 fesetexcept F
GLIBC_2.25 fesetmode F
GLIBC_2.25 fetestexceptflag F
GLIBC_2.25 getpayload F
GLIBC_2.25 getpayloadf F
GLIBC_2.25 getpayloadl F
GLIBC_2.25 llogb F
GLIBC_2.25 llogbf F
GLIBC_2.25 llogbl F
GLIBC_2.25 setpayload F
GLIBC_2.25 setpayloadf F
GLIBC_2.25 setpayloadl F
GLIBC_2.25 setpayloadsig F
GLIBC_2.25 setpayloadsigf F
GLIBC_2.25 setpayloadsigl F
GLIBC_2.25 totalorder F
GLIBC_2.25 totalorderf F
GLIBC_2.25 totalorderl F
GLIBC_2.25 totalordermag F
GLIBC_2.25 totalordermagf F
GLIBC_2.25 totalordermagl F