Home
last modified time | relevance | path

Searched refs:CR0_PG (Results 1 – 11 of 11) sorted by relevance

/openbsd/sys/arch/amd64/stand/efiboot/
H A Drun_i386.S83 andl $(~CR0_PG), %eax
H A Dexec_i386.c281 if ((cr0 & CR0_PG) == 0) in protect_writeable()
/openbsd/sys/arch/amd64/amd64/
H A Dacpi_wakecode.S416 andl $(~CR0_PG), %eax
461 andl $(~CR0_PG), %eax
H A Dvmm_machdep.c2098 if ((cr0 & (CR0_PE | CR0_PG)) == 0) { in vcpu_reset_regs_vmx()
2234 want1 &= ~(CR0_PG | CR0_PE); in vcpu_reset_regs_vmx()
2235 want0 &= ~(CR0_PG | CR0_PE); in vcpu_reset_regs_vmx()
3447 if (!(vrs.vrs_crs[VCPU_REGS_CR0] & CR0_PG)) { in vmm_translate_gva()
5069 if ((r & CR0_PG) && (r & CR0_PE) == 0) { in vmx_handle_cr0_write()
5097 if (!(r & CR0_PG) && (oldcr0 & CR0_PG)) { in vmx_handle_cr0_write()
5104 } else if (!(oldcr0 & CR0_PG) && (r & CR0_PG)) { in vmx_handle_cr0_write()
7890 { CR0_PG, "PG ", "pg " }, in vmm_decode_cr0()
/openbsd/sys/arch/i386/i386/
H A Dmptramp.s164 orl $(CR0_PE|CR0_PG|CR0_NE|CR0_TS|CR0_EM|CR0_MP|CR0_WP),%eax
H A Dacpi_wakecode.S332 andl $(~CR0_PG), %eax
H A Dlocore0.S385 orl $(CR0_PE|CR0_PG|CR0_NE|CR0_TS|CR0_EM|CR0_MP),%eax
/openbsd/sys/arch/amd64/include/
H A Dspecialreg.h44 #define CR0_PG 0x80000000 /* PaGing enable */ macro
1638 #define CR0_DEFAULT (CR0_PE|CR0_PG|CR0_NE|CR0_WP)
/openbsd/sys/arch/i386/include/
H A Dspecialreg.h43 #define CR0_PG 0x80000000 /* PaGing enable */ macro
/openbsd/usr.sbin/vmd/
H A Dx86_vm.c80 .vrs_crs[VCPU_REGS_CR0] = CR0_ET | CR0_PE | CR0_PG,
1127 if (!(vrs->vrs_crs[VCPU_REGS_CR0] & CR0_PG)) { in translate_gva()
H A Dx86_mmio.c381 if ((efer & EFER_LME) && (cr4 & CR4_PAE) && (cr0 & CR0_PG)) { in detect_cpu_mode()