# MOVLPD
# Move Low Packed Double-Precision Floating-Point Value
Opcode | Mnemonic | Description |
---|---|---|
66 0F 12 /r | MOVLPD xmm, m64 | Move double-precision floating-point value from m64 to low quadword of xmm register. |
66 0F 13 /r | MOVLPD m64, xmm | Move double-precision floating-point nvalue from low quadword of xmm register to m64. |
# Description
Moves a double-precision floating-point value from the source operand (second operand) to the destination operand (first operand). The source and destination operands can be an XMM register or a 64-bit memory location. This instruction allows a double-precision floating-point value to be moved to and from the low quadword of an XMM register and memory. It cannot be used for register to register or memory to memory moves. When the destination operand is an XMM register, the high quadword of the register remains unchanged.
# Operation
//MOVLPD instruction for memory to XMM move:
if(IsXMM(Destination)) Destination[0..63] = Source;
//Destination[64..127] unchanged
//MOVLPD instruction for XMM to memory move:
else Destination = Source[0..63];
1
2
3
4
5
6
2
3
4
5
6
# SIMD Floating-Point Exceptions
None.
# Protected Mode Exceptions
# Real-Address Mode Exceptions
# Virtual-8086 Mode Exceptions
Same exceptions as in Real Address Mode
#PF(fault-code) | For a page fault. |
#PF(fault-code) | For a page fault. |