Home
last modified time | relevance | path

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

/freebsd-12.1/sys/amd64/amd64/
H A Defirt_machdep.c112 pml4_entry_t *pml4e; in efi_1t1_pte() local
121 pml4e = &efi_pml4[pml4_idx]; in efi_1t1_pte()
122 if (*pml4e == 0) { in efi_1t1_pte()
125 *pml4e = mphys | X86_PG_RW | X86_PG_V; in efi_1t1_pte()
127 mphys = *pml4e & ~PAGE_MASK; in efi_1t1_pte()
H A Dpmap.c1229 pml4_entry_t *pml4e; in pmap_pdpe() local
1234 if ((*pml4e & PG_V) == 0) in pmap_pdpe()
5040 pml4_entry_t *pml4e; in pmap_remove() local
5315 pml4_entry_t *pml4e; in pmap_protect() local
6351 pml4_entry_t *pml4e; in pmap_unwire() local
6470 pml4_entry_t *pml4e; in pmap_copy() local
7525 pml4_entry_t *pml4e; in pmap_advise() local
9502 pml4_entry_t *pml4e; in pmap_pti_pdpe() local
9513 if (*pml4e == 0) { in pmap_pti_pdpe()
9517 if (*pml4e != 0) { in pmap_pti_pdpe()
[all …]
/freebsd-12.1/lib/libkvm/
H A Dkvm_amd64.c175 amd64_pml4e_t pml4e; in _amd64_vatop() local
205 pml4e = le64toh(vm->PML4[pml4eindex]); in _amd64_vatop()
206 if ((pml4e & AMD64_PG_V) == 0) { in _amd64_vatop()
212 pdpe_pa = (pml4e & AMD64_PG_FRAME) + (pdpeindex * sizeof(amd64_pdpe_t)); in _amd64_vatop()