2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
9 * ====================================================
13 Long double expansions are
14 Copyright (C) 2001 Stephen L. Moshier <moshier@na-net.ornl.gov>
15 and are incorporated herein by permission of the author. The author
16 reserves the right to distribute this material elsewhere under different
17 copying permissions. These modifications are distributed here under
20 This library is free software; you can redistribute it and/or
21 modify it under the terms of the GNU Lesser General Public
22 License as published by the Free Software Foundation; either
23 version 2.1 of the License, or (at your option) any later version.
25 This library is distributed in the hope that it will be useful,
26 but WITHOUT ANY WARRANTY; without even the implied warranty of
27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28 Lesser General Public License for more details.
30 You should have received a copy of the GNU Lesser General Public
31 License along with this library; if not, see
32 <https://www.gnu.org/licenses/>. */
34 /* __kernel_tanl( x, y, k )
35 * kernel tan function on [-pi/4, pi/4], pi/4 ~ 0.7854
36 * Input x is assumed to be bounded by ~pi/4 in magnitude.
37 * Input y is the tail of x.
38 * Input k indicates whether tan (if k=1) or
39 * -1/tan (if k= -1) is returned.
42 * 1. Since tan(-x) = -tan(x), we need only to consider positive x.
43 * 2. if x < 2^-57, return x with inexact if x!=0.
44 * 3. tan(x) is approximated by a rational form x + x^3 / 3 + x^5 R(x^2)
47 * Note: tan(x+y) = tan(x) + tan'(x)*y
48 * ~ tan(x) + (1+x*x)*y
49 * Therefore, for better accuracy in computing tan(x+y), let
52 * tan(x+y) = x + (x^3 / 3 + (x^2 *(r+y)+y))
54 * 4. For x in [0.67433,pi/4], let y = pi/4 - x, then
55 * tan(x) = tan(pi/4-y) = (1-tan(y))/(1+tan(y))
56 * = 1 - 2*(tan(y) - (tan(y)^2)/(1+tan(y)))
61 #include <math_private.h>
62 #include <math-underflow.h>
63 #include <libc-diag.h>
65 static const _Float128
67 pio4hi
= L(7.8539816339744830961566084581987569936977E-1),
68 pio4lo
= L(2.1679525325309452561992610065108379921906E-35),
70 /* tan x = x + x^3 / 3 + x^5 T(x^2)/U(x^2)
71 0 <= x <= 0.6743316650390625
72 Peak relative error 8.0e-36 */
73 TH
= L(3.333333333333333333333333333333333333333E-1),
74 T0
= L(-1.813014711743583437742363284336855889393E7
),
75 T1
= L(1.320767960008972224312740075083259247618E6
),
76 T2
= L(-2.626775478255838182468651821863299023956E4
),
77 T3
= L(1.764573356488504935415411383687150199315E2
),
78 T4
= L(-3.333267763822178690794678978979803526092E-1),
80 U0
= L(-1.359761033807687578306772463253710042010E8
),
81 U1
= L(6.494370630656893175666729313065113194784E7
),
82 U2
= L(-4.180787672237927475505536849168729386782E6
),
83 U3
= L(8.031643765106170040139966622980914621521E4
),
84 U4
= L(-5.323131271912475695157127875560667378597E2
);
85 /* 1.000000000000000000000000000000000000000E0 */
89 __kernel_tanl (_Float128 x
, _Float128 y
, int iy
)
91 _Float128 z
, r
, v
, w
, s
;
93 ieee854_long_double_shape_type u
, u1
;
96 ix
= u
.parts32
.w0
& 0x7fffffff;
97 if (ix
< 0x3fc60000) /* x < 2**-57 */
100 { /* generate inexact */
101 if ((ix
| u
.parts32
.w1
| u
.parts32
.w2
| u
.parts32
.w3
103 return one
/ fabsl (x
);
106 math_check_force_underflow (x
);
113 if (ix
>= 0x3ffe5942) /* |x| >= 0.6743316650390625 */
115 if ((u
.parts32
.w0
& 0x80000000) != 0)
129 r
= T0
+ z
* (T1
+ z
* (T2
+ z
* (T3
+ z
* T4
)));
130 v
= U0
+ z
* (U1
+ z
* (U2
+ z
* (U3
+ z
* (U4
+ z
))));
134 r
= y
+ z
* (s
* r
+ y
);
137 if (ix
>= 0x3ffe5942)
140 w
= (v
- 2.0 * (x
- (w
* w
/ (w
+ v
) - r
)));
141 /* SIGN is set for arguments that reach this code, but not
142 otherwise, resulting in warnings that it may be used
143 uninitialized although in the cases where it is used it has
145 DIAG_PUSH_NEEDS_COMMENT
;
146 DIAG_IGNORE_NEEDS_COMMENT (5, "-Wmaybe-uninitialized");
149 DIAG_POP_NEEDS_COMMENT
;
155 { /* if allow error up to 2 ulp,
156 simply return -1.0/(x+r) here */
157 /* compute -1.0/(x+r) accurately */
161 v
= r
- (u1
.value
- x
); /* u1+v = r+x */
166 s
= 1.0 + u
.value
* u1
.value
;
167 return u
.value
+ z
* (s
+ u
.value
* v
);