OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libm/] [math/] [sf_tanh.c] - Diff between revs 40 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 40 Rev 1765
/* sf_tanh.c -- float version of s_tanh.c.
/* sf_tanh.c -- float version of s_tanh.c.
 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
 */
 */
 
 
/*
/*
 * ====================================================
 * ====================================================
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 *
 *
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Permission to use, copy, modify, and distribute this
 * Permission to use, copy, modify, and distribute this
 * software is freely granted, provided that this notice
 * software is freely granted, provided that this notice
 * is preserved.
 * is preserved.
 * ====================================================
 * ====================================================
 */
 */
 
 
#include "fdlibm.h"
#include "fdlibm.h"
 
 
#ifdef __STDC__
#ifdef __STDC__
static const float one=1.0, two=2.0, tiny = 1.0e-30;
static const float one=1.0, two=2.0, tiny = 1.0e-30;
#else
#else
static float one=1.0, two=2.0, tiny = 1.0e-30;
static float one=1.0, two=2.0, tiny = 1.0e-30;
#endif
#endif
 
 
#ifdef __STDC__
#ifdef __STDC__
        float tanhf(float x)
        float tanhf(float x)
#else
#else
        float tanhf(x)
        float tanhf(x)
        float x;
        float x;
#endif
#endif
{
{
        float t,z;
        float t,z;
        __int32_t jx,ix;
        __int32_t jx,ix;
 
 
        GET_FLOAT_WORD(jx,x);
        GET_FLOAT_WORD(jx,x);
        ix = jx&0x7fffffff;
        ix = jx&0x7fffffff;
 
 
    /* x is INF or NaN */
    /* x is INF or NaN */
        if(ix>=0x7f800000) {
        if(ix>=0x7f800000) {
            if (jx>=0) return one/x+one;    /* tanh(+-inf)=+-1 */
            if (jx>=0) return one/x+one;    /* tanh(+-inf)=+-1 */
            else       return one/x-one;    /* tanh(NaN) = NaN */
            else       return one/x-one;    /* tanh(NaN) = NaN */
        }
        }
 
 
    /* |x| < 22 */
    /* |x| < 22 */
        if (ix < 0x41b00000) {          /* |x|<22 */
        if (ix < 0x41b00000) {          /* |x|<22 */
            if (ix<0x24000000)          /* |x|<2**-55 */
            if (ix<0x24000000)          /* |x|<2**-55 */
                return x*(one+x);       /* tanh(small) = small */
                return x*(one+x);       /* tanh(small) = small */
            if (ix>=0x3f800000) {       /* |x|>=1  */
            if (ix>=0x3f800000) {       /* |x|>=1  */
                t = expm1f(two*fabsf(x));
                t = expm1f(two*fabsf(x));
                z = one - two/(t+two);
                z = one - two/(t+two);
            } else {
            } else {
                t = expm1f(-two*fabsf(x));
                t = expm1f(-two*fabsf(x));
                z= -t/(t+two);
                z= -t/(t+two);
            }
            }
    /* |x| > 22, return +-1 */
    /* |x| > 22, return +-1 */
        } else {
        } else {
            z = one - tiny;             /* raised inexact flag */
            z = one - tiny;             /* raised inexact flag */
        }
        }
        return (jx>=0)? z: -z;
        return (jx>=0)? z: -z;
}
}
 
 
#ifdef _DOUBLE_IS_32BITS
#ifdef _DOUBLE_IS_32BITS
 
 
#ifdef __STDC__
#ifdef __STDC__
        double tanh(double x)
        double tanh(double x)
#else
#else
        double tanh(x)
        double tanh(x)
        double x;
        double x;
#endif
#endif
{
{
        return (double) tanhf((float) x);
        return (double) tanhf((float) x);
}
}
 
 
#endif /* defined(_DOUBLE_IS_32BITS) */
#endif /* defined(_DOUBLE_IS_32BITS) */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.