VirtualBox

Changeset 99988 in vbox


Ignore:
Timestamp:
May 26, 2023 10:43:27 AM (23 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
157650
Message:

VMM/IEM: Externalized prefetch queue flushing from IEMAllCImpl.cpp so that the file can be compiled w/o access to the decoder IEMCPU members. Prevents writing non-recompiler friendly code. bugref:10369

Location:
trunk/src/VBox/VMM
Files:
3 edited

Legend:

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

    r99984 r99988  
    764764#endif
    765765}
     766
     767
     768/**
     769 * Flushes the prefetch buffer, light version.
     770 */
     771void iemOpcodeFlushLight(PVMCPUCC pVCpu, uint8_t cbInstr)
     772{
     773#ifndef IEM_WITH_CODE_TLB
     774    pVCpu->iem.s.cbOpcode = cbInstr;
     775#else
     776    RT_NOREF(pVCpu, cbInstr);
     777#endif
     778}
     779
     780
     781/**
     782 * Flushes the prefetch buffer, heavy version.
     783 */
     784void iemOpcodeFlushHeavy(PVMCPUCC pVCpu, uint8_t cbInstr)
     785{
     786#ifndef IEM_WITH_CODE_TLB
     787    pVCpu->iem.s.cbOpcode = cbInstr;
     788#elif 1
     789    pVCpu->iem.s.pbInstrBuf = NULL;
     790    RT_NOREF(cbInstr);
     791#else
     792    RT_NOREF(pVCpu, cbInstr);
     793#endif
     794}
     795
     796
    766797
    767798#ifdef IEM_WITH_CODE_TLB
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp

    r99985 r99988  
    3232#define LOG_GROUP   LOG_GROUP_IEM
    3333#define VMCPU_INCL_CPUM_GST_CTX
    34 /// @todo #define IEM_WITH_OPAQUE_DECODER_STATE
     34#define IEM_WITH_OPAQUE_DECODER_STATE
    3535#include <VBox/vmm/iem.h>
    3636#include <VBox/vmm/cpum.h>
     
    7575/**
    7676 * Flushes the prefetch buffer, light version.
     77 * @todo The \#if conditions here must match the ones in iemOpcodeFlushLight().
    7778 */
    7879#ifndef IEM_WITH_CODE_TLB
    79 # define IEM_FLUSH_PREFETCH_LIGHT(a_pVCpu, a_cbInstr) do { (a_pVCpu)->iem.s.cbOpcode   = (a_cbInstr); } while (0)
     80# define IEM_FLUSH_PREFETCH_LIGHT(a_pVCpu, a_cbInstr) iemOpcodeFlushLight(a_pVCpu, a_cbInstr)
    8081#else
    8182# define IEM_FLUSH_PREFETCH_LIGHT(a_pVCpu, a_cbInstr) do { } while (0)
     
    8485/**
    8586 * Flushes the prefetch buffer, heavy version.
    86  */
    87 #ifndef IEM_WITH_CODE_TLB
    88 # define IEM_FLUSH_PREFETCH_HEAVY(a_pVCpu, a_cbInstr) do { (a_pVCpu)->iem.s.cbOpcode   = (a_cbInstr); } while (0)
     87 * @todo The \#if conditions here must match the ones in iemOpcodeFlushHeavy().
     88 */
     89#if !defined(IEM_WITH_CODE_TLB) || 1
     90# define IEM_FLUSH_PREFETCH_HEAVY(a_pVCpu, a_cbInstr) iemOpcodeFlushHeavy(a_pVCpu, a_cbInstr)
    8991#else
    90 # if 1
    91 #  define IEM_FLUSH_PREFETCH_HEAVY(a_pVCpu, a_cbInstr) do { (a_pVCpu)->iem.s.pbInstrBuf = NULL; } while (0)
    92 # else
    93 #  define IEM_FLUSH_PREFETCH_HEAVY(a_pVCpu, a_cbInstr) do { } while (0)
    94 # endif
     92# define IEM_FLUSH_PREFETCH_HEAVY(a_pVCpu, a_cbInstr) do { } while (0)
    9593#endif
    9694
     
    26332631
    26342632    /* Flush the prefetch buffer. */
    2635     IEM_FLUSH_PREFETCH_HEAVY(pVCpu, cbInstr); /** @todo use light flush for same privlege? */
     2633    IEM_FLUSH_PREFETCH_HEAVY(pVCpu, cbInstr); /** @todo use light flush for same privilege? */
    26362634
    26372635    return iemRegFinishClearingRF(pVCpu);
  • trunk/src/VBox/VMM/include/IEMInternal.h

    r99984 r99988  
    40414041VBOXSTRICTRC    iemMemPageTranslateAndCheckAccess(PVMCPUCC pVCpu, RTGCPTR GCPtrMem, uint32_t cbAccess, uint32_t fAccess, PRTGCPHYS pGCPhysMem) RT_NOEXCEPT;
    40424042
     4043void            iemOpcodeFlushLight(PVMCPUCC pVCpu, uint8_t cbInstr);
     4044void            iemOpcodeFlushHeavy(PVMCPUCC pVCpu, uint8_t cbInstr);
    40434045#ifdef IEM_WITH_CODE_TLB
    40444046void            iemOpcodeFetchBytesJmp(PVMCPUCC pVCpu, size_t cbDst, void *pvDst) IEM_NOEXCEPT_MAY_LONGJMP;
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