diff options
author | Richard Henderson <rth@twiddle.net> | 2015-10-13 22:07:49 +0000 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2015-10-28 10:57:16 -0700 |
commit | 522a0d4e3c0d397ffb45ec400d8cbd426dad9d17 (patch) | |
tree | 47bf23d369e201fe8e982097a5fdd5437f88bdfa /target-alpha | |
parent | 496fedddce9a575111df4f912fb9e361037531ed (diff) | |
download | qemu-522a0d4e3c0d397ffb45ec400d8cbd426dad9d17.tar.gz qemu-522a0d4e3c0d397ffb45ec400d8cbd426dad9d17.tar.bz2 qemu-522a0d4e3c0d397ffb45ec400d8cbd426dad9d17.zip |
target-*: Advance pc after recognizing a breakpoint
Some targets already had this within their logic, but make sure
it's present for all targets.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-alpha')
-rw-r--r-- | target-alpha/translate.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-alpha/translate.c b/target-alpha/translate.c index f936d1b5b9..87950c63ec 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -2917,6 +2917,11 @@ void gen_intermediate_code(CPUAlphaState *env, struct TranslationBlock *tb) if (unlikely(cpu_breakpoint_test(cs, ctx.pc, BP_ANY))) { gen_excp(&ctx, EXCP_DEBUG, 0); + /* The address covered by the breakpoint must be included in + [tb->pc, tb->pc + tb->size) in order to for it to be + properly cleared -- thus we increment the PC here so that + the logic setting tb->size below does the right thing. */ + ctx.pc += 4; break; } if (num_insns == max_insns && (tb->cflags & CF_LAST_IO)) { |