From 4d8a4c7b22192ed3154369e177ad8ffdc9cd12cc Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 26 Jul 2020 03:58:12 -0700 Subject: palignr and mpsabdw --- src/long_mode/mod.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/long_mode/mod.rs b/src/long_mode/mod.rs index d709e53..4f3723b 100644 --- a/src/long_mode/mod.rs +++ b/src/long_mode/mod.rs @@ -6205,11 +6205,18 @@ fn unlikely_operands>(decoder: &InstDecoder, mut bytes_iter match op { 0x0c => { instruction.opcode = Opcode::BLENDPS; } 0x0d => { instruction.opcode = Opcode::BLENDPD; } - 0x0f => { instruction.opcode = Opcode::PALIGNR; } + 0x0f => { + instruction.opcode = Opcode::PALIGNR; + return read_operands(decoder, bytes_iter, instruction, OperandCode::G_E_mm_Ib, length); + } 0x10 => { instruction.opcode = Opcode::BLENDVB; } 0x14 => { instruction.opcode = Opcode::BLENDVPS; } 0x15 => { instruction.opcode = Opcode::BLENDVPD; } + 0x42 => { + instruction.opcode = Opcode::MPSADBW; + return read_operands(decoder, bytes_iter, instruction, OperandCode::G_E_xmm_Ib, length); + } 0xcc => { instruction.opcode = Opcode::SHA1RNDS4; -- cgit v1.1