Remove powerpc, sparc fdim inlines (bug 22987).
[glibc.git] / math / s_catanh_template.c
blobfdeeb589e156d7c9a5e5805a080a01882884367d
1 /* Return arc hyperbolic tangent for a complex float type.
2 Copyright (C) 1997-2018 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/>. */
20 #include <complex.h>
21 #include <math.h>
22 #include <math_private.h>
23 #include <float.h>
25 CFLOAT
26 M_DECL_FUNC (__catanh) (CFLOAT x)
28 CFLOAT res;
29 int rcls = fpclassify (__real__ x);
30 int icls = fpclassify (__imag__ x);
32 if (__glibc_unlikely (rcls <= FP_INFINITE || icls <= FP_INFINITE))
34 if (icls == FP_INFINITE)
36 __real__ res = M_COPYSIGN (0, __real__ x);
37 __imag__ res = M_COPYSIGN (M_MLIT (M_PI_2), __imag__ x);
39 else if (rcls == FP_INFINITE || rcls == FP_ZERO)
41 __real__ res = M_COPYSIGN (0, __real__ x);
42 if (icls >= FP_ZERO)
43 __imag__ res = M_COPYSIGN (M_MLIT (M_PI_2), __imag__ x);
44 else
45 __imag__ res = M_NAN;
47 else
49 __real__ res = M_NAN;
50 __imag__ res = M_NAN;
53 else if (__glibc_unlikely (rcls == FP_ZERO && icls == FP_ZERO))
55 res = x;
57 else
59 if (M_FABS (__real__ x) >= 16 / M_EPSILON
60 || M_FABS (__imag__ x) >= 16 / M_EPSILON)
62 __imag__ res = M_COPYSIGN (M_MLIT (M_PI_2), __imag__ x);
63 if (M_FABS (__imag__ x) <= 1)
64 __real__ res = 1 / __real__ x;
65 else if (M_FABS (__real__ x) <= 1)
66 __real__ res = __real__ x / __imag__ x / __imag__ x;
67 else
69 FLOAT h = M_HYPOT (__real__ x / 2, __imag__ x / 2);
70 __real__ res = __real__ x / h / h / 4;
73 else
75 if (M_FABS (__real__ x) == 1
76 && M_FABS (__imag__ x) < M_EPSILON * M_EPSILON)
77 __real__ res = (M_COPYSIGN (M_LIT (0.5), __real__ x)
78 * ((FLOAT) M_MLIT (M_LN2)
79 - M_LOG (M_FABS (__imag__ x))));
80 else
82 FLOAT i2 = 0;
83 if (M_FABS (__imag__ x) >= M_EPSILON * M_EPSILON)
84 i2 = __imag__ x * __imag__ x;
86 FLOAT num = 1 + __real__ x;
87 num = i2 + num * num;
89 FLOAT den = 1 - __real__ x;
90 den = i2 + den * den;
92 FLOAT f = num / den;
93 if (f < M_LIT (0.5))
94 __real__ res = M_LIT (0.25) * M_LOG (f);
95 else
97 num = 4 * __real__ x;
98 __real__ res = M_LIT (0.25) * M_LOG1P (num / den);
102 FLOAT absx, absy, den;
104 absx = M_FABS (__real__ x);
105 absy = M_FABS (__imag__ x);
106 if (absx < absy)
108 FLOAT t = absx;
109 absx = absy;
110 absy = t;
113 if (absy < M_EPSILON / 2)
115 den = (1 - absx) * (1 + absx);
116 if (den == 0)
117 den = 0;
119 else if (absx >= 1)
120 den = (1 - absx) * (1 + absx) - absy * absy;
121 else if (absx >= M_LIT (0.75) || absy >= M_LIT (0.5))
122 den = -M_SUF (__x2y2m1) (absx, absy);
123 else
124 den = (1 - absx) * (1 + absx) - absy * absy;
126 __imag__ res = M_LIT (0.5) * M_ATAN2 (2 * __imag__ x, den);
129 math_check_force_underflow_complex (res);
132 return res;
135 declare_mgen_alias (__catanh, catanh)