Changeset 100965 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Aug 24, 2023 9:25:53 PM (18 months ago)
- svn:sync-xref-src-repo-rev:
- 158906
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r100964 r100965 1436 1436 PGM_REG_PROFILE(&pCpuStats->StatRZTrap0e, "/PGM/CPU%u/RZ/Trap0e", "Profiling of the PGMTrap0eHandler() body."); 1437 1437 PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2Ballooned, "/PGM/CPU%u/RZ/Trap0e/Time2/Ballooned", "Profiling of the Trap0eHandler body when the cause is read access to a ballooned page."); 1438 PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2CSAM, "/PGM/CPU%u/RZ/Trap0e/Time2/CSAM", "Profiling of the Trap0eHandler body when the cause is CSAM.");1439 1438 PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2DirtyAndAccessed, "/PGM/CPU%u/RZ/Trap0e/Time2/DirtyAndAccessedBits", "Profiling of the Trap0eHandler body when the cause is dirty and/or accessed bit emulation."); 1440 1439 PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2GuestTrap, "/PGM/CPU%u/RZ/Trap0e/Time2/GuestTrap", "Profiling of the Trap0eHandler body when the cause is a guest trap."); -
trunk/src/VBox/VMM/VMMR3/PGMDbg.cpp
r98103 r100965 1635 1635 Pte.n.u1PAT ? "AT" : "--", 1636 1636 Pte.n.u1NoExecute ? "NX" : "--", 1637 Pte.u & PGM_PTFLAGS_TRACK_DIRTY 1638 Pte.u & RT_BIT(10) ? '1' : '0',1639 Pte.u & PGM_PTFLAGS_CSAM_VALIDATED? 'v' : '-',1637 Pte.u & PGM_PTFLAGS_TRACK_DIRTY ? 'd' : '-', 1638 Pte.u & RT_BIT(10) ? '1' : '-', 1639 Pte.u & RT_BIT(11) ? '1' : '-', 1640 1640 Pte.u & X86_PTE_PAE_PG_MASK); 1641 1641 if (pState->fDumpPageInfo) … … 1964 1964 Pte.n.u1CacheDisable? "CD" : "--", 1965 1965 Pte.n.u1PAT ? "AT" : "--", 1966 Pte.u & PGM_PTFLAGS_TRACK_DIRTY 1967 Pte.u & RT_BIT(10) ? '1' : '0',1968 Pte.u & PGM_PTFLAGS_CSAM_VALIDATED ? 'v' : '-',1966 Pte.u & PGM_PTFLAGS_TRACK_DIRTY ? 'd' : '-', 1967 Pte.u & RT_BIT(10) ? '1' : '-', 1968 Pte.u & RT_BIT(11) ? '1' : '-', 1969 1969 Pte.u & X86_PDE_PG_MASK); 1970 1970 if (pState->fDumpPageInfo)
Note:
See TracChangeset
for help on using the changeset viewer.