2 * Single-precision 2^x function.
4 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 * See https://llvm.org/LICENSE.txt for license information.
6 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11 #include "math_config.h"
17 ULP error: 0.502 (nearest rounding.)
18 Relative error: 1.69 * 2^-34 in [-1/64, 1/64] (before rounding.)
19 Wrong count: 168353 (all nearest rounding wrong results with fma.)
20 Non-nearest ULP error: 1 (rounded ULP error)
23 #define N (1 << EXP2F_TABLE_BITS)
24 #define T __exp2f_data.tab
25 #define C __exp2f_data.poly
26 #define SHIFT __exp2f_data.shift_scaled
28 static inline uint32_t
31 return asuint (x
) >> 20;
39 /* double_t for better performance on targets with FLT_EVAL_METHOD==2. */
40 double_t kd
, xd
, z
, r
, r2
, y
, s
;
43 abstop
= top12 (x
) & 0x7ff;
44 if (unlikely (abstop
>= top12 (128.0f
)))
46 /* |x| >= 128 or x is nan. */
47 if (asuint (x
) == asuint (-INFINITY
))
49 if (abstop
>= top12 (INFINITY
))
52 return __math_oflowf (0);
54 return __math_uflowf (0);
57 return __math_may_uflowf (0);
61 /* x = k/N + r with r in [-1/(2N), 1/(2N)] and int k. */
62 kd
= eval_as_double (xd
+ SHIFT
);
64 kd
-= SHIFT
; /* k/N for int k. */
67 /* exp2(x) = 2^(k/N) * 2^r ~= s * (C0*r^3 + C1*r^2 + C2*r + 1) */
69 t
+= ki
<< (52 - EXP2F_TABLE_BITS
);
76 return eval_as_float (y
);
79 strong_alias (exp2f
, __exp2f_finite
)
80 hidden_alias (exp2f
, __ieee754_exp2f
)