Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.
20 changes: 0 additions & 20 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,24 +84,18 @@ pub trait F32Ext: private::Sealed {

fn hypot(self, other: Self) -> Self;

#[cfg(todo)]
fn sin(self) -> Self;

fn cos(self) -> Self;

#[cfg(todo)]
fn tan(self) -> Self;

#[cfg(todo)]
fn asin(self) -> Self;

#[cfg(todo)]
fn acos(self) -> Self;

#[cfg(todo)]
fn atan(self) -> Self;

#[cfg(todo)]
fn atan2(self, other: Self) -> Self;

#[cfg(todo)]
Expand All @@ -110,18 +104,14 @@ pub trait F32Ext: private::Sealed {
(self.sin(), self.cos())
}

#[cfg(todo)]
fn exp_m1(self) -> Self;

fn ln_1p(self) -> Self;

#[cfg(todo)]
fn sinh(self) -> Self;

#[cfg(todo)]
fn cosh(self) -> Self;

#[cfg(todo)]
fn tanh(self) -> Self;

#[cfg(todo)]
Expand Down Expand Up @@ -248,7 +238,6 @@ impl F32Ext for f32 {
hypotf(self, other)
}

#[cfg(todo)]
#[inline]
fn sin(self) -> Self {
sinf(self)
Expand All @@ -259,37 +248,31 @@ impl F32Ext for f32 {
cosf(self)
}

#[cfg(todo)]
#[inline]
fn tan(self) -> Self {
tanf(self)
}

#[cfg(todo)]
#[inline]
fn asin(self) -> Self {
asinf(self)
}

#[cfg(todo)]
#[inline]
fn acos(self) -> Self {
acosf(self)
}

#[cfg(todo)]
#[inline]
fn atan(self) -> Self {
atanf(self)
}

#[cfg(todo)]
#[inline]
fn atan2(self, other: Self) -> Self {
atan2f(self, other)
}

#[cfg(todo)]
#[inline]
fn exp_m1(self) -> Self {
expm1f(self)
Expand All @@ -300,19 +283,16 @@ impl F32Ext for f32 {
log1pf(self)
}

#[cfg(todo)]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be undone because sinhf has been removed

#[inline]
fn sinh(self) -> Self {
sinhf(self)
}

#[cfg(todo)]
#[inline]
fn cosh(self) -> Self {
coshf(self)
}

#[cfg(todo)]
#[inline]
fn tanh(self) -> Self {
tanhf(self)
Expand Down
59 changes: 59 additions & 0 deletions src/math/acosf.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
use super::sqrtf::sqrtf;

const PIO2_HI: f32 = 1.5707962513e+00; /* 0x3fc90fda */
const PIO2_LO: f32 = 7.5497894159e-08; /* 0x33a22168 */
const P_S0: f32 = 1.6666586697e-01;
const P_S1: f32 = -4.2743422091e-02;
const P_S2: f32 = -8.6563630030e-03;
const Q_S1: f32 = -7.0662963390e-01;

fn r(z: f32) -> f32 {
let p = z * (P_S0 + z * (P_S1 + z * P_S2));
let q = 1. + z * Q_S1;
p / q
}

#[inline]
pub fn acosf(x: f32) -> f32 {
let x1p_120 = f32::from_bits(0x03800000); // 0x1p-120 === 2 ^ (-120)

let z: f32;
let w: f32;
let s: f32;

let mut hx = x.to_bits();
let ix = hx & 0x7fffffff;
/* |x| >= 1 or nan */
if ix >= 0x3f800000 {
if ix == 0x3f800000 {
if (hx >> 31) != 0 {
return 2. * PIO2_HI + x1p_120;
}
return 0.;
}
return 0. / (x - x);
}
/* |x| < 0.5 */
if ix < 0x3f000000 {
if ix <= 0x32800000 {
/* |x| < 2**-26 */
return PIO2_HI + x1p_120;
}
return PIO2_HI - (x - (PIO2_LO - x * r(x * x)));
}
/* x < -0.5 */
if (hx >> 31) != 0 {
z = (1. + x) * 0.5;
s = sqrtf(z);
w = r(z) * s - PIO2_LO;
return 2. * (PIO2_HI - (s + w));
}
/* x > 0.5 */
z = (1. - x) * 0.5;
s = sqrtf(z);
hx = s.to_bits();
let df = f32::from_bits(hx & 0xfffff000);
let c = (z - df * df) / (s + df);
w = r(z) * s + c;
2. * (df + w)
}
52 changes: 52 additions & 0 deletions src/math/asinf.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
use super::fabsf::fabsf;
use super::sqrt::sqrt;

const PIO2: f64 = 1.570796326794896558e+00;

/* coefficients for R(x^2) */
const P_S0: f32 = 1.6666586697e-01;
const P_S1: f32 = -4.2743422091e-02;
const P_S2: f32 = -8.6563630030e-03;
const Q_S1: f32 = -7.0662963390e-01;

fn r(z: f32) -> f32 {
let p = z * (P_S0 + z * (P_S1 + z * P_S2));
let q = 1. + z * Q_S1;
p / q
}

#[inline]
pub fn asinf(mut x: f32) -> f32 {
let x1p_120 = f64::from_bits(0x3870000000000000); // 0x1p-120 === 2 ^ (-120)

let hx = x.to_bits();
let ix = hx & 0x7fffffff;

if ix >= 0x3f800000 {
/* |x| >= 1 */
if ix == 0x3f800000 {
/* |x| == 1 */
return ((x as f64) * PIO2 + x1p_120) as f32; /* asin(+-1) = +-pi/2 with inexact */
}
return 0. / (x - x); /* asin(|x|>1) is NaN */
}

if ix < 0x3f000000 {
/* |x| < 0.5 */
/* if 0x1p-126 <= |x| < 0x1p-12, avoid raising underflow */
if (ix < 0x39800000) && (ix >= 0x00800000) {
return x;
}
return x + x * r(x * x);
}

/* 1 > |x| >= 0.5 */
let z = (1. - fabsf(x)) * 0.5;
let s = sqrt(z as f64);
x = (PIO2 - 2. * (s + s * (r(z) as f64))) as f32;
if (hx >> 31) != 0 {
-x
} else {
x
}
}
95 changes: 95 additions & 0 deletions src/math/atanf.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
use super::fabsf;

const ATAN_HI: [f32; 4] = [
4.6364760399e-01, /* atan(0.5)hi 0x3eed6338 */
7.8539812565e-01, /* atan(1.0)hi 0x3f490fda */
9.8279368877e-01, /* atan(1.5)hi 0x3f7b985e */
1.5707962513e+00, /* atan(inf)hi 0x3fc90fda */
];

const ATAN_LO: [f32; 4] = [
5.0121582440e-09, /* atan(0.5)lo 0x31ac3769 */
3.7748947079e-08, /* atan(1.0)lo 0x33222168 */
3.4473217170e-08, /* atan(1.5)lo 0x33140fb4 */
7.5497894159e-08, /* atan(inf)lo 0x33a22168 */
];

const A_T: [f32; 5] = [
3.3333328366e-01,
-1.9999158382e-01,
1.4253635705e-01,
-1.0648017377e-01,
6.1687607318e-02,
];

#[inline]
pub fn atanf(mut x: f32) -> f32 {
let x1p_120 = f32::from_bits(0x03800000); // 0x1p-120 === 2 ^ (-120)

let z: f32;

let mut ix = x.to_bits();
let sign = (ix >> 31) != 0;
ix &= 0x7fffffff;

if ix >= 0x4c800000 {
/* if |x| >= 2**26 */
if x.is_nan() {
return x;
}
z = ATAN_HI[3] + x1p_120;
return if sign { -z } else { z };
}
let id = if ix < 0x3ee00000 {
/* |x| < 0.4375 */
if ix < 0x39800000 {
/* |x| < 2**-12 */
if ix < 0x00800000 {
/* raise underflow for subnormal x */
force_eval!(x * x);
}
return x;
}
-1
} else {
x = fabsf(x);
if ix < 0x3f980000 {
/* |x| < 1.1875 */
if ix < 0x3f300000 {
/* 7/16 <= |x| < 11/16 */
x = (2. * x - 1.) / (2. + x);
0
} else {
/* 11/16 <= |x| < 19/16 */
x = (x - 1.) / (x + 1.);
1
}
} else {
if ix < 0x401c0000 {
/* |x| < 2.4375 */
x = (x - 1.5) / (1. + 1.5 * x);
2
} else {
/* 2.4375 <= |x| < 2**26 */
x = -1. / x;
3
}
}
};
/* end of argument reduction */
z = x * x;
let w = z * z;
/* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
let s1 = z * (A_T[0] + w * (A_T[2] + w * A_T[4]));
let s2 = w * (A_T[1] + w * A_T[3]);
if id < 0 {
return x - x * (s1 + s2);
}
let id = id as usize;
let z = ATAN_HI[id] - ((x * (s1 + s2) - ATAN_LO[id]) - x);
if sign {
-z
} else {
z
}
}
Loading