target/riscv: separation of bitwise logic and arithmetic helpers

Introduction of a gen_logic function for bitwise logic to implement
instructions in which no propagation of information occurs between bits and
use of this function on the bitwise instructions.

Signed-off-by: Frédéric Pétrot <frederic.petrot@univ-grenoble-alpes.fr>
Co-authored-by: Fabien Portas <fabien.portas@grenoble-inp.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 20220106210108.138226-6-frederic.petrot@univ-grenoble-alpes.fr
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
Frédéric Pétrot 2022-01-06 22:00:55 +01:00 committed by Alistair Francis
parent 344b4a82fc
commit a1a3aac448
3 changed files with 36 additions and 9 deletions

View File

@ -86,19 +86,19 @@ static bool trans_cpop(DisasContext *ctx, arg_cpop *a)
static bool trans_andn(DisasContext *ctx, arg_andn *a) static bool trans_andn(DisasContext *ctx, arg_andn *a)
{ {
REQUIRE_ZBB(ctx); REQUIRE_ZBB(ctx);
return gen_arith(ctx, a, EXT_NONE, tcg_gen_andc_tl); return gen_logic(ctx, a, tcg_gen_andc_tl);
} }
static bool trans_orn(DisasContext *ctx, arg_orn *a) static bool trans_orn(DisasContext *ctx, arg_orn *a)
{ {
REQUIRE_ZBB(ctx); REQUIRE_ZBB(ctx);
return gen_arith(ctx, a, EXT_NONE, tcg_gen_orc_tl); return gen_logic(ctx, a, tcg_gen_orc_tl);
} }
static bool trans_xnor(DisasContext *ctx, arg_xnor *a) static bool trans_xnor(DisasContext *ctx, arg_xnor *a)
{ {
REQUIRE_ZBB(ctx); REQUIRE_ZBB(ctx);
return gen_arith(ctx, a, EXT_NONE, tcg_gen_eqv_tl); return gen_logic(ctx, a, tcg_gen_eqv_tl);
} }
static bool trans_min(DisasContext *ctx, arg_min *a) static bool trans_min(DisasContext *ctx, arg_min *a)

View File

@ -252,17 +252,17 @@ static bool trans_sltiu(DisasContext *ctx, arg_sltiu *a)
static bool trans_xori(DisasContext *ctx, arg_xori *a) static bool trans_xori(DisasContext *ctx, arg_xori *a)
{ {
return gen_arith_imm_fn(ctx, a, EXT_NONE, tcg_gen_xori_tl); return gen_logic_imm_fn(ctx, a, tcg_gen_xori_tl);
} }
static bool trans_ori(DisasContext *ctx, arg_ori *a) static bool trans_ori(DisasContext *ctx, arg_ori *a)
{ {
return gen_arith_imm_fn(ctx, a, EXT_NONE, tcg_gen_ori_tl); return gen_logic_imm_fn(ctx, a, tcg_gen_ori_tl);
} }
static bool trans_andi(DisasContext *ctx, arg_andi *a) static bool trans_andi(DisasContext *ctx, arg_andi *a)
{ {
return gen_arith_imm_fn(ctx, a, EXT_NONE, tcg_gen_andi_tl); return gen_logic_imm_fn(ctx, a, tcg_gen_andi_tl);
} }
static bool trans_slli(DisasContext *ctx, arg_slli *a) static bool trans_slli(DisasContext *ctx, arg_slli *a)
@ -319,7 +319,7 @@ static bool trans_sltu(DisasContext *ctx, arg_sltu *a)
static bool trans_xor(DisasContext *ctx, arg_xor *a) static bool trans_xor(DisasContext *ctx, arg_xor *a)
{ {
return gen_arith(ctx, a, EXT_NONE, tcg_gen_xor_tl); return gen_logic(ctx, a, tcg_gen_xor_tl);
} }
static bool trans_srl(DisasContext *ctx, arg_srl *a) static bool trans_srl(DisasContext *ctx, arg_srl *a)
@ -334,12 +334,12 @@ static bool trans_sra(DisasContext *ctx, arg_sra *a)
static bool trans_or(DisasContext *ctx, arg_or *a) static bool trans_or(DisasContext *ctx, arg_or *a)
{ {
return gen_arith(ctx, a, EXT_NONE, tcg_gen_or_tl); return gen_logic(ctx, a, tcg_gen_or_tl);
} }
static bool trans_and(DisasContext *ctx, arg_and *a) static bool trans_and(DisasContext *ctx, arg_and *a)
{ {
return gen_arith(ctx, a, EXT_NONE, tcg_gen_and_tl); return gen_logic(ctx, a, tcg_gen_and_tl);
} }
static bool trans_addiw(DisasContext *ctx, arg_addiw *a) static bool trans_addiw(DisasContext *ctx, arg_addiw *a)

View File

@ -475,6 +475,33 @@ static int ex_rvc_shifti(DisasContext *ctx, int imm)
/* Include the auto-generated decoder for 32 bit insn */ /* Include the auto-generated decoder for 32 bit insn */
#include "decode-insn32.c.inc" #include "decode-insn32.c.inc"
static bool gen_logic_imm_fn(DisasContext *ctx, arg_i *a,
void (*func)(TCGv, TCGv, target_long))
{
TCGv dest = dest_gpr(ctx, a->rd);
TCGv src1 = get_gpr(ctx, a->rs1, EXT_NONE);
func(dest, src1, a->imm);
gen_set_gpr(ctx, a->rd, dest);
return true;
}
static bool gen_logic(DisasContext *ctx, arg_r *a,
void (*func)(TCGv, TCGv, TCGv))
{
TCGv dest = dest_gpr(ctx, a->rd);
TCGv src1 = get_gpr(ctx, a->rs1, EXT_NONE);
TCGv src2 = get_gpr(ctx, a->rs2, EXT_NONE);
func(dest, src1, src2);
gen_set_gpr(ctx, a->rd, dest);
return true;
}
static bool gen_arith_imm_fn(DisasContext *ctx, arg_i *a, DisasExtend ext, static bool gen_arith_imm_fn(DisasContext *ctx, arg_i *a, DisasExtend ext,
void (*func)(TCGv, TCGv, target_long)) void (*func)(TCGv, TCGv, target_long))
{ {