03.03.2013 Views

Intel® Architecture Instruction Set Extensions Programming Reference

Intel® Architecture Instruction Set Extensions Programming Reference

Intel® Architecture Instruction Set Extensions Programming Reference

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Description<br />

<strong>Instruction</strong> Operand Encoding<br />

INSTRUCTION SET REFERENCE<br />

Op/En Operand 1 Operand 2 Operand 3 Operand 4<br />

A ModRM:reg (r, w) ModRM:r/m (r) NA NA<br />

B ModRM:reg (w) VEX.vvvv ModRM:r/m (r) NA<br />

The PADDB and VPADDB instructions add packed byte integers from the first source operand and second source<br />

operand and store the packed integer result in destination operand. When an individual result is too large to be<br />

represented in 8 bits (overflow), the result is wrapped around and the low 8 bits are written to the destination<br />

operand (that is, the carry is ignored).<br />

The PADDW and VPADDW instructions add packed word integers from the first source operand and second source<br />

operand and store the packed integer result in destination operand. When an individual result is too large to be<br />

represented in 16 bits (overflow), the result is wrapped around and the low 16 bits are written to the destination<br />

operand.<br />

The PADDD and VPADDD instructions add packed doubleword integers from the first source operand and second<br />

source operand and store the packed integer result in destination operand. When an individual result is too large<br />

to be represented in 32 bits (overflow), the result is wrapped around and the low 32 bits are written to the destination<br />

operand.<br />

The PADDQ and VPADDQ instructions add packed quadword integers from the first source operand and second<br />

source operand and store the packed integer result in destination operand. When a quadword result is too large to<br />

be represented in 64 bits (overflow), the result is wrapped around and the low 64 bits are written to the destination<br />

element (that is, the carry is ignored).<br />

Note that the (V)PADDB, (V)PADDW, (V)PADDD and (V)PADDQ instructions can operate on either unsigned or<br />

signed (two's complement notation) packed integers; however, it does not set bits in the EFLAGS register to indicate<br />

overflow and/or a carry. To prevent undetected overflow conditions, software must control the ranges of<br />

values operated on.<br />

VEX.256 encoded version: The first source operand is a YMM register. The second source operand is a YMM register<br />

or a 256-bit memory location. The destination operand is a YMM register.<br />

VEX.128 encoded version: The first source operand is an XMM register. The second source operand is an XMM<br />

register or 128-bit memory location. The destination operand is an XMM register. The upper bits (255:128) of the<br />

corresponding YMM register destination are zeroed.<br />

128-bit Legacy SSE version: The first source operand is an XMM register. The second operand can be an XMM<br />

register or a 128-bit memory location. The destination is not distinct from the first source XMM register and the<br />

upper bits (255:128) of the corresponding YMM register destination are unmodified.<br />

Operation<br />

PADDB (Legacy SSE instruction)<br />

DEST[7:0] DEST[7:0] + SRC[7:0];<br />

(* Repeat add operation for 2nd through 14th byte *)<br />

DEST[127:120] DEST[127:120] + SRC[127:120];<br />

PADDW (Legacy SSE instruction)<br />

DEST[15:0] DEST[15:0] + SRC[15:0];<br />

(* Repeat add operation for 2nd through 7th word *)<br />

DEST[127:112] DEST[127:112] + SRC[127:112];<br />

PADDD (Legacy SSE instruction)<br />

DEST[31:0] DEST[31:0] + SRC[31:0];<br />

(* Repeat add operation for 2nd and 3th doubleword *)<br />

DEST[127:96] DEST[127:96] + SRC[127:96];<br />

Ref. # 319433-014 5-27

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!