about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-23 23:22:09 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-24 18:38:19 +0100
commitd2dc89a03a1fe475844a0ae5098604b0ae0a8525 (patch)
treef69b2b3fed3379561cf223a09a2608ea5318ae9f /test
parentd5029cf5db186414413fe45601f66b333b89599c (diff)
downloadmiasm-d2dc89a03a1fe475844a0ae5098604b0ae0a8525.tar.gz
miasm-d2dc89a03a1fe475844a0ae5098604b0ae0a8525.zip
X86: add punpckl
Diffstat (limited to 'test')
-rw-r--r--test/arch/x86/arch.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 8a9402a0..2048dda4 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2707,10 +2707,28 @@ reg_tests = [
     (m32, "00000000    PUNPCKHDQ  XMM2, XMMWORD PTR [EDX]",
     "660F6A12"),
 
-
     (m32, "00000000    PUNPCKHQDQ XMM2, XMMWORD PTR [EDX]",
     "660F6D12"),
 
+
+    (m32, "00000000    PUNPCKLBW  MM2, QWORD PTR [EDX]",
+    "0F6012"),
+    (m32, "00000000    PUNPCKLBW  XMM2, XMMWORD PTR [EDX]",
+    "660F6012"),
+
+    (m32, "00000000    PUNPCKLWD  MM2, QWORD PTR [EDX]",
+    "0F6112"),
+    (m32, "00000000    PUNPCKLWD  XMM2, XMMWORD PTR [EDX]",
+    "660F6112"),
+
+    (m32, "00000000    PUNPCKLDQ  MM2, QWORD PTR [EDX]",
+    "0F6212"),
+    (m32, "00000000    PUNPCKLDQ  XMM2, XMMWORD PTR [EDX]",
+    "660F6212"),
+
+    (m32, "00000000    PUNPCKLQDQ XMM2, XMMWORD PTR [EDX]",
+    "660F6C12"),
+
 ]