Changeset 21960 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 4, 2009 2:37:27 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50659
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r21951 r21960 1089 1089 else 1090 1090 /* No interrupts are pending, so we don't need to be explicitely notified. 1091 * There are enough world switches for detecting pending interrupts.1092 */1091 * There are enough world switches for detecting pending interrupts. 1092 */ 1093 1093 svmR0SetMSRPermission(pVM, MSR_K8_LSTAR, true, true); 1094 1094 } … … 1104 1104 else 1105 1105 /* No interrupts are pending, so we don't need to be explicitely notified. 1106 * There are enough world switches for detecting pending interrupts.1107 */1106 * There are enough world switches for detecting pending interrupts. 1107 */ 1108 1108 pVMCB->ctrl.u16InterceptWrCRx &= ~RT_BIT(8); 1109 1109 } … … 1491 1491 1492 1492 /* Sync back the TPR if it was changed. */ 1493 if ( fSyncTPR 1494 && pVM->hwaccm.s.svm.fTPRPatchingActive 1495 && (pCtx->msrLSTAR & 0xff) != u8LastTPR) 1496 { 1497 /* Our patch code uses LSTAR for TPR caching. */ 1498 rc = PDMApicSetTPR(pVCpu, pCtx->msrLSTAR & 0xff); 1499 AssertRC(rc); 1500 } 1501 else 1502 { 1503 if ( fSyncTPR 1504 && (u8LastTPR >> 4) != pVMCB->ctrl.IntCtrl.n.u8VTPR) 1505 { 1506 rc = PDMApicSetTPR(pVCpu, pVMCB->ctrl.IntCtrl.n.u8VTPR << 4); /* cr8 bits 3-0 correspond to bits 7-4 of the task priority mmio register. */ 1507 AssertRC(rc); 1493 if (fSyncTPR) 1494 { 1495 if (pVM->hwaccm.s.svm.fTPRPatchingActive) 1496 { 1497 if ((pCtx->msrLSTAR & 0xff) != u8LastTPR) 1498 { 1499 /* Our patch code uses LSTAR for TPR caching. */ 1500 rc = PDMApicSetTPR(pVCpu, pCtx->msrLSTAR & 0xff); 1501 AssertRC(rc); 1502 } 1503 } 1504 else 1505 { 1506 if ((u8LastTPR >> 4) != pVMCB->ctrl.IntCtrl.n.u8VTPR) 1507 { 1508 rc = PDMApicSetTPR(pVCpu, pVMCB->ctrl.IntCtrl.n.u8VTPR << 4); /* cr8 bits 3-0 correspond to bits 7-4 of the task priority mmio register. */ 1509 AssertRC(rc); 1510 } 1508 1511 } 1509 1512 } … … 2385 2388 uint32_t cbSize; 2386 2389 2390 /* When an interrupt is pending, we'll let MSR_K8_LSTAR writes fault in our TPR patch code. */ 2391 if ( pVM->hwaccm.s.svm.fTPRPatchingActive 2392 && pCtx->ecx == MSR_K8_LSTAR 2393 && pVMCB->ctrl.u64ExitInfo1 == 1 /* wrmsr */ 2394 && (pCtx->eax & 0xff) != u8LastTPR) 2395 { 2396 /* Our patch code uses LSTAR for TPR caching. */ 2397 rc = PDMApicSetTPR(pVCpu, pCtx->eax & 0xff); 2398 AssertRC(rc); 2399 } 2400 2387 2401 /* Note: the intel manual claims there's a REX version of RDMSR that's slightly different, so we play safe by completely disassembling the instruction. */ 2388 2402 STAM_COUNTER_INC((pVMCB->ctrl.u64ExitInfo1 == 0) ? &pVCpu->hwaccm.s.StatExitRdmsr : &pVCpu->hwaccm.s.StatExitWrmsr);
Note:
See TracChangeset
for help on using the changeset viewer.