Home
last modified time | relevance | path

Searched refs:pdp_entry_t (Results 1 – 9 of 9) sorted by relevance

/freebsd/stand/kboot/kboot/arch/amd64/
H A Delf64_freebsd.c118 static pdp_entry_t *PT3_l, *PT3_u;
122 static pdp_entry_t *PT3;
267 PT3[i] = (pdp_entry_t)PT2; in elf64_exec()
300 PT3_l[0] = (pdp_entry_t)PT2_l0 | PG_V | PG_RW; in elf64_exec()
301 PT3_l[1] = (pdp_entry_t)PT2_l1 | PG_V | PG_RW; in elf64_exec()
302 PT3_l[2] = (pdp_entry_t)PT2_l2 | PG_V | PG_RW; in elf64_exec()
303 PT3_l[3] = (pdp_entry_t)PT2_l3 | PG_V | PG_RW; in elf64_exec()
311 PT3_u[NPDPEPG - 2] = (pdp_entry_t)PT2_u0 | PG_V | PG_RW; in elf64_exec()
312 PT3_u[NPDPEPG - 1] = (pdp_entry_t)PT2_u1 | PG_V | PG_RW; in elf64_exec()
351 PT3_l[0] = (pdp_entry_t)pa_pt2_l0 | PG_V | PG_RW; in elf64_exec()
[all …]
/freebsd/stand/efi/loader/arch/amd64/
H A Delf64_freebsd.c69 static pdp_entry_t *PT3;
70 static pdp_entry_t *PT3_l, *PT3_u;
150 PT3[i] = (pdp_entry_t)PT2; in elf64_exec()
184 PT3_l[0] = (pdp_entry_t)PT2_l0 | PG_V | PG_RW; in elf64_exec()
185 PT3_l[1] = (pdp_entry_t)PT2_l1 | PG_V | PG_RW; in elf64_exec()
186 PT3_l[2] = (pdp_entry_t)PT2_l2 | PG_V | PG_RW; in elf64_exec()
187 PT3_l[3] = (pdp_entry_t)PT2_l3 | PG_V | PG_RW; in elf64_exec()
195 PT3_u[NPDPEPG - 2] = (pdp_entry_t)PT2_u0 | PG_V | PG_RW; in elf64_exec()
196 PT3_u[NPDPEPG - 1] = (pdp_entry_t)PT2_u1 | PG_V | PG_RW; in elf64_exec()
/freebsd/stand/userboot/userboot/
H A Delf64_freebsd.c81 pdp_entry_t PT3[512]; in elf64_exec()
116 PT3[i] = (pdp_entry_t) 0x4000; in elf64_exec()
/freebsd/sys/amd64/amd64/
H A Dpmap.c1291 static bool pmap_demote_pdpe(pmap_t pmap, pdp_entry_t *pdpe,
1320 static pdp_entry_t *pmap_pti_pdpe(vm_offset_t va);
1441 static __inline pdp_entry_t *
1444 pdp_entry_t *pdpe; in pmap_pml4e_to_pdpe()
1446 pdpe = (pdp_entry_t *)PHYS_TO_DMAP(*pml4e & PG_FRAME); in pmap_pml4e_to_pdpe()
1451 static __inline pdp_entry_t *
1466 pmap_pdpe_to_pde(pdp_entry_t *pdpe, vm_offset_t va) in pmap_pdpe_to_pde()
1480 pdp_entry_t *pdpe; in pmap_pde()
1678 pdp_entry_t *pdp_p; in create_pagetables()
1798 pdp_p = (pdp_entry_t *)(KPDPphys + ptoa(KPML4I - KPML4BASE)); in create_pagetables()
[all …]
H A Defirt_machdep.c110 pdp_entry_t *pdpe; in efi_1t1_pte()
142 pdpe = (pdp_entry_t *)PHYS_TO_DMAP(mphys); in efi_1t1_pte()
H A Dmp_machdep.c326 pdp_entry_t *v_pdp; in start_all_aps()
350 v_pdp = (pdp_entry_t *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(m_pdp)); in start_all_aps()
H A Dmachdep.c1272 pdp_entry_t *pdpe; in amd64_loadaddr()
1278 pdpe = (pdp_entry_t *)(*pml4e & PG_FRAME) + pmap_pdpe_index(KERNSTART); in amd64_loadaddr()
/freebsd/sys/amd64/include/
H A Dparam.h102 #define NPDPEPG (PAGE_SIZE/(sizeof (pdp_entry_t)))
H A Dpmap.h244 typedef u_int64_t pdp_entry_t; typedef