Changeset 17589 in vbox
- Timestamp:
- Mar 9, 2009 4:07:13 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMMap.cpp
r17586 r17589 984 984 985 985 Log(("PGM: Relocating %s from %RGv to %RGv\n", pMapping->pszDesc, GCPtrOldMapping, GCPtrNewMapping)); 986 Assert (((unsigned)iPDOld << X86_PD_SHIFT) == pMapping->GCPtr);986 AssertMsg(((unsigned)iPDOld << X86_PD_SHIFT) == pMapping->GCPtr, ("%RGv vs %RGv\n", ((unsigned)iPDOld << X86_PD_SHIFT) == pMapping->GCPtr)); 987 987 988 988 /* -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r17586 r17589 994 994 return VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT; 995 995 } 996 AssertMsg(pPdpt->a[iPdPt].u & X86_PDPE_PG_MASK, ("GCPtr=%RGv\n", GCPtr)); 996 997 997 998 /* Fetch the pgm pool shadow descriptor. */
Note:
See TracChangeset
for help on using the changeset viewer.