]> Git Repo - qemu.git/blobdiff - target-xtensa/helper.c
cpu: Turn cpu_get_phys_page_debug() into a CPUClass hook
[qemu.git] / target-xtensa / helper.c
index 6f613c66a6e755e9d072d10ff5bf0509ecdff2c0..de6cc3b7c57fa83eae173cc52640dc6400c8613e 100644 (file)
@@ -108,17 +108,18 @@ void xtensa_cpu_list(FILE *f, fprintf_function cpu_fprintf)
     }
 }
 
-hwaddr cpu_get_phys_page_debug(CPUXtensaState *env, target_ulong addr)
+hwaddr xtensa_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
 {
+    XtensaCPU *cpu = XTENSA_CPU(cs);
     uint32_t paddr;
     uint32_t page_size;
     unsigned access;
 
-    if (xtensa_get_physical_addr(env, false, addr, 0, 0,
+    if (xtensa_get_physical_addr(&cpu->env, false, addr, 0, 0,
                 &paddr, &page_size, &access) == 0) {
         return paddr;
     }
-    if (xtensa_get_physical_addr(env, false, addr, 2, 0,
+    if (xtensa_get_physical_addr(&cpu->env, false, addr, 2, 0,
                 &paddr, &page_size, &access) == 0) {
         return paddr;
     }
This page took 0.020055 seconds and 4 git commands to generate.