Home
last modified time | relevance | path

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

/freebsd-14.2/sys/amd64/amd64/
H A Defirt_machdep.c110 pml4_entry_t *pml4e; in efi_1t1_pte() local
129 pml4e = (pml4_entry_t *)PHYS_TO_DMAP(mphys); in efi_1t1_pte()
130 pml4e = &pml4e[pml4_idx]; in efi_1t1_pte()
132 pml4e = &efi_pml4[pml4_idx]; in efi_1t1_pte()
135 if (*pml4e == 0) { in efi_1t1_pte()
138 *pml4e = mphys | X86_PG_RW | X86_PG_V; in efi_1t1_pte()
140 mphys = *pml4e & PG_FRAME; in efi_1t1_pte()
H A Dpmap.c1407 pml4_entry_t *pml4e; in pmap_pml5e_to_pml4e() local
1419 pml4_entry_t *pml4e; in pmap_pml4e() local
1455 pml4_entry_t *pml4e; in pmap_pdpe() local
1460 if (pml4e == NULL || (*pml4e & PG_V) == 0) in pmap_pdpe()
6752 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_protect()
7077 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_enter_largepage()
7982 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_unwire()
8107 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_copy()
9200 if (pml4e == NULL || (*pml4e & PG_V) == 0) { in pmap_advise()
11190 if (*pml4e == 0) { in pmap_pti_pdpe()
[all …]
H A Dmachdep.c1275 pml4_entry_t *pml4e; in amd64_loadaddr() local
1281 pml4e = (pml4_entry_t *)cr3 + pmap_pml4e_index(KERNSTART); in amd64_loadaddr()
1282 pdpe = (pdp_entry_t *)(*pml4e & PG_FRAME) + pmap_pdpe_index(KERNSTART); in amd64_loadaddr()
/freebsd-14.2/lib/libkvm/
H A Dkvm_amd64.c174 amd64_pml4e_t pml4e; in _amd64_vatop() local
204 pml4e = le64toh(vm->PML4[pml4eindex]); in _amd64_vatop()
205 if ((pml4e & AMD64_PG_V) == 0) { in _amd64_vatop()
211 pdpe_pa = (pml4e & AMD64_PG_FRAME) + (pdpeindex * sizeof(amd64_pdpe_t)); in _amd64_vatop()