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! {
unsafe {
T = u16,
N = 8,
Simd = u16x8,
optional_type_x86_inner { X86Inner = __m128i },
optional_type_arm_inner { ArmInner = uint16x8_t },
optional_type_wasm_inner { WasmInner = v128 },
}
#[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 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]
pub 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 {
i16x8::to_bitmask(cast(self))
}
#[inline]
pub fn any(self) -> bool {
i16x8::any(cast(self))
}
#[inline]
pub fn all(self) -> bool {
i16x8::all(cast(self))
}
#[inline]
pub fn transpose(data: [u16x8; 8]) -> [u16x8; 8] {
cast(i16x8::transpose(cast(data)))
}
}
impl_simd_uint! {
unsafe {
T = u16,
N = 8,
Simd = u16x8,
SignedSimd = i16x8,
T_BITS = 16,
T_BITS_MUL_2 = 32,
[0, 1, 2, 3, 4, 5, 6, 7],
}
#[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 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]
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]
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_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 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,
])
}
}
}
}
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)
}
}