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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libm/] [math/] [w_exp.c] - Diff between revs 207 and 345

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
 
 
/* @(#)w_exp.c 5.1 93/09/24 */
/* @(#)w_exp.c 5.1 93/09/24 */
/*
/*
 * ====================================================
 * ====================================================
 * 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.
 * ====================================================
 * ====================================================
 */
 */
 
 
/*
/*
FUNCTION
FUNCTION
        <<exp>>, <<expf>>---exponential
        <<exp>>, <<expf>>---exponential
INDEX
INDEX
        exp
        exp
INDEX
INDEX
        expf
        expf
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <math.h>
        #include <math.h>
        double exp(double <[x]>);
        double exp(double <[x]>);
        float expf(float <[x]>);
        float expf(float <[x]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        #include <math.h>
        #include <math.h>
        double exp(<[x]>);
        double exp(<[x]>);
        double <[x]>;
        double <[x]>;
 
 
        float expf(<[x]>);
        float expf(<[x]>);
        float <[x]>;
        float <[x]>;
 
 
DESCRIPTION
DESCRIPTION
        <<exp>> and <<expf>> calculate the exponential of <[x]>, that is,
        <<exp>> and <<expf>> calculate the exponential of <[x]>, that is,
        @ifnottex
        @ifnottex
        e raised to the power <[x]> (where e
        e raised to the power <[x]> (where e
        @end ifnottex
        @end ifnottex
        @tex
        @tex
        $e^x$ (where $e$
        $e^x$ (where $e$
        @end tex
        @end tex
        is the base of the natural system of logarithms, approximately 2.71828).
        is the base of the natural system of logarithms, approximately 2.71828).
 
 
        You can use the (non-ANSI) function <<matherr>> to specify
        You can use the (non-ANSI) function <<matherr>> to specify
        error handling for these functions.
        error handling for these functions.
 
 
RETURNS
RETURNS
        On success, <<exp>> and <<expf>> return the calculated value.
        On success, <<exp>> and <<expf>> return the calculated value.
        If the result underflows, the returned value is <<0>>.  If the
        If the result underflows, the returned value is <<0>>.  If the
        result overflows, the returned value is <<HUGE_VAL>>.  In
        result overflows, the returned value is <<HUGE_VAL>>.  In
        either case, <<errno>> is set to <<ERANGE>>.
        either case, <<errno>> is set to <<ERANGE>>.
 
 
PORTABILITY
PORTABILITY
        <<exp>> is ANSI C.  <<expf>> is an extension.
        <<exp>> is ANSI C.  <<expf>> is an extension.
 
 
*/
*/
 
 
/*
/*
 * wrapper exp(x)
 * wrapper exp(x)
 */
 */
 
 
#include "fdlibm.h"
#include "fdlibm.h"
#include <errno.h>
#include <errno.h>
 
 
#ifndef _DOUBLE_IS_32BITS
#ifndef _DOUBLE_IS_32BITS
 
 
#ifdef __STDC__
#ifdef __STDC__
static const double
static const double
#else
#else
static double
static double
#endif
#endif
o_threshold=  7.09782712893383973096e+02,  /* 0x40862E42, 0xFEFA39EF */
o_threshold=  7.09782712893383973096e+02,  /* 0x40862E42, 0xFEFA39EF */
u_threshold= -7.45133219101941108420e+02;  /* 0xc0874910, 0xD52D3051 */
u_threshold= -7.45133219101941108420e+02;  /* 0xc0874910, 0xD52D3051 */
 
 
#ifdef __STDC__
#ifdef __STDC__
        double exp(double x)            /* wrapper exp */
        double exp(double x)            /* wrapper exp */
#else
#else
        double exp(x)                   /* wrapper exp */
        double exp(x)                   /* wrapper exp */
        double x;
        double x;
#endif
#endif
{
{
#ifdef _IEEE_LIBM
#ifdef _IEEE_LIBM
        return __ieee754_exp(x);
        return __ieee754_exp(x);
#else
#else
        double z;
        double z;
        struct exception exc;
        struct exception exc;
        z = __ieee754_exp(x);
        z = __ieee754_exp(x);
        if(_LIB_VERSION == _IEEE_) return z;
        if(_LIB_VERSION == _IEEE_) return z;
        if(finite(x)) {
        if(finite(x)) {
            if(x>o_threshold) {
            if(x>o_threshold) {
                /* exp(finite) overflow */
                /* exp(finite) overflow */
#ifndef HUGE_VAL
#ifndef HUGE_VAL
#define HUGE_VAL inf
#define HUGE_VAL inf
                double inf = 0.0;
                double inf = 0.0;
 
 
                SET_HIGH_WORD(inf,0x7ff00000);  /* set inf to infinite */
                SET_HIGH_WORD(inf,0x7ff00000);  /* set inf to infinite */
#endif
#endif
                exc.type = OVERFLOW;
                exc.type = OVERFLOW;
                exc.name = "exp";
                exc.name = "exp";
                exc.err = 0;
                exc.err = 0;
                exc.arg1 = exc.arg2 = x;
                exc.arg1 = exc.arg2 = x;
                if (_LIB_VERSION == _SVID_)
                if (_LIB_VERSION == _SVID_)
                  exc.retval = HUGE;
                  exc.retval = HUGE;
                else
                else
                  exc.retval = HUGE_VAL;
                  exc.retval = HUGE_VAL;
                if (_LIB_VERSION == _POSIX_)
                if (_LIB_VERSION == _POSIX_)
                  errno = ERANGE;
                  errno = ERANGE;
                else if (!matherr(&exc)) {
                else if (!matherr(&exc)) {
                        errno = ERANGE;
                        errno = ERANGE;
                }
                }
                if (exc.err != 0)
                if (exc.err != 0)
                   errno = exc.err;
                   errno = exc.err;
                return exc.retval;
                return exc.retval;
            } else if(x<u_threshold) {
            } else if(x<u_threshold) {
                /* exp(finite) underflow */
                /* exp(finite) underflow */
                exc.type = UNDERFLOW;
                exc.type = UNDERFLOW;
                exc.name = "exp";
                exc.name = "exp";
                exc.err = 0;
                exc.err = 0;
                exc.arg1 = exc.arg2 = x;
                exc.arg1 = exc.arg2 = x;
                exc.retval = 0.0;
                exc.retval = 0.0;
                if (_LIB_VERSION == _POSIX_)
                if (_LIB_VERSION == _POSIX_)
                  errno = ERANGE;
                  errno = ERANGE;
                else if (!matherr(&exc)) {
                else if (!matherr(&exc)) {
                        errno = ERANGE;
                        errno = ERANGE;
                }
                }
                if (exc.err != 0)
                if (exc.err != 0)
                   errno = exc.err;
                   errno = exc.err;
                return exc.retval;
                return exc.retval;
            }
            }
        }
        }
        return z;
        return z;
#endif
#endif
}
}
 
 
#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.