VirtualBox

Ignore:
Timestamp:
Jul 19, 2018 5:57:31 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
123856
Message:

PGM: Working on eliminating PGMMODEDATA and the corresponding PGMCPU section so we can do mode switching in ring-0. This forth part dealing with shadow+guest paging pointers and finally removing the PGMMODEDATA type. bugref:9044

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/PGMGst.h

    r73199 r73250  
    4545     * Map and monitor CR3
    4646     */
    47     int rc = PGM_BTH_PFN(MapCR3, pVCpu)(pVCpu, GCPhysCR3);
    48     return rc;
     47    uintptr_t idxBth = pVCpu->pgm.s.idxBothModeData;
     48    AssertReturn(idxBth < RT_ELEMENTS(g_aPgmBothModeData), VERR_PGM_MODE_IPE);
     49    AssertReturn(g_aPgmBothModeData[idxBth].pfnMapCR3, VERR_PGM_MODE_IPE);
     50    return g_aPgmBothModeData[idxBth].pfnMapCR3(pVCpu, GCPhysCR3);
    4951}
    5052
     
    7981PGM_GST_DECL(int, Exit)(PVMCPU pVCpu)
    8082{
    81     int rc;
    82 
    83     rc = PGM_BTH_PFN(UnmapCR3, pVCpu)(pVCpu);
    84     return rc;
     83    uintptr_t idxBth = pVCpu->pgm.s.idxBothModeData;
     84    AssertReturn(idxBth < RT_ELEMENTS(g_aPgmBothModeData), VERR_PGM_MODE_IPE);
     85    AssertReturn(g_aPgmBothModeData[idxBth].pfnUnmapCR3, VERR_PGM_MODE_IPE);
     86    return g_aPgmBothModeData[idxBth].pfnUnmapCR3(pVCpu);
    8587}
    8688
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette