mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-29 02:42:53 -05:00
Move solution and projects to src
This commit is contained in:
75
src/Ryujinx.HLE/HOS/Tamper/CompilationContext.cs
Normal file
75
src/Ryujinx.HLE/HOS/Tamper/CompilationContext.cs
Normal file
@@ -0,0 +1,75 @@
|
||||
using Ryujinx.HLE.HOS.Tamper.Operations;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Tamper
|
||||
{
|
||||
class CompilationContext
|
||||
{
|
||||
public OperationBlock CurrentBlock => BlockStack.Peek();
|
||||
public List<IOperation> CurrentOperations => CurrentBlock.Operations;
|
||||
|
||||
public ITamperedProcess Process { get; }
|
||||
public Parameter<long> PressedKeys { get; }
|
||||
public Stack<OperationBlock> BlockStack { get; }
|
||||
public Dictionary<byte, Register> Registers { get; }
|
||||
public Dictionary<byte, Register> SavedRegisters { get; }
|
||||
public Dictionary<byte, Register> StaticRegisters { get; }
|
||||
public ulong ExeAddress { get; }
|
||||
public ulong HeapAddress { get; }
|
||||
public ulong AliasAddress { get; }
|
||||
public ulong AslrAddress { get; }
|
||||
|
||||
public CompilationContext(ulong exeAddress, ulong heapAddress, ulong aliasAddress, ulong aslrAddress, ITamperedProcess process)
|
||||
{
|
||||
Process = process;
|
||||
PressedKeys = new Parameter<long>(0);
|
||||
BlockStack = new Stack<OperationBlock>();
|
||||
Registers = new Dictionary<byte, Register>();
|
||||
SavedRegisters = new Dictionary<byte, Register>();
|
||||
StaticRegisters = new Dictionary<byte, Register>();
|
||||
ExeAddress = exeAddress;
|
||||
HeapAddress = heapAddress;
|
||||
AliasAddress = aliasAddress;
|
||||
AslrAddress = aslrAddress;
|
||||
}
|
||||
|
||||
public Register GetRegister(byte index)
|
||||
{
|
||||
if (Registers.TryGetValue(index, out Register register))
|
||||
{
|
||||
return register;
|
||||
}
|
||||
|
||||
register = new Register($"R_{index:X2}");
|
||||
Registers.Add(index, register);
|
||||
|
||||
return register;
|
||||
}
|
||||
|
||||
public Register GetSavedRegister(byte index)
|
||||
{
|
||||
if (SavedRegisters.TryGetValue(index, out Register register))
|
||||
{
|
||||
return register;
|
||||
}
|
||||
|
||||
register = new Register($"S_{index:X2}");
|
||||
SavedRegisters.Add(index, register);
|
||||
|
||||
return register;
|
||||
}
|
||||
|
||||
public Register GetStaticRegister(byte index)
|
||||
{
|
||||
if (SavedRegisters.TryGetValue(index, out Register register))
|
||||
{
|
||||
return register;
|
||||
}
|
||||
|
||||
register = new Register($"T_{index:X2}");
|
||||
SavedRegisters.Add(index, register);
|
||||
|
||||
return register;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user