mirror of https://github.com/xemu-project/xemu.git
target/xtensa: Finish conversion to tcg_gen_qemu_{ld, st}_*
Convert away from the old interface with the implicit MemOp argument. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Max Filippov <jcmvbkbc@gmail.com> Message-Id: <20230502135741.1158035-9-richard.henderson@linaro.org>
This commit is contained in:
parent
0814911883
commit
f0aca2a912
|
@ -1549,7 +1549,7 @@ static void translate_dcache(DisasContext *dc, const OpcodeArg arg[],
|
|||
TCGv_i32 res = tcg_temp_new_i32();
|
||||
|
||||
tcg_gen_addi_i32(addr, arg[0].in, arg[1].imm);
|
||||
tcg_gen_qemu_ld8u(res, addr, dc->cring);
|
||||
tcg_gen_qemu_ld_i32(res, addr, dc->cring, MO_UB);
|
||||
}
|
||||
|
||||
static void translate_depbits(DisasContext *dc, const OpcodeArg arg[],
|
||||
|
@ -1726,7 +1726,7 @@ static void translate_l32r(DisasContext *dc, const OpcodeArg arg[],
|
|||
} else {
|
||||
tmp = tcg_constant_i32(arg[1].imm);
|
||||
}
|
||||
tcg_gen_qemu_ld32u(arg[0].out, tmp, dc->cring);
|
||||
tcg_gen_qemu_ld_i32(arg[0].out, tmp, dc->cring, MO_TEUL);
|
||||
}
|
||||
|
||||
static void translate_loop(DisasContext *dc, const OpcodeArg arg[],
|
||||
|
|
Loading…
Reference in New Issue