VirtualBox

Ignore:
Timestamp:
Mar 28, 2025 10:36:52 PM (6 weeks ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
168227
Message:

VMM/IEM: More ARM target work. jiraref:VBP-1598

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/PGMAll.cpp

    r108156 r108792  
    20272027
    20282028
    2029 #ifdef VBOX_VMM_TARGET_X86 /** @todo Implement PGMGstQueryPageFast for ARMv8! */
    20302029/**
    20312030 * Gets effective Guest OS page information.
     
    20452044    Assert(!(fFlags & ~(PGMQPAGE_F_VALID_MASK)));
    20462045    Assert(!(fFlags & PGMQPAGE_F_EXECUTE) || !(fFlags & PGMQPAGE_F_WRITE));
     2046#ifdef VBOX_VMM_TARGET_X86 /** @todo Implement PGMGstQueryPageFast for ARMv8! */
    20472047    uintptr_t idx = pVCpu->pgm.s.idxGuestModeData;
    20482048    AssertReturn(idx < RT_ELEMENTS(g_aPgmGuestModeData), VERR_PGM_MODE_IPE);
    20492049    AssertReturn(g_aPgmGuestModeData[idx].pfnGetPage, VERR_PGM_MODE_IPE);
    20502050    return g_aPgmGuestModeData[idx].pfnQueryPageFast(pVCpu, GCPtr, fFlags, pWalk);
    2051 }
    2052 #endif /* VBOX_VMM_TARGET_X86 */
     2051#else  /* !VBOX_VMM_TARGET_X86 */
     2052    RT_NOREF(pVCpu, GCPtr, fFlags, pWalk);
     2053    AssertFailedReturn(VERR_NOT_IMPLEMENTED);
     2054#endif /* !VBOX_VMM_TARGET_X86 */
     2055}
    20532056
    20542057
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