Changeset 20321 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jun 5, 2009 12:22:42 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r20320 r20321 1739 1739 u32tpr = (u32tpr >> 4) & 0xf; 1740 1740 1741 pCtx->eip += cbOp;1742 1741 /* Check if the next instruction overwrites a general purpose register. If 1743 1742 * it does, then we can safely use it ourselves. 1744 1743 */ 1744 pCtx->eip += cbOp; 1745 1745 rc = EMInterpretDisasOne(pVM, pVCpu, CPUMCTX2CORE(pCtx), &Cpu, &cbOp); 1746 1746 pCtx->eip = oldEip; … … 1785 1785 * mov ecx, dword [fffe0080] (5 bytes) 1786 1786 */ 1787 pCtx->eip += cbOp; 1787 1788 rc = EMInterpretDisasOne(pVM, pVCpu, CPUMCTX2CORE(pCtx), &Cpu, &cbOp); 1788 1789 pCtx->eip = oldEip; … … 1836 1837 * shr eax, 4 1837 1838 */ 1839 pCtx->eip += cbOp; 1838 1840 rc = EMInterpretDisasOne(pVM, pVCpu, CPUMCTX2CORE(pCtx), &Cpu, &cbOp); 1839 1841 pCtx->eip = oldEip;
Note:
See TracChangeset
for help on using the changeset viewer.