Changeset 106126 in vbox for trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
- Timestamp:
- Sep 23, 2024 10:45:45 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
r106125 r106126 93 93 /** Always count instructions for now. */ 94 94 # define IEMNATIVE_WITH_INSTRUCTION_COUNTING 95 #endif96 97 /** @def IEMNATIVE_WITH_RECOMPILER_PROLOGUE_SINGLETON98 * Enables having only a single prologue for native TBs. */99 #if 1 || defined(DOXYGEN_RUNNING)100 # define IEMNATIVE_WITH_RECOMPILER_PROLOGUE_SINGLETON101 95 #endif 102 96 … … 2821 2815 2822 2816 2823 #ifdef IEMNATIVE_WITH_RECOMPILER_PROLOGUE_SINGLETON2824 2817 /** @note iemNativeTbEntry returns VBOXSTRICTRC, but we don't declare it as 2825 2818 * it saves us the trouble of a hidden parameter on MSC/amd64. */ 2826 # 2819 #ifdef RT_ARCH_AMD64 2827 2820 extern "C" IEM_DECL_NATIVE_HLP_DEF(int, iemNativeTbEntry, (PVMCPUCC pVCpu, uintptr_t pfnTbBody)); 2828 # 2821 #elif defined(RT_ARCH_ARM64) 2829 2822 extern "C" IEM_DECL_NATIVE_HLP_DEF(int, iemNativeTbEntry, (PVMCPUCC pVCpu, PCPUMCTX pCpumCtx, uintptr_t pfnTbBody)); 2830 # endif2831 2823 #endif 2832 2824
Note:
See TracChangeset
for help on using the changeset viewer.