Changeset 73199 in vbox for trunk/src/VBox/VMM/VMMR3/PGMGst.h
- Timestamp:
- Jul 18, 2018 12:13:55 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123804
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMGst.h
r70948 r73199 22 22 RT_C_DECLS_BEGIN 23 23 /* r3 */ 24 PGM_GST_DECL(int, InitData)(PVM pVM, PPGMMODEDATA pModeData, bool fResolveGCAndR0);25 24 PGM_GST_DECL(int, Enter)(PVMCPU pVCpu, RTGCPHYS GCPhysCR3); 26 25 PGM_GST_DECL(int, Relocate)(PVMCPU pVCpu, RTGCPTR offDelta); … … 32 31 PGM_GST_DECL(int, GetPDE)(PVMCPU pVCpu, RTGCPTR GCPtr, PX86PDEPAE pPDE); 33 32 RT_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 PDM44 * 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 }85 33 86 34
Note:
See TracChangeset
for help on using the changeset viewer.