VirtualBox

Changeset 21960 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Aug 4, 2009 2:37:27 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
50659
Message:

TPR patching updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp

    r21951 r21960  
    10891089            else
    10901090                /* 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                 */
    10931093                svmR0SetMSRPermission(pVM, MSR_K8_LSTAR, true, true);
    10941094        }
     
    11041104            else
    11051105                /* 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                 */
    11081108                pVMCB->ctrl.u16InterceptWrCRx &= ~RT_BIT(8);
    11091109        }
     
    14911491
    14921492    /* 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            }
    15081511        }
    15091512    }
     
    23852388        uint32_t cbSize;
    23862389
     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
    23872401        /* 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. */
    23882402        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.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette