_mm_maskz_load_epi32
Classification
AVX-512, Load, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
VMOVDQA32 xmm {z}, m64
Synopsis
 _mm_maskz_load_epi32(__mmask8 k, void const* mem_addr);
Description
Load packed 32-bit integers from memory into "dst" using zeromask "k" (elements are zeroed out when the corresponding mask bit is not set). "mem_addr" must be aligned on a 16-byte boundary or a general-protection exception may be generated.
Operation
FOR j := 0 to 3
	i := j*32
	IF k[j]
		dst[i+31:i] := MEM[mem_addr+i+31:mem_addr+i]
	ELSE
		dst[i+31:i] := 0
	FI
ENDFOR
dst[MAX:128] := 0