diff options
| author | TSR Berry <20988865+TSRBerry@users.noreply.github.com> | 2023-04-08 01:22:00 +0200 |
|---|---|---|
| committer | Mary <thog@protonmail.com> | 2023-04-27 23:51:14 +0200 |
| commit | cee712105850ac3385cd0091a923438167433f9f (patch) | |
| tree | 4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /src/Ryujinx.Tests/Cpu/CpuContext.cs | |
| parent | cd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff) | |
Move solution and projects to src
Diffstat (limited to 'src/Ryujinx.Tests/Cpu/CpuContext.cs')
| -rw-r--r-- | src/Ryujinx.Tests/Cpu/CpuContext.cs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/Ryujinx.Tests/Cpu/CpuContext.cs b/src/Ryujinx.Tests/Cpu/CpuContext.cs new file mode 100644 index 00000000..96b4965a --- /dev/null +++ b/src/Ryujinx.Tests/Cpu/CpuContext.cs @@ -0,0 +1,39 @@ +using ARMeilleure.Memory; +using ARMeilleure.State; +using ARMeilleure.Translation; +using Ryujinx.Cpu; +using Ryujinx.Cpu.Jit; + +namespace Ryujinx.Tests.Cpu +{ + public class CpuContext + { + private readonly Translator _translator; + + public CpuContext(IMemoryManager memory, bool for64Bit) + { + _translator = new Translator(new JitMemoryAllocator(), memory, for64Bit); + memory.UnmapEvent += UnmapHandler; + } + + private void UnmapHandler(ulong address, ulong size) + { + _translator.InvalidateJitCacheRegion(address, size); + } + + public static ExecutionContext CreateExecutionContext() + { + return new ExecutionContext(new JitMemoryAllocator(), new TickSource(19200000)); + } + + public void Execute(ExecutionContext context, ulong address) + { + _translator.Execute(context, address); + } + + public void InvalidateCacheRegion(ulong address, ulong size) + { + _translator.InvalidateJitCacheRegion(address, size); + } + } +} |
