1996-08-30 00:58:28 +00:00
|
|
|
/* e_acoshl.c -- long double version of e_acosh.c.
|
1999-07-14 00:54:57 +00:00
|
|
|
* Conversion to long double by Jakub Jelinek, jj@ultra.linux.cz.
|
1996-08-30 00:58:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* 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
|
|
|
|
* software is freely granted, provided that this notice
|
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* __ieee754_acoshl(x)
|
|
|
|
* Method :
|
|
|
|
* Based on
|
|
|
|
* acoshl(x) = logl [ x + sqrtl(x*x-1) ]
|
|
|
|
* we have
|
|
|
|
* acoshl(x) := logl(x)+ln2, if x is large; else
|
|
|
|
* acoshl(x) := logl(2x-1/(sqrtl(x*x-1)+x)) if x>2; else
|
|
|
|
* acoshl(x) := log1pl(t+sqrtl(2.0*t+t*t)); where t=x-1.
|
|
|
|
*
|
|
|
|
* Special cases:
|
|
|
|
* acoshl(x) is NaN with signal if x<1.
|
|
|
|
* acoshl(NaN) is NaN without signal.
|
|
|
|
*/
|
|
|
|
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <math_private.h>
|
1996-08-30 00:58:28 +00:00
|
|
|
|
2016-07-20 20:20:51 +00:00
|
|
|
static const _Float128
|
1996-08-30 00:58:28 +00:00
|
|
|
one = 1.0,
|
2016-09-02 16:01:07 +00:00
|
|
|
ln2 = L(0.6931471805599453094172321214581766);
|
1996-08-30 00:58:28 +00:00
|
|
|
|
2016-07-20 20:20:51 +00:00
|
|
|
_Float128
|
|
|
|
__ieee754_acoshl(_Float128 x)
|
1996-08-30 00:58:28 +00:00
|
|
|
{
|
2016-07-20 20:20:51 +00:00
|
|
|
_Float128 t;
|
2017-08-03 19:55:04 +00:00
|
|
|
uint64_t lx;
|
1999-07-14 00:54:57 +00:00
|
|
|
int64_t hx;
|
|
|
|
GET_LDOUBLE_WORDS64(hx,lx,x);
|
|
|
|
if(hx<0x3fff000000000000LL) { /* x < 1 */
|
1996-08-30 00:58:28 +00:00
|
|
|
return (x-x)/(x-x);
|
2001-07-07 22:59:32 +00:00
|
|
|
} else if(hx >=0x4035000000000000LL) { /* x > 2**54 */
|
1999-07-14 00:54:57 +00:00
|
|
|
if(hx >=0x7fff000000000000LL) { /* x is inf of NaN */
|
2011-10-12 15:27:51 +00:00
|
|
|
return x+x;
|
1996-08-30 00:58:28 +00:00
|
|
|
} else
|
|
|
|
return __ieee754_logl(x)+ln2; /* acoshl(huge)=logl(2x) */
|
1999-07-14 00:54:57 +00:00
|
|
|
} else if(((hx-0x3fff000000000000LL)|lx)==0) {
|
2016-09-02 16:01:07 +00:00
|
|
|
return 0; /* acosh(1) = 0 */
|
1999-07-14 00:54:57 +00:00
|
|
|
} else if (hx > 0x4000000000000000LL) { /* 2**28 > x > 2 */
|
1996-08-30 00:58:28 +00:00
|
|
|
t=x*x;
|
2018-03-15 18:05:03 +00:00
|
|
|
return __ieee754_logl(2*x-one/(x+sqrtl(t-one)));
|
1996-08-30 00:58:28 +00:00
|
|
|
} else { /* 1<x<2 */
|
|
|
|
t = x-one;
|
2018-03-15 18:05:03 +00:00
|
|
|
return __log1pl(t+sqrtl(2*t+t*t));
|
1996-08-30 00:58:28 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-12 15:27:51 +00:00
|
|
|
strong_alias (__ieee754_acoshl, __acoshl_finite)
|