Lines Matching refs:PG_NX_MASK
1024 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()
1119 ptep &= pte ^ PG_NX_MASK; in cpu_x86_handle_mmu_fault()
1120 ptep ^= PG_NX_MASK; in cpu_x86_handle_mmu_fault()
1121 if ((ptep & PG_NX_MASK) && is_write1 == 2) in cpu_x86_handle_mmu_fault()
1218 if (!(ptep & PG_NX_MASK)) in cpu_x86_handle_mmu_fault()