Changeset 62659 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jul 28, 2016 10:36:23 PM (8 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/EM.cpp
r62640 r62659 2721 2721 } 2722 2722 2723 /* (won't ever get here). */ 2724 AssertFailed(); 2723 /* not reached */ 2725 2724 } 2726 2725 -
trunk/src/VBox/VMM/VMMR3/EMRaw.cpp
r62637 r62659 1493 1493 || VMCPU_FF_IS_PENDING(pVCpu, ~VMCPU_FF_HIGH_PRIORITY_PRE_RAW_MASK)) 1494 1494 { 1495 Assert(pCtx->eflags.Bits.u1VM || (pCtx->ss.Sel & X86_SEL_RPL) != (EMIsRawRing1Enabled(pVM) ? 2 : 1));1495 Assert(pCtx->eflags.Bits.u1VM || (pCtx->ss.Sel & X86_SEL_RPL) != (EMIsRawRing1Enabled(pVM) ? 2U : 1U)); 1496 1496 1497 1497 STAM_REL_PROFILE_ADV_SUSPEND(&pVCpu->em.s.StatRAWTotal, a); -
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r62644 r62659 4351 4351 RTAssertMsg2Weak("i=%d iClear=%d cHandyPages=%d\n", i, iClear, pVM->pgm.s.cHandyPages); 4352 4352 for (uint32_t j = iClear; j < pVM->pgm.s.cHandyPages; j++) 4353 RTAssertMsg2Add( ("%03d: idPage=%d HCPhysGCPhys=%RHp idSharedPage=%d%\n", j,4354 4355 4356 4357 j == i ? " <---" : ""));4353 RTAssertMsg2Add("%03d: idPage=%d HCPhysGCPhys=%RHp idSharedPage=%d%\n", j, 4354 pVM->pgm.s.aHandyPages[j].idPage, 4355 pVM->pgm.s.aHandyPages[j].HCPhysGCPhys, 4356 pVM->pgm.s.aHandyPages[j].idSharedPage, 4357 j == i ? " <---" : ""); 4358 4358 RTAssertPanic(); 4359 4359 }
Note:
See TracChangeset
for help on using the changeset viewer.