Changeset 17586 in vbox for trunk/src/VBox/VMM/PGMInternal.h
- Timestamp:
- Mar 9, 2009 3:28:25 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44039
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r17513 r17586 53 53 * @{ 54 54 */ 55 56 /*57 * Enable to use the PGM pool for all levels in the paging chain in all paging modes.58 */59 #define VBOX_WITH_PGMPOOL_PAGING_ONLY60 55 61 56 /** … … 1460 1455 /** The first normal index. */ 1461 1456 #define PGMPOOL_IDX_FIRST_SPECIAL 1 1462 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY1463 1457 /** Page directory (32-bit root). */ 1464 1458 #define PGMPOOL_IDX_PD 1 … … 1471 1465 /** The first normal index. */ 1472 1466 #define PGMPOOL_IDX_FIRST 5 1473 #else1474 /** Page directory (32-bit root). */1475 #define PGMPOOL_IDX_PD 11476 /** The extended PAE page directory (2048 entries, works as root currently). */1477 #define PGMPOOL_IDX_PAE_PD 21478 /** PAE Page Directory Table 0. */1479 #define PGMPOOL_IDX_PAE_PD_0 31480 /** PAE Page Directory Table 1. */1481 #define PGMPOOL_IDX_PAE_PD_1 41482 /** PAE Page Directory Table 2. */1483 #define PGMPOOL_IDX_PAE_PD_2 51484 /** PAE Page Directory Table 3. */1485 #define PGMPOOL_IDX_PAE_PD_3 61486 /** Page Directory Pointer Table (PAE root, not currently used). */1487 #define PGMPOOL_IDX_PDPT 71488 /** AMD64 CR3 level index.*/1489 #define PGMPOOL_IDX_AMD64_CR3 81490 /** Nested paging root.*/1491 #define PGMPOOL_IDX_NESTED_ROOT 91492 /** The first normal index. */1493 #define PGMPOOL_IDX_FIRST 101494 #endif1495 1467 /** The last valid index. (inclusive, 14 bits) */ 1496 1468 #define PGMPOOL_IDX_LAST 0x3fff … … 1606 1578 PGMPOOLKIND_EPT_PT_FOR_PHYS, 1607 1579 1608 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY1609 /** Shw: Root 32-bit page directory. */1610 PGMPOOLKIND_ROOT_32BIT_PD,1611 /** Shw: Root PAE page directory */1612 PGMPOOLKIND_ROOT_PAE_PD,1613 /** Shw: Root PAE page directory pointer table (legacy, 4 entries). */1614 PGMPOOLKIND_ROOT_PDPT,1615 #endif1616 1580 /** Shw: Root Nested paging table. */ 1617 1581 PGMPOOLKIND_ROOT_NESTED, … … 1686 1650 * It's a hack required because of REMR3NotifyHandlerPhysicalDeregister. */ 1687 1651 bool volatile fReusedFlushPending; 1688 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY1689 1652 /** Used to indicate that this page can't be flushed. Important for cr3 root pages or shadow pae pd pages). */ 1690 1653 bool fLocked; 1691 #else1692 /** Used to indicate that the guest is mapping the page is also used as a CR3.1693 * In these cases the access handler acts differently and will check1694 * for mapping conflicts like the normal CR3 handler.1695 * @todo When we change the CR3 shadowing to use pool pages, this flag can be1696 * replaced by a list of pages which share access handler.1697 */1698 bool fCR3Mix;1699 #endif1700 1654 } PGMPOOLPAGE, *PPGMPOOLPAGE, **PPPGMPOOLPAGE; 1701 1655 … … 2162 2116 DECLR3CALLBACKMEMBER(int, pfnR3GstModifyPage,(PVM pVM, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask)); 2163 2117 DECLR3CALLBACKMEMBER(int, pfnR3GstGetPDE,(PVM pVM, RTGCPTR GCPtr, PX86PDEPAE pPde)); 2164 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2165 DECLR3CALLBACKMEMBER(int, pfnR3GstMonitorCR3,(PVM pVM, RTGCPHYS GCPhysCR3));2166 DECLR3CALLBACKMEMBER(int, pfnR3GstUnmonitorCR3,(PVM pVM));2167 #endif2168 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2169 R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnR3GstWriteHandlerCR3;2170 R3PTRTYPE(const char *) pszR3GstWriteHandlerCR3;2171 R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnR3GstPAEWriteHandlerCR3;2172 R3PTRTYPE(const char *) pszR3GstPAEWriteHandlerCR3;2173 #endif2174 2118 DECLRCCALLBACKMEMBER(int, pfnRCGstGetPage,(PVM pVM, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGCPHYS pGCPhys)); 2175 2119 DECLRCCALLBACKMEMBER(int, pfnRCGstModifyPage,(PVM pVM, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask)); 2176 2120 DECLRCCALLBACKMEMBER(int, pfnRCGstGetPDE,(PVM pVM, RTGCPTR GCPtr, PX86PDEPAE pPde)); 2177 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2178 DECLRCCALLBACKMEMBER(int, pfnRCGstMonitorCR3,(PVM pVM, RTGCPHYS GCPhysCR3));2179 DECLRCCALLBACKMEMBER(int, pfnRCGstUnmonitorCR3,(PVM pVM));2180 #endif2181 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2182 RCPTRTYPE(PFNPGMRCPHYSHANDLER) pfnRCGstWriteHandlerCR3;2183 RCPTRTYPE(PFNPGMRCPHYSHANDLER) pfnRCGstPAEWriteHandlerCR3;2184 #endif2185 2121 DECLR0CALLBACKMEMBER(int, pfnR0GstGetPage,(PVM pVM, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGCPHYS pGCPhys)); 2186 2122 DECLR0CALLBACKMEMBER(int, pfnR0GstModifyPage,(PVM pVM, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask)); 2187 2123 DECLR0CALLBACKMEMBER(int, pfnR0GstGetPDE,(PVM pVM, RTGCPTR GCPtr, PX86PDEPAE pPde)); 2188 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2189 DECLR0CALLBACKMEMBER(int, pfnR0GstMonitorCR3,(PVM pVM, RTGCPHYS GCPhysCR3));2190 DECLR0CALLBACKMEMBER(int, pfnR0GstUnmonitorCR3,(PVM pVM));2191 #endif2192 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2193 R0PTRTYPE(PFNPGMRCPHYSHANDLER) pfnR0GstWriteHandlerCR3;2194 R0PTRTYPE(PFNPGMRCPHYSHANDLER) pfnR0GstPAEWriteHandlerCR3;2195 #endif2196 2124 /** @} */ 2197 2125 … … 2293 2221 uint32_t u32Alignment; 2294 2222 #endif 2295 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2296 /** The physical address of the currently monitored guest CR3 page.2297 * When this value is NIL_RTGCPHYS no page is being monitored. */2298 RTGCPHYS GCPhysGstCR3Monitored;2299 #endif2300 2223 /** @name 32-bit Guest Paging. 2301 2224 * @{ */ … … 2350 2273 /** @} */ 2351 2274 2352 # ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2353 /** @name Shadow paging2354 * @{ */2355 /** The root page table - R3 Ptr. */2356 R3PTRTYPE(void *) pShwRootR3;2357 # ifndef VBOX_WITH_2X_4GB_ADDR_SPACE2358 /** The root page table - R0 Ptr. */2359 R0PTRTYPE(void *) pShwRootR0;2360 # endif2361 /** The root page table - RC Ptr. */2362 RCPTRTYPE(void *) pShwRootRC;2363 # if HC_ARCH_BITS == 642364 uint32_t u32Padding1; /**< alignment padding. */2365 # endif2366 /** The Physical Address (HC) of the current active shadow CR3. */2367 RTHCPHYS HCPhysShwCR3;2368 # endif2369 2275 /** Pointer to the page of the current active CR3 - R3 Ptr. */ 2370 2276 R3PTRTYPE(PPGMPOOLPAGE) pShwPageCR3R3; … … 2381 2287 # endif 2382 2288 /** @} */ 2383 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2384 /** @name 32-bit Shadow Paging2385 * @{ */2386 /** The 32-Bit PD - R3 Ptr. */2387 R3PTRTYPE(PX86PD) pShw32BitPdR3;2388 /** The 32-Bit PD - R0 Ptr. */2389 R0PTRTYPE(PX86PD) pShw32BitPdR0;2390 /** The 32-Bit PD - RC Ptr. */2391 RCPTRTYPE(PX86PD) pShw32BitPdRC;2392 # if HC_ARCH_BITS == 642393 uint32_t u32Padding10; /**< alignment padding. */2394 # endif2395 /** The Physical Address (HC) of the 32-Bit PD. */2396 RTHCPHYS HCPhysShw32BitPD;2397 /** @} */2398 2399 /** @name PAE Shadow Paging2400 * @{ */2401 /** The four PDs for the low 4GB - R3 Ptr.2402 * Even though these are 4 pointers, what they point at is a single table.2403 * Thus, it's possible to walk the 2048 entries starting where apHCPaePDs[0] points. */2404 R3PTRTYPE(PX86PDPAE) apShwPaePDsR3[4];2405 # ifndef VBOX_WITH_2X_4GB_ADDR_SPACE2406 /** The four PDs for the low 4GB - R0 Ptr.2407 * Same kind of mapping as apHCPaePDs. */2408 R0PTRTYPE(PX86PDPAE) apShwPaePDsR0[4];2409 # endif2410 /** The four PDs for the low 4GB - RC Ptr.2411 * Same kind of mapping as apHCPaePDs. */2412 RCPTRTYPE(PX86PDPAE) apShwPaePDsRC[4];2413 /** The Physical Address (HC) of the four PDs for the low 4GB.2414 * These are *NOT* 4 contiguous pages. */2415 RTHCPHYS aHCPhysPaePDs[4];2416 /** The Physical Address (HC) of the PAE PDPT. */2417 RTHCPHYS HCPhysShwPaePdpt;2418 /** The PAE PDPT - R3 Ptr. */2419 R3PTRTYPE(PX86PDPT) pShwPaePdptR3;2420 /** The PAE PDPT - R0 Ptr. */2421 R0PTRTYPE(PX86PDPT) pShwPaePdptR0;2422 /** The PAE PDPT - RC Ptr. */2423 RCPTRTYPE(PX86PDPT) pShwPaePdptRC;2424 /** @} */2425 # if HC_ARCH_BITS == 642426 RTRCPTR alignment5; /**< structure size alignment. */2427 # endif2428 /** @name Nested Shadow Paging2429 * @{ */2430 /** Root table; format depends on the host paging mode (AMD-V) or EPT - R3 pointer. */2431 RTR3PTR pShwNestedRootR3;2432 # ifndef VBOX_WITH_2X_4GB_ADDR_SPACE2433 /** Root table; format depends on the host paging mode (AMD-V) or EPT - R0 pointer. */2434 RTR0PTR pShwNestedRootR0;2435 # endif2436 /** The Physical Address (HC) of the nested paging root. */2437 RTHCPHYS HCPhysShwNestedRoot;2438 /** @} */2439 #endif /* !VBOX_WITH_PGMPOOL_PAGING_ONLY */2440 2289 2441 2290 /** @name Function pointers for Shadow paging. … … 2463 2312 DECLR3CALLBACKMEMBER(int, pfnR3GstModifyPage,(PVM pVM, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask)); 2464 2313 DECLR3CALLBACKMEMBER(int, pfnR3GstGetPDE,(PVM pVM, RTGCPTR GCPtr, PX86PDEPAE pPde)); 2465 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2466 DECLR3CALLBACKMEMBER(int, pfnR3GstMonitorCR3,(PVM pVM, RTGCPHYS GCPhysCR3));2467 DECLR3CALLBACKMEMBER(int, pfnR3GstUnmonitorCR3,(PVM pVM));2468 #endif2469 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2470 R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnR3GstWriteHandlerCR3;2471 R3PTRTYPE(const char *) pszR3GstWriteHandlerCR3;2472 R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnR3GstPAEWriteHandlerCR3;2473 R3PTRTYPE(const char *) pszR3GstPAEWriteHandlerCR3;2474 #endif2475 2314 DECLRCCALLBACKMEMBER(int, pfnRCGstGetPage,(PVM pVM, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGCPHYS pGCPhys)); 2476 2315 DECLRCCALLBACKMEMBER(int, pfnRCGstModifyPage,(PVM pVM, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask)); 2477 2316 DECLRCCALLBACKMEMBER(int, pfnRCGstGetPDE,(PVM pVM, RTGCPTR GCPtr, PX86PDEPAE pPde)); 2478 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2479 DECLRCCALLBACKMEMBER(int, pfnRCGstMonitorCR3,(PVM pVM, RTGCPHYS GCPhysCR3));2480 DECLRCCALLBACKMEMBER(int, pfnRCGstUnmonitorCR3,(PVM pVM));2481 #endif2482 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2483 RCPTRTYPE(PFNPGMRCPHYSHANDLER) pfnRCGstWriteHandlerCR3;2484 RCPTRTYPE(PFNPGMRCPHYSHANDLER) pfnRCGstPAEWriteHandlerCR3;2485 #endif2486 2317 #if HC_ARCH_BITS == 64 2487 2318 RTRCPTR alignment3; /**< structure size alignment. */ … … 2491 2322 DECLR0CALLBACKMEMBER(int, pfnR0GstModifyPage,(PVM pVM, RTGCPTR GCPtr, size_t cbPages, uint64_t fFlags, uint64_t fMask)); 2492 2323 DECLR0CALLBACKMEMBER(int, pfnR0GstGetPDE,(PVM pVM, RTGCPTR GCPtr, PX86PDEPAE pPde)); 2493 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2494 DECLR0CALLBACKMEMBER(int, pfnR0GstMonitorCR3,(PVM pVM, RTGCPHYS GCPhysCR3));2495 DECLR0CALLBACKMEMBER(int, pfnR0GstUnmonitorCR3,(PVM pVM));2496 #endif2497 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY2498 R0PTRTYPE(PFNPGMRCPHYSHANDLER) pfnR0GstWriteHandlerCR3;2499 R0PTRTYPE(PFNPGMRCPHYSHANDLER) pfnR0GstPAEWriteHandlerCR3;2500 #endif2501 2324 /** @} */ 2502 2325 … … 3072 2895 int pgmR0DynMapHCPageCommon(PVM pVM, PPGMMAPSET pSet, RTHCPHYS HCPhys, void **ppv); 3073 2896 #endif 3074 #if !defined(VBOX_WITH_PGMPOOL_PAGING_ONLY) && (defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0))3075 void *pgmPoolMapPageFallback(PPGM pPGM, PPGMPOOLPAGE pPage);3076 #endif3077 2897 int pgmPoolAlloc(PVM pVM, RTGCPHYS GCPhys, PGMPOOLKIND enmKind, uint16_t iUser, uint32_t iUserTable, PPPGMPOOLPAGE ppPage); 3078 2898 PPGMPOOLPAGE pgmPoolGetPageByHCPhys(PVM pVM, RTHCPHYS HCPhys); … … 3101 2921 #endif 3102 2922 3103 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY3104 2923 void pgmMapClearShadowPDEs(PVM pVM, PPGMPOOLPAGE pShwPageCR3, PPGMMAPPING pMap, unsigned iOldPDE); 3105 2924 void pgmMapSetShadowPDEs(PVM pVM, PPGMMAPPING pMap, unsigned iNewPDE); 3106 2925 int pgmShwSyncPaePDPtr(PVM pVM, RTGCPTR GCPtr, PX86PDPE pGstPdpe, PX86PDPAE *ppPD); 3107 #endif3108 2926 int pgmMapDeactivateCR3(PVM pVM, PPGMPOOLPAGE pShwPageCR3); 3109 2927 int pgmMapActivateCR3(PVM pVM, PPGMPOOLPAGE pShwPageCR3); … … 3532 3350 return pv; 3533 3351 } 3534 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY3535 3352 AssertFatalMsgFailed(("pgmPoolMapPageInlined invalid page index %x\n", pPage->idx)); 3536 #else3537 return pgmPoolMapPageFallback(pPGM, pPage);3538 #endif3539 3353 } 3540 3354 … … 4212 4026 DECLINLINE(PX86PD) pgmShwGet32BitPDPtr(PPGM pPGM) 4213 4027 { 4214 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY4215 4028 return (PX86PD)PGMPOOL_PAGE_2_PTR_BY_PGM(pPGM, pPGM->CTX_SUFF(pShwPageCR3)); 4216 #else4217 # ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R04218 PX86PD pShwPd;4219 Assert(pPGM->HCPhysShw32BitPD != 0 && pPGM->HCPhysShw32BitPD != NIL_RTHCPHYS);4220 int rc = PGM_HCPHYS_2_PTR_BY_PGM(pPGM, pPGM->HCPhysShw32BitPD, &pShwPd);4221 AssertRCReturn(rc, NULL);4222 return pShwPd;4223 # else4224 return pPGM->CTX_SUFF(pShw32BitPd);4225 # endif4226 #endif4227 4029 } 4228 4030 … … 4275 4077 DECLINLINE(PX86PDPT) pgmShwGetPaePDPTPtr(PPGM pPGM) 4276 4078 { 4277 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY4278 4079 return (PX86PDPT)PGMPOOL_PAGE_2_PTR_BY_PGM(pPGM, pPGM->CTX_SUFF(pShwPageCR3)); 4279 #else4280 # ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R04281 PX86PDPT pShwPdpt;4282 Assert(pPGM->HCPhysShwPaePdpt != 0 && pPGM->HCPhysShwPaePdpt != NIL_RTHCPHYS);4283 int rc = PGM_HCPHYS_2_PTR_BY_PGM(pPGM, pPGM->HCPhysShwPaePdpt, &pShwPdpt);4284 AssertRCReturn(rc, 0);4285 return pShwPdpt;4286 # else4287 return pPGM->CTX_SUFF(pShwPaePdpt);4288 # endif4289 #endif4290 4080 } 4291 4081 … … 4300 4090 DECLINLINE(PX86PDPAE) pgmShwGetPaePDPtr(PPGM pPGM, RTGCPTR GCPtr) 4301 4091 { 4302 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY4303 4092 const unsigned iPdpt = (GCPtr >> X86_PDPT_SHIFT) & X86_PDPT_MASK_PAE; 4304 4093 PX86PDPT pPdpt = pgmShwGetPaePDPTPtr(pPGM); … … 4312 4101 4313 4102 return (PX86PDPAE)PGMPOOL_PAGE_2_PTR_BY_PGM(pPGM, pShwPde); 4314 #else4315 const unsigned iPdpt = (GCPtr >> X86_PDPT_SHIFT) & X86_PDPT_MASK_PAE;4316 # ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R04317 PX86PDPAE pPD;4318 int rc = PGM_HCPHYS_2_PTR_BY_PGM(pPGM, pPGM->aHCPhysPaePDs[iPdpt], &pPD);4319 AssertRCReturn(rc, 0);4320 return pPD;4321 # else4322 PX86PDPAE pPD = pPGM->CTX_SUFF(apShwPaePDs)[iPdpt];4323 Assert(pPD);4324 return pPD;4325 # endif4326 #endif4327 4103 } 4328 4104 … … 4337 4113 DECLINLINE(PX86PDPAE) pgmShwGetPaePDPtr(PPGM pPGM, PX86PDPT pPdpt, RTGCPTR GCPtr) 4338 4114 { 4339 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY4340 4115 const unsigned iPdpt = (GCPtr >> X86_PDPT_SHIFT) & X86_PDPT_MASK_PAE; 4341 4116 … … 4348 4123 4349 4124 return (PX86PDPAE)PGMPOOL_PAGE_2_PTR_BY_PGM(pPGM, pShwPde); 4350 #else4351 AssertFailed();4352 return NULL;4353 #endif4354 4125 } 4355 4126 … … 4402 4173 DECLINLINE(PX86PML4) pgmShwGetLongModePML4Ptr(PPGM pPGM) 4403 4174 { 4404 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY4405 4175 return (PX86PML4)PGMPOOL_PAGE_2_PTR_BY_PGM(pPGM, pPGM->CTX_SUFF(pShwPageCR3)); 4406 #else4407 # ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R04408 PX86PML4 pShwPml4;4409 Assert(pPGM->HCPhysShwCR3 != 0 && pPGM->HCPhysShwCR3 != NIL_RTHCPHYS);4410 int rc = PGM_HCPHYS_2_PTR_BY_PGM(pPGM, pPGM->HCPhysShwCR3, &pShwPml4);4411 AssertRCReturn(rc, 0);4412 return pShwPml4;4413 # else4414 Assert(pPGM->CTX_SUFF(pShwRoot));4415 return (PX86PML4)pPGM->CTX_SUFF(pShwRoot);4416 # endif4417 #endif4418 4176 } 4419 4177 … … 4735 4493 #endif /* PGMPOOL_WITH_CACHE */ 4736 4494 4737 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY4738 4739 4495 /** 4740 4496 * Locks a page to prevent flushing (important for cr3 root pages or shadow pae pd pages). … … 4781 4537 } 4782 4538 4783 #endif /* VBOX_WITH_PGMPOOL_PAGING_ONLY */4784 4785 4539 /** 4786 4540 * Tells if mappings are to be put into the shadow page table or not
Note:
See TracChangeset
for help on using the changeset viewer.