]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/s_csqrt_template.c
x86-64: Add vector exp2/exp2f implementation to libmvec
[thirdparty/glibc.git] / math / s_csqrt_template.c
CommitLineData
feb62dda 1/* Complex square root of a float type.
2b778ceb 2 Copyright (C) 1997-2021 Free Software Foundation, Inc.
1dbc54f6 3 This file is part of the GNU C Library.
1dbc54f6
PM
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
1dbc54f6
PM
18
19#include <complex.h>
20#include <math.h>
21#include <math_private.h>
8f5b00d3 22#include <math-underflow.h>
1dbc54f6
PM
23#include <float.h>
24
feb62dda
PM
25CFLOAT
26M_DECL_FUNC (__csqrt) (CFLOAT x)
1dbc54f6 27{
feb62dda 28 CFLOAT res;
1dbc54f6
PM
29 int rcls = fpclassify (__real__ x);
30 int icls = fpclassify (__imag__ x);
31
32 if (__glibc_unlikely (rcls <= FP_INFINITE || icls <= FP_INFINITE))
33 {
34 if (icls == FP_INFINITE)
35 {
feb62dda 36 __real__ res = M_HUGE_VAL;
1dbc54f6
PM
37 __imag__ res = __imag__ x;
38 }
39 else if (rcls == FP_INFINITE)
40 {
feb62dda 41 if (__real__ x < 0)
1dbc54f6 42 {
feb62dda
PM
43 __real__ res = icls == FP_NAN ? M_NAN : 0;
44 __imag__ res = M_COPYSIGN (M_HUGE_VAL, __imag__ x);
1dbc54f6
PM
45 }
46 else
47 {
48 __real__ res = __real__ x;
49 __imag__ res = (icls == FP_NAN
feb62dda 50 ? M_NAN : M_COPYSIGN (0, __imag__ x));
1dbc54f6
PM
51 }
52 }
53 else
54 {
feb62dda
PM
55 __real__ res = M_NAN;
56 __imag__ res = M_NAN;
1dbc54f6
PM
57 }
58 }
59 else
60 {
61 if (__glibc_unlikely (icls == FP_ZERO))
62 {
feb62dda 63 if (__real__ x < 0)
1dbc54f6 64 {
feb62dda
PM
65 __real__ res = 0;
66 __imag__ res = M_COPYSIGN (M_SQRT (-__real__ x), __imag__ x);
1dbc54f6
PM
67 }
68 else
69 {
feb62dda
PM
70 __real__ res = M_FABS (M_SQRT (__real__ x));
71 __imag__ res = M_COPYSIGN (0, __imag__ x);
1dbc54f6
PM
72 }
73 }
74 else if (__glibc_unlikely (rcls == FP_ZERO))
75 {
feb62dda
PM
76 FLOAT r;
77 if (M_FABS (__imag__ x) >= 2 * M_MIN)
78 r = M_SQRT (M_LIT (0.5) * M_FABS (__imag__ x));
1dbc54f6 79 else
feb62dda 80 r = M_LIT (0.5) * M_SQRT (2 * M_FABS (__imag__ x));
1dbc54f6
PM
81
82 __real__ res = r;
feb62dda 83 __imag__ res = M_COPYSIGN (r, __imag__ x);
1dbc54f6
PM
84 }
85 else
86 {
feb62dda 87 FLOAT d, r, s;
1dbc54f6
PM
88 int scale = 0;
89
feb62dda 90 if (M_FABS (__real__ x) > M_MAX / 4)
1dbc54f6
PM
91 {
92 scale = 1;
feb62dda
PM
93 __real__ x = M_SCALBN (__real__ x, -2 * scale);
94 __imag__ x = M_SCALBN (__imag__ x, -2 * scale);
1dbc54f6 95 }
feb62dda 96 else if (M_FABS (__imag__ x) > M_MAX / 4)
1dbc54f6
PM
97 {
98 scale = 1;
feb62dda
PM
99 if (M_FABS (__real__ x) >= 4 * M_MIN)
100 __real__ x = M_SCALBN (__real__ x, -2 * scale);
1dbc54f6 101 else
feb62dda
PM
102 __real__ x = 0;
103 __imag__ x = M_SCALBN (__imag__ x, -2 * scale);
1dbc54f6 104 }
feb62dda
PM
105 else if (M_FABS (__real__ x) < 2 * M_MIN
106 && M_FABS (__imag__ x) < 2 * M_MIN)
1dbc54f6 107 {
feb62dda
PM
108 scale = -((M_MANT_DIG + 1) / 2);
109 __real__ x = M_SCALBN (__real__ x, -2 * scale);
110 __imag__ x = M_SCALBN (__imag__ x, -2 * scale);
1dbc54f6
PM
111 }
112
feb62dda 113 d = M_HYPOT (__real__ x, __imag__ x);
1dbc54f6
PM
114 /* Use the identity 2 Re res Im res = Im x
115 to avoid cancellation error in d +/- Re x. */
116 if (__real__ x > 0)
117 {
feb62dda
PM
118 r = M_SQRT (M_LIT (0.5) * (d + __real__ x));
119 if (scale == 1 && M_FABS (__imag__ x) < 1)
1dbc54f6
PM
120 {
121 /* Avoid possible intermediate underflow. */
122 s = __imag__ x / r;
feb62dda 123 r = M_SCALBN (r, scale);
1dbc54f6
PM
124 scale = 0;
125 }
126 else
feb62dda 127 s = M_LIT (0.5) * (__imag__ x / r);
1dbc54f6
PM
128 }
129 else
130 {
feb62dda
PM
131 s = M_SQRT (M_LIT (0.5) * (d - __real__ x));
132 if (scale == 1 && M_FABS (__imag__ x) < 1)
1dbc54f6
PM
133 {
134 /* Avoid possible intermediate underflow. */
feb62dda
PM
135 r = M_FABS (__imag__ x / s);
136 s = M_SCALBN (s, scale);
1dbc54f6
PM
137 scale = 0;
138 }
139 else
feb62dda 140 r = M_FABS (M_LIT (0.5) * (__imag__ x / s));
1dbc54f6
PM
141 }
142
143 if (scale)
144 {
feb62dda
PM
145 r = M_SCALBN (r, scale);
146 s = M_SCALBN (s, scale);
1dbc54f6
PM
147 }
148
149 math_check_force_underflow (r);
150 math_check_force_underflow (s);
151
152 __real__ res = r;
feb62dda 153 __imag__ res = M_COPYSIGN (s, __imag__ x);
1dbc54f6
PM
154 }
155 }
156
157 return res;
158}
feb62dda 159declare_mgen_alias (__csqrt, csqrt)