Changeset 3510 in vbox
- Timestamp:
- Jul 9, 2007 2:37:57 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22729
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/EMInternal.h
r2981 r3510 135 135 STAMCOUNTER StatGCCmpXchg; 136 136 STAMCOUNTER StatHCCmpXchg; 137 STAMCOUNTER StatGCClts; 138 STAMCOUNTER StatHCClts; 137 139 138 140 STAMCOUNTER StatGCInterpretFailed; … … 202 204 STAMCOUNTER StatGCFailedRdtsc; 203 205 STAMCOUNTER StatHCFailedRdtsc; 206 STAMCOUNTER StatGCFailedClts; 207 STAMCOUNTER StatHCFailedClts; 204 208 205 209 STAMCOUNTER StatGCFailedUserMode; -
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r3313 r3510 1391 1391 } 1392 1392 1393 static int emInterpretClts(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1394 { 1395 return EMInterpretCLTS(pVM); 1396 } 1393 1397 1394 1398 /** … … 1804 1808 INTERPRET_CASE(OP_MOV_DR,MovDRx); 1805 1809 INTERPRET_CASE(OP_LLDT,LLdt); 1810 INTERPRET_CASE(OP_CLTS,Clts); 1806 1811 INTERPRET_CASE(OP_MONITOR, Monitor); 1807 1812 INTERPRET_CASE(OP_MWAIT, MWait);
Note:
See TracChangeset
for help on using the changeset viewer.