Changeset 86461 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 6, 2020 4:40:59 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 140765
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMDbg.cpp
r85180 r86461 1346 1346 Pde.b.u1NoExecute ? "NX" : "--", 1347 1347 Pde.u & PGM_PDFLAGS_BIG_PAGE ? 'b' : '-', 1348 #ifndef PGM_WITHOUT_MAPPINGS 1348 1349 Pde.u & PGM_PDFLAGS_MAPPING ? 'm' : '-', 1350 #else 1351 '-', 1352 #endif 1349 1353 Pde.u & PGM_PDFLAGS_TRACK_DIRTY ? 'd' : '-', 1350 1354 Pde.u & X86_PDE2M_PAE_PG_MASK); … … 1375 1379 Pde.n.u1NoExecute ? "NX" : "--", 1376 1380 Pde.u & PGM_PDFLAGS_BIG_PAGE ? 'b' : '-', 1381 #ifndef PGM_WITHOUT_MAPPINGS 1377 1382 Pde.u & PGM_PDFLAGS_MAPPING ? 'm' : '-', 1383 #else 1384 '-', 1385 #endif 1378 1386 Pde.u & PGM_PDFLAGS_TRACK_DIRTY ? 'd' : '-', 1379 1387 Pde.u & X86_PDE_PAE_PG_MASK); … … 1386 1394 if (cMaxDepth) 1387 1395 { 1388 int rc2 = pgmR3DumpHierarchyShwPaePT(pState, Pde.u & X86_PDE_PAE_PG_MASK, !!(Pde.u & PGM_PDFLAGS_MAPPING)); 1396 int rc2 = pgmR3DumpHierarchyShwPaePT(pState, Pde.u & X86_PDE_PAE_PG_MASK, 1397 #ifndef PGM_WITHOUT_MAPPINGS 1398 RT_BOOL(Pde.u & PGM_PDFLAGS_MAPPING) 1399 #else 1400 false /*fIsMapping*/ 1401 #endif 1402 ); 1389 1403 if (rc2 < rc && RT_SUCCESS(rc)) 1390 1404 rc = rc2; … … 1662 1676 Pde.b.u1PAT ? "AT" : "--", 1663 1677 Pde.u & PGM_PDFLAGS_BIG_PAGE ? 'b' : '-', 1678 #ifndef PGM_WITHOUT_MAPPINGS 1664 1679 Pde.u & PGM_PDFLAGS_MAPPING ? 'm' : '-', 1680 #else 1681 '-', 1682 #endif 1665 1683 Pde.u & PGM_PDFLAGS_TRACK_DIRTY ? 'd' : '-', 1666 1684 u64Phys); … … 1683 1701 Pde.n.u1CacheDisable? "CD" : "--", 1684 1702 Pde.u & PGM_PDFLAGS_BIG_PAGE ? 'b' : '-', 1703 #ifndef PGM_WITHOUT_MAPPINGS 1685 1704 Pde.u & PGM_PDFLAGS_MAPPING ? 'm' : '-', 1705 #else 1706 '-', 1707 #endif 1686 1708 Pde.u & PGM_PDFLAGS_TRACK_DIRTY ? 'd' : '-', 1687 1709 Pde.u & X86_PDE_PG_MASK); … … 1692 1714 if (cMaxDepth) 1693 1715 { 1694 int rc2 = pgmR3DumpHierarchyShw32BitPT(pState, Pde.u & X86_PDE_PG_MASK, !!(Pde.u & PGM_PDFLAGS_MAPPING)); 1716 int rc2 = pgmR3DumpHierarchyShw32BitPT(pState, Pde.u & X86_PDE_PG_MASK, 1717 #ifndef PGM_WITHOUT_MAPPINGS 1718 !!(Pde.u & PGM_PDFLAGS_MAPPING) 1719 #else 1720 false /*fIsMapping*/ 1721 #endif 1722 ); 1695 1723 if (rc2 < rc && RT_SUCCESS(rc)) 1696 1724 rc = rc2; -
trunk/src/VBox/VMM/VMMR3/PGMPool.cpp
r85179 r86461 543 543 && pShwPD->a[i].b.u1Size) 544 544 { 545 # ifndef PGM_WITHOUT_MAPPINGS 545 546 Assert(!(pShwPD->a[i].u & PGM_PDFLAGS_MAPPING)); 547 # endif 546 548 pShwPD->a[i].u = 0; 547 549 Assert(pPage->cPresent); … … 564 566 && pShwPD->a[i].b.u1Size) 565 567 { 568 # ifndef PGM_WITHOUT_MAPPINGS 566 569 Assert(!(pShwPD->a[i].u & PGM_PDFLAGS_MAPPING)); 570 # endif 567 571 pShwPD->a[i].u = 0; 568 572 Assert(pPage->cPresent);
Note:
See TracChangeset
for help on using the changeset viewer.