about summary refs log tree commit diff stats
path: root/src/miasm/arch/x86/arch.py
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-11-06 14:13:18 +0100
committerChristian Krinitsin <mail@krinitsin.com>2025-11-06 14:13:18 +0100
commit812d4179d8efc42f39f2f444b9ba406e4e34cb95 (patch)
treef134654e4dfafc8d017ddc24ea2e11f309f81bd1 /src/miasm/arch/x86/arch.py
parentb4e4445bfc375d7a041214e293532e4cf5f0caa7 (diff)
downloadfocaccia-miasm-ck/x86-vmovdqu.tar.gz
focaccia-miasm-ck/x86-vmovdqu.zip
Add VMOVDQU instruction ck/x86-vmovdqu
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))