ryujinx/Ryujinx.Graphics.Gpu/Memory
riperiperi 5a39d3c4a1
GPU: Relax locking on Buffer Cache (#3883)
I did this on ncbuffer2 when we were using it for LDN 3, but I noticed that it can apply to the current buffer manager too, and it's an easy performance win.

The only buffer access that can come from another thread is the overlap search for buffers that have been unmapped. Everything else, including modifications, come from the main GPU thread. That means we only need to lock the range list when it's being modified, as that's the only time where we'll cause a race with the unmapped handler.

This has a significant performance improvements in situations where FIFO is high, like the other two PRs. Joined together they give a nice boost (73.6 master -> 79 -> 83 fps in SMO).
2022-11-24 01:41:16 +00:00
..
Buffer.cs Removed unused usings. (#3593) 2022-08-18 18:04:54 +02:00
BufferBounds.cs
BufferCache.cs GPU: Relax locking on Buffer Cache (#3883) 2022-11-24 01:41:16 +00:00
BufferCacheEntry.cs
BufferManager.cs GPU: Eliminate CB0 accesses when storage buffer accesses are resolved (#3847) 2022-11-17 18:47:41 +01:00
BufferModifiedRangeList.cs Gpu: Fix thread safety of ReregisterRanges (#3865) 2022-11-18 21:47:29 +01:00
BufferTextureBinding.cs
CounterCache.cs
GpuRegionHandle.cs
IndexBuffer.cs
MemoryManager.cs
MultiRangeWritableBlock.cs
PhysicalMemory.cs
PteKind.cs
UnmapEventArgs.cs
VertexBuffer.cs