Changeset 9756 in vbox for trunk/src/VBox
- Timestamp:
- Jun 17, 2008 11:26:10 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r9754 r9756 2186 2186 # if PGM_GST_TYPE == PGM_GST_PAE || PGM_GST_TYPE == PGM_GST_AMD64 2187 2187 /* Fetch the pgm pool shadow descriptor. */ 2188 PPGMPOOLPAGE pShwPde = pgmPoolGetPage(pPool, pPdptDst->a[iPdPte].u & SHW_PDE_PG_MASK);2188 PPGMPOOLPAGE pShwPde = pgmPoolGetPage(pPool, pPdptDst->a[iPdPte].u & X86_PDPE_PG_MASK); 2189 2189 Assert(pShwPde); 2190 2190 # endif … … 3015 3015 /* Fetch the pgm pool shadow descriptor if the shadow pml4e is present. */ 3016 3016 if (pVM->pgm.s.CTXMID(p,PaePML4)->a[iPML4E].n.u1Present) 3017 pShwPdpt = pgmPoolGetPage(pPool, pVM->pgm.s.CTXMID(p,PaePML4)->a[iPML4E].u & SHW_PDE_PG_MASK);3017 pShwPdpt = pgmPoolGetPage(pPool, pVM->pgm.s.CTXMID(p,PaePML4)->a[iPML4E].u & X86_PML4E_PG_MASK); 3018 3018 3019 3019 /* Guest PML4E not present (anymore). */ … … 3068 3068 /* Fetch the pgm pool shadow descriptor if the shadow pdpte is present. */ 3069 3069 if (pPdptDst->a[iPDPTE].n.u1Present) 3070 pShwPde = pgmPoolGetPage(pPool, pPdptDst->a[iPDPTE].u & SHW_PDE_PG_MASK);3070 pShwPde = pgmPoolGetPage(pPool, pPdptDst->a[iPDPTE].u & X86_PDPE_PG_MASK); 3071 3071 else 3072 3072 Assert(pPDSrc == NULL);
Note:
See TracChangeset
for help on using the changeset viewer.