Changeset 9757 in vbox
- Timestamp:
- Jun 17, 2008 11:39:36 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r9756 r9757 2184 2184 SHWPDE PdeDst = *pPdeDst; 2185 2185 2186 # if PGM_GST_TYPE == PGM_ GST_PAE || PGM_GST_TYPE == PGM_GST_AMD642186 # if PGM_GST_TYPE == PGM_TYPE_PAE || PGM_GST_TYPE == PGM_TYPE_AMD64 2187 2187 /* Fetch the pgm pool shadow descriptor. */ 2188 PPGMPOOLPAGE pShwPde = pgmPoolGetPage (pPool, pPdptDst->a[iPdPte].u & X86_PDPE_PG_MASK);2188 PPGMPOOLPAGE pShwPde = pgmPoolGetPageByHCPhys(pVM, pPdptDst->a[iPdPte].u & X86_PDPE_PG_MASK); 2189 2189 Assert(pShwPde); 2190 2190 # endif … … 2250 2250 GCPhys |= (iPDDst & 1) * (PAGE_SIZE / 2); 2251 2251 # endif 2252 # if PGM_GST_TYPE == PGM_ GST_PAE || PGM_GST_TYPE == PGM_GST_AMD642252 # if PGM_GST_TYPE == PGM_TYPE_PAE || PGM_GST_TYPE == PGM_TYPE_AMD64 2253 2253 rc = pgmPoolAlloc(pVM, GCPhys, BTH_PGMPOOLKIND_PT_FOR_PT, pShwPde->idx, iPDDst, &pShwPage); 2254 2254 # else … … 2263 2263 GCPhys |= GCPtrPage & (1 << X86_PD_PAE_SHIFT); 2264 2264 # endif 2265 # if PGM_GST_TYPE == PGM_ GST_PAE || PGM_GST_TYPE == PGM_GST_AMD642265 # if PGM_GST_TYPE == PGM_TYPE_PAE || PGM_GST_TYPE == PGM_TYPE_AMD64 2266 2266 rc = pgmPoolAlloc(pVM, GCPhys, BTH_PGMPOOLKIND_PT_FOR_BIG, pShwPde->idx, iPDDst, &pShwPage); 2267 2267 # else
Note:
See TracChangeset
for help on using the changeset viewer.