| |
| /* |
| * Copyright (C) 2008-2009 Advanced Micro Devices, Inc. All Rights Reserved. |
| * |
| * This file is part of libacml_mv. |
| * |
| * libacml_mv is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2.1 of the License, or (at your option) any later version. |
| * |
| * libacml_mv is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Lesser General Public License for more details. |
| * |
| * You should have received a copy of the GNU Lesser General Public |
| * License along with libacml_mv. If not, see |
| * <http://www.gnu.org/licenses/>. |
| * |
| */ |
| |
| |
| #include "../inc/libm_amd.h" |
| #include "../inc/libm_util_amd.h" |
| |
| |
| double FN_PROTOTYPE(frexp)(double value, int *exp) |
| { |
| UT64 val; |
| unsigned int sign; |
| int exponent; |
| val.f64 = value; |
| sign = val.u32[1] & SIGNBIT_SP32; |
| val.u32[1] = val.u32[1] & ~SIGNBIT_SP32; /* remove the sign bit */ |
| *exp = 0; |
| if((val.f64 == 0.0) || ((val.u32[1] & 0x7ff00000)== 0x7ff00000)) |
| return value; /* value= +-0 or value= nan or value = +-inf return value */ |
| |
| exponent = val.u32[1] >> 20; /* get the exponent */ |
| |
| if(exponent == 0)/*x is denormal*/ |
| { |
| val.f64 = val.f64 * VAL_2PMULTIPLIER_DP;/*multiply by 2^53 to bring it to the normal range*/ |
| exponent = val.u32[1] >> 20; /* get the exponent */ |
| exponent = exponent - MULTIPLIER_DP; |
| } |
| |
| exponent -= 1022; /* remove bias(1023)-1 */ |
| *exp = exponent; /* set the integral power of two */ |
| val.u32[1] = sign | 0x3fe00000 | (val.u32[1] & 0x000fffff);/* make the fractional part(divide by 2) */ |
| return val.f64; |
| } |
| |