Changeset 13566 in vbox for trunk/src/VBox/VMM/VMMAll/EMAll.cpp
- Timestamp:
- Oct 24, 2008 5:51:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r13565 r13566 1269 1269 1270 1270 #ifndef IN_GC 1271 /* 1271 /** 1272 1272 * [REP] STOSWD emulation 1273 *1274 1273 */ 1275 1274 static int emInterpretStosWD(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) … … 1405 1404 return rc; 1406 1405 } 1407 #endif 1408 1406 #endif /* !IN_GC */ 1407 1408 #ifndef IN_GC 1409 1409 1410 1410 /** 1411 1411 * [LOCK] CMPXCHG emulation. 1412 1412 */ 1413 #ifndef IN_GC1414 1413 static int emInterpretCmpXchg(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1415 1414 { … … 1475 1474 } 1476 1475 1477 /* 1476 1477 /** 1478 1478 * [LOCK] CMPXCHG8B emulation. 1479 1479 */ … … 1529 1529 1530 1530 #else /* IN_GC */ 1531 1532 /** 1533 * [LOCK] CMPXCHG emulation. 1534 */ 1531 1535 static int emInterpretCmpXchg(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1532 1536 { … … 1601 1605 } 1602 1606 1603 /* 1607 1608 /** 1604 1609 * [LOCK] CMPXCHG8B emulation. 1605 1610 */ … … 1661 1666 return VERR_EM_INTERPRETER; 1662 1667 } 1668 1663 1669 #endif /* IN_GC */ 1664 1670 1665 1671 #ifdef IN_GC 1666 1672 /** 1667 1673 * [LOCK] XADD emulation. 1668 1674 */ 1669 #ifdef IN_GC1670 1675 static int emInterpretXAdd(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1671 1676 {
Note:
See TracChangeset
for help on using the changeset viewer.