xref: /netbsd-src/lib/libm/src/e_expf.c (revision 2a399c6883d870daece976daec6ffa7bb7f934ce)
1 /* e_expf.c -- float version of e_exp.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 <sys/cdefs.h>
17 #if defined(LIBM_SCCS) && !defined(lint)
18 __RCSID("$NetBSD: e_expf.c,v 1.7 1997/10/09 11:28:55 lukem Exp $");
19 #endif
20 
21 #include "math.h"
22 #include "math_private.h"
23 
24 static const float huge = 1.0e+30;
25 
26 #ifdef __STDC__
27 static const float
28 #else
29 static float
30 #endif
31 one	= 1.0,
32 halF[2]	= {0.5,-0.5,},
33 twom100 = 7.8886090522e-31,      /* 2**-100=0x0d800000 */
34 o_threshold=  8.8721679688e+01,  /* 0x42b17180 */
35 u_threshold= -1.0397208405e+02,  /* 0xc2cff1b5 */
36 ln2HI[2]   ={ 6.9313812256e-01,		/* 0x3f317180 */
37 	     -6.9313812256e-01,},	/* 0xbf317180 */
38 ln2LO[2]   ={ 9.0580006145e-06,  	/* 0x3717f7d1 */
39 	     -9.0580006145e-06,},	/* 0xb717f7d1 */
40 invln2 =  1.4426950216e+00, 		/* 0x3fb8aa3b */
41 P1   =  1.6666667163e-01, /* 0x3e2aaaab */
42 P2   = -2.7777778450e-03, /* 0xbb360b61 */
43 P3   =  6.6137559770e-05, /* 0x388ab355 */
44 P4   = -1.6533901999e-06, /* 0xb5ddea0e */
45 P5   =  4.1381369442e-08; /* 0x3331bb4c */
46 
47 #ifdef __STDC__
48 	float __ieee754_expf(float x)	/* default IEEE double exp */
49 #else
50 	float __ieee754_expf(x)	/* default IEEE double exp */
51 	float x;
52 #endif
53 {
54 	float y,hi,lo,c,t;
55 	int32_t k,xsb;
56 	u_int32_t hx;
57 
58 	hi = lo = 0;
59 	k = 0;
60 	GET_FLOAT_WORD(hx,x);
61 	xsb = (hx>>31)&1;		/* sign bit of x */
62 	hx &= 0x7fffffff;		/* high word of |x| */
63 
64     /* filter out non-finite argument */
65 	if(hx >= 0x42b17218) {			/* if |x|>=88.721... */
66 	    if(hx>0x7f800000)
67 		 return x+x;	 		/* NaN */
68             if(hx==0x7f800000)
69 		return (xsb==0)? x:0.0;		/* exp(+-inf)={inf,0} */
70 	    if(x > o_threshold) return huge*huge; /* overflow */
71 	    if(x < u_threshold) return twom100*twom100; /* underflow */
72 	}
73 
74     /* argument reduction */
75 	if(hx > 0x3eb17218) {		/* if  |x| > 0.5 ln2 */
76 	    if(hx < 0x3F851592) {	/* and |x| < 1.5 ln2 */
77 		hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
78 	    } else {
79 		k  = invln2*x+halF[xsb];
80 		t  = k;
81 		hi = x - t*ln2HI[0];	/* t*ln2HI is exact here */
82 		lo = t*ln2LO[0];
83 	    }
84 	    x  = hi - lo;
85 	}
86 	else if(hx < 0x31800000)  {	/* when |x|<2**-28 */
87 	    if(huge+x>one) return one+x;/* trigger inexact */
88 	}
89 	else k = 0;
90 
91     /* x is now in primary range */
92 	t  = x*x;
93 	c  = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
94 	if(k==0) 	return one-((x*c)/(c-(float)2.0)-x);
95 	else 		y = one-((lo-(x*c)/((float)2.0-c))-hi);
96 	if(k >= -125) {
97 	    u_int32_t hy;
98 	    GET_FLOAT_WORD(hy,y);
99 	    SET_FLOAT_WORD(y,hy+(k<<23));	/* add k to y's exponent */
100 	    return y;
101 	} else {
102 	    u_int32_t hy;
103 	    GET_FLOAT_WORD(hy,y);
104 	    SET_FLOAT_WORD(y,hy+((k+100)<<23));	/* add k to y's exponent */
105 	    return y*twom100;
106 	}
107 }
108