//! Types and traits associated with masking lanes of vectors. //! Types representing #![allow(non_camel_case_types)] #[cfg_attr( not(all(target_arch = "x86_64", target_feature = "avx512f")), path = "masks/full_masks.rs" )] #[cfg_attr( all(target_arch = "x86_64", target_feature = "avx512f"), path = "masks/bitmask.rs" )] mod mask_impl; mod to_bitmask; pub use to_bitmask::ToBitMask; #[cfg(feature = "generic_const_exprs")] pub use to_bitmask::{bitmask_len, ToBitMaskArray}; use crate::simd::{intrinsics, LaneCount, Simd, SimdElement, SimdPartialEq, SupportedLaneCount}; use core::cmp::Ordering; use core::{fmt, mem}; mod sealed { use super::*; /// Not only does this seal the `MaskElement` trait, but these functions prevent other traits /// from bleeding into the parent bounds. /// /// For example, `eq` could be provided by requiring `MaskElement: PartialEq`, but that would /// prevent us from ever removing that bound, or from implementing `MaskElement` on /// non-`PartialEq` types in the future. pub trait Sealed { fn valid(values: Simd) -> bool where LaneCount: SupportedLaneCount, Self: SimdElement; fn eq(self, other: Self) -> bool; const TRUE: Self; const FALSE: Self; } } use sealed::Sealed; /// Marker trait for types that may be used as SIMD mask elements. /// /// # Safety /// Type must be a signed integer. pub unsafe trait MaskElement: SimdElement + Sealed {} macro_rules! impl_element { { $ty:ty } => { impl Sealed for $ty { #[inline] fn valid(value: Simd) -> bool where LaneCount: SupportedLaneCount, { (value.simd_eq(Simd::splat(0 as _)) | value.simd_eq(Simd::splat(-1 as _))).all() } #[inline] fn eq(self, other: Self) -> bool { self == other } const TRUE: Self = -1; const FALSE: Self = 0; } // Safety: this is a valid mask element type unsafe impl MaskElement for $ty {} } } impl_element! { i8 } impl_element! { i16 } impl_element! { i32 } impl_element! { i64 } impl_element! { isize } /// A SIMD vector mask for `LANES` elements of width specified by `Element`. /// /// Masks represent boolean inclusion/exclusion on a per-lane basis. /// /// The layout of this type is unspecified, and may change between platforms /// and/or Rust versions, and code should not assume that it is equivalent to /// `[T; LANES]`. #[repr(transparent)] pub struct Mask(mask_impl::Mask) where T: MaskElement, LaneCount: SupportedLaneCount; impl Copy for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { } impl Clone for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn clone(&self) -> Self { *self } } impl Mask where T: MaskElement, LaneCount: SupportedLaneCount, { /// Construct a mask by setting all lanes to the given value. #[inline] pub fn splat(value: bool) -> Self { Self(mask_impl::Mask::splat(value)) } /// Converts an array of bools to a SIMD mask. #[inline] pub fn from_array(array: [bool; LANES]) -> Self { // SAFETY: Rust's bool has a layout of 1 byte (u8) with a value of // true: 0b_0000_0001 // false: 0b_0000_0000 // Thus, an array of bools is also a valid array of bytes: [u8; N] // This would be hypothetically valid as an "in-place" transmute, // but these are "dependently-sized" types, so copy elision it is! unsafe { let bytes: [u8; LANES] = mem::transmute_copy(&array); let bools: Simd = intrinsics::simd_ne(Simd::from_array(bytes), Simd::splat(0u8)); Mask::from_int_unchecked(intrinsics::simd_cast(bools)) } } /// Converts a SIMD mask to an array of bools. #[inline] pub fn to_array(self) -> [bool; LANES] { // This follows mostly the same logic as from_array. // SAFETY: Rust's bool has a layout of 1 byte (u8) with a value of // true: 0b_0000_0001 // false: 0b_0000_0000 // Thus, an array of bools is also a valid array of bytes: [u8; N] // Since our masks are equal to integers where all bits are set, // we can simply convert them to i8s, and then bitand them by the // bitpattern for Rust's "true" bool. // This would be hypothetically valid as an "in-place" transmute, // but these are "dependently-sized" types, so copy elision it is! unsafe { let mut bytes: Simd = intrinsics::simd_cast(self.to_int()); bytes &= Simd::splat(1i8); mem::transmute_copy(&bytes) } } /// Converts a vector of integers to a mask, where 0 represents `false` and -1 /// represents `true`. /// /// # Safety /// All lanes must be either 0 or -1. #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] pub unsafe fn from_int_unchecked(value: Simd) -> Self { // Safety: the caller must confirm this invariant unsafe { Self(mask_impl::Mask::from_int_unchecked(value)) } } /// Converts a vector of integers to a mask, where 0 represents `false` and -1 /// represents `true`. /// /// # Panics /// Panics if any lane is not 0 or -1. #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] pub fn from_int(value: Simd) -> Self { assert!(T::valid(value), "all values must be either 0 or -1",); // Safety: the validity has been checked unsafe { Self::from_int_unchecked(value) } } /// Converts the mask to a vector of integers, where 0 represents `false` and -1 /// represents `true`. #[inline] #[must_use = "method returns a new vector and does not mutate the original value"] pub fn to_int(self) -> Simd { self.0.to_int() } /// Converts the mask to a mask of any other lane size. #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] pub fn cast(self) -> Mask { Mask(self.0.convert()) } /// Tests the value of the specified lane. /// /// # Safety /// `lane` must be less than `LANES`. #[inline] #[must_use = "method returns a new bool and does not mutate the original value"] pub unsafe fn test_unchecked(&self, lane: usize) -> bool { // Safety: the caller must confirm this invariant unsafe { self.0.test_unchecked(lane) } } /// Tests the value of the specified lane. /// /// # Panics /// Panics if `lane` is greater than or equal to the number of lanes in the vector. #[inline] #[must_use = "method returns a new bool and does not mutate the original value"] pub fn test(&self, lane: usize) -> bool { assert!(lane < LANES, "lane index out of range"); // Safety: the lane index has been checked unsafe { self.test_unchecked(lane) } } /// Sets the value of the specified lane. /// /// # Safety /// `lane` must be less than `LANES`. #[inline] pub unsafe fn set_unchecked(&mut self, lane: usize, value: bool) { // Safety: the caller must confirm this invariant unsafe { self.0.set_unchecked(lane, value); } } /// Sets the value of the specified lane. /// /// # Panics /// Panics if `lane` is greater than or equal to the number of lanes in the vector. #[inline] pub fn set(&mut self, lane: usize, value: bool) { assert!(lane < LANES, "lane index out of range"); // Safety: the lane index has been checked unsafe { self.set_unchecked(lane, value); } } /// Returns true if any lane is set, or false otherwise. #[inline] #[must_use = "method returns a new bool and does not mutate the original value"] pub fn any(self) -> bool { self.0.any() } /// Returns true if all lanes are set, or false otherwise. #[inline] #[must_use = "method returns a new bool and does not mutate the original value"] pub fn all(self) -> bool { self.0.all() } } // vector/array conversion impl From<[bool; LANES]> for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn from(array: [bool; LANES]) -> Self { Self::from_array(array) } } impl From> for [bool; LANES] where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn from(vector: Mask) -> Self { vector.to_array() } } impl Default for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] #[must_use = "method returns a defaulted mask with all lanes set to false (0)"] fn default() -> Self { Self::splat(false) } } impl PartialEq for Mask where T: MaskElement + PartialEq, LaneCount: SupportedLaneCount, { #[inline] #[must_use = "method returns a new bool and does not mutate the original value"] fn eq(&self, other: &Self) -> bool { self.0 == other.0 } } impl PartialOrd for Mask where T: MaskElement + PartialOrd, LaneCount: SupportedLaneCount, { #[inline] #[must_use = "method returns a new Ordering and does not mutate the original value"] fn partial_cmp(&self, other: &Self) -> Option { self.0.partial_cmp(&other.0) } } impl fmt::Debug for Mask where T: MaskElement + fmt::Debug, LaneCount: SupportedLaneCount, { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_list() .entries((0..LANES).map(|lane| self.test(lane))) .finish() } } impl core::ops::BitAnd for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Self; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitand(self, rhs: Self) -> Self { Self(self.0 & rhs.0) } } impl core::ops::BitAnd for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Self; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitand(self, rhs: bool) -> Self { self & Self::splat(rhs) } } impl core::ops::BitAnd> for bool where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Mask; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitand(self, rhs: Mask) -> Mask { Mask::splat(self) & rhs } } impl core::ops::BitOr for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Self; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitor(self, rhs: Self) -> Self { Self(self.0 | rhs.0) } } impl core::ops::BitOr for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Self; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitor(self, rhs: bool) -> Self { self | Self::splat(rhs) } } impl core::ops::BitOr> for bool where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Mask; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitor(self, rhs: Mask) -> Mask { Mask::splat(self) | rhs } } impl core::ops::BitXor for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Self; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitxor(self, rhs: Self) -> Self::Output { Self(self.0 ^ rhs.0) } } impl core::ops::BitXor for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Self; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitxor(self, rhs: bool) -> Self::Output { self ^ Self::splat(rhs) } } impl core::ops::BitXor> for bool where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Mask; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn bitxor(self, rhs: Mask) -> Self::Output { Mask::splat(self) ^ rhs } } impl core::ops::Not for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { type Output = Mask; #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] fn not(self) -> Self::Output { Self(!self.0) } } impl core::ops::BitAndAssign for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn bitand_assign(&mut self, rhs: Self) { self.0 = self.0 & rhs.0; } } impl core::ops::BitAndAssign for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn bitand_assign(&mut self, rhs: bool) { *self &= Self::splat(rhs); } } impl core::ops::BitOrAssign for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn bitor_assign(&mut self, rhs: Self) { self.0 = self.0 | rhs.0; } } impl core::ops::BitOrAssign for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn bitor_assign(&mut self, rhs: bool) { *self |= Self::splat(rhs); } } impl core::ops::BitXorAssign for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn bitxor_assign(&mut self, rhs: Self) { self.0 = self.0 ^ rhs.0; } } impl core::ops::BitXorAssign for Mask where T: MaskElement, LaneCount: SupportedLaneCount, { #[inline] fn bitxor_assign(&mut self, rhs: bool) { *self ^= Self::splat(rhs); } } macro_rules! impl_from { { $from:ty => $($to:ty),* } => { $( impl From> for Mask<$to, LANES> where LaneCount: SupportedLaneCount, { #[inline] fn from(value: Mask<$from, LANES>) -> Self { value.cast() } } )* } } impl_from! { i8 => i16, i32, i64, isize } impl_from! { i16 => i32, i64, isize, i8 } impl_from! { i32 => i64, isize, i8, i16 } impl_from! { i64 => isize, i8, i16, i32 } impl_from! { isize => i8, i16, i32, i64 }