Changeset 73249 in vbox for trunk/src/VBox/VMM/VMMR3/PGM.cpp
- Timestamp:
- Jul 19, 2018 5:29:09 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r73247 r73249 3515 3515 NOREF(idxShw); 3516 3516 3517 pVCpu->pgm.s.idxBothModeData = pgmModeDataIndexByMode(enmShw, enmGst); 3517 uintptr_t idxBth = pVCpu->pgm.s.idxBothModeData = (idxShw - PGM_TYPE_FIRST_SHADOW) * PGM_TYPE_END + idxGst; 3518 Assert(g_aPgmBothModeData[idxBth].uShwType == idxShw); 3519 Assert(g_aPgmBothModeData[idxBth].uGstType == idxGst); 3520 AssertPtr(g_aPgmBothModeData[idxBth].pfnInvalidatePage); 3521 AssertPtr(g_aPgmBothModeData[idxBth].pfnSyncCR3); 3522 AssertPtr(g_aPgmBothModeData[idxBth].pfnPrefetchPage); 3523 AssertPtr(g_aPgmBothModeData[idxBth].pfnVerifyAccessSyncPage); 3524 AssertPtr(g_aPgmBothModeData[idxBth].pfnMapCR3); 3525 AssertPtr(g_aPgmBothModeData[idxBth].pfnUnmapCR3); 3526 AssertPtr(g_aPgmBothModeData[idxBth].pfnEnter); 3527 AssertPtr(g_aPgmBothModeData[idxBth].pfnRelocate); 3528 #ifdef VBOX_STRICT 3529 AssertPtr(g_aPgmBothModeData[idxBth].pfnAssertCR3); 3530 #endif 3531 NOREF(idxBth); 3518 3532 3519 3533 /*
Note:
See TracChangeset
for help on using the changeset viewer.