2.9
[glibc/nacl-glibc.git] / sysdeps / ieee754 / ldbl-128ibm / s_ctanhl.c
blob7d619039ca74ccc80a99d65f02b4bdcdf6978224
1 /* Complex hyperbole tangent for long double. IBM extended format version.
2 Copyright (C) 1997,2005,2006 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, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <complex.h>
22 #include <fenv.h>
23 #include <math.h>
24 #include <math_ldbl_opt.h>
26 #include "math_private.h"
29 __complex__ long double
30 __ctanhl (__complex__ long double x)
32 __complex__ long double res;
34 if (!isfinite (__real__ x) || !isfinite (__imag__ x))
36 if (__isinfl (__real__ x))
38 __real__ res = __copysignl (1.0, __real__ x);
39 __imag__ res = __copysignl (0.0, __imag__ x);
41 else if (__imag__ x == 0.0)
43 res = x;
45 else
47 __real__ res = __nanl ("");
48 __imag__ res = __nanl ("");
50 #ifdef FE_INVALID
51 if (__isinfl (__imag__ x))
52 feraiseexcept (FE_INVALID);
53 #endif
56 else
58 long double sin2ix, cos2ix;
59 long double den;
61 __sincosl (2.0 * __imag__ x, &sin2ix, &cos2ix);
63 den = (__ieee754_coshl (2.0 * __real__ x) + cos2ix);
65 if (den == 0.0L)
67 __complex__ long double ez = __cexpl (x);
68 __complex__ long double emz = __cexpl (-x);
70 res = (ez - emz) / (ez + emz);
72 else
74 __real__ res = __ieee754_sinhl (2.0 * __real__ x) / den;
75 __imag__ res = sin2ix / den;
77 /* __gcc_qmul does not respect -0.0 so we need the following fixup. */
78 if ((__real__ res == 0.0) && (__real__ x == 0.0))
79 __real__ res = __real__ x;
81 if ((__real__ res == 0.0) && (__imag__ x == 0.0))
82 __imag__ res = __imag__ x;
85 return res;
87 long_double_symbol (libm, __ctanhl, ctanhl);