source: trunk/libs/newlib/src/newlib/libm/math/ef_exp.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.8 KB
Line 
1/* ef_exp.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 "fdlibm.h"
17
18#if __OBSOLETE_MATH
19#ifdef __v810__
20#define const
21#endif
22
23#ifdef __STDC__
24static const float
25#else
26static float
27#endif
28one     = 1.0,
29halF[2] = {0.5,-0.5,},
30huge    = 1.0e+30,
31twom100 = 7.8886090522e-31,      /* 2**-100=0x0d800000 */
32ln2HI[2]   ={ 6.9313812256e-01,         /* 0x3f317180 */
33             -6.9313812256e-01,},       /* 0xbf317180 */
34ln2LO[2]   ={ 9.0580006145e-06,         /* 0x3717f7d1 */
35             -9.0580006145e-06,},       /* 0xb717f7d1 */
36invln2 =  1.4426950216e+00,             /* 0x3fb8aa3b */
37P1   =  1.6666667163e-01, /* 0x3e2aaaab */
38P2   = -2.7777778450e-03, /* 0xbb360b61 */
39P3   =  6.6137559770e-05, /* 0x388ab355 */
40P4   = -1.6533901999e-06, /* 0xb5ddea0e */
41P5   =  4.1381369442e-08; /* 0x3331bb4c */
42
43#ifdef __STDC__
44        float __ieee754_expf(float x)   /* default IEEE double exp */
45#else
46        float __ieee754_expf(x) /* default IEEE double exp */
47        float x;
48#endif
49{
50        float y,hi,lo,c,t;
51        __int32_t k = 0,xsb,sx;
52        __uint32_t hx;
53
54        GET_FLOAT_WORD(sx,x);
55        xsb = (sx>>31)&1;               /* sign bit of x */
56        hx = sx & 0x7fffffff;           /* high word of |x| */
57
58    /* filter out non-finite argument */
59        if(FLT_UWORD_IS_NAN(hx))
60            return x+x;         /* NaN */
61        if(FLT_UWORD_IS_INFINITE(hx))
62            return (xsb==0)? x:0.0;             /* exp(+-inf)={inf,0} */
63        if(sx > FLT_UWORD_LOG_MAX)
64            return huge*huge; /* overflow */
65        if(sx < 0 && hx > FLT_UWORD_LOG_MIN)
66            return twom100*twom100; /* underflow */
67       
68    /* argument reduction */
69        if(hx > 0x3eb17218) {           /* if  |x| > 0.5 ln2 */ 
70            if(hx < 0x3F851592) {       /* and |x| < 1.5 ln2 */
71                hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
72            } else {
73                k  = invln2*x+halF[xsb];
74                t  = k;
75                hi = x - t*ln2HI[0];    /* t*ln2HI is exact here */
76                lo = t*ln2LO[0];
77            }
78            x  = hi - lo;
79        } 
80        else if(hx < 0x31800000)  {     /* when |x|<2**-28 */
81            if(huge+x>one) return one+x;/* trigger inexact */
82        }
83
84    /* x is now in primary range */
85        t  = x*x;
86        c  = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
87        if(k==0)        return one-((x*c)/(c-(float)2.0)-x); 
88        else            y = one-((lo-(x*c)/((float)2.0-c))-hi);
89        if(k >= -125) {
90            __uint32_t hy;
91            GET_FLOAT_WORD(hy,y);
92            SET_FLOAT_WORD(y,hy+(k<<23));       /* add k to y's exponent */
93            return y;
94        } else {
95            __uint32_t hy;
96            GET_FLOAT_WORD(hy,y);
97            SET_FLOAT_WORD(y,hy+((k+100)<<23)); /* add k to y's exponent */
98            return y*twom100;
99        }
100}
101#endif /* __OBSOLETE_MATH */
Note: See TracBrowser for help on using the repository browser.