Home
last modified time | relevance | path

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

/external/qemu/target-i386/
Dhelper.c1024 if (!(env->efer & MSR_EFER_NXE) && (pml4e & PG_NX_MASK)) { in cpu_x86_handle_mmu_fault()
1032 ptep = pml4e ^ PG_NX_MASK; in cpu_x86_handle_mmu_fault()
1040 if (!(env->efer & MSR_EFER_NXE) && (pdpe & PG_NX_MASK)) { in cpu_x86_handle_mmu_fault()
1044 ptep &= pdpe ^ PG_NX_MASK; in cpu_x86_handle_mmu_fault()
1060 ptep = PG_NX_MASK | PG_USER_MASK | PG_RW_MASK; in cpu_x86_handle_mmu_fault()
1070 if (!(env->efer & MSR_EFER_NXE) && (pde & PG_NX_MASK)) { in cpu_x86_handle_mmu_fault()
1074 ptep &= pde ^ PG_NX_MASK; in cpu_x86_handle_mmu_fault()
1078 ptep ^= PG_NX_MASK; in cpu_x86_handle_mmu_fault()
1079 if ((ptep & PG_NX_MASK) && is_write1 == 2) in cpu_x86_handle_mmu_fault()
1114 if (!(env->efer & MSR_EFER_NXE) && (pte & PG_NX_MASK)) { in cpu_x86_handle_mmu_fault()
[all …]
Dcpu.h244 #define PG_NX_MASK (1LL << PG_NX_BIT) macro