Changeset 17327 in vbox for trunk/src/VBox
- Timestamp:
- Mar 4, 2009 8:46:40 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43701
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r17303 r17327 1208 1208 Log(("HWACCMR3EmulateIoBlock -> enabled\n")); 1209 1209 pVCpu->hwaccm.s.EmulateIoBlock.fEnabled = true; 1210 pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionE sp = pCtx->rsp;1210 pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEip = pCtx->rip; 1211 1211 pVCpu->hwaccm.s.EmulateIoBlock.cr0 = pCtx->cr0; 1212 1212 return VINF_EM_RESCHEDULE_REM; … … 1230 1230 /* If we're still executing the IO code, then return false. */ 1231 1231 if ( RT_UNLIKELY(pVCpu->hwaccm.s.EmulateIoBlock.fEnabled) 1232 && pCtx->rsp <= pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEsp 1232 && pCtx->rip < pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEip + 0x200 1233 && pCtx->rip > pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEip - 0x200 1233 1234 && pCtx->cr0 == pVCpu->hwaccm.s.EmulateIoBlock.cr0) 1234 1235 return false; -
trunk/src/VBox/VMM/HWACCMInternal.h
r17295 r17327 556 556 uint8_t u8Align[7]; 557 557 558 /** Espat the start of the io code we wish to emulate in the recompiler. */559 RTGCPTR GCPtrFunctionE sp;558 /** RIP at the start of the io code we wish to emulate in the recompiler. */ 559 RTGCPTR GCPtrFunctionEip; 560 560 561 561 uint64_t cr0;
Note:
See TracChangeset
for help on using the changeset viewer.