mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:28:38 +00:00
Fix PTC count table relocation patching (#2666)
Fix an issue introduced in #2190 where by 2 different count table entry addresses were used for LCQ functions. E.g: ```asm .L1: mov rbp,COUNT_TABLE_0 ;; This gets an address. mov ebp,[rbp] lea esi,[rbp+1] mov rdi,COUNT_TABLE_1 ;; This gets another address. mov [rdi],esi cmp ebp,64h je near .L34 ``` This caused LCQ functions to not tier up when they're loaded from the PTC cache. This does not happen when they're freshly compiled. This PR fixes the issue by ensuring only a single counter is created per translation.
This commit is contained in:
parent
79c854dd2e
commit
0d23504e30
|
@ -681,7 +681,10 @@ namespace ARMeilleure.Translation.PTC
|
|||
}
|
||||
else if (symbol == CountTableSymbol)
|
||||
{
|
||||
callCounter = new Counter<uint>(translator.CountTable);
|
||||
if (callCounter == null)
|
||||
{
|
||||
callCounter = new Counter<uint>(translator.CountTable);
|
||||
}
|
||||
|
||||
unsafe { imm = (IntPtr)Unsafe.AsPointer(ref callCounter.Value); }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue