Changeset 14677 in vbox
- Timestamp:
- Nov 27, 2008 1:18:47 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39987
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r14392 r14677 1876 1876 PdeDst = pPDDst->a[iPDDst]; 1877 1877 # endif 1878 Assert (PdeDst.n.u1Present);1878 AssertMsg(PdeDst.n.u1Present, ("#llx\n", (uint64_t)PdeDst.u)); 1879 1879 PPGMPOOLPAGE pShwPage = pgmPoolGetPageByHCPhys(pVM, PdeDst.u & SHW_PDE_PG_MASK); 1880 1880 PSHWPT pPTDst = (PSHWPT)PGMPOOL_PAGE_2_PTR(pVM, pShwPage); … … 3166 3166 PGSTPD pPDSrc = pgmGstGet32bitPDPtr(&pVM->pgm.s); 3167 3167 Assert(pPDSrc); 3168 # if ndef IN_RC3168 # if !defined(IN_RC) && !defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0) 3169 3169 Assert(PGMPhysGCPhys2HCPtrAssert(pVM, (RTGCPHYS)(cr3 & GST_CR3_PAGE_MASK), sizeof(*pPDSrc)) == pPDSrc); 3170 3170 # endif … … 3227 3227 { 3228 3228 # if PGM_SHW_TYPE == PGM_TYPE_PAE && PGM_GST_TYPE == PGM_TYPE_32BIT 3229 if ( !(iPD & (X86_PG_PAE_ENTRIES - 1))) /* Start of new PD. */3229 if ((iPD & 255) == 0) /* Start of new PD. */ 3230 3230 pPDEDst = pgmShwGetPaePDEPtr(&pVM->pgm.s, (uint32_t)iPD << GST_PD_SHIFT); 3231 3231 # endif
Note:
See TracChangeset
for help on using the changeset viewer.