VirtualBox

Changeset 60740 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
Apr 28, 2016 12:51:47 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
106930
Message:

VMM, recompiler: Fix APIC to update pending interrupts to IRR when the force-flag is set, rather
than in PDMGetInterrupt() which gets called only with EFLAGS.IF set in certain places.

Location:
trunk/src/recompiler
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/Makefile.kmk

    r56301 r60740  
    7070ifdef IEM_VERIFICATION_MODE
    7171 VBoxRemPrimary_DEFS          += IEM_VERIFICATION_MODE
     72endif
     73ifdef VBOX_WITH_NEW_APIC
     74 VBoxRemPrimary_DEFS          += VBOX_WITH_NEW_APIC
    7275endif
    7376ifdef VBOX_WITH_RAW_MODE
  • trunk/src/recompiler/VBoxRecompiler.c

    r58536 r60740  
    5050#include <VBox/vmm/dbgf.h>
    5151#include <VBox/dbg.h>
     52#ifdef VBOX_WITH_NEW_APIC
     53# include <VBox/vmm/apic.h>
     54#endif
    5255#include <VBox/vmm/hm.h>
    5356#include <VBox/vmm/patm.h>
     
    25172520    if (    pVM->rem.s.u32PendingInterrupt != REM_NO_PENDING_IRQ
    25182521        ||  VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC))
     2522    {
     2523#ifdef VBOX_WITH_NEW_APIC
     2524        if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC))
     2525            APICUpdatePendingInterrupts(pVCpu);
     2526#endif
    25192527        pVM->rem.s.Env.interrupt_request |= CPU_INTERRUPT_HARD;
     2528    }
    25202529
    25212530    /*
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