Home
last modified time | relevance | path

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

/external/qemu/target-i386/
Dhelper.c1006 uint64_t pml4e_addr, pml4e; in cpu_x86_handle_mmu_fault() local
1019 pml4e = ldq_phys(pml4e_addr); in cpu_x86_handle_mmu_fault()
1020 if (!(pml4e & PG_PRESENT_MASK)) { in cpu_x86_handle_mmu_fault()
1024 if (!(env->efer & MSR_EFER_NXE) && (pml4e & PG_NX_MASK)) { in cpu_x86_handle_mmu_fault()
1028 if (!(pml4e & PG_ACCESSED_MASK)) { in cpu_x86_handle_mmu_fault()
1029 pml4e |= PG_ACCESSED_MASK; in cpu_x86_handle_mmu_fault()
1030 stl_phys_notdirty(pml4e_addr, pml4e); in cpu_x86_handle_mmu_fault()
1032 ptep = pml4e ^ PG_NX_MASK; in cpu_x86_handle_mmu_fault()
1033 pdpe_addr = ((pml4e & PHYS_ADDR_MASK) + (((addr >> 30) & 0x1ff) << 3)) & in cpu_x86_handle_mmu_fault()
1279 uint64_t pml4e_addr, pml4e; in cpu_get_phys_page_debug() local
[all …]