1/* s_expm1f.c -- float version of s_expm1.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 */
4
5/*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 *
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
12 * is preserved.
13 * ====================================================
14 */
15
16#include <errno.h>
17#include <float.h>
18#include <math.h>
19#include <math_private.h>
20#include <libm-alias-float.h>
21
22static const float huge = 1.0e+30;
23static const float tiny = 1.0e-30;
24
25static const float
26one = 1.0,
27o_threshold = 8.8721679688e+01,/* 0x42b17180 */
28ln2_hi = 6.9313812256e-01,/* 0x3f317180 */
29ln2_lo = 9.0580006145e-06,/* 0x3717f7d1 */
30invln2 = 1.4426950216e+00,/* 0x3fb8aa3b */
31 /* scaled coefficients related to expm1 */
32Q1 = -3.3333335072e-02, /* 0xbd088889 */
33Q2 = 1.5873016091e-03, /* 0x3ad00d01 */
34Q3 = -7.9365076090e-05, /* 0xb8a670cd */
35Q4 = 4.0082177293e-06, /* 0x36867e54 */
36Q5 = -2.0109921195e-07; /* 0xb457edbb */
37
38float
39__expm1f(float x)
40{
41 float y,hi,lo,c,t,e,hxs,hfx,r1;
42 int32_t k,xsb;
43 uint32_t hx;
44
45 GET_FLOAT_WORD(hx,x);
46 xsb = hx&0x80000000; /* sign bit of x */
47 if(xsb==0) y=x; else y= -x; /* y = |x| */
48 hx &= 0x7fffffff; /* high word of |x| */
49
50 /* filter out huge and non-finite argument */
51 if(hx >= 0x4195b844) { /* if |x|>=27*ln2 */
52 if(hx >= 0x42b17218) { /* if |x|>=88.721... */
53 if(hx>0x7f800000)
54 return x+x; /* NaN */
55 if(hx==0x7f800000)
56 return (xsb==0)? x:-1.0;/* exp(+-inf)={inf,-1} */
57 if(x > o_threshold) {
58 __set_errno (ERANGE);
59 return huge*huge; /* overflow */
60 }
61 }
62 if(xsb!=0) { /* x < -27*ln2, return -1.0 with inexact */
63 math_force_eval(x+tiny);/* raise inexact */
64 return tiny-one; /* return -1 */
65 }
66 }
67
68 /* argument reduction */
69 if(hx > 0x3eb17218) { /* if |x| > 0.5 ln2 */
70 if(hx < 0x3F851592) { /* and |x| < 1.5 ln2 */
71 if(xsb==0)
72 {hi = x - ln2_hi; lo = ln2_lo; k = 1;}
73 else
74 {hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
75 } else {
76 k = invln2*x+((xsb==0)?(float)0.5:(float)-0.5);
77 t = k;
78 hi = x - t*ln2_hi; /* t*ln2_hi is exact here */
79 lo = t*ln2_lo;
80 }
81 x = hi - lo;
82 c = (hi-x)-lo;
83 }
84 else if(hx < 0x33000000) { /* when |x|<2**-25, return x */
85 math_check_force_underflow (x);
86 t = huge+x; /* return x with inexact flags when x!=0 */
87 return x - (t-(huge+x));
88 }
89 else k = 0;
90
91 /* x is now in primary range */
92 hfx = (float)0.5*x;
93 hxs = x*hfx;
94 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
95 t = (float)3.0-r1*hfx;
96 e = hxs*((r1-t)/((float)6.0 - x*t));
97 if(k==0) return x - (x*e-hxs); /* c is 0 */
98 else {
99 e = (x*(e-c)-c);
100 e -= hxs;
101 if(k== -1) return (float)0.5*(x-e)-(float)0.5;
102 if(k==1) {
103 if(x < (float)-0.25) return -(float)2.0*(e-(x+(float)0.5));
104 else return one+(float)2.0*(x-e);
105 }
106 if (k <= -2 || k>56) { /* suffice to return exp(x)-1 */
107 int32_t i;
108 y = one-(e-x);
109 GET_FLOAT_WORD(i,y);
110 SET_FLOAT_WORD(y,i+(k<<23)); /* add k to y's exponent */
111 return y-one;
112 }
113 t = one;
114 if(k<23) {
115 int32_t i;
116 SET_FLOAT_WORD(t,0x3f800000 - (0x1000000>>k)); /* t=1-2^-k */
117 y = t-(e-x);
118 GET_FLOAT_WORD(i,y);
119 SET_FLOAT_WORD(y,i+(k<<23)); /* add k to y's exponent */
120 } else {
121 int32_t i;
122 SET_FLOAT_WORD(t,((0x7f-k)<<23)); /* 2^-k */
123 y = x-(e+t);
124 y += one;
125 GET_FLOAT_WORD(i,y);
126 SET_FLOAT_WORD(y,i+(k<<23)); /* add k to y's exponent */
127 }
128 }
129 return y;
130}
131libm_alias_float (__expm1, expm1)
132