mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 20:41:04 +00:00
target/arm: Convert Neon VRHADD, VHSUB 3-reg-same insns to decodetree
Convert the Neon VRHADD and VHSUB 3-reg-same insns to decodetree. (These are all the other insns in 3-reg-same which were using GEN_NEON_INTEGER_OP() and which are not pairwise or reversed-operands.) Backports commit 8e44d03f4b5590e19a4f7910ca1c327609933dd7 from qemu
This commit is contained in:
parent
ec327c7fc8
commit
5308fb324e
|
@ -47,6 +47,9 @@ VHADD_U_3s 1111 001 1 0 . .. .... .... 0000 . . . 0 .... @3same
|
|||
VQADD_S_3s 1111 001 0 0 . .. .... .... 0000 . . . 1 .... @3same
|
||||
VQADD_U_3s 1111 001 1 0 . .. .... .... 0000 . . . 1 .... @3same
|
||||
|
||||
VRHADD_S_3s 1111 001 0 0 . .. .... .... 0001 . . . 0 .... @3same
|
||||
VRHADD_U_3s 1111 001 1 0 . .. .... .... 0001 . . . 0 .... @3same
|
||||
|
||||
@3same_logic .... ... . . . .. .... .... .... . q:1 .. .... \
|
||||
&3same vm=%vm_dp vn=%vn_dp vd=%vd_dp size=0
|
||||
|
||||
|
@ -59,6 +62,9 @@ VBSL_3s 1111 001 1 0 . 01 .... .... 0001 ... 1 .... @3same_logic
|
|||
VBIT_3s 1111 001 1 0 . 10 .... .... 0001 ... 1 .... @3same_logic
|
||||
VBIF_3s 1111 001 1 0 . 11 .... .... 0001 ... 1 .... @3same_logic
|
||||
|
||||
VHSUB_S_3s 1111 001 0 0 . .. .... .... 0010 . . . 0 .... @3same
|
||||
VHSUB_U_3s 1111 001 1 0 . .. .... .... 0010 . . . 0 .... @3same
|
||||
|
||||
VQSUB_S_3s 1111 001 0 0 . .. .... .... 0010 . . . 1 .... @3same
|
||||
VQSUB_U_3s 1111 001 1 0 . .. .... .... 0010 . . . 1 .... @3same
|
||||
|
||||
|
|
|
@ -894,4 +894,8 @@ DO_3SAME_64_ENV(VQRSHL_U64, gen_helper_neon_qrshl_u64)
|
|||
|
||||
DO_3SAME_32(VHADD_S, hadd_s)
|
||||
DO_3SAME_32(VHADD_U, hadd_u)
|
||||
DO_3SAME_32(VHSUB_S, hsub_s)
|
||||
DO_3SAME_32(VHSUB_U, hsub_u)
|
||||
DO_3SAME_32(VRHADD_S, rhadd_s)
|
||||
DO_3SAME_32(VRHADD_U, rhadd_u)
|
||||
|
||||
|
|
|
@ -5562,6 +5562,8 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
|
|||
case NEON_3R_VSHL:
|
||||
case NEON_3R_SHA:
|
||||
case NEON_3R_VHADD:
|
||||
case NEON_3R_VRHADD:
|
||||
case NEON_3R_VHSUB:
|
||||
case NEON_3R_VABD:
|
||||
case NEON_3R_VABA:
|
||||
/* Already handled by decodetree */
|
||||
|
@ -5644,12 +5646,6 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
|
|||
tmp2 = neon_load_reg(s, rm, pass);
|
||||
}
|
||||
switch (op) {
|
||||
case NEON_3R_VRHADD:
|
||||
GEN_NEON_INTEGER_OP(rhadd);
|
||||
break;
|
||||
case NEON_3R_VHSUB:
|
||||
GEN_NEON_INTEGER_OP(hsub);
|
||||
break;
|
||||
case NEON_3R_VQSHL:
|
||||
GEN_NEON_INTEGER_OP_ENV(qshl);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue