Home
last modified time | relevance | path

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

/freebsd-13.1/sys/amd64/amd64/
H A Defirt_machdep.c115 pml4_entry_t *pml4e; in efi_1t1_pte() local
134 pml4e = (pml4_entry_t *)PHYS_TO_DMAP(mphys); in efi_1t1_pte()
135 pml4e = &pml4e[pml4_idx]; in efi_1t1_pte()
137 pml4e = &efi_pml4[pml4_idx]; in efi_1t1_pte()
140 if (*pml4e == 0) { in efi_1t1_pte()
143 *pml4e = mphys | X86_PG_RW | X86_PG_V; in efi_1t1_pte()
145 mphys = *pml4e & PG_FRAME; in efi_1t1_pte()
H A Dpmap.c1361 pml4_entry_t *pml4e; in pmap_pml5e_to_pml4e() local
1373 pml4_entry_t *pml4e; in pmap_pml4e() local
1409 pml4_entry_t *pml4e; in pmap_pdpe() local
1414 if (pml4e == NULL || (*pml4e & PG_V) == 0) in pmap_pdpe()
6494 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_protect()
6779 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_enter_largepage()
7620 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_unwire()
7745 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_copy()
8846 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_advise()
10829 if (*pml4e == 0) { in pmap_pti_pdpe()
[all …]
H A Dmachdep.c1271 pml4_entry_t *pml4e; in hammer_time() local
1298 pml4e = (pml4_entry_t *)(cr3 & ~PAGE_MASK) + pmap_pml4e_index( in hammer_time()
1300 pdpe = (pdp_entry_t *)(*pml4e & ~PAGE_MASK) + pmap_pdpe_index( in hammer_time()
/freebsd-13.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()