Searched refs:X86_CR0_MP (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/VMM/VMMR0/
H A DCPUMR0.cpp347 Assert( ((pCtx->cr0 & (X86_CR0_MP | X86_CR0_EM | X86_CR0_TS)) == (X86_CR0_MP | X86_CR0_TS))
348 || ((pCtx->cr0 & (X86_CR0_MP | X86_CR0_EM | X86_CR0_TS)) == (X86_CR0_MP | X86_CR0_TS | X86_CR0_EM)));
377 switch (pCtx->cr0 & (X86_CR0_MP | X86_CR0_EM | X86_CR0_TS))
379 case X86_CR0_MP | X86_CR0_TS:
380 case X86_CR0_MP | X86_CR0_TS | X86_CR0_EM:
H A DHMSVMR0.cpp1178 | X86_CR0_MP; /* FWAIT/WAIT should not ignore CR0.TS and should generate #NM. */
H A DHMVMXR0.cpp3800 | X86_CR0_MP; /* FWAIT/WAIT should not ignore CR0.TS and should generate #NM. */
3901 | X86_CR0_MP;
/vbox/src/VBox/VMM/VMMRC/
H A DCPUMRCA.asm112 and eax, X86_CR0_MP | X86_CR0_EM | X86_CR0_TS
127 RTCCPTR_DEF ~(X86_CR0_TS | X86_CR0_MP)
129 RTCCPTR_DEF ~(X86_CR0_TS | X86_CR0_MP)
131 RTCCPTR_DEF ~(X86_CR0_MP)
133 RTCCPTR_DEF ~(X86_CR0_MP)
/vbox/src/VBox/VMM/VMMAll/
H A DCPUMAllRegs.cpp664 if ( (cr0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP))
665 != (pVCpu->cpum.s.Guest.cr0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP)))
676 AssertMsg((HyperCR0 & (X86_CR0_TS | X86_CR0_MP)) == (X86_CR0_TS | X86_CR0_MP), ("%#x\n", HyperCR0));
687 AssertMsg((HyperCR0 & (X86_CR0_TS | X86_CR0_MP)) == (X86_CR0_TS | X86_CR0_MP), ("%#x\n", HyperCR0));
699 AssertMsg( (HyperCR0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP))
700 == (pVCpu->cpum.s.Guest.cr0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP)),
702 HyperCR0 &= ~(X86_CR0_TS | X86_CR0_EM | X86_CR0_MP);
703 HyperCR0 |= cr0 & (X86_CR0_TS | X86_CR0_EM | X86_CR0_MP);
[all...]
H A DEMAll.cpp3352 uint64_t NewCr0 = ( OldCr0 & ~( X86_CR0_MP | X86_CR0_EM | X86_CR0_TS))
3353 | (val & (X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS));
H A DIEMAllCImpl.cpp.h4800 uint32_t const fValid = X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS
5115 uint64_t uNewCr0 = pCtx->cr0 & ~(X86_CR0_MP | X86_CR0_EM | X86_CR0_TS);
5116 uNewCr0 |= u16NewMsw & (X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS);
/vbox/src/VBox/Runtime/common/string/
H A Dstrformatrt.cpp1174 REG_OUT_BIT(cr0, X86_CR0_MP, "MP");
/vbox/src/VBox/VMM/VMMR3/
H A DVMMTests.cpp667 pHyperCtx->cr0 = X86_CR0_PE | X86_CR0_WP | X86_CR0_PG | X86_CR0_TS | X86_CR0_ET | X86_CR0_NE | X86_CR0_MP;
/vbox/include/iprt/
H A Dx86.h741 #define X86_CR0_MP RT_BIT(1) macro

Completed in 1676 milliseconds