aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2020-07-26 04:36:39 -0700
committeriximeow <me@iximeow.net>2020-07-26 04:36:39 -0700
commit259237ceda8a1900231a7f006701bc5c9bc7f0ba (patch)
treed86b4a939f2f9a8707ec446abf4e61cd6267ed0c /src
parent8b91608b6574a4a2d3c6aec9ea0421b7e8a48de4 (diff)
ptest, pmovzx
Diffstat (limited to 'src')
-rw-r--r--src/long_mode/mod.rs9
1 files changed, 9 insertions, 0 deletions
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<T: Iterator<Item=u8>>(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; }