1 2 /******************************************************************************* 3 MIT License 4 ----------- 5 6 Copyright (c) 2002-2019 Advanced Micro Devices, Inc. 7 8 Permission is hereby granted, free of charge, to any person obtaining a copy 9 of this Software and associated documentaon files (the "Software"), to deal 10 in the Software without restriction, including without limitation the rights 11 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 copies of the Software, and to permit persons to whom the Software is 13 furnished to do so, subject to the following conditions: 14 15 The above copyright notice and this permission notice shall be included in 16 all copies or substantial portions of the Software. 17 18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 THE 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 46 double 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 */ 56 if ((ux & PINFBITPATT_DP64) == PINFBITPATT_DP64) 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 */ 85 _mm_store_sd(&r, _mm_sqrt_sd(_mm_setzero_pd(), _mm_load_sd(&x))); 86 return r; 87 #endif 88 } 89