Function core::arch::x86_64::_mm_maskmoveu_si128

1.27.0 · source ·
pub unsafe fn _mm_maskmoveu_si128(a: __m128i, mask: __m128i, mem_addr: *mut i8)
Available on (x86 or x86-64) and target feature sse2 and x86-64 only.
Expand description

使用 mask 有条件地将 a 中的 8 位整数元素存储到内存中。

如果在相应元素中未设置最高位,则不会存储元素。

mem_addr 应该对应一个 128 位的内存位置,不需要在任何特定的边界上对齐。

Intel’s documentation