Skip to content

Commit

Permalink
target/arm: Convert T16 add/sub (3 low, 2 low and imm)
Browse files Browse the repository at this point in the history
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20190904193059.26202-52-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
rth7680 authored and pm215 committed Sep 5, 2019
1 parent 6e8514b commit c4d3095
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 24 deletions.
16 changes: 16 additions & 0 deletions target/arm/t16.decode
Expand Up @@ -117,3 +117,19 @@ ADD_rri 10101 rd:3 ........ \

STM 11000 ... ........ @ldstm
LDM_t16 11001 ... ........ @ldstm

# Add/subtract (three low registers)

@addsub_3 ....... rm:3 rn:3 rd:3 \
&s_rrr_shi %s shim=0 shty=0

ADD_rrri 0001100 ... ... ... @addsub_3
SUB_rrri 0001101 ... ... ... @addsub_3

# Add/subtract (two low registers and immediate)

@addsub_2i ....... imm:3 rn:3 rd:3 \
&s_rri_rot %s rot=0

ADD_rri 0001 110 ... ... ... @addsub_2i
SUB_rri 0001 111 ... ... ... @addsub_2i
26 changes: 2 additions & 24 deletions target/arm/translate.c
Expand Up @@ -10691,31 +10691,9 @@ static void disas_thumb_insn(DisasContext *s, uint32_t insn)
* 0b0001_1xxx_xxxx_xxxx
* - Add, subtract (three low registers)
* - Add, subtract (two low registers and immediate)
* In decodetree.
*/
rn = (insn >> 3) & 7;
tmp = load_reg(s, rn);
if (insn & (1 << 10)) {
/* immediate */
tmp2 = tcg_temp_new_i32();
tcg_gen_movi_i32(tmp2, (insn >> 6) & 7);
} else {
/* reg */
rm = (insn >> 6) & 7;
tmp2 = load_reg(s, rm);
}
if (insn & (1 << 9)) {
if (s->condexec_mask)
tcg_gen_sub_i32(tmp, tmp, tmp2);
else
gen_sub_CC(tmp, tmp, tmp2);
} else {
if (s->condexec_mask)
tcg_gen_add_i32(tmp, tmp, tmp2);
else
gen_add_CC(tmp, tmp, tmp2);
}
tcg_temp_free_i32(tmp2);
store_reg(s, rd, tmp);
goto illegal_op;
} else {
/* shift immediate */
rm = (insn >> 3) & 7;
Expand Down

0 comments on commit c4d3095

Please sign in to comment.