Changeset 99988 in vbox
- Timestamp:
- May 26, 2023 10:43:27 AM (23 months ago)
- svn:sync-xref-src-repo-rev:
- 157650
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r99984 r99988 764 764 #endif 765 765 } 766 767 768 /** 769 * Flushes the prefetch buffer, light version. 770 */ 771 void 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 */ 784 void 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 766 797 767 798 #ifdef IEM_WITH_CODE_TLB -
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp
r99985 r99988 32 32 #define LOG_GROUP LOG_GROUP_IEM 33 33 #define VMCPU_INCL_CPUM_GST_CTX 34 /// @todo#define IEM_WITH_OPAQUE_DECODER_STATE34 #define IEM_WITH_OPAQUE_DECODER_STATE 35 35 #include <VBox/vmm/iem.h> 36 36 #include <VBox/vmm/cpum.h> … … 75 75 /** 76 76 * Flushes the prefetch buffer, light version. 77 * @todo The \#if conditions here must match the ones in iemOpcodeFlushLight(). 77 78 */ 78 79 #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) 80 81 #else 81 82 # define IEM_FLUSH_PREFETCH_LIGHT(a_pVCpu, a_cbInstr) do { } while (0) … … 84 85 /** 85 86 * 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) 89 91 #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) 95 93 #endif 96 94 … … 2633 2631 2634 2632 /* Flush the prefetch buffer. */ 2635 IEM_FLUSH_PREFETCH_HEAVY(pVCpu, cbInstr); /** @todo use light flush for same priv lege? */2633 IEM_FLUSH_PREFETCH_HEAVY(pVCpu, cbInstr); /** @todo use light flush for same privilege? */ 2636 2634 2637 2635 return iemRegFinishClearingRF(pVCpu); -
trunk/src/VBox/VMM/include/IEMInternal.h
r99984 r99988 4041 4041 VBOXSTRICTRC iemMemPageTranslateAndCheckAccess(PVMCPUCC pVCpu, RTGCPTR GCPtrMem, uint32_t cbAccess, uint32_t fAccess, PRTGCPHYS pGCPhysMem) RT_NOEXCEPT; 4042 4042 4043 void iemOpcodeFlushLight(PVMCPUCC pVCpu, uint8_t cbInstr); 4044 void iemOpcodeFlushHeavy(PVMCPUCC pVCpu, uint8_t cbInstr); 4043 4045 #ifdef IEM_WITH_CODE_TLB 4044 4046 void iemOpcodeFetchBytesJmp(PVMCPUCC pVCpu, size_t cbDst, void *pvDst) IEM_NOEXCEPT_MAY_LONGJMP;
Note:
See TracChangeset
for help on using the changeset viewer.