llvm-project
222 строки · 6.0 Кб
1/*
2* Single-precision pow function.
3*
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
7*/
8
9#include <math.h>10#include <stdint.h>11#include "math_config.h"12
13/*
14POWF_LOG2_POLY_ORDER = 5
15EXP2F_TABLE_BITS = 5
16
17ULP error: 0.82 (~ 0.5 + relerr*2^24)
18relerr: 1.27 * 2^-26 (Relative error ~= 128*Ln2*relerr_log2 + relerr_exp2)
19relerr_log2: 1.83 * 2^-33 (Relative error of logx.)
20relerr_exp2: 1.69 * 2^-34 (Relative error of exp2(ylogx).)
21*/
22
23#define N (1 << POWF_LOG2_TABLE_BITS)24#define T __powf_log2_data.tab25#define A __powf_log2_data.poly26#define OFF 0x3f33000027
28/* Subnormal input is normalized so ix has negative biased exponent.
29Output is multiplied by N (POWF_SCALE) if TOINT_INTRINSICS is set. */
30static inline double_t31log2_inline (uint32_t ix)32{
33/* double_t for better performance on targets with FLT_EVAL_METHOD==2. */34double_t z, r, r2, r4, p, q, y, y0, invc, logc;35uint32_t iz, top, tmp;36int k, i;37
38/* x = 2^k z; where z is in range [OFF,2*OFF] and exact.39The range is split into N subintervals.
40The ith subinterval contains z and c is near its center. */
41tmp = ix - OFF;42i = (tmp >> (23 - POWF_LOG2_TABLE_BITS)) % N;43top = tmp & 0xff800000;44iz = ix - top;45k = (int32_t) top >> (23 - POWF_SCALE_BITS); /* arithmetic shift */46invc = T[i].invc;47logc = T[i].logc;48z = (double_t) asfloat (iz);49
50/* log2(x) = log1p(z/c-1)/ln2 + log2(c) + k */51r = z * invc - 1;52y0 = logc + (double_t) k;53
54/* Pipelined polynomial evaluation to approximate log1p(r)/ln2. */55r2 = r * r;56y = A[0] * r + A[1];57p = A[2] * r + A[3];58r4 = r2 * r2;59q = A[4] * r + y0;60q = p * r2 + q;61y = y * r4 + q;62return y;63}
64
65#undef N66#undef T67#define N (1 << EXP2F_TABLE_BITS)68#define T __exp2f_data.tab69#define SIGN_BIAS (1 << (EXP2F_TABLE_BITS + 11))70
71/* The output of log2 and thus the input of exp2 is either scaled by N
72(in case of fast toint intrinsics) or not. The unscaled xd must be
73in [-1021,1023], sign_bias sets the sign of the result. */
74static inline float75exp2_inline (double_t xd, uint32_t sign_bias)76{
77uint64_t ki, ski, t;78/* double_t for better performance on targets with FLT_EVAL_METHOD==2. */79double_t kd, z, r, r2, y, s;80
81#if TOINT_INTRINSICS82# define C __exp2f_data.poly_scaled83/* N*x = k + r with r in [-1/2, 1/2] */84kd = roundtoint (xd); /* k */85ki = converttoint (xd);86#else87# define C __exp2f_data.poly88# define SHIFT __exp2f_data.shift_scaled89/* x = k/N + r with r in [-1/(2N), 1/(2N)] */90kd = eval_as_double (xd + SHIFT);91ki = asuint64 (kd);92kd -= SHIFT; /* k/N */93#endif94r = xd - kd;95
96/* exp2(x) = 2^(k/N) * 2^r ~= s * (C0*r^3 + C1*r^2 + C2*r + 1) */97t = T[ki % N];98ski = ki + sign_bias;99t += ski << (52 - EXP2F_TABLE_BITS);100s = asdouble (t);101z = C[0] * r + C[1];102r2 = r * r;103y = C[2] * r + 1;104y = z * r2 + y;105y = y * s;106return eval_as_float (y);107}
108
109/* Returns 0 if not int, 1 if odd int, 2 if even int. The argument is
110the bit representation of a non-zero finite floating-point value. */
111static inline int112checkint (uint32_t iy)113{
114int e = iy >> 23 & 0xff;115if (e < 0x7f)116return 0;117if (e > 0x7f + 23)118return 2;119if (iy & ((1 << (0x7f + 23 - e)) - 1))120return 0;121if (iy & (1 << (0x7f + 23 - e)))122return 1;123return 2;124}
125
126static inline int127zeroinfnan (uint32_t ix)128{
129return 2 * ix - 1 >= 2u * 0x7f800000 - 1;130}
131
132float
133powf (float x, float y)134{
135uint32_t sign_bias = 0;136uint32_t ix, iy;137
138ix = asuint (x);139iy = asuint (y);140if (unlikely (ix - 0x00800000 >= 0x7f800000 - 0x00800000 || zeroinfnan (iy)))141{142/* Either (x < 0x1p-126 or inf or nan) or (y is 0 or inf or nan). */143if (unlikely (zeroinfnan (iy)))144{145if (2 * iy == 0)146return issignalingf_inline (x) ? x + y : 1.0f;147if (ix == 0x3f800000)148return issignalingf_inline (y) ? x + y : 1.0f;149if (2 * ix > 2u * 0x7f800000 || 2 * iy > 2u * 0x7f800000)150return x + y;151if (2 * ix == 2 * 0x3f800000)152return 1.0f;153if ((2 * ix < 2 * 0x3f800000) == !(iy & 0x80000000))154return 0.0f; /* |x|<1 && y==inf or |x|>1 && y==-inf. */155return y * y;156}157if (unlikely (zeroinfnan (ix)))158{159float_t x2 = x * x;160if (ix & 0x80000000 && checkint (iy) == 1)161{162x2 = -x2;163sign_bias = 1;164}165#if WANT_ERRNO166if (2 * ix == 0 && iy & 0x80000000)167return __math_divzerof (sign_bias);168#endif169/* Without the barrier some versions of clang hoist the 1/x2 and170thus division by zero exception can be signaled spuriously. */
171return iy & 0x80000000 ? opt_barrier_float (1 / x2) : x2;172}173/* x and y are non-zero finite. */174if (ix & 0x80000000)175{176/* Finite x < 0. */177int yint = checkint (iy);178if (yint == 0)179return __math_invalidf (x);180if (yint == 1)181sign_bias = SIGN_BIAS;182ix &= 0x7fffffff;183}184if (ix < 0x00800000)185{186/* Normalize subnormal x so exponent becomes negative. */187ix = asuint (x * 0x1p23f);188ix &= 0x7fffffff;189ix -= 23 << 23;190}191}192double_t logx = log2_inline (ix);193double_t ylogx = y * logx; /* Note: cannot overflow, y is single prec. */194if (unlikely ((asuint64 (ylogx) >> 47 & 0xffff)195>= asuint64 (126.0 * POWF_SCALE) >> 47))196{197/* |y*log(x)| >= 126. */198if (ylogx > 0x1.fffffffd1d571p+6 * POWF_SCALE)199/* |x^y| > 0x1.ffffffp127. */200return __math_oflowf (sign_bias);201if (WANT_ROUNDING && WANT_ERRNO202&& ylogx > 0x1.fffffffa3aae2p+6 * POWF_SCALE)203/* |x^y| > 0x1.fffffep127, check if we round away from 0. */204if ((!sign_bias205&& eval_as_float (1.0f + opt_barrier_float (0x1p-25f)) != 1.0f)206|| (sign_bias207&& eval_as_float (-1.0f - opt_barrier_float (0x1p-25f))208!= -1.0f))209return __math_oflowf (sign_bias);210if (ylogx <= -150.0 * POWF_SCALE)211return __math_uflowf (sign_bias);212#if WANT_ERRNO_UFLOW213if (ylogx < -149.0 * POWF_SCALE)214return __math_may_uflowf (sign_bias);215#endif216}217return exp2_inline (ylogx, sign_bias);218}
219#if USE_GLIBC_ABI220strong_alias (powf, __powf_finite)221hidden_alias (powf, __ieee754_powf)222#endif223