use super::*;
pick! {
if #[cfg(target_feature="sse2")] {
#[derive(Default, Clone, Copy, PartialEq, Eq)]
#[repr(C, align(16))]
pub struct u16x8 { pub(crate) sse: m128i }
} else if #[cfg(target_feature="simd128")] {
use core::arch::wasm32::*;
#[derive(Clone, Copy)]
#[repr(transparent)]
pub struct u16x8 { pub(crate) simd: v128 }
impl Default for u16x8 {
fn default() -> Self {
Self::splat(0)
}
}
impl PartialEq for u16x8 {
fn eq(&self, other: &Self) -> bool {
u16x8_all_true(u16x8_eq(self.simd, other.simd))
}
}
impl Eq for u16x8 { }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
use core::arch::aarch64::*;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct u16x8 { pub(crate) neon : uint16x8_t }
impl Default for u16x8 {
#[inline]
fn default() -> Self {
Self::splat(0)
}
}
impl PartialEq for u16x8 {
#[inline]
fn eq(&self, other: &Self) -> bool {
unsafe { vminvq_u16(vceqq_u16(self.neon, other.neon))==u16::MAX }
}
}
impl Eq for u16x8 { }
} else {
#[derive(Default, Clone, Copy, PartialEq, Eq)]
#[repr(C, align(16))]
pub struct u16x8 { pub(crate) arr: [u16;8] }
}
}
impl_simd_uint! {
unsafe {
T = u16,
N = 8,
Simd = u16x8,
IntSimd = i16x8,
T_BITS = 16,
T_BITS_MUL_2 = 32,
[0, 1, 2, 3, 4, 5, 6, 7],
optional_type_x86_inner { X86Inner = __m128i },
optional_type_arm_inner { ArmInner = uint16x8_t },
optional_type_wasm_inner { WasmInner = v128 },
}
#[inline]
fn not(self) -> Self::Output {
self ^ cast::<u128, u16x8>(u128::MAX)
}
#[inline]
fn add(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: add_i16_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_add(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe { Self { neon: vaddq_u16(self.neon, rhs.neon) } }
} else {
Self { arr: [
self.arr[0].wrapping_add(rhs.arr[0]),
self.arr[1].wrapping_add(rhs.arr[1]),
self.arr[2].wrapping_add(rhs.arr[2]),
self.arr[3].wrapping_add(rhs.arr[3]),
self.arr[4].wrapping_add(rhs.arr[4]),
self.arr[5].wrapping_add(rhs.arr[5]),
self.arr[6].wrapping_add(rhs.arr[6]),
self.arr[7].wrapping_add(rhs.arr[7]),
]}
}
}
}
#[inline]
fn sub(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: sub_i16_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_sub(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vsubq_u16(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].wrapping_sub(rhs.arr[0]),
self.arr[1].wrapping_sub(rhs.arr[1]),
self.arr[2].wrapping_sub(rhs.arr[2]),
self.arr[3].wrapping_sub(rhs.arr[3]),
self.arr[4].wrapping_sub(rhs.arr[4]),
self.arr[5].wrapping_sub(rhs.arr[5]),
self.arr[6].wrapping_sub(rhs.arr[6]),
self.arr[7].wrapping_sub(rhs.arr[7]),
]}
}
}
}
#[inline]
fn mul(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: mul_i16_keep_low_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_mul(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vmulq_u16(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].wrapping_mul(rhs.arr[0]),
self.arr[1].wrapping_mul(rhs.arr[1]),
self.arr[2].wrapping_mul(rhs.arr[2]),
self.arr[3].wrapping_mul(rhs.arr[3]),
self.arr[4].wrapping_mul(rhs.arr[4]),
self.arr[5].wrapping_mul(rhs.arr[5]),
self.arr[6].wrapping_mul(rhs.arr[6]),
self.arr[7].wrapping_mul(rhs.arr[7]),
]}
}
}
}
#[inline]
fn bitand(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: bitand_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_and(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vandq_u16(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].bitand(rhs.arr[0]),
self.arr[1].bitand(rhs.arr[1]),
self.arr[2].bitand(rhs.arr[2]),
self.arr[3].bitand(rhs.arr[3]),
self.arr[4].bitand(rhs.arr[4]),
self.arr[5].bitand(rhs.arr[5]),
self.arr[6].bitand(rhs.arr[6]),
self.arr[7].bitand(rhs.arr[7]),
]}
}
}
}
#[inline]
fn bitor(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: bitor_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_or(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vorrq_u16(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].bitor(rhs.arr[0]),
self.arr[1].bitor(rhs.arr[1]),
self.arr[2].bitor(rhs.arr[2]),
self.arr[3].bitor(rhs.arr[3]),
self.arr[4].bitor(rhs.arr[4]),
self.arr[5].bitor(rhs.arr[5]),
self.arr[6].bitor(rhs.arr[6]),
self.arr[7].bitor(rhs.arr[7]),
]}
}
}
}
#[inline]
fn bitxor(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: bitxor_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_xor(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: veorq_u16(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].bitxor(rhs.arr[0]),
self.arr[1].bitxor(rhs.arr[1]),
self.arr[2].bitxor(rhs.arr[2]),
self.arr[3].bitxor(rhs.arr[3]),
self.arr[4].bitxor(rhs.arr[4]),
self.arr[5].bitxor(rhs.arr[5]),
self.arr[6].bitxor(rhs.arr[6]),
self.arr[7].bitxor(rhs.arr[7]),
]}
}
}
}
#[inline]
fn simd_eq(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: cmp_eq_mask_i16_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_eq(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vceqq_u16(self.neon, rhs.neon) }}
} else {
Self { arr: [
if self.arr[0] == rhs.arr[0] { u16::MAX } else { 0 },
if self.arr[1] == rhs.arr[1] { u16::MAX } else { 0 },
if self.arr[2] == rhs.arr[2] { u16::MAX } else { 0 },
if self.arr[3] == rhs.arr[3] { u16::MAX } else { 0 },
if self.arr[4] == rhs.arr[4] { u16::MAX } else { 0 },
if self.arr[5] == rhs.arr[5] { u16::MAX } else { 0 },
if self.arr[6] == rhs.arr[6] { u16::MAX } else { 0 },
if self.arr[7] == rhs.arr[7] { u16::MAX } else { 0 },
]}
}
}
}
#[inline]
fn simd_ne(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
!self.simd_eq(rhs)
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_ne(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
!self.simd_eq(rhs)
} else {
Self { arr: [
if self.arr[0] != rhs.arr[0] { u16::MAX } else { 0 },
if self.arr[1] != rhs.arr[1] { u16::MAX } else { 0 },
if self.arr[2] != rhs.arr[2] { u16::MAX } else { 0 },
if self.arr[3] != rhs.arr[3] { u16::MAX } else { 0 },
if self.arr[4] != rhs.arr[4] { u16::MAX } else { 0 },
if self.arr[5] != rhs.arr[5] { u16::MAX } else { 0 },
if self.arr[6] != rhs.arr[6] { u16::MAX } else { 0 },
if self.arr[7] != rhs.arr[7] { u16::MAX } else { 0 },
]}
}
}
}
#[inline]
fn simd_lt(self, rhs: Self) -> Self::Output {
Self::simd_gt(rhs, self)
}
#[inline]
fn simd_gt(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature = "sse2")] {
use safe_arch::*;
let bias = m128i::from([0x8000u16; 8]);
let a_biased = sub_i16_m128i(self.sse, bias);
let b_biased = sub_i16_m128i(rhs.sse, bias);
let mask = cmp_gt_mask_i16_m128i(a_biased, b_biased);
Self { sse: mask }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_gt(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature = "neon", target_arch = "aarch64"))] {
unsafe {
use core::arch::aarch64::*;
Self {
neon: vcgtq_u16(self.neon, rhs.neon),
}
}
} else {
Self {
arr: [
if self.arr[0] > rhs.arr[0] { u16::MAX } else { 0 },
if self.arr[1] > rhs.arr[1] { u16::MAX } else { 0 },
if self.arr[2] > rhs.arr[2] { u16::MAX } else { 0 },
if self.arr[3] > rhs.arr[3] { u16::MAX } else { 0 },
if self.arr[4] > rhs.arr[4] { u16::MAX } else { 0 },
if self.arr[5] > rhs.arr[5] { u16::MAX } else { 0 },
if self.arr[6] > rhs.arr[6] { u16::MAX } else { 0 },
if self.arr[7] > rhs.arr[7] { u16::MAX } else { 0 },
]
}
}
}
}
#[inline]
fn simd_le(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
!self.simd_gt(rhs)
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_le(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
!self.simd_gt(rhs)
} else {
Self { arr: [
if self.arr[0] <= rhs.arr[0] { u16::MAX } else { 0 },
if self.arr[1] <= rhs.arr[1] { u16::MAX } else { 0 },
if self.arr[2] <= rhs.arr[2] { u16::MAX } else { 0 },
if self.arr[3] <= rhs.arr[3] { u16::MAX } else { 0 },
if self.arr[4] <= rhs.arr[4] { u16::MAX } else { 0 },
if self.arr[5] <= rhs.arr[5] { u16::MAX } else { 0 },
if self.arr[6] <= rhs.arr[6] { u16::MAX } else { 0 },
if self.arr[7] <= rhs.arr[7] { u16::MAX } else { 0 },
]}
}
}
}
#[inline]
fn simd_ge(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
!self.simd_lt(rhs)
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_ge(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
!self.simd_lt(rhs)
} else {
Self { arr: [
if self.arr[0] >= rhs.arr[0] { u16::MAX } else { 0 },
if self.arr[1] >= rhs.arr[1] { u16::MAX } else { 0 },
if self.arr[2] >= rhs.arr[2] { u16::MAX } else { 0 },
if self.arr[3] >= rhs.arr[3] { u16::MAX } else { 0 },
if self.arr[4] >= rhs.arr[4] { u16::MAX } else { 0 },
if self.arr[5] >= rhs.arr[5] { u16::MAX } else { 0 },
if self.arr[6] >= rhs.arr[6] { u16::MAX } else { 0 },
if self.arr[7] >= rhs.arr[7] { u16::MAX } else { 0 },
]}
}
}
}
#[inline]
pub fn reduce_add(self) -> u16 {
pick! {
if #[cfg(target_feature="sse2")] {
let hi64 = shuffle_ai_f32_all_m128i::<0b01_00_11_10>(self.sse);
let sum64 = add_i16_m128i(self.sse, hi64);
let hi32 = shuffle_ai_f32_all_m128i::<0b11_10_00_01>(sum64);
let sum32 = add_i16_m128i(sum64, hi32);
let lo16 = shr_imm_u32_m128i::<16>(sum32);
let sum16 = add_i16_m128i(sum32, lo16);
extract_i16_as_i32_m128i::<0>(sum16) as u16
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe { vaddvq_u16(self.neon) }
} else {
let arr: [u16; 8] = cast(self);
let mut r = arr[0];
r = r.wrapping_add(arr[1]);
r = r.wrapping_add(arr[2]);
r = r.wrapping_add(arr[3]);
r = r.wrapping_add(arr[4]);
r = r.wrapping_add(arr[5]);
r = r.wrapping_add(arr[6]);
r.wrapping_add(arr[7])
}
}
}
#[inline]
pub fn reduce_mul(self) -> u16 {
pick! {
if #[cfg(target_feature="sse2")] {
let high_64 = shuffle_ai_f32_all_m128i::<0b01_00_11_10>(self.sse);
let reduce_64 = mul_i16_keep_low_m128i(self.sse, high_64);
let high_32 = shuffle_ai_f32_all_m128i::<0b11_10_00_01>(reduce_64);
let reduce_32 = mul_i16_keep_low_m128i(reduce_64, high_32);
let high_16 = shr_imm_u32_m128i::<16>(reduce_32);
let reduce_16 = mul_i16_keep_low_m128i(reduce_32, high_16);
extract_i16_as_i32_m128i::<0>(reduce_16) as u16
} else if #[cfg(target_feature="simd128")] {
let high_64 = u64x2_shuffle::<1, 0>(self.simd, self.simd);
let reduce_64 = u16x8_mul(self.simd, high_64);
let high_32 = u32x4_shuffle::<1, 0, 0, 0>(reduce_64, reduce_64);
let reduce_32 = u16x8_mul(reduce_64, high_32);
let high_16 = u16x8_shuffle::<1, 0, 0, 0, 0, 0, 0, 0>(reduce_32, reduce_32);
let reduce_16 = u16x8_mul(reduce_32, high_16);
u16x8_extract_lane::<0>(reduce_16)
} else if #[cfg(all(target_feature="neon", target_arch="aarch64"))] {
unsafe {
let high_64 = vextq_u16::<4>(self.neon, self.neon);
let reduce_64 = vmulq_u16(self.neon, high_64);
let high_32 = vrev64q_u16(reduce_64);
let reduce_32 = vmulq_u16(reduce_64, high_32);
let high_16 = vrev32q_u16(reduce_32);
let reduce_16 = vmulq_u16(reduce_32, high_16);
vgetq_lane_u16::<0>(reduce_16)
}
} else {
let array = self.to_array();
let mut result = array[0];
result = result.wrapping_mul(array[1]);
result = result.wrapping_mul(array[2]);
result = result.wrapping_mul(array[3]);
result = result.wrapping_mul(array[4]);
result = result.wrapping_mul(array[5]);
result = result.wrapping_mul(array[6]);
result.wrapping_mul(array[7])
}
}
}
#[inline]
pub fn bitselect(self, if_one: Self, if_zero: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self {
sse: bitor_m128i(
bitand_m128i(if_one.sse, self.sse),
bitandnot_m128i(self.sse, if_zero.sse),
),
}
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_bitselect(if_one.simd, if_zero.simd, self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vbslq_u16(self.neon, if_one.neon, if_zero.neon) }}
} else {
generic_bit_blend(self, if_one, if_zero)
}
}
}
#[inline]
fn select(self, if_true: Self, if_false: Self) -> Self {
pick! {
if #[cfg(target_feature="sse4.1")] {
Self { sse: blend_varying_i8_m128i(if_false.sse, if_true.sse, self.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_bitselect(if_true.simd, if_false.simd, self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vbslq_u16(self.neon, if_true.neon, if_false.neon) }}
} else {
generic_bit_blend(self, if_true, if_false)
}
}
}
#[inline]
pub fn to_bitmask(self) -> u32 {
pick! {
if #[cfg(target_feature="sse2")] {
(move_mask_i8_m128i( pack_i16_to_i8_m128i(self.sse,self.sse)) as u32) & 0xff
} else if #[cfg(target_feature="simd128")] {
u16x8_bitmask(self.simd) as u32
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe
{
let masked = vcltzq_s16(self.cast_signed().neon);
let selectbit : uint16x8_t = core::mem::transmute([1u16, 2, 4, 8, 16, 32, 64, 128]);
let r = vandq_u16(masked, selectbit);
vaddvq_u16(r) as u32
}
} else {
((self.arr[0].cast_signed() < 0) as u32) |
((self.arr[1].cast_signed() < 0) as u32) << 1 |
((self.arr[2].cast_signed() < 0) as u32) << 2 |
((self.arr[3].cast_signed() < 0) as u32) << 3 |
((self.arr[4].cast_signed() < 0) as u32) << 4 |
((self.arr[5].cast_signed() < 0) as u32) << 5 |
((self.arr[6].cast_signed() < 0) as u32) << 6 |
((self.arr[7].cast_signed() < 0) as u32) << 7
}
}
}
#[inline]
pub fn any(self) -> bool {
pick! {
if #[cfg(target_feature="sse2")] {
(move_mask_i8_m128i(self.sse) & 0b1010101010101010) != 0
} else if #[cfg(target_feature="simd128")] {
u16x8_bitmask(self.simd) != 0
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe {
vminvq_s16(self.cast_signed().neon) < 0
}
} else {
let v : [u64;2] = cast(self);
((v[0] | v[1]) & 0x8000800080008000) != 0
}
}
}
#[inline]
pub fn all(self) -> bool {
pick! {
if #[cfg(target_feature="sse2")] {
(move_mask_i8_m128i(self.sse) & 0b1010101010101010) == 0b1010101010101010
} else if #[cfg(target_feature="simd128")] {
u16x8_bitmask(self.simd) == 0b11111111
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe {
vmaxvq_s16(self.cast_signed().neon) < 0
}
} else {
let v : [u64;2] = cast(self);
(v[0] & v[1] & 0x8000800080008000) == 0x8000800080008000
}
}
}
#[inline]
pub fn shuffle(self, indices: u16x8) -> Self {
pick! {
if #[cfg(all(target_feature = "avx512bw", target_feature = "avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_permutexvar_epi16;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_permutexvar_epi16;
Self { sse: unsafe { m128i(_mm_permutexvar_epi16(indices.sse.0, self.sse.0)) } }
} else if #[cfg(any(
target_feature = "ssse3",
all(target_arch = "aarch64", target_feature = "neon"),
target_feature = "simd128",
))] {
let self_bytes = cast::<u16x8, u8x16>(self);
let byte_indices = indices.to_byte_indices();
cast::<u8x16, u16x8>(self_bytes.shuffle(byte_indices))
} else {
let self_array = self.to_array();
let indices_array = indices.to_array();
let mut result = [0; 8];
for i in 0..8 {
let index = indices_array[i] as usize;
if index < 8 {
result[i] = self_array[index];
}
}
Self::new(result)
}
}
}
#[inline]
pub fn shuffle_zeroing(self, indices: u16x8) -> Self {
pick! {
if #[cfg(any(
target_feature = "ssse3",
all(target_arch = "aarch64", target_feature = "neon"),
target_feature = "simd128",
))] {
self.shuffle(indices) & indices.simd_lt(8)
} else {
self.shuffle(indices)
}
}
}
#[inline]
pub fn shuffle_wrapping(self, indices: u16x8) -> Self {
pick! {
if #[cfg(all(target_feature = "avx512bw", target_feature = "avx512vl"))] {
self.shuffle(indices)
} else {
self.shuffle(indices & 7)
}
}
}
#[inline]
fn shuffle(self: [u16x8; 2], indices: u16x8) -> u16x8 {
pick! {
if #[cfg(all(target_feature = "avx512bw", target_feature = "avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_permutex2var_epi16;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_permutex2var_epi16;
u16x8 {
sse: unsafe {
m128i(_mm_permutex2var_epi16(self[0].sse.0, indices.sse.0, self[1].sse.0))
},
}
} else {
let self_bytes = cast::<[u16x8; 2], [u8x16; 2]>(self);
let byte_indices = indices.to_byte_indices();
cast::<u8x16, u16x8>(self_bytes.shuffle(byte_indices))
}
}
}
#[inline]
fn shuffle_zeroing(self: [u16x8; 2], indices: u16x8) -> u16x8 {
self.shuffle(indices) & indices.simd_lt(16)
}
#[inline]
fn shuffle_wrapping(self: [u16x8; 2], indices: u16x8) -> u16x8 {
pick! {
if #[cfg(all(target_feature = "avx512bw", target_feature = "avx512vl"))] {
self.shuffle(indices)
} else {
self.shuffle(indices & 15)
}
}
}
#[inline]
fn shuffle(self: [u16x8; 3], indices: u16x8) -> u16x8 {
let self_bytes = cast::<[u16x8; 3], [u8x16; 3]>(self);
let byte_indices = indices.to_byte_indices();
cast::<u8x16, u16x8>(self_bytes.shuffle(byte_indices))
}
#[inline]
fn shuffle_zeroing(self: [u16x8; 3], indices: u16x8) -> u16x8 {
self.shuffle(indices) & indices.simd_lt(24)
}
#[inline]
fn shuffle_wrapping(self: [u16x8; 3], indices: u16x8) -> u16x8 {
self.shuffle(indices % 24)
}
#[inline]
fn shuffle(self: [u16x8; 4], indices: u16x8) -> u16x8 {
let self_bytes = cast::<[u16x8; 4], [u8x16; 4]>(self);
let byte_indices = indices.to_byte_indices();
cast::<u8x16, u16x8>(self_bytes.shuffle(byte_indices))
}
#[inline]
fn shuffle_zeroing(self: [u16x8; 4], indices: u16x8) -> u16x8 {
self.shuffle(indices) & indices.simd_lt(32)
}
#[inline]
fn shuffle_wrapping(self: [u16x8; 4], indices: u16x8) -> u16x8 {
self.shuffle(indices & 31)
}
#[inline]
pub fn transpose(data: [Self; 8]) -> [Self; 8] {
pick! {
if #[cfg(target_feature="sse2")] {
let a1 = unpack_low_i16_m128i(data[0].sse, data[1].sse);
let a2 = unpack_high_i16_m128i(data[0].sse, data[1].sse);
let a3 = unpack_low_i16_m128i(data[2].sse, data[3].sse);
let a4 = unpack_high_i16_m128i(data[2].sse, data[3].sse);
let a5 = unpack_low_i16_m128i(data[4].sse, data[5].sse);
let a6 = unpack_high_i16_m128i(data[4].sse, data[5].sse);
let a7 = unpack_low_i16_m128i(data[6].sse, data[7].sse);
let a8 = unpack_high_i16_m128i(data[6].sse, data[7].sse);
let b1 = unpack_low_i32_m128i(a1, a3);
let b2 = unpack_high_i32_m128i(a1, a3);
let b3 = unpack_low_i32_m128i(a2, a4);
let b4 = unpack_high_i32_m128i(a2, a4);
let b5 = unpack_low_i32_m128i(a5, a7);
let b6 = unpack_high_i32_m128i(a5, a7);
let b7 = unpack_low_i32_m128i(a6, a8);
let b8 = unpack_high_i32_m128i(a6, a8);
[
Self { sse: unpack_low_i64_m128i(b1, b5) },
Self { sse: unpack_high_i64_m128i(b1, b5) },
Self { sse: unpack_low_i64_m128i(b2, b6) },
Self { sse: unpack_high_i64_m128i(b2, b6) },
Self { sse: unpack_low_i64_m128i(b3, b7) },
Self { sse: unpack_high_i64_m128i(b3, b7) },
Self { sse: unpack_low_i64_m128i(b4, b8) },
Self { sse: unpack_high_i64_m128i(b4, b8) } ,
]
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
#[inline] fn vtrq32(a : uint16x8_t, b : uint16x8_t) -> (uint16x8_t, uint16x8_t)
{
unsafe {
let r = vtrnq_u32(vreinterpretq_u32_u16(a),vreinterpretq_u32_u16(b));
(vreinterpretq_u16_u32(r.0), vreinterpretq_u16_u32(r.1))
}
}
unsafe {
let (q0,q2) = vtrq32(data[0].neon, data[2].neon);
let (q1,q3) = vtrq32(data[1].neon, data[3].neon);
let (q4,q6) = vtrq32(data[4].neon, data[6].neon);
let (q5,q7) = vtrq32(data[5].neon, data[7].neon);
let b1 = vtrnq_u16(q0, q1);
let b2 = vtrnq_u16(q2, q3);
let b3 = vtrnq_u16(q4, q5);
let b4 = vtrnq_u16(q6, q7);
[
Self { neon: vcombine_u16(vget_low_u16(b1.0), vget_low_u16(b3.0)) },
Self { neon: vcombine_u16(vget_low_u16(b1.1), vget_low_u16(b3.1)) },
Self { neon: vcombine_u16(vget_low_u16(b2.0), vget_low_u16(b4.0)) },
Self { neon: vcombine_u16(vget_low_u16(b2.1), vget_low_u16(b4.1)) },
Self { neon: vcombine_u16(vget_high_u16(b1.0), vget_high_u16(b3.0)) },
Self { neon: vcombine_u16(vget_high_u16(b1.1), vget_high_u16(b3.1)) },
Self { neon: vcombine_u16(vget_high_u16(b2.0), vget_high_u16(b4.0)) },
Self { neon: vcombine_u16(vget_high_u16(b2.1), vget_high_u16(b4.1)) },
]
}
} else if #[cfg(target_feature="simd128")] {
#[inline] fn lo_i16(a : v128, b : v128) -> v128 { u16x8_shuffle::<0, 8, 1, 9, 2, 10, 3, 11>(a,b) }
#[inline] fn hi_i16(a : v128, b : v128) -> v128 { u16x8_shuffle::<4, 12, 5, 13, 6, 14, 7, 15>(a,b) }
#[inline] fn lo_i32(a : v128, b : v128) -> v128 { u32x4_shuffle::<0, 4, 1, 5>(a,b) }
#[inline] fn hi_i32(a : v128, b : v128) -> v128 { u32x4_shuffle::<2, 6, 3, 7>(a,b) }
#[inline] fn lo_i64(a : v128, b : v128) -> v128 { u64x2_shuffle::<0, 2>(a,b) }
#[inline] fn hi_i64(a : v128, b : v128) -> v128 { u64x2_shuffle::<1, 3>(a,b) }
let a1 = lo_i16(data[0].simd, data[1].simd);
let a2 = hi_i16(data[0].simd, data[1].simd);
let a3 = lo_i16(data[2].simd, data[3].simd);
let a4 = hi_i16(data[2].simd, data[3].simd);
let a5 = lo_i16(data[4].simd, data[5].simd);
let a6 = hi_i16(data[4].simd, data[5].simd);
let a7 = lo_i16(data[6].simd, data[7].simd);
let a8 = hi_i16(data[6].simd, data[7].simd);
let b1 = lo_i32(a1, a3);
let b2 = hi_i32(a1, a3);
let b3 = lo_i32(a2, a4);
let b4 = hi_i32(a2, a4);
let b5 = lo_i32(a5, a7);
let b6 = hi_i32(a5, a7);
let b7 = lo_i32(a6, a8);
let b8 = hi_i32(a6, a8);
[
Self { simd: lo_i64(b1, b5) },
Self { simd: hi_i64(b1, b5) },
Self { simd: lo_i64(b2, b6) },
Self { simd: hi_i64(b2, b6) },
Self { simd: lo_i64(b3, b7) },
Self { simd: hi_i64(b3, b7) },
Self { simd: lo_i64(b4, b8) },
Self { simd: hi_i64(b4, b8) } ,
]
} else {
#[inline(always)]
fn transpose_column(data: &[u16x8; 8], index: usize) -> u16x8 {
u16x8::new([
data[0].as_array()[index],
data[1].as_array()[index],
data[2].as_array()[index],
data[3].as_array()[index],
data[4].as_array()[index],
data[5].as_array()[index],
data[6].as_array()[index],
data[7].as_array()[index],
])
}
[
transpose_column(&data, 0),
transpose_column(&data, 1),
transpose_column(&data, 2),
transpose_column(&data, 3),
transpose_column(&data, 4),
transpose_column(&data, 5),
transpose_column(&data, 6),
transpose_column(&data, 7),
]
}
}
}
#[inline]
fn shl(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(all(target_feature="avx512bw", target_feature="avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_sllv_epi16;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_sllv_epi16;
let rhs = bitand_m128i(rhs.sse, set_splat_i16_m128i(15));
cast(unsafe { _mm_sllv_epi16(self.sse.0, rhs.0) })
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe {
let rhs = vreinterpretq_s16_u16(vandq_u16(rhs.neon, vmovq_n_u16(15)));
Self { neon: vshlq_u16(self.neon, rhs) }
}
} else {
let self_array = self.to_array();
let rhs_array = rhs.to_array();
Self::new([
self_array[0].wrapping_shl(rhs_array[0] as u32),
self_array[1].wrapping_shl(rhs_array[1] as u32),
self_array[2].wrapping_shl(rhs_array[2] as u32),
self_array[3].wrapping_shl(rhs_array[3] as u32),
self_array[4].wrapping_shl(rhs_array[4] as u32),
self_array[5].wrapping_shl(rhs_array[5] as u32),
self_array[6].wrapping_shl(rhs_array[6] as u32),
self_array[7].wrapping_shl(rhs_array[7] as u32),
])
}
}
}
#[inline]
fn shl(self, rhs: u32) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
#[expect(clippy::suspicious_arithmetic_impl)]
let shift = cast([rhs as u64 & 15, 0]);
Self { sse: shl_all_u16_m128i(self.sse, shift) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_shl(self.simd, rhs) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
#[expect(clippy::suspicious_arithmetic_impl)]
unsafe {Self { neon: vshlq_u16(self.neon, vmovq_n_s16(rhs as i16 & 15)) }}
} else {
Self { arr: [
self.arr[0].wrapping_shl(rhs),
self.arr[1].wrapping_shl(rhs),
self.arr[2].wrapping_shl(rhs),
self.arr[3].wrapping_shl(rhs),
self.arr[4].wrapping_shl(rhs),
self.arr[5].wrapping_shl(rhs),
self.arr[6].wrapping_shl(rhs),
self.arr[7].wrapping_shl(rhs),
]}
}
}
}
#[inline]
fn shr(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(all(target_feature="avx512bw", target_feature="avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_srlv_epi16;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_srlv_epi16;
let rhs = bitand_m128i(rhs.sse, set_splat_i16_m128i(15));
cast(unsafe { _mm_srlv_epi16(self.sse.0, rhs.0) })
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe {
let neg_rhs = vnegq_s16(vreinterpretq_s16_u16(vandq_u16(rhs.neon, vmovq_n_u16(15))));
Self { neon: vshlq_u16(self.neon, neg_rhs) }
}
} else {
let self_array = self.to_array();
let rhs_array = rhs.to_array();
Self::new([
self_array[0].wrapping_shr(rhs_array[0] as u32),
self_array[1].wrapping_shr(rhs_array[1] as u32),
self_array[2].wrapping_shr(rhs_array[2] as u32),
self_array[3].wrapping_shr(rhs_array[3] as u32),
self_array[4].wrapping_shr(rhs_array[4] as u32),
self_array[5].wrapping_shr(rhs_array[5] as u32),
self_array[6].wrapping_shr(rhs_array[6] as u32),
self_array[7].wrapping_shr(rhs_array[7] as u32),
])
}
}
}
#[inline]
fn shr(self, rhs: u32) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
#[expect(clippy::suspicious_arithmetic_impl)]
let shift = cast([rhs as u64 & 15, 0]);
Self { sse: shr_all_u16_m128i(self.sse, shift) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_shr(self.simd, rhs) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
#[expect(clippy::suspicious_arithmetic_impl)]
unsafe {Self { neon: vshlq_u16(self.neon, vmovq_n_s16( -(rhs as i16 & 15))) }}
} else {
Self { arr: [
self.arr[0].wrapping_shr(rhs),
self.arr[1].wrapping_shr(rhs),
self.arr[2].wrapping_shr(rhs),
self.arr[3].wrapping_shr(rhs),
self.arr[4].wrapping_shr(rhs),
self.arr[5].wrapping_shr(rhs),
self.arr[6].wrapping_shr(rhs),
self.arr[7].wrapping_shr(rhs),
]}
}
}
}
#[inline]
pub fn max(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse4.1")] {
Self { sse: max_u16_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_max(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vmaxq_u16(self.neon, rhs.neon) }}
} else {
let arr: [u16; 8] = cast(self);
let rhs: [u16; 8] = cast(rhs);
cast([
arr[0].max(rhs[0]),
arr[1].max(rhs[1]),
arr[2].max(rhs[2]),
arr[3].max(rhs[3]),
arr[4].max(rhs[4]),
arr[5].max(rhs[5]),
arr[6].max(rhs[6]),
arr[7].max(rhs[7]),
])
}
}
}
#[inline]
pub fn min(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse4.1")] {
Self { sse: min_u16_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_min(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vminq_u16(self.neon, rhs.neon) }}
} else {
let arr: [u16; 8] = cast(self);
let rhs: [u16; 8] = cast(rhs);
cast([
arr[0].min(rhs[0]),
arr[1].min(rhs[1]),
arr[2].min(rhs[2]),
arr[3].min(rhs[3]),
arr[4].min(rhs[4]),
arr[5].min(rhs[5]),
arr[6].min(rhs[6]),
arr[7].min(rhs[7]),
])
}
}
}
#[inline]
pub fn reduce_max(self) -> u16 {
pick! {
if #[cfg(all(target_feature="ssse3", target_feature="sse4.1"))] {
let hi64 = shuffle_ai_f32_all_m128i::<0b01_00_11_10>(self.sse);
let sum64 = max_u16_m128i(self.sse, hi64);
let hi32 = shuffle_ai_f32_all_m128i::<0b11_10_00_01>(sum64);
let sum32 = max_u16_m128i(sum64, hi32);
let lo16 = shr_imm_u32_m128i::<16>(sum32);
let sum16 = max_u16_m128i(sum32, lo16);
extract_i16_as_i32_m128i::<0>(sum16) as u16
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe { vmaxvq_u16(self.neon) }
} else {
let arr: [u16; 8] = cast(self);
let mut r = arr[0];
r = r.max(arr[1]);
r = r.max(arr[2]);
r = r.max(arr[3]);
r = r.max(arr[4]);
r = r.max(arr[5]);
r = r.max(arr[6]);
r.max(arr[7])
}
}
}
#[inline]
pub fn reduce_min(self) -> u16 {
pick! {
if #[cfg(all(target_feature="ssse3", target_feature="sse4.1"))] {
let hi64 = shuffle_ai_f32_all_m128i::<0b01_00_11_10>(self.sse);
let sum64 = min_u16_m128i(self.sse, hi64);
let hi32 = shuffle_ai_f32_all_m128i::<0b11_10_00_01>(sum64);
let sum32 = min_u16_m128i(sum64, hi32);
let lo16 = shr_imm_u32_m128i::<16>(sum32);
let sum16 = min_u16_m128i(sum32, lo16);
extract_i16_as_i32_m128i::<0>(sum16) as u16
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe { vminvq_u16(self.neon) }
} else {
let arr: [u16; 8] = cast(self);
let mut r = arr[0];
r = r.min(arr[1]);
r = r.min(arr[2]);
r = r.min(arr[3]);
r = r.min(arr[4]);
r = r.min(arr[5]);
r = r.min(arr[6]);
r.min(arr[7])
}
}
}
#[inline]
pub fn unbounded_shl(self, rhs: Self) -> Self {
pick! {
if #[cfg(all(target_feature="avx512bw", target_feature="avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_sllv_epi16;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_sllv_epi16;
cast(unsafe { _mm_sllv_epi16(self.sse.0, rhs.sse.0) })
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe {
Self { neon: vshlq_u16(self.neon, vreinterpretq_s16_u16(rhs.neon)) } & rhs.simd_lt(16)
}
} else {
let self_array = self.to_array();
let rhs_array = rhs.to_array();
Self::new([
self_array[0].unbounded_shl(rhs_array[0] as u32),
self_array[1].unbounded_shl(rhs_array[1] as u32),
self_array[2].unbounded_shl(rhs_array[2] as u32),
self_array[3].unbounded_shl(rhs_array[3] as u32),
self_array[4].unbounded_shl(rhs_array[4] as u32),
self_array[5].unbounded_shl(rhs_array[5] as u32),
self_array[6].unbounded_shl(rhs_array[6] as u32),
self_array[7].unbounded_shl(rhs_array[7] as u32),
])
}
}
}
#[inline]
pub fn unbounded_shl_scalar(self, rhs: u32) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: shl_all_u16_m128i(self.sse, cast([rhs as u64, 0])) }
} else if #[cfg(target_feature="simd128")] {
if rhs >= 16 { Self::ZERO } else { Self { simd: u16x8_shl(self.simd, rhs) } }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe { Self { neon: vshlq_u16(self.neon, vmovq_n_s16(rhs.min(16) as i16)) } }
} else {
Self { arr: [
self.arr[0].unbounded_shl(rhs),
self.arr[1].unbounded_shl(rhs),
self.arr[2].unbounded_shl(rhs),
self.arr[3].unbounded_shl(rhs),
self.arr[4].unbounded_shl(rhs),
self.arr[5].unbounded_shl(rhs),
self.arr[6].unbounded_shl(rhs),
self.arr[7].unbounded_shl(rhs),
]}
}
}
}
#[inline]
pub fn unbounded_shr(self, rhs: Self) -> Self {
pick! {
if #[cfg(all(target_feature="avx512bw", target_feature="avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_srlv_epi16;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_srlv_epi16;
cast(unsafe { _mm_srlv_epi16(self.sse.0, rhs.sse.0) })
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe {
Self { neon: vshlq_u16(self.neon, vnegq_s16(vreinterpretq_s16_u16(rhs.neon))) } & rhs.simd_lt(16)
}
} else {
let self_array = self.to_array();
let rhs_array = rhs.to_array();
Self::new([
self_array[0].unbounded_shr(rhs_array[0] as u32),
self_array[1].unbounded_shr(rhs_array[1] as u32),
self_array[2].unbounded_shr(rhs_array[2] as u32),
self_array[3].unbounded_shr(rhs_array[3] as u32),
self_array[4].unbounded_shr(rhs_array[4] as u32),
self_array[5].unbounded_shr(rhs_array[5] as u32),
self_array[6].unbounded_shr(rhs_array[6] as u32),
self_array[7].unbounded_shr(rhs_array[7] as u32),
])
}
}
}
#[inline]
pub fn unbounded_shr_scalar(self, rhs: u32) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: shr_all_u16_m128i(self.sse, cast([rhs as u64, 0])) }
} else if #[cfg(target_feature="simd128")] {
if rhs < 16 { Self { simd: u16x8_shr(self.simd, rhs) } } else { Self::ZERO }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {
Self { neon: vshlq_u16(self.neon, vmovq_n_s16(-rhs.min(16).cast_signed() as i16)) }
}
} else {
Self {
arr: [
self.arr[0].unbounded_shr(rhs),
self.arr[1].unbounded_shr(rhs),
self.arr[2].unbounded_shr(rhs),
self.arr[3].unbounded_shr(rhs),
self.arr[4].unbounded_shr(rhs),
self.arr[5].unbounded_shr(rhs),
self.arr[6].unbounded_shr(rhs),
self.arr[7].unbounded_shr(rhs),
],
}
}
}
}
#[inline]
pub fn saturating_add(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: add_saturating_u16_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_add_sat(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vqaddq_u16(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].saturating_add(rhs.arr[0]),
self.arr[1].saturating_add(rhs.arr[1]),
self.arr[2].saturating_add(rhs.arr[2]),
self.arr[3].saturating_add(rhs.arr[3]),
self.arr[4].saturating_add(rhs.arr[4]),
self.arr[5].saturating_add(rhs.arr[5]),
self.arr[6].saturating_add(rhs.arr[6]),
self.arr[7].saturating_add(rhs.arr[7]),
]}
}
}
}
#[inline]
pub fn saturating_sub(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: sub_saturating_u16_m128i(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: u16x8_sub_sat(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vqsubq_u16(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].saturating_sub(rhs.arr[0]),
self.arr[1].saturating_sub(rhs.arr[1]),
self.arr[2].saturating_sub(rhs.arr[2]),
self.arr[3].saturating_sub(rhs.arr[3]),
self.arr[4].saturating_sub(rhs.arr[4]),
self.arr[5].saturating_sub(rhs.arr[5]),
self.arr[6].saturating_sub(rhs.arr[6]),
self.arr[7].saturating_sub(rhs.arr[7]),
]}
}
}
}
#[inline]
pub fn overflowing_mul(self, rhs: Self) -> (Self, Self) {
let (low, high) = self.mul_keep_low_high(rhs);
let overflow = high.simd_ne(Self::ZERO);
(low, overflow)
}
optional_fn_widening_mul {
#[inline]
pub fn widening_mul(self, rhs: Self) -> u32x8 {
pick! {
if #[cfg(target_feature="avx2")] {
let a = convert_to_i32_m256i_from_u16_m128i(self.sse);
let b = convert_to_i32_m256i_from_u16_m128i(rhs.sse);
u32x8 { avx2: mul_i32_keep_low_m256i(a,b) }
} else if #[cfg(target_feature="sse2")] {
let low = mul_i16_keep_low_m128i(self.sse, rhs.sse);
let high = mul_u16_keep_high_m128i(self.sse, rhs.sse);
u32x8 {
a: u32x4 { sse:unpack_low_i16_m128i(low, high) },
b: u32x4 { sse:unpack_high_i16_m128i(low, high) }
}
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
let lhs_low = unsafe { vget_low_u16(self.neon) };
let rhs_low = unsafe { vget_low_u16(rhs.neon) };
let lhs_high = unsafe { vget_high_u16(self.neon) };
let rhs_high = unsafe { vget_high_u16(rhs.neon) };
let low = unsafe { vmull_u16(lhs_low, rhs_low) };
let high = unsafe { vmull_u16(lhs_high, rhs_high) };
u32x8 { a: u32x4 { neon: low }, b: u32x4 {neon: high } }
} else {
let a = self.as_array();
let b = rhs.as_array();
u32x8::new([
u32::from(a[0]) * u32::from(b[0]),
u32::from(a[1]) * u32::from(b[1]),
u32::from(a[2]) * u32::from(b[2]),
u32::from(a[3]) * u32::from(b[3]),
u32::from(a[4]) * u32::from(b[4]),
u32::from(a[5]) * u32::from(b[5]),
u32::from(a[6]) * u32::from(b[6]),
u32::from(a[7]) * u32::from(b[7]),
])
}
}
}
}
#[inline]
pub fn mul_keep_low_high(self, rhs: Self) -> (Self, Self) {
pick! {
if #[cfg(target_feature="simd128")] {
let low_wide_mul = u32x4_extmul_low_u16x8(self.simd, rhs.simd);
let high_wide_mul = u32x4_extmul_high_u16x8(self.simd, rhs.simd);
(
Self { simd: u16x8_shuffle::<0, 2, 4, 6, 8, 10, 12, 14>(low_wide_mul, high_wide_mul) },
Self { simd: u16x8_shuffle::<1, 3, 5, 7, 9, 11, 13, 15>(low_wide_mul, high_wide_mul) },
)
} else if #[cfg(all(target_feature="neon", target_arch="aarch64"))] {
unsafe {
let low_wide_mul = vreinterpretq_u16_u32(
vmull_u16(vget_low_u16(self.neon), vget_low_u16(rhs.neon)),
);
let high_wide_mul = vreinterpretq_u16_u32(
vmull_u16(vget_high_u16(self.neon), vget_high_u16(rhs.neon)),
);
let low_high = vuzpq_u16(low_wide_mul, high_wide_mul);
(
Self { neon: low_high.0 },
Self { neon: low_high.1 },
)
}
} else {
let self_array = self.to_array();
let rhs_array = rhs.to_array();
let widening_mul = [
(self_array[0] as u32).wrapping_mul(rhs_array[0] as u32),
(self_array[1] as u32).wrapping_mul(rhs_array[1] as u32),
(self_array[2] as u32).wrapping_mul(rhs_array[2] as u32),
(self_array[3] as u32).wrapping_mul(rhs_array[3] as u32),
(self_array[4] as u32).wrapping_mul(rhs_array[4] as u32),
(self_array[5] as u32).wrapping_mul(rhs_array[5] as u32),
(self_array[6] as u32).wrapping_mul(rhs_array[6] as u32),
(self_array[7] as u32).wrapping_mul(rhs_array[7] as u32),
];
(
Self::new([
widening_mul[0] as u16,
widening_mul[1] as u16,
widening_mul[2] as u16,
widening_mul[3] as u16,
widening_mul[4] as u16,
widening_mul[5] as u16,
widening_mul[6] as u16,
widening_mul[7] as u16,
]),
Self::new([
(widening_mul[0] >> 16) as u16,
(widening_mul[1] >> 16) as u16,
(widening_mul[2] >> 16) as u16,
(widening_mul[3] >> 16) as u16,
(widening_mul[4] >> 16) as u16,
(widening_mul[5] >> 16) as u16,
(widening_mul[6] >> 16) as u16,
(widening_mul[7] >> 16) as u16,
]),
)
}
}
}
#[inline]
pub fn mul_keep_high(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: mul_u16_keep_high_m128i(self.sse, rhs.sse) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
let lhs_low = unsafe { vget_low_u16(self.neon) };
let rhs_low = unsafe { vget_low_u16(rhs.neon) };
let lhs_high = unsafe { vget_high_u16(self.neon) };
let rhs_high = unsafe { vget_high_u16(rhs.neon) };
let low = unsafe { vmull_u16(lhs_low, rhs_low) };
let high = unsafe { vmull_u16(lhs_high, rhs_high) };
u16x8 { neon: unsafe { vuzpq_u16(vreinterpretq_u16_u32(low), vreinterpretq_u16_u32(high)).1 } }
} else if #[cfg(target_feature="simd128")] {
let low = u32x4_extmul_low_u16x8(self.simd, rhs.simd);
let high = u32x4_extmul_high_u16x8(self.simd, rhs.simd);
Self { simd: u16x8_shuffle::<1, 3, 5, 7, 9, 11, 13, 15>(low, high) }
} else {
u16x8::new([
((u32::from(rhs.as_array()[0]) * u32::from(self.as_array()[0])) >> 16) as u16,
((u32::from(rhs.as_array()[1]) * u32::from(self.as_array()[1])) >> 16) as u16,
((u32::from(rhs.as_array()[2]) * u32::from(self.as_array()[2])) >> 16) as u16,
((u32::from(rhs.as_array()[3]) * u32::from(self.as_array()[3])) >> 16) as u16,
((u32::from(rhs.as_array()[4]) * u32::from(self.as_array()[4])) >> 16) as u16,
((u32::from(rhs.as_array()[5]) * u32::from(self.as_array()[5])) >> 16) as u16,
((u32::from(rhs.as_array()[6]) * u32::from(self.as_array()[6])) >> 16) as u16,
((u32::from(rhs.as_array()[7]) * u32::from(self.as_array()[7])) >> 16) as u16,
])
}
}
}
optional_fn_deserialize {}
}
impl u16x8 {
#[inline]
#[must_use]
pub fn from_u8x16_low(u: u8x16) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self{ sse: unpack_low_i8_m128i(u.sse, m128i::zeroed()) }
} else {
let u_arr: [u8; 16] = cast(u);
cast([
u_arr[0] as u16,
u_arr[1] as u16,
u_arr[2] as u16,
u_arr[3] as u16,
u_arr[4] as u16,
u_arr[5] as u16,
u_arr[6] as u16,
u_arr[7] as u16,
])
}
}
}
#[inline]
#[must_use]
pub fn from_u8x16_high(u: u8x16) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self{ sse: unpack_high_i8_m128i(u.sse, m128i::zeroed()) }
} else {
let u_arr: [u8; 16] = cast(u);
cast([
u_arr[8] as u16,
u_arr[9] as u16,
u_arr[10] as u16,
u_arr[11] as u16,
u_arr[12] as u16,
u_arr[13] as u16,
u_arr[14] as u16,
u_arr[15] as u16,
])
}
}
}
#[inline]
#[must_use]
#[deprecated(since = "1.6.0", note = "renamed to `widening_mul`")]
pub fn mul_widen(self, rhs: Self) -> u32x8 {
self.widening_mul(rhs)
}
#[allow(dead_code)]
#[inline]
fn to_byte_indices(self) -> u8x16 {
let base = self.unbounded_shl_scalar(1);
let base = base | base.unbounded_shl_scalar(8);
const WITHIN_LANE: u16x8 = u16x8::splat(u16::from_ne_bytes([0, 1]));
cast::<u16x8, u8x16>(base | WITHIN_LANE)
}
}