_mm256_maskstore_epi32
Classification
AVX_ALL, Store, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VPMASKMOVD m256, ymm, ymm
Synopsis
 _mm256_maskstore_epi32(int* mem_addr, __m256i mask, __m256i a);
Description
Store packed 32-bit integers from "a" into memory using "mask" (elements are not stored when the highest bit is not set in the corresponding element).
Operation
FOR j := 0 to 7
	i := j*32
	IF mask[i+31]
		MEM[mem_addr+i+31:mem_addr+i] := a[i+31:i]
	FI
ENDFOR