jit: add compile option

This commit is contained in:
RSDuck
2019-07-14 19:24:00 +02:00
parent 360317be8c
commit 411fb57c07
13 changed files with 149 additions and 53 deletions

View File

@ -14,6 +14,36 @@ if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release) set(CMAKE_BUILD_TYPE Release)
endif() endif()
include(CheckSymbolExists)
function(detect_architecture symbol arch)
if (NOT DEFINED ARCHITECTURE)
set(CMAKE_REQUIRED_QUIET 1)
check_symbol_exists("${symbol}" "" ARCHITECTURE_${arch})
unset(CMAKE_REQUIRED_QUIET)
# The output variable needs to be unique across invocations otherwise
# CMake's crazy scope rules will keep it defined
if (ARCHITECTURE_${arch})
set(ARCHITECTURE "${arch}" PARENT_SCOPE)
set(ARCHITECTURE_${arch} 1 PARENT_SCOPE)
add_definitions(-DARCHITECTURE_${arch}=1)
endif()
endif()
endfunction()
detect_architecture("__x86_64__" x86_64)
detect_architecture("__i386__" x86)
detect_architecture("__arm__" ARM)
detect_architecture("__aarch64__" ARM64)
if (ARCHITECTURE STREQUAL x86_64)
option(ENABLE_JIT "Enable x64 JIT recompiler" ON)
endif()
if (ENABLE_JIT)
add_definitions(-DJIT_ENABLED)
endif()
if (CMAKE_BUILD_TYPE STREQUAL Release) if (CMAKE_BUILD_TYPE STREQUAL Release)
option(ENABLE_LTO "Enable link-time optimization" ON) option(ENABLE_LTO "Enable link-time optimization" ON)
else() else()

View File

@ -80,15 +80,8 @@ ARMv4::ARMv4() : ARM(1)
// //
} }
namespace ARMJIT {extern int instructionPopularityARM[ARMInstrInfo::ak_Count];}
void ARM::Reset() void ARM::Reset()
{ {
FILE* blabla = fopen("fhhg", "w");
for (int i = 0; i < ARMInstrInfo::ak_Count; i++)
fprintf(blabla, "%d -> %dx\n", i, ARMJIT::instructionPopularityARM[i]);
fclose(blabla);
Cycles = 0; Cycles = 0;
Halted = 0; Halted = 0;
@ -548,6 +541,7 @@ void ARMv5::Execute()
Halted = 0; Halted = 0;
} }
#ifdef JIT_ENABLED
void ARMv5::ExecuteJIT() void ARMv5::ExecuteJIT()
{ {
if (Halted) if (Halted)
@ -599,6 +593,7 @@ void ARMv5::ExecuteJIT()
if (Halted == 2) if (Halted == 2)
Halted = 0; Halted = 0;
} }
#endif
void ARMv4::Execute() void ARMv4::Execute()
{ {
@ -677,6 +672,7 @@ void ARMv4::Execute()
Halted = 0; Halted = 0;
} }
#ifdef JIT_ENABLED
void ARMv4::ExecuteJIT() void ARMv4::ExecuteJIT()
{ {
if (Halted) if (Halted)
@ -728,4 +724,5 @@ void ARMv4::ExecuteJIT()
if (Halted == 2) if (Halted == 2)
Halted = 0; Halted = 0;
} }
#endif

View File

