xref: /netbsd-src/external/gpl3/gcc/dist/libquadmath/math/casinhq.c (revision 181254a7b1bdde6873432bffef2d2decc4b5c22f)
1*181254a7Smrg /* Return arc hyperbolic sine for a 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
casinhq(__complex128 x)23*181254a7Smrg casinhq (__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 (rcls <= QUADFP_INFINITE || icls <= QUADFP_INFINITE)
30*181254a7Smrg     {
31*181254a7Smrg       if (icls == QUADFP_INFINITE)
32*181254a7Smrg 	{
33*181254a7Smrg 	  __real__ res = copysignq (HUGE_VALQ, __real__ x);
34*181254a7Smrg 
35*181254a7Smrg 	  if (rcls == QUADFP_NAN)
36*181254a7Smrg 	    __imag__ res = nanq ("");
37*181254a7Smrg 	  else
38*181254a7Smrg 	    __imag__ res = copysignq ((rcls >= QUADFP_ZERO
39*181254a7Smrg 				        ? M_PI_2q : M_PI_4q),
40*181254a7Smrg 				       __imag__ x);
41*181254a7Smrg 	}
42*181254a7Smrg       else if (rcls <= QUADFP_INFINITE)
43*181254a7Smrg 	{
44*181254a7Smrg 	  __real__ res = __real__ x;
45*181254a7Smrg 	  if ((rcls == QUADFP_INFINITE && icls >= QUADFP_ZERO)
46*181254a7Smrg 	      || (rcls == QUADFP_NAN && icls == QUADFP_ZERO))
47*181254a7Smrg 	    __imag__ res = copysignq (0, __imag__ x);
48*181254a7Smrg 	  else
49*181254a7Smrg 	    __imag__ res = nanq ("");
50*181254a7Smrg 	}
51*181254a7Smrg       else
52*181254a7Smrg 	{
53*181254a7Smrg 	  __real__ res = nanq ("");
54*181254a7Smrg 	  __imag__ res = nanq ("");
55*181254a7Smrg 	}
56*181254a7Smrg     }
57*181254a7Smrg   else if (rcls == QUADFP_ZERO && icls == QUADFP_ZERO)
58*181254a7Smrg     {
59*181254a7Smrg       res = x;
60*181254a7Smrg     }
61*181254a7Smrg   else
62*181254a7Smrg     {
63*181254a7Smrg       res = __quadmath_kernel_casinhq (x, 0);
64*181254a7Smrg     }
65*181254a7Smrg 
66*181254a7Smrg   return res;
67*181254a7Smrg }
68