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/] [sf_tan.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
/* sf_tan.c -- float version of s_tan.c.
/* sf_tan.c -- float version of s_tan.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__
        float tanf(float x)
        float tanf(float x)
#else
#else
        float tanf(x)
        float tanf(x)
        float x;
        float x;
#endif
#endif
{
{
        float y[2],z=0.0;
        float y[2],z=0.0;
        __int32_t n,ix;
        __int32_t n,ix;
 
 
        GET_FLOAT_WORD(ix,x);
        GET_FLOAT_WORD(ix,x);
 
 
    /* |x| ~< pi/4 */
    /* |x| ~< pi/4 */
        ix &= 0x7fffffff;
        ix &= 0x7fffffff;
        if(ix <= 0x3f490fda) return __kernel_tanf(x,z,1);
        if(ix <= 0x3f490fda) return __kernel_tanf(x,z,1);
 
 
    /* tan(Inf or NaN) is NaN */
    /* tan(Inf or NaN) is NaN */
        else if (!FLT_UWORD_IS_FINITE(ix)) return x-x;          /* NaN */
        else if (!FLT_UWORD_IS_FINITE(ix)) return x-x;          /* NaN */
 
 
    /* argument reduction needed */
    /* argument reduction needed */
        else {
        else {
            n = __ieee754_rem_pio2f(x,y);
            n = __ieee754_rem_pio2f(x,y);
            return __kernel_tanf(y[0],y[1],1-((n&1)<<1)); /*   1 -- n even
            return __kernel_tanf(y[0],y[1],1-((n&1)<<1)); /*   1 -- n even
                                                              -1 -- n odd */
                                                              -1 -- n odd */
        }
        }
}
}
 
 
#ifdef _DOUBLE_IS_32BITS
#ifdef _DOUBLE_IS_32BITS
 
 
#ifdef __STDC__
#ifdef __STDC__
        double tan(double x)
        double tan(double x)
#else
#else
        double tan(x)
        double tan(x)
        double x;
        double x;
#endif
#endif
{
{
        return (double) tanf((float) x);
        return (double) tanf((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.