Opcode |
Instruction |
Description |
---|---|---|
0F 6F /r |
MOVQ mm, mm/m64 |
Move quadword from mm/m64 to mm. |
0F 7F /r |
MOVQ mm/m64, mm |
Move quadword from mm to mm/m64. |
F3 0F 7E |
MOVQ xmm1, xmm2/m64 |
Move quadword from xmm2/mem64 to xmm1. |
66 0F D6 |
MOVQ xmm2/m64, xmm1 |
Move quadword from xmm1 to xmm2/mem64. |
Copies a quadword from the source operand (second operand) to the destination
operand (first operand). The source and destination operands can be MMX
When the source operand is an XMM register, the low quadword is moved; when the destination operand is an XMM register, the quadword is stored to the low quadword of the register, and the high quadword is cleared to all 0s.
MOVQ instruction when operating on MMX registers
and memory locations:
DEST SRC;
MOVQ instruction when source and destination operands are XMM registers:
DEST[63-0] SRC[63-0];
MOVQ instruction when source operand is XMM register and destination
operand is memory location:
DEST SRC[63-0];
MOVQ instruction when source operand is memory location and destination
operand is XMM register:
DEST[63-0] SRC;
DEST[127-64] 0000000000000000H;
None.
None.
#GP(0) - If the destination operand is in a nonwritable segment. If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit.
#SS(0) - If a memory operand effective address is outside the SS segment limit.
#UD - If EM in CR0 is set. (XMM register operations only.) If OSFXSR in CR4 is 0. (XMM register operations only.) If CPUID feature flag SSE-2 is 0.
#NM - If TS in CR0 is set.
#MF (MMX register operations only.) - If there is a pending FPU exception.
#PF(fault-code) - If a page fault occurs.
#AC(0) - If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3.
#GP - If any part of the operand lies outside of the effective address space from 0 to FFFFH.
#UD - If EM in CR0 is set. (XMM register operations only.) If OSFXSR in CR4 is 0. (XMM register operations only.) If CPUID feature flag SSE-2 is 0.
#NM - If TS in CR0 is set.
#MF (MMX register operations only.) - If there is a pending FPU exception.
Same exceptions as in Real Address Mode
#PF(fault-code) - If a page fault occurs.
#AC(0) - If alignment checking is enabled and an unaligned memory reference is made.
For details, see Volume 2A and Volume 2B of the Intel(R) 64 and IA-32 Intel Architecture Software Developer's Manual. For the latest updates on the instruction set information, go to the web site.