mirror of https://github.com/xemu-project/xemu.git
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.) Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200512163904.10918-7-peter.maydell@linaro.org
This commit is contained in:
parent
7715098f93
commit
8e44d03f4b
|
@ -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_S_3s 1111 001 0 0 . .. .... .... 0000 . . . 1 .... @3same
|
||||||
VQADD_U_3s 1111 001 1 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_logic .... ... . . . .. .... .... .... . q:1 .. .... \
|
||||||
&3same vm=%vm_dp vn=%vn_dp vd=%vd_dp size=0
|
&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
|
VBIT_3s 1111 001 1 0 . 10 .... .... 0001 ... 1 .... @3same_logic
|
||||||
VBIF_3s 1111 001 1 0 . 11 .... .... 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_S_3s 1111 001 0 0 . .. .... .... 0010 . . . 1 .... @3same
|
||||||
VQSUB_U_3s 1111 001 1 0 . .. .... .... 0010 . . . 1 .... @3same
|
VQSUB_U_3s 1111 001 1 0 . .. .... .... 0010 . . . 1 .... @3same
|
||||||
|
|
||||||
|
|
|
@ -877,3 +877,7 @@ DO_3SAME_64_ENV(VQRSHL_U64, gen_helper_neon_qrshl_u64)
|
||||||
|
|
||||||
DO_3SAME_32(VHADD_S, hadd_s)
|
DO_3SAME_32(VHADD_S, hadd_s)
|
||||||
DO_3SAME_32(VHADD_U, hadd_u)
|
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)
|
||||||
|
|
|
@ -5435,6 +5435,8 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
|
||||||
case NEON_3R_VSHL:
|
case NEON_3R_VSHL:
|
||||||
case NEON_3R_SHA:
|
case NEON_3R_SHA:
|
||||||
case NEON_3R_VHADD:
|
case NEON_3R_VHADD:
|
||||||
|
case NEON_3R_VRHADD:
|
||||||
|
case NEON_3R_VHSUB:
|
||||||
case NEON_3R_VABD:
|
case NEON_3R_VABD:
|
||||||
case NEON_3R_VABA:
|
case NEON_3R_VABA:
|
||||||
/* Already handled by decodetree */
|
/* Already handled by decodetree */
|
||||||
|
@ -5517,12 +5519,6 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
|
||||||
tmp2 = neon_load_reg(rm, pass);
|
tmp2 = neon_load_reg(rm, pass);
|
||||||
}
|
}
|
||||||
switch (op) {
|
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:
|
case NEON_3R_VQSHL:
|
||||||
GEN_NEON_INTEGER_OP_ENV(qshl);
|
GEN_NEON_INTEGER_OP_ENV(qshl);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue