VirtualBox

Changeset 12688 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Sep 24, 2008 2:22:18 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
36993
Message:

#1865: EM - one pointer and statistics. Added a couple of more samples to the release statistics.

Location:
trunk/src/VBox/VMM
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/EM.cpp

    r12653 r12688  
    2020 */
    2121
    22 
    2322/** @page pg_em         EM - The Execution Monitor/Manager
    2423 *
    2524 * The Execution Monitor/Manager is responsible for running the VM, scheduling
    26  * the right kind of execution (Raw, Recompiled, Interpreted,..), and keeping
    27  * the CPU states in sync. The function RMR3ExecuteVM() is the 'main-loop' of
    28  * the VM.
    29  *
     25 * the right kind of execution (Raw-mode, Hardware Assisted, Recompiled or
     26 * Interpreted), and keeping the CPU states in sync. The function
     27 * EMR3ExecuteVM() is the 'main-loop' of the VM, while each of the execution
     28 * modes has different inner loops (emR3RawExecute, emR3HwAccExecute, and
     29 * emR3RemExecute).
     30 *
     31 * The interpreted execution is only used to avoid switching between
     32 * raw-mode/hwaccm and the recompiler when fielding virtualization traps/faults.
     33 * The interpretation is thus implemented as part of EM.
    3034 */
    3135
     
    144148    if (VBOX_FAILURE(rc))
    145149        return rc;
    146     pVM->em.s.pStatsHC = pStats;
    147     pVM->em.s.pStatsGC = MMHyperHC2GC(pVM, pStats);
    148 
    149     STAM_REG(pVM, &pStats->StatGCEmulate,               STAMTYPE_PROFILE, "/EM/GC/Interpret",                   STAMUNIT_TICKS_PER_CALL, "Profiling of EMInterpretInstruction.");
    150     STAM_REG(pVM, &pStats->StatHCEmulate,               STAMTYPE_PROFILE, "/EM/HC/Interpret",                   STAMUNIT_TICKS_PER_CALL, "Profiling of EMInterpretInstruction.");
    151 
    152     STAM_REG(pVM, &pStats->StatGCInterpretSucceeded,    STAMTYPE_COUNTER, "/EM/GC/Interpret/Success",           STAMUNIT_OCCURENCES,    "The number of times an instruction was successfully interpreted.");
    153     STAM_REG(pVM, &pStats->StatHCInterpretSucceeded,    STAMTYPE_COUNTER, "/EM/HC/Interpret/Success",           STAMUNIT_OCCURENCES,    "The number of times an instruction was successfully interpreted.");
    154 
    155     STAM_REG_USED(pVM, &pStats->StatGCAnd,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/And",       STAMUNIT_OCCURENCES,    "The number of times AND was successfully interpreted.");
    156     STAM_REG_USED(pVM, &pStats->StatHCAnd,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/And",       STAMUNIT_OCCURENCES,    "The number of times AND was successfully interpreted.");
    157     STAM_REG_USED(pVM, &pStats->StatGCAdd,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Add",       STAMUNIT_OCCURENCES,    "The number of times ADD was successfully interpreted.");
    158     STAM_REG_USED(pVM, &pStats->StatHCAdd,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Add",       STAMUNIT_OCCURENCES,    "The number of times ADD was successfully interpreted.");
    159     STAM_REG_USED(pVM, &pStats->StatGCAdc,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Adc",       STAMUNIT_OCCURENCES,    "The number of times ADC was successfully interpreted.");
    160     STAM_REG_USED(pVM, &pStats->StatHCAdc,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Adc",       STAMUNIT_OCCURENCES,    "The number of times ADC was successfully interpreted.");
    161     STAM_REG_USED(pVM, &pStats->StatGCSub,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Sub",       STAMUNIT_OCCURENCES,    "The number of times SUB was successfully interpreted.");
    162     STAM_REG_USED(pVM, &pStats->StatHCSub,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Sub",       STAMUNIT_OCCURENCES,    "The number of times SUB was successfully interpreted.");
    163     STAM_REG_USED(pVM, &pStats->StatGCCpuId,                STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/CpuId",     STAMUNIT_OCCURENCES,    "The number of times CPUID was successfully interpreted.");
    164     STAM_REG_USED(pVM, &pStats->StatHCCpuId,                STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/CpuId",     STAMUNIT_OCCURENCES,    "The number of times CPUID was successfully interpreted.");
    165     STAM_REG_USED(pVM, &pStats->StatGCDec,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Dec",       STAMUNIT_OCCURENCES,    "The number of times DEC was successfully interpreted.");
    166     STAM_REG_USED(pVM, &pStats->StatHCDec,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Dec",       STAMUNIT_OCCURENCES,    "The number of times DEC was successfully interpreted.");
    167     STAM_REG_USED(pVM, &pStats->StatGCHlt,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Hlt",       STAMUNIT_OCCURENCES,    "The number of times HLT was successfully interpreted.");
    168     STAM_REG_USED(pVM, &pStats->StatHCHlt,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Hlt",       STAMUNIT_OCCURENCES,    "The number of times HLT was successfully interpreted.");
    169     STAM_REG_USED(pVM, &pStats->StatGCInc,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Inc",       STAMUNIT_OCCURENCES,    "The number of times INC was successfully interpreted.");
    170     STAM_REG_USED(pVM, &pStats->StatHCInc,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Inc",       STAMUNIT_OCCURENCES,    "The number of times INC was successfully interpreted.");
    171     STAM_REG_USED(pVM, &pStats->StatGCInvlPg,               STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Invlpg",    STAMUNIT_OCCURENCES,    "The number of times INVLPG was successfully interpreted.");
    172     STAM_REG_USED(pVM, &pStats->StatHCInvlPg,               STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Invlpg",    STAMUNIT_OCCURENCES,    "The number of times INVLPG was successfully interpreted.");
    173     STAM_REG_USED(pVM, &pStats->StatGCIret,                 STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Iret",      STAMUNIT_OCCURENCES,    "The number of times IRET was successfully interpreted.");
    174     STAM_REG_USED(pVM, &pStats->StatHCIret,                 STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Iret",      STAMUNIT_OCCURENCES,    "The number of times IRET was successfully interpreted.");
    175     STAM_REG_USED(pVM, &pStats->StatGCLLdt,                 STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/LLdt",      STAMUNIT_OCCURENCES,    "The number of times LLDT was successfully interpreted.");
    176     STAM_REG_USED(pVM, &pStats->StatHCLLdt,                 STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/LLdt",      STAMUNIT_OCCURENCES,    "The number of times LLDT was successfully interpreted.");
    177     STAM_REG_USED(pVM, &pStats->StatGCMov,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Mov",       STAMUNIT_OCCURENCES,    "The number of times MOV was successfully interpreted.");
    178     STAM_REG_USED(pVM, &pStats->StatHCMov,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Mov",       STAMUNIT_OCCURENCES,    "The number of times MOV was successfully interpreted.");
    179     STAM_REG_USED(pVM, &pStats->StatGCMovCRx,               STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/MovCRx",    STAMUNIT_OCCURENCES,    "The number of times MOV CRx was successfully interpreted.");
    180     STAM_REG_USED(pVM, &pStats->StatHCMovCRx,               STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/MovCRx",    STAMUNIT_OCCURENCES,    "The number of times MOV CRx was successfully interpreted.");
    181     STAM_REG_USED(pVM, &pStats->StatGCMovDRx,               STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/MovDRx",    STAMUNIT_OCCURENCES,    "The number of times MOV DRx was successfully interpreted.");
    182     STAM_REG_USED(pVM, &pStats->StatHCMovDRx,               STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/MovDRx",    STAMUNIT_OCCURENCES,    "The number of times MOV DRx was successfully interpreted.");
    183     STAM_REG_USED(pVM, &pStats->StatGCOr,                   STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Or",        STAMUNIT_OCCURENCES,    "The number of times OR was successfully interpreted.");
    184     STAM_REG_USED(pVM, &pStats->StatHCOr,                   STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Or",        STAMUNIT_OCCURENCES,    "The number of times OR was successfully interpreted.");
    185     STAM_REG_USED(pVM, &pStats->StatGCPop,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Pop",       STAMUNIT_OCCURENCES,    "The number of times POP was successfully interpreted.");
    186     STAM_REG_USED(pVM, &pStats->StatHCPop,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Pop",       STAMUNIT_OCCURENCES,    "The number of times POP was successfully interpreted.");
    187     STAM_REG_USED(pVM, &pStats->StatGCRdtsc,                STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Rdtsc",     STAMUNIT_OCCURENCES,    "The number of times RDTSC was successfully interpreted.");
    188     STAM_REG_USED(pVM, &pStats->StatHCRdtsc,                STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Rdtsc",     STAMUNIT_OCCURENCES,    "The number of times RDTSC was successfully interpreted.");
    189     STAM_REG_USED(pVM, &pStats->StatGCSti,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Sti",       STAMUNIT_OCCURENCES,    "The number of times STI was successfully interpreted.");
    190     STAM_REG_USED(pVM, &pStats->StatHCSti,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Sti",       STAMUNIT_OCCURENCES,    "The number of times STI was successfully interpreted.");
    191     STAM_REG_USED(pVM, &pStats->StatGCXchg,                 STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Xchg",      STAMUNIT_OCCURENCES,    "The number of times XCHG was successfully interpreted.");
    192     STAM_REG_USED(pVM, &pStats->StatHCXchg,                 STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Xchg",      STAMUNIT_OCCURENCES,    "The number of times XCHG was successfully interpreted.");
    193     STAM_REG_USED(pVM, &pStats->StatGCXor,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Xor",       STAMUNIT_OCCURENCES,    "The number of times XOR was successfully interpreted.");
    194     STAM_REG_USED(pVM, &pStats->StatHCXor,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Xor",       STAMUNIT_OCCURENCES,    "The number of times XOR was successfully interpreted.");
    195     STAM_REG_USED(pVM, &pStats->StatGCMonitor,              STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Monitor",   STAMUNIT_OCCURENCES,    "The number of times MONITOR was successfully interpreted.");
    196     STAM_REG_USED(pVM, &pStats->StatHCMonitor,              STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Monitor",   STAMUNIT_OCCURENCES,    "The number of times MONITOR was successfully interpreted.");
    197     STAM_REG_USED(pVM, &pStats->StatGCMWait,                STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/MWait",     STAMUNIT_OCCURENCES,    "The number of times MWAIT was successfully interpreted.");
    198     STAM_REG_USED(pVM, &pStats->StatHCMWait,                STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/MWait",     STAMUNIT_OCCURENCES,    "The number of times MWAIT was successfully interpreted.");
    199     STAM_REG_USED(pVM, &pStats->StatGCBtr,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Btr",       STAMUNIT_OCCURENCES,    "The number of times BTR was successfully interpreted.");
    200     STAM_REG_USED(pVM, &pStats->StatHCBtr,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Btr",       STAMUNIT_OCCURENCES,    "The number of times BTR was successfully interpreted.");
    201     STAM_REG_USED(pVM, &pStats->StatGCBts,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Bts",       STAMUNIT_OCCURENCES,    "The number of times BTS was successfully interpreted.");
    202     STAM_REG_USED(pVM, &pStats->StatHCBts,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Bts",       STAMUNIT_OCCURENCES,    "The number of times BTS was successfully interpreted.");
    203     STAM_REG_USED(pVM, &pStats->StatGCBtc,                  STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Btc",       STAMUNIT_OCCURENCES,    "The number of times BTC was successfully interpreted.");
    204     STAM_REG_USED(pVM, &pStats->StatHCBtc,                  STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Btc",       STAMUNIT_OCCURENCES,    "The number of times BTC was successfully interpreted.");
    205     STAM_REG_USED(pVM, &pStats->StatGCCmpXchg,              STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/CmpXchg",   STAMUNIT_OCCURENCES,    "The number of times CMPXCHG was successfully interpreted.");
    206     STAM_REG_USED(pVM, &pStats->StatHCCmpXchg,              STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/CmpXchg",   STAMUNIT_OCCURENCES,    "The number of times CMPXCHG was successfully interpreted.");
    207     STAM_REG_USED(pVM, &pStats->StatGCCmpXchg8b,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/CmpXchg8b",   STAMUNIT_OCCURENCES,  "The number of times CMPXCHG8B was successfully interpreted.");
    208     STAM_REG_USED(pVM, &pStats->StatHCCmpXchg8b,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/CmpXchg8b",   STAMUNIT_OCCURENCES,  "The number of times CMPXCHG8B was successfully interpreted.");
    209     STAM_REG_USED(pVM, &pStats->StatGCXAdd,                 STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/XAdd",      STAMUNIT_OCCURENCES,    "The number of times XADD was successfully interpreted.");
    210     STAM_REG_USED(pVM, &pStats->StatHCXAdd,                 STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/XAdd",      STAMUNIT_OCCURENCES,    "The number of times XADD was successfully interpreted.");
    211     STAM_REG_USED(pVM, &pStats->StatHCRdmsr,                STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Rdmsr",      STAMUNIT_OCCURENCES,   "The number of times RDMSR was not interpreted.");
    212     STAM_REG_USED(pVM, &pStats->StatGCRdmsr,                STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Rdmsr",      STAMUNIT_OCCURENCES,   "The number of times RDMSR was not interpreted.");
    213     STAM_REG_USED(pVM, &pStats->StatHCWrmsr,                STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Wrmsr",      STAMUNIT_OCCURENCES,   "The number of times WRMSR was not interpreted.");
    214     STAM_REG_USED(pVM, &pStats->StatGCWrmsr,                STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Wrmsr",      STAMUNIT_OCCURENCES,   "The number of times WRMSR was not interpreted.");
    215     STAM_REG_USED(pVM, &pStats->StatHCStosWD,               STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Stoswd",     STAMUNIT_OCCURENCES,   "The number of times STOSWD was not interpreted.");
    216     STAM_REG_USED(pVM, &pStats->StatGCStosWD,               STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Stoswd",     STAMUNIT_OCCURENCES,   "The number of times STOSWD was not interpreted.");
    217 
    218     STAM_REG(pVM, &pStats->StatGCInterpretFailed,           STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed",            STAMUNIT_OCCURENCES,    "The number of times an instruction was not interpreted.");
    219     STAM_REG(pVM, &pStats->StatHCInterpretFailed,           STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed",            STAMUNIT_OCCURENCES,    "The number of times an instruction was not interpreted.");
    220 
    221     STAM_REG_USED(pVM, &pStats->StatGCFailedAnd,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/And",        STAMUNIT_OCCURENCES,    "The number of times AND was not interpreted.");
    222     STAM_REG_USED(pVM, &pStats->StatHCFailedAnd,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/And",        STAMUNIT_OCCURENCES,    "The number of times AND was not interpreted.");
    223     STAM_REG_USED(pVM, &pStats->StatGCFailedCpuId,          STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/CpuId",      STAMUNIT_OCCURENCES,    "The number of times CPUID was not interpreted.");
    224     STAM_REG_USED(pVM, &pStats->StatHCFailedCpuId,          STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/CpuId",      STAMUNIT_OCCURENCES,    "The number of times CPUID was not interpreted.");
    225     STAM_REG_USED(pVM, &pStats->StatGCFailedDec,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Dec",        STAMUNIT_OCCURENCES,    "The number of times DEC was not interpreted.");
    226     STAM_REG_USED(pVM, &pStats->StatHCFailedDec,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Dec",        STAMUNIT_OCCURENCES,    "The number of times DEC was not interpreted.");
    227     STAM_REG_USED(pVM, &pStats->StatGCFailedHlt,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Hlt",        STAMUNIT_OCCURENCES,    "The number of times HLT was not interpreted.");
    228     STAM_REG_USED(pVM, &pStats->StatHCFailedHlt,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Hlt",        STAMUNIT_OCCURENCES,    "The number of times HLT was not interpreted.");
    229     STAM_REG_USED(pVM, &pStats->StatGCFailedInc,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Inc",        STAMUNIT_OCCURENCES,    "The number of times INC was not interpreted.");
    230     STAM_REG_USED(pVM, &pStats->StatHCFailedInc,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Inc",        STAMUNIT_OCCURENCES,    "The number of times INC was not interpreted.");
    231     STAM_REG_USED(pVM, &pStats->StatGCFailedInvlPg,         STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/InvlPg",     STAMUNIT_OCCURENCES,    "The number of times INVLPG was not interpreted.");
    232     STAM_REG_USED(pVM, &pStats->StatHCFailedInvlPg,         STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/InvlPg",     STAMUNIT_OCCURENCES,    "The number of times INVLPG was not interpreted.");
    233     STAM_REG_USED(pVM, &pStats->StatGCFailedIret,           STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Iret",       STAMUNIT_OCCURENCES,    "The number of times IRET was not interpreted.");
    234     STAM_REG_USED(pVM, &pStats->StatHCFailedIret,           STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Iret",       STAMUNIT_OCCURENCES,    "The number of times IRET was not interpreted.");
    235     STAM_REG_USED(pVM, &pStats->StatGCFailedLLdt,           STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/LLdt",       STAMUNIT_OCCURENCES,    "The number of times LLDT was not interpreted.");
    236     STAM_REG_USED(pVM, &pStats->StatHCFailedLLdt,           STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/LLdt",       STAMUNIT_OCCURENCES,    "The number of times LLDT was not interpreted.");
    237     STAM_REG_USED(pVM, &pStats->StatGCFailedMov,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Mov",        STAMUNIT_OCCURENCES,    "The number of times MOV was not interpreted.");
    238     STAM_REG_USED(pVM, &pStats->StatHCFailedMov,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Mov",        STAMUNIT_OCCURENCES,    "The number of times MOV was not interpreted.");
    239     STAM_REG_USED(pVM, &pStats->StatGCFailedMovCRx,         STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/MovCRx",     STAMUNIT_OCCURENCES,    "The number of times MOV CRx was not interpreted.");
    240     STAM_REG_USED(pVM, &pStats->StatHCFailedMovCRx,         STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/MovCRx",     STAMUNIT_OCCURENCES,    "The number of times MOV CRx was not interpreted.");
    241     STAM_REG_USED(pVM, &pStats->StatGCFailedMovDRx,         STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/MovDRx",     STAMUNIT_OCCURENCES,    "The number of times MOV DRx was not interpreted.");
    242     STAM_REG_USED(pVM, &pStats->StatHCFailedMovDRx,         STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/MovDRx",     STAMUNIT_OCCURENCES,    "The number of times MOV DRx was not interpreted.");
    243     STAM_REG_USED(pVM, &pStats->StatGCFailedOr,             STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Or",         STAMUNIT_OCCURENCES,    "The number of times OR was not interpreted.");
    244     STAM_REG_USED(pVM, &pStats->StatHCFailedOr,             STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Or",         STAMUNIT_OCCURENCES,    "The number of times OR was not interpreted.");
    245     STAM_REG_USED(pVM, &pStats->StatGCFailedPop,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Pop",        STAMUNIT_OCCURENCES,    "The number of times POP was not interpreted.");
    246     STAM_REG_USED(pVM, &pStats->StatHCFailedPop,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Pop",        STAMUNIT_OCCURENCES,    "The number of times POP was not interpreted.");
    247     STAM_REG_USED(pVM, &pStats->StatGCFailedSti,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Sti",        STAMUNIT_OCCURENCES,    "The number of times STI was not interpreted.");
    248     STAM_REG_USED(pVM, &pStats->StatHCFailedSti,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Sti",        STAMUNIT_OCCURENCES,    "The number of times STI was not interpreted.");
    249     STAM_REG_USED(pVM, &pStats->StatGCFailedXchg,           STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Xchg",       STAMUNIT_OCCURENCES,    "The number of times XCHG was not interpreted.");
    250     STAM_REG_USED(pVM, &pStats->StatHCFailedXchg,           STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Xchg",       STAMUNIT_OCCURENCES,    "The number of times XCHG was not interpreted.");
    251     STAM_REG_USED(pVM, &pStats->StatGCFailedXor,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Xor",        STAMUNIT_OCCURENCES,    "The number of times XOR was not interpreted.");
    252     STAM_REG_USED(pVM, &pStats->StatHCFailedXor,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Xor",        STAMUNIT_OCCURENCES,    "The number of times XOR was not interpreted.");
    253     STAM_REG_USED(pVM, &pStats->StatGCFailedMonitor,        STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Monitor",    STAMUNIT_OCCURENCES,    "The number of times MONITOR was not interpreted.");
    254     STAM_REG_USED(pVM, &pStats->StatHCFailedMonitor,        STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Monitor",    STAMUNIT_OCCURENCES,    "The number of times MONITOR was not interpreted.");
    255     STAM_REG_USED(pVM, &pStats->StatGCFailedMWait,          STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/MWait",      STAMUNIT_OCCURENCES,    "The number of times MONITOR was not interpreted.");
    256     STAM_REG_USED(pVM, &pStats->StatHCFailedMWait,          STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/MWait",      STAMUNIT_OCCURENCES,    "The number of times MONITOR was not interpreted.");
    257     STAM_REG_USED(pVM, &pStats->StatGCFailedRdtsc,          STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Rdtsc",      STAMUNIT_OCCURENCES,    "The number of times RDTSC was not interpreted.");
    258     STAM_REG_USED(pVM, &pStats->StatHCFailedRdtsc,          STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Rdtsc",      STAMUNIT_OCCURENCES,    "The number of times RDTSC was not interpreted.");
    259     STAM_REG_USED(pVM, &pStats->StatGCFailedRdmsr,          STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Rdmsr",      STAMUNIT_OCCURENCES,    "The number of times RDMSR was not interpreted.");
    260     STAM_REG_USED(pVM, &pStats->StatHCFailedRdmsr,          STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Rdmsr",      STAMUNIT_OCCURENCES,    "The number of times RDMSR was not interpreted.");
    261     STAM_REG_USED(pVM, &pStats->StatGCFailedWrmsr,          STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Wrmsr",      STAMUNIT_OCCURENCES,    "The number of times WRMSR was not interpreted.");
    262     STAM_REG_USED(pVM, &pStats->StatHCFailedWrmsr,          STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Wrmsr",      STAMUNIT_OCCURENCES,    "The number of times WRMSR was not interpreted.");
    263 
    264     STAM_REG_USED(pVM, &pStats->StatGCFailedMisc,           STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Misc",       STAMUNIT_OCCURENCES,    "The number of times some misc instruction was encountered.");
    265     STAM_REG_USED(pVM, &pStats->StatHCFailedMisc,           STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Misc",       STAMUNIT_OCCURENCES,    "The number of times some misc instruction was encountered.");
    266     STAM_REG_USED(pVM, &pStats->StatGCFailedAdd,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Add",        STAMUNIT_OCCURENCES,    "The number of times ADD was not interpreted.");
    267     STAM_REG_USED(pVM, &pStats->StatHCFailedAdd,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Add",        STAMUNIT_OCCURENCES,    "The number of times ADD was not interpreted.");
    268     STAM_REG_USED(pVM, &pStats->StatGCFailedAdc,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Adc",        STAMUNIT_OCCURENCES,    "The number of times ADC was not interpreted.");
    269     STAM_REG_USED(pVM, &pStats->StatHCFailedAdc,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Adc",        STAMUNIT_OCCURENCES,    "The number of times ADC was not interpreted.");
    270     STAM_REG_USED(pVM, &pStats->StatGCFailedBtr,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Btr",        STAMUNIT_OCCURENCES,    "The number of times BTR was not interpreted.");
    271     STAM_REG_USED(pVM, &pStats->StatHCFailedBtr,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Btr",        STAMUNIT_OCCURENCES,    "The number of times BTR was not interpreted.");
    272     STAM_REG_USED(pVM, &pStats->StatGCFailedBts,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Bts",        STAMUNIT_OCCURENCES,    "The number of times BTS was not interpreted.");
    273     STAM_REG_USED(pVM, &pStats->StatHCFailedBts,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Bts",        STAMUNIT_OCCURENCES,    "The number of times BTS was not interpreted.");
    274     STAM_REG_USED(pVM, &pStats->StatGCFailedBtc,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Btc",        STAMUNIT_OCCURENCES,    "The number of times BTC was not interpreted.");
    275     STAM_REG_USED(pVM, &pStats->StatHCFailedBtc,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Btc",        STAMUNIT_OCCURENCES,    "The number of times BTC was not interpreted.");
    276     STAM_REG_USED(pVM, &pStats->StatGCFailedCli,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Cli",        STAMUNIT_OCCURENCES,    "The number of times CLI was not interpreted.");
    277     STAM_REG_USED(pVM, &pStats->StatHCFailedCli,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Cli",        STAMUNIT_OCCURENCES,    "The number of times CLI was not interpreted.");
    278     STAM_REG_USED(pVM, &pStats->StatGCFailedCmpXchg,        STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/CmpXchg",    STAMUNIT_OCCURENCES,    "The number of times CMPXCHG was not interpreted.");
    279     STAM_REG_USED(pVM, &pStats->StatHCFailedCmpXchg,        STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/CmpXchg",    STAMUNIT_OCCURENCES,    "The number of times CMPXCHG was not interpreted.");
    280     STAM_REG_USED(pVM, &pStats->StatGCFailedCmpXchg8b,      STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/CmpXchg8b",  STAMUNIT_OCCURENCES,    "The number of times CMPXCHG8B was not interpreted.");
    281     STAM_REG_USED(pVM, &pStats->StatHCFailedCmpXchg8b,      STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/CmpXchg8b",  STAMUNIT_OCCURENCES,    "The number of times CMPXCHG8B was not interpreted.");
    282     STAM_REG_USED(pVM, &pStats->StatGCFailedXAdd,           STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/XAdd",       STAMUNIT_OCCURENCES,    "The number of times XADD was not interpreted.");
    283     STAM_REG_USED(pVM, &pStats->StatHCFailedXAdd,           STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/XAdd",       STAMUNIT_OCCURENCES,    "The number of times XADD was not interpreted.");
    284     STAM_REG_USED(pVM, &pStats->StatGCFailedMovNTPS,        STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/MovNTPS",    STAMUNIT_OCCURENCES,    "The number of times MOVNTPS was not interpreted.");
    285     STAM_REG_USED(pVM, &pStats->StatHCFailedMovNTPS,        STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/MovNTPS",    STAMUNIT_OCCURENCES,    "The number of times MOVNTPS was not interpreted.");
    286     STAM_REG_USED(pVM, &pStats->StatGCFailedStosWD,         STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/StosWD",     STAMUNIT_OCCURENCES,    "The number of times STOSWD was not interpreted.");
    287     STAM_REG_USED(pVM, &pStats->StatHCFailedStosWD,         STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/StosWD",     STAMUNIT_OCCURENCES,    "The number of times STOSWD was not interpreted.");
    288     STAM_REG_USED(pVM, &pStats->StatGCFailedSub,            STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Sub",        STAMUNIT_OCCURENCES,    "The number of times SUB was not interpreted.");
    289     STAM_REG_USED(pVM, &pStats->StatHCFailedSub,            STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Sub",        STAMUNIT_OCCURENCES,    "The number of times SUB was not interpreted.");
    290     STAM_REG_USED(pVM, &pStats->StatGCFailedWbInvd,         STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/WbInvd",     STAMUNIT_OCCURENCES,    "The number of times WBINVD was not interpreted.");
    291     STAM_REG_USED(pVM, &pStats->StatHCFailedWbInvd,         STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/WbInvd",     STAMUNIT_OCCURENCES,    "The number of times WBINVD was not interpreted.");
    292 
    293     STAM_REG_USED(pVM, &pStats->StatGCFailedUserMode,       STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/UserMode",   STAMUNIT_OCCURENCES,    "The number of rejections because of CPL.");
    294     STAM_REG_USED(pVM, &pStats->StatHCFailedUserMode,       STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/UserMode",   STAMUNIT_OCCURENCES,    "The number of rejections because of CPL.");
    295     STAM_REG_USED(pVM, &pStats->StatGCFailedPrefix,         STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed/Prefix",     STAMUNIT_OCCURENCES,    "The number of rejections because of prefix .");
    296     STAM_REG_USED(pVM, &pStats->StatHCFailedPrefix,         STAMTYPE_COUNTER, "/EM/HC/Interpret/Failed/Prefix",     STAMUNIT_OCCURENCES,    "The number of rejections because of prefix .");
    297 
    298     STAM_REG_USED(pVM, &pStats->StatCli,                    STAMTYPE_COUNTER, "/EM/HC/PrivInst/Cli",                STAMUNIT_OCCURENCES,    "Number of cli instructions.");
    299     STAM_REG_USED(pVM, &pStats->StatSti,                    STAMTYPE_COUNTER, "/EM/HC/PrivInst/Sti",                STAMUNIT_OCCURENCES,    "Number of sli instructions.");
    300     STAM_REG_USED(pVM, &pStats->StatIn,                     STAMTYPE_COUNTER, "/EM/HC/PrivInst/In",                 STAMUNIT_OCCURENCES,    "Number of in instructions.");
    301     STAM_REG_USED(pVM, &pStats->StatOut,                    STAMTYPE_COUNTER, "/EM/HC/PrivInst/Out",                STAMUNIT_OCCURENCES,    "Number of out instructions.");
    302     STAM_REG_USED(pVM, &pStats->StatHlt,                    STAMTYPE_COUNTER, "/EM/HC/PrivInst/Hlt",                STAMUNIT_OCCURENCES,    "Number of hlt instructions not handled in GC because of PATM.");
    303     STAM_REG_USED(pVM, &pStats->StatInvlpg,                 STAMTYPE_COUNTER, "/EM/HC/PrivInst/Invlpg",             STAMUNIT_OCCURENCES,    "Number of invlpg instructions.");
    304     STAM_REG_USED(pVM, &pStats->StatMisc,                   STAMTYPE_COUNTER, "/EM/HC/PrivInst/Misc",               STAMUNIT_OCCURENCES,    "Number of misc. instructions.");
    305     STAM_REG_USED(pVM, &pStats->StatMovWriteCR[0],          STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov CR0, X",         STAMUNIT_OCCURENCES,    "Number of mov CR0 read instructions.");
    306     STAM_REG_USED(pVM, &pStats->StatMovWriteCR[1],          STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov CR1, X",         STAMUNIT_OCCURENCES,    "Number of mov CR1 read instructions.");
    307     STAM_REG_USED(pVM, &pStats->StatMovWriteCR[2],          STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov CR2, X",         STAMUNIT_OCCURENCES,    "Number of mov CR2 read instructions.");
    308     STAM_REG_USED(pVM, &pStats->StatMovWriteCR[3],          STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov CR3, X",         STAMUNIT_OCCURENCES,    "Number of mov CR3 read instructions.");
    309     STAM_REG_USED(pVM, &pStats->StatMovWriteCR[4],          STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov CR4, X",         STAMUNIT_OCCURENCES,    "Number of mov CR4 read instructions.");
    310     STAM_REG_USED(pVM, &pStats->StatMovReadCR[0],           STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov X, CR0",         STAMUNIT_OCCURENCES,    "Number of mov CR0 write instructions.");
    311     STAM_REG_USED(pVM, &pStats->StatMovReadCR[1],           STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov X, CR1",         STAMUNIT_OCCURENCES,    "Number of mov CR1 write instructions.");
    312     STAM_REG_USED(pVM, &pStats->StatMovReadCR[2],           STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov X, CR2",         STAMUNIT_OCCURENCES,    "Number of mov CR2 write instructions.");
    313     STAM_REG_USED(pVM, &pStats->StatMovReadCR[3],           STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov X, CR3",         STAMUNIT_OCCURENCES,    "Number of mov CR3 write instructions.");
    314     STAM_REG_USED(pVM, &pStats->StatMovReadCR[4],           STAMTYPE_COUNTER, "/EM/HC/PrivInst/Mov X, CR4",         STAMUNIT_OCCURENCES,    "Number of mov CR4 write instructions.");
    315     STAM_REG_USED(pVM, &pStats->StatMovDRx,                 STAMTYPE_COUNTER, "/EM/HC/PrivInst/MovDRx",             STAMUNIT_OCCURENCES,    "Number of mov DRx instructions.");
    316     STAM_REG_USED(pVM, &pStats->StatIret,                   STAMTYPE_COUNTER, "/EM/HC/PrivInst/Iret",               STAMUNIT_OCCURENCES,    "Number of iret instructions.");
    317     STAM_REG_USED(pVM, &pStats->StatMovLgdt,                STAMTYPE_COUNTER, "/EM/HC/PrivInst/Lgdt",               STAMUNIT_OCCURENCES,    "Number of lgdt instructions.");
    318     STAM_REG_USED(pVM, &pStats->StatMovLidt,                STAMTYPE_COUNTER, "/EM/HC/PrivInst/Lidt",               STAMUNIT_OCCURENCES,    "Number of lidt instructions.");
    319     STAM_REG_USED(pVM, &pStats->StatMovLldt,                STAMTYPE_COUNTER, "/EM/HC/PrivInst/Lldt",               STAMUNIT_OCCURENCES,    "Number of lldt instructions.");
    320     STAM_REG_USED(pVM, &pStats->StatSysEnter,               STAMTYPE_COUNTER, "/EM/HC/PrivInst/Sysenter",           STAMUNIT_OCCURENCES,    "Number of sysenter instructions.");
    321     STAM_REG_USED(pVM, &pStats->StatSysExit,                STAMTYPE_COUNTER, "/EM/HC/PrivInst/Sysexit",            STAMUNIT_OCCURENCES,    "Number of sysexit instructions.");
    322     STAM_REG_USED(pVM, &pStats->StatSysCall,                STAMTYPE_COUNTER, "/EM/HC/PrivInst/Syscall",            STAMUNIT_OCCURENCES,    "Number of syscall instructions.");
    323     STAM_REG_USED(pVM, &pStats->StatSysRet,                 STAMTYPE_COUNTER, "/EM/HC/PrivInst/Sysret",             STAMUNIT_OCCURENCES,    "Number of sysret instructions.");
     150    pVM->em.s.pStatsR3 = pStats;
     151    pVM->em.s.pStatsR0 = MMHyperR3ToR0(pVM, pStats);
     152    pVM->em.s.pStatsRC = MMHyperR3ToRC(pVM, pStats);
     153
     154    STAM_REG(pVM, &pStats->StatRZEmulate,               STAMTYPE_PROFILE, "/EM/RZ/Interpret",                   STAMUNIT_TICKS_PER_CALL, "Profiling of EMInterpretInstruction.");
     155    STAM_REG(pVM, &pStats->StatR3Emulate,               STAMTYPE_PROFILE, "/EM/R3/Interpret",                   STAMUNIT_TICKS_PER_CALL, "Profiling of EMInterpretInstruction.");
     156
     157    STAM_REG(pVM, &pStats->StatRZInterpretSucceeded,    STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success",           STAMUNIT_OCCURENCES,    "The number of times an instruction was successfully interpreted.");
     158    STAM_REG(pVM, &pStats->StatR3InterpretSucceeded,    STAMTYPE_COUNTER, "/EM/R3/Interpret/Success",           STAMUNIT_OCCURENCES,    "The number of times an instruction was successfully interpreted.");
     159
     160    STAM_REG_USED(pVM, &pStats->StatRZAnd,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/And",       STAMUNIT_OCCURENCES,    "The number of times AND was successfully interpreted.");
     161    STAM_REG_USED(pVM, &pStats->StatR3And,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/And",       STAMUNIT_OCCURENCES,    "The number of times AND was successfully interpreted.");
     162    STAM_REG_USED(pVM, &pStats->StatRZAdd,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Add",       STAMUNIT_OCCURENCES,    "The number of times ADD was successfully interpreted.");
     163    STAM_REG_USED(pVM, &pStats->StatR3Add,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Add",       STAMUNIT_OCCURENCES,    "The number of times ADD was successfully interpreted.");
     164    STAM_REG_USED(pVM, &pStats->StatRZAdc,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Adc",       STAMUNIT_OCCURENCES,    "The number of times ADC was successfully interpreted.");
     165    STAM_REG_USED(pVM, &pStats->StatR3Adc,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Adc",       STAMUNIT_OCCURENCES,    "The number of times ADC was successfully interpreted.");
     166    STAM_REG_USED(pVM, &pStats->StatRZSub,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Sub",       STAMUNIT_OCCURENCES,    "The number of times SUB was successfully interpreted.");
     167    STAM_REG_USED(pVM, &pStats->StatR3Sub,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Sub",       STAMUNIT_OCCURENCES,    "The number of times SUB was successfully interpreted.");
     168    STAM_REG_USED(pVM, &pStats->StatRZCpuId,                STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/CpuId",     STAMUNIT_OCCURENCES,    "The number of times CPUID was successfully interpreted.");
     169    STAM_REG_USED(pVM, &pStats->StatR3CpuId,                STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/CpuId",     STAMUNIT_OCCURENCES,    "The number of times CPUID was successfully interpreted.");
     170    STAM_REG_USED(pVM, &pStats->StatRZDec,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Dec",       STAMUNIT_OCCURENCES,    "The number of times DEC was successfully interpreted.");
     171    STAM_REG_USED(pVM, &pStats->StatR3Dec,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Dec",       STAMUNIT_OCCURENCES,    "The number of times DEC was successfully interpreted.");
     172    STAM_REG_USED(pVM, &pStats->StatRZHlt,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Hlt",       STAMUNIT_OCCURENCES,    "The number of times HLT was successfully interpreted.");
     173    STAM_REG_USED(pVM, &pStats->StatR3Hlt,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Hlt",       STAMUNIT_OCCURENCES,    "The number of times HLT was successfully interpreted.");
     174    STAM_REG_USED(pVM, &pStats->StatRZInc,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Inc",       STAMUNIT_OCCURENCES,    "The number of times INC was successfully interpreted.");
     175    STAM_REG_USED(pVM, &pStats->StatR3Inc,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Inc",       STAMUNIT_OCCURENCES,    "The number of times INC was successfully interpreted.");
     176    STAM_REG_USED(pVM, &pStats->StatRZInvlPg,               STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Invlpg",    STAMUNIT_OCCURENCES,    "The number of times INVLPG was successfully interpreted.");
     177    STAM_REG_USED(pVM, &pStats->StatR3InvlPg,               STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Invlpg",    STAMUNIT_OCCURENCES,    "The number of times INVLPG was successfully interpreted.");
     178    STAM_REG_USED(pVM, &pStats->StatRZIret,                 STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Iret",      STAMUNIT_OCCURENCES,    "The number of times IRET was successfully interpreted.");
     179    STAM_REG_USED(pVM, &pStats->StatR3Iret,                 STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Iret",      STAMUNIT_OCCURENCES,    "The number of times IRET was successfully interpreted.");
     180    STAM_REG_USED(pVM, &pStats->StatRZLLdt,                 STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/LLdt",      STAMUNIT_OCCURENCES,    "The number of times LLDT was successfully interpreted.");
     181    STAM_REG_USED(pVM, &pStats->StatR3LLdt,                 STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/LLdt",      STAMUNIT_OCCURENCES,    "The number of times LLDT was successfully interpreted.");
     182    STAM_REG_USED(pVM, &pStats->StatRZMov,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Mov",       STAMUNIT_OCCURENCES,    "The number of times MOV was successfully interpreted.");
     183    STAM_REG_USED(pVM, &pStats->StatR3Mov,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Mov",       STAMUNIT_OCCURENCES,    "The number of times MOV was successfully interpreted.");
     184    STAM_REG_USED(pVM, &pStats->StatRZMovCRx,               STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/MovCRx",    STAMUNIT_OCCURENCES,    "The number of times MOV CRx was successfully interpreted.");
     185    STAM_REG_USED(pVM, &pStats->StatR3MovCRx,               STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/MovCRx",    STAMUNIT_OCCURENCES,    "The number of times MOV CRx was successfully interpreted.");
     186    STAM_REG_USED(pVM, &pStats->StatRZMovDRx,               STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/MovDRx",    STAMUNIT_OCCURENCES,    "The number of times MOV DRx was successfully interpreted.");
     187    STAM_REG_USED(pVM, &pStats->StatR3MovDRx,               STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/MovDRx",    STAMUNIT_OCCURENCES,    "The number of times MOV DRx was successfully interpreted.");
     188    STAM_REG_USED(pVM, &pStats->StatRZOr,                   STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Or",        STAMUNIT_OCCURENCES,    "The number of times OR was successfully interpreted.");
     189    STAM_REG_USED(pVM, &pStats->StatR3Or,                   STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Or",        STAMUNIT_OCCURENCES,    "The number of times OR was successfully interpreted.");
     190    STAM_REG_USED(pVM, &pStats->StatRZPop,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Pop",       STAMUNIT_OCCURENCES,    "The number of times POP was successfully interpreted.");
     191    STAM_REG_USED(pVM, &pStats->StatR3Pop,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Pop",       STAMUNIT_OCCURENCES,    "The number of times POP was successfully interpreted.");
     192    STAM_REG_USED(pVM, &pStats->StatRZRdtsc,                STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Rdtsc",     STAMUNIT_OCCURENCES,    "The number of times RDTSC was successfully interpreted.");
     193    STAM_REG_USED(pVM, &pStats->StatR3Rdtsc,                STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Rdtsc",     STAMUNIT_OCCURENCES,    "The number of times RDTSC was successfully interpreted.");
     194    STAM_REG_USED(pVM, &pStats->StatRZSti,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Sti",       STAMUNIT_OCCURENCES,    "The number of times STI was successfully interpreted.");
     195    STAM_REG_USED(pVM, &pStats->StatR3Sti,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Sti",       STAMUNIT_OCCURENCES,    "The number of times STI was successfully interpreted.");
     196    STAM_REG_USED(pVM, &pStats->StatRZXchg,                 STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Xchg",      STAMUNIT_OCCURENCES,    "The number of times XCHG was successfully interpreted.");
     197    STAM_REG_USED(pVM, &pStats->StatR3Xchg,                 STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Xchg",      STAMUNIT_OCCURENCES,    "The number of times XCHG was successfully interpreted.");
     198    STAM_REG_USED(pVM, &pStats->StatRZXor,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Xor",       STAMUNIT_OCCURENCES,    "The number of times XOR was successfully interpreted.");
     199    STAM_REG_USED(pVM, &pStats->StatR3Xor,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Xor",       STAMUNIT_OCCURENCES,    "The number of times XOR was successfully interpreted.");
     200    STAM_REG_USED(pVM, &pStats->StatRZMonitor,              STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Monitor",   STAMUNIT_OCCURENCES,    "The number of times MONITOR was successfully interpreted.");
     201    STAM_REG_USED(pVM, &pStats->StatR3Monitor,              STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Monitor",   STAMUNIT_OCCURENCES,    "The number of times MONITOR was successfully interpreted.");
     202    STAM_REG_USED(pVM, &pStats->StatRZMWait,                STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/MWait",     STAMUNIT_OCCURENCES,    "The number of times MWAIT was successfully interpreted.");
     203    STAM_REG_USED(pVM, &pStats->StatR3MWait,                STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/MWait",     STAMUNIT_OCCURENCES,    "The number of times MWAIT was successfully interpreted.");
     204    STAM_REG_USED(pVM, &pStats->StatRZBtr,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Btr",       STAMUNIT_OCCURENCES,    "The number of times BTR was successfully interpreted.");
     205    STAM_REG_USED(pVM, &pStats->StatR3Btr,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Btr",       STAMUNIT_OCCURENCES,    "The number of times BTR was successfully interpreted.");
     206    STAM_REG_USED(pVM, &pStats->StatRZBts,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Bts",       STAMUNIT_OCCURENCES,    "The number of times BTS was successfully interpreted.");
     207    STAM_REG_USED(pVM, &pStats->StatR3Bts,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Bts",       STAMUNIT_OCCURENCES,    "The number of times BTS was successfully interpreted.");
     208    STAM_REG_USED(pVM, &pStats->StatRZBtc,                  STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Btc",       STAMUNIT_OCCURENCES,    "The number of times BTC was successfully interpreted.");
     209    STAM_REG_USED(pVM, &pStats->StatR3Btc,                  STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Btc",       STAMUNIT_OCCURENCES,    "The number of times BTC was successfully interpreted.");
     210    STAM_REG_USED(pVM, &pStats->StatRZCmpXchg,              STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/CmpXchg",   STAMUNIT_OCCURENCES,    "The number of times CMPXCHG was successfully interpreted.");
     211    STAM_REG_USED(pVM, &pStats->StatR3CmpXchg,              STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/CmpXchg",   STAMUNIT_OCCURENCES,    "The number of times CMPXCHG was successfully interpreted.");
     212    STAM_REG_USED(pVM, &pStats->StatRZCmpXchg8b,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/CmpXchg8b",   STAMUNIT_OCCURENCES,  "The number of times CMPXCHG8B was successfully interpreted.");
     213    STAM_REG_USED(pVM, &pStats->StatR3CmpXchg8b,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/CmpXchg8b",   STAMUNIT_OCCURENCES,  "The number of times CMPXCHG8B was successfully interpreted.");
     214    STAM_REG_USED(pVM, &pStats->StatRZXAdd,                 STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/XAdd",      STAMUNIT_OCCURENCES,    "The number of times XADD was successfully interpreted.");
     215    STAM_REG_USED(pVM, &pStats->StatR3XAdd,                 STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/XAdd",      STAMUNIT_OCCURENCES,    "The number of times XADD was successfully interpreted.");
     216    STAM_REG_USED(pVM, &pStats->StatR3Rdmsr,                STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Rdmsr",      STAMUNIT_OCCURENCES,   "The number of times RDMSR was not interpreted.");
     217    STAM_REG_USED(pVM, &pStats->StatRZRdmsr,                STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Rdmsr",      STAMUNIT_OCCURENCES,   "The number of times RDMSR was not interpreted.");
     218    STAM_REG_USED(pVM, &pStats->StatR3Wrmsr,                STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Wrmsr",      STAMUNIT_OCCURENCES,   "The number of times WRMSR was not interpreted.");
     219    STAM_REG_USED(pVM, &pStats->StatRZWrmsr,                STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Wrmsr",      STAMUNIT_OCCURENCES,   "The number of times WRMSR was not interpreted.");
     220    STAM_REG_USED(pVM, &pStats->StatR3StosWD,               STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Stoswd",     STAMUNIT_OCCURENCES,   "The number of times STOSWD was not interpreted.");
     221    STAM_REG_USED(pVM, &pStats->StatRZStosWD,               STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Stoswd",     STAMUNIT_OCCURENCES,   "The number of times STOSWD was not interpreted.");
     222
     223    STAM_REG(pVM, &pStats->StatRZInterpretFailed,           STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed",            STAMUNIT_OCCURENCES,    "The number of times an instruction was not interpreted.");
     224    STAM_REG(pVM, &pStats->StatR3InterpretFailed,           STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed",            STAMUNIT_OCCURENCES,    "The number of times an instruction was not interpreted.");
     225
     226    STAM_REG_USED(pVM, &pStats->StatRZFailedAnd,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/And",        STAMUNIT_OCCURENCES,    "The number of times AND was not interpreted.");
     227    STAM_REG_USED(pVM, &pStats->StatR3FailedAnd,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/And",        STAMUNIT_OCCURENCES,    "The number of times AND was not interpreted.");
     228    STAM_REG_USED(pVM, &pStats->StatRZFailedCpuId,          STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/CpuId",      STAMUNIT_OCCURENCES,    "The number of times CPUID was not interpreted.");
     229    STAM_REG_USED(pVM, &pStats->StatR3FailedCpuId,          STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/CpuId",      STAMUNIT_OCCURENCES,    "The number of times CPUID was not interpreted.");
     230    STAM_REG_USED(pVM, &pStats->StatRZFailedDec,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Dec",        STAMUNIT_OCCURENCES,    "The number of times DEC was not interpreted.");
     231    STAM_REG_USED(pVM, &pStats->StatR3FailedDec,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Dec",        STAMUNIT_OCCURENCES,    "The number of times DEC was not interpreted.");
     232    STAM_REG_USED(pVM, &pStats->StatRZFailedHlt,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Hlt",        STAMUNIT_OCCURENCES,    "The number of times HLT was not interpreted.");
     233    STAM_REG_USED(pVM, &pStats->StatR3FailedHlt,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Hlt",        STAMUNIT_OCCURENCES,    "The number of times HLT was not interpreted.");
     234    STAM_REG_USED(pVM, &pStats->StatRZFailedInc,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Inc",        STAMUNIT_OCCURENCES,    "The number of times INC was not interpreted.");
     235    STAM_REG_USED(pVM, &pStats->StatR3FailedInc,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Inc",        STAMUNIT_OCCURENCES,    "The number of times INC was not interpreted.");
     236    STAM_REG_USED(pVM, &pStats->StatRZFailedInvlPg,         STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/InvlPg",     STAMUNIT_OCCURENCES,    "The number of times INVLPG was not interpreted.");
     237    STAM_REG_USED(pVM, &pStats->StatR3FailedInvlPg,         STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/InvlPg",     STAMUNIT_OCCURENCES,    "The number of times INVLPG was not interpreted.");
     238    STAM_REG_USED(pVM, &pStats->StatRZFailedIret,           STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Iret",       STAMUNIT_OCCURENCES,    "The number of times IRET was not interpreted.");
     239    STAM_REG_USED(pVM, &pStats->StatR3FailedIret,           STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Iret",       STAMUNIT_OCCURENCES,    "The number of times IRET was not interpreted.");
     240    STAM_REG_USED(pVM, &pStats->StatRZFailedLLdt,           STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/LLdt",       STAMUNIT_OCCURENCES,    "The number of times LLDT was not interpreted.");
     241    STAM_REG_USED(pVM, &pStats->StatR3FailedLLdt,           STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/LLdt",       STAMUNIT_OCCURENCES,    "The number of times LLDT was not interpreted.");
     242    STAM_REG_USED(pVM, &pStats->StatRZFailedMov,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Mov",        STAMUNIT_OCCURENCES,    "The number of times MOV was not interpreted.");
     243    STAM_REG_USED(pVM, &pStats->StatR3FailedMov,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Mov",        STAMUNIT_OCCURENCES,    "The number of times MOV was not interpreted.");
     244    STAM_REG_USED(pVM, &pStats->StatRZFailedMovCRx,         STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/MovCRx",     STAMUNIT_OCCURENCES,    "The number of times MOV CRx was not interpreted.");
     245    STAM_REG_USED(pVM, &pStats->StatR3FailedMovCRx,         STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/MovCRx",     STAMUNIT_OCCURENCES,    "The number of times MOV CRx was not interpreted.");
     246    STAM_REG_USED(pVM, &pStats->StatRZFailedMovDRx,         STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/MovDRx",     STAMUNIT_OCCURENCES,    "The number of times MOV DRx was not interpreted.");
     247    STAM_REG_USED(pVM, &pStats->StatR3FailedMovDRx,         STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/MovDRx",     STAMUNIT_OCCURENCES,    "The number of times MOV DRx was not interpreted.");
     248    STAM_REG_USED(pVM, &pStats->StatRZFailedOr,             STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Or",         STAMUNIT_OCCURENCES,    "The number of times OR was not interpreted.");
     249    STAM_REG_USED(pVM, &pStats->StatR3FailedOr,             STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Or",         STAMUNIT_OCCURENCES,    "The number of times OR was not interpreted.");
     250    STAM_REG_USED(pVM, &pStats->StatRZFailedPop,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Pop",        STAMUNIT_OCCURENCES,    "The number of times POP was not interpreted.");
     251    STAM_REG_USED(pVM, &pStats->StatR3FailedPop,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Pop",        STAMUNIT_OCCURENCES,    "The number of times POP was not interpreted.");
     252    STAM_REG_USED(pVM, &pStats->StatRZFailedSti,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Sti",        STAMUNIT_OCCURENCES,    "The number of times STI was not interpreted.");
     253    STAM_REG_USED(pVM, &pStats->StatR3FailedSti,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Sti",        STAMUNIT_OCCURENCES,    "The number of times STI was not interpreted.");
     254    STAM_REG_USED(pVM, &pStats->StatRZFailedXchg,           STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Xchg",       STAMUNIT_OCCURENCES,    "The number of times XCHG was not interpreted.");
     255    STAM_REG_USED(pVM, &pStats->StatR3FailedXchg,           STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Xchg",       STAMUNIT_OCCURENCES,    "The number of times XCHG was not interpreted.");
     256    STAM_REG_USED(pVM, &pStats->StatRZFailedXor,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Xor",        STAMUNIT_OCCURENCES,    "The number of times XOR was not interpreted.");
     257    STAM_REG_USED(pVM, &pStats->StatR3FailedXor,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Xor",        STAMUNIT_OCCURENCES,    "The number of times XOR was not interpreted.");
     258    STAM_REG_USED(pVM, &pStats->StatRZFailedMonitor,        STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Monitor",    STAMUNIT_OCCURENCES,    "The number of times MONITOR was not interpreted.");
     259    STAM_REG_USED(pVM, &pStats->StatR3FailedMonitor,        STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Monitor",    STAMUNIT_OCCURENCES,    "The number of times MONITOR was not interpreted.");
     260    STAM_REG_USED(pVM, &pStats->StatRZFailedMWait,          STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/MWait",      STAMUNIT_OCCURENCES,    "The number of times MONITOR was not interpreted.");
     261    STAM_REG_USED(pVM, &pStats->StatR3FailedMWait,          STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/MWait",      STAMUNIT_OCCURENCES,    "The number of times MONITOR was not interpreted.");
     262    STAM_REG_USED(pVM, &pStats->StatRZFailedRdtsc,          STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Rdtsc",      STAMUNIT_OCCURENCES,    "The number of times RDTSC was not interpreted.");
     263    STAM_REG_USED(pVM, &pStats->StatR3FailedRdtsc,          STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Rdtsc",      STAMUNIT_OCCURENCES,    "The number of times RDTSC was not interpreted.");
     264    STAM_REG_USED(pVM, &pStats->StatRZFailedRdmsr,          STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Rdmsr",      STAMUNIT_OCCURENCES,    "The number of times RDMSR was not interpreted.");
     265    STAM_REG_USED(pVM, &pStats->StatR3FailedRdmsr,          STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Rdmsr",      STAMUNIT_OCCURENCES,    "The number of times RDMSR was not interpreted.");
     266    STAM_REG_USED(pVM, &pStats->StatRZFailedWrmsr,          STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Wrmsr",      STAMUNIT_OCCURENCES,    "The number of times WRMSR was not interpreted.");
     267    STAM_REG_USED(pVM, &pStats->StatR3FailedWrmsr,          STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Wrmsr",      STAMUNIT_OCCURENCES,    "The number of times WRMSR was not interpreted.");
     268
     269    STAM_REG_USED(pVM, &pStats->StatRZFailedMisc,           STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Misc",       STAMUNIT_OCCURENCES,    "The number of times some misc instruction was encountered.");
     270    STAM_REG_USED(pVM, &pStats->StatR3FailedMisc,           STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Misc",       STAMUNIT_OCCURENCES,    "The number of times some misc instruction was encountered.");
     271    STAM_REG_USED(pVM, &pStats->StatRZFailedAdd,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Add",        STAMUNIT_OCCURENCES,    "The number of times ADD was not interpreted.");
     272    STAM_REG_USED(pVM, &pStats->StatR3FailedAdd,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Add",        STAMUNIT_OCCURENCES,    "The number of times ADD was not interpreted.");
     273    STAM_REG_USED(pVM, &pStats->StatRZFailedAdc,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Adc",        STAMUNIT_OCCURENCES,    "The number of times ADC was not interpreted.");
     274    STAM_REG_USED(pVM, &pStats->StatR3FailedAdc,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Adc",        STAMUNIT_OCCURENCES,    "The number of times ADC was not interpreted.");
     275    STAM_REG_USED(pVM, &pStats->StatRZFailedBtr,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Btr",        STAMUNIT_OCCURENCES,    "The number of times BTR was not interpreted.");
     276    STAM_REG_USED(pVM, &pStats->StatR3FailedBtr,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Btr",        STAMUNIT_OCCURENCES,    "The number of times BTR was not interpreted.");
     277    STAM_REG_USED(pVM, &pStats->StatRZFailedBts,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Bts",        STAMUNIT_OCCURENCES,    "The number of times BTS was not interpreted.");
     278    STAM_REG_USED(pVM, &pStats->StatR3FailedBts,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Bts",        STAMUNIT_OCCURENCES,    "The number of times BTS was not interpreted.");
     279    STAM_REG_USED(pVM, &pStats->StatRZFailedBtc,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Btc",        STAMUNIT_OCCURENCES,    "The number of times BTC was not interpreted.");
     280    STAM_REG_USED(pVM, &pStats->StatR3FailedBtc,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Btc",        STAMUNIT_OCCURENCES,    "The number of times BTC was not interpreted.");
     281    STAM_REG_USED(pVM, &pStats->StatRZFailedCli,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Cli",        STAMUNIT_OCCURENCES,    "The number of times CLI was not interpreted.");
     282    STAM_REG_USED(pVM, &pStats->StatR3FailedCli,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Cli",        STAMUNIT_OCCURENCES,    "The number of times CLI was not interpreted.");
     283    STAM_REG_USED(pVM, &pStats->StatRZFailedCmpXchg,        STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/CmpXchg",    STAMUNIT_OCCURENCES,    "The number of times CMPXCHG was not interpreted.");
     284    STAM_REG_USED(pVM, &pStats->StatR3FailedCmpXchg,        STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/CmpXchg",    STAMUNIT_OCCURENCES,    "The number of times CMPXCHG was not interpreted.");
     285    STAM_REG_USED(pVM, &pStats->StatRZFailedCmpXchg8b,      STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/CmpXchg8b",  STAMUNIT_OCCURENCES,    "The number of times CMPXCHG8B was not interpreted.");
     286    STAM_REG_USED(pVM, &pStats->StatR3FailedCmpXchg8b,      STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/CmpXchg8b",  STAMUNIT_OCCURENCES,    "The number of times CMPXCHG8B was not interpreted.");
     287    STAM_REG_USED(pVM, &pStats->StatRZFailedXAdd,           STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/XAdd",       STAMUNIT_OCCURENCES,    "The number of times XADD was not interpreted.");
     288    STAM_REG_USED(pVM, &pStats->StatR3FailedXAdd,           STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/XAdd",       STAMUNIT_OCCURENCES,    "The number of times XADD was not interpreted.");
     289    STAM_REG_USED(pVM, &pStats->StatRZFailedMovNTPS,        STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/MovNTPS",    STAMUNIT_OCCURENCES,    "The number of times MOVNTPS was not interpreted.");
     290    STAM_REG_USED(pVM, &pStats->StatR3FailedMovNTPS,        STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/MovNTPS",    STAMUNIT_OCCURENCES,    "The number of times MOVNTPS was not interpreted.");
     291    STAM_REG_USED(pVM, &pStats->StatRZFailedStosWD,         STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/StosWD",     STAMUNIT_OCCURENCES,    "The number of times STOSWD was not interpreted.");
     292    STAM_REG_USED(pVM, &pStats->StatR3FailedStosWD,         STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/StosWD",     STAMUNIT_OCCURENCES,    "The number of times STOSWD was not interpreted.");
     293    STAM_REG_USED(pVM, &pStats->StatRZFailedSub,            STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Sub",        STAMUNIT_OCCURENCES,    "The number of times SUB was not interpreted.");
     294    STAM_REG_USED(pVM, &pStats->StatR3FailedSub,            STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Sub",        STAMUNIT_OCCURENCES,    "The number of times SUB was not interpreted.");
     295    STAM_REG_USED(pVM, &pStats->StatRZFailedWbInvd,         STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/WbInvd",     STAMUNIT_OCCURENCES,    "The number of times WBINVD was not interpreted.");
     296    STAM_REG_USED(pVM, &pStats->StatR3FailedWbInvd,         STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/WbInvd",     STAMUNIT_OCCURENCES,    "The number of times WBINVD was not interpreted.");
     297
     298    STAM_REG_USED(pVM, &pStats->StatRZFailedUserMode,       STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/UserMode",   STAMUNIT_OCCURENCES,    "The number of rejections because of CPL.");
     299    STAM_REG_USED(pVM, &pStats->StatR3FailedUserMode,       STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/UserMode",   STAMUNIT_OCCURENCES,    "The number of rejections because of CPL.");
     300    STAM_REG_USED(pVM, &pStats->StatRZFailedPrefix,         STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Prefix",     STAMUNIT_OCCURENCES,    "The number of rejections because of prefix .");
     301    STAM_REG_USED(pVM, &pStats->StatR3FailedPrefix,         STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Prefix",     STAMUNIT_OCCURENCES,    "The number of rejections because of prefix .");
     302
     303    STAM_REG_USED(pVM, &pStats->StatCli,                    STAMTYPE_COUNTER, "/EM/R3/PrivInst/Cli",                STAMUNIT_OCCURENCES,    "Number of cli instructions.");
     304    STAM_REG_USED(pVM, &pStats->StatSti,                    STAMTYPE_COUNTER, "/EM/R3/PrivInst/Sti",                STAMUNIT_OCCURENCES,    "Number of sli instructions.");
     305    STAM_REG_USED(pVM, &pStats->StatIn,                     STAMTYPE_COUNTER, "/EM/R3/PrivInst/In",                 STAMUNIT_OCCURENCES,    "Number of in instructions.");
     306    STAM_REG_USED(pVM, &pStats->StatOut,                    STAMTYPE_COUNTER, "/EM/R3/PrivInst/Out",                STAMUNIT_OCCURENCES,    "Number of out instructions.");
     307    STAM_REG_USED(pVM, &pStats->StatHlt,                    STAMTYPE_COUNTER, "/EM/R3/PrivInst/Hlt",                STAMUNIT_OCCURENCES,    "Number of hlt instructions not handled in GC because of PATM.");
     308    STAM_REG_USED(pVM, &pStats->StatInvlpg,                 STAMTYPE_COUNTER, "/EM/R3/PrivInst/Invlpg",             STAMUNIT_OCCURENCES,    "Number of invlpg instructions.");
     309    STAM_REG_USED(pVM, &pStats->StatMisc,                   STAMTYPE_COUNTER, "/EM/R3/PrivInst/Misc",               STAMUNIT_OCCURENCES,    "Number of misc. instructions.");
     310    STAM_REG_USED(pVM, &pStats->StatMovWriteCR[0],          STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR0, X",         STAMUNIT_OCCURENCES,    "Number of mov CR0 read instructions.");
     311    STAM_REG_USED(pVM, &pStats->StatMovWriteCR[1],          STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR1, X",         STAMUNIT_OCCURENCES,    "Number of mov CR1 read instructions.");
     312    STAM_REG_USED(pVM, &pStats->StatMovWriteCR[2],          STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR2, X",         STAMUNIT_OCCURENCES,    "Number of mov CR2 read instructions.");
     313    STAM_REG_USED(pVM, &pStats->StatMovWriteCR[3],          STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR3, X",         STAMUNIT_OCCURENCES,    "Number of mov CR3 read instructions.");
     314    STAM_REG_USED(pVM, &pStats->StatMovWriteCR[4],          STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR4, X",         STAMUNIT_OCCURENCES,    "Number of mov CR4 read instructions.");
     315    STAM_REG_USED(pVM, &pStats->StatMovReadCR[0],           STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR0",         STAMUNIT_OCCURENCES,    "Number of mov CR0 write instructions.");
     316    STAM_REG_USED(pVM, &pStats->StatMovReadCR[1],           STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR1",         STAMUNIT_OCCURENCES,    "Number of mov CR1 write instructions.");
     317    STAM_REG_USED(pVM, &pStats->StatMovReadCR[2],           STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR2",         STAMUNIT_OCCURENCES,    "Number of mov CR2 write instructions.");
     318    STAM_REG_USED(pVM, &pStats->StatMovReadCR[3],           STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR3",         STAMUNIT_OCCURENCES,    "Number of mov CR3 write instructions.");
     319    STAM_REG_USED(pVM, &pStats->StatMovReadCR[4],           STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR4",         STAMUNIT_OCCURENCES,    "Number of mov CR4 write instructions.");
     320    STAM_REG_USED(pVM, &pStats->StatMovDRx,                 STAMTYPE_COUNTER, "/EM/R3/PrivInst/MovDRx",             STAMUNIT_OCCURENCES,    "Number of mov DRx instructions.");
     321    STAM_REG_USED(pVM, &pStats->StatIret,                   STAMTYPE_COUNTER, "/EM/R3/PrivInst/Iret",               STAMUNIT_OCCURENCES,    "Number of iret instructions.");
     322    STAM_REG_USED(pVM, &pStats->StatMovLgdt,                STAMTYPE_COUNTER, "/EM/R3/PrivInst/Lgdt",               STAMUNIT_OCCURENCES,    "Number of lgdt instructions.");
     323    STAM_REG_USED(pVM, &pStats->StatMovLidt,                STAMTYPE_COUNTER, "/EM/R3/PrivInst/Lidt",               STAMUNIT_OCCURENCES,    "Number of lidt instructions.");
     324    STAM_REG_USED(pVM, &pStats->StatMovLldt,                STAMTYPE_COUNTER, "/EM/R3/PrivInst/Lldt",               STAMUNIT_OCCURENCES,    "Number of lldt instructions.");
     325    STAM_REG_USED(pVM, &pStats->StatSysEnter,               STAMTYPE_COUNTER, "/EM/R3/PrivInst/Sysenter",           STAMUNIT_OCCURENCES,    "Number of sysenter instructions.");
     326    STAM_REG_USED(pVM, &pStats->StatSysExit,                STAMTYPE_COUNTER, "/EM/R3/PrivInst/Sysexit",            STAMUNIT_OCCURENCES,    "Number of sysexit instructions.");
     327    STAM_REG_USED(pVM, &pStats->StatSysCall,                STAMTYPE_COUNTER, "/EM/R3/PrivInst/Syscall",            STAMUNIT_OCCURENCES,    "Number of syscall instructions.");
     328    STAM_REG_USED(pVM, &pStats->StatSysRet,                 STAMTYPE_COUNTER, "/EM/R3/PrivInst/Sysret",             STAMUNIT_OCCURENCES,    "Number of sysret instructions.");
    324329
    325330    STAM_REG(pVM, &pVM->em.s.StatTotalClis,             STAMTYPE_COUNTER, "/EM/Cli/Total",              STAMUNIT_OCCURENCES,     "Total number of cli instructions executed.");
     
    327332#endif /* VBOX_WITH_STATISTICS */
    328333
    329 /* these should be considered for release statistics. */
    330     STAM_REG(pVM, &pVM->em.s.StatForcedActions,         STAMTYPE_PROFILE, "/PROF/EM/ForcedActions",     STAMUNIT_TICKS_PER_CALL, "Profiling forced action execution.");
     334    /* these should be considered for release statistics. */
     335    STAM_REL_REG(pVM, &pVM->em.s.StatForcedActions,     STAMTYPE_PROFILE, "/PROF/EM/ForcedActions",     STAMUNIT_TICKS_PER_CALL, "Profiling forced action execution.");
     336    STAM_REG(pVM, &pVM->em.s.StatIOEmu,                 STAMTYPE_PROFILE, "/PROF/EM/Emulation/IO",      STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawExecuteIOInstruction.");
     337    STAM_REG(pVM, &pVM->em.s.StatPrivEmu,               STAMTYPE_PROFILE, "/PROF/EM/Emulation/Priv",    STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawPrivileged.");
     338    STAM_REG(pVM, &pVM->em.s.StatMiscEmu,               STAMTYPE_PROFILE, "/PROF/EM/Emulation/Misc",    STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawExecuteInstruction.");
     339
    331340    STAM_REL_REG(pVM, &pVM->em.s.StatHalted,            STAMTYPE_PROFILE, "/PROF/EM/Halted",            STAMUNIT_TICKS_PER_CALL, "Profiling halted state (VMR3WaitHalted).");
    332341    STAM_REG(pVM, &pVM->em.s.StatHwAccEntry,            STAMTYPE_PROFILE, "/PROF/EM/HwAccEnter",        STAMUNIT_TICKS_PER_CALL, "Profiling Hardware Accelerated Mode entry overhead.");
    333342    STAM_REG(pVM, &pVM->em.s.StatHwAccExec,             STAMTYPE_PROFILE, "/PROF/EM/HwAccExec",         STAMUNIT_TICKS_PER_CALL, "Profiling Hardware Accelerated Mode execution.");
    334     STAM_REG(pVM, &pVM->em.s.StatIOEmu,                 STAMTYPE_PROFILE, "/PROF/EM/Emulation/IO",      STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawExecuteIOInstruction.");
    335     STAM_REG(pVM, &pVM->em.s.StatPrivEmu,               STAMTYPE_PROFILE, "/PROF/EM/Emulation/Priv",    STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawPrivileged.");
    336     STAM_REG(pVM, &pVM->em.s.StatMiscEmu,               STAMTYPE_PROFILE, "/PROF/EM/Emulation/Misc",    STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawExecuteInstruction.");
    337343    STAM_REG(pVM, &pVM->em.s.StatREMEmu,                STAMTYPE_PROFILE, "/PROF/EM/REMEmuSingle",      STAMUNIT_TICKS_PER_CALL, "Profiling single instruction REM execution.");
    338344    STAM_REG(pVM, &pVM->em.s.StatREMExec,               STAMTYPE_PROFILE, "/PROF/EM/REMExec",           STAMUNIT_TICKS_PER_CALL, "Profiling REM execution.");
    339345    STAM_REG(pVM, &pVM->em.s.StatREMSync,               STAMTYPE_PROFILE, "/PROF/EM/REMSync",           STAMUNIT_TICKS_PER_CALL, "Profiling REM context syncing.");
    340     STAM_REG(pVM, &pVM->em.s.StatREMTotal,              STAMTYPE_PROFILE, "/PROF/EM/REMTotal",          STAMUNIT_TICKS_PER_CALL, "Profiling emR3RemExecute (excluding FFs).");
     346    STAM_REL_REG(pVM, &pVM->em.s.StatREMTotal,          STAMTYPE_PROFILE, "/PROF/EM/REMTotal",          STAMUNIT_TICKS_PER_CALL, "Profiling emR3RemExecute (excluding FFs).");
    341347    STAM_REG(pVM, &pVM->em.s.StatRAWEntry,              STAMTYPE_PROFILE, "/PROF/EM/RAWEnter",          STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode entry overhead.");
    342348    STAM_REG(pVM, &pVM->em.s.StatRAWExec,               STAMTYPE_PROFILE, "/PROF/EM/RAWExec",           STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode execution.");
    343349    STAM_REG(pVM, &pVM->em.s.StatRAWTail,               STAMTYPE_PROFILE, "/PROF/EM/RAWTail",           STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode tail overhead.");
    344     STAM_REG(pVM, &pVM->em.s.StatRAWTotal,              STAMTYPE_PROFILE, "/PROF/EM/RAWTotal",          STAMUNIT_TICKS_PER_CALL, "Profiling emR3RawExecute (excluding FFs).");
     350    STAM_REL_REG(pVM, &pVM->em.s.StatRAWTotal,          STAMTYPE_PROFILE, "/PROF/EM/RAWTotal",          STAMUNIT_TICKS_PER_CALL, "Profiling emR3RawExecute (excluding FFs).");
    345351    STAM_REL_REG(pVM, &pVM->em.s.StatTotal,         STAMTYPE_PROFILE_ADV, "/PROF/EM/Total",             STAMUNIT_TICKS_PER_CALL, "Profiling EMR3ExecuteVM.");
    346352
     
    348354    return VINF_SUCCESS;
    349355}
    350 
    351356
    352357
     
    361366{
    362367    LogFlow(("EMR3Relocate\n"));
    363     if (pVM->em.s.pStatsHC)
    364         pVM->em.s.pStatsGC = MMHyperHC2GC(pVM, pVM->em.s.pStatsHC);
     368    if (pVM->em.s.pStatsR3)
     369        pVM->em.s.pStatsRC = MMHyperR3ToRC(pVM, pVM->em.s.pStatsR3);
    365370}
    366371
     
    434439        pVM->em.s.fForceRAW = false;
    435440
    436     Assert(pVM->em.s.pCliStatTree == 0);
     441    Assert(!pVM->em.s.pCliStatTree);
    437442    return rc;
    438443}
     
    455460    {
    456461        case EMRAW_NONE:
    457             pVM->fRawR3Enabled    = false;
    458             pVM->fRawR0Enabled    = false;
     462            pVM->fRawR3Enabled = false;
     463            pVM->fRawR0Enabled = false;
    459464            break;
    460465        case EMRAW_RING3_ENABLE:
     
    474479            return VERR_INVALID_PARAMETER;
    475480    }
    476     Log(("EMR3SetRawMode: fRawR3Enabled=%RTbool fRawR0Enabled=%RTbool pVM->fRawR3Enabled=%RTbool\n",
    477           pVM->fRawR3Enabled, pVM->fRawR0Enabled, pVM->fRawR3Enabled));
     481    Log(("EMR3SetRawMode: fRawR3Enabled=%RTbool fRawR0Enabled=%RTbool\n",
     482          pVM->fRawR3Enabled, pVM->fRawR0Enabled));
    478483    return pVM->em.s.enmState == EMSTATE_RAW ? VINF_EM_RESCHEDULE : VINF_SUCCESS;
    479484}
     
    734739}
    735740
     741
    736742/**
    737743 * Executes recompiled code.
     
    759765        Log(("EMR%d: %08X ESP=%08X IF=%d CR0=%x\n", cpl, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0));
    760766#endif
    761     STAM_PROFILE_ADV_START(&pVM->em.s.StatREMTotal, a);
     767    STAM_REL_PROFILE_ADV_START(&pVM->em.s.StatREMTotal, a);
    762768
    763769#if defined(VBOX_STRICT) && defined(DEBUG_bird)
     
    852858                fInREMState = false;
    853859            }
    854             STAM_PROFILE_ADV_SUSPEND(&pVM->em.s.StatREMTotal, a);
     860            STAM_REL_PROFILE_ADV_SUSPEND(&pVM->em.s.StatREMTotal, a);
    855861            rc = emR3ForcedActions(pVM, rc);
    856             STAM_PROFILE_ADV_RESUME(&pVM->em.s.StatREMTotal, a);
     862            STAM_REL_PROFILE_ADV_RESUME(&pVM->em.s.StatREMTotal, a);
    857863            if (    rc != VINF_SUCCESS
    858864                &&  rc != VINF_EM_RESCHEDULE_REM)
     
    876882    }
    877883
    878     STAM_PROFILE_ADV_STOP(&pVM->em.s.StatREMTotal, a);
     884    STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatREMTotal, a);
    879885    return rc;
    880886}
     
    10581064
    10591065    Log(("Single step BEGIN:\n"));
    1060     for(uint32_t i=0;i<cIterations;i++)
     1066    for (uint32_t i = 0; i < cIterations; i++)
    10611067    {
    10621068        DBGFR3PrgStep(pVM);
     
    10771083
    10781084    Log(("Single step BEGIN:\n"));
    1079     for(uint32_t i=0;i<cIterations;i++)
     1085    for (uint32_t i = 0; i < cIterations; i++)
    10801086    {
    10811087        DBGFR3PrgStep(pVM);
     
    10961102
    10971103    Log(("Single step BEGIN:\n"));
    1098     for(uint32_t i=0;i<cIterations;i++)
     1104    for (uint32_t i = 0; i < cIterations; i++)
    10991105    {
    11001106        DBGFR3PrgStep(pVM);
     
    12561262        }
    12571263    }
    1258 #endif
     1264#endif /* 0 */
    12591265    STAM_PROFILE_START(&pVM->em.s.StatREMEmu, a);
    12601266    rc = REMR3EmulateInstruction(pVM);
     
    13121318                case OP_IN:
    13131319                {
    1314                     STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->StatIn);
     1320                    STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatIn);
    13151321                    rc = IOMInterpretIN(pVM, CPUMCTX2CORE(pCtx), &Cpu);
    13161322                    break;
     
    13191325                case OP_OUT:
    13201326                {
    1321                     STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->StatOut);
     1327                    STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatOut);
    13221328                    rc = IOMInterpretOUT(pVM, CPUMCTX2CORE(pCtx), &Cpu);
    13231329                    break;
     
    13321338                case OP_INSWD:
    13331339                {
    1334                     STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->StatIn);
     1340                    STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatIn);
    13351341                    rc = IOMInterpretINS(pVM, CPUMCTX2CORE(pCtx), &Cpu);
    13361342                    break;
     
    13401346                case OP_OUTSWD:
    13411347                {
    1342                     STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->StatOut);
     1348                    STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatOut);
    13431349                    rc = IOMInterpretOUTS(pVM, CPUMCTX2CORE(pCtx), &Cpu);
    13441350                    break;
     
    13921398     */
    13931399    uint8_t         u8TrapNo;
    1394     TRPMEVENT       enmType;;
     1400    TRPMEVENT       enmType;
    13951401    RTGCUINT        uErrorCode;
    13961402    RTGCUINTPTR     uCR2;
     
    15271533        {
    15281534            case OP_SYSENTER:
    1529                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->StatSysEnter);
     1535                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysEnter);
    15301536                break;
    15311537            case OP_SYSEXIT:
    1532                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->StatSysExit);
     1538                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysExit);
    15331539                break;
    15341540            case OP_SYSCALL:
    1535                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->StatSysCall);
     1541                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysCall);
    15361542                break;
    15371543            case OP_SYSRET:
    1538                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->StatSysRet);
     1544                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysRet);
    15391545                break;
    15401546        }
     
    15721578        uErrorCode = 0;
    15731579    }
    1574     else
    1575     if (gcret == VINF_PATM_PATCH_TRAP_GP)
     1580    else if (gcret == VINF_PATM_PATCH_TRAP_GP)
    15761581    {
    15771582        /* No active trap in this case. Kind of ugly. */
     
    16451650            }
    16461651        }
    1647 #endif
     1652#endif /* LOG_ENABLED */
    16481653        Log(("emR3PatchTrap: in patch: eip=%08x: trap=%02x err=%08x cr2=%08x cr0=%08x\n",
    16491654             pCtx->eip, u8TrapNo, uErrorCode, uCR2, (uint32_t)pCtx->cr0));
     
    17951800    {
    17961801#ifdef VBOX_WITH_STATISTICS
    1797         PEMSTATS pStats = pVM->em.s.CTXSUFF(pStats);
     1802        PEMSTATS pStats = pVM->em.s.CTX_SUFF(pStats);
    17981803        switch (Cpu.pCurInstr->opcode)
    17991804        {
     
    18691874                break;
    18701875        }
    1871 #endif
     1876#endif /* VBOX_WITH_STATISTICS */
    18721877        if (    (pCtx->ss & X86_SEL_RPL) == 0
    18731878            &&  !pCtx->eflags.Bits.u1VM
     
    23122317}
    23132318
     2319
    23142320/**
    23152321 * Check for pending raw actions
     
    24282434static int emR3RawExecute(PVM pVM, bool *pfFFDone)
    24292435{
    2430     STAM_PROFILE_ADV_START(&pVM->em.s.StatRAWTotal, a);
     2436    STAM_REL_PROFILE_ADV_START(&pVM->em.s.StatRAWTotal, a);
    24312437
    24322438    int      rc = VERR_INTERNAL_ERROR;
     
    25292535        LogFlow(("RR0-E: %08X ESP=%08X IF=%d VMFlags=%x PIF=%d CPL=%d\n", pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, pGCState->uVMFlags, pGCState->fPIF, (pCtx->ss & X86_SEL_RPL)));
    25302536        LogFlow(("VMMR3RawRunGC returned %Vrc\n", rc));
     2537
     2538
    25312539
    25322540        /*
     
    26052613            Assert(pCtx->eflags.Bits.u1VM || (pCtx->ss & X86_SEL_RPL) != 1);
    26062614
    2607             STAM_PROFILE_ADV_SUSPEND(&pVM->em.s.StatRAWTotal, a);
     2615            STAM_REL_PROFILE_ADV_SUSPEND(&pVM->em.s.StatRAWTotal, a);
    26082616            rc = emR3ForcedActions(pVM, rc);
    2609             STAM_PROFILE_ADV_RESUME(&pVM->em.s.StatRAWTotal, a);
     2617            STAM_REL_PROFILE_ADV_RESUME(&pVM->em.s.StatRAWTotal, a);
    26102618            if (    rc != VINF_SUCCESS
    26112619                &&  rc != VINF_EM_RESCHEDULE_RAW)
     
    26272635    RTLogFlush(NULL);
    26282636#endif
    2629     STAM_PROFILE_ADV_STOP(&pVM->em.s.StatRAWTotal, a);
     2637    STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatRAWTotal, a);
    26302638    return rc;
    26312639}
     
    26782686
    26792687#ifdef LOG_ENABLED
    2680         uint8_t u8Vector;
    2681 
    2682         rc = TRPMQueryTrapAll(pVM, &u8Vector, 0, 0, 0);
    2683         if (rc == VINF_SUCCESS)
    2684         {
    2685             Log(("Pending hardware interrupt=0x%x ) cs:eip=%04X:%VGv\n", u8Vector, pCtx->cs, pCtx->rip));
    2686         }
    26872688        /*
    26882689         * Log important stuff before entering GC.
    26892690         */
     2691        if (TRPMHasTrap(pVM))
     2692            Log(("Pending hardware interrupt=0x%x cs:eip=%04X:%VGv\n", TRPMGetTrapNo(pVM), pCtx->cs, pCtx->rip));
     2693
    26902694        uint32_t cpl = CPUMGetGuestCPL(pVM, CPUMCTX2CORE(pCtx));
    2691 
    26922695        if (pCtx->eflags.Bits.u1VM)
    26932696            Log(("HWV86: %08X IF=%d\n", pCtx->eip, pCtx->eflags.Bits.u1IF));
    2694         else
    2695         if (CPUMIsGuestIn64BitCode(pVM, CPUMCTX2CORE(pCtx)))
     2697        else if (CPUMIsGuestIn64BitCode(pVM, CPUMCTX2CORE(pCtx)))
    26962698            Log(("HWR%d: %04X:%VGv ESP=%VGv IF=%d CR0=%x CR4=%x EFER=%x\n", cpl, pCtx->cs, pCtx->rip, pCtx->rsp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0, (uint32_t)pCtx->cr4, (uint32_t)pCtx->msrEFER));
    26972699        else
    26982700            Log(("HWR%d: %04X:%08X ESP=%08X IF=%d CR0=%x CR4=%x EFER=%x\n", cpl, pCtx->cs, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0, (uint32_t)pCtx->cr4, (uint32_t)pCtx->msrEFER));
    2699 #endif
     2701#endif /* LOG_ENABLED */
    27002702
    27012703        /*
     
    27602762 * @param   pCtx    The CPU context.
    27612763 */
    2762 inline EMSTATE emR3Reschedule(PVM pVM, PCPUMCTX pCtx)
     2764DECLINLINE(EMSTATE) emR3Reschedule(PVM pVM, PCPUMCTX pCtx)
    27632765{
    27642766    /*
     
    27822784            return EMSTATE_HWACC;
    27832785
    2784         /** @note Raw mode and hw accelerated mode are incompatible. The latter turns off monitoring features essential for raw mode! */
     2786        /* Note: Raw mode and hw accelerated mode are incompatible. The latter turns
     2787         * off monitoring features essential for raw mode! */
    27852788        return EMSTATE_REM;
    27862789    }
    27872790
    2788     /* Standard raw-mode:
     2791    /*
     2792     * Standard raw-mode:
    27892793     *
    27902794     * Here we only support 16 & 32 bits protected mode ring 3 code that has no IO privileges
     
    29382942static int emR3ForcedActions(PVM pVM, int rc)
    29392943{
     2944    STAM_REL_PROFILE_START(&pVM->em.s.StatForcedActions, a);
    29402945#ifdef VBOX_STRICT
    29412946    int rcIrq = VINF_SUCCESS;
    29422947#endif
    2943     STAM_PROFILE_START(&pVM->em.s.StatForcedActions, a);
    2944 
     2948    int rc2;
    29452949#define UPDATE_RC() \
    2946     do { \
    2947         AssertMsg(rc2 <= 0 || (rc2 >= VINF_EM_FIRST && rc2 <= VINF_EM_LAST), ("Invalid FF return code: %Vra\n", rc2)); \
    2948         if (rc2 == VINF_SUCCESS || rc < VINF_SUCCESS) \
    2949             break; \
    2950         if (!rc || rc2 < rc) \
    2951             rc = rc2; \
    2952     } while (0)
    2953 
    2954     int rc2;
     2950        do { \
     2951            AssertMsg(rc2 <= 0 || (rc2 >= VINF_EM_FIRST && rc2 <= VINF_EM_LAST), ("Invalid FF return code: %Vra\n", rc2)); \
     2952            if (rc2 == VINF_SUCCESS || rc < VINF_SUCCESS) \
     2953                break; \
     2954            if (!rc || rc2 < rc) \
     2955                rc = rc2; \
     2956        } while (0)
    29552957
    29562958    /*
     
    29652967        {
    29662968            Log2(("emR3ForcedActions: returns VINF_EM_TERMINATE\n"));
    2967             STAM_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
     2969            STAM_REL_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
    29682970            return VINF_EM_TERMINATE;
    29692971        }
     
    30333035            {
    30343036                Log2(("emR3ForcedActions: returns %Vrc\n", rc2));
    3035                 STAM_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
     3037                STAM_REL_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
    30363038                return rc2;
    30373039            }
     
    30493051    /*
    30503052     * Execute polling function ever so often.
    3051      * THIS IS A HACK, IT WILL BE *REPLACED* BY PROPER ASYNC NETWORKING SOON!
     3053     * THIS IS A HACK, IT WILL BE *REPLACED* BY PROPER ASYNC NETWORKING "SOON"!
    30523054     */
    30533055    static unsigned cLast = 0;
     
    31413143        {
    31423144            Log2(("emR3ForcedActions: returns VINF_EM_TERMINATE\n"));
    3143             STAM_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
     3145            STAM_REL_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
    31443146            return VINF_EM_TERMINATE;
    31453147        }
     
    31633165#undef UPDATE_RC
    31643166    Log2(("emR3ForcedActions: returns %Vrc\n", rc));
    3165     STAM_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
     3167    STAM_REL_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
    31663168    Assert(rcIrq == VINF_SUCCESS || rcIrq == rc);
    31673169    return rc;
  • trunk/src/VBox/VMM/EMInternal.h

    r12305 r12688  
    4949
    5050/**
    51  * Converts a EM pointer into a VM pointer.
    52  * @returns Pointer to the VM structure the EM is part of.
    53  * @param   pEM   Pointer to EM instance data.
    54  */
    55 #define EM2VM(pEM)  ( (PVM)((char*)pEM - pEM->offVM) )
    56 
    57 /**
    5851 * Cli node structure
    5952 */
     
    7366{
    7467    /** GC: Profiling of EMInterpretInstruction(). */
    75     STAMPROFILE             StatGCEmulate;
     68    STAMPROFILE             StatRZEmulate;
    7669    /** HC: Profiling of EMInterpretInstruction(). */
    77     STAMPROFILE             StatHCEmulate;
     70    STAMPROFILE             StatR3Emulate;
    7871
    7972    /** @name Interpreter Instruction statistics.
    8073     * @{
    8174     */
    82     STAMCOUNTER             StatGCInterpretSucceeded;
    83     STAMCOUNTER             StatHCInterpretSucceeded;
    84 
    85     STAMCOUNTER             StatGCAnd;
    86     STAMCOUNTER             StatHCAnd;
    87     STAMCOUNTER             StatGCCpuId;
    88     STAMCOUNTER             StatHCCpuId;
    89     STAMCOUNTER             StatGCDec;
    90     STAMCOUNTER             StatHCDec;
    91     STAMCOUNTER             StatGCHlt;
    92     STAMCOUNTER             StatHCHlt;
    93     STAMCOUNTER             StatGCInc;
    94     STAMCOUNTER             StatHCInc;
    95     STAMCOUNTER             StatGCInvlPg;
    96     STAMCOUNTER             StatHCInvlPg;
    97     STAMCOUNTER             StatGCIret;
    98     STAMCOUNTER             StatHCIret;
    99     STAMCOUNTER             StatGCLLdt;
    100     STAMCOUNTER             StatHCLLdt;
    101     STAMCOUNTER             StatGCMov;
    102     STAMCOUNTER             StatHCMov;
    103     STAMCOUNTER             StatGCMovCRx;
    104     STAMCOUNTER             StatHCMovCRx;
    105     STAMCOUNTER             StatGCMovDRx;
    106     STAMCOUNTER             StatHCMovDRx;
    107     STAMCOUNTER             StatGCOr;
    108     STAMCOUNTER             StatHCOr;
    109     STAMCOUNTER             StatGCPop;
    110     STAMCOUNTER             StatHCPop;
    111     STAMCOUNTER             StatGCSti;
    112     STAMCOUNTER             StatHCSti;
    113     STAMCOUNTER             StatGCXchg;
    114     STAMCOUNTER             StatHCXchg;
    115     STAMCOUNTER             StatGCXor;
    116     STAMCOUNTER             StatHCXor;
    117     STAMCOUNTER             StatGCMonitor;
    118     STAMCOUNTER             StatHCMonitor;
    119     STAMCOUNTER             StatGCMWait;
    120     STAMCOUNTER             StatHCMWait;
    121     STAMCOUNTER             StatGCAdd;
    122     STAMCOUNTER             StatHCAdd;
    123     STAMCOUNTER             StatGCSub;
    124     STAMCOUNTER             StatHCSub;
    125     STAMCOUNTER             StatGCAdc;
    126     STAMCOUNTER             StatHCAdc;
    127     STAMCOUNTER             StatGCRdtsc;
    128     STAMCOUNTER             StatHCRdtsc;
    129     STAMCOUNTER             StatGCBtr;
    130     STAMCOUNTER             StatHCBtr;
    131     STAMCOUNTER             StatGCBts;
    132     STAMCOUNTER             StatHCBts;
    133     STAMCOUNTER             StatGCBtc;
    134     STAMCOUNTER             StatHCBtc;
    135     STAMCOUNTER             StatGCCmpXchg;
    136     STAMCOUNTER             StatHCCmpXchg;
    137     STAMCOUNTER             StatGCCmpXchg8b;
    138     STAMCOUNTER             StatHCCmpXchg8b;
    139     STAMCOUNTER             StatGCXAdd;
    140     STAMCOUNTER             StatHCXAdd;
    141     STAMCOUNTER             StatGCClts;
    142     STAMCOUNTER             StatHCClts;
    143     STAMCOUNTER             StatGCStosWD;
    144     STAMCOUNTER             StatHCStosWD;
    145     STAMCOUNTER             StatHCRdmsr;
    146     STAMCOUNTER             StatHCWrmsr;
    147     STAMCOUNTER             StatGCRdmsr;
    148     STAMCOUNTER             StatGCWrmsr;
    149 
    150     STAMCOUNTER             StatGCInterpretFailed;
    151     STAMCOUNTER             StatHCInterpretFailed;
    152 
    153     STAMCOUNTER             StatGCFailedAnd;
    154     STAMCOUNTER             StatHCFailedAnd;
    155     STAMCOUNTER             StatGCFailedCpuId;
    156     STAMCOUNTER             StatHCFailedCpuId;
    157     STAMCOUNTER             StatGCFailedDec;
    158     STAMCOUNTER             StatHCFailedDec;
    159     STAMCOUNTER             StatGCFailedHlt;
    160     STAMCOUNTER             StatHCFailedHlt;
    161     STAMCOUNTER             StatGCFailedInc;
    162     STAMCOUNTER             StatHCFailedInc;
    163     STAMCOUNTER             StatGCFailedInvlPg;
    164     STAMCOUNTER             StatHCFailedInvlPg;
    165     STAMCOUNTER             StatGCFailedIret;
    166     STAMCOUNTER             StatHCFailedIret;
    167     STAMCOUNTER             StatGCFailedLLdt;
    168     STAMCOUNTER             StatHCFailedLLdt;
    169     STAMCOUNTER             StatGCFailedMisc;
    170     STAMCOUNTER             StatHCFailedMisc;
    171     STAMCOUNTER             StatGCFailedMov;
    172     STAMCOUNTER             StatHCFailedMov;
    173     STAMCOUNTER             StatGCFailedMovCRx;
    174     STAMCOUNTER             StatHCFailedMovCRx;
    175     STAMCOUNTER             StatGCFailedMovDRx;
    176     STAMCOUNTER             StatHCFailedMovDRx;
    177     STAMCOUNTER             StatGCFailedOr;
    178     STAMCOUNTER             StatHCFailedOr;
    179     STAMCOUNTER             StatGCFailedPop;
    180     STAMCOUNTER             StatHCFailedPop;
    181     STAMCOUNTER             StatGCFailedSti;
    182     STAMCOUNTER             StatHCFailedSti;
    183     STAMCOUNTER             StatGCFailedXchg;
    184     STAMCOUNTER             StatHCFailedXchg;
    185     STAMCOUNTER             StatGCFailedXor;
    186     STAMCOUNTER             StatHCFailedXor;
    187     STAMCOUNTER             StatGCFailedMonitor;
    188     STAMCOUNTER             StatHCFailedMonitor;
    189     STAMCOUNTER             StatGCFailedMWait;
    190     STAMCOUNTER             StatHCFailedMWait;
    191     STAMCOUNTER             StatHCFailedRdmsr;
    192     STAMCOUNTER             StatHCFailedWrmsr;
    193     STAMCOUNTER             StatGCFailedRdmsr;
    194     STAMCOUNTER             StatGCFailedWrmsr;
    195 
    196     STAMCOUNTER             StatGCFailedAdd;
    197     STAMCOUNTER             StatHCFailedAdd;
    198     STAMCOUNTER             StatGCFailedAdc;
    199     STAMCOUNTER             StatHCFailedAdc;
    200     STAMCOUNTER             StatGCFailedBtr;
    201     STAMCOUNTER             StatHCFailedBtr;
    202     STAMCOUNTER             StatGCFailedBts;
    203     STAMCOUNTER             StatHCFailedBts;
    204     STAMCOUNTER             StatGCFailedBtc;
    205     STAMCOUNTER             StatHCFailedBtc;
    206     STAMCOUNTER             StatGCFailedCli;
    207     STAMCOUNTER             StatHCFailedCli;
    208     STAMCOUNTER             StatGCFailedCmpXchg;
    209     STAMCOUNTER             StatHCFailedCmpXchg;
    210     STAMCOUNTER             StatGCFailedCmpXchg8b;
    211     STAMCOUNTER             StatHCFailedCmpXchg8b;
    212     STAMCOUNTER             StatGCFailedXAdd;
    213     STAMCOUNTER             StatHCFailedXAdd;
    214     STAMCOUNTER             StatHCFailedMovNTPS;
    215     STAMCOUNTER             StatGCFailedMovNTPS;
    216     STAMCOUNTER             StatGCFailedStosWD;
    217     STAMCOUNTER             StatHCFailedStosWD;
    218     STAMCOUNTER             StatGCFailedSub;
    219     STAMCOUNTER             StatHCFailedSub;
    220     STAMCOUNTER             StatGCFailedWbInvd;
    221     STAMCOUNTER             StatHCFailedWbInvd;
    222     STAMCOUNTER             StatGCFailedRdtsc;
    223     STAMCOUNTER             StatHCFailedRdtsc;
    224     STAMCOUNTER             StatGCFailedClts;
    225     STAMCOUNTER             StatHCFailedClts;
    226 
    227     STAMCOUNTER             StatGCFailedUserMode;
    228     STAMCOUNTER             StatHCFailedUserMode;
    229     STAMCOUNTER             StatGCFailedPrefix;
    230     STAMCOUNTER             StatHCFailedPrefix;
     75    STAMCOUNTER             StatRZInterpretSucceeded;
     76    STAMCOUNTER             StatR3InterpretSucceeded;
     77
     78    STAMCOUNTER             StatRZAnd;
     79    STAMCOUNTER             StatR3And;
     80    STAMCOUNTER             StatRZCpuId;
     81    STAMCOUNTER             StatR3CpuId;
     82    STAMCOUNTER             StatRZDec;
     83    STAMCOUNTER             StatR3Dec;
     84    STAMCOUNTER             StatRZHlt;
     85    STAMCOUNTER             StatR3Hlt;
     86    STAMCOUNTER             StatRZInc;
     87    STAMCOUNTER             StatR3Inc;
     88    STAMCOUNTER             StatRZInvlPg;
     89    STAMCOUNTER             StatR3InvlPg;
     90    STAMCOUNTER             StatRZIret;
     91    STAMCOUNTER             StatR3Iret;
     92    STAMCOUNTER             StatRZLLdt;
     93    STAMCOUNTER             StatR3LLdt;
     94    STAMCOUNTER             StatRZMov;
     95    STAMCOUNTER             StatR3Mov;
     96    STAMCOUNTER             StatRZMovCRx;
     97    STAMCOUNTER             StatR3MovCRx;
     98    STAMCOUNTER             StatRZMovDRx;
     99    STAMCOUNTER             StatR3MovDRx;
     100    STAMCOUNTER             StatRZOr;
     101    STAMCOUNTER             StatR3Or;
     102    STAMCOUNTER             StatRZPop;
     103    STAMCOUNTER             StatR3Pop;
     104    STAMCOUNTER             StatRZSti;
     105    STAMCOUNTER             StatR3Sti;
     106    STAMCOUNTER             StatRZXchg;
     107    STAMCOUNTER             StatR3Xchg;
     108    STAMCOUNTER             StatRZXor;
     109    STAMCOUNTER             StatR3Xor;
     110    STAMCOUNTER             StatRZMonitor;
     111    STAMCOUNTER             StatR3Monitor;
     112    STAMCOUNTER             StatRZMWait;
     113    STAMCOUNTER             StatR3MWait;
     114    STAMCOUNTER             StatRZAdd;
     115    STAMCOUNTER             StatR3Add;
     116    STAMCOUNTER             StatRZSub;
     117    STAMCOUNTER             StatR3Sub;
     118    STAMCOUNTER             StatRZAdc;
     119    STAMCOUNTER             StatR3Adc;
     120    STAMCOUNTER             StatRZRdtsc;
     121    STAMCOUNTER             StatR3Rdtsc;
     122    STAMCOUNTER             StatRZBtr;
     123    STAMCOUNTER             StatR3Btr;
     124    STAMCOUNTER             StatRZBts;
     125    STAMCOUNTER             StatR3Bts;
     126    STAMCOUNTER             StatRZBtc;
     127    STAMCOUNTER             StatR3Btc;
     128    STAMCOUNTER             StatRZCmpXchg;
     129    STAMCOUNTER             StatR3CmpXchg;
     130    STAMCOUNTER             StatRZCmpXchg8b;
     131    STAMCOUNTER             StatR3CmpXchg8b;
     132    STAMCOUNTER             StatRZXAdd;
     133    STAMCOUNTER             StatR3XAdd;
     134    STAMCOUNTER             StatRZClts;
     135    STAMCOUNTER             StatR3Clts;
     136    STAMCOUNTER             StatRZStosWD;
     137    STAMCOUNTER             StatR3StosWD;
     138    STAMCOUNTER             StatR3Rdmsr;
     139    STAMCOUNTER             StatR3Wrmsr;
     140    STAMCOUNTER             StatRZRdmsr;
     141    STAMCOUNTER             StatRZWrmsr;
     142
     143    STAMCOUNTER             StatRZInterpretFailed;
     144    STAMCOUNTER             StatR3InterpretFailed;
     145
     146    STAMCOUNTER             StatRZFailedAnd;
     147    STAMCOUNTER             StatR3FailedAnd;
     148    STAMCOUNTER             StatRZFailedCpuId;
     149    STAMCOUNTER             StatR3FailedCpuId;
     150    STAMCOUNTER             StatRZFailedDec;
     151    STAMCOUNTER             StatR3FailedDec;
     152    STAMCOUNTER             StatRZFailedHlt;
     153    STAMCOUNTER             StatR3FailedHlt;
     154    STAMCOUNTER             StatRZFailedInc;
     155    STAMCOUNTER             StatR3FailedInc;
     156    STAMCOUNTER             StatRZFailedInvlPg;
     157    STAMCOUNTER             StatR3FailedInvlPg;
     158    STAMCOUNTER             StatRZFailedIret;
     159    STAMCOUNTER             StatR3FailedIret;
     160    STAMCOUNTER             StatRZFailedLLdt;
     161    STAMCOUNTER             StatR3FailedLLdt;
     162    STAMCOUNTER             StatRZFailedMisc;
     163    STAMCOUNTER             StatR3FailedMisc;
     164    STAMCOUNTER             StatRZFailedMov;
     165    STAMCOUNTER             StatR3FailedMov;
     166    STAMCOUNTER             StatRZFailedMovCRx;
     167    STAMCOUNTER             StatR3FailedMovCRx;
     168    STAMCOUNTER             StatRZFailedMovDRx;
     169    STAMCOUNTER             StatR3FailedMovDRx;
     170    STAMCOUNTER             StatRZFailedOr;
     171    STAMCOUNTER             StatR3FailedOr;
     172    STAMCOUNTER             StatRZFailedPop;
     173    STAMCOUNTER             StatR3FailedPop;
     174    STAMCOUNTER             StatRZFailedSti;
     175    STAMCOUNTER             StatR3FailedSti;
     176    STAMCOUNTER             StatRZFailedXchg;
     177    STAMCOUNTER             StatR3FailedXchg;
     178    STAMCOUNTER             StatRZFailedXor;
     179    STAMCOUNTER             StatR3FailedXor;
     180    STAMCOUNTER             StatRZFailedMonitor;
     181    STAMCOUNTER             StatR3FailedMonitor;
     182    STAMCOUNTER             StatRZFailedMWait;
     183    STAMCOUNTER             StatR3FailedMWait;
     184    STAMCOUNTER             StatR3FailedRdmsr;
     185    STAMCOUNTER             StatR3FailedWrmsr;
     186    STAMCOUNTER             StatRZFailedRdmsr;
     187    STAMCOUNTER             StatRZFailedWrmsr;
     188
     189    STAMCOUNTER             StatRZFailedAdd;
     190    STAMCOUNTER             StatR3FailedAdd;
     191    STAMCOUNTER             StatRZFailedAdc;
     192    STAMCOUNTER             StatR3FailedAdc;
     193    STAMCOUNTER             StatRZFailedBtr;
     194    STAMCOUNTER             StatR3FailedBtr;
     195    STAMCOUNTER             StatRZFailedBts;
     196    STAMCOUNTER             StatR3FailedBts;
     197    STAMCOUNTER             StatRZFailedBtc;
     198    STAMCOUNTER             StatR3FailedBtc;
     199    STAMCOUNTER             StatRZFailedCli;
     200    STAMCOUNTER             StatR3FailedCli;
     201    STAMCOUNTER             StatRZFailedCmpXchg;
     202    STAMCOUNTER             StatR3FailedCmpXchg;
     203    STAMCOUNTER             StatRZFailedCmpXchg8b;
     204    STAMCOUNTER             StatR3FailedCmpXchg8b;
     205    STAMCOUNTER             StatRZFailedXAdd;
     206    STAMCOUNTER             StatR3FailedXAdd;
     207    STAMCOUNTER             StatR3FailedMovNTPS;
     208    STAMCOUNTER             StatRZFailedMovNTPS;
     209    STAMCOUNTER             StatRZFailedStosWD;
     210    STAMCOUNTER             StatR3FailedStosWD;
     211    STAMCOUNTER             StatRZFailedSub;
     212    STAMCOUNTER             StatR3FailedSub;
     213    STAMCOUNTER             StatRZFailedWbInvd;
     214    STAMCOUNTER             StatR3FailedWbInvd;
     215    STAMCOUNTER             StatRZFailedRdtsc;
     216    STAMCOUNTER             StatR3FailedRdtsc;
     217    STAMCOUNTER             StatRZFailedClts;
     218    STAMCOUNTER             StatR3FailedClts;
     219
     220    STAMCOUNTER             StatRZFailedUserMode;
     221    STAMCOUNTER             StatR3FailedUserMode;
     222    STAMCOUNTER             StatRZFailedPrefix;
     223    STAMCOUNTER             StatR3FailedPrefix;
    231224    /** @} */
    232225
     
    253246    /** @} */
    254247
    255 } EMSTATS, *PEMSTATS;
     248} EMSTATS;
     249/** Pointer to the excessive EM statistics. */
     250typedef EMSTATS *PEMSTATS;
     251
     252
     253/**
     254 * Converts a EM pointer into a VM pointer.
     255 * @returns Pointer to the VM structure the EM is part of.
     256 * @param   pEM   Pointer to EM instance data.
     257 */
     258#define EM2VM(pEM)  ( (PVM)((char*)pEM - pEM->offVM) )
    256259
    257260/**
     
    266269
    267270    /** Execution Manager State. */
    268     volatile EMSTATE        enmState;
     271    EMSTATE volatile        enmState;
    269272    /** Force raw-mode execution.
    270273     * This is used to prevent REM from trying to execute patch code.
     
    286289
    287290
    288     /** Pointer to the PATM status structure. (HC Ptr) */
    289     R3R0PTRTYPE(PPATMGCSTATE) pPatmGCState;
    290 
    291     /** Pointer to the guest CPUM state. (HC Ptr) */
    292     R3R0PTRTYPE(PCPUMCTX)     pCtx;
     291    /** Pointer to the PATM status structure. (R3 Ptr) */
     292    R3PTRTYPE(PPATMGCSTATE) pPatmGCState;
     293
     294    /** Pointer to the guest CPUM state. (R3 Ptr) */
     295    R3PTRTYPE(PCPUMCTX)     pCtx;
    293296
    294297#if GC_ARCH_BITS == 64
    295     RTGCPTR                   aPadding1;
     298    RTGCPTR                 aPadding1;
    296299#endif
    297300
     
    325328    /** @} */
    326329
    327     /** HC: Profiling of emR3RawExecuteIOInstruction. */
     330    /** R3: Profiling of emR3RawExecuteIOInstruction. */
    328331    STAMPROFILE             StatIOEmu;
    329     /** HC: Profiling of emR3RawPrivileged. */
     332    /** R3: Profiling of emR3RawPrivileged. */
    330333    STAMPROFILE             StatPrivEmu;
    331     /** HC: Profiling of emR3RawExecuteInstruction. */
     334    /** R3: Profiling of emR3RawExecuteInstruction. */
    332335    STAMPROFILE             StatMiscEmu;
    333 
    334     /** @todo r=bird: Are any of these actually used? */
    335     STAMCOUNTER             StatPatchTrap;
    336     STAMCOUNTER             StatPatchInt3;
    337     STAMCOUNTER             StatPatchIF0;
    338     STAMCOUNTER             StatPatchEmulate;
    339     STAMCOUNTER             StatPageOutOfSync;
     336    /** R3: Number of time emR3HwAccExecute is called. */
    340337    STAMCOUNTER             StatHwAccExecuteEntry;
    341338
    342     /** More statistics (HC). */
    343     R3R0PTRTYPE(PEMSTATS)   pStatsHC;
    344     /** More statistics (GC). */
    345     RCPTRTYPE(PEMSTATS)     pStatsGC;
     339    /** More statistics (R3). */
     340    R3PTRTYPE(PEMSTATS)     pStatsR3;
     341    /** More statistics (R0). */
     342    R0PTRTYPE(PEMSTATS)     pStatsR0;
     343    /** More statistics (RC). */
     344    RCPTRTYPE(PEMSTATS)     pStatsRC;
    346345#if HC_ARCH_BITS == 64
    347346    RTRCPTR                 padding0;
     
    349348
    350349    /** Tree for keeping track of cli occurances (debug only). */
    351     R3PTRTYPE(PAVLPVNODECORE) pCliStatTree;
     350    R3PTRTYPE(PAVLPVNODECORE)   pCliStatTree;
    352351    STAMCOUNTER             StatTotalClis;
    353352#if 0
  • trunk/src/VBox/VMM/VMMAll/DBGFAll.cpp

    r11311 r12688  
    128128    return pVM->dbgf.s.fSingleSteppingRaw;
    129129}
     130
  • trunk/src/VBox/VMM/VMMAll/EMAll.cpp

    r12657 r12688  
    4949
    5050/*******************************************************************************
    51 *   Structures and Typedefs                                                    *
    52 *******************************************************************************/
    53 
    54 
    55 /*******************************************************************************
    5651*   Internal Functions                                                         *
    5752*******************************************************************************/
     
    5954
    6055
     56
    6157/**
    6258 * Get the current execution manager status.
     
    6965}
    7066
     67
    7168/**
    7269 * Flushes the REM translation blocks the next time we execute code there.
    7370 *
    7471 * @param   pVM         The VM handle.
     72 *
     73 * @todo    This doesn't belong here, it should go in REMAll.cpp!
    7574 */
    7675EMDECL(void) EMFlushREMTBs(PVM pVM)
     
    8180
    8281#ifndef IN_GC
     82
    8383/**
    8484 * Read callback for disassembly function; supports reading bytes that cross a page boundary
     
    9595    DISCPUSTATE  *pCpu     = (DISCPUSTATE *)pvUserdata;
    9696    PVM           pVM      = (PVM)pCpu->apvUserData[0];
    97 #ifdef IN_RING0
     97# ifdef IN_RING0
    9898    int rc = PGMPhysReadGCPtr(pVM, pDest, pSrc, cb);
    9999    AssertMsgRC(rc, ("PGMPhysReadGCPtr failed for pSrc=%VGv cb=%x\n", pSrc, cb));
    100 #else
     100# else /* IN_RING3 */
    101101    if (!PATMIsPatchGCAddr(pVM, pSrc))
    102102    {
     
    115115        }
    116116    }
    117 #endif /* IN_RING0 */
     117# endif /* IN_RING3 */
    118118    return VINF_SUCCESS;
    119119}
     
    124124}
    125125
    126 #else
     126#else /* IN_GC */
    127127
    128128DECLINLINE(int) emDisCoreOne(PVM pVM, DISCPUSTATE *pCpu, RTGCUINTPTR InstrGC, uint32_t *pOpsize)
     
    131131}
    132132
    133 #endif
     133#endif /* IN_GC */
    134134
    135135
     
    227227}
    228228
     229
    229230/**
    230231 * Interprets the current instruction using the supplied DISCPUSTATE structure.
     
    254255EMDECL(int) EMInterpretInstructionCPU(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    255256{
    256     STAM_PROFILE_START(&CTXMID(pVM->em.s.CTXSUFF(pStats)->Stat,Emulate), a);
     257    STAM_PROFILE_START(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Emulate), a);
    257258    int rc = emInterpretInstructionCPU(pVM, pCpu, pRegFrame, pvFault, pcbSize);
    258     STAM_PROFILE_STOP(&CTXMID(pVM->em.s.CTXSUFF(pStats)->Stat,Emulate), a);
     259    STAM_PROFILE_STOP(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Emulate), a);
    259260    if (VBOX_SUCCESS(rc))
    260         STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,InterpretSucceeded));
     261        STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,InterpretSucceeded));
    261262    else
    262         STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,InterpretFailed));
     263        STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,InterpretFailed));
    263264    return rc;
    264265}
     
    312313#endif
    313314}
     315
    314316
    315317DECLINLINE(int) emRamWrite(PVM pVM, RTGCPTR GCDest, void *pSrc, uint32_t cb)
     
    343345}
    344346
     347
    345348/* Convert sel:addr to a flat GC address */
    346349static RTGCPTR emConvertToFlatAddr(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, POP_PARAMETER pParam, RTGCPTR pvAddr)
     
    349352    return SELMToFlat(pVM, enmPrefixSeg, pRegFrame, pvAddr);
    350353}
     354
    351355
    352356#if defined(VBOX_STRICT) || defined(LOG_ENABLED)
     
    378382        case OP_RDMSR:      return "Rdmsr";
    379383        case OP_WRMSR:      return "Wrmsr";
     384        case OP_ADD:        return "Add";
    380385        case OP_ADC:        return "Adc";
    381         case OP_BTC:        return "Btc";
     386        case OP_SUB:        return "Sub";
     387        case OP_SBB:        return "Sbb";
    382388        case OP_RDTSC:      return "Rdtsc";
    383389        case OP_STI:        return "Sti";
     
    385391        case OP_HLT:        return "Hlt";
    386392        case OP_IRET:       return "Iret";
    387         case OP_CMPXCHG:    return "CmpXchg";
    388         case OP_CMPXCHG8B:  return "CmpXchg8b";
    389393        case OP_MOVNTPS:    return "MovNTPS";
    390394        case OP_STOSWD:     return "StosWD";
     
    393397        case OP_BTR:        return "Btr";
    394398        case OP_BTS:        return "Bts";
     399        case OP_BTC:        return "Btc";
     400        case OP_CMPXCHG:    return pCpu->prefix & PREFIX_LOCK ? "Lock CmpXchg"   : "CmpXchg";
     401        case OP_CMPXCHG8B:  return pCpu->prefix & PREFIX_LOCK ? "Lock CmpXchg8b" : "CmpXchg8b";
     402
    395403        default:
    396404            Log(("Unknown opcode %d\n", pCpu->pCurInstr->opcode));
     
    398406    }
    399407}
    400 #endif
     408#endif /* VBOX_STRICT || LOG_ENABLED */
     409
    401410
    402411/**
     
    538547}
    539548
     549
    540550/**
    541551 * INC and DEC emulation.
    542552 */
    543553static int emInterpretIncDec(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize,
    544                              PFN_EMULATE_PARAM2 pfnEmulate)
     554                             PFNEMULATEPARAM2 pfnEmulate)
    545555{
    546556    OP_PARAMVAL param1;
     
    605615    return VERR_EM_INTERPRETER;
    606616}
     617
    607618
    608619/**
     
    694705 */
    695706static int emInterpretOrXorAnd(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize,
    696                                PFN_EMULATE_PARAM3 pfnEmulate)
     707                               PFNEMULATEPARAM3 pfnEmulate)
    697708{
    698709    OP_PARAMVAL param1, param2;
     
    705716        return VERR_EM_INTERPRETER;
    706717
    707 #ifdef LOG_ENABLED
    708     const char *pszInstr;
    709 
    710     if (pCpu->pCurInstr->opcode == OP_XOR)
    711         pszInstr = "Xor";
    712     else if (pCpu->pCurInstr->opcode == OP_OR)
    713         pszInstr = "Or";
    714     else if (pCpu->pCurInstr->opcode == OP_AND)
    715         pszInstr = "And";
    716     else
    717         pszInstr = "OrXorAnd??";
    718 #endif
    719 
    720718#ifdef IN_GC
    721719    if (TRPMHasTrap(pVM))
     
    731729                if (pCpu->param1.size < pCpu->param2.size)
    732730                {
    733                     AssertMsgFailed(("%s at %VGv parameter mismatch %d vs %d!!\n", pszInstr, pRegFrame->rip, pCpu->param1.size, pCpu->param2.size)); /* should never happen! */
     731                    AssertMsgFailed(("%s at %VGv parameter mismatch %d vs %d!!\n", emGetMnemonic(pCpu), pRegFrame->rip, pCpu->param1.size, pCpu->param2.size)); /* should never happen! */
    734732                    return VERR_EM_INTERPRETER;
    735733                }
     
    774772            }
    775773
    776             LogFlow(("emInterpretOrXorAnd %s %VGv %RX64 - %RX64 size %d (%d)\n", pszInstr, pParam1, valpar1, valpar2, param2.size, param1.size));
     774            LogFlow(("emInterpretOrXorAnd %s %VGv %RX64 - %RX64 size %d (%d)\n", emGetMnemonic(pCpu), pParam1, valpar1, valpar2, param2.size, param1.size));
    777775
    778776            /* Data read, emulate instruction. */
    779777            uint32_t eflags = pfnEmulate(&valpar1, valpar2, param2.size);
    780778
    781             LogFlow(("emInterpretOrXorAnd %s result %RX64\n", pszInstr, valpar1));
     779            LogFlow(("emInterpretOrXorAnd %s result %RX64\n", emGetMnemonic(pCpu), valpar1));
    782780
    783781            /* Update guest's eflags and finish. */
     
    799797    return VERR_EM_INTERPRETER;
    800798}
     799
    801800
    802801/**
     
    880879}
    881880
     881
    882882/**
    883883 * ADD, ADC & SUB Emulation.
    884884 */
    885885static int emInterpretAddSub(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize,
    886                              PFN_EMULATE_PARAM3 pfnEmulate)
     886                             PFNEMULATEPARAM3 pfnEmulate)
    887887{
    888888    OP_PARAMVAL param1, param2;
     
    895895        return VERR_EM_INTERPRETER;
    896896
    897 #ifdef LOG_ENABLED
    898     const char *pszInstr;
    899 
    900     if (pCpu->pCurInstr->opcode == OP_SUB)
    901         pszInstr = "Sub";
    902     else if (pCpu->pCurInstr->opcode == OP_ADD)
    903         pszInstr = "Add";
    904     else if (pCpu->pCurInstr->opcode == OP_ADC)
    905         pszInstr = "Adc";
    906     else
    907         pszInstr = "AddSub??";
    908 #endif
    909 
    910897#ifdef IN_GC
    911898    if (TRPMHasTrap(pVM))
     
    921908                if (pCpu->param1.size < pCpu->param2.size)
    922909                {
    923                     AssertMsgFailed(("%s at %VGv parameter mismatch %d vs %d!!\n", pszInstr, pRegFrame->rip, pCpu->param1.size, pCpu->param2.size)); /* should never happen! */
     910                    AssertMsgFailed(("%s at %VGv parameter mismatch %d vs %d!!\n", emGetMnemonic(pCpu), pRegFrame->rip, pCpu->param1.size, pCpu->param2.size)); /* should never happen! */
    924911                    return VERR_EM_INTERPRETER;
    925912                }
     
    988975}
    989976
     977
    990978/**
    991979 * ADC Emulation.
     
    999987}
    1000988
     989
    1001990/**
    1002991 * BTR/C/S Emulation.
    1003992 */
    1004993static int emInterpretBitTest(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize,
    1005                               PFN_EMULATE_PARAM2_UINT32 pfnEmulate)
     994                              PFNEMULATEPARAM2UINT32 pfnEmulate)
    1006995{
    1007996    OP_PARAMVAL param1, param2;
     
    10141003        return VERR_EM_INTERPRETER;
    10151004
    1016 #ifdef LOG_ENABLED
    1017     const char *pszInstr;
    1018 
    1019     if (pCpu->pCurInstr->opcode == OP_BTR)
    1020         pszInstr = "Btr";
    1021     else if (pCpu->pCurInstr->opcode == OP_BTS)
    1022         pszInstr = "Bts";
    1023     else if (pCpu->pCurInstr->opcode == OP_BTC)
    1024         pszInstr = "Btc";
    1025     else
    1026         pszInstr = "Bit??";
    1027 #endif
    1028 
    10291005#ifdef IN_GC
    10301006    if (TRPMHasTrap(pVM))
     
    10561032            }
    10571033
    1058             Log2(("emInterpret%s: pvFault=%VGv pParam1=%VGv val2=%x\n", pszInstr, pvFault, pParam1, valpar2));
     1034            Log2(("emInterpret%s: pvFault=%VGv pParam1=%VGv val2=%x\n", emGetMnemonic(pCpu), pvFault, pParam1, valpar2));
    10591035            pParam1 = (RTGCPTR)((RTGCUINTPTR)pParam1 + valpar2/8);
    10601036#ifdef IN_GC
     
    10931069    return VERR_EM_INTERPRETER;
    10941070}
     1071
    10951072
    10961073/**
     
    11711148    return VINF_SUCCESS;
    11721149}
     1150
    11731151
    11741152/**
     
    13111289    return VERR_EM_INTERPRETER;
    13121290}
     1291
    13131292
    13141293#ifndef IN_GC
     
    14521431
    14531432
    1454 /*
     1433/**
    14551434 * [LOCK] CMPXCHG emulation.
    14561435 */
     
    14591438{
    14601439    OP_PARAMVAL param1, param2;
    1461 
    1462 #ifdef LOG_ENABLED
    1463     const char *pszInstr;
    1464 
    1465     if (pCpu->prefix & PREFIX_LOCK)
    1466         pszInstr = "Lock CmpXchg";
    1467     else
    1468         pszInstr = "CmpXchg";
    1469 #endif
    14701440
    14711441    /* Source to make DISQueryParamVal read the register value - ugly hack */
     
    15111481    }
    15121482
    1513     LogFlow(("%s %VGv rax=%RX64 %RX64\n", pszInstr, GCPtrPar1, pRegFrame->rax, valpar));
     1483    LogFlow(("%s %VGv rax=%RX64 %RX64\n", emGetMnemonic(pCpu), GCPtrPar1, pRegFrame->rax, valpar));
    15141484
    15151485    if (pCpu->prefix & PREFIX_LOCK)
     
    15181488        eflags = EMEmulateCmpXchg(pvParam1, &pRegFrame->rax, valpar, pCpu->param2.size);
    15191489
    1520     LogFlow(("%s %VGv rax=%RX64 %RX64 ZF=%d\n", pszInstr, GCPtrPar1, pRegFrame->rax, valpar, !!(eflags & X86_EFL_ZF)));
     1490    LogFlow(("%s %VGv rax=%RX64 %RX64 ZF=%d\n", emGetMnemonic(pCpu), GCPtrPar1, pRegFrame->rax, valpar, !!(eflags & X86_EFL_ZF)));
    15211491
    15221492    /* Update guest's eflags and finish. */
     
    15281498}
    15291499
    1530 #else
     1500#else /* IN_GC */
    15311501static int emInterpretCmpXchg(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    15321502{
    15331503    Assert(pCpu->mode != CPUMODE_64BIT);    /** @todo check */
    15341504    OP_PARAMVAL param1, param2;
    1535 
    1536 #ifdef LOG_ENABLED
    1537     const char *pszInstr;
    1538 
    1539     if (pCpu->prefix & PREFIX_LOCK)
    1540         pszInstr = "Lock CmpXchg";
    1541     else
    1542         pszInstr = "CmpXchg";
    1543 #endif
    15441505
    15451506    /* Source to make DISQueryParamVal read the register value - ugly hack */
     
    15841545            }
    15851546
    1586             LogFlow(("%s %VRv eax=%08x %08x\n", pszInstr, pParam1, pRegFrame->eax, valpar));
     1547            LogFlow(("%s %VRv eax=%08x %08x\n", emGetMnemonic(pCpu), pParam1, pRegFrame->eax, valpar));
    15871548
    15881549            MMGCRamRegisterTrapHandler(pVM);
     
    15951556            if (VBOX_FAILURE(rc))
    15961557            {
    1597                 Log(("%s %VGv eax=%08x %08x -> emulation failed due to page fault!\n", pszInstr, pParam1, pRegFrame->eax, valpar));
     1558                Log(("%s %VGv eax=%08x %08x -> emulation failed due to page fault!\n", emGetMnemonic(pCpu), pParam1, pRegFrame->eax, valpar));
    15981559                return VERR_EM_INTERPRETER;
    15991560            }
    16001561
    1601             LogFlow(("%s %VRv eax=%08x %08x ZF=%d\n", pszInstr, pParam1, pRegFrame->eax, valpar, !!(eflags & X86_EFL_ZF)));
     1562            LogFlow(("%s %VRv eax=%08x %08x ZF=%d\n", emGetMnemonic(pCpu), pParam1, pRegFrame->eax, valpar, !!(eflags & X86_EFL_ZF)));
    16021563
    16031564            /* Update guest's eflags and finish. */
     
    16191580    Assert(pCpu->mode != CPUMODE_64BIT);    /** @todo check */
    16201581    OP_PARAMVAL param1;
    1621 
    1622 #ifdef LOG_ENABLED
    1623     const char *pszInstr;
    1624 
    1625     if (pCpu->prefix & PREFIX_LOCK)
    1626         pszInstr = "Lock CmpXchg8b";
    1627     else
    1628         pszInstr = "CmpXchg8b";
    1629 #endif
    16301582
    16311583    /* Source to make DISQueryParamVal read the register value - ugly hack */
     
    16561608            }
    16571609
    1658             LogFlow(("%s %VRv=%08x eax=%08x\n", pszInstr, pParam1, pRegFrame->eax));
     1610            LogFlow(("%s %VRv=%08x eax=%08x\n", emGetMnemonic(pCpu), pParam1, pRegFrame->eax));
    16591611
    16601612            MMGCRamRegisterTrapHandler(pVM);
     
    16671619            if (VBOX_FAILURE(rc))
    16681620            {
    1669                 Log(("%s %VGv=%08x eax=%08x -> emulation failed due to page fault!\n", pszInstr, pParam1, pRegFrame->eax));
     1621                Log(("%s %VGv=%08x eax=%08x -> emulation failed due to page fault!\n", emGetMnemonic(pCpu), pParam1, pRegFrame->eax));
    16701622                return VERR_EM_INTERPRETER;
    16711623            }
    16721624
    1673             LogFlow(("%s %VGv=%08x eax=%08x ZF=%d\n", pszInstr, pParam1, pRegFrame->eax, !!(eflags & X86_EFL_ZF)));
     1625            LogFlow(("%s %VGv=%08x eax=%08x ZF=%d\n", emGetMnemonic(pCpu), pParam1, pRegFrame->eax, !!(eflags & X86_EFL_ZF)));
    16741626
    16751627            /* Update guest's eflags and finish; note that *only* ZF is affected. */
     
    16831635    return VERR_EM_INTERPRETER;
    16841636}
    1685 #endif
    1686 
    1687 /*
     1637#endif /* IN_GC */
     1638
     1639
     1640/**
    16881641 * [LOCK] XADD emulation.
    16891642 */
     
    17551708    return VERR_EM_INTERPRETER;
    17561709}
    1757 #endif
     1710#endif /* IN_GC */
     1711
    17581712
    17591713#ifdef IN_GC
     
    18091763    return VINF_SUCCESS;
    18101764}
    1811 #endif
     1765#endif /* IN_GC */
     1766
    18121767
    18131768/**
     
    18201775}
    18211776
    1822 /**
    1823  * INVLPG Emulation.
    1824  */
    18251777
    18261778/**
     
    18551807}
    18561808
     1809
     1810/**
     1811 * INVLPG Emulation.
     1812 */
    18571813static int emInterpretInvlPg(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    18581814{
     
    18931849}
    18941850
    1895 /**
    1896  * CPUID Emulation.
    1897  */
    18981851
    18991852/**
     
    19151868}
    19161869
     1870
     1871/**
     1872 * CPUID Emulation.
     1873 */
    19171874static int emInterpretCpuId(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    19181875{
     
    19211878}
    19221879
    1923 /**
    1924  * MOV CRx Emulation.
    1925  */
    19261880
    19271881/**
     
    20161970}
    20171971
     1972/**
     1973 * CLTS Emulation.
     1974 */
    20181975static int emInterpretClts(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    20191976{
    20201977    return EMInterpretCLTS(pVM);
    20211978}
     1979
    20221980
    20231981/**
     
    21652123}
    21662124
     2125
     2126/**
     2127 * MOV CRx
     2128 */
    21672129static int emInterpretMovCRx(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    21682130{
     
    21772139}
    21782140
    2179 /**
    2180  * MOV DRx
    2181  */
    21822141
    21832142/**
     
    22182177}
    22192178
     2179
    22202180/**
    22212181 * Interpret DRx read
     
    22472207}
    22482208
     2209
     2210/**
     2211 * MOV DRx
     2212 */
    22492213static int emInterpretMovDRx(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    22502214{
     
    22652229    return rc;
    22662230}
     2231
    22672232
    22682233/**
     
    23052270}
    23062271
     2272
    23072273#ifdef IN_GC
    23082274/**
     
    23412307}
    23422308
    2343 
    2344 /**
    2345  * RDTSC Emulation.
    2346  */
    23472309
    23482310/**
     
    23702332}
    23712333
     2334
     2335/**
     2336 * RDTSC Emulation.
     2337 */
    23722338static int emInterpretRdtsc(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    23732339{
    23742340    return EMInterpretRdtsc(pVM, pRegFrame);
    23752341}
     2342
    23762343
    23772344/**
     
    24232390}
    24242391
     2392
    24252393#ifdef LOG_ENABLED
    2426 static const char *emMSRtoString(unsigned uMsr)
    2427 {
    2428     switch(uMsr)
     2394static const char *emMSRtoString(uint32_t uMsr)
     2395{
     2396    switch (uMsr)
    24292397    {
    24302398    case MSR_IA32_APICBASE:
     
    24872455    return "Unknown MSR";
    24882456}
    2489 #endif
     2457#endif /* LOG_ENABLED */
     2458
    24902459
    24912460/**
     
    25992568}
    26002569
     2570
    26012571/**
    26022572 * RDMSR Emulation.
     
    26092579}
    26102580
     2581
    26112582/**
    26122583 * Interpret WRMSR
     
    26152586 * @param   pVM         The VM handle.
    26162587 * @param   pRegFrame   The register frame.
    2617  *
    26182588 */
    26192589EMDECL(int) EMInterpretWrmsr(PVM pVM, PCPUMCTXCORE pRegFrame)
     
    27322702}
    27332703
     2704
    27342705/**
    27352706 * WRMSR Emulation.
     
    27392710    return EMInterpretWrmsr(pVM, pRegFrame);
    27402711}
     2712
    27412713
    27422714/**
     
    27592731    {
    27602732        Log(("WARNING: refusing instruction emulation for user-mode code!!\n"));
    2761         STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,FailedUserMode));
     2733        STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,FailedUserMode));
    27622734        return VERR_EM_INTERPRETER;
    27632735    }
     
    27862758    {
    27872759        //Log(("EMInterpretInstruction: wrong prefix!!\n"));
    2788         STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,FailedPrefix));
     2760        STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,FailedPrefix));
    27892761        return VERR_EM_INTERPRETER;
    27902762    }
     
    28032775                rc = emInterpret##InstrFn(pVM, pCpu, pRegFrame, pvFault, pcbSize, pfnEmulate); \
    28042776            if (VBOX_SUCCESS(rc)) \
    2805                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,Instr)); \
     2777                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Instr)); \
    28062778            else \
    2807                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,Failed##Instr)); \
     2779                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Failed##Instr)); \
    28082780            return rc
    28092781#define INTERPRET_CASE_EX_PARAM3(opcode, Instr, InstrFn, pfnEmulate) \
     
    28112783            rc = emInterpret##InstrFn(pVM, pCpu, pRegFrame, pvFault, pcbSize, pfnEmulate); \
    28122784            if (VBOX_SUCCESS(rc)) \
    2813                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,Instr)); \
     2785                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Instr)); \
    28142786            else \
    2815                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,Failed##Instr)); \
     2787                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Failed##Instr)); \
    28162788            return rc
    28172789
     
    28252797            rc = emInterpret##Instr(pVM, pCpu, pRegFrame, pvFault, pcbSize); \
    28262798            if (VBOX_SUCCESS(rc)) \
    2827                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,Instr)); \
     2799                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Instr)); \
    28282800            else \
    2829                 STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,Failed##Instr)); \
     2801                STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Failed##Instr)); \
    28302802            return rc
    28312803#define INTERPRET_STAT_CASE(opcode, Instr) \
    2832         case opcode: STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,Failed##Instr)); return VERR_EM_INTERPRETER;
     2804        case opcode: STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Failed##Instr)); return VERR_EM_INTERPRETER;
    28332805
    28342806        INTERPRET_CASE(OP_XCHG,Xchg);
     
    28782850        default:
    28792851            Log3(("emInterpretInstructionCPU: opcode=%d\n", pCpu->pCurInstr->opcode));
    2880             STAM_COUNTER_INC(&pVM->em.s.CTXSUFF(pStats)->CTXMID(Stat,FailedMisc));
     2852            STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,FailedMisc));
    28812853            return VERR_EM_INTERPRETER;
    28822854#undef INTERPRET_CASE_EX_PARAM2
     
    29202892    return pVM->em.s.GCPtrInhibitInterrupts;
    29212893}
     2894
  • trunk/src/VBox/VMM/VMMAll/EMAllA.asm

    r12005 r12688  
    3030; The register we use for value pointers (And,Or,Dec,Inc).
    3131%ifdef RT_ARCH_AMD64
    32 %define MY_PTR_REG  rcx
     32 %define MY_PTR_REG     rcx
    3333%else
    34 %define MY_PTR_REG  ecx
     34 %define MY_PTR_REG     ecx
    3535%endif
    3636
     
    3838; The register we return the result in.
    3939%ifdef RT_ARCH_AMD64
    40 %define MY_RET_REG  rax
     40 %define MY_RET_REG     rax
    4141%else
    42 %define MY_RET_REG  eax
     42 %define MY_RET_REG     eax
    4343%endif
    4444
     
    239239ENDPROC     EMEmulateOr
    240240
     241
    241242;;
    242243; Emulate LOCK OR instruction.
     
    310311    pop     dword [eax]
    311312%endif
    312     mov     eax, VINF_SUCCESS     
     313    mov     eax, VINF_SUCCESS
    313314    retn
    314315
    315316%ifdef IN_GC
    316 ; #PF resume point. 
     317; #PF resume point.
    317318GLOBALNAME EMEmulateLockOr_Error
    318319    mov     eax, VERR_ACCESS_DENIED
     
    321322
    322323ENDPROC     EMEmulateLockOr
     324
    323325
    324326;;
     
    386388ENDPROC     EMEmulateXor
    387389
     390
    388391;;
    389392; Emulate INC instruction, CDECL calling conv.
     
    511514ENDPROC     EMEmulateDec
    512515
     516
    513517;;
    514518; Emulate ADD instruction, CDECL calling conv.
     
    575579ENDPROC     EMEmulateAdd
    576580
     581
    577582;;
    578583; Emulate ADC instruction, CDECL calling conv.
     
    643648ENDPROC     EMEmulateAdcWithCarrySet
    644649
     650
    645651;;
    646652; Emulate SUB instruction, CDECL calling conv.
     
    773779
    774780%ifdef IN_GC
    775 ; #PF resume point. 
     781; #PF resume point.
    776782GLOBALNAME EMEmulateLockBtr_Error
    777783    mov     eax, VERR_ACCESS_DENIED
     
    781787ENDPROC     EMEmulateLockBtr
    782788
     789
    783790;;
    784791; Emulate BTC instruction, CDECL calling conv.
     
    810817    retn
    811818ENDPROC     EMEmulateBtc
     819
    812820
    813821;;
     
    929937ENDPROC     EMEmulateLockCmpXchg
    930938
     939
    931940;;
    932941; Emulate CMPXCHG instruction, CDECL calling conv.
     
    10161025ENDPROC     EMEmulateCmpXchg
    10171026
     1027
    10181028%if 0
    10191029;; not tested!!
  • trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp

    r12566 r12688  
    763763 * @param   pfnEmulate  Instruction emulation function.
    764764 */
    765 static int iomInterpretOrXorAnd(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, PFN_EMULATE_PARAM3 pfnEmulate)
     765static int iomInterpretOrXorAnd(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, PFNEMULATEPARAM3 pfnEmulate)
    766766{
    767767    unsigned    cb     = 0;
  • trunk/src/VBox/VMM/testcase/tstVMStructGC.cpp

    r12566 r12688  
    121121    GEN_CHECK_OFF(EM, StatForcedActions);
    122122    GEN_CHECK_OFF(EM, StatTotalClis);
    123     GEN_CHECK_OFF(EM, pStatsHC);
    124     GEN_CHECK_OFF(EM, pStatsGC);
     123    GEN_CHECK_OFF(EM, pStatsR3);
     124    GEN_CHECK_OFF(EM, pStatsR0);
     125    GEN_CHECK_OFF(EM, pStatsRC);
    125126    GEN_CHECK_OFF(EM, pCliStatTree);
    126127
Note: See TracChangeset for help on using the changeset viewer.

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