mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-02-25 06:25:34 +01:00
* Implement a new JIT for Arm devices * Auto-format * Make a lot of Assembler members read-only * More read-only * Fix more warnings * ObjectDisposedException.ThrowIf * New JIT cache for platforms that enforce W^X, currently unused * Remove unused using * Fix assert * Pass memory manager type around * Safe memory manager mode support + other improvements * Actual safe memory manager mode masking support * PR feedback
49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using ARMeilleure.Memory;
|
|
using System.Runtime.Versioning;
|
|
|
|
namespace Ryujinx.Cpu.AppleHv
|
|
{
|
|
[SupportedOSPlatform("macos")]
|
|
class HvCpuContext : ICpuContext
|
|
{
|
|
private readonly ITickSource _tickSource;
|
|
private readonly HvMemoryManager _memoryManager;
|
|
|
|
public HvCpuContext(ITickSource tickSource, IMemoryManager memory, bool for64Bit)
|
|
{
|
|
_tickSource = tickSource;
|
|
_memoryManager = (HvMemoryManager)memory;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public IExecutionContext CreateExecutionContext(ExceptionCallbacks exceptionCallbacks)
|
|
{
|
|
return new HvExecutionContext(_tickSource, exceptionCallbacks);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void Execute(IExecutionContext context, ulong address)
|
|
{
|
|
((HvExecutionContext)context).Execute(_memoryManager, address);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void InvalidateCacheRegion(ulong address, ulong size)
|
|
{
|
|
}
|
|
|
|
public IDiskCacheLoadState LoadDiskCache(string titleIdText, string displayVersion, bool enabled)
|
|
{
|
|
return new DummyDiskCacheLoadState();
|
|
}
|
|
|
|
public void PrepareCodeRange(ulong address, ulong size)
|
|
{
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|