Ryujinx/src/Ryujinx.Horizon
jhorv ead9a25141
Audio rendering: reduce memory allocations (#6604)
* - 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

* - 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

* add PagedMemoryRange enumerator types, use them in IVirtualMemoryManager implementations to consolidate page-handling logic and add a new capability - the coalescing of pages for consolidating memory copies and segmentation.

* new: more tests for PagedMemoryRangeCoalescingEnumerator showing coalescing of contiguous segments

* make some struct properties readonly

* put braces around `foreach` bodies

* encourage inlining of some PagedMemoryRange*Enumerator members

* DynamicRingBuffer:
 - use ByteMemoryPool
 - make some methods return without locking when size/count argument = 0
 - make generic Read<T>()/Write<T>() non-generic because its only usage is as T = byte
 - change Read(byte[]...) to Read(Span<byte>...)
 - change Write(byte[]...) to Write(Span<byte>...)

* change IAudioRenderer.RequestUpdate() to take a ReadOnlySequence<byte>, enabling zero-copy audio rendering

* HipcGenerator: support ReadOnlySequence<byte> as IPC method parameter

* change IAudioRenderer/AudioRenderer RequestUpdate* methods to take input as ReadOnlySequence<byte>

* MemoryManagerHostTracked: use rented memory when contiguous in `GetWritableRegion()`

* rebase cleanup

* dotnet format fixes

* format and comment fixes

* format long parameter list - take 2

* - add support to HipcGenerator for buffers of type `Memory<byte>`
- change `AudioRenderer` `RequestUpdate()` and `RequestUpdateAuto()` to use Memory<byte> for output buffers, removing another memory block allocation/copy

* SplitterContext `UpdateState()` and `UpdateData()` smooth out advance/rewind logic, only rewind if magic is invalid

* DynamicRingBuffer.Write(): change Span<byte> to ReadOnlySpan<byte>
2024-04-07 18:07:32 -03:00
..
Arp Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Audio Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Bcat Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Friends Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Hshl Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Ins Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Lbl Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
LogManager Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
MmNv Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Ngc Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Ovln Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Prepo Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Psc Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Ptm ts: Migrate service to Horizon project (#6514) 2024-04-05 15:45:43 -03:00
Sdk Audio rendering: reduce memory allocations (#6604) 2024-04-07 18:07:32 -03:00
Sm editorconfig: Set default encoding to UTF-8 (#5793) 2023-12-04 14:17:13 +01:00
Srepo Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Usb Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
Wlan Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
HeapAllocator.cs [Ryujinx.Horizon] Address dotnet-format issues (#5381) 2023-07-01 12:42:10 +02:00
HorizonOptions.cs Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
HorizonStatic.cs editorconfig: Set default encoding to UTF-8 (#5793) 2023-12-04 14:17:13 +01:00
IService.cs editorconfig: Set default encoding to UTF-8 (#5793) 2023-12-04 14:17:13 +01:00
LibHacResultExtensions.cs editorconfig: Set default encoding to UTF-8 (#5793) 2023-12-04 14:17:13 +01:00
Ryujinx.Horizon.csproj Migrate Audio service to new IPC (#6285) 2024-02-22 16:58:33 -03:00
ServiceEntry.cs [Ryujinx.Horizon] Address dotnet-format issues (#5381) 2023-07-01 12:42:10 +02:00
ServiceTable.cs ts: Migrate service to Horizon project (#6514) 2024-04-05 15:45:43 -03:00