Documentation for the ABC Analysis
[cacao.git] / src / fdlibm / s_tan.c
1
2 /* @(#)s_tan.c 1.3 95/01/18 */
3 /*
4  * ====================================================
5  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6  *
7  * Developed at SunSoft, a Sun Microsystems, Inc. business.
8  * Permission to use, copy, modify, and distribute this
9  * software is freely granted, provided that this notice 
10  * is preserved.
11  * ====================================================
12  */
13
14 /* tan(x)
15  * Return tangent function of x.
16  *
17  * kernel function:
18  *      __kernel_tan            ... tangent function on [-pi/4,pi/4]
19  *      __ieee754_rem_pio2      ... argument reduction routine
20  *
21  * Method.
22  *      Let S,C and T denote the sin, cos and tan respectively on 
23  *      [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/2 
24  *      in [-pi/4 , +pi/4], and let n = k mod 4.
25  *      We have
26  *
27  *          n        sin(x)      cos(x)        tan(x)
28  *     ----------------------------------------------------------
29  *          0          S           C             T
30  *          1          C          -S            -1/T
31  *          2         -S          -C             T
32  *          3         -C           S            -1/T
33  *     ----------------------------------------------------------
34  *
35  * Special cases:
36  *      Let trig be any of sin, cos, or tan.
37  *      trig(+-INF)  is NaN, with signals;
38  *      trig(NaN)    is that NaN;
39  *
40  * Accuracy:
41  *      TRIG(x) returns trig(x) nearly rounded 
42  */
43
44 #include "fdlibm.h"
45
46 #ifndef _DOUBLE_IS_32BITS
47
48 #ifdef __STDC__
49         double tan(double x)
50 #else
51         double tan(x)
52         double x;
53 #endif
54 {
55         double y[2],z=0.0;
56         int32_t n, ix;
57
58     /* High word of x. */
59         GET_HIGH_WORD(ix,x);
60
61     /* |x| ~< pi/4 */
62         ix &= 0x7fffffff;
63         if(ix <= 0x3fe921fb) return __kernel_tan(x,z,1);
64
65     /* tan(Inf or NaN) is NaN */
66         else if (ix>=0x7ff00000) return x-x;            /* NaN */
67
68     /* argument reduction needed */
69         else {
70             n = __ieee754_rem_pio2(x,y);
71             return __kernel_tan(y[0],y[1],1-((n&1)<<1)); /*   1 -- n even
72                                                         -1 -- n odd */
73         }
74 }
75 #endif /* _DOUBLE_IS_32BITS */