src/java.base/share/native/libfdlibm/s_expm1.c
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 39759 jdk/src/java.base/share/native/libfdlibm/s_expm1.c@427916042881
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/* expm1(x)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * Returns exp(x)-1, the exponential of x minus 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * Method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *   1. Argument reduction:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *      Given x, find r and integer k such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *               x = k*ln2 + r,  |r| <= 0.5*ln2 ~ 0.34658
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *      Here a correction term c will be computed to compensate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *      the error in r when rounded to a floating-point number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *   2. Approximating expm1(r) by a special rational function on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *      the interval [0,0.34658]:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *      Since
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *          r*(exp(r)+1)/(exp(r)-1) = 2+ r^2/6 - r^4/360 + ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *      we define R1(r*r) by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *          r*(exp(r)+1)/(exp(r)-1) = 2+ r^2/6 * R1(r*r)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *      That is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *          R1(r**2) = 6/r *((exp(r)+1)/(exp(r)-1) - 2/r)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *                   = 6/r * ( 1 + 2.0*(1/(exp(r)-1) - 1/r))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *                   = 1 - r^2/60 + r^4/2520 - r^6/100800 + ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *      We use a special Reme algorithm on [0,0.347] to generate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *      a polynomial of degree 5 in r*r to approximate R1. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *      maximum error of this polynomial approximation is bounded
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *      by 2**-61. In other words,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *          R1(z) ~ 1.0 + Q1*z + Q2*z**2 + Q3*z**3 + Q4*z**4 + Q5*z**5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *      where   Q1  =  -1.6666666666666567384E-2,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *              Q2  =   3.9682539681370365873E-4,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *              Q3  =  -9.9206344733435987357E-6,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *              Q4  =   2.5051361420808517002E-7,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *              Q5  =  -6.2843505682382617102E-9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *      (where z=r*r, and the values of Q1 to Q5 are listed below)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *      with error bounded by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *          |                  5           |     -61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *          | 1.0+Q1*z+...+Q5*z   -  R1(z) | <= 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *          |                              |
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *      expm1(r) = exp(r)-1 is then computed by the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *      specific way which minimize the accumulation rounding error:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *                             2     3
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *                            r     r    [ 3 - (R1 + R1*r/2)  ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *            expm1(r) = r + --- + --- * [--------------------]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *                            2     2    [ 6 - r*(3 - R1*r/2) ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *      To compensate the error in the argument reduction, we use
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *              expm1(r+c) = expm1(r) + c + expm1(r)*c
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *                         ~ expm1(r) + c + r*c
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *      Thus c+r*c will be added in as the correction terms for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *      expm1(r+c). Now rearrange the term to avoid optimization
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *      screw up:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *                      (      2                                    2 )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *                      ({  ( r    [ R1 -  (3 - R1*r/2) ]  )  }    r  )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *       expm1(r+c)~r - ({r*(--- * [--------------------]-c)-c} - --- )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *                      ({  ( 2    [ 6 - r*(3 - R1*r/2) ]  )  }    2  )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *                      (                                             )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *                 = r - E
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *   3. Scale back to obtain expm1(x):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *      From step 1, we have
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *         expm1(x) = either 2^k*[expm1(r)+1] - 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *                  = or     2^k*[expm1(r) + (1-2^-k)]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *   4. Implementation notes:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *      (A). To save one multiplication, we scale the coefficient Qi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *           to Qi*2^i, and replace z by (x^2)/2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *      (B). To achieve maximum accuracy, we compute expm1(x) by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *        (i)   if x < -56*ln2, return -1.0, (raise inexact if x!=inf)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *        (ii)  if k=0, return r-E
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *        (iii) if k=-1, return 0.5*(r-E)-0.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 *        (iv)  if k=1 if r < -0.25, return 2*((r+0.5)- E)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *                     else          return  1.0+2.0*(r-E);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 *        (v)   if (k<-2||k>56) return 2^k(1-(E-r)) - 1 (or exp(x)-1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *        (vi)  if k <= 20, return 2^k((1-2^-k)-(E-r)), else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *        (vii) return 2^k(1-((E+2^-k)-r))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *      expm1(INF) is INF, expm1(NaN) is NaN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 *      expm1(-INF) is -1, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *      for finite argument, only expm1(0)=0 is exact.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * Accuracy:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 *      according to an error analysis, the error is always less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *      1 ulp (unit in the last place).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * Misc. info.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 *      For IEEE double
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *          if x >  7.09782712893383973096e+02 then expm1(x) overflow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * Constants:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * The hexadecimal values are the intended ones for the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * constants. The decimal values may be used, provided that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * compiler will convert from decimal to binary accurately enough
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * to produce the hexadecimal values shown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
#include "fdlibm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
#ifdef __STDC__
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
static const double
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
#else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
static double
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
one             = 1.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
huge            = 1.0e+300,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
tiny            = 1.0e-300,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
o_threshold     = 7.09782712893383973096e+02,/* 0x40862E42, 0xFEFA39EF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
ln2_hi          = 6.93147180369123816490e-01,/* 0x3fe62e42, 0xfee00000 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
ln2_lo          = 1.90821492927058770002e-10,/* 0x3dea39ef, 0x35793c76 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
invln2          = 1.44269504088896338700e+00,/* 0x3ff71547, 0x652b82fe */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        /* scaled coefficients related to expm1 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
Q1  =  -3.33333333333331316428e-02, /* BFA11111 111110F4 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
Q2  =   1.58730158725481460165e-03, /* 3F5A01A0 19FE5585 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
Q3  =  -7.93650757867487942473e-05, /* BF14CE19 9EAADBB7 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
Q4  =   4.00821782732936239552e-06, /* 3ED0CFCA 86E65239 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
Q5  =  -2.01099218183624371326e-07; /* BE8AFDB7 6E09C32D */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
#ifdef __STDC__
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        double expm1(double x)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
#else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        double expm1(x)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        double x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        double y,hi,lo,c=0,t,e,hxs,hfx,r1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        int k,xsb;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        unsigned hx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        hx  = __HI(x);  /* high word of x */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        xsb = hx&0x80000000;            /* sign bit of x */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        if(xsb==0) y=x; else y= -x;     /* y = |x| */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        hx &= 0x7fffffff;               /* high word of |x| */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    /* filter out huge and non-finite argument */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        if(hx >= 0x4043687A) {                  /* if |x|>=56*ln2 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            if(hx >= 0x40862E42) {              /* if |x|>=709.78... */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                if(hx>=0x7ff00000) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                    if(((hx&0xfffff)|__LO(x))!=0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                         return x+x;     /* NaN */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                    else return (xsb==0)? x:-1.0;/* exp(+-inf)={inf,-1} */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                if(x > o_threshold) return huge*huge; /* overflow */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            if(xsb!=0) { /* x < -56*ln2, return -1.0 with inexact */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                if(x+tiny<0.0)          /* raise inexact */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                return tiny-one;        /* return -1 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    /* argument reduction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        if(hx > 0x3fd62e42) {           /* if  |x| > 0.5 ln2 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            if(hx < 0x3FF0A2B2) {       /* and |x| < 1.5 ln2 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                if(xsb==0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                    {hi = x - ln2_hi; lo =  ln2_lo;  k =  1;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                    {hi = x + ln2_hi; lo = -ln2_lo;  k = -1;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                k  = invln2*x+((xsb==0)?0.5:-0.5);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                t  = k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                hi = x - t*ln2_hi;      /* t*ln2_hi is exact here */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                lo = t*ln2_lo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            x  = hi - lo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            c  = (hi-x)-lo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        else if(hx < 0x3c900000) {      /* when |x|<2**-54, return x */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            t = huge+x; /* return x with inexact flags when x!=0 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            return x - (t-(huge+x));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        else k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    /* x is now in primary range */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        hfx = 0.5*x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        hxs = x*hfx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        t  = 3.0-r1*hfx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        e  = hxs*((r1-t)/(6.0 - x*t));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        if(k==0) return x - (x*e-hxs);          /* c is 0 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            e  = (x*(e-c)-c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            e -= hxs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            if(k== -1) return 0.5*(x-e)-0.5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            if(k==1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                if(x < -0.25) return -2.0*(e-(x+0.5));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                else          return  one+2.0*(x-e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            if (k <= -2 || k>56) {   /* suffice to return exp(x)-1 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                y = one-(e-x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                __HI(y) += (k<<20);     /* add k to y's exponent */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                return y-one;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            t = one;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            if(k<20) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                __HI(t) = 0x3ff00000 - (0x200000>>k);  /* t=1-2^-k */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                y = t-(e-x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                __HI(y) += (k<<20);     /* add k to y's exponent */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
           } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                __HI(t)  = ((0x3ff-k)<<20);     /* 2^-k */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                y = x-(e+t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                y += one;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                __HI(y) += (k<<20);     /* add k to y's exponent */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        return y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
}