]> Git Repo - qemu.git/commitdiff
target-i386: x86_cpu_get_phys_page_debug(): support 1GB page translation
authorLuiz Capitulino <[email protected]>
Wed, 19 Mar 2014 21:03:53 +0000 (17:03 -0400)
committerAndreas Färber <[email protected]>
Mon, 31 Mar 2014 17:06:48 +0000 (19:06 +0200)
Linux guests, when using more than 4GB of RAM, may end up using 1GB pages
to store (kernel) data. When this happens, we're unable to debug a running
Linux kernel with GDB:

(gdb) p node_data[0]->node_id
Cannot access memory at address 0xffff88013fffd3a0
(gdb)

GDB returns this error because x86_cpu_get_phys_page_debug() doesn't support
translating 1GB pages in IA-32e paging mode and returns an error to GDB.

This commit adds support for 1GB page translation for IA32e paging.

Signed-off-by: Luiz Capitulino <[email protected]>
Reviewed-by: Paolo Bonzini <[email protected]>
Reviewed-by: Jan Kiszka <[email protected]>
Signed-off-by: Andreas Färber <[email protected]>
target-i386/helper.c

index 4f447b8cf961d66deadc248d7a60eaf984485a6c..372f0e3ecb30185de59664455e835fe67dbc0246 100644 (file)
@@ -941,6 +941,14 @@ hwaddr x86_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
             pdpe = ldq_phys(cs->as, pdpe_addr);
             if (!(pdpe & PG_PRESENT_MASK))
                 return -1;
+
+            if (pdpe & PG_PSE_MASK) {
+                page_size = 1024 * 1024 * 1024;
+                pte = pdpe & ~( (page_size - 1) & ~0xfff);
+                pte &= ~(PG_NX_MASK | PG_HI_USER_MASK);
+                goto out;
+            }
+
         } else
 #endif
         {
@@ -993,6 +1001,9 @@ hwaddr x86_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
         pte = pte & env->a20_mask;
     }
 
+#ifdef TARGET_X86_64
+out:
+#endif
     page_offset = (addr & TARGET_PAGE_MASK) & (page_size - 1);
     paddr = (pte & TARGET_PAGE_MASK) + page_offset;
     return paddr;
This page took 0.029382 seconds and 4 git commands to generate.