PBLENDW — Blend Packed WordsInstruction Operand EncodingDescriptionWords from the source operand (second operand) are conditionally written to the destination operand (first operand) depending on bits in the immediate operand (third operand). The immediate bits (bits 7:0) form a mask that determines whether the corresponding word in the destination is copied from the source. If a bit in the mask, corresponding to a word, is “1", then the word is copied, else the word element in the destination operand is unchanged.128-bit Legacy SSE version: The second source operand can be an XMM register or a 128-bit memory location. The first source and destination operands are XMM registers. Bits (MAXVL-1:128) of the corresponding YMM destination register remain unchanged.VEX.128 encoded version: The second source operand can be an XMM register or a 128-bit memory location. The first source and destination operands are XMM registers. Bits (MAXVL-1:128) of the corresponding YMM register are zeroed.VEX.256 encoded version: The first source operand is a YMM register. The second source operand is a YMM register or a 256-bit memory location. The destination operand is a YMM register. OperationPBLENDW (128-bit Legacy SSE version)IF (imm8[0] = 1) THEN DEST[15:0] := SRC[15:0]ELSE DEST[15:0] := DEST[15:0]IF (imm8[1] = 1) THEN DEST[31:16] := SRC[31:16]ELSE DEST[31:16] := DEST[31:16]IF (imm8[2] = 1) THEN DEST[47:32] := SRC[47:32]ELSE DEST[47:32] := DEST[47:32]IF (imm8[3] = 1) THEN DEST[63:48] := SRC[63:48]ELSE DEST[63:48] := DEST[63:48]IF (imm8[4] = 1) THEN DEST[79:64] := SRC[79:64]ELSE DEST[79:64] := DEST[79:64]IF (imm8[5] = 1) THEN DEST[95:80] := SRC[95:80]ELSE DEST[95:80] := DEST[95:80]IF (imm8[6] = 1) THEN DEST[111:96] := SRC[111:96]ELSE DEST[111:96] := DEST[111:96]IF (imm8[7] = 1) THEN DEST[127:112] := SRC[127:112]Opcode/InstructionOp/ En64/32 bit Mode SupportCPUID Feature FlagDescription66 0F 3A 0E /r ibPBLENDW xmm1, xmm2/m128, imm8RMIV/VSSE4_1Select words from xmm1 and xmm2/m128from mask specified in imm8 and store the values into xmm1.VEX.128.66.0F3A.WIG 0E /r ibVPBLENDW xmm1, xmm2, xmm3/m128, imm8RVMIV/VAVXSelect words from xmm2 and xmm3/m128from mask specified in imm8 and store the values into xmm1.VEX.256.66.0F3A.WIG 0E /r ibVPBLENDW ymm1, ymm2, ymm3/m256, imm8RVMIV/VAVX2Select words from ymm2 and ymm3/m256from mask specified in imm8 and store the values into ymm1.Op/EnOperand 1Operand 2Operand 3Operand 4RMIModRM:reg (r, w)ModRM:r/m (r)imm8NARVMIModRM:reg (w)VEX.vvvv (r)ModRM:r/m (r)imm8
This UNOFFICIAL reference was generated from the official Intel® 64 and IA-32 Architectures Software Developer’s Manual by a dumb script. There is no guarantee that some parts aren't mangled or broken and is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.