summaryrefslogtreecommitdiffstats
path: root/vendor/libm-0.1.4/src/math/fabs.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:42 +0000
commit837b550238aa671a591ccf282dddeab29cadb206 (patch)
tree914b6b8862bace72bd3245ca184d374b08d8a672 /vendor/libm-0.1.4/src/math/fabs.rs
parentAdding debian version 1.70.0+dfsg2-1. (diff)
downloadrustc-837b550238aa671a591ccf282dddeab29cadb206.tar.xz
rustc-837b550238aa671a591ccf282dddeab29cadb206.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/libm-0.1.4/src/math/fabs.rs')
-rw-r--r--vendor/libm-0.1.4/src/math/fabs.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/libm-0.1.4/src/math/fabs.rs b/vendor/libm-0.1.4/src/math/fabs.rs
new file mode 100644
index 000000000..52a9adcbf
--- /dev/null
+++ b/vendor/libm-0.1.4/src/math/fabs.rs
@@ -0,0 +1,18 @@
+use core::u64;
+
+/// Absolute value (magnitude) (f64)
+/// Calculates the absolute value (magnitude) of the argument `x`,
+/// by direct manipulation of the bit representation of `x`.
+#[inline]
+#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
+pub fn fabs(x: f64) -> f64 {
+ // On wasm32 we know that LLVM's intrinsic will compile to an optimized
+ // `f64.abs` native instruction, so we can leverage this for both code size
+ // and speed.
+ llvm_intrinsically_optimized! {
+ #[cfg(target_arch = "wasm32")] {
+ return unsafe { ::core::intrinsics::fabsf64(x) }
+ }
+ }
+ f64::from_bits(x.to_bits() & (u64::MAX / 2))
+}