Changeset 77378 in vbox
- Timestamp:
- Feb 20, 2019 1:09:21 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128926
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r77357 r77378 14386 14386 * Initial decoder init w/ prefetch, then setup setjmp. 14387 14387 */ 14388 unsigned cTimerPoll = 0; 14388 14389 VBOXSTRICTRC rcStrict = iemInitDecoderAndPrefetchOpcodes(pVCpu, false); 14389 14390 if (rcStrict == VINF_SUCCESS) … … 14443 14444 if (cInstr-- > 0) 14444 14445 { 14445 Assert(pVCpu->iem.s.cActiveMappings == 0); 14446 iemReInitDecoder(pVCpu); 14447 continue; 14446 /* Poll timers every 128 call*/ 14447 if ( (++cTimerPoll & 0x7f) != 0 14448 || !TMTimerPollBool(pVM, pVCpu)) 14449 { 14450 Assert(pVCpu->iem.s.cActiveMappings == 0); 14451 iemReInitDecoder(pVCpu); 14452 continue; 14453 } 14448 14454 } 14449 14455 }
Note:
See TracChangeset
for help on using the changeset viewer.