about summary refs log tree commit diff
path: root/sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c
diff options
context:
space:
mode:
authorJoe Ramsay <Joe.Ramsay@arm.com>2023-06-28 12:19:39 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2023-06-30 09:04:26 +0100
commit4a9392ffc27ad280f84779eea3ba01f2c134d1d8 (patch)
tree8716efd89aadc70338eeff9622cfcbdd7ff7911e /sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c
parent78c01a5cbeb6717ffa2d4d66bb90ac5c39bd81a9 (diff)
downloadglibc-4a9392ffc27ad280f84779eea3ba01f2c134d1d8.tar.gz
glibc-4a9392ffc27ad280f84779eea3ba01f2c134d1d8.tar.xz
glibc-4a9392ffc27ad280f84779eea3ba01f2c134d1d8.zip
aarch64: Add vector implementations of exp routines
Optimised implementations for single and double precision, Advanced
SIMD and SVE, copied from Arm Optimized Routines.

As previously, data tables are used via a barrier to prevent
overly aggressive constant inlining. Special-case handlers are
marked NOINLINE to avoid incurring the penalty of switching call
standards unnecessarily.

Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
Diffstat (limited to 'sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c')
-rw-r--r--sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c b/sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c
index c5f6fcd7c4..3b6b1e343d 100644
--- a/sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c
+++ b/sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c
@@ -24,5 +24,6 @@
 #define VEC_TYPE float64x2_t
 
 VPCS_VECTOR_WRAPPER (cos_advsimd, _ZGVnN2v_cos)
+VPCS_VECTOR_WRAPPER (exp_advsimd, _ZGVnN2v_exp)
 VPCS_VECTOR_WRAPPER (log_advsimd, _ZGVnN2v_log)
 VPCS_VECTOR_WRAPPER (sin_advsimd, _ZGVnN2v_sin)