about summary refs log tree commit diff stats
path: root/src/miasm/arch/x86/arch.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/miasm/arch/x86/arch.py')
-rw-r--r--src/miasm/arch/x86/arch.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/miasm/arch/x86/arch.py b/src/miasm/arch/x86/arch.py
index 674d32a4..77d19804 100644
--- a/src/miasm/arch/x86/arch.py
+++ b/src/miasm/arch/x86/arch.py
@@ -4321,6 +4321,10 @@ addop("movdq2q", [bs8(0x0f), bs8(0xd6), pref_f2] +
 addop("movq2dq", [bs8(0x0f), bs8(0xd6), pref_f3] +
       rmmod(xmm_reg, rm_arg_mm))
 
+# AVX
+addop("vmovdqu", [bs("011"), swapargs, bs("1111"), pref_f3, pref_0f] +
+      rmmod(ymm_reg, rm_arg_ymm), [ymm_reg, rm_arg_ymm])
+
 ## Additions
 # SSE
 addop("paddb", [bs8(0x0f), bs8(0xfc), pref_66] + rmmod(xmm_reg, rm_arg_xmm))