72db1c11e9
atanh, atanhf, atanhl): Add prototypes. * mingwex/Makefile.in (MATH_OBJS): Add objects for above to list. (MATH_DISTFILES): Add sources for above and fastmath.h to list. Specify dependency on fastmath.h for new objects. * mingwex/math/fastmath.h: New file. * mingwex/math/ashinh.c: New file. * mingwex/math/asinhf.c: New file. * mingwex/math/asinhl.c: New file. * mingwex/math/acosh.c: New file. * mingwex/math/acoshf.c: New file. * mingwex/math/acoshl.c: New file. * mingwex/math/atanh.c: New file. * mingwex/math/atanhf.c: New file. * mingwex/math/atanhl.c: New file.
28 lines
763 B
C
Executable File
28 lines
763 B
C
Executable File
#include <math.h>
|
|
#include <errno.h>
|
|
#include "fastmath.h"
|
|
|
|
/* acosh(x) = log (x + sqrt(x * x - 1)) */
|
|
long double acoshl (long double x)
|
|
{
|
|
if (isnan (x))
|
|
return x;
|
|
|
|
if (x < 1.0L)
|
|
{
|
|
errno = EDOM;
|
|
return nanl("");
|
|
}
|
|
if (x > 0x1p32L)
|
|
/* Avoid overflow (and unnecessary calculation when
|
|
sqrt (x * x - 1) == x).
|
|
The M_LN2 define doesn't have enough precison for
|
|
long double so use this one. GCC optimizes by replacing
|
|
the const with a fldln2 insn. */
|
|
return __fast_logl (x) + 6.9314718055994530941723E-1L;
|
|
|
|
/* Since x >= 1, the arg to log will always be greater than
|
|
the fyl2xp1 limit (approx 0.29) so just use logl. */
|
|
return __fast_logl (x + __fast_sqrtl((x + 1.0L) * (x - 1.0L)));
|
|
}
|