Changeset 72570 in vbox
- Timestamp:
- Jun 15, 2018 8:09:14 PM (6 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r72569 r72570 447 447 case EMEXITACTION_EXEC_PROBE: 448 448 { 449 LogFlow(("EMHistoryExec/EXEC_PROBE: %RX64 , max %u\n", pExitRec->uFlatPC));449 LogFlow(("EMHistoryExec/EXEC_PROBE: %RX64\n", pExitRec->uFlatPC)); 450 450 PEMEXITREC pExitRecUnconst = (PEMEXITREC)pExitRec; 451 451 VBOXSTRICTRC rcStrict = IEMExecForExits(pVCpu, fWillExit, -
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r72569 r72570 14183 14183 if (rcStrict == VINF_SUCCESS) 14184 14184 { 14185 uint32_t cInstructionSinceLastExit = 0;14186 14187 14185 #ifdef IEM_WITH_SETJMP 14188 14186 jmp_buf JmpBuf; … … 14193 14191 #endif 14194 14192 { 14193 uint32_t cInstructionSinceLastExit = 0; 14194 14195 14195 /* 14196 14196 * The run loop. We limit ourselves to 4096 instructions right now. … … 14251 14251 || pStats->cInstructions < cMinInstructions)) 14252 14252 { 14253 if ( cMaxInstructions-- > 0)14253 if (pStats->cInstructions < cMaxInstructions) 14254 14254 { 14255 14255 if (cInstructionSinceLastExit <= cMaxInstructionsWithoutExits) … … 14261 14261 } 14262 14262 } 14263 Assert(!(fCpu & VMCPU_FF_IEM)); 14263 14264 } 14264 14265 Assert(pVCpu->iem.s.cActiveMappings == 0);
Note:
See TracChangeset
for help on using the changeset viewer.