Changeset 7664 in vbox
- Timestamp:
- Mar 31, 2008 2:40:29 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29175
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r7662 r7664 911 911 # if PGM_SHW_TYPE != PGM_TYPE_32BIT \ 912 912 && PGM_GST_TYPE == PGM_TYPE_32BIT 913 /* Select the right PDE as we're emulating a 4MB page with two 2 MB shadow pages */913 /* Select the right PDE as we're emulating a 4MB page with two 2 MB shadow PDEs */ 914 914 GCPhys |= GCPtrPage & (1 << X86_PD_PAE_SHIFT); 915 915 # endif … … 1276 1276 { 1277 1277 GCPhys = PdeSrc.u & GST_PDE_BIG_PG_MASK; 1278 # if PGM_SHW_TYPE != PGM_TYPE_32BIT 1279 GCPhys |= GCPtrPage & X86_PAGE_2M_SIZE; 1278 # if PGM_SHW_TYPE != PGM_TYPE_32BIT \ 1279 && PGM_GST_TYPE == PGM_TYPE_32BIT 1280 /* Select the right PDE as we're emulating a 4MB page with two 2 MB shadow PDEs */ 1281 GCPhys |= GCPtrPage & (1 << X86_PD_PAE_SHIFT); 1280 1282 # endif 1281 1283 }
Note:
See TracChangeset
for help on using the changeset viewer.