VPCOMPRESSB, VCOMPRESSW
Store Sparse Packed Byte/Word Integer Values Into Dense
stableVMJITAOTinstruction
Encodings
| Opcode | Instruction | Op/En | 64-bit | Compat/Legacy | Description |
|---|---|---|---|---|---|
EVEX.128.66.0F38.W0 63 /r | VPCOMPRESSB m128{k1}, xmm1 | A | Valid | Valid | Compress up to 128 bits of packed byte AVX512VL) OR AVX10.1 values from xmm1 to m128 with writemask k1. |
EVEX.128.66.0F38.W0 63 /r | VPCOMPRESSB xmm1{k1}{z}, xmm2 | B | Valid | Valid | Compress up to 128 bits of packed byte AVX512VL) OR AVX10.1 values from xmm2 to xmm1 with writemask k1. |
EVEX.256.66.0F38.W0 63 /r | VPCOMPRESSB m256{k1}, ymm1 | A | Valid | Valid | Compress up to 256 bits of packed byte AVX512VL) OR AVX10.1 values from ymm1 to m256 with writemask k1. |
EVEX.256.66.0F38.W0 63 /r | VPCOMPRESSB ymm1{k1}{z}, ymm2 | B | Valid | Valid | Compress up to 256 bits of packed byte AVX512VL) OR AVX10.1 values from ymm2 to ymm1 with writemask k1. |
EVEX.512.66.0F38.W0 63 /r | VPCOMPRESSB m512{k1}, zmm1 | A | Valid | Valid | Compress up to 512 bits of packed byte OR AVX10.1 values from zmm1 to m512 with writemask k1. |
EVEX.512.66.0F38.W0 63 /r | VPCOMPRESSB zmm1{k1}{z}, zmm2 | B | Valid | Valid | Compress up to 512 bits of packed byte OR AVX10.1 values from zmm2 to zmm1 with writemask k1. |
EVEX.128.66.0F38.W1 63 /r | VPCOMPRESSW m128{k1}, xmm1 | A | Valid | Valid | Compress up to 128 bits of packed word AVX512VL) OR AVX10.1 values from xmm1 to m128 with writemask k1. |
EVEX.128.66.0F38.W1 63 /r | VPCOMPRESSW xmm1{k1}{z}, xmm2 | B | Valid | Valid | Compress up to 128 bits of packed word AVX512VL) OR AVX10.1 values from xmm2 to xmm1 with writemask k1. |
EVEX.256.66.0F38.W1 63 /r | VPCOMPRESSW m256{k1}, ymm1 | A | Valid | Valid | Compress up to 256 bits of packed word AVX512VL) OR AVX10.1 values from ymm1 to m256 with writemask k1. |
EVEX.256.66.0F38.W1 63 /r | VPCOMPRESSW ymm1{k1}{z}, ymm2 | B | Valid | Valid | Compress up to 256 bits of packed word AVX512VL) OR AVX10.1 values from ymm2 to ymm1 with writemask k1. |
EVEX.512.66.0F38.W1 63 /r | VPCOMPRESSW m512{k1}, zmm1 | A | Valid | Valid | Compress up to 512 bits of packed word OR AVX10.1 values from zmm1 to m512 with writemask k1. |
EVEX.512.66.0F38.W1 63 /r | VPCOMPRESSW zmm1{k1}{z}, zmm2 | B | Valid | Valid | Compress up to 512 bits of packed word OR AVX10.1 values from zmm2 to zmm1 with writemask k1. |
Operand encoding
Each mode is a value of the Op/En column above. It says which field of the encoded instruction carries each operand, in the order they are written, and whether the instruction reads it, writes it or both.
A
modrm.rmescrituraModRM byte, r/m field (bits 2-0); with the SIB byte and the displacement when the mod field asks for themmodrm.reglecturaModRM byte, reg field (bits 5-3)
Tupla: Tuple1 Scalar
B
modrm.rmescrituraModRM byte, r/m field (bits 2-0); with the SIB byte and the displacement when the mod field asks for themmodrm.reglecturaModRM byte, reg field (bits 5-3)
Measured cost
Loading measurements from arch-data...
Description
Compress (stores) up to 64 byte values or 32 word values from the source operand (second operand) to the destination operand (first operand), based on the active elements determined by the writemask operand. Note: EVEX.vvvv is reserved and must be 1111b otherwise instructions will #UD.
Moves up to 512 bits of packed byte values from the source operand (second operand) to the destination operand (first operand). This instruction is used to store partial contents of a vector register into a byte vector or single memory location using the active elements in operand writemask.
Memory destination version: Only the contiguous vector is written to the destination memory location. EVEX.z must be zero.
Register destination version: If the vector length of the contiguous vector is less than that of the input vector in the source operand, the upper bits of the destination register are unmodified if EVEX.z is not set, otherwise the upper bits are zeroed.
This instruction supports memory fault suppression.
Note that the compressed displacement assumes a pre-scaling (N) corresponding to the size of one single element instead of the size of the full vector.
Operation
VPCOMPRESSB store form
(KL, VL) = (16, 128), (32, 256), (64, 512)
k := 0
FOR j := 0 TO KL-1:
IF k1[j] OR *no writemask*:
DEST.byte[k] := SRC.byte[j]
k := k +1
VPCOMPRESSB reg-reg form
(KL, VL) = (16, 128), (32, 256), (64, 512)
k := 0
FOR j := 0 TO KL-1:
IF k1[j] OR *no writemask*:
DEST.byte[k] := SRC.byte[j]
k := k + 1
IF *merging-masking*:
*DEST[VL-1:k*8] remains unchanged*
ELSE DEST[VL-1:k*8] := 0
DEST[MAX_VL-1:VL] := 0
VPCOMPRESSW store form
(KL, VL) = (8, 128), (16, 256), (32, 512)
k := 0
FOR j := 0 TO KL-1:
IF k1[j] OR *no writemask*:
DEST.word[k] := SRC.word[j]
k := k + 1
VPCOMPRESSW reg-reg form
(KL, VL) = (8, 128), (16, 256), (32, 512)
k := 0
FOR j := 0 TO KL-1:
IF k1[j] OR *no writemask*:
DEST.word[k] := SRC.word[j]
k := k + 1
IF *merging-masking*:
*DEST[VL-1:k*16] remains unchanged*
ELSE DEST[VL-1:k*16] := 0
DEST[MAX_VL-1:VL] := 0Intel C/C++ compiler intrinsics
VPCOMPRESSB __m128i _mm_mask_compress_epi8(__m128i, __mmask16, __m128i);
VPCOMPRESSB __m128i _mm_maskz_compress_epi8(__mmask16, __m128i);
VPCOMPRESSB __m256i _mm256_mask_compress_epi8(__m256i, __mmask32, __m256i);
VPCOMPRESSB __m256i _mm256_maskz_compress_epi8(__mmask32, __m256i);
VPCOMPRESSB __m512i _mm512_mask_compress_epi8(__m512i, __mmask64, __m512i);
VPCOMPRESSB __m512i _mm512_maskz_compress_epi8(__mmask64, __m512i);
VPCOMPRESSB void _mm_mask_compressstoreu_epi8(void*, __mmask16, __m128i);
VPCOMPRESSB void _mm256_mask_compressstoreu_epi8(void*, __mmask32, __m256i);
VPCOMPRESSB void _mm512_mask_compressstoreu_epi8(void*, __mmask64, __m512i);
VPCOMPRESSW __m128i _mm_mask_compress_epi16(__m128i, __mmask8, __m128i);
VPCOMPRESSW __m128i _mm_maskz_compress_epi16(__mmask8, __m128i);
VPCOMPRESSW __m256i _mm256_mask_compress_epi16(__m256i, __mmask16, __m256i);
VPCOMPRESSW __m256i _mm256_maskz_compress_epi16(__mmask16, __m256i);
VPCOMPRESSW __m512i _mm512_mask_compress_epi16(__m512i, __mmask32, __m512i);
VPCOMPRESSW __m512i _mm512_maskz_compress_epi16(__mmask32, __m512i);
VPCOMPRESSW void _mm_mask_compressstoreu_epi16(void*, __mmask8, __m128i);
VPCOMPRESSW void _mm256_mask_compressstoreu_epi16(void*, __mmask16, __m256i);
VPCOMPRESSW void _mm512_mask_compressstoreu_epi16(void*, __mmask32, __m512i);SIMD Floating-Point Exceptions
None.
Other Exceptions
See Table 2-51, "Type E4 Class Exception Conditions."