@ -52,7 +52,9 @@ public:
} }
virtual void Execute() = 0; virtual void Execute() = 0;
#ifdef ENABLE_JIT
virtual void ExecuteJIT() = 0; virtual void ExecuteJIT() = 0;
#endif
bool CheckCondition(u32 code) bool CheckCondition(u32 code)
{ {
@ -152,7 +154,9 @@ public:
void DataAbort(); void DataAbort();
void Execute(); void Execute();
#ifdef JIT_ENABLED
void ExecuteJIT(); void ExecuteJIT();
#endif
// all code accesses are forced nonseq 32bit // all code accesses are forced nonseq 32bit
u32 CodeRead32(u32 addr, bool branch); u32 CodeRead32(u32 addr, bool branch);
@ -271,7 +275,9 @@ public:
void JumpTo(u32 addr, bool restorecpsr = false); void JumpTo(u32 addr, bool restorecpsr = false);
void Execute(); void Execute();
#ifdef JIT_ENABLED
void ExecuteJIT(); void ExecuteJIT();
#endif
u16 CodeRead16(u32 addr) u16 CodeRead16(u32 addr)
{ {

View File

@ -4,7 +4,10 @@
#include <assert.h> #include <assert.h>
#include "../dolphin/CommonFuncs.h"
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h>
#else #else
#include <sys/mman.h> #include <sys/mman.h>
#include <unistd.h> #include <unistd.h>
@ -32,8 +35,6 @@ const int RegisterCache<Compiler, X64Reg>::NativeRegsAvailable =
#endif #endif
; ;
int instructionPopularityARM[ARMInstrInfo::ak_Count];
/* /*
We'll repurpose this .bss memory We'll repurpose this .bss memory
@ -42,29 +43,33 @@ u8 CodeMemory[1024 * 1024 * 32];
Compiler::Compiler() Compiler::Compiler()
{ {
#ifdef _WIN32 {
#else #ifdef _WIN32
u64 pagesize = sysconf(_SC_PAGE_SIZE); SYSTEM_INFO sysInfo;
#endif GetSystemInfo(&sysInfo);
u8* pageAligned = (u8*)(((u64)CodeMemory & ~(pagesize - 1)) + pagesize); u64 pageSize = (u64)sysInfo.dwPageSize;
u64 alignedSize = (((u64)CodeMemory + sizeof(CodeMemory)) & ~(pagesize - 1)) - (u64)pageAligned; #else
u64 pageSize = sysconf(_SC_PAGE_SIZE);
#endif
#ifdef _WIN32 u8* pageAligned = (u8*)(((u64)CodeMemory & ~(pageSize - 1)) + pageSize);
#else u64 alignedSize = (((u64)CodeMemory + sizeof(CodeMemory)) & ~(pageSize - 1)) - (u64)pageAligned;
mprotect(pageAligned, alignedSize, PROT_EXEC | PROT_READ | PROT_WRITE);
#endif
region = pageAligned; #ifdef _WIN32
region_size = alignedSize; DWORD dummy;
total_region_size = region_size; VirtualProtect(pageAligned, alignedSize, PAGE_EXECUTE_READWRITE, &dummy);
#else
mprotect(pageAligned, alignedSize, PROT_EXEC | PROT_READ | PROT_WRITE);
#endif
region = pageAligned;
region_size = alignedSize;
total_region_size = region_size;
}
ClearCodeSpace(); ClearCodeSpace();
SetCodePtr(pageAligned);
memset(instructionPopularityARM, 0, sizeof(instructionPopularityARM));
for (int i = 0; i < 3; i++) for (int i = 0; i < 3; i++)
{ {
for (int j = 0; j < 2; j++) for (int j = 0; j < 2; j++)
@ -118,7 +123,7 @@ Compiler::Compiler()
SetJumpTarget(und); SetJumpTarget(und);
MOV(32, R(ABI_PARAM3), MComplex(RCPU, ABI_PARAM2, SCALE_4, offsetof(ARM, R_UND))); MOV(32, R(ABI_PARAM3), MComplex(RCPU, ABI_PARAM2, SCALE_4, offsetof(ARM, R_UND)));
RET(); RET();
} }
{ {
// RSCRATCH mode // RSCRATCH mode
// ABI_PARAM2 reg n // ABI_PARAM2 reg n
@ -163,7 +168,10 @@ Compiler::Compiler()
RET(); RET();
} }
ResetStart = (void*)GetWritableCodePtr(); // move the region forward to prevent overwriting the generated functions
region_size -= GetWritableCodePtr() - region;
total_region_size = region_size;
region = GetWritableCodePtr();
} }
void Compiler::LoadCPSR() void Compiler::LoadCPSR()
@ -338,7 +346,7 @@ const Compiler::CompileFunc T_Comp[ARMInstrInfo::tk_Count] = {
void Compiler::Reset() void Compiler::Reset()
{ {
SetCodePtr((u8*)ResetStart); ClearCodeSpace();
} }
CompiledBlock Compiler::CompileBlock(ARM* cpu, FetchedInstr instrs[], int instrsCount) CompiledBlock Compiler::CompileBlock(ARM* cpu, FetchedInstr instrs[], int instrsCount)
@ -375,9 +383,6 @@ CompiledBlock Compiler::CompileBlock(ARM* cpu, FetchedInstr instrs[], int instrs
? T_Comp[CurInstr.Info.Kind] ? T_Comp[CurInstr.Info.Kind]
: A_Comp[CurInstr.Info.Kind]; : A_Comp[CurInstr.Info.Kind];
if (!Thumb)
instructionPopularityARM[CurInstr.Info.Kind] += comp == NULL;
if (comp == NULL || i == instrsCount - 1) if (comp == NULL || i == instrsCount - 1)
{ {
MOV(32, MDisp(RCPU, offsetof(ARM, R[15])), Imm32(R15)); MOV(32, MDisp(RCPU, offsetof(ARM, R[15])), Imm32(R15));

View File

@ -132,7 +132,6 @@ public:
return Gen::R(RegCache.Mapping[reg]); return Gen::R(RegCache.Mapping[reg]);
} }
void* ResetStart;
void* MemoryFuncs9[3][2]; void* MemoryFuncs9[3][2];
void* MemoryFuncs7[3][2][2]; void* MemoryFuncs7[3][2][2];

View File

@ -30,20 +30,23 @@ add_library(core STATIC
SPU.cpp SPU.cpp
Wifi.cpp Wifi.cpp
WifiAP.cpp WifiAP.cpp
ARMJIT.cpp
ARMJIT_x64/ARMJIT_Compiler.cpp
ARMJIT_x64/ARMJIT_ALU.cpp
ARMJIT_x64/ARMJIT_LoadStore.cpp
ARMJIT_x64/ARMJIT_Branch.cpp
dolphin/CommonFuncs.cpp
dolphin/x64ABI.cpp
dolphin/x64CPUDetect.cpp
dolphin/x64Emitter.cpp
dolphin/MemoryUtil.cpp
) )
if (ENABLE_JIT)
target_sources(core PRIVATE
ARMJIT.cpp
ARMJIT_x64/ARMJIT_Compiler.cpp
ARMJIT_x64/ARMJIT_ALU.cpp
ARMJIT_x64/ARMJIT_LoadStore.cpp
ARMJIT_x64/ARMJIT_Branch.cpp
dolphin/CommonFuncs.cpp
dolphin/x64ABI.cpp
dolphin/x64CPUDetect.cpp
dolphin/x64Emitter.cpp
)
endif()
if (WIN32) if (WIN32)
target_link_libraries(core ole32 comctl32 ws2_32 opengl32) target_link_libraries(core ole32 comctl32 ws2_32 opengl32)
else() else()

View File

@ -812,7 +812,9 @@ void ARMv5::DataWrite8(u32 addr, u8 val)
{ {
DataCycles = 1; DataCycles = 1;
*(u8*)&ITCM[addr & 0x7FFF] = val; *(u8*)&ITCM[addr & 0x7FFF] = val;
#ifdef JIT_ENABLED
ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) >> 1] = NULL; ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) >> 1] = NULL;
#endif
return; return;
} }
if (addr >= DTCMBase && addr < (DTCMBase + DTCMSize)) if (addr >= DTCMBase && addr < (DTCMBase + DTCMSize))
@ -834,7 +836,9 @@ void ARMv5::DataWrite16(u32 addr, u16 val)
{ {
DataCycles = 1; DataCycles = 1;
*(u16*)&ITCM[addr & 0x7FFF] = val; *(u16*)&ITCM[addr & 0x7FFF] = val;
#ifdef JIT_ENABLED
ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) >> 1] = NULL; ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) >> 1] = NULL;
#endif
return; return;
} }
if (addr >= DTCMBase && addr < (DTCMBase + DTCMSize)) if (addr >= DTCMBase && addr < (DTCMBase + DTCMSize))
@ -856,8 +860,10 @@ void ARMv5::DataWrite32(u32 addr, u32 val)
{ {
DataCycles = 1; DataCycles = 1;
*(u32*)&ITCM[addr & 0x7FFF] = val; *(u32*)&ITCM[addr & 0x7FFF] = val;
#ifdef JIT_ENABLED
ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) >> 1] = NULL; ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) >> 1] = NULL;
ARMJIT::cache.ARM9_ITCM[((addr + 2) & 0x7FFF) >> 1] = NULL; ARMJIT::cache.ARM9_ITCM[((addr + 2) & 0x7FFF) >> 1] = NULL;
#endif
return; return;
} }
if (addr >= DTCMBase && addr < (DTCMBase + DTCMSize)) if (addr >= DTCMBase && addr < (DTCMBase + DTCMSize))
@ -879,8 +885,10 @@ void ARMv5::DataWrite32S(u32 addr, u32 val)
{ {
DataCycles += 1; DataCycles += 1;
*(u32*)&ITCM[addr & 0x7FFF] = val; *(u32*)&ITCM[addr & 0x7FFF] = val;
ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) / 2] = NULL; #ifdef JIT_ENABLED
ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) / 2 + 1] = NULL; ARMJIT::cache.ARM9_ITCM[(addr & 0x7FFF) >> 1] = NULL;
ARMJIT::cache.ARM9_ITCM[((addr & 0x7FFF) >> 1) + 1] = NULL;
#endif
return; return;
} }
if (addr >= DTCMBase && addr < (DTCMBase + DTCMSize)) if (addr >= DTCMBase && addr < (DTCMBase + DTCMSize))

View File

@ -34,8 +34,10 @@ int Threaded3D;
int GL_ScaleFactor; int GL_ScaleFactor;
int GL_Antialias; int GL_Antialias;
#ifdef JIT_ENABLED
bool JIT_Enable = false; bool JIT_Enable = false;
int JIT_MaxBlockSize = 12; int JIT_MaxBlockSize = 12;
#endif
ConfigEntry ConfigFile[] = ConfigEntry ConfigFile[] =
{ {
@ -45,8 +47,10 @@ ConfigEntry ConfigFile[] =
{"GL_ScaleFactor", 0, &GL_ScaleFactor, 1, NULL, 0}, {"GL_ScaleFactor", 0, &GL_ScaleFactor, 1, NULL, 0},
{"GL_Antialias", 0, &GL_Antialias, 0, NULL, 0}, {"GL_Antialias", 0, &GL_Antialias, 0, NULL, 0},
#ifdef JIT_ENABLED
{"JIT_Enable", 0, &JIT_Enable, 0, NULL, 0}, {"JIT_Enable", 0, &JIT_Enable, 0, NULL, 0},
{"JIT_MaxBlockSize", 0, &JIT_MaxBlockSize, 10, NULL, 0}, {"JIT_MaxBlockSize", 0, &JIT_MaxBlockSize, 10, NULL, 0},
#endif
{"", -1, NULL, 0, NULL, 0} {"", -1, NULL, 0, NULL, 0}
}; };

View File

@ -46,8 +46,10 @@ extern int Threaded3D;
extern int GL_ScaleFactor; extern int GL_ScaleFactor;
extern int GL_Antialias; extern int GL_Antialias;
#ifdef JIT_ENABLED
extern bool JIT_Enable; extern bool JIT_Enable;
extern int JIT_MaxBlockSize; extern int JIT_MaxBlockSize;
#endif
} }

View File

@ -162,7 +162,9 @@ bool Init()
ARM9 = new ARMv5(); ARM9 = new ARMv5();
ARM7 = new ARMv4(); ARM7 = new ARMv4();
#ifdef JIT_ENABLED
ARMJIT::Init(); ARMJIT::Init();
#endif
DMAs[0] = new DMA(0, 0); DMAs[0] = new DMA(0, 0);
DMAs[1] = new DMA(0, 1); DMAs[1] = new DMA(0, 1);
@ -194,7 +196,9 @@ void DeInit()
delete ARM9; delete ARM9;
delete ARM7; delete ARM7;
#ifdef JIT_ENABLED
ARMJIT::DeInit(); ARMJIT::DeInit();
#endif
for (int i = 0; i < 8; i++) for (int i = 0; i < 8; i++)
delete DMAs[i]; delete DMAs[i];
@ -524,7 +528,9 @@ void Reset()
KeyCnt = 0; KeyCnt = 0;
RCnt = 0; RCnt = 0;
#ifdef JIT_ENABLED
ARMJIT::InvalidateBlockCache(); ARMJIT::InvalidateBlockCache();
#endif
NDSCart::Reset(); NDSCart::Reset();
GBACart::Reset(); GBACart::Reset();
@ -741,10 +747,12 @@ bool DoSavestate(Savestate* file)
GPU::SetPowerCnt(PowerControl9); GPU::SetPowerCnt(PowerControl9);
} }
#ifdef JIT_ENABLED
if (!file->Saving) if (!file->Saving)
{ {
ARMJIT::InvalidateBlockCache(); ARMJIT::InvalidateBlockCache();
} }
#endif
return true; return true;
} }
@ -864,9 +872,11 @@ u32 RunFrame()
} }
else else
{ {
#ifdef JIT_ENABLED
if (EnableJIT) if (EnableJIT)
ARM9->ExecuteJIT(); ARM9->ExecuteJIT();
else else
#endif
ARM9->Execute(); ARM9->Execute();
} }
@ -889,9 +899,11 @@ u32 RunFrame()
} }
else else
{ {
#ifdef JIT_ENABLED
if (EnableJIT) if (EnableJIT)
ARM7->ExecuteJIT(); ARM7->ExecuteJIT();
else else
#endif
ARM7->Execute(); ARM7->Execute();
} }
@ -924,9 +936,11 @@ u32 RunFrame()
u32 RunFrame() u32 RunFrame()
{ {
#ifdef JIT_ENABLED
if (Config::JIT_Enable) if (Config::JIT_Enable)
return RunFrame<true>(); return RunFrame<true>();
else else
#endif
return RunFrame<false>(); return RunFrame<false>();
} }
@ -1849,7 +1863,9 @@ u32 ARM9Read32(u32 addr)
void ARM9Write8(u32 addr, u8 val) void ARM9Write8(u32 addr, u8 val)
{ {
#ifdef JIT_ENABLED
ARMJIT::Invalidate16(0, addr); ARMJIT::Invalidate16(0, addr);
#endif
switch (addr & 0xFF000000) switch (addr & 0xFF000000)
{ {
@ -1901,7 +1917,9 @@ void ARM9Write8(u32 addr, u8 val)
void ARM9Write16(u32 addr, u16 val) void ARM9Write16(u32 addr, u16 val)
{ {
#ifdef JIT_ENABLED
ARMJIT::Invalidate16(0, addr); ARMJIT::Invalidate16(0, addr);
#endif
switch (addr & 0xFF000000) switch (addr & 0xFF000000)
{ {
@ -1969,7 +1987,9 @@ void ARM9Write16(u32 addr, u16 val)
void ARM9Write32(u32 addr, u32 val) void ARM9Write32(u32 addr, u32 val)
{ {
#ifdef JIT_ENABLED
ARMJIT::Invalidate32(0, addr); ARMJIT::Invalidate32(0, addr);
#endif
switch (addr & 0xFF000000) switch (addr & 0xFF000000)
{ {
@ -2264,7 +2284,9 @@ u32 ARM7Read32(u32 addr)
void ARM7Write8(u32 addr, u8 val) void ARM7Write8(u32 addr, u8 val)
{ {
#ifdef JIT_ENABLED
ARMJIT::Invalidate16(1, addr); ARMJIT::Invalidate16(1, addr);
#endif
switch (addr & 0xFF800000) switch (addr & 0xFF800000)
{ {
@ -2325,7 +2347,9 @@ void ARM7Write8(u32 addr, u8 val)
void ARM7Write16(u32 addr, u16 val) void ARM7Write16(u32 addr, u16 val)
{ {
#ifdef JIT_ENABLED
ARMJIT::Invalidate16(1, addr); ARMJIT::Invalidate16(1, addr);
#endif
switch (addr & 0xFF800000) switch (addr & 0xFF800000)
{ {
@ -2396,7 +2420,9 @@ void ARM7Write16(u32 addr, u16 val)
void ARM7Write32(u32 addr, u32 val) void ARM7Write32(u32 addr, u32 val)
{ {
#ifdef JIT_ENABLED
ARMJIT::Invalidate32(1, addr); ARMJIT::Invalidate32(1, addr);
#endif
switch (addr & 0xFF800000) switch (addr & 0xFF800000)
{ {

View File

@ -9,7 +9,6 @@
#include "Assert.h" #include "Assert.h"
#include "../types.h" #include "../types.h"
#include "MemoryUtil.h"
namespace Common namespace Common
{ {
@ -41,8 +40,6 @@ public:
CodeBlock() = default; CodeBlock() = default;
virtual ~CodeBlock() virtual ~CodeBlock()
{ {
if (region)
FreeCodeSpace();
} }
CodeBlock(const CodeBlock&) = delete; CodeBlock(const CodeBlock&) = delete;
CodeBlock& operator=(const CodeBlock&) = delete; CodeBlock& operator=(const CodeBlock&) = delete;

View File

@ -38,8 +38,10 @@ uiWindow* win;
uiCheckbox* cbDirectBoot; uiCheckbox* cbDirectBoot;
#ifdef JIT_ENABLED
uiCheckbox* cbJITEnabled; uiCheckbox* cbJITEnabled;
uiEntry* enJITMaxBlockSize; uiEntry* enJITMaxBlockSize;
#endif
int OnCloseWindow(uiWindow* window, void* blarg) int OnCloseWindow(uiWindow* window, void* blarg)
{ {
@ -57,13 +59,17 @@ void OnOk(uiButton* btn, void* blarg)
{ {
Config::DirectBoot = uiCheckboxChecked(cbDirectBoot); Config::DirectBoot = uiCheckboxChecked(cbDirectBoot);
#ifdef JIT_ENABLED
Config::JIT_Enable = uiCheckboxChecked(cbJITEnabled); Config::JIT_Enable = uiCheckboxChecked(cbJITEnabled);
long blockSize = strtol(uiEntryText(enJITMaxBlockSize), NULL, 10); char* maxBlockSizeStr = uiEntryText(enJITMaxBlockSize);
long blockSize = strtol(maxBlockSizeStr, NULL, 10);
uiFreeText(maxBlockSizeStr);
if (blockSize < 1) if (blockSize < 1)
blockSize = 1; blockSize = 1;
if (blockSize > 32) if (blockSize > 32)
blockSize = 32; blockSize = 32;
Config::JIT_MaxBlockSize = blockSize; Config::JIT_MaxBlockSize = blockSize;
#endif
Config::Save(); Config::Save();
@ -73,6 +79,7 @@ void OnOk(uiButton* btn, void* blarg)
ApplyNewSettings(4); ApplyNewSettings(4);
} }
#ifdef JIT_ENABLED
void OnJITStateChanged(uiCheckbox* cb, void* blarg) void OnJITStateChanged(uiCheckbox* cb, void* blarg)
{ {
if (uiCheckboxChecked(cb)) if (uiCheckboxChecked(cb))
@ -80,6 +87,7 @@ void OnJITStateChanged(uiCheckbox* cb, void* blarg)
else else
uiControlDisable(uiControl(enJITMaxBlockSize)); uiControlDisable(uiControl(enJITMaxBlockSize));
} }
#endif
void Open() void Open()
{ {
@ -90,7 +98,7 @@ void Open()
} }
opened = true; opened = true;
win = uiNewWindow("Emu settings - melonDS", 300, 170, 0, 0, 0); win = uiNewWindow("Emu settings - melonDS", 300, 50, 0, 0, 0);
uiWindowSetMargined(win, 1); uiWindowSetMargined(win, 1);
uiWindowOnClosing(win, OnCloseWindow, NULL); uiWindowOnClosing(win, OnCloseWindow, NULL);
@ -105,6 +113,7 @@ void Open()
uiBoxAppend(in_ctrl, uiControl(cbDirectBoot), 0); uiBoxAppend(in_ctrl, uiControl(cbDirectBoot), 0);
} }
#ifdef JIT_ENABLED
{ {
uiLabel* dummy = uiNewLabel(""); uiLabel* dummy = uiNewLabel("");
uiBoxAppend(top, uiControl(dummy), 0); uiBoxAppend(top, uiControl(dummy), 0);
@ -133,6 +142,12 @@ void Open()
uiBoxAppend(row, uiControl(enJITMaxBlockSize), 0); uiBoxAppend(row, uiControl(enJITMaxBlockSize), 0);
} }
} }
#endif
{
uiLabel* dummy = uiNewLabel("");
uiBoxAppend(top, uiControl(dummy), 0);
}
{ {
uiBox* in_ctrl = uiNewHorizontalBox(); uiBox* in_ctrl = uiNewHorizontalBox();
@ -153,6 +168,7 @@ void Open()
uiCheckboxSetChecked(cbDirectBoot, Config::DirectBoot); uiCheckboxSetChecked(cbDirectBoot, Config::DirectBoot);
#ifdef JIT_ENABLED
uiCheckboxSetChecked(cbJITEnabled, Config::JIT_Enable); uiCheckboxSetChecked(cbJITEnabled, Config::JIT_Enable);
{ {
char maxBlockSizeStr[10]; char maxBlockSizeStr[10];
@ -160,6 +176,7 @@ void Open()
uiEntrySetText(enJITMaxBlockSize, maxBlockSizeStr); uiEntrySetText(enJITMaxBlockSize, maxBlockSizeStr);
} }
OnJITStateChanged(cbJITEnabled, NULL); OnJITStateChanged(cbJITEnabled, NULL);
#endif
uiControlShow(uiControl(win)); uiControlShow(uiControl(win));
} }

View File

@ -2411,8 +2411,10 @@ void ApplyNewSettings(int type)
} }
else if (type == 4) else if (type == 4)
{ {
#ifdef JIT_ENABLED
if (Config::JIT_Enable) if (Config::JIT_Enable)
ARMJIT::InvalidateBlockCache(); ARMJIT::InvalidateBlockCache();
#endif
} }
EmuRunning = prevstatus; EmuRunning = prevstatus;