projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f811b9
)
target-alpha: Don't issue goto_tb under singlestep
author
Richard Henderson
<rth@twiddle.net>
Thu, 27 Mar 2014 01:37:08 +0000
(18:37 -0700)
committer
Richard Henderson
<rth@twiddle.net>
Thu, 17 Apr 2014 18:47:42 +0000
(11:47 -0700)
Signed-off-by: Richard Henderson <rth@twiddle.net>
target-alpha/translate.c
patch
|
blob
|
history
diff --git
a/target-alpha/translate.c
b/target-alpha/translate.c
index c5f2a8dd21996c3626c47729a9f357d2a4f7a4b0..d5de9bc19f481643acb0fe0901a5aa36efd88cb6 100644
(file)
--- a/
target-alpha/translate.c
+++ b/
target-alpha/translate.c
@@
-426,7
+426,8
@@
static bool in_superpage(DisasContext *ctx, int64_t addr)
static bool use_goto_tb(DisasContext *ctx, uint64_t dest)
{
/* Suppress goto_tb in the case of single-steping and IO. */
- if (ctx->singlestep_enabled || (ctx->tb->cflags & CF_LAST_IO)) {
+ if ((ctx->tb->cflags & CF_LAST_IO)
+ || ctx->singlestep_enabled || singlestep) {
return false;
}
/* If the destination is in the superpage, the page perms can't change. */