VirtualBox

Changeset 100965 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Aug 24, 2023 9:25:53 PM (18 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
158906
Message:

VMM/PGM,++: Removing some CSAM traces.

Location:
trunk/src/VBox/VMM/VMMR3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/PGM.cpp

    r100964 r100965  
    14361436        PGM_REG_PROFILE(&pCpuStats->StatRZTrap0e,                      "/PGM/CPU%u/RZ/Trap0e",                     "Profiling of the PGMTrap0eHandler() body.");
    14371437        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.");
    14391438        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.");
    14401439        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  
    16351635                                        Pte.n.u1PAT         ? "AT" : "--",
    16361636                                        Pte.n.u1NoExecute   ? "NX" : "--",
    1637                                         Pte.u & PGM_PTFLAGS_TRACK_DIRTY   ? 'd' : '-',
    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' : '-',
    16401640                                        Pte.u & X86_PTE_PAE_PG_MASK);
    16411641                if (pState->fDumpPageInfo)
     
    19641964                                    Pte.n.u1CacheDisable? "CD" : "--",
    19651965                                    Pte.n.u1PAT         ? "AT" : "--",
    1966                                     Pte.u & PGM_PTFLAGS_TRACK_DIRTY     ? 'd' : '-',
    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' : '-',
    19691969                                    Pte.u & X86_PDE_PG_MASK);
    19701970            if (pState->fDumpPageInfo)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette