xref: /netbsd-src/external/gpl3/gcc/dist/libquadmath/math/catanq.c (revision 181254a7b1bdde6873432bffef2d2decc4b5c22f)
1*181254a7Smrg /* Return arc tangent of complex float type.
2*181254a7Smrg    Copyright (C) 1997-2018 Free Software Foundation, Inc.
3*181254a7Smrg    This file is part of the GNU C Library.
4*181254a7Smrg    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
5*181254a7Smrg 
6*181254a7Smrg    The GNU C Library is free software; you can redistribute it and/or
7*181254a7Smrg    modify it under the terms of the GNU Lesser General Public
8*181254a7Smrg    License as published by the Free Software Foundation; either
9*181254a7Smrg    version 2.1 of the License, or (at your option) any later version.
10*181254a7Smrg 
11*181254a7Smrg    The GNU C Library is distributed in the hope that it will be useful,
12*181254a7Smrg    but WITHOUT ANY WARRANTY; without even the implied warranty of
13*181254a7Smrg    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14*181254a7Smrg    Lesser General Public License for more details.
15*181254a7Smrg 
16*181254a7Smrg    You should have received a copy of the GNU Lesser General Public
17*181254a7Smrg    License along with the GNU C Library; if not, see
18*181254a7Smrg    <http://www.gnu.org/licenses/>.  */
19*181254a7Smrg 
20*181254a7Smrg #include "quadmath-imp.h"
21*181254a7Smrg 
22*181254a7Smrg __complex128
catanq(__complex128 x)23*181254a7Smrg catanq (__complex128 x)
24*181254a7Smrg {
25*181254a7Smrg   __complex128 res;
26*181254a7Smrg   int rcls = fpclassifyq (__real__ x);
27*181254a7Smrg   int icls = fpclassifyq (__imag__ x);
28*181254a7Smrg 
29*181254a7Smrg   if (__glibc_unlikely (rcls <= QUADFP_INFINITE || icls <= QUADFP_INFINITE))
30*181254a7Smrg     {
31*181254a7Smrg       if (rcls == QUADFP_INFINITE)
32*181254a7Smrg 	{
33*181254a7Smrg 	  __real__ res = copysignq (M_PI_2q, __real__ x);
34*181254a7Smrg 	  __imag__ res = copysignq (0, __imag__ x);
35*181254a7Smrg 	}
36*181254a7Smrg       else if (icls == QUADFP_INFINITE)
37*181254a7Smrg 	{
38*181254a7Smrg 	  if (rcls >= QUADFP_ZERO)
39*181254a7Smrg 	    __real__ res = copysignq (M_PI_2q, __real__ x);
40*181254a7Smrg 	  else
41*181254a7Smrg 	    __real__ res = nanq ("");
42*181254a7Smrg 	  __imag__ res = copysignq (0, __imag__ x);
43*181254a7Smrg 	}
44*181254a7Smrg       else if (icls == QUADFP_ZERO || icls == QUADFP_INFINITE)
45*181254a7Smrg 	{
46*181254a7Smrg 	  __real__ res = nanq ("");
47*181254a7Smrg 	  __imag__ res = copysignq (0, __imag__ x);
48*181254a7Smrg 	}
49*181254a7Smrg       else
50*181254a7Smrg 	{
51*181254a7Smrg 	  __real__ res = nanq ("");
52*181254a7Smrg 	  __imag__ res = nanq ("");
53*181254a7Smrg 	}
54*181254a7Smrg     }
55*181254a7Smrg   else if (__glibc_unlikely (rcls == QUADFP_ZERO && icls == QUADFP_ZERO))
56*181254a7Smrg     {
57*181254a7Smrg       res = x;
58*181254a7Smrg     }
59*181254a7Smrg   else
60*181254a7Smrg     {
61*181254a7Smrg       if (fabsq (__real__ x) >= 16 / FLT128_EPSILON
62*181254a7Smrg 	  || fabsq (__imag__ x) >= 16 / FLT128_EPSILON)
63*181254a7Smrg 	{
64*181254a7Smrg 	  __real__ res = copysignq (M_PI_2q, __real__ x);
65*181254a7Smrg 	  if (fabsq (__real__ x) <= 1)
66*181254a7Smrg 	    __imag__ res = 1 / __imag__ x;
67*181254a7Smrg 	  else if (fabsq (__imag__ x) <= 1)
68*181254a7Smrg 	    __imag__ res = __imag__ x / __real__ x / __real__ x;
69*181254a7Smrg 	  else
70*181254a7Smrg 	    {
71*181254a7Smrg 	      __float128 h = hypotq (__real__ x / 2, __imag__ x / 2);
72*181254a7Smrg 	      __imag__ res = __imag__ x / h / h / 4;
73*181254a7Smrg 	    }
74*181254a7Smrg 	}
75*181254a7Smrg       else
76*181254a7Smrg 	{
77*181254a7Smrg 	  __float128 den, absx, absy;
78*181254a7Smrg 
79*181254a7Smrg 	  absx = fabsq (__real__ x);
80*181254a7Smrg 	  absy = fabsq (__imag__ x);
81*181254a7Smrg 	  if (absx < absy)
82*181254a7Smrg 	    {
83*181254a7Smrg 	      __float128 t = absx;
84*181254a7Smrg 	      absx = absy;
85*181254a7Smrg 	      absy = t;
86*181254a7Smrg 	    }
87*181254a7Smrg 
88*181254a7Smrg 	  if (absy < FLT128_EPSILON / 2)
89*181254a7Smrg 	    {
90*181254a7Smrg 	      den = (1 - absx) * (1 + absx);
91*181254a7Smrg 	      if (den == 0)
92*181254a7Smrg 		den = 0;
93*181254a7Smrg 	    }
94*181254a7Smrg 	  else if (absx >= 1)
95*181254a7Smrg 	    den = (1 - absx) * (1 + absx) - absy * absy;
96*181254a7Smrg 	  else if (absx >= 0.75Q || absy >= 0.5Q)
97*181254a7Smrg 	    den = -__quadmath_x2y2m1q (absx, absy);
98*181254a7Smrg 	  else
99*181254a7Smrg 	    den = (1 - absx) * (1 + absx) - absy * absy;
100*181254a7Smrg 
101*181254a7Smrg 	  __real__ res = 0.5Q * atan2q (2 * __real__ x, den);
102*181254a7Smrg 
103*181254a7Smrg 	  if (fabsq (__imag__ x) == 1
104*181254a7Smrg 	      && fabsq (__real__ x) < FLT128_EPSILON * FLT128_EPSILON)
105*181254a7Smrg 	    __imag__ res = (copysignq (0.5Q, __imag__ x)
106*181254a7Smrg 			    * ((__float128) M_LN2q
107*181254a7Smrg 			       - logq (fabsq (__real__ x))));
108*181254a7Smrg 	  else
109*181254a7Smrg 	    {
110*181254a7Smrg 	      __float128 r2 = 0, num, f;
111*181254a7Smrg 
112*181254a7Smrg 	      if (fabsq (__real__ x) >= FLT128_EPSILON * FLT128_EPSILON)
113*181254a7Smrg 		r2 = __real__ x * __real__ x;
114*181254a7Smrg 
115*181254a7Smrg 	      num = __imag__ x + 1;
116*181254a7Smrg 	      num = r2 + num * num;
117*181254a7Smrg 
118*181254a7Smrg 	      den = __imag__ x - 1;
119*181254a7Smrg 	      den = r2 + den * den;
120*181254a7Smrg 
121*181254a7Smrg 	      f = num / den;
122*181254a7Smrg 	      if (f < 0.5Q)
123*181254a7Smrg 		__imag__ res = 0.25Q * logq (f);
124*181254a7Smrg 	      else
125*181254a7Smrg 		{
126*181254a7Smrg 		  num = 4 * __imag__ x;
127*181254a7Smrg 		  __imag__ res = 0.25Q * log1pq (num / den);
128*181254a7Smrg 		}
129*181254a7Smrg 	    }
130*181254a7Smrg 	}
131*181254a7Smrg 
132*181254a7Smrg       math_check_force_underflow_complex (res);
133*181254a7Smrg     }
134*181254a7Smrg 
135*181254a7Smrg   return res;
136*181254a7Smrg }
137