2020-10-13 00:28:03 -05:00
|
|
|
//! Types and traits associated with masking lanes of vectors.
|
2021-04-18 14:26:07 -05:00
|
|
|
//! Types representing
|
2020-12-13 22:58:33 -06:00
|
|
|
#![allow(non_camel_case_types)]
|
2020-10-13 00:28:03 -05:00
|
|
|
|
2021-04-18 14:26:07 -05:00
|
|
|
#[cfg_attr(not(all(target_arch = "x86_64", target_feature = "avx512f")), path = "full_masks.rs")]
|
|
|
|
#[cfg_attr(all(target_arch = "x86_64", target_feature = "avx512f"), path = "bitmask.rs")]
|
|
|
|
mod mask_impl;
|
2021-02-03 23:31:57 -06:00
|
|
|
|
2021-04-25 18:40:35 -05:00
|
|
|
use crate::{LanesAtMost32, SimdI16, SimdI32, SimdI64, SimdI8, SimdIsize};
|
2021-02-09 21:13:27 -06:00
|
|
|
|
2021-02-03 23:31:57 -06:00
|
|
|
macro_rules! define_opaque_mask {
|
|
|
|
{
|
|
|
|
$(#[$attr:meta])*
|
2021-04-18 14:26:07 -05:00
|
|
|
struct $name:ident<const $lanes:ident: usize>($inner_ty:ty);
|
2021-03-07 20:15:56 -06:00
|
|
|
@bits $bits_ty:ident
|
2021-02-03 23:31:57 -06:00
|
|
|
} => {
|
|
|
|
$(#[$attr])*
|
|
|
|
#[allow(non_camel_case_types)]
|
2021-04-18 14:26:07 -05:00
|
|
|
pub struct $name<const LANES: usize>($inner_ty) where $bits_ty<LANES>: LanesAtMost32;
|
2021-02-03 23:31:57 -06:00
|
|
|
|
2021-04-18 14:26:07 -05:00
|
|
|
impl_opaque_mask_reductions! { $name, $bits_ty }
|
2021-03-07 20:15:56 -06:00
|
|
|
|
|
|
|
impl<const LANES: usize> $name<LANES>
|
2021-02-09 21:13:27 -06:00
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2021-02-03 23:31:57 -06:00
|
|
|
/// Construct a mask by setting all lanes to the given value.
|
|
|
|
pub fn splat(value: bool) -> Self {
|
2021-04-18 14:26:07 -05:00
|
|
|
Self(<$inner_ty>::splat(value))
|
2021-02-03 23:31:57 -06:00
|
|
|
}
|
|
|
|
|
2021-03-06 01:14:58 -06:00
|
|
|
/// Converts an array to a SIMD vector.
|
|
|
|
pub fn from_array(array: [bool; LANES]) -> Self {
|
|
|
|
let mut vector = Self::splat(false);
|
|
|
|
let mut i = 0;
|
|
|
|
while i < $lanes {
|
|
|
|
vector.set(i, array[i]);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
vector
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Converts a SIMD vector to an array.
|
|
|
|
pub fn to_array(self) -> [bool; LANES] {
|
|
|
|
let mut array = [false; LANES];
|
|
|
|
let mut i = 0;
|
|
|
|
while i < $lanes {
|
|
|
|
array[i] = self.test(i);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
array
|
|
|
|
}
|
|
|
|
|
2021-04-18 14:26:07 -05:00
|
|
|
/// 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]
|
|
|
|
pub unsafe fn from_int_unchecked(value: $bits_ty<LANES>) -> Self {
|
|
|
|
Self(<$inner_ty>::from_int_unchecked(value))
|
|
|
|
}
|
|
|
|
|
2021-02-03 23:31:57 -06:00
|
|
|
/// 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]
|
|
|
|
pub fn test(&self, lane: usize) -> bool {
|
|
|
|
self.0.test(lane)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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) {
|
|
|
|
self.0.set(lane, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-06 01:14:58 -06:00
|
|
|
// vector/array conversion
|
2021-03-07 20:15:56 -06:00
|
|
|
impl<const LANES: usize> From<[bool; LANES]> for $name<LANES>
|
|
|
|
where
|
|
|
|
$bits_ty<LANES>: crate::LanesAtMost32
|
|
|
|
{
|
|
|
|
fn from(array: [bool; LANES]) -> Self {
|
2021-03-06 01:14:58 -06:00
|
|
|
Self::from_array(array)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-07 20:15:56 -06:00
|
|
|
impl <const LANES: usize> From<$name<LANES>> for [bool; LANES]
|
|
|
|
where
|
|
|
|
$bits_ty<LANES>: crate::LanesAtMost32
|
|
|
|
{
|
|
|
|
fn from(vector: $name<LANES>) -> Self {
|
2021-03-06 01:14:58 -06:00
|
|
|
vector.to_array()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-07 20:15:56 -06:00
|
|
|
impl<const LANES: usize> Copy for $name<LANES>
|
2021-02-09 21:13:27 -06:00
|
|
|
where
|
2021-04-18 14:26:07 -05:00
|
|
|
$inner_ty: Copy,
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{}
|
2021-02-03 23:31:57 -06:00
|
|
|
|
2021-03-07 20:15:56 -06:00
|
|
|
impl<const LANES: usize> Clone for $name<LANES>
|
2021-02-09 21:13:27 -06:00
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2021-02-03 23:31:57 -06:00
|
|
|
#[inline]
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-07 20:15:56 -06:00
|
|
|
impl<const LANES: usize> Default for $name<LANES>
|
2021-02-09 21:13:27 -06:00
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2021-02-03 23:31:57 -06:00
|
|
|
#[inline]
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::splat(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-07 20:15:56 -06:00
|
|
|
impl<const LANES: usize> PartialEq for $name<LANES>
|
2021-02-09 21:13:27 -06:00
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2021-02-03 23:31:57 -06:00
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.0 == other.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-07 20:15:56 -06:00
|
|
|
impl<const LANES: usize> PartialOrd for $name<LANES>
|
2021-02-09 21:13:27 -06:00
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2021-02-03 23:31:57 -06:00
|
|
|
#[inline]
|
|
|
|
fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> {
|
|
|
|
self.0.partial_cmp(&other.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-07 20:15:56 -06:00
|
|
|
impl<const LANES: usize> core::fmt::Debug for $name<LANES>
|
2021-02-09 21:13:27 -06:00
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2021-02-03 23:31:57 -06:00
|
|
|
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
|
|
|
|
core::fmt::Debug::fmt(&self.0, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitAnd for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
type Output = Self;
|
|
|
|
#[inline]
|
|
|
|
fn bitand(self, rhs: Self) -> Self {
|
|
|
|
Self(self.0 & rhs.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitAnd<bool> for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
type Output = Self;
|
|
|
|
#[inline]
|
|
|
|
fn bitand(self, rhs: bool) -> Self {
|
|
|
|
self & Self::splat(rhs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitAnd<$name<LANES>> for bool
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-12-13 22:58:33 -06:00
|
|
|
type Output = $name<LANES>;
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
2020-12-13 22:58:33 -06:00
|
|
|
fn bitand(self, rhs: $name<LANES>) -> $name<LANES> {
|
|
|
|
$name::<LANES>::splat(self) & rhs
|
2020-11-22 14:18:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitOr for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
type Output = Self;
|
|
|
|
#[inline]
|
|
|
|
fn bitor(self, rhs: Self) -> Self {
|
|
|
|
Self(self.0 | rhs.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitOr<bool> for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
type Output = Self;
|
|
|
|
#[inline]
|
|
|
|
fn bitor(self, rhs: bool) -> Self {
|
|
|
|
self | Self::splat(rhs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitOr<$name<LANES>> for bool
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-12-13 22:58:33 -06:00
|
|
|
type Output = $name<LANES>;
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
2020-12-13 22:58:33 -06:00
|
|
|
fn bitor(self, rhs: $name<LANES>) -> $name<LANES> {
|
|
|
|
$name::<LANES>::splat(self) | rhs
|
2020-11-22 14:18:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitXor for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
type Output = Self;
|
|
|
|
#[inline]
|
|
|
|
fn bitxor(self, rhs: Self) -> Self::Output {
|
|
|
|
Self(self.0 ^ rhs.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitXor<bool> for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
type Output = Self;
|
|
|
|
#[inline]
|
|
|
|
fn bitxor(self, rhs: bool) -> Self::Output {
|
|
|
|
self ^ Self::splat(rhs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitXor<$name<LANES>> for bool
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-12-13 22:58:33 -06:00
|
|
|
type Output = $name<LANES>;
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
2020-12-13 22:58:33 -06:00
|
|
|
fn bitxor(self, rhs: $name<LANES>) -> Self::Output {
|
|
|
|
$name::<LANES>::splat(self) ^ rhs
|
2020-11-22 14:18:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::Not for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-12-13 22:58:33 -06:00
|
|
|
type Output = $name<LANES>;
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
|
|
|
fn not(self) -> Self::Output {
|
|
|
|
Self(!self.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitAndAssign for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
|
|
|
fn bitand_assign(&mut self, rhs: Self) {
|
|
|
|
self.0 &= rhs.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitAndAssign<bool> for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
|
|
|
fn bitand_assign(&mut self, rhs: bool) {
|
|
|
|
*self &= Self::splat(rhs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitOrAssign for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
|
|
|
fn bitor_assign(&mut self, rhs: Self) {
|
|
|
|
self.0 |= rhs.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitOrAssign<bool> for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
|
|
|
fn bitor_assign(&mut self, rhs: bool) {
|
|
|
|
*self |= Self::splat(rhs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitXorAssign for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
|
|
|
fn bitxor_assign(&mut self, rhs: Self) {
|
|
|
|
self.0 ^= rhs.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:13:27 -06:00
|
|
|
impl<const LANES: usize> core::ops::BitXorAssign<bool> for $name<LANES>
|
|
|
|
where
|
2021-03-07 20:15:56 -06:00
|
|
|
$bits_ty<LANES>: LanesAtMost32,
|
2021-02-09 21:13:27 -06:00
|
|
|
{
|
2020-11-22 14:18:31 -06:00
|
|
|
#[inline]
|
|
|
|
fn bitxor_assign(&mut self, rhs: bool) {
|
|
|
|
*self ^= Self::splat(rhs);
|
|
|
|
}
|
|
|
|
}
|
2020-12-13 22:58:33 -06:00
|
|
|
};
|
|
|
|
}
|
2020-10-13 00:28:03 -05:00
|
|
|
|
2020-12-13 22:58:33 -06:00
|
|
|
define_opaque_mask! {
|
|
|
|
/// Mask for vectors with `LANES` 8-bit elements.
|
|
|
|
///
|
|
|
|
/// The layout of this type is unspecified.
|
2021-04-18 14:26:07 -05:00
|
|
|
struct Mask8<const LANES: usize>(mask_impl::Mask8<LANES>);
|
2021-03-07 20:15:56 -06:00
|
|
|
@bits SimdI8
|
2020-12-13 22:58:33 -06:00
|
|
|
}
|
2020-10-13 00:28:03 -05:00
|
|
|
|
2020-12-13 22:58:33 -06:00
|
|
|
define_opaque_mask! {
|
|
|
|
/// Mask for vectors with `LANES` 16-bit elements.
|
|
|
|
///
|
|
|
|
/// The layout of this type is unspecified.
|
2021-04-18 14:26:07 -05:00
|
|
|
struct Mask16<const LANES: usize>(mask_impl::Mask16<LANES>);
|
2021-03-07 20:15:56 -06:00
|
|
|
@bits SimdI16
|
2020-12-13 22:58:33 -06:00
|
|
|
}
|
2020-10-13 00:28:03 -05:00
|
|
|
|
2020-12-13 22:58:33 -06:00
|
|
|
define_opaque_mask! {
|
|
|
|
/// Mask for vectors with `LANES` 32-bit elements.
|
|
|
|
///
|
|
|
|
/// The layout of this type is unspecified.
|
2021-04-18 14:26:07 -05:00
|
|
|
struct Mask32<const LANES: usize>(mask_impl::Mask32<LANES>);
|
2021-03-07 20:15:56 -06:00
|
|
|
@bits SimdI32
|
2020-12-13 22:58:33 -06:00
|
|
|
}
|
2020-10-13 00:28:03 -05:00
|
|
|
|
2020-12-13 22:58:33 -06:00
|
|
|
define_opaque_mask! {
|
|
|
|
/// Mask for vectors with `LANES` 64-bit elements.
|
|
|
|
///
|
|
|
|
/// The layout of this type is unspecified.
|
2021-04-18 14:26:07 -05:00
|
|
|
struct Mask64<const LANES: usize>(mask_impl::Mask64<LANES>);
|
2021-03-07 20:15:56 -06:00
|
|
|
@bits SimdI64
|
2020-12-13 22:58:33 -06:00
|
|
|
}
|
2020-10-13 00:28:03 -05:00
|
|
|
|
2020-12-13 22:58:33 -06:00
|
|
|
define_opaque_mask! {
|
|
|
|
/// Mask for vectors with `LANES` pointer-width elements.
|
|
|
|
///
|
|
|
|
/// The layout of this type is unspecified.
|
2021-04-18 14:26:07 -05:00
|
|
|
struct MaskSize<const LANES: usize>(mask_impl::MaskSize<LANES>);
|
2021-03-07 20:15:56 -06:00
|
|
|
@bits SimdIsize
|
2020-12-13 22:58:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Vector of eight 8-bit masks
|
|
|
|
pub type mask8x8 = Mask8<8>;
|
|
|
|
|
|
|
|
/// Vector of 16 8-bit masks
|
|
|
|
pub type mask8x16 = Mask8<16>;
|
|
|
|
|
|
|
|
/// Vector of 32 8-bit masks
|
|
|
|
pub type mask8x32 = Mask8<32>;
|
|
|
|
|
|
|
|
/// Vector of 16 8-bit masks
|
|
|
|
pub type mask8x64 = Mask8<64>;
|
|
|
|
|
|
|
|
/// Vector of four 16-bit masks
|
|
|
|
pub type mask16x4 = Mask16<4>;
|
|
|
|
|
|
|
|
/// Vector of eight 16-bit masks
|
|
|
|
pub type mask16x8 = Mask16<8>;
|
|
|
|
|
|
|
|
/// Vector of 16 16-bit masks
|
|
|
|
pub type mask16x16 = Mask16<16>;
|
|
|
|
|
|
|
|
/// Vector of 32 16-bit masks
|
|
|
|
pub type mask16x32 = Mask32<32>;
|
|
|
|
|
|
|
|
/// Vector of two 32-bit masks
|
|
|
|
pub type mask32x2 = Mask32<2>;
|
|
|
|
|
|
|
|
/// Vector of four 32-bit masks
|
|
|
|
pub type mask32x4 = Mask32<4>;
|
|
|
|
|
|
|
|
/// Vector of eight 32-bit masks
|
|
|
|
pub type mask32x8 = Mask32<8>;
|
|
|
|
|
|
|
|
/// Vector of 16 32-bit masks
|
|
|
|
pub type mask32x16 = Mask32<16>;
|
|
|
|
|
|
|
|
/// Vector of two 64-bit masks
|
|
|
|
pub type mask64x2 = Mask64<2>;
|
|
|
|
|
|
|
|
/// Vector of four 64-bit masks
|
|
|
|
pub type mask64x4 = Mask64<4>;
|
|
|
|
|
|
|
|
/// Vector of eight 64-bit masks
|
|
|
|
pub type mask64x8 = Mask64<8>;
|
|
|
|
|
|
|
|
/// Vector of two pointer-width masks
|
|
|
|
pub type masksizex2 = MaskSize<2>;
|
|
|
|
|
|
|
|
/// Vector of four pointer-width masks
|
|
|
|
pub type masksizex4 = MaskSize<4>;
|
|
|
|
|
|
|
|
/// Vector of eight pointer-width masks
|
|
|
|
pub type masksizex8 = MaskSize<8>;
|