1996-03-05 21:41:30 +00:00
|
|
|
/* @(#)e_sinh.c 5.1 93/09/24 */
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
2011-10-12 15:27:51 +00:00
|
|
|
* software is freely granted, provided that this notice
|
1996-03-05 21:41:30 +00:00
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBM_SCCS) && !defined(lint)
|
|
|
|
static char rcsid[] = "$NetBSD: e_sinh.c,v 1.7 1995/05/10 20:46:13 jtc Exp $";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* __ieee754_sinh(x)
|
2011-10-12 15:27:51 +00:00
|
|
|
* Method :
|
1996-03-05 21:41:30 +00:00
|
|
|
* mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
|
2011-10-12 15:27:51 +00:00
|
|
|
* 1. Replace x by |x| (sinh(-x) = -sinh(x)).
|
|
|
|
* 2.
|
|
|
|
* E + E/(E+1)
|
1996-03-05 21:41:30 +00:00
|
|
|
* 0 <= x <= 22 : sinh(x) := --------------, E=expm1(x)
|
2011-10-12 15:27:51 +00:00
|
|
|
* 2
|
1996-03-05 21:41:30 +00:00
|
|
|
*
|
2011-10-12 15:27:51 +00:00
|
|
|
* 22 <= x <= lnovft : sinh(x) := exp(x)/2
|
1996-03-05 21:41:30 +00:00
|
|
|
* lnovft <= x <= ln2ovft: sinh(x) := exp(x/2)/2 * exp(x/2)
|
|
|
|
* ln2ovft < x : sinh(x) := x*shuge (overflow)
|
|
|
|
*
|
|
|
|
* Special cases:
|
|
|
|
* sinh(x) is |x| if x is +INF, -INF, or NaN.
|
|
|
|
* only sinh(0)=0 is exact for finite x.
|
|
|
|
*/
|
|
|
|
|
2015-08-06 23:01:09 +00:00
|
|
|
#include <float.h>
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math.h>
|
2018-05-09 00:15:10 +00:00
|
|
|
#include <math-narrow-eval.h>
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math_private.h>
|
2018-05-10 00:53:04 +00:00
|
|
|
#include <math-underflow.h>
|
2019-07-16 15:17:22 +00:00
|
|
|
#include <libm-alias-finite.h>
|
1996-03-05 21:41:30 +00:00
|
|
|
|
|
|
|
static const double one = 1.0, shuge = 1.0e307;
|
|
|
|
|
2011-10-12 15:27:51 +00:00
|
|
|
double
|
2013-10-17 14:03:24 +00:00
|
|
|
__ieee754_sinh (double x)
|
2011-10-12 15:27:51 +00:00
|
|
|
{
|
2013-10-17 14:03:24 +00:00
|
|
|
double t, w, h;
|
|
|
|
int32_t ix, jx;
|
2017-08-03 19:55:04 +00:00
|
|
|
uint32_t lx;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* High word of |x|. */
|
|
|
|
GET_HIGH_WORD (jx, x);
|
|
|
|
ix = jx & 0x7fffffff;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* x is INF or NaN */
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_unlikely (ix >= 0x7ff00000))
|
2013-10-17 14:03:24 +00:00
|
|
|
return x + x;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
h = 0.5;
|
|
|
|
if (jx < 0)
|
|
|
|
h = -h;
|
|
|
|
/* |x| in [0,22], return sign(x)*0.5*(E+E/(E+1))) */
|
|
|
|
if (ix < 0x40360000) /* |x|<22 */
|
|
|
|
{
|
2015-08-06 23:01:09 +00:00
|
|
|
if (__glibc_unlikely (ix < 0x3e300000)) { /* |x|<2**-28 */
|
2015-09-23 22:42:30 +00:00
|
|
|
math_check_force_underflow (x);
|
2013-10-17 14:03:24 +00:00
|
|
|
if (shuge + x > one)
|
|
|
|
return x;
|
2015-08-06 23:01:09 +00:00
|
|
|
/* sinh(tiny) = tiny with inexact */
|
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
t = __expm1 (fabs (x));
|
|
|
|
if (ix < 0x3ff00000)
|
|
|
|
return h * (2.0 * t - t * t / (t + one));
|
|
|
|
return h * (t + t / (t + one));
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* |x| in [22, log(maxdouble)] return 0.5*exp(|x|) */
|
|
|
|
if (ix < 0x40862e42)
|
|
|
|
return h * __ieee754_exp (fabs (x));
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* |x| in [log(maxdouble), overflowthresold] */
|
|
|
|
GET_LOW_WORD (lx, x);
|
2017-08-03 19:55:04 +00:00
|
|
|
if (ix < 0x408633ce || ((ix == 0x408633ce) && (lx <= (uint32_t) 0x8fb9f87d)))
|
2013-10-17 14:03:24 +00:00
|
|
|
{
|
|
|
|
w = __ieee754_exp (0.5 * fabs (x));
|
|
|
|
t = h * w;
|
|
|
|
return t * w;
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* |x| > overflowthresold, sinh(x) overflow */
|
2015-09-18 20:00:48 +00:00
|
|
|
return math_narrow_eval (x * shuge);
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2019-07-16 15:17:22 +00:00
|
|
|
libm_alias_finite (__ieee754_sinh, __sinh)
|