Home
last modified time | relevance | path

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

/xnu-12377.81.4/osfmk/arm64/
H A Dproc_reg.h2402 #define ARM_PTE_WRITEABLE 0x0800000000000000ULL /* value for software writeable bit */ macro
2404 #define ARM_PTE_WRITABLE ARM_PTE_WRITEABLE
/xnu-12377.81.4/osfmk/arm/pmap/
H A Dpmap.c575 (((pte) & ARM_PTE_WRITEABLE) == ARM_PTE_WRITEABLE)
580 (pte) |= ARM_PTE_WRITEABLE; \
582 (pte) &= ~ARM_PTE_WRITEABLE; \
7993 _Static_assert(ARM_PTE_COMPRESSED != ARM_PTE_WRITEABLE, "compressed bit aliases writeable");
8187 if ((spte & (~ARM_PTE_WRITEABLE)) != (tmplate & (~ARM_PTE_WRITEABLE)) &&
8472 if ((spte & (~ARM_PTE_WRITEABLE)) != (tmplate & (~ARM_PTE_WRITEABLE))) {
/xnu-12377.81.4/osfmk/arm64/sptm/pmap/
H A Dpmap.c671 (((pte) & ARM_PTE_WRITEABLE) == ARM_PTE_WRITEABLE)
676 (pte) |= ARM_PTE_WRITEABLE; \
678 (pte) &= ~ARM_PTE_WRITEABLE; \
5526 spte = (spte & ~(ARM_PTE_APMASK | ARM_PTE_XMASK | ARM_PTE_WRITEABLE)) |
5527 (tmplate & (ARM_PTE_APMASK | ARM_PTE_XMASK | ARM_PTE_WRITEABLE));