mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
target/microblaze: Use insn_start from DisasContextBase
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
@ -62,9 +62,6 @@ typedef struct DisasContext {
|
|||||||
DisasContextBase base;
|
DisasContextBase base;
|
||||||
const MicroBlazeCPUConfig *cfg;
|
const MicroBlazeCPUConfig *cfg;
|
||||||
|
|
||||||
/* TCG op of the current insn_start. */
|
|
||||||
TCGOp *insn_start;
|
|
||||||
|
|
||||||
TCGv_i32 r0;
|
TCGv_i32 r0;
|
||||||
bool r0_set;
|
bool r0_set;
|
||||||
|
|
||||||
@ -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,
|
static void record_unaligned_ess(DisasContext *dc, int rd,
|
||||||
MemOp size, bool store)
|
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 |= ESR_ESS_FLAG;
|
||||||
iflags |= rd << 5;
|
iflags |= rd << 5;
|
||||||
iflags |= store * ESR_S;
|
iflags |= store * ESR_S;
|
||||||
iflags |= (size == MO_32) * ESR_W;
|
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
|
#endif
|
||||||
|
|
||||||
@ -1624,7 +1621,6 @@ static void mb_tr_insn_start(DisasContextBase *dcb, CPUState *cs)
|
|||||||
DisasContext *dc = container_of(dcb, DisasContext, base);
|
DisasContext *dc = container_of(dcb, DisasContext, base);
|
||||||
|
|
||||||
tcg_gen_insn_start(dc->base.pc_next, dc->tb_flags & ~MSR_TB_MASK);
|
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)
|
static void mb_tr_translate_insn(DisasContextBase *dcb, CPUState *cs)
|
||||||
|
Reference in New Issue
Block a user