- Timestamp:
- Jan 10, 2012 3:27:08 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75620
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp ¶
r39402 r39739 4944 4944 * @retval VINF_PGM_CACHED_PAGE if a CACHED page was returned. 4945 4945 * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed. 4946 * 4946 4947 * @param pVM The VM handle. 4947 4948 * @param GCPhys The GC physical address of the page we're gonna shadow. -
TabularUnified trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp ¶
r39700 r39739 2041 2041 /* Note: only in the nested paging case can CR3 & CR4 be changed by the guest. */ 2042 2042 if ( pVM->hwaccm.s.fNestedPaging 2043 && CPUMIsGuestInPagedProtectedModeEx(pCtx)) 2043 && CPUMIsGuestInPagedProtectedModeEx(pCtx)) /** @todo check if we will always catch mode switches and such... */ 2044 2044 { 2045 2045 PVMCSCACHE pCache = &pVCpu->hwaccm.s.vmx.VMCSCache; -
TabularUnified trunk/src/VBox/VMM/VMMR3/PGMShw.h ¶
r39078 r39739 179 179 180 180 # if PGM_SHW_TYPE == PGM_TYPE_NESTED && HC_ARCH_BITS == 32 181 /* Must distinguish between 32 and 64 bits guest paging modes as we'll use a different shadow paging root/mode in both cases. */ 181 /* Must distinguish between 32 and 64 bits guest paging modes as we'll use 182 a different shadow paging root/mode in both cases. */ 182 183 RTGCPHYS GCPhysCR3 = (fIs64BitsPagingMode) ? RT_BIT_64(63) : RT_BIT_64(62); 183 184 # else
Note:
See TracChangeset
for help on using the changeset viewer.