Changeset 10269 in vbox for trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
- Timestamp:
- Jul 5, 2008 11:21:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r10206 r10269 1136 1136 { 1137 1137 Log(("Pending inject %VX64 at %VGv exit=%08x\n", pVM->hwaccm.s.Event.intInfo, pCtx->rip, exitCode)); 1138 1139 #ifdef LOG_ENABLED 1140 SVM_EVENT Event; 1141 Event.au64[0] = pVM->hwaccm.s.Event.intInfo; 1142 1143 if ( exitCode == SVM_EXIT_EXCEPTION_E 1144 && Event.n.u8Vector == 0xE) 1145 { 1146 Log(("Double fault!\n")); 1147 } 1148 #endif 1149 1138 1150 pVM->hwaccm.s.Event.fPending = true; 1139 1151 /* Error code present? (redundant) */ … … 1227 1239 * Forward the trap to the guest by injecting the exception and resuming execution. 1228 1240 */ 1229 Log(("Guest page fault at %VGv cr2=%VGv error code %x rsp=% RX64\n", pCtx->rip, uFaultAddress, errCode,pCtx->rsp));1241 Log(("Guest page fault at %VGv cr2=%VGv error code %x rsp=%VGv\n", (RTGCPTR)pCtx->rip, uFaultAddress, errCode, (RTGCPTR)pCtx->rsp)); 1230 1242 STAM_COUNTER_INC(&pVM->hwaccm.s.StatExitGuestPF); 1231 1243 … … 1442 1454 case SVM_EXIT_CPUID: /* Guest software attempted to execute CPUID. */ 1443 1455 { 1444 Log2(("SVM: Cpuid %x\n", pCtx->eax));1456 Log2(("SVM: Cpuid at %VGv for %x\n", pCtx->rip, pCtx->eax)); 1445 1457 STAM_COUNTER_INC(&pVM->hwaccm.s.StatExitCpuid); 1446 1458 rc = EMInterpretCpuId(pVM, CPUMCTX2CORE(pCtx));
Note:
See TracChangeset
for help on using the changeset viewer.