Home
last modified time | relevance | path

Searched refs:pte_addr (Results 1 – 1 of 1) sorted by relevance

/external/qemu/target-i386/
Dhelper.c985 target_ulong pde_addr, pte_addr; in cpu_x86_handle_mmu_fault() local
1113 pte_addr = ((pde & PHYS_ADDR_MASK) + (((addr >> 12) & 0x1ff) << 3)) & in cpu_x86_handle_mmu_fault()
1115 pte = ldq_phys(pte_addr); in cpu_x86_handle_mmu_fault()
1144 stl_phys_notdirty(pte_addr, pte); in cpu_x86_handle_mmu_fault()
1192 pte_addr = ((pde & ~0xfff) + ((addr >> 10) & 0xffc)) & in cpu_x86_handle_mmu_fault()
1194 pte = ldl_phys(pte_addr); in cpu_x86_handle_mmu_fault()
1216 stl_phys_notdirty(pte_addr, pte); in cpu_x86_handle_mmu_fault()
1273 target_ulong pde_addr, pte_addr; in cpu_get_phys_page_debug() local
1326 pte_addr = ((pde & ~0xfff) + (((addr >> 12) & 0x1ff) << 3)) & in cpu_get_phys_page_debug()
1329 pte = ldq_phys(pte_addr); in cpu_get_phys_page_debug()
[all …]