Changeset 24283 in vbox for trunk/src/VBox
- Timestamp:
- Nov 3, 2009 10:45:09 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54264
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r24251 r24283 2259 2259 RTGCUINTPTR errCode, instrInfo; 2260 2260 bool fSetupTPRCaching = false; 2261 uint64_t u64 LSTAR = 0;2261 uint64_t u64OldLSTAR = 0; 2262 2262 uint8_t u8LastTPR = 0; 2263 2263 RTCCUINTREG uOldEFlags = ~(RTCCUINTREG)0; … … 2612 2612 { 2613 2613 Assert(pVM->hwaccm.s.fTPRPatchingActive); 2614 u64 LSTAR = ASMRdMsr(MSR_K8_LSTAR);2614 u64OldLSTAR = ASMRdMsr(MSR_K8_LSTAR); 2615 2615 ASMWrMsr(MSR_K8_LSTAR, u8LastTPR); 2616 2616 } … … 2636 2636 { 2637 2637 Assert(pVM->hwaccm.s.fTPRPatchingActive); 2638 p Ctx->msrLSTAR = ASMRdMsr(MSR_K8_LSTAR);2639 ASMWrMsr(MSR_K8_LSTAR, u64 LSTAR);2638 pVCpu->hwaccm.s.vmx.pVAPIC[0x80] = pCtx->msrLSTAR = ASMRdMsr(MSR_K8_LSTAR); 2639 ASMWrMsr(MSR_K8_LSTAR, u64OldLSTAR); 2640 2640 } 2641 2641 … … 2736 2736 2737 2737 /* Sync back the TPR if it was changed. */ 2738 if (fSetupTPRCaching) 2739 { 2740 if (pVM->hwaccm.s.fTPRPatchingActive) 2741 { 2742 if ((pCtx->msrLSTAR & 0xff) != u8LastTPR) 2743 { 2744 /* Our patch code uses LSTAR for TPR caching. */ 2745 rc = PDMApicSetTPR(pVCpu, pCtx->msrLSTAR & 0xff); 2746 AssertRC(rc); 2747 } 2748 } 2749 else 2750 if (u8LastTPR != pVCpu->hwaccm.s.vmx.pVAPIC[0x80]) 2751 { 2752 rc = PDMApicSetTPR(pVCpu, pVCpu->hwaccm.s.vmx.pVAPIC[0x80]); 2753 AssertRC(rc); 2754 } 2738 if ( fSetupTPRCaching 2739 && u8LastTPR != pVCpu->hwaccm.s.vmx.pVAPIC[0x80] 2740 { 2741 rc = PDMApicSetTPR(pVCpu, pVCpu->hwaccm.s.vmx.pVAPIC[0x80]); 2742 AssertRC(rc); 2755 2743 } 2756 2744
Note:
See TracChangeset
for help on using the changeset viewer.