2021-03-28 20:44:16 -05:00
|
|
|
macro_rules! impl_uint_arith {
|
2021-04-11 10:42:29 -05:00
|
|
|
($(($name:ident, $n:ident)),+) => {
|
2021-07-23 21:54:19 -05:00
|
|
|
$( impl<const LANES: usize> $name<LANES> where crate::LaneCount<LANES>: crate::SupportedLaneCount {
|
2021-03-28 20:44:16 -05:00
|
|
|
|
|
|
|
/// Lanewise saturating add.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
2021-07-19 18:13:24 -05:00
|
|
|
/// # #![feature(portable_simd)]
|
2021-03-28 20:44:16 -05:00
|
|
|
/// # use core_simd::*;
|
|
|
|
#[doc = concat!("# use core::", stringify!($n), "::MAX;")]
|
|
|
|
#[doc = concat!("let x = ", stringify!($name), "::from_array([2, 1, 0, MAX]);")]
|
|
|
|
#[doc = concat!("let max = ", stringify!($name), "::splat(MAX);")]
|
|
|
|
/// let unsat = x + max;
|
|
|
|
/// let sat = x.saturating_add(max);
|
|
|
|
/// assert_eq!(x - 1, unsat);
|
|
|
|
/// assert_eq!(sat, max);
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn saturating_add(self, second: Self) -> Self {
|
|
|
|
unsafe { crate::intrinsics::simd_saturating_add(self, second) }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Lanewise saturating subtract.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
2021-07-19 18:13:24 -05:00
|
|
|
/// # #![feature(portable_simd)]
|
2021-03-28 20:44:16 -05:00
|
|
|
/// # use core_simd::*;
|
|
|
|
#[doc = concat!("# use core::", stringify!($n), "::MAX;")]
|
|
|
|
#[doc = concat!("let x = ", stringify!($name), "::from_array([2, 1, 0, MAX]);")]
|
|
|
|
#[doc = concat!("let max = ", stringify!($name), "::splat(MAX);")]
|
|
|
|
/// let unsat = x - max;
|
|
|
|
/// let sat = x.saturating_sub(max);
|
|
|
|
/// assert_eq!(unsat, x + 1);
|
|
|
|
#[doc = concat!("assert_eq!(sat, ", stringify!($name), "::splat(0));")]
|
|
|
|
#[inline]
|
|
|
|
pub fn saturating_sub(self, second: Self) -> Self {
|
|
|
|
unsafe { crate::intrinsics::simd_saturating_sub(self, second) }
|
|
|
|
}
|
|
|
|
})+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_int_arith {
|
2021-04-11 10:42:29 -05:00
|
|
|
($(($name:ident, $n:ident)),+) => {
|
2021-07-23 21:54:19 -05:00
|
|
|
$( impl<const LANES: usize> $name<LANES> where crate::LaneCount<LANES>: crate::SupportedLaneCount {
|
2021-03-28 20:44:16 -05:00
|
|
|
|
|
|
|
/// Lanewise saturating add.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
2021-07-19 18:13:24 -05:00
|
|
|
/// # #![feature(portable_simd)]
|
2021-03-28 20:44:16 -05:00
|
|
|
/// # use core_simd::*;
|
|
|
|
#[doc = concat!("# use core::", stringify!($n), "::{MIN, MAX};")]
|
|
|
|
#[doc = concat!("let x = ", stringify!($name), "::from_array([MIN, 0, 1, MAX]);")]
|
|
|
|
#[doc = concat!("let max = ", stringify!($name), "::splat(MAX);")]
|
|
|
|
/// let unsat = x + max;
|
|
|
|
/// let sat = x.saturating_add(max);
|
|
|
|
#[doc = concat!("assert_eq!(unsat, ", stringify!($name), "::from_array([-1, MAX, MIN, -2]));")]
|
|
|
|
#[doc = concat!("assert_eq!(sat, ", stringify!($name), "::from_array([-1, MAX, MAX, MAX]));")]
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn saturating_add(self, second: Self) -> Self {
|
|
|
|
unsafe { crate::intrinsics::simd_saturating_add(self, second) }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Lanewise saturating subtract.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
2021-07-19 18:13:24 -05:00
|
|
|
/// # #![feature(portable_simd)]
|
2021-03-28 20:44:16 -05:00
|
|
|
/// # use core_simd::*;
|
|
|
|
#[doc = concat!("# use core::", stringify!($n), "::{MIN, MAX};")]
|
|
|
|
#[doc = concat!("let x = ", stringify!($name), "::from_array([MIN, -2, -1, MAX]);")]
|
|
|
|
#[doc = concat!("let max = ", stringify!($name), "::splat(MAX);")]
|
|
|
|
/// let unsat = x - max;
|
|
|
|
/// let sat = x.saturating_sub(max);
|
|
|
|
#[doc = concat!("assert_eq!(unsat, ", stringify!($name), "::from_array([1, MAX, MIN, 0]));")]
|
|
|
|
#[doc = concat!("assert_eq!(sat, ", stringify!($name), "::from_array([MIN, MIN, MIN, 0]));")]
|
|
|
|
#[inline]
|
|
|
|
pub fn saturating_sub(self, second: Self) -> Self {
|
|
|
|
unsafe { crate::intrinsics::simd_saturating_sub(self, second) }
|
|
|
|
}
|
2021-04-02 10:28:48 -05:00
|
|
|
|
2021-04-13 22:19:53 -05:00
|
|
|
/// Lanewise absolute value, implemented in Rust.
|
|
|
|
/// Every lane becomes its absolute value.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
2021-07-19 18:13:24 -05:00
|
|
|
/// # #![feature(portable_simd)]
|
2021-04-13 22:19:53 -05:00
|
|
|
/// # use core_simd::*;
|
|
|
|
#[doc = concat!("# use core::", stringify!($n), "::{MIN, MAX};")]
|
|
|
|
#[doc = concat!("let xs = ", stringify!($name), "::from_array([MIN, MIN +1, -5, 0]);")]
|
|
|
|
#[doc = concat!("assert_eq!(xs.abs(), ", stringify!($name), "::from_array([MIN, MAX, 5, 0]));")]
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn abs(self) -> Self {
|
2021-04-13 23:15:20 -05:00
|
|
|
const SHR: $n = <$n>::BITS as $n - 1;
|
|
|
|
let m = self >> SHR;
|
|
|
|
(self^m) - m
|
2021-04-13 22:19:53 -05:00
|
|
|
}
|
|
|
|
|
2021-04-02 10:28:48 -05:00
|
|
|
/// Lanewise saturating absolute value, implemented in Rust.
|
2021-04-02 11:11:24 -05:00
|
|
|
/// As abs(), except the MIN value becomes MAX instead of itself.
|
2021-04-02 10:28:48 -05:00
|
|
|
///
|
|
|
|
/// # Examples
|
2021-04-11 10:42:29 -05:00
|
|
|
/// ```
|
2021-07-19 18:13:24 -05:00
|
|
|
/// # #![feature(portable_simd)]
|
2021-04-02 10:28:48 -05:00
|
|
|
/// # use core_simd::*;
|
|
|
|
#[doc = concat!("# use core::", stringify!($n), "::{MIN, MAX};")]
|
2021-04-13 22:19:53 -05:00
|
|
|
#[doc = concat!("let xs = ", stringify!($name), "::from_array([MIN, -2, 0, 3]);")]
|
|
|
|
/// let unsat = xs.abs();
|
|
|
|
/// let sat = xs.saturating_abs();
|
|
|
|
#[doc = concat!("assert_eq!(unsat, ", stringify!($name), "::from_array([MIN, 2, 0, 3]));")]
|
|
|
|
#[doc = concat!("assert_eq!(sat, ", stringify!($name), "::from_array([MAX, 2, 0, 3]));")]
|
2021-04-02 10:28:48 -05:00
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn saturating_abs(self) -> Self {
|
|
|
|
// arith shift for -1 or 0 mask based on sign bit, giving 2s complement
|
|
|
|
const SHR: $n = <$n>::BITS as $n - 1;
|
|
|
|
let m = self >> SHR;
|
|
|
|
(self^m).saturating_sub(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Lanewise saturating negation, implemented in Rust.
|
2021-04-02 11:11:24 -05:00
|
|
|
/// As neg(), except the MIN value becomes MAX instead of itself.
|
2021-04-02 10:28:48 -05:00
|
|
|
///
|
|
|
|
/// # Examples
|
2021-04-11 10:42:29 -05:00
|
|
|
/// ```
|
2021-07-19 18:13:24 -05:00
|
|
|
/// # #![feature(portable_simd)]
|
2021-04-02 10:28:48 -05:00
|
|
|
/// # use core_simd::*;
|
|
|
|
#[doc = concat!("# use core::", stringify!($n), "::{MIN, MAX};")]
|
2021-04-11 10:42:29 -05:00
|
|
|
#[doc = concat!("let x = ", stringify!($name), "::from_array([MIN, -2, 3, MAX]);")]
|
2021-04-02 10:28:48 -05:00
|
|
|
/// let unsat = -x;
|
|
|
|
/// let sat = x.saturating_neg();
|
2021-04-11 10:42:29 -05:00
|
|
|
#[doc = concat!("assert_eq!(unsat, ", stringify!($name), "::from_array([MIN, 2, -3, MIN + 1]));")]
|
2021-04-02 10:28:48 -05:00
|
|
|
#[doc = concat!("assert_eq!(sat, ", stringify!($name), "::from_array([MAX, 2, -3, MIN + 1]));")]
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn saturating_neg(self) -> Self {
|
|
|
|
Self::splat(0).saturating_sub(self)
|
|
|
|
}
|
2021-03-28 20:44:16 -05:00
|
|
|
})+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use crate::vector::*;
|
|
|
|
|
2021-04-25 18:40:35 -05:00
|
|
|
impl_uint_arith! { (SimdU8, u8), (SimdU16, u16), (SimdU32, u32), (SimdU64, u64), (SimdUsize, usize) }
|
|
|
|
impl_int_arith! { (SimdI8, i8), (SimdI16, i16), (SimdI32, i32), (SimdI64, i64), (SimdIsize, isize) }
|