about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/arch.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2016-01-06 11:23:16 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2016-01-06 11:23:16 +0100
commit1eb15a19f2033e5e96d4f7614caf8f11c28396d7 (patch)
tree9b6240e033572ae1e479454c4c0feafd962c18c0 /miasm2/arch/x86/arch.py
parentd10e08ebb6b90370e60298f323388a4e996f1231 (diff)
downloadmiasm-1eb15a19f2033e5e96d4f7614caf8f11c28396d7.tar.gz
miasm-1eb15a19f2033e5e96d4f7614caf8f11c28396d7.zip
X86: add pshufd
Diffstat (limited to '')
-rw-r--r--miasm2/arch/x86/arch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py
index af79ea97..ee4f5fbf 100644
--- a/miasm2/arch/x86/arch.py
+++ b/miasm2/arch/x86/arch.py
@@ -3983,6 +3983,8 @@ addop("pshufb", [bs8(0x0f), bs8(0x38), bs8(0x00), no_xmm_pref] +
       rmmod(mm_reg, rm_arg_mm))
 addop("pshufb", [bs8(0x0f), bs8(0x38), bs8(0x00), pref_66] +
       rmmod(xmm_reg, rm_arg_xmm))
+addop("pshufd", [bs8(0x0f), bs8(0x70), pref_66] +
+      rmmod(xmm_reg, rm_arg_xmm) + [u08])