Opcode/Instruction |
Op/En |
64/32 -bit Mode |
CPUID Feature Flag |
Description |
VEX.DDS.128.66.0F38.W0 92 /r VGATHERDPS xmm1, vm32x, xmm2 |
RMV |
V/V |
AVX2 |
Using dword indices specified in vm32x, gather single-precision FP values from memory conditioned on mask specified by xmm2. Conditionally gathered elements are merged into xmm1. |
VEX.DDS.128.66.0F38.W0 93 /r VGATHERQPS xmm1, vm64x, xmm2 |
RMV |
V/V |
AVX2 |
Using qword indices specified in vm64x, gather single-precision FP values from memory conditioned on mask specified by xmm2. Conditionally gathered elements are merged into xmm1. |
VEX.DDS.256.66.0F38.W0 92 /r VGATHERDPS ymm1, vm32y, ymm2 |
RMV |
V/V |
AVX2 |
Using dword indices specified in vm32y, gather single-precision FP values from memory conditioned on mask specified by ymm2. Conditionally gathered elements are merged into ymm1. |
VEX.DDS.256.66.0F38.W0 93 /r VGATHERQPS xmm1, vm64y, xmm2 |
RMV |
V/V |
AVX2 |
Using qword indices specified in vm64y, gather single-precision FP values from memory conditioned on mask specified by xmm2. Conditionally gathered elements are merged into xmm1. |
The instruction conditionally loads up to 4 or 8 single-precision floating-point values from memory addresses specified by the memory operand (the second operand) and using dword indices. The memory operand uses the VSIB form of the SIB byte to specify a general purpose register operand as the common base, a vector register for an array of indices relative to the base and a constant scale factor. The mask operand (the third operand) specifies the conditional load operation from each memory address and the corresponding update of each data element of the destination operand (the first operand). Conditionality is specified by the most significant bit of each data element of the mask register. If an element’s mask bit is not set, the corresponding element of the destination register is left unchanged. The width of data element in the destination register and mask register are identical. The entire mask register will be set to zero by this instruction unless the instruction causes an exception. Using qword indices, the instruction conditionally loads up to 2 or 4 single-precision floating-point values from the VSIB addressing memory operand, and updates the lower half of the destination register. The upper 128 or 256 bits of the destination register are zero’ed with qword indices. This instruction can be suspended by an exception if at least one element is already gathered (i.e., if the exception
qword indices, the instruction will gather two values and zeroes the upper 64 bits of the destination.
VEX.256 version: For dword indices, the instruction will gather eight single-precision floating-point values. qword indices, the instruction will gather four values and zeroes the upper 128 bits of the destination. Note that: • |
For If any pair of the index, mask, or destination registers are the same, this instruction results a UD fault. |
•64 memory-ordering model. • |
Memory ordering with other instructions follows the IntelThat is, if a fault is triggered by an element and delivered, all |
elements closer to the LSB of the destination will be completed (and non-faulting). to the MSB may or may not be completed. conventional order. • |
Individual elements closer If a given element triggers multiple faults, they are delivered in the Elements may be gathered in any order, but faults must be delivered in a right-to-left order; thus, elements to |
the left of a faulting one may be gathered before the fault is delivered. instruction is repeatable - given the same input values and architectural state, the same set of elements to the left of the faulting one will be gathered. • |
A given implementation of this This instruction does not perform AC checks, and so will never deliver an AC fault. |
• |
This instruction will cause a #UD if the address size attribute is 16-bit. |
• |
This instruction will cause a #UD if the memory operand is encoded without the SIB byte. |
•is implementation specific, and some implementations may use loads larger than the data element size or load elements an indeterminate number of times. • |
This instruction should not be used to access memory mapped I/O as the ordering of the individual loads it does The scaled index may require more bits to represent than the address bits used by the processor (e.g., in 32- |
bit mode, if the scale is greater than one). bits are ignored. |
In this case, the most significant bits beyond the number of address |
VGATHERDPS: |
__m128 _mm_i32gather_ps (float const * base, __m128i index, const int scale); |
VGATHERDPS: |
__m128 _mm_mask_i32gather_ps (__m128 src, float const * base, __m128i index, __m128 mask, const int scale); |
VGATHERDPS: |
__m256 _mm256_i32gather_ps (float const * base, __m256i index, const int scale); |
VGATHERDPS: scale); |
__m256 _mm256_mask_i32gather_ps (__m256 src, float const * base, __m256i index, __m256 mask, const int |
VGATHERQPS: |
__m128 _mm_i64gather_ps (float const * base, __m128i index, const int scale); |
VGATHERQPS: |
__m128 _mm_mask_i64gather_ps (__m128 src, float const * base, __m128i index, __m128 mask, const int scale); |
VGATHERQPS: |
__m128 _mm256_i64gather_ps (float const * base, __m256i index, const int scale); |
VGATHERQPS: scale); |
__m128 _mm256_mask_i64gather_ps (__m128 src, float const * base, __m256i index, __m128 mask, const int |