diff options
author | das <das@FreeBSD.org> | 2011-10-21 06:29:32 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2011-10-21 06:29:32 +0000 |
commit | 3578083bd5e5c8cc7b2d82f501d5901051537ae4 (patch) | |
tree | e4935310dc992380b0af45c9fd0a57d6e8febb84 /lib/msun/src/s_csinhf.c | |
parent | f66ae96060daab6b90cb9d24fa049e4c17f3b80f (diff) | |
download | FreeBSD-src-3578083bd5e5c8cc7b2d82f501d5901051537ae4.zip FreeBSD-src-3578083bd5e5c8cc7b2d82f501d5901051537ae4.tar.gz |
Improved handling of large x in ccosh{,f}():
- Handle cases where exp(x) would overflow, but ccosh(x) ~= exp(x) / 2
shouldn't.
- Use the ccosh(x) ~= exp(x) / 2 approximation to simplify the calculation
when x is large.
Similarly for csinh(). Also fixed the return value of csinh(-Inf +- 0i).
Diffstat (limited to 'lib/msun/src/s_csinhf.c')
-rw-r--r-- | lib/msun/src/s_csinhf.c | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/lib/msun/src/s_csinhf.c b/lib/msun/src/s_csinhf.c index e1478ac..c523125 100644 --- a/lib/msun/src/s_csinhf.c +++ b/lib/msun/src/s_csinhf.c @@ -36,10 +36,12 @@ __FBSDID("$FreeBSD$"); #include "math_private.h" +static const float huge = 0x1p127; + float complex csinhf(float complex z) { - float x, y; + float x, y, h; int32_t hx, hy, ix, iy; x = crealf(z); @@ -54,8 +56,23 @@ csinhf(float complex z) if (ix < 0x7f800000 && iy < 0x7f800000) { if (iy == 0) return (cpackf(sinhf(x), y)); - /* XXX We don't handle |x| > FLT_MAX ln(2) yet. */ - return (cpackf(sinhf(x) * cosf(y), coshf(x) * sinf(y))); + if (ix < 0x41100000) /* small x: normal case */ + return (cpackf(sinhf(x) * cosf(y), coshf(x) * sinf(y))); + + /* |x| >= 9, so cosh(x) ~= exp(|x|) */ + if (ix < 0x42b17218) { + /* x < 88.7: expf(|x|) won't overflow */ + h = expf(fabsf(x)) * 0.5f; + return (cpackf(copysignf(h, x) * cosf(y), h * sinf(y))); + } else if (ix < 0x4340b1e7) { + /* x < 192.7: scale to avoid overflow */ + z = __ldexp_cexpf(cpackf(fabsf(x), y), -1); + return (cpackf(crealf(z) * copysignf(1, x), cimagf(z))); + } else { + /* x >= 192.7: the result always overflows */ + h = huge * x; + return (cpackf(h * cosf(y), h * h * sinf(y))); + } } if (ix == 0 && iy >= 0x7f800000) @@ -63,7 +80,7 @@ csinhf(float complex z) if (iy == 0 && ix >= 0x7f800000) { if ((hx & 0x7fffff) == 0) - return (cpackf(x, copysignf(0, x) * y)); + return (cpackf(x, y)); return (cpackf(x, copysignf(0, y))); } |