VirtualBox

Changeset 60542 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Apr 18, 2016 3:02:26 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
106671
Message:

VMM/APIC: Much fun with alignment and sizes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/APIC.cpp

    r60516 r60542  
    207207    memset((void *)&pX2ApicPage->self_ipi, 0, sizeof(pX2ApicPage->self_ipi));
    208208
    209     /* Clear the posted interrupt bitmaps. */
     209    /* Clear the pending-interrupt bitmaps. */
    210210    PAPICCPU pApicCpu = VMCPU_TO_APICCPU(pVCpu);
    211211    memset((void *)&pApicCpu->ApicPibLevel, 0, sizeof(APICPIB));
     
    251251    LogFlow(("APIC%u: APICR3Reset\n", pVCpu->idCpu));
    252252
    253 #ifdef RT_STRICT
     253#ifdef VBOX_STRICT
    254254    /* Verify that the initial APIC ID reported via CPUID matches our VMCPU ID assumption. */
    255     CPUMCPUIDLEAF CpuLeaf;
    256     int rc = CPUMR3CpuIdGetLeaf(pVCpu->CTX_SUFF(pVM), &CpuLeaf, 1, 0);
    257     AssertRC(rc);
    258     Assert(((CpuLeaf.uEbx >> 24) & 0xff) == pVCpu->idCpu);
     255    uint32_t uEax, uEbx, uEcx, uEdx;
     256    uEax = uEbx = uEcx = uEdx = UINT32_MAX;
     257    CPUMGetGuestCpuId(pVCpu, 1, 0, &uEax, &uEbx, &uEcx, &uEdx);
     258    Assert(((uEbx >> 24) & 0xff) == pVCpu->idCpu);
    259259#endif
    260260
     261    /*
     262     * The state following a power-up or reset is a superset of the INIT state.
     263     * See Intel spec. 10.4.7.3 "Local APIC State After an INIT Reset ('Wait-for-SIPI' State)"
     264     */
    261265    apicR3InitIpi(pVCpu);
    262 
    263     PXAPICPAGE pXApicPage = VMCPU_TO_XAPICPAGE(pVCpu);
    264266
    265267    /*
     
    268270     * The version determines the number of LVT entries and size of the APIC ID (8 bits for P4).
    269271     */
     272    PXAPICPAGE pXApicPage = VMCPU_TO_XAPICPAGE(pVCpu);
    270273#if XAPIC_HARDWARE_VERSION == XAPIC_HARDWARE_VERSION_P4
    271274    pXApicPage->version.u.u8MaxLvtEntry = XAPIC_MAX_LVT_ENTRIES_P4 - 1;
     
    276279#endif
    277280
    278     /** @todo It isn't very clear where the default base address is (re)initialized,
    279      *        atm we do it here in Reset. */
     281    /** @todo It isn't clear in the spec. where exactly the default base address
     282     *        is (re)initialized, atm we do it here in Reset. */
    280283    apicR3ResetBaseMsr(pVCpu);
    281284
     
    985988            SupApicPage.Phys = NIL_RTHCPHYS;
    986989
     990            Assert(pVCpu->idCpu == idCpu);
    987991            Assert(pApicCpu->pvApicPageR3 == NIL_RTR0PTR);
    988992            Assert(pApicCpu->pvApicPageR0 == NIL_RTR0PTR);
     
    11541158    pApic->pApicDevRC   = PDMINS_2_DATA_RCPTR(pDevIns);
    11551159
    1156     rc = apicR3InitState(pVM);
    1157     AssertRCReturn(rc, rc);
     1160    apicR3InitState(pVM);
    11581161
    11591162    /*
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