summaryrefslogtreecommitdiffstats
path: root/target-i386/translate.c
diff options
context:
space:
mode:
authorPavel Dovgalyuk2014-11-26 11:39:42 +0100
committerPaolo Bonzini2014-12-15 12:21:02 +0100
commit5b9efc39aee90bbd343793e942bf8f582a0c9e4f (patch)
treed16faa3d215c4c544d43cd30df5d8d140b44f15b /target-i386/translate.c
parentcpus: make icount warp behave well with respect to stop/cont (diff)
downloadqemu-5b9efc39aee90bbd343793e942bf8f582a0c9e4f.tar.gz
qemu-5b9efc39aee90bbd343793e942bf8f582a0c9e4f.tar.xz
qemu-5b9efc39aee90bbd343793e942bf8f582a0c9e4f.zip
i386: do not cross the pages boundaries in replay mode
This patch denies crossing the boundary of the pages in the replay mode, because it can cause an exception. Do it only when boundary is crossed by the first instruction in the block. If current instruction already crossed the bound - it's ok, because an exception hasn't stopped this code. Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgaluk@ispras.ru> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-i386/translate.c')
-rw-r--r--target-i386/translate.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/target-i386/translate.c b/target-i386/translate.c
index 782f7d2666..31a9f74467 100644
--- a/target-i386/translate.c
+++ b/target-i386/translate.c
@@ -8022,6 +8022,20 @@ static inline void gen_intermediate_code_internal(X86CPU *cpu,
gen_eob(dc);
break;
}
+ /* Do not cross the boundary of the pages in icount mode,
+ it can cause an exception. Do it only when boundary is
+ crossed by the first instruction in the block.
+ If current instruction already crossed the bound - it's ok,
+ because an exception hasn't stopped this code.
+ */
+ if (use_icount
+ && ((pc_ptr & TARGET_PAGE_MASK)
+ != ((pc_ptr + TARGET_MAX_INSN_SIZE - 1) & TARGET_PAGE_MASK)
+ || (pc_ptr & ~TARGET_PAGE_MASK) == 0)) {
+ gen_jmp_im(pc_ptr - dc->cs_base);
+ gen_eob(dc);
+ break;
+ }
/* if too long translation, stop generation too */
if (tcg_ctx.gen_opc_ptr >= gen_opc_end ||
(pc_ptr - pc_start) >= (TARGET_PAGE_SIZE - 32) ||