Home
last modified time | relevance | path

Searched refs:PG_V (Results 1 – 15 of 15) sorted by relevance

/f-stack/freebsd/i386/i386/
H A Dminidump_machdep_base.c202 if ((pd[j] & (PG_PS | PG_V)) == (PG_PS | PG_V)) { in minidumpsys()
212 if ((pd[j] & PG_V) == PG_V) { in minidumpsys()
216 if ((pt[k] & PG_V) == PG_V) { in minidumpsys()
297 if ((pd[j] & (PG_PS | PG_V)) == (PG_PS | PG_V)) { in minidumpsys()
301 fakept[k] = (pa + (k * PAGE_SIZE)) | PG_V | PG_RW | PG_A | PG_M; in minidumpsys()
312 if ((pd[j] & PG_V) == PG_V) { in minidumpsys()
H A Dpmap.c537 PG_M | PG_V; in __CONCAT()
550 PG_RW | PG_V; in __CONCAT()
933 if (*head & PG_V) in pmap_ptelist_alloc()
944 if (va & PG_V) in pmap_ptelist_free()
2795 KASSERT((oldpde & (PG_PS | PG_V)) == (PG_PS | PG_V), in pmap_demote_pde()
3911 PG_PS | PG_V; in pmap_enter_4mpage()
5012 rv = (*pte & (PG_A | PG_V)) == (PG_A | PG_V); in pmap_is_referenced_pvh()
5285 if ((*pte & (PG_MANAGED | PG_V)) != (PG_MANAGED | PG_V)) in __CONCAT()
5778 (pte & (PG_MANAGED | PG_V)) == (PG_MANAGED | PG_V)) { in __CONCAT()
6025 if ((opte & (PG_V | PG_A)) == (PG_V | PG_A)) in __CONCAT()
[all …]
H A Dvm86.c490 pcb->new_ptd = vm86pa | PG_V | PG_RW | PG_U; in vm86_initialize_pae()
554 pcb->new_ptd = vm86pa | PG_V | PG_RW | PG_U; in vm86_initialize_nopae()
742 pte_pae[entry] = page | PG_V | PG_RW | PG_U; in vm86_datacall()
751 pte_nopae[entry] = page | PG_V | PG_RW | PG_U; in vm86_datacall()
H A Dmachdep.c2073 ptr = (int *)pmap_cmap3(pa, PG_V | PG_RW | PG_N); in getmemsize()
/f-stack/freebsd/amd64/amd64/
H A Dpmap.c1355 pt_entry_t PG_V; in pmap_pml4e() local
1391 pt_entry_t PG_V; in pmap_pdpe() local
1417 pt_entry_t PG_V; in pmap_pde() local
1445 pt_entry_t PG_V; in pmap_pte() local
5682 KASSERT((oldpde & (PG_PS | PG_V)) == (PG_PS | PG_V), in pmap_demote_pde_locked()
8057 if ((tpte & (PG_PS | PG_V)) == PG_V) { in pmap_remove_pages()
8300 if (pde != NULL && (*pde & (PG_PS | PG_V)) == PG_V) { in pmap_is_prefaultable()
8769 if ((*pte & (PG_MANAGED | PG_V)) != (PG_MANAGED | PG_V)) in pmap_advise()
9069 KASSERT((oldpdpe & (PG_PS | PG_V)) == (PG_PS | PG_V), in pmap_demote_pdpe()
9531 (pte & (PG_MANAGED | PG_V)) == (PG_MANAGED | PG_V)) { in pmap_mincore()
[all …]
H A Dxen-locore.S62 ELFNOTE(Xen, XEN_ELFNOTE_L1_MFN_VALID, .long, PG_V, PG_V)
131 orl $(PG_V | PG_RW | PG_U), %edx
137 orl $(PG_V | PG_RW | PG_U), %edx
144 orl $(PG_V | PG_RW | PG_PS | PG_U), %edx
H A Dminidump_machdep.c247 if ((pdp[i] & PG_V) == 0) { in minidumpsys()
270 if ((pd[j] & PG_V) == 0) in minidumpsys()
291 if ((pt[k] & PG_V) == 0) in minidumpsys()
376 if ((pdp[i] & PG_V) == 0) { in minidumpsys()
H A Dmp_machdep.c428 pt5[i] |= PG_V | PG_RW | PG_U; in native_start_all_aps()
437 pt4[i] |= PG_V | PG_RW | PG_U; in native_start_all_aps()
445 pt3[i] |= PG_V | PG_RW | PG_U; in native_start_all_aps()
449 pt2[i] |= PG_V | PG_RW | PG_PS | PG_U; in native_start_all_aps()
H A Dmachdep.c1387 *pte = pa | PG_V | PG_RW | PG_NC_PWT | PG_NC_PCD; in getmemsize()
/f-stack/freebsd/x86/acpica/
H A Dacpi_wakeup.c468 pt5[i] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
476 pt4[i] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
483 pt3[i] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
487 pt2[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
/f-stack/freebsd/i386/include/
H A Dpmap.h54 #define PG_V 0x001 /* P Valid */ macro
87 PG_M | PG_A | PG_NC_PCD | PG_NC_PWT | PG_U | PG_RW | PG_V)
H A Dpmap_pae.h108 MPASS((*ptep & PG_V) == 0); \
/f-stack/freebsd/amd64/include/
H A Dpmap.h96 #define PG_V X86_PG_V macro
129 PG_M | PG_A | PG_U | PG_RW | PG_V | PG_PKU_MASK)
162 #undef PG_V
/f-stack/freebsd/x86/xen/
H A Dpv.c238 PT4[i] |= PG_V | PG_RW | PG_U; in hammer_time_xen_legacy()
245 PT3[i] |= PG_V | PG_RW | PG_U; in hammer_time_xen_legacy()
252 PT2[i] |= PG_V | PG_RW | PG_PS | PG_U; in hammer_time_xen_legacy()
/f-stack/freebsd/amd64/vmm/
H A Dvmm_instruction_emul.c2033 if (pte & PG_V) in pf_error_code()
2122 if ((pte32 & PG_V) == 0 || in _vm_gla2gpa()
2181 if ((pte & PG_V) == 0) { in _vm_gla2gpa()
2212 if ((pte & PG_V) == 0 || in _vm_gla2gpa()