Changeset 93951 in vbox
- Timestamp:
- Feb 25, 2022 2:03:50 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150181
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMDbg.cpp
r93743 r93951 1297 1297 static int pgmR3DumpHierarchyShwPaePT(PPGMR3DUMPHIERARCHYSTATE pState, RTHCPHYS HCPhys) 1298 1298 { 1299 PCPGMSHWPTPAE pPT ;1299 PCPGMSHWPTPAE pPT = NULL; 1300 1300 int rc = pgmR3DumpHierarchyShwMapPage(pState, HCPhys, "Page table", (void const **)&pPT); 1301 1301 if (RT_FAILURE(rc)) … … 1365 1365 static int pgmR3DumpHierarchyShwPaePD(PPGMR3DUMPHIERARCHYSTATE pState, RTHCPHYS HCPhys, unsigned cMaxDepth) 1366 1366 { 1367 PCX86PDPAE pPD ;1367 PCX86PDPAE pPD = NULL; 1368 1368 int rc = pgmR3DumpHierarchyShwMapPage(pState, HCPhys, "Page directory", (void const **)&pPD); 1369 1369 if (RT_FAILURE(rc)) … … 1465 1465 return VINF_SUCCESS; 1466 1466 1467 PCX86PDPT pPDPT ;1467 PCX86PDPT pPDPT = NULL; 1468 1468 int rc = pgmR3DumpHierarchyShwMapPage(pState, HCPhys, "Page directory pointer table", (void const **)&pPDPT); 1469 1469 if (RT_FAILURE(rc)) … … 1555 1555 static int pgmR3DumpHierarchyShwPaePML4(PPGMR3DUMPHIERARCHYSTATE pState, RTHCPHYS HCPhys, unsigned cMaxDepth) 1556 1556 { 1557 PCX86PML4 pPML4 ;1557 PCX86PML4 pPML4 = NULL; 1558 1558 int rc = pgmR3DumpHierarchyShwMapPage(pState, HCPhys, "Page map level 4", (void const **)&pPML4); 1559 1559 if (RT_FAILURE(rc)) … … 1631 1631 static int pgmR3DumpHierarchyShw32BitPT(PPGMR3DUMPHIERARCHYSTATE pState, RTHCPHYS HCPhys) 1632 1632 { 1633 PCX86PT pPT ;1633 PCX86PT pPT = NULL; 1634 1634 int rc = pgmR3DumpHierarchyShwMapPage(pState, HCPhys, "Page table", (void const **)&pPT); 1635 1635 if (RT_FAILURE(rc)) … … 1681 1681 return VINF_SUCCESS; 1682 1682 1683 PCX86PD pPD ;1683 PCX86PD pPD = NULL; 1684 1684 int rc = pgmR3DumpHierarchyShwMapPage(pState, HCPhys, "Page directory", (void const **)&pPD); 1685 1685 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.