mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-14 16:37:07 +00:00
330 lines
10 KiB
C#
330 lines
10 KiB
C#
using ARMeilleure.Memory;
|
|
using Ryujinx.Memory;
|
|
using Ryujinx.Memory.Range;
|
|
using Ryujinx.Memory.Tracking;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Cpu.Jit
|
|
{
|
|
/// <summary>
|
|
/// Represents a CPU memory manager which maps guest virtual memory directly onto a host virtual region.
|
|
/// </summary>
|
|
public sealed class MemoryManagerHostNoMirror : VirtualMemoryManagerRefCountedBase, IMemoryManager, IVirtualMemoryManagerTracked, IWritableBlock
|
|
{
|
|
private readonly InvalidAccessHandler _invalidAccessHandler;
|
|
private readonly bool _unsafeMode;
|
|
|
|
private readonly MemoryBlock _addressSpace;
|
|
private readonly MemoryBlock _backingMemory;
|
|
private readonly PageTable<ulong> _pageTable;
|
|
|
|
public int AddressSpaceBits { get; }
|
|
protected override ulong AddressSpaceSize { get; }
|
|
|
|
private readonly MemoryEhMeilleure _memoryEh;
|
|
|
|
private readonly ManagedPageFlags _pages;
|
|
|
|
/// <inheritdoc/>
|
|
public bool UsesPrivateAllocations => false;
|
|
|
|
public IntPtr PageTablePointer => _addressSpace.Pointer;
|
|
|
|
public MemoryManagerType Type => _unsafeMode ? MemoryManagerType.HostMappedUnsafe : MemoryManagerType.HostMapped;
|
|
|
|
public MemoryTracking Tracking { get; }
|
|
|
|
public event Action<ulong, ulong> UnmapEvent;
|
|
|
|
/// <summary>
|
|
/// Creates a new instance of the host mapped memory manager.
|
|
/// </summary>
|
|
/// <param name="addressSpace">Address space instance to use</param>
|
|
/// <param name="unsafeMode">True if unmanaged access should not be masked (unsafe), false otherwise.</param>
|
|
/// <param name="invalidAccessHandler">Optional function to handle invalid memory accesses</param>
|
|
public MemoryManagerHostNoMirror(
|
|
MemoryBlock addressSpace,
|
|
MemoryBlock backingMemory,
|
|
bool unsafeMode,
|
|
InvalidAccessHandler invalidAccessHandler)
|
|
{
|
|
_addressSpace = addressSpace;
|
|
_backingMemory = backingMemory;
|
|
_pageTable = new PageTable<ulong>();
|
|
_invalidAccessHandler = invalidAccessHandler;
|
|
_unsafeMode = unsafeMode;
|
|
AddressSpaceSize = addressSpace.Size;
|
|
|
|
ulong asSize = PageSize;
|
|
int asBits = PageBits;
|
|
|
|
while (asSize < addressSpace.Size)
|
|
{
|
|
asSize <<= 1;
|
|
asBits++;
|
|
}
|
|
|
|
AddressSpaceBits = asBits;
|
|
|
|
_pages = new ManagedPageFlags(asBits);
|
|
|
|
Tracking = new MemoryTracking(this, (int)MemoryBlock.GetPageSize(), invalidAccessHandler);
|
|
_memoryEh = new MemoryEhMeilleure(addressSpace, null, Tracking);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Ensures the combination of virtual address and size is part of the addressable space and fully mapped.
|
|
/// </summary>
|
|
/// <param name="va">Virtual address of the range</param>
|
|
/// <param name="size">Size of the range in bytes</param>
|
|
private void AssertMapped(ulong va, ulong size)
|
|
{
|
|
if (!ValidateAddressAndSize(va, size) || !_pages.IsRangeMapped(va, size))
|
|
{
|
|
throw new InvalidMemoryRegionException($"Not mapped: va=0x{va:X16}, size=0x{size:X16}");
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void Map(ulong va, ulong pa, ulong size, MemoryMapFlags flags)
|
|
{
|
|
AssertValidAddressAndSize(va, size);
|
|
|
|
_addressSpace.MapView(_backingMemory, pa, va, size);
|
|
_pages.AddMapping(va, size);
|
|
PtMap(va, pa, size);
|
|
|
|
Tracking.Map(va, size);
|
|
}
|
|
|
|
private void PtMap(ulong va, ulong pa, ulong size)
|
|
{
|
|
while (size != 0)
|
|
{
|
|
_pageTable.Map(va, pa);
|
|
|
|
va += PageSize;
|
|
pa += PageSize;
|
|
size -= PageSize;
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void Unmap(ulong va, ulong size)
|
|
{
|
|
AssertValidAddressAndSize(va, size);
|
|
|
|
UnmapEvent?.Invoke(va, size);
|
|
Tracking.Unmap(va, size);
|
|
|
|
_pages.RemoveMapping(va, size);
|
|
PtUnmap(va, size);
|
|
_addressSpace.UnmapView(_backingMemory, va, size);
|
|
}
|
|
|
|
private void PtUnmap(ulong va, ulong size)
|
|
{
|
|
while (size != 0)
|
|
{
|
|
_pageTable.Unmap(va);
|
|
|
|
va += PageSize;
|
|
size -= PageSize;
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void Reprotect(ulong va, ulong size, MemoryPermission permission)
|
|
{
|
|
}
|
|
|
|
public ref T GetRef<T>(ulong va) where T : unmanaged
|
|
{
|
|
if (!IsContiguous(va, Unsafe.SizeOf<T>()))
|
|
{
|
|
ThrowMemoryNotContiguous();
|
|
}
|
|
|
|
SignalMemoryTracking(va, (ulong)Unsafe.SizeOf<T>(), true);
|
|
|
|
return ref _backingMemory.GetRef<T>(GetPhysicalAddressChecked(va));
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public override bool IsMapped(ulong va)
|
|
{
|
|
return ValidateAddress(va) && _pages.IsMapped(va);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public bool IsRangeMapped(ulong va, ulong size)
|
|
{
|
|
AssertValidAddressAndSize(va, size);
|
|
|
|
return _pages.IsRangeMapped(va, size);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public IEnumerable<HostMemoryRange> GetHostRegions(ulong va, ulong size)
|
|
{
|
|
if (size == 0)
|
|
{
|
|
return Enumerable.Empty<HostMemoryRange>();
|
|
}
|
|
|
|
var guestRegions = GetPhysicalRegionsImpl(va, size);
|
|
if (guestRegions == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var regions = new HostMemoryRange[guestRegions.Count];
|
|
|
|
for (int i = 0; i < regions.Length; i++)
|
|
{
|
|
var guestRegion = guestRegions[i];
|
|
IntPtr pointer = _backingMemory.GetPointer(guestRegion.Address, guestRegion.Size);
|
|
regions[i] = new HostMemoryRange((nuint)(ulong)pointer, guestRegion.Size);
|
|
}
|
|
|
|
return regions;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public IEnumerable<MemoryRange> GetPhysicalRegions(ulong va, ulong size)
|
|
{
|
|
if (size == 0)
|
|
{
|
|
return Enumerable.Empty<MemoryRange>();
|
|
}
|
|
|
|
return GetPhysicalRegionsImpl(va, size);
|
|
}
|
|
|
|
private List<MemoryRange> GetPhysicalRegionsImpl(ulong va, ulong size)
|
|
{
|
|
if (!ValidateAddress(va) || !ValidateAddressAndSize(va, size))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
int pages = GetPagesCount(va, (uint)size, out va);
|
|
|
|
var regions = new List<MemoryRange>();
|
|
|
|
ulong regionStart = GetPhysicalAddressInternal(va);
|
|
ulong regionSize = PageSize;
|
|
|
|
for (int page = 0; page < pages - 1; page++)
|
|
{
|
|
if (!ValidateAddress(va + PageSize))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
ulong newPa = GetPhysicalAddressInternal(va + PageSize);
|
|
|
|
if (GetPhysicalAddressInternal(va) + PageSize != newPa)
|
|
{
|
|
regions.Add(new MemoryRange(regionStart, regionSize));
|
|
regionStart = newPa;
|
|
regionSize = 0;
|
|
}
|
|
|
|
va += PageSize;
|
|
regionSize += PageSize;
|
|
}
|
|
|
|
regions.Add(new MemoryRange(regionStart, regionSize));
|
|
|
|
return regions;
|
|
}
|
|
|
|
private ulong GetPhysicalAddressChecked(ulong va)
|
|
{
|
|
if (!IsMapped(va))
|
|
{
|
|
ThrowInvalidMemoryRegionException($"Not mapped: va=0x{va:X16}");
|
|
}
|
|
|
|
return GetPhysicalAddressInternal(va);
|
|
}
|
|
|
|
private ulong GetPhysicalAddressInternal(ulong va)
|
|
{
|
|
return _pageTable.Read(va) + (va & PageMask);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
/// <remarks>
|
|
/// This function also validates that the given range is both valid and mapped, and will throw if it is not.
|
|
/// </remarks>
|
|
public override void SignalMemoryTracking(ulong va, ulong size, bool write, bool precise = false, int? exemptId = null)
|
|
{
|
|
AssertValidAddressAndSize(va, size);
|
|
|
|
if (precise)
|
|
{
|
|
Tracking.VirtualMemoryEvent(va, size, write, precise: true, exemptId);
|
|
return;
|
|
}
|
|
|
|
_pages.SignalMemoryTracking(Tracking, va, size, write, exemptId);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void TrackingReprotect(ulong va, ulong size, MemoryPermission protection, bool guest)
|
|
{
|
|
if (guest)
|
|
{
|
|
_addressSpace.Reprotect(va, size, protection, false);
|
|
}
|
|
else
|
|
{
|
|
_pages.TrackingReprotect(va, size, protection);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public RegionHandle BeginTracking(ulong address, ulong size, int id, RegionFlags flags)
|
|
{
|
|
return Tracking.BeginTracking(address, size, id, flags);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public MultiRegionHandle BeginGranularTracking(ulong address, ulong size, IEnumerable<IRegionHandle> handles, ulong granularity, int id, RegionFlags flags)
|
|
{
|
|
return Tracking.BeginGranularTracking(address, size, handles, granularity, id, flags);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public SmartMultiRegionHandle BeginSmartGranularTracking(ulong address, ulong size, ulong granularity, int id)
|
|
{
|
|
return Tracking.BeginSmartGranularTracking(address, size, granularity, id);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Disposes of resources used by the memory manager.
|
|
/// </summary>
|
|
protected override void Destroy()
|
|
{
|
|
_addressSpace.Dispose();
|
|
_memoryEh.Dispose();
|
|
}
|
|
|
|
protected override Memory<byte> GetPhysicalAddressMemory(nuint pa, int size)
|
|
=> _backingMemory.GetMemory(pa, size);
|
|
|
|
protected override Span<byte> GetPhysicalAddressSpan(nuint pa, int size)
|
|
=> _backingMemory.GetSpan(pa, size);
|
|
|
|
protected override nuint TranslateVirtualAddressChecked(ulong va)
|
|
=> (nuint)GetPhysicalAddressChecked(va);
|
|
|
|
protected override nuint TranslateVirtualAddressUnchecked(ulong va)
|
|
=> (nuint)GetPhysicalAddressInternal(va);
|
|
}
|
|
}
|