Skip to content

Commit

Permalink
target/microblaze: Use insn_start from DisasContextBase
Browse files Browse the repository at this point in the history
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Apr 9, 2024
1 parent 8df1ba4 commit e231345
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions target/microblaze/translate.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ typedef struct DisasContext {
DisasContextBase base;
const MicroBlazeCPUConfig *cfg;

/* TCG op of the current insn_start. */
TCGOp *insn_start;

TCGv_i32 r0;
bool r0_set;

Expand Down Expand Up @@ -699,14 +696,14 @@ static TCGv compute_ldst_addr_ea(DisasContext *dc, int ra, int rb)
static void record_unaligned_ess(DisasContext *dc, int rd,
MemOp size, bool store)
{
uint32_t iflags = tcg_get_insn_start_param(dc->insn_start, 1);
uint32_t iflags = tcg_get_insn_start_param(dc->base.insn_start, 1);

iflags |= ESR_ESS_FLAG;
iflags |= rd << 5;
iflags |= store * ESR_S;
iflags |= (size == MO_32) * ESR_W;

tcg_set_insn_start_param(dc->insn_start, 1, iflags);
tcg_set_insn_start_param(dc->base.insn_start, 1, iflags);
}
#endif

Expand Down Expand Up @@ -1624,7 +1621,6 @@ static void mb_tr_insn_start(DisasContextBase *dcb, CPUState *cs)
DisasContext *dc = container_of(dcb, DisasContext, base);

tcg_gen_insn_start(dc->base.pc_next, dc->tb_flags & ~MSR_TB_MASK);
dc->insn_start = tcg_last_op();
}

static void mb_tr_translate_insn(DisasContextBase *dcb, CPUState *cs)
Expand Down

0 comments on commit e231345

Please sign in to comment.