x86-64: Add vector asinh/asinhf implementation to libmvec
authorSunil K Pandey <skpgkp2@gmail.com>
Wed, 29 Dec 2021 18:07:02 +0000 (10:07 -0800)
committerSunil K Pandey <skpgkp2@gmail.com>
Wed, 29 Dec 2021 19:38:56 +0000 (11:38 -0800)
commite682d0157854955e4b5fc91731d24a854e810eee
treec629c92e3b6a072e18629ccd814c810e75ae1f50
parentc0f36fc3032047cc2f50be5b705d6d445a9ad21b
x86-64: Add vector asinh/asinhf implementation to libmvec

Implement vectorized asinh/asinhf containing SSE, AVX, AVX2 and
AVX512 versions for libmvec as per vector ABI.  It also contains
accuracy and ABI tests for vector asinh/asinhf with regenerated ulps.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
50 files changed:
bits/libm-simd-decl-stubs.h
math/bits/mathcalls.h
sysdeps/unix/sysv/linux/x86_64/libmvec.abilist
sysdeps/x86/fpu/bits/math-vector.h
sysdeps/x86/fpu/finclude/math-vector-fortran.h
sysdeps/x86_64/fpu/Makeconfig
sysdeps/x86_64/fpu/Versions
sysdeps/x86_64/fpu/libm-test-ulps
sysdeps/x86_64/fpu/multiarch/svml_d_asinh2_core-sse2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_asinh2_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_asinh2_core_sse4.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_asinh4_core-sse.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_asinh4_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_asinh4_core_avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_asinh8_core-avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_asinh8_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_asinh8_core_avx512.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf16_core-avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf16_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf16_core_avx512.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf4_core-sse2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf4_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf4_core_sse4.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf8_core-sse.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf8_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_asinhf8_core_avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_asinh2_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_asinh4_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_asinh4_core_avx.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_asinh8_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_asinhf16_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_asinhf4_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_asinhf8_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_asinhf8_core_avx.S [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-asinh-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-asinh-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-asinh-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-asinh.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-vlen2-wrappers.c
sysdeps/x86_64/fpu/test-double-vlen4-avx2-wrappers.c
sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c
sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c
sysdeps/x86_64/fpu/test-float-libmvec-asinhf-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-asinhf-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-asinhf-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-asinhf.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c
sysdeps/x86_64/fpu/test-float-vlen4-wrappers.c
sysdeps/x86_64/fpu/test-float-vlen8-avx2-wrappers.c
sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c