Changeset 41668 in vbox for trunk/src/VBox/VMM/VMMAll/EMAll.cpp
- Timestamp:
- Jun 12, 2012 1:15:51 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78475
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r41663 r41668 364 364 State.GCPtr = NIL_RTGCPTR; 365 365 } 366 return DISCoreOne Ex(InstrGC, pDis->mode, emReadBytes, &State, pDis, pOpsize);366 return DISCoreOneWithReader(InstrGC, pDis->mode, emReadBytes, &State, pDis, pOpsize); 367 367 } 368 368 … … 377 377 State.GCPtr = InstrGC; 378 378 379 return DISCoreOne Ex(InstrGC, pDis->mode, emReadBytes, &State, pDis, pOpsize);379 return DISCoreOneWithReader(InstrGC, pDis->mode, emReadBytes, &State, pDis, pOpsize); 380 380 } 381 381 … … 459 459 #endif 460 460 461 rc = DISCoreOneEx(GCPtrInstr, 462 SELMGetCpuModeFromSelector(pVCpu, pCtxCore->eflags, pCtxCore->cs, (PCPUMSELREGHID)&pCtxCore->csHid), 463 emReadBytes, &State, 464 pDis, pcbInstr); 461 DISCPUMODE enmCpuMode = SELMGetCpuModeFromSelector(pVCpu, pCtxCore->eflags, pCtxCore->cs, (PCPUMSELREGHID)&pCtxCore->csHid); 462 rc = DISCoreOneWithReader(GCPtrInstr, enmCpuMode, emReadBytes, &State, pDis, pcbInstr); 465 463 if (RT_SUCCESS(rc)) 466 464 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.