From 31508f673c8d9d9fa8e043021142156ce01e4326 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 23 Mar 2021 14:19:41 +0100 Subject: [DYNAREC] Added 66 0F 68/69/6A opcodes --- src/dynarec/dynarec_arm64_660f.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src') diff --git a/src/dynarec/dynarec_arm64_660f.c b/src/dynarec/dynarec_arm64_660f.c index 565a193d..dc3fdc2b 100755 --- a/src/dynarec/dynarec_arm64_660f.c +++ b/src/dynarec/dynarec_arm64_660f.c @@ -197,6 +197,28 @@ uintptr_t dynarec64_660F(dynarec_arm_t* dyn, uintptr_t addr, uintptr_t ip, int n GOCOND(0x40, "CMOV", "Gw, Ew"); #undef GO + case 0x68: + INST_NAME("PUNPCKHBW Gx,Ex"); + nextop = F8; + GETGX(q0); + GETEX(q1, 1); + VZIP2Q_8(q0, q0, q1); + break; + case 0x69: + INST_NAME("PUNPCKHWD Gx,Ex"); + nextop = F8; + GETGX(q0); + GETEX(q1, 1); + VZIP2Q_16(q0, q0, q1); + break; + case 0x6A: + INST_NAME("PUNPCKHDQ Gx,Ex"); + nextop = F8; + GETGX(q0); + GETEX(q1, 1); + VZIP2Q_32(q0, q0, q1); + break; + case 0x6E: INST_NAME("MOVD Gx, Ed"); nextop = F8; -- cgit 1.4.1