simpler second page physical address test

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@553 c046a42c-6fe2-441c-8c8c-71466251a162
master
bellard 2004-01-18 21:50:04 +00:00
parent 1e4fe7cee2
commit b516f85ca8
1 changed files with 3 additions and 2 deletions

View File

@ -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;