mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target/arm: Remove offset argument to gen_exception_bkpt_insn
Unlike the other more generic gen_exception{,_internal}_insn interfaces, breakpoints always refer to the current instruction. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20190807045335.1361-10-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
aee828e754
commit
06bcbda3f6
2 changed files with 7 additions and 8 deletions
|
@ -268,12 +268,11 @@ static void gen_exception_insn(DisasContext *s, uint64_t pc, int excp,
|
|||
s->base.is_jmp = DISAS_NORETURN;
|
||||
}
|
||||
|
||||
static void gen_exception_bkpt_insn(DisasContext *s, int offset,
|
||||
uint32_t syndrome)
|
||||
static void gen_exception_bkpt_insn(DisasContext *s, uint32_t syndrome)
|
||||
{
|
||||
TCGv_i32 tcg_syn;
|
||||
|
||||
gen_a64_set_pc_im(s->base.pc_next - offset);
|
||||
gen_a64_set_pc_im(s->pc_curr);
|
||||
tcg_syn = tcg_const_i32(syndrome);
|
||||
gen_helper_exception_bkpt_insn(cpu_env, tcg_syn);
|
||||
tcg_temp_free_i32(tcg_syn);
|
||||
|
@ -1900,7 +1899,7 @@ static void disas_exc(DisasContext *s, uint32_t insn)
|
|||
break;
|
||||
}
|
||||
/* BRK */
|
||||
gen_exception_bkpt_insn(s, 4, syn_aa64_bkpt(imm16));
|
||||
gen_exception_bkpt_insn(s, syn_aa64_bkpt(imm16));
|
||||
break;
|
||||
case 2:
|
||||
if (op2_ll != 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue