1 /* @(#)s_asinh.c 5.1 93/09/24 */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
16 * asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
18 * asinh(x) := x if 1+x*x=1,
19 * := sign(x)*(log(x)+ln2)) for large |x|, else
20 * := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else
21 * := sign(x)*log1p(|x| + x^2/(1 + sqrt(1+x^2)))
26 #include <math_private.h>
27 #include <math-underflow.h>
28 #include <libm-alias-double.h>
31 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
32 ln2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */
33 huge = 1.00000000000000000000e+300;
40 GET_HIGH_WORD (hx, x);
42 if (__glibc_unlikely (ix < 0x3e300000)) /* |x|<2**-28 */
44 math_check_force_underflow (x);
46 return x; /* return x inexact except 0 */
48 if (__glibc_unlikely (ix > 0x41b00000)) /* |x| > 2**28 */
51 return x + x; /* x is inf or NaN */
52 w = __ieee754_log (fabs (x)) + ln2;
57 if (ix > 0x40000000) /* 2**28 > |x| > 2.0 */
59 w = __ieee754_log (2.0 * xa + one / (sqrt (xa * xa + one) +
62 else /* 2.0 > |x| > 2**-28 */
65 w = __log1p (xa + t / (one + sqrt (one + t)));
68 return copysign (w, x);
70 libm_alias_double (__asinh, asinh)