VirtualBox

Changeset 60804 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
May 3, 2016 2:13:51 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
107007
Message:

VMM: Introduced the new APIC update force-flag and relevant fixes, Win8.1 SMP boots now.
VMM/HMVMXR0: Fixed the HLT exit to use instruction length and also keep the INHIBIT force-flag
more in sync with the VT-x's guest-interruptibility state.

Location:
trunk/src/recompiler
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/VBoxREMWrapper.cpp

    r60307 r60804  
    534534
    535535/* VMM args */
     536#ifdef VBOX_WITH_NEW_APIC
     537static const REMPARMDESC g_aArgsAPICUpdatePendingInterrupts[] =
     538{
     539    { REMPARMDESC_FLAGS_INT,        sizeof(PVMCPU),             NULL }
     540};
     541#endif
    536542static const REMPARMDESC g_aArgsCPUMGetGuestCpl[] =
    537543{
     
    12131219static REMFNDESC g_aVMMImports[] =
    12141220{
     1221#ifdef VBOX_WITH_NEW_APIC
     1222    { "APICUpdatePendingInterrupts",            VMM_FN(APICUpdatePendingInterrupts),    &g_aArgsAPICUpdatePendingInterrupts[0],     RT_ELEMENTS(g_aArgsAPICUpdatePendingInterrupts),       REMFNDESC_FLAGS_RET_VOID,   0,                  NULL },
     1223#endif
    12151224    { "CPUMR3RemEnter",                         VMM_FN(CPUMR3RemEnter),                 &g_aArgsCPUMR3RemEnter[0],                  RT_ELEMENTS(g_aArgsCPUMR3RemEnter),                    REMFNDESC_FLAGS_RET_INT,    sizeof(uint32_t),   NULL },
    12161225    { "CPUMR3RemLeave",                         VMM_FN(CPUMR3RemLeave),                 &g_aArgsCPUMR3RemLeave[0],                  RT_ELEMENTS(g_aArgsCPUMR3RemLeave),                    REMFNDESC_FLAGS_RET_VOID,   0,                  NULL },
     
    12311240    { "CPUMGetGuestCS",                         VMM_FN(CPUMGetGuestCS),                 &g_aArgsVMCPU[0],                           RT_ELEMENTS(g_aArgsVMCPU),                             REMFNDESC_FLAGS_RET_INT,    sizeof(RTSEL),      NULL },
    12321241    { "CPUMGetGuestSS",                         VMM_FN(CPUMGetGuestSS),                 &g_aArgsVMCPU[0],                           RT_ELEMENTS(g_aArgsVMCPU),                             REMFNDESC_FLAGS_RET_INT,    sizeof(RTSEL),      NULL },
    1233     { "CPUMGetGuestCpuVendor",                  VMM_FN(CPUMGetGuestCpuVendor),          &g_aArgsVM[0],                           RT_ELEMENTS(g_aArgsVMCPU),                                REMFNDESC_FLAGS_RET_INT, sizeof(CPUMCPUVENDOR), NULL },
     1242    { "CPUMGetGuestCpuVendor",                  VMM_FN(CPUMGetGuestCpuVendor),          &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVMCPU),                             REMFNDESC_FLAGS_RET_INT, sizeof(CPUMCPUVENDOR), NULL },
    12341243    { "CPUMQueryGuestCtxPtr",                   VMM_FN(CPUMQueryGuestCtxPtr),           &g_aArgsCPUMQueryGuestCtxPtr[0],            RT_ELEMENTS(g_aArgsCPUMQueryGuestCtxPtr),              REMFNDESC_FLAGS_RET_INT,    sizeof(PCPUMCTX),   NULL },
    12351244    { "CSAMR3MonitorPage",                      VMM_FN(CSAMR3MonitorPage),              &g_aArgsCSAMR3MonitorPage[0],               RT_ELEMENTS(g_aArgsCSAMR3MonitorPage),                 REMFNDESC_FLAGS_RET_INT,    sizeof(int),        NULL },
  • trunk/src/recompiler/VBoxRecompiler.c

    r60740 r60804  
    11191119        pVM->rem.s.Env.interrupt_request = CPU_INTERRUPT_SINGLE_INSTR;
    11201120#endif
    1121         if (   VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC)
     1121        if (   VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_UPDATE_APIC | VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC)
    11221122            || pVM->rem.s.u32PendingInterrupt != REM_NO_PENDING_IRQ)
    11231123            pVM->rem.s.Env.interrupt_request |= CPU_INTERRUPT_HARD;
     
    25182518     */
    25192519    pVM->rem.s.Env.interrupt_request &= ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB | CPU_INTERRUPT_TIMER);
     2520#ifdef VBOX_WITH_NEW_APIC
     2521    if (VMCPU_FF_TEST_AND_CLEAR(pVCpu, VMCPU_FF_UPDATE_APIC))
     2522        APICUpdatePendingInterrupts(pVCpu);
     2523#endif
    25202524    if (    pVM->rem.s.u32PendingInterrupt != REM_NO_PENDING_IRQ
    25212525        ||  VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC))
    25222526    {
    2523 #ifdef VBOX_WITH_NEW_APIC
    2524         if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC))
    2525             APICUpdatePendingInterrupts(pVCpu);
    2526 #endif
    25272527        pVM->rem.s.Env.interrupt_request |= CPU_INTERRUPT_HARD;
    25282528    }
     
    45124512    uint8_t u8Interrupt;
    45134513    int     rc;
     4514
     4515#ifdef VBOX_WITH_NEW_APIC
     4516    if (VMCPU_FF_TEST_AND_CLEAR(env->pVCpu, VMCPU_FF_UPDATE_APIC))
     4517        APICUpdatePendingInterrupts(env->pVCpu);
     4518#endif
    45144519
    45154520    /* When we fail to forward interrupts directly in raw mode, we fall back to the recompiler.
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