mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-02 17:20:48 -07:00
Added initial support for function names from symbol table on the cpu with tracing, fix wrong ImageEnd on executables with MOD0, fix issue on the CPU on input elimination for instruction with more than one register store
This commit is contained in:
@ -67,7 +67,7 @@ namespace ChocolArm64.Translation
|
||||
public long VecOutputs;
|
||||
}
|
||||
|
||||
private const int MaxOptGraphLength = 120;
|
||||
private const int MaxOptGraphLength = 55;
|
||||
|
||||
public ALocalAlloc(AILBlock[] Graph, AILBlock Root)
|
||||
{
|
||||
@ -149,11 +149,7 @@ namespace ChocolArm64.Translation
|
||||
|
||||
if (RetTarget)
|
||||
{
|
||||
BlkIO.Entry = Block;
|
||||
BlkIO.IntInputs = 0;
|
||||
BlkIO.VecInputs = 0;
|
||||
BlkIO.IntOutputs = 0;
|
||||
BlkIO.VecOutputs = 0;
|
||||
BlkIO.Entry = Block;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user