1 /* Complex hyperbole tangent for long double. IBM extended format version.
2 Copyright (C) 1997-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
24 #include <math_ldbl_opt.h>
26 #include <math_private.h>
28 /* IBM long double GCC builtin sets LDBL_EPSILON == LDBL_DENORM_MIN */
29 static const long double ldbl_eps
= 0x1p
-106L;
31 __complex__
long double
32 __ctanhl (__complex__
long double x
)
34 __complex__
long double res
;
36 if (!isfinite (__real__ x
) || !isfinite (__imag__ x
))
38 if (__isinfl (__real__ x
))
40 __real__ res
= __copysignl (1.0L, __real__ x
);
41 __imag__ res
= __copysignl (0.0L, __imag__ x
);
43 else if (__imag__ x
== 0.0)
49 __real__ res
= __nanl ("");
50 __imag__ res
= __nanl ("");
53 if (__isinfl (__imag__ x
))
54 feraiseexcept (FE_INVALID
);
60 long double sinix
, cosix
;
62 const int t
= (int) ((LDBL_MAX_EXP
- 1) * M_LN2l
/ 2.0L);
64 /* tanh(x+iy) = (sinh(2x) + i*sin(2y))/(cosh(2x) + cos(2y))
65 = (sinh(x)*cosh(x) + i*sin(y)*cos(y))/(sinh(x)^2 + cos(y)^2). */
67 __sincosl (__imag__ x
, &sinix
, &cosix
);
69 if (fabsl (__real__ x
) > t
)
71 /* Avoid intermediate overflow when the imaginary part of
72 the result may be subnormal. Ignoring negligible terms,
73 the real part is +/- 1, the imaginary part is
74 sin(y)*cos(y)/sinh(x)^2 = 4*sin(y)*cos(y)/exp(2x). */
75 long double exp_2t
= __ieee754_expl (2 * t
);
76 __real__ res
= __copysignl (1.0L, __real__ x
);
77 __imag__ res
= 4 * sinix
* cosix
;
78 __real__ x
= fabsl (__real__ x
);
80 __imag__ res
/= exp_2t
;
83 /* Underflow (original real part of x has absolute value
85 __imag__ res
/= exp_2t
;
88 __imag__ res
/= __ieee754_expl (2.0L * __real__ x
);
92 long double sinhrx
, coshrx
;
93 if (fabs (__real__ x
) > LDBL_MIN
)
95 sinhrx
= __ieee754_sinhl (__real__ x
);
96 coshrx
= __ieee754_coshl (__real__ x
);
104 if (fabsl (sinhrx
) > fabsl (cosix
) * ldbl_eps
)
105 den
= sinhrx
* sinhrx
+ cosix
* cosix
;
108 __real__ res
= sinhrx
* (coshrx
/ den
);
109 __imag__ res
= sinix
* (cosix
/ den
);
111 /* __gcc_qmul does not respect -0.0 so we need the following fixup. */
112 if ((__real__ res
== 0.0L) && (__real__ x
== 0.0L))
113 __real__ res
= __real__ x
;
115 if ((__real__ res
== 0.0L) && (__imag__ x
== 0.0L))
116 __imag__ res
= __imag__ x
;
121 long_double_symbol (libm
, __ctanhl
, ctanhl
);