- Timestamp:
- Jul 22, 2016 1:14:01 PM (8 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r62277 r62440 46 46 47 47 /** Disable stack frame pointer generation here. */ 48 #if defined(_MSC_VER) && !defined(DEBUG) 48 #if defined(_MSC_VER) && !defined(DEBUG) && defined(RT_ARCH_X86) 49 49 # pragma optimize("y", off) 50 50 #endif -
trunk/src/VBox/VMM/VMMAll/CPUMStack.cpp
r57358 r62440 25 25 #include <VBox/vmm/mm.h> 26 26 27 /** Disable stack frame pointer generation here. */28 #if defined(_MSC_VER) && !defined(DEBUG)29 # pragma optimize("y", off)30 #endif31 32 27 33 28 VMMDECL(void) CPUMPushHyper(PVMCPU pVCpu, uint32_t u32) -
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r62431 r62440 5315 5315 /** @todo replace with hmR0VmxEnterRootMode() and hmR0VmxLeaveRootMode(). */ 5316 5316 /* Make sure the VMX instructions don't cause #UD faults. */ 5317 SUPR0ChangeCR4(X86_CR4_VMXE, ~0);5317 SUPR0ChangeCR4(X86_CR4_VMXE, RTCCUINTREG_MAX); 5318 5318 5319 5319 /* Re-enter VMX Root Mode */ -
trunk/src/VBox/VMM/VMMRC/CPUMRC.cpp
r61392 r62440 88 88 DECLASM(void) CPUMRCAssertPreExecutionSanity(PVM pVM) 89 89 { 90 #ifdef VBOX_STRICT 90 91 /* 91 92 * Check some important assumptions before resuming guest execution. … … 107 108 AssertMsg(CPUMIsGuestInRawMode(pVCpu), ("cs:eip=%04x:%08x ss:esp=%04x:%08x cpl=%u raw/efl=%#x/%#x%s\n", pCtx->cs.Sel, pCtx->eip, pCtx->ss.Sel, pCtx->esp, uRawCpl, u32EFlags, pCtx->eflags.u, fPatch ? " patch" : "")); 108 109 //Log2(("cs:eip=%04x:%08x ss:esp=%04x:%08x cpl=%u raw/efl=%#x/%#x%s\n", pCtx->cs.Sel, pCtx->eip, pCtx->ss.Sel, pCtx->esp, uRawCpl, u32EFlags, pCtx->eflags.u, fPatch ? " patch" : "")); 110 #endif 109 111 } 110 112
Note:
See TracChangeset
for help on using the changeset viewer.