2012-03-13 01:17:53 -04:00
|
|
|
/* origin: FreeBSD /usr/src/lib/msun/src/e_acosl.c */
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunSoft, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
|
|
|
* software is freely granted, provided that this notice
|
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* See comments in acos.c.
|
|
|
|
* Converted to long double by David Schultz <das@FreeBSD.ORG>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libm.h"
|
|
|
|
|
|
|
|
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
|
|
|
|
long double acosl(long double x)
|
|
|
|
{
|
|
|
|
return acos(x);
|
|
|
|
}
|
|
|
|
#elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
|
|
|
|
#include "__invtrigl.h"
|
|
|
|
|
|
|
|
long double acosl(long double x)
|
|
|
|
{
|
|
|
|
union IEEEl2bits u;
|
2012-12-11 23:56:59 +01:00
|
|
|
long double z, w, s, c, df;
|
2012-03-13 01:17:53 -04:00
|
|
|
int16_t expsign, expt;
|
|
|
|
u.e = x;
|
|
|
|
expsign = u.xbits.expsign;
|
|
|
|
expt = expsign & 0x7fff;
|
2012-12-11 23:56:59 +01:00
|
|
|
/* |x| >= 1 or nan */
|
|
|
|
if (expt >= 0x3fff) {
|
|
|
|
if (expt == 0x3fff &&
|
2012-03-13 01:17:53 -04:00
|
|
|
((u.bits.manh & ~LDBL_NBIT) | u.bits.manl) == 0) {
|
|
|
|
if (expsign > 0)
|
2012-12-11 23:56:59 +01:00
|
|
|
return 0; /* acos(1) = 0 */
|
|
|
|
return 2*pio2_hi + 0x1p-1000; /* acos(-1)= pi */
|
2012-03-13 01:17:53 -04:00
|
|
|
}
|
2012-12-11 23:56:59 +01:00
|
|
|
return 0/(x-x); /* acos(|x|>1) is NaN */
|
2012-03-13 01:17:53 -04:00
|
|
|
}
|
2012-12-11 23:56:59 +01:00
|
|
|
/* |x| < 0.5 */
|
|
|
|
if (expt < 0x3fff - 1) {
|
|
|
|
if (expt < 0x3fff - 65)
|
|
|
|
return pio2_hi + 0x1p-1000; /* x < 0x1p-65: acosl(x)=pi/2 */
|
|
|
|
return pio2_hi - (x - (pio2_lo - x * __invtrigl_R(x*x)));
|
|
|
|
}
|
|
|
|
/* x < -0.5 */
|
|
|
|
if (expsign < 0) {
|
2012-03-19 23:41:19 +01:00
|
|
|
z = (1.0 + x) * 0.5;
|
2012-03-13 01:17:53 -04:00
|
|
|
s = sqrtl(z);
|
2012-12-11 23:56:59 +01:00
|
|
|
w = __invtrigl_R(z) * s - pio2_lo;
|
|
|
|
return 2*(pio2_hi - (s + w));
|
2012-03-13 01:17:53 -04:00
|
|
|
}
|
2012-12-11 23:56:59 +01:00
|
|
|
/* x > 0.5 */
|
|
|
|
z = (1.0 - x) * 0.5;
|
|
|
|
s = sqrtl(z);
|
|
|
|
u.e = s;
|
|
|
|
u.bits.manl = 0;
|
|
|
|
df = u.e;
|
|
|
|
c = (z - df * df) / (s + df);
|
|
|
|
w = __invtrigl_R(z) * s + c;
|
|
|
|
return 2*(df + w);
|
2012-03-13 01:17:53 -04:00
|
|
|
}
|
|
|
|
#endif
|