1/* e_asinhl.c -- long double version of e_asinh.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
4 */
5
6/*
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 *
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
13 * is preserved.
14 * ====================================================
15 */
16
17#if defined(LIBM_SCCS) && !defined(lint)
18static char rcsid[] = "$NetBSD: $";
19#endif
20
21/* __ieee754_sinhl(x)
22 * Method :
23 * mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
24 * 1. Replace x by |x| (sinhl(-x) = -sinhl(x)).
25 * 2.
26 * E + E/(E+1)
27 * 0 <= x <= 25 : sinhl(x) := --------------, E=expm1l(x)
28 * 2
29 *
30 * 25 <= x <= lnovft : sinhl(x) := expl(x)/2
31 * lnovft <= x <= ln2ovft: sinhl(x) := expl(x/2)/2 * expl(x/2)
32 * ln2ovft < x : sinhl(x) := x*shuge (overflow)
33 *
34 * Special cases:
35 * sinhl(x) is |x| if x is +INF, -INF, or NaN.
36 * only sinhl(0)=0 is exact for finite x.
37 */
38
39#include <float.h>
40#include <math.h>
41#include <math_private.h>
42#include <math-underflow.h>
43
44static const long double one = 1.0, shuge = 1.0e4931L;
45
46long double
47__ieee754_sinhl(long double x)
48{
49 long double t,w,h;
50 uint32_t jx,ix,i0,i1;
51
52 /* Words of |x|. */
53 GET_LDOUBLE_WORDS(jx,i0,i1,x);
54 ix = jx&0x7fff;
55
56 /* x is INF or NaN */
57 if(__builtin_expect(ix==0x7fff, 0)) return x+x;
58
59 h = 0.5;
60 if (jx & 0x8000) h = -h;
61 /* |x| in [0,25], return sign(x)*0.5*(E+E/(E+1))) */
62 if (ix < 0x4003 || (ix == 0x4003 && i0 <= 0xc8000000)) { /* |x|<25 */
63 if (ix<0x3fdf) { /* |x|<2**-32 */
64 math_check_force_underflow (x);
65 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
66 }
67 t = __expm1l(fabsl(x));
68 if(ix<0x3fff) return h*(2.0*t-t*t/(t+one));
69 return h*(t+t/(t+one));
70 }
71
72 /* |x| in [25, log(maxdouble)] return 0.5*exp(|x|) */
73 if (ix < 0x400c || (ix == 0x400c && i0 < 0xb17217f7))
74 return h*__ieee754_expl(fabsl(x));
75
76 /* |x| in [log(maxdouble), overflowthreshold] */
77 if (ix<0x400c || (ix == 0x400c && (i0 < 0xb174ddc0
78 || (i0 == 0xb174ddc0
79 && i1 <= 0x31aec0ea)))) {
80 w = __ieee754_expl(0.5*fabsl(x));
81 t = h*w;
82 return t*w;
83 }
84
85 /* |x| > overflowthreshold, sinhl(x) overflow */
86 return x*shuge;
87}
88strong_alias (__ieee754_sinhl, __sinhl_finite)
89