Home
last modified time | relevance | path

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

/freebsd/sys/i386/i386/
H A Dvm86.c502 ext->ext_vm86.vm86_has_vme = (rcr4() & CR4_VME ? 1 : 0); in vm86_initialize_pae()
566 ext->ext_vm86.vm86_has_vme = (rcr4() & CR4_VME ? 1 : 0); in vm86_initialize_nopae()
830 vm86->vm86_has_vme = (rcr4() & CR4_VME ? 1 : 0); in vm86_sysarch()
849 load_cr4(rcr4() | CR4_VME); in vm86_sysarch()
851 load_cr4(rcr4() & ~CR4_VME); in vm86_sysarch()
859 sa.state = (rcr4() & CR4_VME ? 1 : 0); in vm86_sysarch()
H A Dmpboot.S87 orl $CR4_VME,%eax /* Enable VME */
H A Dpmap.c544 ncr4 |= (cpu_feature & CPUID_VME) != 0 ? CR4_VME : 0; in __CONCAT()
/freebsd/sys/x86/include/
H A Dspecialreg.h62 #define CR4_VME 0x00000001 /* Virtual 8086 mode extensions */ macro