Changeset 39302 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Nov 15, 2011 10:54:22 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r39138 r39302 579 579 * @param pIemCpu The per CPU IEM state. 580 580 */ 581 DECLINLINE(void) iemInitDecode (PIEMCPU pIemCpu)581 DECLINLINE(void) iemInitDecoder(PIEMCPU pIemCpu) 582 582 { 583 583 PCPUMCTX pCtx = pIemCpu->CTX_SUFF(pCtx); … … 617 617 uint8_t const cbOldOpcodes = pIemCpu->cbOpcode; 618 618 #endif 619 iemInitDecode (pIemCpu);619 iemInitDecoder(pIemCpu); 620 620 621 621 /* … … 1690 1690 uint64_t uCr2) 1691 1691 { 1692 NOREF(cbInstr); NOREF(uCr2);1692 NOREF(cbInstr); 1693 1693 1694 1694 /* … … 1962 1962 pCtx->rip = uNewEip; 1963 1963 pCtx->rflags.u &= ~fEflToClear; 1964 1965 if (fFlags & IEM_XCPT_FLAGS_CR2) 1966 pCtx->cr2 = uCr2; 1964 1967 1965 1968 if (fFlags & IEM_XCPT_FLAGS_T_CPU_XCPT) … … 5599 5602 || pOrgCtx->rip == 0x00100ffe 5600 5603 ) 5604 #endif 5605 #if 1 5606 && pOrgCtx->rip == 0x9022bb3a 5601 5607 #endif 5602 5608 #if 0 … … 6423 6429 VMM_INT_DECL(VBOXSTRICTRC) IEMInjectTrap(PVMCPU pVCpu, uint8_t u8TrapNo, TRPMEVENT enmType, uint16_t uErrCode, RTGCPTR uCr2) 6424 6430 { 6431 iemInitDecoder(&pVCpu->iem.s); 6432 6425 6433 uint32_t fFlags; 6426 6434 switch (enmType)
Note:
See TracChangeset
for help on using the changeset viewer.