2023-12-04 14:17:13 +01:00
|
|
|
using System;
|
2023-04-23 22:06:23 -04:00
|
|
|
using System.Buffers;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Common.Memory
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides a pool of re-usable byte array instances.
|
|
|
|
|
/// </summary>
|
Add support to IVirtualMemoryManager for zero-copy reads (#6251)
* - WritableRegion: enable wrapping IMemoryOwner<byte>
- IVirtualMemoryManager impls of GetWritableRegion() use pooled memory when region is non-contiguous.
- IVirtualMemoryManager: add GetReadOnlySequence() and impls
- ByteMemoryPool: add new method RentCopy()
- ByteMemoryPool: make class static, remove ctor and singleton field from earlier impl
* - BytesReadOnlySequenceSegment: move from Ryujinx.Common.Memory to Ryujinx.Memory
- BytesReadOnlySequenceSegment: add IsContiguousWith() and Replace() methods
- VirtualMemoryManagerBase:
- remove generic type parameters, instead use ulong for virtual addresses and nuint for host/physical addresses
- implement IWritableBlock
- add virtual GetReadOnlySequence() with coalescing of contiguous segments
- add virtual GetSpan()
- add virtual GetWritableRegion()
- add abstract IsMapped()
- add virtual MapForeign(ulong, nuint, ulong)
- add virtual Read<T>()
- add virtual Read(ulong, Span<byte>)
- add virtual ReadTracked<T>()
- add virtual SignalMemoryTracking()
- add virtual Write()
- add virtual Write<T>()
- add virtual WriteUntracked()
- add virtual WriteWithRedundancyCheck()
- VirtualMemoryManagerRefCountedBase: remove generic type parameters
- AddressSpaceManager: remove redundant methods, add required overrides
- HvMemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManagerHostMapped: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- NativeMemoryManager: add get properties for Pointer and Length
- throughout: removed invalid <inheritdoc/> comments
* make HvMemoryManager class sealed
* remove unused method
* adjust MemoryManagerHostTracked
* let MemoryManagerHostTracked override WriteImpl()
2024-04-04 21:23:03 -04:00
|
|
|
public static partial class ByteMemoryPool
|
2023-04-23 22:06:23 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns the maximum buffer size supported by this pool.
|
|
|
|
|
/// </summary>
|
2023-06-28 18:41:38 +02:00
|
|
|
public static int MaxBufferSize => Array.MaxLength;
|
2023-04-23 22:06:23 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
|
|
|
|
|
/// The buffer may contain data from a prior use.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="length">The buffer's required length in bytes</param>
|
|
|
|
|
/// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
|
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException"></exception>
|
2023-06-28 18:41:38 +02:00
|
|
|
public static IMemoryOwner<byte> Rent(long length)
|
2023-04-23 22:06:23 -04:00
|
|
|
=> RentImpl(checked((int)length));
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
|
|
|
|
|
/// The buffer may contain data from a prior use.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="length">The buffer's required length in bytes</param>
|
|
|
|
|
/// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
|
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException"></exception>
|
2023-06-28 18:41:38 +02:00
|
|
|
public static IMemoryOwner<byte> Rent(ulong length)
|
2023-04-23 22:06:23 -04:00
|
|
|
=> RentImpl(checked((int)length));
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
|
|
|
|
|
/// The buffer may contain data from a prior use.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="length">The buffer's required length in bytes</param>
|
|
|
|
|
/// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
|
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException"></exception>
|
2023-06-28 18:41:38 +02:00
|
|
|
public static IMemoryOwner<byte> Rent(int length)
|
2023-04-23 22:06:23 -04:00
|
|
|
=> RentImpl(length);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
|
|
|
|
|
/// The buffer's contents are cleared (set to all 0s) before returning.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="length">The buffer's required length in bytes</param>
|
|
|
|
|
/// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
|
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException"></exception>
|
2023-06-28 18:41:38 +02:00
|
|
|
public static IMemoryOwner<byte> RentCleared(long length)
|
2023-04-23 22:06:23 -04:00
|
|
|
=> RentCleared(checked((int)length));
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
|
|
|
|
|
/// The buffer's contents are cleared (set to all 0s) before returning.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="length">The buffer's required length in bytes</param>
|
|
|
|
|
/// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
|
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException"></exception>
|
2023-06-28 18:41:38 +02:00
|
|
|
public static IMemoryOwner<byte> RentCleared(ulong length)
|
2023-04-23 22:06:23 -04:00
|
|
|
=> RentCleared(checked((int)length));
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
|
|
|
|
|
/// The buffer's contents are cleared (set to all 0s) before returning.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="length">The buffer's required length in bytes</param>
|
|
|
|
|
/// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
|
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException"></exception>
|
2023-06-28 18:41:38 +02:00
|
|
|
public static IMemoryOwner<byte> RentCleared(int length)
|
2023-04-23 22:06:23 -04:00
|
|
|
{
|
|
|
|
|
var buffer = RentImpl(length);
|
2023-06-28 18:41:38 +02:00
|
|
|
|
2023-04-23 22:06:23 -04:00
|
|
|
buffer.Memory.Span.Clear();
|
2023-06-28 18:41:38 +02:00
|
|
|
|
2023-04-23 22:06:23 -04:00
|
|
|
return buffer;
|
|
|
|
|
}
|
|
|
|
|
|
Add support to IVirtualMemoryManager for zero-copy reads (#6251)
* - WritableRegion: enable wrapping IMemoryOwner<byte>
- IVirtualMemoryManager impls of GetWritableRegion() use pooled memory when region is non-contiguous.
- IVirtualMemoryManager: add GetReadOnlySequence() and impls
- ByteMemoryPool: add new method RentCopy()
- ByteMemoryPool: make class static, remove ctor and singleton field from earlier impl
* - BytesReadOnlySequenceSegment: move from Ryujinx.Common.Memory to Ryujinx.Memory
- BytesReadOnlySequenceSegment: add IsContiguousWith() and Replace() methods
- VirtualMemoryManagerBase:
- remove generic type parameters, instead use ulong for virtual addresses and nuint for host/physical addresses
- implement IWritableBlock
- add virtual GetReadOnlySequence() with coalescing of contiguous segments
- add virtual GetSpan()
- add virtual GetWritableRegion()
- add abstract IsMapped()
- add virtual MapForeign(ulong, nuint, ulong)
- add virtual Read<T>()
- add virtual Read(ulong, Span<byte>)
- add virtual ReadTracked<T>()
- add virtual SignalMemoryTracking()
- add virtual Write()
- add virtual Write<T>()
- add virtual WriteUntracked()
- add virtual WriteWithRedundancyCheck()
- VirtualMemoryManagerRefCountedBase: remove generic type parameters
- AddressSpaceManager: remove redundant methods, add required overrides
- HvMemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManagerHostMapped: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- NativeMemoryManager: add get properties for Pointer and Length
- throughout: removed invalid <inheritdoc/> comments
* make HvMemoryManager class sealed
* remove unused method
* adjust MemoryManagerHostTracked
* let MemoryManagerHostTracked override WriteImpl()
2024-04-04 21:23:03 -04:00
|
|
|
/// <summary>
|
|
|
|
|
/// Copies <paramref name="buffer"/> into a newly rented byte memory buffer.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="buffer">The byte buffer to copy</param>
|
|
|
|
|
/// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory with <paramref name="buffer"/> copied to it</returns>
|
|
|
|
|
public static IMemoryOwner<byte> RentCopy(ReadOnlySpan<byte> buffer)
|
|
|
|
|
{
|
|
|
|
|
var copy = RentImpl(buffer.Length);
|
|
|
|
|
|
|
|
|
|
buffer.CopyTo(copy.Memory.Span);
|
|
|
|
|
|
|
|
|
|
return copy;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-23 22:06:23 -04:00
|
|
|
private static ByteMemoryPoolBuffer RentImpl(int length)
|
|
|
|
|
{
|
|
|
|
|
if ((uint)length > Array.MaxLength)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(length), length, null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new ByteMemoryPoolBuffer(length);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|