mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Jit: Add missing call to InitBLROptimization for extra performance
This commit is contained in:
@ -276,6 +276,8 @@ void Jit64::Init()
|
|||||||
m_const_pool.Init(AllocChildCodeSpace(constpool_size), constpool_size);
|
m_const_pool.Init(AllocChildCodeSpace(constpool_size), constpool_size);
|
||||||
ResetCodePtr();
|
ResetCodePtr();
|
||||||
|
|
||||||
|
InitBLROptimization();
|
||||||
|
|
||||||
m_stack_guard = nullptr;
|
m_stack_guard = nullptr;
|
||||||
|
|
||||||
blocks.Init();
|
blocks.Init();
|
||||||
|
@ -66,6 +66,8 @@ void JitArm64::Init()
|
|||||||
code_block.m_gpa = &js.gpa;
|
code_block.m_gpa = &js.gpa;
|
||||||
code_block.m_fpa = &js.fpa;
|
code_block.m_fpa = &js.fpa;
|
||||||
|
|
||||||
|
InitBLROptimization();
|
||||||
|
|
||||||
GenerateAsm();
|
GenerateAsm();
|
||||||
|
|
||||||
ResetFreeMemoryRanges();
|
ResetFreeMemoryRanges();
|
||||||
|
Reference in New Issue
Block a user