Changeset 72690 in vbox for trunk/src/VBox
- Timestamp:
- Jun 26, 2018 2:54:37 AM (7 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/NEMAllNativeTemplate-win.cpp.h
r72689 r72690 1541 1541 1542 1542 /* Advance the RIP. */ 1543 Assert(pMsgHdr->InstructionLength >= cbMinInstr); 1543 Assert(pMsgHdr->InstructionLength >= cbMinInstr); RT_NOREF_PV(cbMinInstr); 1544 1544 pCtx->rip += pMsgHdr->InstructionLength; 1545 1545 pCtx->rflags.Bits.u1RF = 0; … … 3759 3759 { 3760 3760 DBGFTRACE_CUSTOM(pVCpu->CTX_SUFF(pVM), "IoCtlMessageSlotHandleAndGetNextRestart/1 %#x (f=%#x)", rcNt, fFlags); 3761 STAM_REL_COUNTER_INC(&pVCpu->nem.s.StatStopCpuPending Odd);3761 STAM_REL_COUNTER_INC(&pVCpu->nem.s.StatStopCpuPendingAlerts); 3762 3762 Assert(fFlags & VID_MSHAGN_F_GET_NEXT_MESSAGE); 3763 3763 … … 3926 3926 else 3927 3927 { 3928 /** @todo I'm not so sure about this now... */ 3928 3929 DBGFTRACE_CUSTOM(pVM, "nemStop#9: %#x %#x %#x", pMappingHeader->enmVidMsgType, 3929 3930 pMappingHeader->cbMessage, pMsgForTrace->Header.MessageType); -
trunk/src/VBox/VMM/VMMR3/NEMR3Native-win.cpp
r72687 r72690 1229 1229 STAMR3RegisterF(pVM, &pNemCpu->StatStopCpuSuccess, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "Number of successful CPU stops", "/NEM/CPU%u/StopCpuSuccess", iCpu); 1230 1230 STAMR3RegisterF(pVM, &pNemCpu->StatStopCpuPending, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "Number of pending CPU stops", "/NEM/CPU%u/StopCpuPending", iCpu); 1231 STAMR3RegisterF(pVM, &pNemCpu->StatStopCpuPendingAlerts,STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "Number of pending CPU stop alerts", "/NEM/CPU%u/StopCpuPendingAlerts", iCpu); 1231 1232 STAMR3RegisterF(pVM, &pNemCpu->StatStopCpuPendingOdd, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "Number of odd pending CPU stops (see code)", "/NEM/CPU%u/StopCpuPendingOdd", iCpu); 1232 1233 STAMR3RegisterF(pVM, &pNemCpu->StatCancelChangedState, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "Number of cancel changed state", "/NEM/CPU%u/CancelChangedState", iCpu); -
trunk/src/VBox/VMM/include/NEMInternal.h
r72634 r72690 302 302 STAMCOUNTER StatStopCpuSuccess; 303 303 STAMCOUNTER StatStopCpuPending; 304 STAMCOUNTER StatStopCpuPendingAlerts; 304 305 STAMCOUNTER StatStopCpuPendingOdd; 305 306 STAMCOUNTER StatCancelChangedState;
Note:
See TracChangeset
for help on using the changeset viewer.