CPU/Recompiler: Add a fast block lookup array

Up to 15% perf improvement.
This commit is contained in:
Connor McLaughlin
2020-08-08 15:42:11 +10:00
parent f6e88353eb
commit b1377fe0d9
3 changed files with 114 additions and 4 deletions

View File

@ -83,6 +83,10 @@ void Initialize(bool use_recompiler);
void Shutdown();
void Execute();
#ifdef WITH_RECOMPILER
void ExecuteRecompiler();
#endif
/// Flushes the code cache, forcing all blocks to be recompiled.
void Flush();