x86 Instruction Set Reference

MOVHPS

Move High Packed Single-Precision Floating-Point Values

Opcode Mnemonic Description
0F 16 /r MOVHPS xmm, m64 Move two packed single-precision floating-point values from m64 to high quadword of xmm.
0F 17 /r MOVHPS m64, xmm Move two packed single-precision floating-point values from high quadword of xmm to m64.
Description

Moves two packed single-precision floating-point values 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 two single-precision floating-point values to be moved to and from the high 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 low quadword of the register remains unchanged.

Operation
//MOVHPS instruction for memory to XMM move:
if(IsXMM(Destination)) Destination[64..127] = Source;
//Destination[0..63] unchanged
//MOVHPS instruction for XMM to memory move:
else Destination = Source[64..127];
SIMD Floating-Point Exceptions
None.
Protected Mode Exceptions
#GP(0)For an illegal memory operand effective address in the CS, DS, ES, FS or GS segments.
#GP(0)For an illegal memory operand effective address in the CS, DS, ES, FS or GS segments.
#SS(0)For an illegal address in the SS segment.
#PF(fault-code)For a page fault.
#NMIf TS in CR0 is set.
#UDIf EM in CR0 is set. If OSFXSR in CR4 is 0. If CPUID feature flag SSE is 0.
Real-Address Mode Exceptions
#GP(0)If any part of the operand lies outside the effective address space from 0 to FFFFH.
#GP(0)If any part of the operand lies outside the effective address space from 0 to FFFFH.
#NMIf TS in CR0 is set.
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.