diff options
| author | Tim Blazytko <tim.blazytko@rub.de> | 2016-04-27 13:19:09 +0200 |
|---|---|---|
| committer | Tim Blazytko <tim.blazytko@rub.de> | 2016-04-27 14:41:15 +0200 |
| commit | 8eb0ecb6c1f26b11695bf71451b6b582f10c1c24 (patch) | |
| tree | de160d080b66897c4967d2393fa3da82ac6a061a /miasm2/arch/x86/arch.py | |
| parent | 922ade0605f1dcdbf3b664ca7cae8b6e0da4dc1f (diff) | |
| download | miasm-8eb0ecb6c1f26b11695bf71451b6b582f10c1c24.tar.gz miasm-8eb0ecb6c1f26b11695bf71451b6b582f10c1c24.zip | |
x86 arch: added x86 opcode decoding for SHUFPS
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/x86/arch.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py index 96dc07bd..2498fc47 100644 --- a/miasm2/arch/x86/arch.py +++ b/miasm2/arch/x86/arch.py @@ -4320,6 +4320,9 @@ addop("pmovmskb", [bs8(0x0f), bs8(0xd7), no_xmm_pref] + addop("pmovmskb", [bs8(0x0f), bs8(0xd7), pref_66] + rmmod(reg, rm_arg_xmm_reg)) +addop("shufps", [bs8(0x0f), bs8(0xc6)] + + rmmod(xmm_reg, rm_arg_xmm) + [u08]) + mn_x86.bintree = factor_one_bit(mn_x86.bintree) # mn_x86.bintree = factor_fields_all(mn_x86.bintree) |