1 /* Complex square root of a float type.
2 Copyright (C) 1997-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Based on an algorithm by Stephen L. Moshier <moshier@world.std.com>.
5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, see
19 <http://www.gnu.org/licenses/>. */
23 #include <math_private.h>
27 M_DECL_FUNC (__csqrt
) (CFLOAT x
)
30 int rcls
= fpclassify (__real__ x
);
31 int icls
= fpclassify (__imag__ x
);
33 if (__glibc_unlikely (rcls
<= FP_INFINITE
|| icls
<= FP_INFINITE
))
35 if (icls
== FP_INFINITE
)
37 __real__ res
= M_HUGE_VAL
;
38 __imag__ res
= __imag__ x
;
40 else if (rcls
== FP_INFINITE
)
44 __real__ res
= icls
== FP_NAN
? M_NAN
: 0;
45 __imag__ res
= M_COPYSIGN (M_HUGE_VAL
, __imag__ x
);
49 __real__ res
= __real__ x
;
50 __imag__ res
= (icls
== FP_NAN
51 ? M_NAN
: M_COPYSIGN (0, __imag__ x
));
62 if (__glibc_unlikely (icls
== FP_ZERO
))
67 __imag__ res
= M_COPYSIGN (M_SQRT (-__real__ x
), __imag__ x
);
71 __real__ res
= M_FABS (M_SQRT (__real__ x
));
72 __imag__ res
= M_COPYSIGN (0, __imag__ x
);
75 else if (__glibc_unlikely (rcls
== FP_ZERO
))
78 if (M_FABS (__imag__ x
) >= 2 * M_MIN
)
79 r
= M_SQRT (M_LIT (0.5) * M_FABS (__imag__ x
));
81 r
= M_LIT (0.5) * M_SQRT (2 * M_FABS (__imag__ x
));
84 __imag__ res
= M_COPYSIGN (r
, __imag__ x
);
91 if (M_FABS (__real__ x
) > M_MAX
/ 4)
94 __real__ x
= M_SCALBN (__real__ x
, -2 * scale
);
95 __imag__ x
= M_SCALBN (__imag__ x
, -2 * scale
);
97 else if (M_FABS (__imag__ x
) > M_MAX
/ 4)
100 if (M_FABS (__real__ x
) >= 4 * M_MIN
)
101 __real__ x
= M_SCALBN (__real__ x
, -2 * scale
);
104 __imag__ x
= M_SCALBN (__imag__ x
, -2 * scale
);
106 else if (M_FABS (__real__ x
) < 2 * M_MIN
107 && M_FABS (__imag__ x
) < 2 * M_MIN
)
109 scale
= -((M_MANT_DIG
+ 1) / 2);
110 __real__ x
= M_SCALBN (__real__ x
, -2 * scale
);
111 __imag__ x
= M_SCALBN (__imag__ x
, -2 * scale
);
114 d
= M_HYPOT (__real__ x
, __imag__ x
);
115 /* Use the identity 2 Re res Im res = Im x
116 to avoid cancellation error in d +/- Re x. */
119 r
= M_SQRT (M_LIT (0.5) * (d
+ __real__ x
));
120 if (scale
== 1 && M_FABS (__imag__ x
) < 1)
122 /* Avoid possible intermediate underflow. */
124 r
= M_SCALBN (r
, scale
);
128 s
= M_LIT (0.5) * (__imag__ x
/ r
);
132 s
= M_SQRT (M_LIT (0.5) * (d
- __real__ x
));
133 if (scale
== 1 && M_FABS (__imag__ x
) < 1)
135 /* Avoid possible intermediate underflow. */
136 r
= M_FABS (__imag__ x
/ s
);
137 s
= M_SCALBN (s
, scale
);
141 r
= M_FABS (M_LIT (0.5) * (__imag__ x
/ s
));
146 r
= M_SCALBN (r
, scale
);
147 s
= M_SCALBN (s
, scale
);
150 math_check_force_underflow (r
);
151 math_check_force_underflow (s
);
154 __imag__ res
= M_COPYSIGN (s
, __imag__ x
);
160 declare_mgen_alias (__csqrt
, csqrt
)