VirtualBox

Ignore:
Timestamp:
Jul 18, 2018 12:13:55 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
123804
Message:

PGM: Working on eliminating PGMMODEDATA and the corresponding PGMCPU section so we can do mode switching in ring-0. This first part deals with guest mode specific pointers. bugref:9044

File:
1 edited

Legend:

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

    r70948 r73199  
    2222RT_C_DECLS_BEGIN
    2323/* r3 */
    24 PGM_GST_DECL(int, InitData)(PVM pVM, PPGMMODEDATA pModeData, bool fResolveGCAndR0);
    2524PGM_GST_DECL(int, Enter)(PVMCPU pVCpu, RTGCPHYS GCPhysCR3);
    2625PGM_GST_DECL(int, Relocate)(PVMCPU pVCpu, RTGCPTR offDelta);
     
    3231PGM_GST_DECL(int, GetPDE)(PVMCPU pVCpu, RTGCPTR GCPtr, PX86PDEPAE pPDE);
    3332RT_C_DECLS_END
    34 
    35 
    36 /**
    37  * Initializes the guest bit of the paging mode data.
    38  *
    39  * @returns VBox status code.
    40  * @param   pVM             The cross context VM structure.
    41  * @param   pModeData       The pointer table to initialize (our members only).
    42  * @param   fResolveGCAndR0 Indicate whether or not GC and Ring-0 symbols can be resolved now.
    43  *                          This is used early in the init process to avoid trouble with PDM
    44  *                          not being initialized yet.
    45  */
    46 PGM_GST_DECL(int, InitData)(PVM pVM, PPGMMODEDATA pModeData, bool fResolveGCAndR0)
    47 {
    48     Assert(pModeData->uGstType == PGM_GST_TYPE);
    49 
    50     /* Ring-3 */
    51     pModeData->pfnR3GstRelocate           = PGM_GST_NAME(Relocate);
    52     pModeData->pfnR3GstExit               = PGM_GST_NAME(Exit);
    53     pModeData->pfnR3GstGetPDE             = PGM_GST_NAME(GetPDE);
    54     pModeData->pfnR3GstGetPage            = PGM_GST_NAME(GetPage);
    55     pModeData->pfnR3GstModifyPage         = PGM_GST_NAME(ModifyPage);
    56 
    57     if (fResolveGCAndR0)
    58     {
    59         int rc;
    60 
    61         if (VM_IS_RAW_MODE_ENABLED(pVM))
    62         {
    63 #if PGM_SHW_TYPE != PGM_TYPE_AMD64 /* No AMD64 for traditional virtualization, only VT-x and AMD-V. */
    64             /* RC */
    65             rc = PDMR3LdrGetSymbolRC(pVM, NULL,       PGM_GST_NAME_RC_STR(GetPage),          &pModeData->pfnRCGstGetPage);
    66             AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_GST_NAME_RC_STR(GetPage),  rc), rc);
    67             rc = PDMR3LdrGetSymbolRC(pVM, NULL,       PGM_GST_NAME_RC_STR(ModifyPage),       &pModeData->pfnRCGstModifyPage);
    68             AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_GST_NAME_RC_STR(ModifyPage),  rc), rc);
    69             rc = PDMR3LdrGetSymbolRC(pVM, NULL,       PGM_GST_NAME_RC_STR(GetPDE),           &pModeData->pfnRCGstGetPDE);
    70             AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_GST_NAME_RC_STR(GetPDE), rc), rc);
    71 #endif /* Not AMD64 shadow paging. */
    72         }
    73 
    74         /* Ring-0 */
    75         rc = PDMR3LdrGetSymbolR0(pVM, NULL,       PGM_GST_NAME_R0_STR(GetPage),          &pModeData->pfnR0GstGetPage);
    76         AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_GST_NAME_R0_STR(GetPage),  rc), rc);
    77         rc = PDMR3LdrGetSymbolR0(pVM, NULL,       PGM_GST_NAME_R0_STR(ModifyPage),       &pModeData->pfnR0GstModifyPage);
    78         AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_GST_NAME_R0_STR(ModifyPage),  rc), rc);
    79         rc = PDMR3LdrGetSymbolR0(pVM, NULL,       PGM_GST_NAME_R0_STR(GetPDE),           &pModeData->pfnR0GstGetPDE);
    80         AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_GST_NAME_R0_STR(GetPDE), rc), rc);
    81     }
    82 
    83     return VINF_SUCCESS;
    84 }
    8533
    8634
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