mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Jit: Add missing call to InitBLROptimization for extra performance
This commit is contained in:
parent
68aab70c75
commit
8943a9a369
2 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue