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

/external/qemu/target-i386/
H A Dhelper.c1030 if (!(env->efer & MSR_EFER_NXE) && (pml4e & PG_NX_MASK)) {
1038 ptep = pml4e ^ PG_NX_MASK;
1046 if (!(env->efer & MSR_EFER_NXE) && (pdpe & PG_NX_MASK)) {
1050 ptep &= pdpe ^ PG_NX_MASK;
1066 ptep = PG_NX_MASK | PG_USER_MASK | PG_RW_MASK;
1076 if (!(env->efer & MSR_EFER_NXE) && (pde & PG_NX_MASK)) {
1080 ptep &= pde ^ PG_NX_MASK;
1084 ptep ^= PG_NX_MASK;
1085 if ((ptep & PG_NX_MASK) && is_write1 == 2)
1120 if (!(env->efer & MSR_EFER_NXE) && (pte & PG_NX_MASK)) {
[all...]
H A Dcpu.h244 #define PG_NX_MASK (1LL << PG_NX_BIT) macro

Completed in 44 milliseconds