Clear JIT cache on exit (#1518)
* Initial cache memory allocator implementation * Get rid of CallFlag * Perform cache cleanup on exit * Basic cache invalidation * Thats not how conditionals works in C# it seems * Set PTC version to PR number * Address PR feedback * Update InstEmitFlowHelper.cs * Flag clear on address is no longer needed * Do not include exit block in function size calculation * Dispose jump table * For future use * InternalVersion = 1519 (force retest). Co-authored-by: LDj3SNuD <35856442+LDj3SNuD@users.noreply.github.com>
This commit is contained in:
@ -10,10 +10,22 @@ namespace Ryujinx.Cpu
|
||||
public CpuContext(MemoryManager memory)
|
||||
{
|
||||
_translator = new Translator(new JitMemoryAllocator(), memory);
|
||||
memory.UnmapEvent += UnmapHandler;
|
||||
}
|
||||
|
||||
public static ExecutionContext CreateExecutionContext() => new ExecutionContext(new JitMemoryAllocator());
|
||||
private void UnmapHandler(ulong address, ulong size)
|
||||
{
|
||||
_translator.InvalidateJitCacheRegion(address, size);
|
||||
}
|
||||
|
||||
public void Execute(ExecutionContext context, ulong address) => _translator.Execute(context, address);
|
||||
public static ExecutionContext CreateExecutionContext()
|
||||
{
|
||||
return new ExecutionContext(new JitMemoryAllocator());
|
||||
}
|
||||
|
||||
public void Execute(ExecutionContext context, ulong address)
|
||||
{
|
||||
_translator.Execute(context, address);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user