From 259237ceda8a1900231a7f006701bc5c9bc7f0ba Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 26 Jul 2020 04:36:39 -0700 Subject: ptest, pmovzx --- src/long_mode/mod.rs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/long_mode/mod.rs') diff --git a/src/long_mode/mod.rs b/src/long_mode/mod.rs index 94627de..f5d8ecf 100644 --- a/src/long_mode/mod.rs +++ b/src/long_mode/mod.rs @@ -6179,10 +6179,19 @@ fn unlikely_operands>(decoder: &InstDecoder, mut bytes_iter 0x0a => { instruction.opcode = Opcode::PSIGND; } 0x0b => { instruction.opcode = Opcode::PMULHRSW; } + 0x17 => { instruction.opcode = Opcode::PTEST; } + 0x1c => { instruction.opcode = Opcode::PABSB; } 0x1d => { instruction.opcode = Opcode::PABSW; } 0x1e => { instruction.opcode = Opcode::PABSD; } + 0x30 => { instruction.opcode = Opcode::PMOVZXBW; } + 0x31 => { instruction.opcode = Opcode::PMOVZXBD; } + 0x32 => { instruction.opcode = Opcode::PMOVZXBQ; } + 0x33 => { instruction.opcode = Opcode::PMOVZXWD; } + 0x34 => { instruction.opcode = Opcode::PMOVZXWQ; } + 0x35 => { instruction.opcode = Opcode::PMOVZXDQ; } + 0x40 => { instruction.opcode = Opcode::PMULLD; } 0xdb => { instruction.opcode = Opcode::AESIMC; } -- cgit v1.1