about summary refs log tree commit diff stats
path: root/test/arch/x86/arch.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-23 22:08:43 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-24 18:38:19 +0100
commit7dd9de865892837d275f0ef0a55f70d8df55fe43 (patch)
tree830af67a279489dd0f55294984353af77d991744 /test/arch/x86/arch.py
parent8f5cd4efc8bc1442a413d7909ee3ee5edc486321 (diff)
downloadmiasm-7dd9de865892837d275f0ef0a55f70d8df55fe43.tar.gz
miasm-7dd9de865892837d275f0ef0a55f70d8df55fe43.zip
X86: add pcmpeq
Diffstat (limited to 'test/arch/x86/arch.py')
-rw-r--r--test/arch/x86/arch.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index b10497ae..1c18fc3a 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2675,6 +2675,22 @@ reg_tests = [
     (m32, "00000000    PMINUD     XMM2, XMMWORD PTR [EDX]",
     "660F383B12"),
 
+
+    (m32, "00000000    PCMPEQB    MM2, QWORD PTR [EDX]",
+    "0F7412"),
+    (m32, "00000000    PCMPEQB    XMM2, XMMWORD PTR [EDX]",
+    "660F7412"),
+
+    (m32, "00000000    PCMPEQW    MM2, QWORD PTR [EDX]",
+    "0F7512"),
+    (m32, "00000000    PCMPEQW    XMM2, XMMWORD PTR [EDX]",
+    "660F7512"),
+
+    (m32, "00000000    PCMPEQD    MM2, QWORD PTR [EDX]",
+    "0F7612"),
+    (m32, "00000000    PCMPEQD    XMM2, XMMWORD PTR [EDX]",
+    "660F7612"),
+
 ]