From 0242d19e79b5218d7878d0581814369177b6172f Mon Sep 17 00:00:00 2001 From: Pavel Dovgalyuk Date: Thu, 4 Oct 2018 04:04:49 -0400 Subject: [PATCH] translator: fix breakpoint processing QEMU cannot pass through the breakpoints when 'si' command is used in remote gdb. This patch disables inserting the breakpoints when we are already single stepping though the gdb remote protocol. This patch also fixes icount calculation for the blocks that include breakpoints - instruction with breakpoint is not executed and shouldn't be used in icount calculation. Backports commit f9f1f56e4da088b993ce28775c271d5bcdcf49ae from qemu --- qemu/accel/tcg/translator.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/qemu/accel/tcg/translator.c b/qemu/accel/tcg/translator.c index e334b529..77fb4a72 100644 --- a/qemu/accel/tcg/translator.c +++ b/qemu/accel/tcg/translator.c @@ -32,6 +32,7 @@ void translator_loop_temp_check(DisasContextBase *db) void translator_loop(const TranslatorOps *ops, DisasContextBase *db, CPUState *cpu, TranslationBlock *tb) { + int bp_insn = 0; TCGContext *tcg_ctx = cpu->uc->tcg_ctx; /* Initialize DisasContext */ @@ -98,11 +99,13 @@ void translator_loop(const TranslatorOps *ops, DisasContextBase *db, tcg_debug_assert(db->is_jmp == DISAS_NEXT); /* no early exit */ /* Pass breakpoint hits to target for further processing */ - if (unlikely(!QTAILQ_EMPTY(&cpu->breakpoints))) { + if (!db->singlestep_enabled + && unlikely(!QTAILQ_EMPTY(&cpu->breakpoints))) { CPUBreakpoint *bp; QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) { if (bp->pc == db->pc_next) { if (ops->breakpoint_check(db, cpu, bp)) { + bp_insn = 1; break; } } @@ -147,7 +150,7 @@ void translator_loop(const TranslatorOps *ops, DisasContextBase *db, tb_end: /* Emit code to exit the TB, as indicated by db->is_jmp. */ ops->tb_stop(db, cpu); - gen_tb_end(tcg_ctx, db->tb, db->num_insns); + gen_tb_end(tcg_ctx, db->tb, db->num_insns - bp_insn); /* The disas_log hook may use these values rather than recompute. */ db->tb->size = db->pc_next - db->pc_first;