Changeset 18725 in vbox for trunk/src/VBox
- Timestamp:
- Apr 5, 2009 6:13:56 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp
r18724 r18725 314 314 else if (pShwPaePd->a[iPaePde].u & PGM_PDFLAGS_MAPPING) 315 315 { 316 Assert(PGMGetGuestMode(pVM) >= PGMMODE_PAE); 317 AssertFatalMsg((pShwPaePd->a[iPaePde].u & X86_PDE_PG_MASK) == pMap->aPTs[i].HCPhysPaePT0, ("%RX64 vs %RX64\n", pShwPaePd->a[iPaePde+1].u & X86_PDE_PG_MASK, pMap->aPTs[i].HCPhysPaePT0)); 316 Assert(PGMGetGuestMode(pVM) >= PGMMODE_PAE); /** @todo We may hit this during reset, will fix later. */ 317 AssertFatalMsg( (pShwPaePd->a[iPaePde].u & X86_PDE_PG_MASK) == pMap->aPTs[i].HCPhysPaePT0 318 || !PGMMODE_WITH_PAGING(PGMGetGuestMode(pVM)), 319 ("%RX64 vs %RX64\n", pShwPaePd->a[iPaePde+1].u & X86_PDE_PG_MASK, pMap->aPTs[i].HCPhysPaePT0)); 318 320 Assert(pShwPaePd->a[iPaePde+1].u & PGM_PDFLAGS_MAPPING); 319 AssertFatalMsg((pShwPaePd->a[iPaePde+1].u & X86_PDE_PG_MASK) == pMap->aPTs[i].HCPhysPaePT1, ("%RX64 vs %RX64\n", pShwPaePd->a[iPaePde+1].u & X86_PDE_PG_MASK, pMap->aPTs[i].HCPhysPaePT1)); 321 AssertFatalMsg( (pShwPaePd->a[iPaePde+1].u & X86_PDE_PG_MASK) == pMap->aPTs[i].HCPhysPaePT1 322 || !PGMMODE_WITH_PAGING(PGMGetGuestMode(pVM)), 323 ("%RX64 vs %RX64\n", pShwPaePd->a[iPaePde+1].u & X86_PDE_PG_MASK, pMap->aPTs[i].HCPhysPaePT1)); 320 324 } 321 325 #endif
Note:
See TracChangeset
for help on using the changeset viewer.