Home
last modified time | relevance | path

Searched refs:PG_PS (Results 1 – 17 of 17) sorted by relevance

/freebsd/stand/kboot/kboot/arch/amd64/
H A Delf64_freebsd.c274 PT2[i] |= PG_V | PG_RW | PG_PS; in elf64_exec()
306 PG_RW | PG_PS; in elf64_exec()
314 PT2_u0[0] = PG_PS | PG_V | PG_RW; in elf64_exec()
319 PG_V | PG_RW | PG_PS; in elf64_exec()
357 PG_RW | PG_PS; in elf64_exec()
365 PT2_u0[0] = PG_PS | PG_V | PG_RW; in elf64_exec()
386 PG_V | PG_RW | PG_PS; in elf64_exec()
/freebsd/stand/efi/loader/arch/amd64/
H A Delf64_freebsd.c157 PT2[i] |= PG_V | PG_RW | PG_PS; in elf64_exec()
190 PG_RW | PG_PS; in elf64_exec()
198 PT2_u0[0] = PG_PS | PG_V | PG_RW; in elf64_exec()
203 PG_V | PG_RW | PG_PS; in elf64_exec()
/freebsd/stand/efi/loader/arch/i386/
H A Delf64_freebsd.c200 PT2[i] = (i * M(2)) | PG_V | PG_RW | PG_PS; in elf64_exec()
232 PT2_l0[i] = ((pd_entry_t)i * M(2)) | PG_V | PG_RW | PG_PS; in elf64_exec()
240 PT2_u0[0] = PG_PS | PG_V | PG_RW; in elf64_exec()
244 | PG_V | PG_RW | PG_PS; in elf64_exec()
/freebsd/sys/i386/i386/
H A Dminidump_machdep_base.c186 if ((pde & (PG_PS | PG_V)) == (PG_PS | PG_V)) { in cpu_minidumpsys()
286 if ((pde & (PG_PS | PG_V)) == (PG_PS | PG_V)) { in cpu_minidumpsys()
H A Dpmap.c206 static int pseflag = 0; /* PG_PS or-in */
531 pseflag = PG_PS; in __CONCAT()
537 IdlePTD[a >> PDRSHIFT] = a | PG_PS | PG_A | PG_M | in __CONCAT()
1182 if ((newpde & PG_PS) == 0) in pmap_update_pde_invalidate()
1509 if (*pde & PG_PS) in __CONCAT()
1570 if (*pde & PG_PS) in pmap_pte_quick()
1607 if (*pde & PG_PS) in pmap_pte_quick3()
1665 if ((pa = pte_load(&PTD[va >> PDRSHIFT])) & PG_PS) { in __CONCAT()
1698 if ((pde & PG_PS) != 0) in __CONCAT()
1727 if (pde & PG_PS) { in __CONCAT()
[all...]
/freebsd/sys/amd64/acpica/
H A Dacpi_wakeup.c447 pt2_0[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
451 pt2_1[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
455 pt2_2[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
459 pt2_3[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
/freebsd/sys/amd64/amd64/
H A Dpmap.c1470 KASSERT((*pdpe & PG_PS) == 0, in pmap_pdpe_to_pde()
1487 KASSERT((*pdpe & PG_PS) == 0, in pmap_pde()
1498 KASSERT((*pde & PG_PS) == 0, in pmap_pde_to_pte()
1515 if ((*pde & PG_PS) != 0) /* compat with i386 pmap_pte() */ in pmap_pte()
1781 pd_p[0] = X86_PG_V | PG_PS | pg_g | X86_PG_M | X86_PG_A | in create_pagetables()
1785 pd_p[i] = pax | X86_PG_V | PG_PS | pg_g | X86_PG_M | in create_pagetables()
1833 pd_p[j] |= X86_PG_RW | X86_PG_V | PG_PS | pg_g | in create_pagetables()
1840 pdp_p[i] |= X86_PG_RW | X86_PG_V | PG_PS | pg_g | in create_pagetables()
1857 pd_p[i] = pax | X86_PG_V | PG_PS | pg_g | X86_PG_M | in create_pagetables()
2857 if ((newpde & PG_PS) == 0) in pmap_update_pde_invalidate()
[all …]
H A Dminidump_machdep.c207 if ((pdpe & PG_PS) != 0) { in cpu_minidumpsys()
226 if ((pde & PG_PS) != 0) { in cpu_minidumpsys()
345 if ((pdpe & PG_PS) != 0) { in cpu_minidumpsys()
H A Dmp_machdep.c355 X86_PG_M | PG_PS; in start_all_aps()
360 X86_PG_A | X86_PG_M | PG_PS; in start_all_aps()
365 X86_PG_RW | X86_PG_A | X86_PG_M | PG_PS; in start_all_aps()
370 X86_PG_RW | X86_PG_A | X86_PG_M | PG_PS; in start_all_aps()
H A Dxen-locore.S118 orl $(PG_V | PG_RW | PG_PS | PG_U), %edx
/freebsd/lib/libkvm/
H A Dkvm_i386.h74 _Static_assert(PG_PS == I386_PG_PS, "PG_PS mismatch");
H A Dkvm_amd64.h80 _Static_assert(PG_PS == AMD64_PG_PS, "PG_PS mismatch");
/freebsd/stand/i386/libi386/
H A Delf64_freebsd.c105 PT2[i] |= PG_V | PG_RW | PG_PS; in elf64_exec()
/freebsd/stand/userboot/userboot/
H A Delf64_freebsd.c121 PT2[i] |= PG_V | PG_RW | PG_PS; in elf64_exec()
/freebsd/sys/i386/include/
H A Dpmap.h57 #define PG_PS 0x080 /* PS Page size (0=4k,1=4M) */ macro
/freebsd/sys/amd64/include/
H A Dpmap.h62 #define PG_PS X86_PG_PS macro
/freebsd/sys/amd64/vmm/
H A Dvmm_instruction_emul.c2160 if (nlevels > 0 && (pte32 & PG_PS) != 0) in _vm_gla2gpa()
2242 if (nlevels > 0 && (pte & PG_PS) != 0) { in _vm_gla2gpa()