Skip to content

Commit bbafea5

Browse files
bors[bot]software-opaljaparic
committed
89: Adding acos implementation r=japaric a=leesdolphin Fixes rust-lang#6 Co-authored-by: Opal <[email protected]> Co-authored-by: Jorge Aparicio <[email protected]>
2 parents c22bd25 + 32a2d3f commit bbafea5

File tree

4 files changed

+111
-3
lines changed

4 files changed

+111
-3
lines changed

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,6 @@ pub trait F64Ext: private::Sealed {
414414
#[cfg(todo)]
415415
fn asin(self) -> Self;
416416

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

420419
#[cfg(todo)]
@@ -592,7 +591,6 @@ impl F64Ext for f64 {
592591
asin(self)
593592
}
594593

595-
#[cfg(todo)]
596594
#[inline]
597595
fn acos(self) -> Self {
598596
acos(self)

src/math/acos.rs

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
/* origin: FreeBSD /usr/src/lib/msun/src/e_acos.c */
2+
/*
3+
* ====================================================
4+
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5+
*
6+
* Developed at SunSoft, a Sun Microsystems, Inc. business.
7+
* Permission to use, copy, modify, and distribute this
8+
* software is freely granted, provided that this notice
9+
* is preserved.
10+
* ====================================================
11+
*/
12+
/* acos(x)
13+
* Method :
14+
* acos(x) = pi/2 - asin(x)
15+
* acos(-x) = pi/2 + asin(x)
16+
* For |x|<=0.5
17+
* acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c)
18+
* For x>0.5
19+
* acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2)))
20+
* = 2asin(sqrt((1-x)/2))
21+
* = 2s + 2s*z*R(z) ...z=(1-x)/2, s=sqrt(z)
22+
* = 2f + (2c + 2s*z*R(z))
23+
* where f=hi part of s, and c = (z-f*f)/(s+f) is the correction term
24+
* for f so that f+c ~ sqrt(z).
25+
* For x<-0.5
26+
* acos(x) = pi - 2asin(sqrt((1-|x|)/2))
27+
* = pi - 0.5*(s+s*z*R(z)), where z=(1-|x|)/2,s=sqrt(z)
28+
*
29+
* Special cases:
30+
* if x is NaN, return x itself;
31+
* if |x|>1, return NaN with invalid signal.
32+
*
33+
* Function needed: sqrt
34+
*/
35+
36+
use super::sqrt;
37+
38+
const PIO2_HI: f64 = 1.57079632679489655800e+00; /* 0x3FF921FB, 0x54442D18 */
39+
const PIO2_LO: f64 = 6.12323399573676603587e-17; /* 0x3C91A626, 0x33145C07 */
40+
const PS0: f64 = 1.66666666666666657415e-01; /* 0x3FC55555, 0x55555555 */
41+
const PS1: f64 = -3.25565818622400915405e-01; /* 0xBFD4D612, 0x03EB6F7D */
42+
const PS2: f64 = 2.01212532134862925881e-01; /* 0x3FC9C155, 0x0E884455 */
43+
const PS3: f64 = -4.00555345006794114027e-02; /* 0xBFA48228, 0xB5688F3B */
44+
const PS4: f64 = 7.91534994289814532176e-04; /* 0x3F49EFE0, 0x7501B288 */
45+
const PS5: f64 = 3.47933107596021167570e-05; /* 0x3F023DE1, 0x0DFDF709 */
46+
const QS1: f64 = -2.40339491173441421878e+00; /* 0xC0033A27, 0x1C8A2D4B */
47+
const QS2: f64 = 2.02094576023350569471e+00; /* 0x40002AE5, 0x9C598AC8 */
48+
const QS3: f64 = -6.88283971605453293030e-01; /* 0xBFE6066C, 0x1B8D0159 */
49+
const QS4: f64 = 7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */
50+
51+
#[inline]
52+
fn r(z: f64) -> f64 {
53+
let p: f64 = z * (PS0 + z * (PS1 + z * (PS2 + z * (PS3 + z * (PS4 + z * PS5)))));
54+
let q: f64 = 1.0 + z * (QS1 + z * (QS2 + z * (QS3 + z * QS4)));
55+
return p / q;
56+
}
57+
58+
#[inline]
59+
pub fn acos(x: f64) -> f64 {
60+
let x1p_120f = f64::from_bits(0x3870000000000000); // 0x1p-120 === 2 ^ -120
61+
let z: f64;
62+
let w: f64;
63+
let s: f64;
64+
let c: f64;
65+
let df: f64;
66+
let hx: u32;
67+
let ix: u32;
68+
69+
hx = (x.to_bits() >> 32) as u32;
70+
ix = hx & 0x7fffffff;
71+
/* |x| >= 1 or nan */
72+
if ix >= 0x3ff00000 {
73+
let lx: u32 = x.to_bits() as u32;
74+
75+
if (ix - 0x3ff00000 | lx) == 0 {
76+
/* acos(1)=0, acos(-1)=pi */
77+
if (hx >> 31) != 0 {
78+
return 2. * PIO2_HI + x1p_120f;
79+
}
80+
return 0.;
81+
}
82+
return 0. / (x - x);
83+
}
84+
/* |x| < 0.5 */
85+
if ix < 0x3fe00000 {
86+
if ix <= 0x3c600000 {
87+
/* |x| < 2**-57 */
88+
return PIO2_HI + x1p_120f;
89+
}
90+
return PIO2_HI - (x - (PIO2_LO - x * r(x * x)));
91+
}
92+
/* x < -0.5 */
93+
if (hx >> 31) != 0 {
94+
z = (1.0 + x) * 0.5;
95+
s = sqrt(z);
96+
w = r(z) * s - PIO2_LO;
97+
return 2. * (PIO2_HI - (s + w));
98+
}
99+
/* x > 0.5 */
100+
z = (1.0 - x) * 0.5;
101+
s = sqrt(z);
102+
// Set the low 4 bytes to zero
103+
df = f64::from_bits(s.to_bits() & 0xff_ff_ff_ff_00_00_00_00);
104+
105+
c = (z - df * df) / (s + df);
106+
w = r(z) * s + c;
107+
return 2. * (df + w);
108+
}

src/math/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ macro_rules! force_eval {
66
};
77
}
88

9+
mod acos;
910
mod cbrt;
1011
mod cbrtf;
1112
mod ceil;
@@ -42,6 +43,7 @@ mod trunc;
4243
mod truncf;
4344

4445
// Use separated imports instead of {}-grouped imports for easier merging.
46+
pub use self::acos::acos;
4547
pub use self::cbrt::cbrt;
4648
pub use self::cbrtf::cbrtf;
4749
pub use self::ceil::ceil;

test-generator/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ f32i32_f32! {
696696

697697
// With signature `fn(f64) -> f64`
698698
f64_f64! {
699-
// acos,
699+
acos,
700700
// asin,
701701
// atan,
702702
cbrt,

0 commit comments

Comments
 (0)