From b516f85ca80008bedc3169e22652dcd710008125 Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 18 Jan 2004 21:50:04 +0000 Subject: [PATCH] simpler second page physical address test git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@553 c046a42c-6fe2-441c-8c8c-71466251a162 --- cpu-exec.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cpu-exec.c b/cpu-exec.c index 817200823..f0fa722ca 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -295,8 +295,9 @@ int cpu_exec(CPUState *env1) tb->cs_base == (unsigned long)cs_base && tb->flags == flags) { /* check next page if needed */ - virt_page2 = ((unsigned long)pc + tb->size - 1) & TARGET_PAGE_MASK; - if (((unsigned long)pc & TARGET_PAGE_MASK) != virt_page2) { + if (tb->page_addr[1] != -1) { + virt_page2 = ((unsigned long)pc & TARGET_PAGE_MASK) + + TARGET_PAGE_SIZE; phys_page2 = get_phys_addr_code(env, virt_page2); if (tb->page_addr[1] == phys_page2) goto found; -- 2.39.5