summaryrefslogtreecommitdiffstats
path: root/vendor/compiler_builtins/libm/src/math/exp10f.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/compiler_builtins/libm/src/math/exp10f.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/compiler_builtins/libm/src/math/exp10f.rs')
-rw-r--r--vendor/compiler_builtins/libm/src/math/exp10f.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/compiler_builtins/libm/src/math/exp10f.rs b/vendor/compiler_builtins/libm/src/math/exp10f.rs
new file mode 100644
index 000000000..d45fff36e
--- /dev/null
+++ b/vendor/compiler_builtins/libm/src/math/exp10f.rs
@@ -0,0 +1,21 @@
+use super::{exp2, exp2f, modff};
+
+const LN10_F32: f32 = 3.32192809488736234787031942948939;
+const LN10_F64: f64 = 3.32192809488736234787031942948939;
+const P10: &[f32] = &[
+ 1e-7, 1e-6, 1e-5, 1e-4, 1e-3, 1e-2, 1e-1, 1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7,
+];
+
+pub fn exp10f(x: f32) -> f32 {
+ let (mut y, n) = modff(x);
+ let u = n.to_bits();
+ /* fabsf(n) < 8 without raising invalid on nan */
+ if (u >> 23 & 0xff) < 0x7f + 3 {
+ if y == 0.0 {
+ return P10[((n as isize) + 7) as usize];
+ }
+ y = exp2f(LN10_F32 * y);
+ return y * P10[((n as isize) + 7) as usize];
+ }
+ return exp2(LN10_F64 * (x as f64)) as f32;
+}