#include "SDL_internal.h"1/*2* ====================================================3* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.4*5* Developed at SunPro, a Sun Microsystems, Inc. business.6* Permission to use, copy, modify, and distribute this7* software is freely granted, provided that this notice8* is preserved.9* ====================================================10*/1112/* tan(x)13* Return tangent function of x.14*15* kernel function:16* __kernel_tan ... tangent function on [-pi/4,pi/4]17* __ieee754_rem_pio2 ... argument reduction routine18*19* Method.20* Let S,C and T denote the sin, cos and tan respectively on21* [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/222* in [-pi/4 , +pi/4], and let n = k mod 4.23* We have24*25* n sin(x) cos(x) tan(x)26* ----------------------------------------------------------27* 0 S C T28* 1 C -S -1/T29* 2 -S -C T30* 3 -C S -1/T31* ----------------------------------------------------------32*33* Special cases:34* Let trig be any of sin, cos, or tan.35* trig(+-INF) is NaN, with signals;36* trig(NaN) is that NaN;37*38* Accuracy:39* TRIG(x) returns trig(x) nearly rounded40*/4142#include "math_libm.h"43#include "math_private.h"4445double tan(double x)46{47double y[2],z=0.0;48int32_t n, ix;4950/* High word of x. */51GET_HIGH_WORD(ix,x);5253/* |x| ~< pi/4 */54ix &= 0x7fffffff;55if(ix <= 0x3fe921fb) return __kernel_tan(x,z,1);5657/* tan(Inf or NaN) is NaN */58else if (ix>=0x7ff00000) return x-x; /* NaN */5960/* argument reduction needed */61else {62n = __ieee754_rem_pio2(x,y);63return __kernel_tan(y[0],y[1],1-((n&1)<<1)); /* 1 -- n even64-1 -- n odd */65}66}67libm_hidden_def(tan)686970