Changeset 60804 in vbox for trunk/src/recompiler
- Timestamp:
- May 3, 2016 2:13:51 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107007
- Location:
- trunk/src/recompiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxREMWrapper.cpp
r60307 r60804 534 534 535 535 /* VMM args */ 536 #ifdef VBOX_WITH_NEW_APIC 537 static const REMPARMDESC g_aArgsAPICUpdatePendingInterrupts[] = 538 { 539 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL } 540 }; 541 #endif 536 542 static const REMPARMDESC g_aArgsCPUMGetGuestCpl[] = 537 543 { … … 1213 1219 static REMFNDESC g_aVMMImports[] = 1214 1220 { 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 1215 1224 { "CPUMR3RemEnter", VMM_FN(CPUMR3RemEnter), &g_aArgsCPUMR3RemEnter[0], RT_ELEMENTS(g_aArgsCPUMR3RemEnter), REMFNDESC_FLAGS_RET_INT, sizeof(uint32_t), NULL }, 1216 1225 { "CPUMR3RemLeave", VMM_FN(CPUMR3RemLeave), &g_aArgsCPUMR3RemLeave[0], RT_ELEMENTS(g_aArgsCPUMR3RemLeave), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, … … 1231 1240 { "CPUMGetGuestCS", VMM_FN(CPUMGetGuestCS), &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(RTSEL), NULL }, 1232 1241 { "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 }, 1234 1243 { "CPUMQueryGuestCtxPtr", VMM_FN(CPUMQueryGuestCtxPtr), &g_aArgsCPUMQueryGuestCtxPtr[0], RT_ELEMENTS(g_aArgsCPUMQueryGuestCtxPtr), REMFNDESC_FLAGS_RET_INT, sizeof(PCPUMCTX), NULL }, 1235 1244 { "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 1119 1119 pVM->rem.s.Env.interrupt_request = CPU_INTERRUPT_SINGLE_INSTR; 1120 1120 #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) 1122 1122 || pVM->rem.s.u32PendingInterrupt != REM_NO_PENDING_IRQ) 1123 1123 pVM->rem.s.Env.interrupt_request |= CPU_INTERRUPT_HARD; … … 2518 2518 */ 2519 2519 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 2520 2524 if ( pVM->rem.s.u32PendingInterrupt != REM_NO_PENDING_IRQ 2521 2525 || VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC)) 2522 2526 { 2523 #ifdef VBOX_WITH_NEW_APIC2524 if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC))2525 APICUpdatePendingInterrupts(pVCpu);2526 #endif2527 2527 pVM->rem.s.Env.interrupt_request |= CPU_INTERRUPT_HARD; 2528 2528 } … … 4512 4512 uint8_t u8Interrupt; 4513 4513 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 4514 4519 4515 4520 /* 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.