Changeset 12688 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 24, 2008 2:22:18 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36993
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/EM.cpp
r12653 r12688 20 20 */ 21 21 22 23 22 /** @page pg_em EM - The Execution Monitor/Manager 24 23 * 25 24 * 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. 30 34 */ 31 35 … … 144 148 if (VBOX_FAILURE(rc)) 145 149 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."); 324 329 325 330 STAM_REG(pVM, &pVM->em.s.StatTotalClis, STAMTYPE_COUNTER, "/EM/Cli/Total", STAMUNIT_OCCURENCES, "Total number of cli instructions executed."); … … 327 332 #endif /* VBOX_WITH_STATISTICS */ 328 333 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 331 340 STAM_REL_REG(pVM, &pVM->em.s.StatHalted, STAMTYPE_PROFILE, "/PROF/EM/Halted", STAMUNIT_TICKS_PER_CALL, "Profiling halted state (VMR3WaitHalted)."); 332 341 STAM_REG(pVM, &pVM->em.s.StatHwAccEntry, STAMTYPE_PROFILE, "/PROF/EM/HwAccEnter", STAMUNIT_TICKS_PER_CALL, "Profiling Hardware Accelerated Mode entry overhead."); 333 342 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.");337 343 STAM_REG(pVM, &pVM->em.s.StatREMEmu, STAMTYPE_PROFILE, "/PROF/EM/REMEmuSingle", STAMUNIT_TICKS_PER_CALL, "Profiling single instruction REM execution."); 338 344 STAM_REG(pVM, &pVM->em.s.StatREMExec, STAMTYPE_PROFILE, "/PROF/EM/REMExec", STAMUNIT_TICKS_PER_CALL, "Profiling REM execution."); 339 345 STAM_REG(pVM, &pVM->em.s.StatREMSync, STAMTYPE_PROFILE, "/PROF/EM/REMSync", STAMUNIT_TICKS_PER_CALL, "Profiling REM context syncing."); 340 STAM_RE G(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)."); 341 347 STAM_REG(pVM, &pVM->em.s.StatRAWEntry, STAMTYPE_PROFILE, "/PROF/EM/RAWEnter", STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode entry overhead."); 342 348 STAM_REG(pVM, &pVM->em.s.StatRAWExec, STAMTYPE_PROFILE, "/PROF/EM/RAWExec", STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode execution."); 343 349 STAM_REG(pVM, &pVM->em.s.StatRAWTail, STAMTYPE_PROFILE, "/PROF/EM/RAWTail", STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode tail overhead."); 344 STAM_RE G(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)."); 345 351 STAM_REL_REG(pVM, &pVM->em.s.StatTotal, STAMTYPE_PROFILE_ADV, "/PROF/EM/Total", STAMUNIT_TICKS_PER_CALL, "Profiling EMR3ExecuteVM."); 346 352 … … 348 354 return VINF_SUCCESS; 349 355 } 350 351 356 352 357 … … 361 366 { 362 367 LogFlow(("EMR3Relocate\n")); 363 if (pVM->em.s.pStats HC)364 pVM->em.s.pStats GC = MMHyperHC2GC(pVM, pVM->em.s.pStatsHC);368 if (pVM->em.s.pStatsR3) 369 pVM->em.s.pStatsRC = MMHyperR3ToRC(pVM, pVM->em.s.pStatsR3); 365 370 } 366 371 … … 434 439 pVM->em.s.fForceRAW = false; 435 440 436 Assert( pVM->em.s.pCliStatTree == 0);441 Assert(!pVM->em.s.pCliStatTree); 437 442 return rc; 438 443 } … … 455 460 { 456 461 case EMRAW_NONE: 457 pVM->fRawR3Enabled 458 pVM->fRawR0Enabled 462 pVM->fRawR3Enabled = false; 463 pVM->fRawR0Enabled = false; 459 464 break; 460 465 case EMRAW_RING3_ENABLE: … … 474 479 return VERR_INVALID_PARAMETER; 475 480 } 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)); 478 483 return pVM->em.s.enmState == EMSTATE_RAW ? VINF_EM_RESCHEDULE : VINF_SUCCESS; 479 484 } … … 734 739 } 735 740 741 736 742 /** 737 743 * Executes recompiled code. … … 759 765 Log(("EMR%d: %08X ESP=%08X IF=%d CR0=%x\n", cpl, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0)); 760 766 #endif 761 STAM_ PROFILE_ADV_START(&pVM->em.s.StatREMTotal, a);767 STAM_REL_PROFILE_ADV_START(&pVM->em.s.StatREMTotal, a); 762 768 763 769 #if defined(VBOX_STRICT) && defined(DEBUG_bird) … … 852 858 fInREMState = false; 853 859 } 854 STAM_ PROFILE_ADV_SUSPEND(&pVM->em.s.StatREMTotal, a);860 STAM_REL_PROFILE_ADV_SUSPEND(&pVM->em.s.StatREMTotal, a); 855 861 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); 857 863 if ( rc != VINF_SUCCESS 858 864 && rc != VINF_EM_RESCHEDULE_REM) … … 876 882 } 877 883 878 STAM_ PROFILE_ADV_STOP(&pVM->em.s.StatREMTotal, a);884 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatREMTotal, a); 879 885 return rc; 880 886 } … … 1058 1064 1059 1065 Log(("Single step BEGIN:\n")); 1060 for (uint32_t i=0;i<cIterations;i++)1066 for (uint32_t i = 0; i < cIterations; i++) 1061 1067 { 1062 1068 DBGFR3PrgStep(pVM); … … 1077 1083 1078 1084 Log(("Single step BEGIN:\n")); 1079 for (uint32_t i=0;i<cIterations;i++)1085 for (uint32_t i = 0; i < cIterations; i++) 1080 1086 { 1081 1087 DBGFR3PrgStep(pVM); … … 1096 1102 1097 1103 Log(("Single step BEGIN:\n")); 1098 for (uint32_t i=0;i<cIterations;i++)1104 for (uint32_t i = 0; i < cIterations; i++) 1099 1105 { 1100 1106 DBGFR3PrgStep(pVM); … … 1256 1262 } 1257 1263 } 1258 #endif 1264 #endif /* 0 */ 1259 1265 STAM_PROFILE_START(&pVM->em.s.StatREMEmu, a); 1260 1266 rc = REMR3EmulateInstruction(pVM); … … 1312 1318 case OP_IN: 1313 1319 { 1314 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->StatIn);1320 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatIn); 1315 1321 rc = IOMInterpretIN(pVM, CPUMCTX2CORE(pCtx), &Cpu); 1316 1322 break; … … 1319 1325 case OP_OUT: 1320 1326 { 1321 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->StatOut);1327 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatOut); 1322 1328 rc = IOMInterpretOUT(pVM, CPUMCTX2CORE(pCtx), &Cpu); 1323 1329 break; … … 1332 1338 case OP_INSWD: 1333 1339 { 1334 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->StatIn);1340 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatIn); 1335 1341 rc = IOMInterpretINS(pVM, CPUMCTX2CORE(pCtx), &Cpu); 1336 1342 break; … … 1340 1346 case OP_OUTSWD: 1341 1347 { 1342 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->StatOut);1348 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatOut); 1343 1349 rc = IOMInterpretOUTS(pVM, CPUMCTX2CORE(pCtx), &Cpu); 1344 1350 break; … … 1392 1398 */ 1393 1399 uint8_t u8TrapNo; 1394 TRPMEVENT enmType; ;1400 TRPMEVENT enmType; 1395 1401 RTGCUINT uErrorCode; 1396 1402 RTGCUINTPTR uCR2; … … 1527 1533 { 1528 1534 case OP_SYSENTER: 1529 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->StatSysEnter);1535 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysEnter); 1530 1536 break; 1531 1537 case OP_SYSEXIT: 1532 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->StatSysExit);1538 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysExit); 1533 1539 break; 1534 1540 case OP_SYSCALL: 1535 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->StatSysCall);1541 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysCall); 1536 1542 break; 1537 1543 case OP_SYSRET: 1538 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->StatSysRet);1544 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysRet); 1539 1545 break; 1540 1546 } … … 1572 1578 uErrorCode = 0; 1573 1579 } 1574 else 1575 if (gcret == VINF_PATM_PATCH_TRAP_GP) 1580 else if (gcret == VINF_PATM_PATCH_TRAP_GP) 1576 1581 { 1577 1582 /* No active trap in this case. Kind of ugly. */ … … 1645 1650 } 1646 1651 } 1647 #endif 1652 #endif /* LOG_ENABLED */ 1648 1653 Log(("emR3PatchTrap: in patch: eip=%08x: trap=%02x err=%08x cr2=%08x cr0=%08x\n", 1649 1654 pCtx->eip, u8TrapNo, uErrorCode, uCR2, (uint32_t)pCtx->cr0)); … … 1795 1800 { 1796 1801 #ifdef VBOX_WITH_STATISTICS 1797 PEMSTATS pStats = pVM->em.s.CTX SUFF(pStats);1802 PEMSTATS pStats = pVM->em.s.CTX_SUFF(pStats); 1798 1803 switch (Cpu.pCurInstr->opcode) 1799 1804 { … … 1869 1874 break; 1870 1875 } 1871 #endif 1876 #endif /* VBOX_WITH_STATISTICS */ 1872 1877 if ( (pCtx->ss & X86_SEL_RPL) == 0 1873 1878 && !pCtx->eflags.Bits.u1VM … … 2312 2317 } 2313 2318 2319 2314 2320 /** 2315 2321 * Check for pending raw actions … … 2428 2434 static int emR3RawExecute(PVM pVM, bool *pfFFDone) 2429 2435 { 2430 STAM_ PROFILE_ADV_START(&pVM->em.s.StatRAWTotal, a);2436 STAM_REL_PROFILE_ADV_START(&pVM->em.s.StatRAWTotal, a); 2431 2437 2432 2438 int rc = VERR_INTERNAL_ERROR; … … 2529 2535 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))); 2530 2536 LogFlow(("VMMR3RawRunGC returned %Vrc\n", rc)); 2537 2538 2531 2539 2532 2540 /* … … 2605 2613 Assert(pCtx->eflags.Bits.u1VM || (pCtx->ss & X86_SEL_RPL) != 1); 2606 2614 2607 STAM_ PROFILE_ADV_SUSPEND(&pVM->em.s.StatRAWTotal, a);2615 STAM_REL_PROFILE_ADV_SUSPEND(&pVM->em.s.StatRAWTotal, a); 2608 2616 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); 2610 2618 if ( rc != VINF_SUCCESS 2611 2619 && rc != VINF_EM_RESCHEDULE_RAW) … … 2627 2635 RTLogFlush(NULL); 2628 2636 #endif 2629 STAM_ PROFILE_ADV_STOP(&pVM->em.s.StatRAWTotal, a);2637 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatRAWTotal, a); 2630 2638 return rc; 2631 2639 } … … 2678 2686 2679 2687 #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 }2687 2688 /* 2688 2689 * Log important stuff before entering GC. 2689 2690 */ 2691 if (TRPMHasTrap(pVM)) 2692 Log(("Pending hardware interrupt=0x%x cs:eip=%04X:%VGv\n", TRPMGetTrapNo(pVM), pCtx->cs, pCtx->rip)); 2693 2690 2694 uint32_t cpl = CPUMGetGuestCPL(pVM, CPUMCTX2CORE(pCtx)); 2691 2692 2695 if (pCtx->eflags.Bits.u1VM) 2693 2696 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))) 2696 2698 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)); 2697 2699 else 2698 2700 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 */ 2700 2702 2701 2703 /* … … 2760 2762 * @param pCtx The CPU context. 2761 2763 */ 2762 inline EMSTATEemR3Reschedule(PVM pVM, PCPUMCTX pCtx)2764 DECLINLINE(EMSTATE) emR3Reschedule(PVM pVM, PCPUMCTX pCtx) 2763 2765 { 2764 2766 /* … … 2782 2784 return EMSTATE_HWACC; 2783 2785 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! */ 2785 2788 return EMSTATE_REM; 2786 2789 } 2787 2790 2788 /* Standard raw-mode: 2791 /* 2792 * Standard raw-mode: 2789 2793 * 2790 2794 * Here we only support 16 & 32 bits protected mode ring 3 code that has no IO privileges … … 2938 2942 static int emR3ForcedActions(PVM pVM, int rc) 2939 2943 { 2944 STAM_REL_PROFILE_START(&pVM->em.s.StatForcedActions, a); 2940 2945 #ifdef VBOX_STRICT 2941 2946 int rcIrq = VINF_SUCCESS; 2942 2947 #endif 2943 STAM_PROFILE_START(&pVM->em.s.StatForcedActions, a); 2944 2948 int rc2; 2945 2949 #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) 2955 2957 2956 2958 /* … … 2965 2967 { 2966 2968 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); 2968 2970 return VINF_EM_TERMINATE; 2969 2971 } … … 3033 3035 { 3034 3036 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); 3036 3038 return rc2; 3037 3039 } … … 3049 3051 /* 3050 3052 * 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"! 3052 3054 */ 3053 3055 static unsigned cLast = 0; … … 3141 3143 { 3142 3144 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); 3144 3146 return VINF_EM_TERMINATE; 3145 3147 } … … 3163 3165 #undef UPDATE_RC 3164 3166 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); 3166 3168 Assert(rcIrq == VINF_SUCCESS || rcIrq == rc); 3167 3169 return rc; -
trunk/src/VBox/VMM/EMInternal.h
r12305 r12688 49 49 50 50 /** 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 /**58 51 * Cli node structure 59 52 */ … … 73 66 { 74 67 /** GC: Profiling of EMInterpretInstruction(). */ 75 STAMPROFILE Stat GCEmulate;68 STAMPROFILE StatRZEmulate; 76 69 /** HC: Profiling of EMInterpretInstruction(). */ 77 STAMPROFILE Stat HCEmulate;70 STAMPROFILE StatR3Emulate; 78 71 79 72 /** @name Interpreter Instruction statistics. 80 73 * @{ 81 74 */ 82 STAMCOUNTER Stat GCInterpretSucceeded;83 STAMCOUNTER Stat HCInterpretSucceeded;84 85 STAMCOUNTER Stat GCAnd;86 STAMCOUNTER Stat HCAnd;87 STAMCOUNTER Stat GCCpuId;88 STAMCOUNTER Stat HCCpuId;89 STAMCOUNTER Stat GCDec;90 STAMCOUNTER Stat HCDec;91 STAMCOUNTER Stat GCHlt;92 STAMCOUNTER Stat HCHlt;93 STAMCOUNTER Stat GCInc;94 STAMCOUNTER Stat HCInc;95 STAMCOUNTER Stat GCInvlPg;96 STAMCOUNTER Stat HCInvlPg;97 STAMCOUNTER Stat GCIret;98 STAMCOUNTER Stat HCIret;99 STAMCOUNTER Stat GCLLdt;100 STAMCOUNTER Stat HCLLdt;101 STAMCOUNTER Stat GCMov;102 STAMCOUNTER Stat HCMov;103 STAMCOUNTER Stat GCMovCRx;104 STAMCOUNTER Stat HCMovCRx;105 STAMCOUNTER Stat GCMovDRx;106 STAMCOUNTER Stat HCMovDRx;107 STAMCOUNTER Stat GCOr;108 STAMCOUNTER Stat HCOr;109 STAMCOUNTER Stat GCPop;110 STAMCOUNTER Stat HCPop;111 STAMCOUNTER Stat GCSti;112 STAMCOUNTER Stat HCSti;113 STAMCOUNTER Stat GCXchg;114 STAMCOUNTER Stat HCXchg;115 STAMCOUNTER Stat GCXor;116 STAMCOUNTER Stat HCXor;117 STAMCOUNTER Stat GCMonitor;118 STAMCOUNTER Stat HCMonitor;119 STAMCOUNTER Stat GCMWait;120 STAMCOUNTER Stat HCMWait;121 STAMCOUNTER Stat GCAdd;122 STAMCOUNTER Stat HCAdd;123 STAMCOUNTER Stat GCSub;124 STAMCOUNTER Stat HCSub;125 STAMCOUNTER Stat GCAdc;126 STAMCOUNTER Stat HCAdc;127 STAMCOUNTER Stat GCRdtsc;128 STAMCOUNTER Stat HCRdtsc;129 STAMCOUNTER Stat GCBtr;130 STAMCOUNTER Stat HCBtr;131 STAMCOUNTER Stat GCBts;132 STAMCOUNTER Stat HCBts;133 STAMCOUNTER Stat GCBtc;134 STAMCOUNTER Stat HCBtc;135 STAMCOUNTER Stat GCCmpXchg;136 STAMCOUNTER Stat HCCmpXchg;137 STAMCOUNTER Stat GCCmpXchg8b;138 STAMCOUNTER Stat HCCmpXchg8b;139 STAMCOUNTER Stat GCXAdd;140 STAMCOUNTER Stat HCXAdd;141 STAMCOUNTER Stat GCClts;142 STAMCOUNTER Stat HCClts;143 STAMCOUNTER Stat GCStosWD;144 STAMCOUNTER Stat HCStosWD;145 STAMCOUNTER Stat HCRdmsr;146 STAMCOUNTER Stat HCWrmsr;147 STAMCOUNTER Stat GCRdmsr;148 STAMCOUNTER Stat GCWrmsr;149 150 STAMCOUNTER Stat GCInterpretFailed;151 STAMCOUNTER Stat HCInterpretFailed;152 153 STAMCOUNTER Stat GCFailedAnd;154 STAMCOUNTER Stat HCFailedAnd;155 STAMCOUNTER Stat GCFailedCpuId;156 STAMCOUNTER Stat HCFailedCpuId;157 STAMCOUNTER Stat GCFailedDec;158 STAMCOUNTER Stat HCFailedDec;159 STAMCOUNTER Stat GCFailedHlt;160 STAMCOUNTER Stat HCFailedHlt;161 STAMCOUNTER Stat GCFailedInc;162 STAMCOUNTER Stat HCFailedInc;163 STAMCOUNTER Stat GCFailedInvlPg;164 STAMCOUNTER Stat HCFailedInvlPg;165 STAMCOUNTER Stat GCFailedIret;166 STAMCOUNTER Stat HCFailedIret;167 STAMCOUNTER Stat GCFailedLLdt;168 STAMCOUNTER Stat HCFailedLLdt;169 STAMCOUNTER Stat GCFailedMisc;170 STAMCOUNTER Stat HCFailedMisc;171 STAMCOUNTER Stat GCFailedMov;172 STAMCOUNTER Stat HCFailedMov;173 STAMCOUNTER Stat GCFailedMovCRx;174 STAMCOUNTER Stat HCFailedMovCRx;175 STAMCOUNTER Stat GCFailedMovDRx;176 STAMCOUNTER Stat HCFailedMovDRx;177 STAMCOUNTER Stat GCFailedOr;178 STAMCOUNTER Stat HCFailedOr;179 STAMCOUNTER Stat GCFailedPop;180 STAMCOUNTER Stat HCFailedPop;181 STAMCOUNTER Stat GCFailedSti;182 STAMCOUNTER Stat HCFailedSti;183 STAMCOUNTER Stat GCFailedXchg;184 STAMCOUNTER Stat HCFailedXchg;185 STAMCOUNTER Stat GCFailedXor;186 STAMCOUNTER Stat HCFailedXor;187 STAMCOUNTER Stat GCFailedMonitor;188 STAMCOUNTER Stat HCFailedMonitor;189 STAMCOUNTER Stat GCFailedMWait;190 STAMCOUNTER Stat HCFailedMWait;191 STAMCOUNTER Stat HCFailedRdmsr;192 STAMCOUNTER Stat HCFailedWrmsr;193 STAMCOUNTER Stat GCFailedRdmsr;194 STAMCOUNTER Stat GCFailedWrmsr;195 196 STAMCOUNTER Stat GCFailedAdd;197 STAMCOUNTER Stat HCFailedAdd;198 STAMCOUNTER Stat GCFailedAdc;199 STAMCOUNTER Stat HCFailedAdc;200 STAMCOUNTER Stat GCFailedBtr;201 STAMCOUNTER Stat HCFailedBtr;202 STAMCOUNTER Stat GCFailedBts;203 STAMCOUNTER Stat HCFailedBts;204 STAMCOUNTER Stat GCFailedBtc;205 STAMCOUNTER Stat HCFailedBtc;206 STAMCOUNTER Stat GCFailedCli;207 STAMCOUNTER Stat HCFailedCli;208 STAMCOUNTER Stat GCFailedCmpXchg;209 STAMCOUNTER Stat HCFailedCmpXchg;210 STAMCOUNTER Stat GCFailedCmpXchg8b;211 STAMCOUNTER Stat HCFailedCmpXchg8b;212 STAMCOUNTER Stat GCFailedXAdd;213 STAMCOUNTER Stat HCFailedXAdd;214 STAMCOUNTER Stat HCFailedMovNTPS;215 STAMCOUNTER Stat GCFailedMovNTPS;216 STAMCOUNTER Stat GCFailedStosWD;217 STAMCOUNTER Stat HCFailedStosWD;218 STAMCOUNTER Stat GCFailedSub;219 STAMCOUNTER Stat HCFailedSub;220 STAMCOUNTER Stat GCFailedWbInvd;221 STAMCOUNTER Stat HCFailedWbInvd;222 STAMCOUNTER Stat GCFailedRdtsc;223 STAMCOUNTER Stat HCFailedRdtsc;224 STAMCOUNTER Stat GCFailedClts;225 STAMCOUNTER Stat HCFailedClts;226 227 STAMCOUNTER Stat GCFailedUserMode;228 STAMCOUNTER Stat HCFailedUserMode;229 STAMCOUNTER Stat GCFailedPrefix;230 STAMCOUNTER Stat HCFailedPrefix;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; 231 224 /** @} */ 232 225 … … 253 246 /** @} */ 254 247 255 } EMSTATS, *PEMSTATS; 248 } EMSTATS; 249 /** Pointer to the excessive EM statistics. */ 250 typedef 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) ) 256 259 257 260 /** … … 266 269 267 270 /** Execution Manager State. */ 268 volatile EMSTATEenmState;271 EMSTATE volatile enmState; 269 272 /** Force raw-mode execution. 270 273 * This is used to prevent REM from trying to execute patch code. … … 286 289 287 290 288 /** Pointer to the PATM status structure. ( HCPtr) */289 R3 R0PTRTYPE(PPATMGCSTATE) pPatmGCState;290 291 /** Pointer to the guest CPUM state. ( HCPtr) */292 R3 R0PTRTYPE(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; 293 296 294 297 #if GC_ARCH_BITS == 64 295 RTGCPTR 298 RTGCPTR aPadding1; 296 299 #endif 297 300 … … 325 328 /** @} */ 326 329 327 /** HC: Profiling of emR3RawExecuteIOInstruction. */330 /** R3: Profiling of emR3RawExecuteIOInstruction. */ 328 331 STAMPROFILE StatIOEmu; 329 /** HC: Profiling of emR3RawPrivileged. */332 /** R3: Profiling of emR3RawPrivileged. */ 330 333 STAMPROFILE StatPrivEmu; 331 /** HC: Profiling of emR3RawExecuteInstruction. */334 /** R3: Profiling of emR3RawExecuteInstruction. */ 332 335 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. */ 340 337 STAMCOUNTER StatHwAccExecuteEntry; 341 338 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; 346 345 #if HC_ARCH_BITS == 64 347 346 RTRCPTR padding0; … … 349 348 350 349 /** Tree for keeping track of cli occurances (debug only). */ 351 R3PTRTYPE(PAVLPVNODECORE) pCliStatTree;350 R3PTRTYPE(PAVLPVNODECORE) pCliStatTree; 352 351 STAMCOUNTER StatTotalClis; 353 352 #if 0 -
trunk/src/VBox/VMM/VMMAll/DBGFAll.cpp
r11311 r12688 128 128 return pVM->dbgf.s.fSingleSteppingRaw; 129 129 } 130 -
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r12657 r12688 49 49 50 50 /******************************************************************************* 51 * Structures and Typedefs *52 *******************************************************************************/53 54 55 /*******************************************************************************56 51 * Internal Functions * 57 52 *******************************************************************************/ … … 59 54 60 55 56 61 57 /** 62 58 * Get the current execution manager status. … … 69 65 } 70 66 67 71 68 /** 72 69 * Flushes the REM translation blocks the next time we execute code there. 73 70 * 74 71 * @param pVM The VM handle. 72 * 73 * @todo This doesn't belong here, it should go in REMAll.cpp! 75 74 */ 76 75 EMDECL(void) EMFlushREMTBs(PVM pVM) … … 81 80 82 81 #ifndef IN_GC 82 83 83 /** 84 84 * Read callback for disassembly function; supports reading bytes that cross a page boundary … … 95 95 DISCPUSTATE *pCpu = (DISCPUSTATE *)pvUserdata; 96 96 PVM pVM = (PVM)pCpu->apvUserData[0]; 97 # ifdef IN_RING097 # ifdef IN_RING0 98 98 int rc = PGMPhysReadGCPtr(pVM, pDest, pSrc, cb); 99 99 AssertMsgRC(rc, ("PGMPhysReadGCPtr failed for pSrc=%VGv cb=%x\n", pSrc, cb)); 100 # else100 # else /* IN_RING3 */ 101 101 if (!PATMIsPatchGCAddr(pVM, pSrc)) 102 102 { … … 115 115 } 116 116 } 117 # endif /* IN_RING0*/117 # endif /* IN_RING3 */ 118 118 return VINF_SUCCESS; 119 119 } … … 124 124 } 125 125 126 #else 126 #else /* IN_GC */ 127 127 128 128 DECLINLINE(int) emDisCoreOne(PVM pVM, DISCPUSTATE *pCpu, RTGCUINTPTR InstrGC, uint32_t *pOpsize) … … 131 131 } 132 132 133 #endif 133 #endif /* IN_GC */ 134 134 135 135 … … 227 227 } 228 228 229 229 230 /** 230 231 * Interprets the current instruction using the supplied DISCPUSTATE structure. … … 254 255 EMDECL(int) EMInterpretInstructionCPU(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 255 256 { 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); 257 258 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); 259 260 if (VBOX_SUCCESS(rc)) 260 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,InterpretSucceeded));261 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,InterpretSucceeded)); 261 262 else 262 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,InterpretFailed));263 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,InterpretFailed)); 263 264 return rc; 264 265 } … … 312 313 #endif 313 314 } 315 314 316 315 317 DECLINLINE(int) emRamWrite(PVM pVM, RTGCPTR GCDest, void *pSrc, uint32_t cb) … … 343 345 } 344 346 347 345 348 /* Convert sel:addr to a flat GC address */ 346 349 static RTGCPTR emConvertToFlatAddr(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, POP_PARAMETER pParam, RTGCPTR pvAddr) … … 349 352 return SELMToFlat(pVM, enmPrefixSeg, pRegFrame, pvAddr); 350 353 } 354 351 355 352 356 #if defined(VBOX_STRICT) || defined(LOG_ENABLED) … … 378 382 case OP_RDMSR: return "Rdmsr"; 379 383 case OP_WRMSR: return "Wrmsr"; 384 case OP_ADD: return "Add"; 380 385 case OP_ADC: return "Adc"; 381 case OP_BTC: return "Btc"; 386 case OP_SUB: return "Sub"; 387 case OP_SBB: return "Sbb"; 382 388 case OP_RDTSC: return "Rdtsc"; 383 389 case OP_STI: return "Sti"; … … 385 391 case OP_HLT: return "Hlt"; 386 392 case OP_IRET: return "Iret"; 387 case OP_CMPXCHG: return "CmpXchg";388 case OP_CMPXCHG8B: return "CmpXchg8b";389 393 case OP_MOVNTPS: return "MovNTPS"; 390 394 case OP_STOSWD: return "StosWD"; … … 393 397 case OP_BTR: return "Btr"; 394 398 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 395 403 default: 396 404 Log(("Unknown opcode %d\n", pCpu->pCurInstr->opcode)); … … 398 406 } 399 407 } 400 #endif 408 #endif /* VBOX_STRICT || LOG_ENABLED */ 409 401 410 402 411 /** … … 538 547 } 539 548 549 540 550 /** 541 551 * INC and DEC emulation. 542 552 */ 543 553 static int emInterpretIncDec(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize, 544 PFN _EMULATE_PARAM2 pfnEmulate)554 PFNEMULATEPARAM2 pfnEmulate) 545 555 { 546 556 OP_PARAMVAL param1; … … 605 615 return VERR_EM_INTERPRETER; 606 616 } 617 607 618 608 619 /** … … 694 705 */ 695 706 static int emInterpretOrXorAnd(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize, 696 PFN _EMULATE_PARAM3 pfnEmulate)707 PFNEMULATEPARAM3 pfnEmulate) 697 708 { 698 709 OP_PARAMVAL param1, param2; … … 705 716 return VERR_EM_INTERPRETER; 706 717 707 #ifdef LOG_ENABLED708 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 else717 pszInstr = "OrXorAnd??";718 #endif719 720 718 #ifdef IN_GC 721 719 if (TRPMHasTrap(pVM)) … … 731 729 if (pCpu->param1.size < pCpu->param2.size) 732 730 { 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! */ 734 732 return VERR_EM_INTERPRETER; 735 733 } … … 774 772 } 775 773 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)); 777 775 778 776 /* Data read, emulate instruction. */ 779 777 uint32_t eflags = pfnEmulate(&valpar1, valpar2, param2.size); 780 778 781 LogFlow(("emInterpretOrXorAnd %s result %RX64\n", pszInstr, valpar1));779 LogFlow(("emInterpretOrXorAnd %s result %RX64\n", emGetMnemonic(pCpu), valpar1)); 782 780 783 781 /* Update guest's eflags and finish. */ … … 799 797 return VERR_EM_INTERPRETER; 800 798 } 799 801 800 802 801 /** … … 880 879 } 881 880 881 882 882 /** 883 883 * ADD, ADC & SUB Emulation. 884 884 */ 885 885 static int emInterpretAddSub(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize, 886 PFN _EMULATE_PARAM3 pfnEmulate)886 PFNEMULATEPARAM3 pfnEmulate) 887 887 { 888 888 OP_PARAMVAL param1, param2; … … 895 895 return VERR_EM_INTERPRETER; 896 896 897 #ifdef LOG_ENABLED898 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 else907 pszInstr = "AddSub??";908 #endif909 910 897 #ifdef IN_GC 911 898 if (TRPMHasTrap(pVM)) … … 921 908 if (pCpu->param1.size < pCpu->param2.size) 922 909 { 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! */ 924 911 return VERR_EM_INTERPRETER; 925 912 } … … 988 975 } 989 976 977 990 978 /** 991 979 * ADC Emulation. … … 999 987 } 1000 988 989 1001 990 /** 1002 991 * BTR/C/S Emulation. 1003 992 */ 1004 993 static int emInterpretBitTest(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize, 1005 PFN _EMULATE_PARAM2_UINT32 pfnEmulate)994 PFNEMULATEPARAM2UINT32 pfnEmulate) 1006 995 { 1007 996 OP_PARAMVAL param1, param2; … … 1014 1003 return VERR_EM_INTERPRETER; 1015 1004 1016 #ifdef LOG_ENABLED1017 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 else1026 pszInstr = "Bit??";1027 #endif1028 1029 1005 #ifdef IN_GC 1030 1006 if (TRPMHasTrap(pVM)) … … 1056 1032 } 1057 1033 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)); 1059 1035 pParam1 = (RTGCPTR)((RTGCUINTPTR)pParam1 + valpar2/8); 1060 1036 #ifdef IN_GC … … 1093 1069 return VERR_EM_INTERPRETER; 1094 1070 } 1071 1095 1072 1096 1073 /** … … 1171 1148 return VINF_SUCCESS; 1172 1149 } 1150 1173 1151 1174 1152 /** … … 1311 1289 return VERR_EM_INTERPRETER; 1312 1290 } 1291 1313 1292 1314 1293 #ifndef IN_GC … … 1452 1431 1453 1432 1454 /* 1433 /** 1455 1434 * [LOCK] CMPXCHG emulation. 1456 1435 */ … … 1459 1438 { 1460 1439 OP_PARAMVAL param1, param2; 1461 1462 #ifdef LOG_ENABLED1463 const char *pszInstr;1464 1465 if (pCpu->prefix & PREFIX_LOCK)1466 pszInstr = "Lock CmpXchg";1467 else1468 pszInstr = "CmpXchg";1469 #endif1470 1440 1471 1441 /* Source to make DISQueryParamVal read the register value - ugly hack */ … … 1511 1481 } 1512 1482 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)); 1514 1484 1515 1485 if (pCpu->prefix & PREFIX_LOCK) … … 1518 1488 eflags = EMEmulateCmpXchg(pvParam1, &pRegFrame->rax, valpar, pCpu->param2.size); 1519 1489 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))); 1521 1491 1522 1492 /* Update guest's eflags and finish. */ … … 1528 1498 } 1529 1499 1530 #else 1500 #else /* IN_GC */ 1531 1501 static int emInterpretCmpXchg(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1532 1502 { 1533 1503 Assert(pCpu->mode != CPUMODE_64BIT); /** @todo check */ 1534 1504 OP_PARAMVAL param1, param2; 1535 1536 #ifdef LOG_ENABLED1537 const char *pszInstr;1538 1539 if (pCpu->prefix & PREFIX_LOCK)1540 pszInstr = "Lock CmpXchg";1541 else1542 pszInstr = "CmpXchg";1543 #endif1544 1505 1545 1506 /* Source to make DISQueryParamVal read the register value - ugly hack */ … … 1584 1545 } 1585 1546 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)); 1587 1548 1588 1549 MMGCRamRegisterTrapHandler(pVM); … … 1595 1556 if (VBOX_FAILURE(rc)) 1596 1557 { 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)); 1598 1559 return VERR_EM_INTERPRETER; 1599 1560 } 1600 1561 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))); 1602 1563 1603 1564 /* Update guest's eflags and finish. */ … … 1619 1580 Assert(pCpu->mode != CPUMODE_64BIT); /** @todo check */ 1620 1581 OP_PARAMVAL param1; 1621 1622 #ifdef LOG_ENABLED1623 const char *pszInstr;1624 1625 if (pCpu->prefix & PREFIX_LOCK)1626 pszInstr = "Lock CmpXchg8b";1627 else1628 pszInstr = "CmpXchg8b";1629 #endif1630 1582 1631 1583 /* Source to make DISQueryParamVal read the register value - ugly hack */ … … 1656 1608 } 1657 1609 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)); 1659 1611 1660 1612 MMGCRamRegisterTrapHandler(pVM); … … 1667 1619 if (VBOX_FAILURE(rc)) 1668 1620 { 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)); 1670 1622 return VERR_EM_INTERPRETER; 1671 1623 } 1672 1624 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))); 1674 1626 1675 1627 /* Update guest's eflags and finish; note that *only* ZF is affected. */ … … 1683 1635 return VERR_EM_INTERPRETER; 1684 1636 } 1685 #endif 1686 1687 /* 1637 #endif /* IN_GC */ 1638 1639 1640 /** 1688 1641 * [LOCK] XADD emulation. 1689 1642 */ … … 1755 1708 return VERR_EM_INTERPRETER; 1756 1709 } 1757 #endif 1710 #endif /* IN_GC */ 1711 1758 1712 1759 1713 #ifdef IN_GC … … 1809 1763 return VINF_SUCCESS; 1810 1764 } 1811 #endif 1765 #endif /* IN_GC */ 1766 1812 1767 1813 1768 /** … … 1820 1775 } 1821 1776 1822 /**1823 * INVLPG Emulation.1824 */1825 1777 1826 1778 /** … … 1855 1807 } 1856 1808 1809 1810 /** 1811 * INVLPG Emulation. 1812 */ 1857 1813 static int emInterpretInvlPg(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1858 1814 { … … 1893 1849 } 1894 1850 1895 /**1896 * CPUID Emulation.1897 */1898 1851 1899 1852 /** … … 1915 1868 } 1916 1869 1870 1871 /** 1872 * CPUID Emulation. 1873 */ 1917 1874 static int emInterpretCpuId(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1918 1875 { … … 1921 1878 } 1922 1879 1923 /**1924 * MOV CRx Emulation.1925 */1926 1880 1927 1881 /** … … 2016 1970 } 2017 1971 1972 /** 1973 * CLTS Emulation. 1974 */ 2018 1975 static int emInterpretClts(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 2019 1976 { 2020 1977 return EMInterpretCLTS(pVM); 2021 1978 } 1979 2022 1980 2023 1981 /** … … 2165 2123 } 2166 2124 2125 2126 /** 2127 * MOV CRx 2128 */ 2167 2129 static int emInterpretMovCRx(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 2168 2130 { … … 2177 2139 } 2178 2140 2179 /**2180 * MOV DRx2181 */2182 2141 2183 2142 /** … … 2218 2177 } 2219 2178 2179 2220 2180 /** 2221 2181 * Interpret DRx read … … 2247 2207 } 2248 2208 2209 2210 /** 2211 * MOV DRx 2212 */ 2249 2213 static int emInterpretMovDRx(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 2250 2214 { … … 2265 2229 return rc; 2266 2230 } 2231 2267 2232 2268 2233 /** … … 2305 2270 } 2306 2271 2272 2307 2273 #ifdef IN_GC 2308 2274 /** … … 2341 2307 } 2342 2308 2343 2344 /**2345 * RDTSC Emulation.2346 */2347 2309 2348 2310 /** … … 2370 2332 } 2371 2333 2334 2335 /** 2336 * RDTSC Emulation. 2337 */ 2372 2338 static int emInterpretRdtsc(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 2373 2339 { 2374 2340 return EMInterpretRdtsc(pVM, pRegFrame); 2375 2341 } 2342 2376 2343 2377 2344 /** … … 2423 2390 } 2424 2391 2392 2425 2393 #ifdef LOG_ENABLED 2426 static const char *emMSRtoString(u nsigneduMsr)2427 { 2428 switch (uMsr)2394 static const char *emMSRtoString(uint32_t uMsr) 2395 { 2396 switch (uMsr) 2429 2397 { 2430 2398 case MSR_IA32_APICBASE: … … 2487 2455 return "Unknown MSR"; 2488 2456 } 2489 #endif 2457 #endif /* LOG_ENABLED */ 2458 2490 2459 2491 2460 /** … … 2599 2568 } 2600 2569 2570 2601 2571 /** 2602 2572 * RDMSR Emulation. … … 2609 2579 } 2610 2580 2581 2611 2582 /** 2612 2583 * Interpret WRMSR … … 2615 2586 * @param pVM The VM handle. 2616 2587 * @param pRegFrame The register frame. 2617 *2618 2588 */ 2619 2589 EMDECL(int) EMInterpretWrmsr(PVM pVM, PCPUMCTXCORE pRegFrame) … … 2732 2702 } 2733 2703 2704 2734 2705 /** 2735 2706 * WRMSR Emulation. … … 2739 2710 return EMInterpretWrmsr(pVM, pRegFrame); 2740 2711 } 2712 2741 2713 2742 2714 /** … … 2759 2731 { 2760 2732 Log(("WARNING: refusing instruction emulation for user-mode code!!\n")); 2761 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,FailedUserMode));2733 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,FailedUserMode)); 2762 2734 return VERR_EM_INTERPRETER; 2763 2735 } … … 2786 2758 { 2787 2759 //Log(("EMInterpretInstruction: wrong prefix!!\n")); 2788 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,FailedPrefix));2760 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,FailedPrefix)); 2789 2761 return VERR_EM_INTERPRETER; 2790 2762 } … … 2803 2775 rc = emInterpret##InstrFn(pVM, pCpu, pRegFrame, pvFault, pcbSize, pfnEmulate); \ 2804 2776 if (VBOX_SUCCESS(rc)) \ 2805 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,Instr)); \2777 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Instr)); \ 2806 2778 else \ 2807 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,Failed##Instr)); \2779 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Failed##Instr)); \ 2808 2780 return rc 2809 2781 #define INTERPRET_CASE_EX_PARAM3(opcode, Instr, InstrFn, pfnEmulate) \ … … 2811 2783 rc = emInterpret##InstrFn(pVM, pCpu, pRegFrame, pvFault, pcbSize, pfnEmulate); \ 2812 2784 if (VBOX_SUCCESS(rc)) \ 2813 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,Instr)); \2785 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Instr)); \ 2814 2786 else \ 2815 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,Failed##Instr)); \2787 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Failed##Instr)); \ 2816 2788 return rc 2817 2789 … … 2825 2797 rc = emInterpret##Instr(pVM, pCpu, pRegFrame, pvFault, pcbSize); \ 2826 2798 if (VBOX_SUCCESS(rc)) \ 2827 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,Instr)); \2799 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Instr)); \ 2828 2800 else \ 2829 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,Failed##Instr)); \2801 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,Failed##Instr)); \ 2830 2802 return rc 2831 2803 #define INTERPRET_STAT_CASE(opcode, Instr) \ 2832 case opcode: STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(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; 2833 2805 2834 2806 INTERPRET_CASE(OP_XCHG,Xchg); … … 2878 2850 default: 2879 2851 Log3(("emInterpretInstructionCPU: opcode=%d\n", pCpu->pCurInstr->opcode)); 2880 STAM_COUNTER_INC(&pVM->em.s.CTX SUFF(pStats)->CTXMID(Stat,FailedMisc));2852 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,FailedMisc)); 2881 2853 return VERR_EM_INTERPRETER; 2882 2854 #undef INTERPRET_CASE_EX_PARAM2 … … 2920 2892 return pVM->em.s.GCPtrInhibitInterrupts; 2921 2893 } 2894 -
trunk/src/VBox/VMM/VMMAll/EMAllA.asm
r12005 r12688 30 30 ; The register we use for value pointers (And,Or,Dec,Inc). 31 31 %ifdef RT_ARCH_AMD64 32 %define MY_PTR_REGrcx32 %define MY_PTR_REG rcx 33 33 %else 34 %define MY_PTR_REGecx34 %define MY_PTR_REG ecx 35 35 %endif 36 36 … … 38 38 ; The register we return the result in. 39 39 %ifdef RT_ARCH_AMD64 40 %define MY_RET_REGrax40 %define MY_RET_REG rax 41 41 %else 42 %define MY_RET_REGeax42 %define MY_RET_REG eax 43 43 %endif 44 44 … … 239 239 ENDPROC EMEmulateOr 240 240 241 241 242 ;; 242 243 ; Emulate LOCK OR instruction. … … 310 311 pop dword [eax] 311 312 %endif 312 mov eax, VINF_SUCCESS 313 mov eax, VINF_SUCCESS 313 314 retn 314 315 315 316 %ifdef IN_GC 316 ; #PF resume point. 317 ; #PF resume point. 317 318 GLOBALNAME EMEmulateLockOr_Error 318 319 mov eax, VERR_ACCESS_DENIED … … 321 322 322 323 ENDPROC EMEmulateLockOr 324 323 325 324 326 ;; … … 386 388 ENDPROC EMEmulateXor 387 389 390 388 391 ;; 389 392 ; Emulate INC instruction, CDECL calling conv. … … 511 514 ENDPROC EMEmulateDec 512 515 516 513 517 ;; 514 518 ; Emulate ADD instruction, CDECL calling conv. … … 575 579 ENDPROC EMEmulateAdd 576 580 581 577 582 ;; 578 583 ; Emulate ADC instruction, CDECL calling conv. … … 643 648 ENDPROC EMEmulateAdcWithCarrySet 644 649 650 645 651 ;; 646 652 ; Emulate SUB instruction, CDECL calling conv. … … 773 779 774 780 %ifdef IN_GC 775 ; #PF resume point. 781 ; #PF resume point. 776 782 GLOBALNAME EMEmulateLockBtr_Error 777 783 mov eax, VERR_ACCESS_DENIED … … 781 787 ENDPROC EMEmulateLockBtr 782 788 789 783 790 ;; 784 791 ; Emulate BTC instruction, CDECL calling conv. … … 810 817 retn 811 818 ENDPROC EMEmulateBtc 819 812 820 813 821 ;; … … 929 937 ENDPROC EMEmulateLockCmpXchg 930 938 939 931 940 ;; 932 941 ; Emulate CMPXCHG instruction, CDECL calling conv. … … 1016 1025 ENDPROC EMEmulateCmpXchg 1017 1026 1027 1018 1028 %if 0 1019 1029 ;; not tested!! -
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r12566 r12688 763 763 * @param pfnEmulate Instruction emulation function. 764 764 */ 765 static int iomInterpretOrXorAnd(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, PFN _EMULATE_PARAM3 pfnEmulate)765 static int iomInterpretOrXorAnd(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, PFNEMULATEPARAM3 pfnEmulate) 766 766 { 767 767 unsigned cb = 0; -
trunk/src/VBox/VMM/testcase/tstVMStructGC.cpp
r12566 r12688 121 121 GEN_CHECK_OFF(EM, StatForcedActions); 122 122 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); 125 126 GEN_CHECK_OFF(EM, pCliStatTree); 126 127
Note:
See TracChangeset
for help on using the changeset viewer.