_mm_maskload_epi32
Classification
AVX_ALL, Load, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VPMASKMOVD xmm, xmm, m128
Synopsis
 _mm_maskload_epi32(int const* mem_addr, __m128i mask);
Description
Load packed 32-bit integers from memory into "dst" using "mask" (elements are zeroed out when the highest bit is not set in the corresponding element).
Operation
FOR j := 0 to 3
	i := j*32
	IF mask[i+31]
		dst[i+31:i] := MEM[mem_addr+i+31:mem_addr+i]
	ELSE
		dst[i+31:i] := 0
	FI
ENDFOR
dst[MAX:128] := 0