Changeset 40446 in vbox
- Timestamp:
- Mar 13, 2012 3:16:30 PM (13 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r40442 r40446 63 63 #endif 64 64 65 /* Used to pass information during instruction disassembly. */65 /** Used to pass information during instruction disassembly. */ 66 66 typedef struct 67 67 { -
trunk/src/VBox/VMM/VMMR3/EMHwaccm.cpp
r40377 r40446 201 201 if (RT_SUCCESS(rc)) 202 202 { 203 uint32_t size;204 205 203 switch (Cpu.pCurInstr->opcode) 206 204 { … … 215 213 case OP_XCHG: 216 214 STAM_PROFILE_START(&pVCpu->em.s.StatMiscEmu, a); 217 rc = EMInterpretInstructionC PU(pVM, pVCpu, &Cpu, CPUMCTX2CORE(pCtx), 0, &size);215 rc = EMInterpretInstructionCpuUpdtPC(pVM, pVCpu, &Cpu, CPUMCTX2CORE(pCtx), 0); 218 216 if (RT_SUCCESS(rc)) 219 217 { 220 pCtx->rip += Cpu.opsize;221 218 #ifdef EM_NOTIFY_HWACCM 222 219 if (pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_HWACC)
Note:
See TracChangeset
for help on using the changeset viewer.