#pragma weak __casinl = casinl
#include "libm.h"
#include "complex_wrapper.h"
#include "longdouble.h"
static const long double
zero = 0.0L,
one = 1.0L,
Acrossover = 1.5L,
Bcrossover = 0.6417L,
half = 0.5L,
ln2 = 6.931471805599453094172321214581765680755e-0001L,
Foursqrtu = 7.3344154702193886624856495681939326638255e-2466L,
#if defined(__x86)
E = 5.4210108624275221700372640043497085571289e-20L,
pi_4 = 0.7853981633974483095739921312272713294078130L,
pi_4_l = 4.1668714592604391641479322342670193036704898e-20L,
pi_2 = 1.5707963267948966191479842624545426588156260L,
pi_2_l = 8.3337429185208783282958644685340386073409796e-20L;
#else
E = 9.6296497219361792652798897129246365926905e-35L,
pi_4 = 0.7853981633974483096156608458198756993697670L,
pi_4_l = 2.1679525325309452561992610065108379921905808e-35L,
pi_2 = 1.5707963267948966192313216916397513987395340L,
pi_2_l = 4.3359050650618905123985220130216759843811616e-35L;
#endif
#if defined(__x86)
static const int ip1 = 0x40400000;
#else
static const int ip1 = 0x40710000;
#endif
ldcomplex
casinl(ldcomplex z) {
long double x, y, t, R, S, A, Am1, B, y2, xm1, xp1, Apx;
int ix, iy, hx, hy;
ldcomplex ans;
x = LD_RE(z);
y = LD_IM(z);
hx = HI_XWORD(x);
hy = HI_XWORD(y);
ix = hx & 0x7fffffff;
iy = hy & 0x7fffffff;
x = fabsl(x);
y = fabsl(y);
if (ix >= 0x7fff0000) {
if (isinfl(x)) {
LD_IM(ans) = x;
if (iy >= 0x7fff0000) {
if (isinfl(y))
LD_RE(ans) = pi_4 + pi_4_l;
else
LD_RE(ans) = y + y;
} else
LD_RE(ans) = pi_2 + pi_2_l;
} else {
if (iy >= 0x7fff0000) {
LD_IM(ans) = y + y;
LD_RE(ans) = x + x;
} else {
LD_IM(ans) = LD_RE(ans) = x + y;
}
}
if (hx < 0)
LD_RE(ans) = -LD_RE(ans);
if (hy < 0)
LD_IM(ans) = -LD_IM(ans);
return (ans);
}
if (x == zero && y == zero)
return (z);
if (iy >= 0x7fff0000) {
if (isinfl(y)) {
LD_IM(ans) = y;
LD_RE(ans) = zero;
} else {
LD_IM(ans) = x + y;
if (x == zero)
LD_RE(ans) = x;
else
LD_RE(ans) = y;
}
if (hx < 0)
LD_RE(ans) = -LD_RE(ans);
if (hy < 0)
LD_IM(ans) = -LD_IM(ans);
return (ans);
}
if (y == zero) {
if (ix < 0x3fff0000) {
LD_RE(ans) = asinl(x);
LD_IM(ans) = zero;
} else {
LD_RE(ans) = pi_2 + pi_2_l;
if (ix >= ip1)
LD_IM(ans) = ln2 + logl(x);
else if (ix >= 0x3fff8000)
LD_IM(ans) = logl(x + sqrtl((x - one) * (x +
one)));
else {
xm1 = x - one;
LD_IM(ans) = log1pl(xm1 + sqrtl(xm1 * (x +
one)));
}
}
} else if (y <= E * fabsl(x - one)) {
if (ix < 0x3fff0000) {
LD_RE(ans) = asinl(x);
LD_IM(ans) = y / sqrtl((one + x) * (one - x));
} else {
LD_RE(ans) = pi_2 + pi_2_l;
if (ix >= ip1)
LD_IM(ans) = ln2 + logl(x);
else if (ix >= 0x3fff8000)
LD_IM(ans) = logl(x + sqrtl((x - one) * (x +
one)));
else
LD_IM(ans) = log1pl((x - one) + sqrtl((x -
one) * (x + one)));
}
} else if (y < Foursqrtu) {
t = sqrtl(y);
LD_RE(ans) = pi_2 - (t - pi_2_l);
LD_IM(ans) = t;
} else if (E * y - one >= x) {
LD_RE(ans) = x / y;
LD_IM(ans) = ln2 + logl(y);
} else if (ix >= 0x5ffb0000 || iy >= 0x5ffb0000) {
t = x / y;
LD_RE(ans) = atanl(t);
LD_IM(ans) = ln2 + logl(y) + half * log1pl(t * t);
} else if (x < Foursqrtu) {
A = sqrtl(one + y * y);
LD_RE(ans) = x / A;
if (iy >= 0x3fff8000)
LD_IM(ans) = logl(y + A);
else
LD_IM(ans) = half * log1pl((y + y) * (y + A));
} else {
y2 = y * y;
xp1 = x + one;
xm1 = x - one;
R = sqrtl(xp1 * xp1 + y2);
S = sqrtl(xm1 * xm1 + y2);
A = half * (R + S);
B = x / A;
if (B <= Bcrossover)
LD_RE(ans) = asinl(B);
else {
Apx = A + x;
if (x <= one)
LD_RE(ans) = atanl(x / sqrtl(half * Apx * (y2 /
(R + xp1) + (S - xm1))));
else
LD_RE(ans) = atanl(x / (y * sqrtl(half * (Apx /
(R + xp1) + Apx / (S + xm1)))));
}
if (A <= Acrossover) {
if (x < one)
Am1 = half * (y2 / (R + xp1) + y2 / (S - xm1));
else
Am1 = half * (y2 / (R + xp1) + (S + xm1));
LD_IM(ans) = log1pl(Am1 + sqrtl(Am1 * (A + one)));
} else {
LD_IM(ans) = logl(A + sqrtl(A * A - one));
}
}
if (hx < 0)
LD_RE(ans) = -LD_RE(ans);
if (hy < 0)
LD_IM(ans) = -LD_IM(ans);
return (ans);
}