Edit JIT Cache size and disable null descriptors

This commit is contained in:
stossy11 2024-11-23 13:09:51 +11:00
parent 437f7f8c04
commit 8d4f004a59
7 changed files with 10 additions and 9 deletions

View file

@ -19,7 +19,7 @@ namespace ARMeilleure.Translation.Cache
private const int CodeAlignment = 4; // Bytes.
private const int CacheSize = 2047 * 1024 * 1024;
private const int CacheSizeIOS = 512 * 1024 * 1024;
private const int CacheSizeIOS = 512 * 768 * 1024;
private static ReservedRegion _jitRegion;
private static JitCacheInvalidation _jitCacheInvalidator;