use crate::asin::asin_eval;
use crate::asin_eval_dyadic::asin_eval_dyadic;
use crate::common::f_fmla;
use crate::double_double::DoubleDouble;
use crate::dyadic_float::{DyadicFloat128, DyadicSign};
use crate::rounding::CpuRound;
pub(crate) const INV_PI_DD: DoubleDouble = DoubleDouble::new(
f64::from_bits(0xbc76b01ec5417056),
f64::from_bits(0x3fd45f306dc9c883),
);
pub(crate) const INV_PI_F128: DyadicFloat128 = DyadicFloat128 {
sign: DyadicSign::Pos,
exponent: -129,
mantissa: 0xa2f9836e_4e441529_fc2757d1_f534ddc1_u128,
};
pub(crate) const PI_OVER_TWO_F128: DyadicFloat128 = DyadicFloat128 {
sign: DyadicSign::Pos,
exponent: -127,
mantissa: 0xc90fdaa2_2168c234_c4c6628b_80dc1cd1_u128,
};
pub fn f_acospi(x: f64) -> f64 {
let x_e = (x.to_bits() >> 52) & 0x7ff;
const E_BIAS: u64 = (1u64 << (11 - 1u64)) - 1u64;
const PI_OVER_TWO: DoubleDouble = DoubleDouble::new(
f64::from_bits(0x3c91a62633145c07),
f64::from_bits(0x3ff921fb54442d18),
);
let x_abs = f64::from_bits(x.to_bits() & 0x7fff_ffff_ffff_ffff);
if x_e < E_BIAS - 1 {
if x_e < E_BIAS - 55 {
return f_fmla(f64::from_bits(0xbc80000000000000), x, 0.5);
}
let x_sq = DoubleDouble::from_exact_mult(x, x);
let err = x_abs * f64::from_bits(0x3cc0000000000000);
let (p, err) = asin_eval(x_sq, err);
let r0 = DoubleDouble::from_exact_mult(x, p.hi);
let mut r_hi = f_fmla(-x, p.hi, PI_OVER_TWO.hi);
let mut r_lo = ((PI_OVER_TWO.hi - r_hi) - r0.hi) - r0.lo;
r_lo = f_fmla(-x, p.lo, r_lo + PI_OVER_TWO.lo);
let p = DoubleDouble::mult(DoubleDouble::new(r_lo, r_hi), INV_PI_DD);
r_hi = p.hi;
r_lo = p.lo;
let r_upper = r_hi + (r_lo + err);
let r_lower = r_hi + (r_lo - err);
if r_upper == r_lower {
return r_upper;
}
let idx = (x_sq.hi * f64::from_bits(0x4050000000000000)).cpu_round() as usize;
let mut x_f128 = DyadicFloat128::new_from_f64(x);
let u: DyadicFloat128;
#[cfg(any(
all(
any(target_arch = "x86", target_arch = "x86_64"),
target_feature = "fma"
),
target_arch = "aarch64"
))]
{
let u_hi = DyadicFloat128::new_from_f64(f_fmla(
idx as f64,
f64::from_bits(0xbf90000000000000),
x_sq.hi,
));
u = u_hi.quick_add(&DyadicFloat128::new_from_f64(x_sq.lo));
}
#[cfg(not(any(
all(
any(target_arch = "x86", target_arch = "x86_64"),
target_feature = "fma"
),
target_arch = "aarch64"
)))]
{
let x_sq_f128 = x_f128.quick_mul(&x_f128);
u = x_sq_f128.quick_add(&DyadicFloat128::new_from_f64(
idx as f64 * f64::from_bits(0xbf90000000000000),
));
}
let p_f128 = asin_eval_dyadic(u, idx);
x_f128.sign = x_f128.sign.negate();
let mut r = PI_OVER_TWO_F128.quick_add(&x_f128.quick_mul(&p_f128));
r = r.quick_mul(&INV_PI_F128);
return r.fast_as_f64();
}
const PI: DoubleDouble = DoubleDouble::new(
f64::from_bits(0x3ca1a62633145c07),
f64::from_bits(0x400921fb54442d18),
);
if x_e >= E_BIAS {
if x_abs == 1.0 {
return if x == 1.0 { 0.0 } else { 1.0 };
}
return f64::NAN;
}
let u = f_fmla(x_abs, -0.5, 0.5);
let v_hi = u.sqrt();
let h;
#[cfg(any(
all(
any(target_arch = "x86", target_arch = "x86_64"),
target_feature = "fma"
),
target_arch = "aarch64"
))]
{
h = f_fmla(v_hi, -v_hi, u);
}
#[cfg(not(any(
all(
any(target_arch = "x86", target_arch = "x86_64"),
target_feature = "fma"
),
target_arch = "aarch64"
)))]
{
let v_hi_sq = DoubleDouble::from_exact_mult(v_hi, v_hi);
h = (u - v_hi_sq.hi) - v_hi_sq.lo;
}
let vh = v_hi * 2.0;
let vl = h / v_hi;
let err = vh * f64::from_bits(0x3cc0000000000000);
let (p, err) = asin_eval(DoubleDouble::new(0.0, u), err);
let r0 = DoubleDouble::quick_mult(DoubleDouble::new(vl, vh), p);
let mut r_hi;
let mut r_lo;
if x.is_sign_positive() {
r_hi = r0.hi;
r_lo = r0.lo;
} else {
let r = DoubleDouble::from_exact_add(PI.hi, -r0.hi);
r_hi = r.hi;
r_lo = (PI.lo - r0.lo) + r.lo;
}
let p = DoubleDouble::mult(DoubleDouble::new(r_lo, r_hi), INV_PI_DD);
r_hi = p.hi;
r_lo = p.lo;
let r_upper = r_hi + (r_lo + err);
let r_lower = r_hi + (r_lo - err);
if r_upper == r_lower {
return r_upper;
}
let idx = (u * f64::from_bits(0x4050000000000000)).cpu_round() as usize;
let vl_lo;
#[cfg(any(
all(
any(target_arch = "x86", target_arch = "x86_64"),
target_feature = "fma"
),
target_arch = "aarch64"
))]
{
vl_lo = f_fmla(-v_hi, vl, h) / v_hi;
}
#[cfg(not(any(
all(
any(target_arch = "x86", target_arch = "x86_64"),
target_feature = "fma"
),
target_arch = "aarch64"
)))]
{
let vh_vl = DoubleDouble::from_exact_mult(v_hi, vl);
vl_lo = ((h - vh_vl.hi) - vh_vl.lo) / v_hi;
}
let t = h * (-0.25) / u;
let vll = f_fmla(vl, t, vl_lo);
let m_v_p = DyadicFloat128::new_from_f64(vl) + DyadicFloat128::new_from_f64(vll);
let mut m_v = DyadicFloat128::new_from_f64(vh) + m_v_p;
m_v.sign = if x.is_sign_negative() {
DyadicSign::Neg
} else {
DyadicSign::Pos
};
let y_f128 =
DyadicFloat128::new_from_f64(f_fmla(idx as f64, f64::from_bits(0xbf90000000000000), u));
let p_f128 = asin_eval_dyadic(y_f128, idx);
let mut r_f128 = m_v * p_f128;
if x.is_sign_negative() {
const PI_F128: DyadicFloat128 = DyadicFloat128 {
sign: DyadicSign::Pos,
exponent: -126,
mantissa: 0xc90fdaa2_2168c234_c4c6628b_80dc1cd1_u128,
};
r_f128 = PI_F128 + r_f128;
}
r_f128 = r_f128.quick_mul(&INV_PI_F128);
r_f128.fast_as_f64()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn acospi_test() {
assert_eq!(f_acospi(0.5), 0.3333333333333333);
assert!(f_acospi(1.5).is_nan());
}
}