mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
The left shift overflows for 'int', use uint64_t instead. It syncs with CORE-MATH commit 4d6192d2. Checked on aarch64-linux-gnu, x86_64-linux-gnu, and i686-linux-gnu. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
96 lines
3.2 KiB
C
96 lines
3.2 KiB
C
/* Correctly-rounded hyperbolic cosine function for binary32 value.
|
|
|
|
Copyright (c) 2022-2024 Alexei Sibidanov.
|
|
|
|
The original version of this file was copied from the CORE-MATH
|
|
project (file src/binary32/cosh/coshf.c, revision de59ecfb).
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <math.h>
|
|
#include <libm-alias-finite.h>
|
|
#include "math_config.h"
|
|
#include "e_sincoshf_data.h"
|
|
|
|
float
|
|
__ieee754_coshf (float x)
|
|
{
|
|
const double iln2 = 0x1.71547652b82fep+5;
|
|
double z = x;
|
|
uint32_t ax = asuint (x) << 1;
|
|
if (__glibc_unlikely (ax > 0x8565a9f8u))
|
|
{ /* |x| >~ 89.4 */
|
|
if (ax >= 0xff000000u)
|
|
{
|
|
if (ax << 8)
|
|
return x + x; /* nan */
|
|
return INFINITY; /* +-inf */
|
|
}
|
|
return __math_oflowf (0);
|
|
}
|
|
if (__glibc_unlikely (ax < 0x7c000000u))
|
|
{ /* |x| < 0.125 */
|
|
if (__glibc_unlikely (ax < 0x74000000u))
|
|
{ /* |x| < 0x1p-11 */
|
|
if (__glibc_unlikely (ax < 0x66000000u)) /* |x| < 0x1p-24 */
|
|
return fmaf (fabsf (x), 0x1p-25, 1.0f);
|
|
return (0.5f * x) * x + 1.0f;
|
|
}
|
|
static const double cp[] =
|
|
{
|
|
0x1.fffffffffffe3p-2, 0x1.55555555723cfp-5,
|
|
0x1.6c16bee4a5986p-10, 0x1.a0483fc0328f7p-16
|
|
};
|
|
double z2 = z * z;
|
|
double z4 = z2 * z2;
|
|
return 1.0 + z2 * ((cp[0] + z2 * cp[1]) + z4 * (cp[2] + z2 * (cp[3])));
|
|
}
|
|
double a = iln2 * z;
|
|
double ia = roundeven_finite (a);
|
|
double h = a - ia;
|
|
double h2 = h * h;
|
|
int64_t jp = asuint64 (ia + 0x1.8p52);
|
|
int64_t jm = -jp;
|
|
double sp = asdouble (TB[jp & 31] + ((uint64_t)(jp >> 5) << 52));
|
|
double sm = asdouble (TB[jm & 31] + ((uint64_t)(jm >> 5) << 52));
|
|
double te = C[0] + h2 * C[2];
|
|
double to = (C[1] + h2 * C[3]);
|
|
double rp = sp * (te + h * to);
|
|
double rm = sm * (te - h * to);
|
|
double r = rp + rm;
|
|
float ub = r;
|
|
double lb = r - 1.45e-10 * r;
|
|
if (__glibc_unlikely (ub != lb))
|
|
{
|
|
const double iln2h = 0x1.7154765p+5;
|
|
const double iln2l = 0x1.5c17f0bbbe88p-26;
|
|
h = (iln2h * z - ia) + iln2l * z;
|
|
h2 = h * h;
|
|
te = CH[0] + h2 * CH[2] + (h2 * h2) * (CH[4] + h2 * CH[6]);
|
|
to = CH[1] + h2 * (CH[3] + h2
|
|
* CH[5]);
|
|
r = sp * (te + h * to) + sm * (te - h * to);
|
|
ub = r;
|
|
}
|
|
return ub;
|
|
}
|
|
libm_alias_finite (__ieee754_coshf, __coshf)
|