beautypg.com

Intel 253666-024US User Manual

Page 612

background image

3-566 Vol. 2A

MASKMOVDQU—Store Selected Bytes of Double Quadword

INSTRUCTION SET REFERENCE, A-M

In 64-bit mode, use of the REX.R prefix permits this instruction to access additional
registers (XMM8-XMM15).

Operation

IF (MASK[7]

=

1)

THEN DEST[DI/EDI]

SRC[7:0] ELSE (* Memory location unchanged *); FI;

IF (MASK[15]

=

1)

THEN DEST[DI/EDI +1]

SRC[15:8] ELSE (* Memory location unchanged *); FI;

(* Repeat operation for 3rd through 14th bytes in source operand *)

IF (MASK[127]

= 1

)

THEN DEST[DI/EDI +15]

SRC[127:120] ELSE (* Memory location unchanged *); FI;

Intel C/C++ Compiler Intrinsic Equivalent

void _mm_maskmoveu_si128(__m128i d, __m128i n, char * p)

Protected Mode Exceptions

#GP(0)

For an illegal memory operand effective address in the CS, DS,

ES, FS or GS segments. (even if mask is all 0s).

If the destination operand is in a nonwritable segment.
If the DS, ES, FS, or GS register contains a NULL segment

selector.

#SS(0)

For an illegal address in the SS segment (even if mask is all 0s).

#PF(fault-code)

For a page fault (implementation specific).

#NM

If CR0.TS[bit 3] = 1.

#UD

If CR0.EM[bit 2] = 1.
If CR4.OSFXSR[bit 9] = 0.
If CPUID.01H:EDX.SSE2[bit 26] = 0.
If the LOCK prefix is used.

Real-Address Mode Exceptions

GP(0)

If any part of the operand lies outside the effective address

space from 0 to FFFFH. (even if mask is all 0s).

#NM

If CR0.TS[bit 3] = 1.

#UD

If CR0.EM[bit 2] = 1.
If CR4.OSFXSR[bit 9] = 0.
If CPUID.01H:EDX.SSE2[bit 26] = 0.
If the LOCK prefix is used.