ReactOS 0.4.15-dev-7834-g00c4b3d
sqrt.c
Go to the documentation of this file.
1
2/*******************************************************************************
3MIT License
4-----------
5
6Copyright (c) 2002-2019 Advanced Micro Devices, Inc.
7
8Permission is hereby granted, free of charge, to any person obtaining a copy
9of this Software and associated documentaon files (the "Software"), to deal
10in the Software without restriction, including without limitation the rights
11to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12copies of the Software, and to permit persons to whom the Software is
13furnished to do so, subject to the following conditions:
14
15The above copyright notice and this permission notice shall be included in
16all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24THE SOFTWARE.
25*******************************************************************************/
26
27#include "libm.h"
28#include "libm_util.h"
29
30#if USE_SOFTWARE_SQRT
31#define USE_SQRT_AMD_INLINE
32#endif
33#define USE_NAN_WITH_FLAGS
34#define USE_HANDLE_ERROR
35#include "libm_inlines.h"
36#if USE_SOFTWARE_SQRT
37#undef USE_SQRT_AMD_INLINE
38#endif
39#undef USE_NAN_WITH_FLAGS
40#undef USE_HANDLE_ERROR
41
42#include "libm_errno.h"
43
44#pragma function(sqrt)
45
46double sqrt(double x)
47{
48#if USE_SOFTWARE_SQRT
49 return sqrt_amd_inline(x);
50#else
51 double r;
52 unsigned long long ux;
53 GET_BITS_DP64(x, ux);
54
55 /* Check for special cases for Microsoft error handling */
57 {
58 /* x is infinity, or NaN */
59 if (ux & MANTBITS_DP64)
60 {
61 /* NaN of some sort */
62 /* If it's a signaling NaN, convert to QNaN */
63 return _handle_error("sqrt", OP_SQRT, ux|0x0008000000000000,
64 _DOMAIN, 0,EDOM, x, 0.0, 1);
65 }
66 else
67 {
68 /* +/-infinity */
69 if (ux & SIGNBIT_DP64)
70 {
71 /* - infinity */
72 return _handle_error("sqrt", OP_SQRT, INDEFBITPATT_DP64,
73 _DOMAIN, AMD_F_INVALID, EDOM, x, 0.0, 1);
74 }
75 /* positive infinite is not a problem */
76 }
77 }
78 if ((ux & SIGNBIT_DP64)&&(ux & ~SIGNBIT_DP64)) /* if x < zero */
79 {
80 return _handle_error("sqrt", OP_SQRT, INDEFBITPATT_DP64,
81 _DOMAIN, AMD_F_INVALID, EDOM, x, 0.0, 1);
82 }
83
84 /* VC++ intrinsic call */
86 return r;
87#endif
88}
double __cdecl _handle_error(char *fname, int opcode, unsigned long long value, int type, int flags, int error, double arg1, double arg2, int nargs)
Handles an error condition.
Definition: _handle_error.c:34
double sqrt(double x)
Definition: sqrt.c:5
#define EDOM
Definition: errno.h:39
__m128d _mm_setzero_pd(void)
Definition: emmintrin.h:1048
__m128d _mm_sqrt_sd(__m128d a, __m128d b)
Definition: emmintrin.h:611
__m128d _mm_load_sd(double const *dp)
Definition: emmintrin.h:991
void _mm_store_sd(double *dp, __m128d a)
Definition: emmintrin.h:1059
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLdouble GLdouble GLdouble r
Definition: gl.h:2055
#define _DOMAIN
Definition: math.h:39
#define AMD_F_INVALID
Definition: libm_new.h:86
#define INDEFBITPATT_DP64
Definition: libm_util.h:52
#define GET_BITS_DP64(x, ux)
Definition: libm_util.h:118
#define PINFBITPATT_DP64
Definition: libm_util.h:53
#define SIGNBIT_DP64
Definition: libm_util.h:44
#define MANTBITS_DP64
Definition: libm_util.h:46