aboutsummaryrefslogtreecommitdiff
path: root/math/v_expf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/v_expf.c')
-rw-r--r--math/v_expf.c51
1 files changed, 45 insertions, 6 deletions
diff --git a/math/v_expf.c b/math/v_expf.c
index d403e00..ade23b2 100644
--- a/math/v_expf.c
+++ b/math/v_expf.c
@@ -1,8 +1,8 @@
/*
* Single-precision vector e^x function.
*
- * Copyright (c) 2019, Arm Limited.
- * SPDX-License-Identifier: MIT
+ * Copyright (c) 2019-2022, Arm Limited.
+ * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
*/
#include "mathlib.h"
@@ -28,6 +28,22 @@ static const float Poly[] = {
#define Ln2hi v_f32 (0x1.62e4p-1f)
#define Ln2lo v_f32 (0x1.7f7d1cp-20f)
+#if WANT_SIMD_EXCEPT
+
+#define TinyBound 0x20000000 /* asuint (0x1p-63). */
+#define BigBound 0x42800000 /* asuint (0x1p6). */
+
+VPCS_ATTR
+static NOINLINE v_f32_t
+specialcase (v_f32_t x, v_f32_t y, v_u32_t cmp)
+{
+ /* If fenv exceptions are to be triggered correctly, fall back to the scalar
+ routine to special lanes. */
+ return v_call_f32 (expf, x, y, cmp);
+}
+
+#else
+
VPCS_ATTR
static v_f32_t
specialcase (v_f32_t poly, v_f32_t n, v_u32_t e, v_f32_t absn, v_u32_t cmp1, v_f32_t scale)
@@ -44,15 +60,28 @@ specialcase (v_f32_t poly, v_f32_t n, v_u32_t e, v_f32_t absn, v_u32_t cmp1, v_f
return v_as_f32_u32 ((cmp2 & r2) | (~cmp2 & cmp1 & r1) | (~cmp1 & r0));
}
+#endif
+
VPCS_ATTR
v_f32_t
V_NAME(expf) (v_f32_t x)
{
- v_f32_t n, r, r2, scale, p, q, poly, absn, z;
+ v_f32_t n, r, r2, scale, p, q, poly, z;
v_u32_t cmp, e;
- /* exp(x) = 2^n (1 + poly(r)), with 1 + poly(r) in [1/sqrt(2),sqrt(2)]
- x = ln2*n + r, with r in [-ln2/2, ln2/2]. */
+#if WANT_SIMD_EXCEPT
+ cmp = v_cond_u32 ((v_as_u32_f32 (x) & 0x7fffffff) - TinyBound
+ >= BigBound - TinyBound);
+ v_f32_t xm = x;
+ /* If any lanes are special, mask them with 1 and retain a copy of x to allow
+ specialcase to fix special lanes later. This is only necessary if fenv
+ exceptions are to be triggered correctly. */
+ if (unlikely (v_any_u32 (cmp)))
+ x = v_sel_f32 (cmp, v_f32 (1), x);
+#endif
+
+ /* exp(x) = 2^n (1 + poly(r)), with 1 + poly(r) in [1/sqrt(2),sqrt(2)]
+ x = ln2*n + r, with r in [-ln2/2, ln2/2]. */
#if 1
z = v_fma_f32 (x, InvLn2, Shift);
n = z - Shift;
@@ -67,16 +96,26 @@ V_NAME(expf) (v_f32_t x)
e = v_as_u32_s32 (v_round_s32 (z)) << 23;
#endif
scale = v_as_f32_u32 (e + v_u32 (0x3f800000));
- absn = v_abs_f32 (n);
+
+#if !WANT_SIMD_EXCEPT
+ v_f32_t absn = v_abs_f32 (n);
cmp = v_cond_u32 (absn > v_f32 (126.0f));
+#endif
+
r2 = r * r;
p = v_fma_f32 (C0, r, C1);
q = v_fma_f32 (C2, r, C3);
q = v_fma_f32 (p, r2, q);
p = C4 * r;
poly = v_fma_f32 (q, r2, p);
+
if (unlikely (v_any_u32 (cmp)))
+#if WANT_SIMD_EXCEPT
+ return specialcase (xm, v_fma_f32 (poly, scale, scale), cmp);
+#else
return specialcase (poly, n, e, absn, cmp, scale);
+#endif
+
return v_fma_f32 (poly, scale, scale);
}
VPCS_ALIAS