VPSHLDVD - Packed SHift Left Double Variable Dword
VPSHLDVD xmm1{k1}{z}, xmm2, xmm3/m128/m32bcst (V5+VBMI2+VL
__m128i _mm_shldv_epi32(__m128i a, __m128i b, __m128i c)
__m128i _mm_mask_shldv_epi32(__m128i a, __mmask8 k, __m128i b, __m128i c)
__m128i _mm_maskz_shldv_epi32(__mmask8 k, __m128i a, __m128i b, __m128i c)
For each DWORD, (1) is shifted to the left by the number of bits specified in bit 4:0 of (3). Upper bits of (2) are copied to the emptied lower bits. The result is stored in (4).
VPSHLDVD ymm1{k1}{z}, ymm2, ymm3/m256/m32bcst (V5+VBMI2+VL
__m256i _mm256_shldv_epi32(__m256i a, __m256i b, __m256i c)
__m256i _mm256_mask_shldv_epi32(__m256i a, __mmask8 k, __m256i b, __m256i c)
__m256i _mm256_maskz_shldv_epi32(__mmask8 k, __m256i a, __m256i b, __m256i c)
For each DWORD, (1) is shifted to the left by the number of bits specified in bit 4:0 of (3). Upper bits of (2) are copied to the emptied lower bits. The result is stored in (4).
VPSHLDVD zmm1{k1}{z}, zmm2, zmm3/m512/m32bcst (V5+VBMI2
__m512i _mm512_shldv_epi32(__m512i a, __m512i b, __m512i c)
__m512i _mm512_mask_shldv_epi32(__m512i a, __mmask16 k, __m512i b, __m512i c)
__m512i _mm512_maskz_shldv_epi32(__mmask16 k, __m512i a, __m512i b, __m512i c)
For each DWORD, (1) is shifted to the left by the number of bits specified in bit 4:0 of (3). Upper bits of (2) are copied to the emptied lower bits. The result is stored in (4).
_mask_ if k bit is 0, a is copied.
_maskz_ if k bit is 0, zero cleared.
x86/x64 SIMD Instruction List
Feedback