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
43static const long double one = 1.0, shuge = 1.0e4931L;
44
45long double
46__ieee754_sinhl(long double x)
47{
48 long double t,w,h;
49 uint32_t jx,ix,i0,i1;
50
51 /* Words of |x|. */
52 GET_LDOUBLE_WORDS(jx,i0,i1,x);
53 ix = jx&0x7fff;
54
55 /* x is INF or NaN */
56 if(__builtin_expect(ix==0x7fff, 0)) return x+x;
57
58 h = 0.5;
59 if (jx & 0x8000) h = -h;
60 /* |x| in [0,25], return sign(x)*0.5*(E+E/(E+1))) */
61 if (ix < 0x4003 || (ix == 0x4003 && i0 <= 0xc8000000)) { /* |x|<25 */
62 if (ix<0x3fdf) { /* |x|<2**-32 */
63 math_check_force_underflow (x);
64 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
65 }
66 t = __expm1l(fabsl(x));
67 if(ix<0x3fff) return h*(2.0*t-t*t/(t+one));
68 return h*(t+t/(t+one));
69 }
70
71 /* |x| in [25, log(maxdouble)] return 0.5*exp(|x|) */
72 if (ix < 0x400c || (ix == 0x400c && i0 < 0xb17217f7))
73 return h*__ieee754_expl(fabsl(x));
74
75 /* |x| in [log(maxdouble), overflowthreshold] */
76 if (ix<0x400c || (ix == 0x400c && (i0 < 0xb174ddc0
77 || (i0 == 0xb174ddc0
78 && i1 <= 0x31aec0ea)))) {
79 w = __ieee754_expl(0.5*fabsl(x));
80 t = h*w;
81 return t*w;
82 }
83
84 /* |x| > overflowthreshold, sinhl(x) overflow */
85 return x*shuge;
86}
87strong_alias (__ieee754_sinhl, __sinhl_finite)
88