image/svg+xmlMOVNTPD—Store Packed Double-Precision Floating-Point Values Using Non-Temporal HintInstruction Operand Encoding1DescriptionMoves the packed double-precision floating-point values in the source operand (second operand) to the destination operand (first operand) using a non-temporal hint to prevent caching of the data during the write to memory. The source operand is an XMM register, YMM register or ZMM register, which is assumed to contain packed double-precision, floating-pointing data. The destination operand is a 128-bit, 256-bit or 512-bit memory location. The memory operand must be aligned on a 16-byte (128-bit version), 32-byte (VEX.256 encoded version) or 64-byte (EVEX.512 encoded version) boundary otherwise a general-protection exception (#GP) will be generated. The non-temporal hint is implemented by using a write combining (WC) memory type protocol when writing the data to memory. Using this protocol, the processor does not write the data into the cache hierarchy, nor does it fetch the corresponding cache line from memory into the cache hierarchy. The memory type of the region being written to can override the non-temporal hint, if the memory address specified for the non-temporal store is in an uncacheable (UC) or write protected (WP) memory region. For more information on non-temporal stores, see “Caching of Temporal vs. Non-Temporal Data” in Chapter 10 in the IA-32 Intel Architecture Software Developer’s Manual, Volume 1.Because the WC protocol uses a weakly-ordered memory consistency model, a fencing operation implemented with the SFENCE or MFENCE instruction should be used in conjunction with MOVNTPD instructions if multiple processors might use different memory types to read/write the destination memory locations.Note: VEX.vvvv and EVEX.vvvv are reserved and must be 1111b, VEX.L must be 0; otherwise instructions will #UD.OperationVMOVNTPD (EVEX encoded versions) VL = 128, 256, 512DEST[VL-1:0] := SRC[VL-1:0]DEST[MAXVL-1:VL] := 0Opcode/InstructionOp / En64/32 bit Mode SupportCPUID Feature FlagDescription66 0F 2B /rMOVNTPD m128, xmm1AV/VSSE2Move packed double-precision values in xmm1 to m128 using non-temporal hint.VEX.128.66.0F.WIG 2B /rVMOVNTPD m128, xmm1AV/VAVXMove packed double-precision values in xmm1 to m128 using non-temporal hint.VEX.256.66.0F.WIG 2B /rVMOVNTPD m256, ymm1AV/VAVXMove packed double-precision values in ymm1 to m256 using non-temporal hint.EVEX.128.66.0F.W1 2B /rVMOVNTPD m128, xmm1BV/VAVX512VLAVX512FMove packed double-precision values in xmm1 to m128 using non-temporal hint.EVEX.256.66.0F.W1 2B /rVMOVNTPD m256, ymm1BV/VAVX512VLAVX512FMove packed double-precision values in ymm1 to m256 using non-temporal hint.EVEX.512.66.0F.W1 2B /rVMOVNTPD m512, zmm1BV/VAVX512FMove packed double-precision values in zmm1 to m512 using non-temporal hint.Op/EnTuple TypeOperand 1Operand 2Operand 3Operand 4ANAModRM:r/m (w)ModRM:reg (r)NANABFull MemModRM:r/m (w)ModRM:reg (r)NANA1.ModRM.MOD != 011B

image/svg+xmlMOVNTPD (Legacy and VEX versions)DEST := SRCIntel C/C++ Compiler Intrinsic EquivalentVMOVNTPD void _mm512_stream_pd(double * p, __m512d a);VMOVNTPD void _mm256_stream_pd (double * p, __m256d a);MOVNTPD void _mm_stream_pd (double * p, __m128d a);SIMD Floating-Point ExceptionsNoneOther ExceptionsNon-EVEX-encoded instruction, see Exceptions Type1.SSE2 in Table2-18, “Type 1 Class Exception Conditions”.EVEX-encoded instruction, see Table2-45, “Type E1NF Class Exception Conditions”.Additionally:#UDIf VEX.vvvv != 1111B or EVEX.vvvv != 1111B.

This UNOFFICIAL reference was generated from the official Intel® 64 and IA-32 Architectures Software Developer’s Manual by a dumb script. There is no guarantee that some parts aren't mangled or broken and is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.