Home
last modified time | relevance | path

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

/external/qemu/target-i386/
Dhelper.c1008 target_ulong pdpe_addr; in cpu_x86_handle_mmu_fault() local
1039 pdpe_addr = ((pml4e & PHYS_ADDR_MASK) + (((addr >> 30) & 0x1ff) << 3)) & in cpu_x86_handle_mmu_fault()
1041 pdpe = ldq_phys(pdpe_addr); in cpu_x86_handle_mmu_fault()
1053 stl_phys_notdirty(pdpe_addr, pdpe); in cpu_x86_handle_mmu_fault()
1059 pdpe_addr = ((env->cr[3] & ~0x1f) + ((addr >> 27) & 0x18)) & in cpu_x86_handle_mmu_fault()
1061 pdpe = ldq_phys(pdpe_addr); in cpu_x86_handle_mmu_fault()
1280 target_ulong pdpe_addr; in cpu_get_phys_page_debug() local
1299 pdpe_addr = ((pml4e & ~0xfff) + (((addr >> 30) & 0x1ff) << 3)) & in cpu_get_phys_page_debug()
1301 pdpe = ldq_phys(pdpe_addr); in cpu_get_phys_page_debug()
1307 pdpe_addr = ((env->cr[3] & ~0x1f) + ((addr >> 27) & 0x18)) & in cpu_get_phys_page_debug()
[all …]