| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051 |
- using Ryujinx.Common;
- using Ryujinx.Graphics.GAL;
- using Ryujinx.Graphics.Gpu.Image;
- using Ryujinx.Graphics.Gpu.State;
- using Ryujinx.Graphics.Shader;
- using Ryujinx.Memory.Range;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- namespace Ryujinx.Graphics.Gpu.Memory
- {
- /// <summary>
- /// Buffer manager.
- /// </summary>
- class BufferManager
- {
- private const int StackToHeapThreshold = 16;
- private const int OverlapsBufferInitialCapacity = 10;
- private const int OverlapsBufferMaxCapacity = 10000;
- private const ulong BufferAlignmentSize = 0x1000;
- private const ulong BufferAlignmentMask = BufferAlignmentSize - 1;
- private GpuContext _context;
- private RangeList<Buffer> _buffers;
- private Buffer[] _bufferOverlaps;
- private IndexBuffer _indexBuffer;
- private VertexBuffer[] _vertexBuffers;
- private BufferBounds[] _transformFeedbackBuffers;
- private List<BufferTextureBinding> _bufferTextures;
- /// <summary>
- /// Holds shader stage buffer state and binding information.
- /// </summary>
- private class BuffersPerStage
- {
- /// <summary>
- /// Shader buffer binding information.
- /// </summary>
- public BufferDescriptor[] Bindings { get; }
- /// <summary>
- /// Buffer regions.
- /// </summary>
- public BufferBounds[] Buffers { get; }
- /// <summary>
- /// Total amount of buffers used on the shader.
- /// </summary>
- public int Count { get; private set; }
- /// <summary>
- /// Creates a new instance of the shader stage buffer information.
- /// </summary>
- /// <param name="count">Maximum amount of buffers that the shader stage can use</param>
- public BuffersPerStage(int count)
- {
- Bindings = new BufferDescriptor[count];
- Buffers = new BufferBounds[count];
- }
- /// <summary>
- /// Sets the region of a buffer at a given slot.
- /// </summary>
- /// <param name="index">Buffer slot</param>
- /// <param name="address">Region virtual address</param>
- /// <param name="size">Region size in bytes</param>
- /// <param name="flags">Buffer usage flags</param>
- public void SetBounds(int index, ulong address, ulong size, BufferUsageFlags flags = BufferUsageFlags.None)
- {
- Buffers[index] = new BufferBounds(address, size, flags);
- }
- /// <summary>
- /// Sets shader buffer binding information.
- /// </summary>
- /// <param name="descriptors">Buffer binding information</param>
- public void SetBindings(ReadOnlyCollection<BufferDescriptor> descriptors)
- {
- if (descriptors == null)
- {
- Count = 0;
- return;
- }
- descriptors.CopyTo(Bindings, 0);
- Count = descriptors.Count;
- }
- }
- private BuffersPerStage _cpStorageBuffers;
- private BuffersPerStage _cpUniformBuffers;
- private BuffersPerStage[] _gpStorageBuffers;
- private BuffersPerStage[] _gpUniformBuffers;
- private int _cpStorageBufferBindings;
- private int _cpUniformBufferBindings;
- private int _gpStorageBufferBindings;
- private int _gpUniformBufferBindings;
- private bool _gpStorageBuffersDirty;
- private bool _gpUniformBuffersDirty;
- private bool _indexBufferDirty;
- private bool _vertexBuffersDirty;
- private uint _vertexBuffersEnableMask;
- private bool _transformFeedbackBuffersDirty;
- private bool _rebind;
- private Dictionary<ulong, BufferCacheEntry> _dirtyCache;
- /// <summary>
- /// Creates a new instance of the buffer manager.
- /// </summary>
- /// <param name="context">The GPU context that the buffer manager belongs to</param>
- public BufferManager(GpuContext context)
- {
- _context = context;
- _buffers = new RangeList<Buffer>();
- _bufferOverlaps = new Buffer[OverlapsBufferInitialCapacity];
- _vertexBuffers = new VertexBuffer[Constants.TotalVertexBuffers];
- _transformFeedbackBuffers = new BufferBounds[Constants.TotalTransformFeedbackBuffers];
- _cpStorageBuffers = new BuffersPerStage(Constants.TotalCpStorageBuffers);
- _cpUniformBuffers = new BuffersPerStage(Constants.TotalCpUniformBuffers);
- _gpStorageBuffers = new BuffersPerStage[Constants.ShaderStages];
- _gpUniformBuffers = new BuffersPerStage[Constants.ShaderStages];
- for (int index = 0; index < Constants.ShaderStages; index++)
- {
- _gpStorageBuffers[index] = new BuffersPerStage(Constants.TotalGpStorageBuffers);
- _gpUniformBuffers[index] = new BuffersPerStage(Constants.TotalGpUniformBuffers);
- }
- _bufferTextures = new List<BufferTextureBinding>();
- _dirtyCache = new Dictionary<ulong, BufferCacheEntry>();
- }
- /// <summary>
- /// Sets the memory range with the index buffer data, to be used for subsequent draw calls.
- /// </summary>
- /// <param name="gpuVa">Start GPU virtual address of the index buffer</param>
- /// <param name="size">Size, in bytes, of the index buffer</param>
- /// <param name="type">Type of each index buffer element</param>
- public void SetIndexBuffer(ulong gpuVa, ulong size, IndexType type)
- {
- ulong address = TranslateAndCreateBuffer(gpuVa, size);
- _indexBuffer.Address = address;
- _indexBuffer.Size = size;
- _indexBuffer.Type = type;
- _indexBufferDirty = true;
- }
- /// <summary>
- /// Sets a new index buffer that overrides the one set on the call to <see cref="CommitGraphicsBindings"/>.
- /// </summary>
- /// <param name="buffer">Buffer to be used as index buffer</param>
- /// <param name="type">Type of each index buffer element</param>
- public void SetIndexBuffer(BufferRange buffer, IndexType type)
- {
- _context.Renderer.Pipeline.SetIndexBuffer(buffer, type);
- _indexBufferDirty = true;
- }
- /// <summary>
- /// Sets the memory range with vertex buffer data, to be used for subsequent draw calls.
- /// </summary>
- /// <param name="index">Index of the vertex buffer (up to 16)</param>
- /// <param name="gpuVa">GPU virtual address of the buffer</param>
- /// <param name="size">Size in bytes of the buffer</param>
- /// <param name="stride">Stride of the buffer, defined as the number of bytes of each vertex</param>
- /// <param name="divisor">Vertex divisor of the buffer, for instanced draws</param>
- public void SetVertexBuffer(int index, ulong gpuVa, ulong size, int stride, int divisor)
- {
- ulong address = TranslateAndCreateBuffer(gpuVa, size);
- _vertexBuffers[index].Address = address;
- _vertexBuffers[index].Size = size;
- _vertexBuffers[index].Stride = stride;
- _vertexBuffers[index].Divisor = divisor;
- _vertexBuffersDirty = true;
- if (address != 0)
- {
- _vertexBuffersEnableMask |= 1u << index;
- }
- else
- {
- _vertexBuffersEnableMask &= ~(1u << index);
- }
- }
- /// <summary>
- /// Sets a transform feedback buffer on the graphics pipeline.
- /// The output from the vertex transformation stages are written into the feedback buffer.
- /// </summary>
- /// <param name="index">Index of the transform feedback buffer</param>
- /// <param name="gpuVa">Start GPU virtual address of the buffer</param>
- /// <param name="size">Size in bytes of the transform feedback buffer</param>
- public void SetTransformFeedbackBuffer(int index, ulong gpuVa, ulong size)
- {
- ulong address = TranslateAndCreateBuffer(gpuVa, size);
- _transformFeedbackBuffers[index] = new BufferBounds(address, size);
- _transformFeedbackBuffersDirty = true;
- }
- /// <summary>
- /// Sets a storage buffer on the compute pipeline.
- /// Storage buffers can be read and written to on shaders.
- /// </summary>
- /// <param name="index">Index of the storage buffer</param>
- /// <param name="gpuVa">Start GPU virtual address of the buffer</param>
- /// <param name="size">Size in bytes of the storage buffer</param>
- /// <param name="flags">Buffer usage flags</param>
- public void SetComputeStorageBuffer(int index, ulong gpuVa, ulong size, BufferUsageFlags flags)
- {
- size += gpuVa & ((ulong)_context.Capabilities.StorageBufferOffsetAlignment - 1);
- gpuVa = BitUtils.AlignDown(gpuVa, _context.Capabilities.StorageBufferOffsetAlignment);
- ulong address = TranslateAndCreateBuffer(gpuVa, size);
- _cpStorageBuffers.SetBounds(index, address, size, flags);
- }
- /// <summary>
- /// Sets a storage buffer on the graphics pipeline.
- /// Storage buffers can be read and written to on shaders.
- /// </summary>
- /// <param name="stage">Index of the shader stage</param>
- /// <param name="index">Index of the storage buffer</param>
- /// <param name="gpuVa">Start GPU virtual address of the buffer</param>
- /// <param name="size">Size in bytes of the storage buffer</param>
- /// <param name="flags">Buffer usage flags</param>
- public void SetGraphicsStorageBuffer(int stage, int index, ulong gpuVa, ulong size, BufferUsageFlags flags)
- {
- size += gpuVa & ((ulong)_context.Capabilities.StorageBufferOffsetAlignment - 1);
- gpuVa = BitUtils.AlignDown(gpuVa, _context.Capabilities.StorageBufferOffsetAlignment);
- ulong address = TranslateAndCreateBuffer(gpuVa, size);
- if (_gpStorageBuffers[stage].Buffers[index].Address != address ||
- _gpStorageBuffers[stage].Buffers[index].Size != size)
- {
- _gpStorageBuffersDirty = true;
- }
- _gpStorageBuffers[stage].SetBounds(index, address, size, flags);
- }
- /// <summary>
- /// Sets a uniform buffer on the compute pipeline.
- /// Uniform buffers are read-only from shaders, and have a small capacity.
- /// </summary>
- /// <param name="index">Index of the uniform buffer</param>
- /// <param name="gpuVa">Start GPU virtual address of the buffer</param>
- /// <param name="size">Size in bytes of the storage buffer</param>
- public void SetComputeUniformBuffer(int index, ulong gpuVa, ulong size)
- {
- ulong address = TranslateAndCreateBuffer(gpuVa, size);
- _cpUniformBuffers.SetBounds(index, address, size);
- }
- /// <summary>
- /// Sets a uniform buffer on the graphics pipeline.
- /// Uniform buffers are read-only from shaders, and have a small capacity.
- /// </summary>
- /// <param name="stage">Index of the shader stage</param>
- /// <param name="index">Index of the uniform buffer</param>
- /// <param name="gpuVa">Start GPU virtual address of the buffer</param>
- /// <param name="size">Size in bytes of the storage buffer</param>
- public void SetGraphicsUniformBuffer(int stage, int index, ulong gpuVa, ulong size)
- {
- ulong address = TranslateAndCreateBuffer(gpuVa, size);
- _gpUniformBuffers[stage].SetBounds(index, address, size);
- _gpUniformBuffersDirty = true;
- }
- /// <summary>
- /// Sets the binding points for the storage buffers bound on the compute pipeline.
- /// </summary>
- /// <param name="descriptors">Buffer descriptors with the binding point values</param>
- public void SetComputeStorageBufferBindings(ReadOnlyCollection<BufferDescriptor> descriptors)
- {
- _cpStorageBuffers.SetBindings(descriptors);
- _cpStorageBufferBindings = descriptors.Count != 0 ? descriptors.Max(x => x.Binding) + 1 : 0;
- }
- /// <summary>
- /// Sets the binding points for the storage buffers bound on the graphics pipeline.
- /// </summary>
- /// <param name="stage">Index of the shader stage</param>
- /// <param name="descriptors">Buffer descriptors with the binding point values</param>
- public void SetGraphicsStorageBufferBindings(int stage, ReadOnlyCollection<BufferDescriptor> descriptors)
- {
- _gpStorageBuffers[stage].SetBindings(descriptors);
- _gpStorageBuffersDirty = true;
- }
- /// <summary>
- /// Sets the total number of storage buffer bindings used.
- /// </summary>
- /// <param name="count">Number of storage buffer bindings used</param>
- public void SetGraphicsStorageBufferBindingsCount(int count)
- {
- _gpStorageBufferBindings = count;
- }
- /// <summary>
- /// Sets the binding points for the uniform buffers bound on the compute pipeline.
- /// </summary>
- /// <param name="descriptors">Buffer descriptors with the binding point values</param>
- public void SetComputeUniformBufferBindings(ReadOnlyCollection<BufferDescriptor> descriptors)
- {
- _cpUniformBuffers.SetBindings(descriptors);
- _cpUniformBufferBindings = descriptors.Count != 0 ? descriptors.Max(x => x.Binding) + 1 : 0;
- }
- /// <summary>
- /// Sets the enabled uniform buffers mask on the graphics pipeline.
- /// Each bit set on the mask indicates that the respective buffer index is enabled.
- /// </summary>
- /// <param name="stage">Index of the shader stage</param>
- /// <param name="descriptors">Buffer descriptors with the binding point values</param>
- public void SetGraphicsUniformBufferBindings(int stage, ReadOnlyCollection<BufferDescriptor> descriptors)
- {
- _gpUniformBuffers[stage].SetBindings(descriptors);
- _gpUniformBuffersDirty = true;
- }
- /// <summary>
- /// Sets the total number of uniform buffer bindings used.
- /// </summary>
- /// <param name="count">Number of uniform buffer bindings used</param>
- public void SetGraphicsUniformBufferBindingsCount(int count)
- {
- _gpUniformBufferBindings = count;
- }
- /// <summary>
- /// Gets a bit mask indicating which compute uniform buffers are currently bound.
- /// </summary>
- /// <returns>Mask where each bit set indicates a bound constant buffer</returns>
- public uint GetComputeUniformBufferUseMask()
- {
- uint mask = 0;
- for (int i = 0; i < _cpUniformBuffers.Buffers.Length; i++)
- {
- if (_cpUniformBuffers.Buffers[i].Address != 0)
- {
- mask |= 1u << i;
- }
- }
- return mask;
- }
- /// <summary>
- /// Gets a bit mask indicating which graphics uniform buffers are currently bound.
- /// </summary>
- /// <param name="stage">Index of the shader stage</param>
- /// <returns>Mask where each bit set indicates a bound constant buffer</returns>
- public uint GetGraphicsUniformBufferUseMask(int stage)
- {
- uint mask = 0;
- for (int i = 0; i < _gpUniformBuffers[stage].Buffers.Length; i++)
- {
- if (_gpUniformBuffers[stage].Buffers[i].Address != 0)
- {
- mask |= 1u << i;
- }
- }
- return mask;
- }
- /// <summary>
- /// Handles removal of buffers written to a memory region being unmapped.
- /// </summary>
- /// <param name="sender">Sender object</param>
- /// <param name="e">Event arguments</param>
- public void MemoryUnmappedHandler(object sender, UnmapEventArgs e)
- {
- Buffer[] overlaps = new Buffer[10];
- int overlapCount;
- ulong address = _context.MemoryManager.Translate(e.Address);
- ulong size = e.Size;
- lock (_buffers)
- {
- overlapCount = _buffers.FindOverlaps(address, size, ref overlaps);
- }
- for (int i = 0; i < overlapCount; i++)
- {
- overlaps[i].Unmapped(address, size);
- }
- }
- /// <summary>
- /// Performs address translation of the GPU virtual address, and creates a
- /// new buffer, if needed, for the specified range.
- /// </summary>
- /// <param name="gpuVa">Start GPU virtual address of the buffer</param>
- /// <param name="size">Size in bytes of the buffer</param>
- /// <returns>CPU virtual address of the buffer, after address translation</returns>
- private ulong TranslateAndCreateBuffer(ulong gpuVa, ulong size)
- {
- if (gpuVa == 0)
- {
- return 0;
- }
- ulong address = _context.MemoryManager.Translate(gpuVa);
- if (address == MemoryManager.PteUnmapped)
- {
- return 0;
- }
- CreateBuffer(address, size);
- return address;
- }
- /// <summary>
- /// Creates a new buffer for the specified range, if it does not yet exist.
- /// This can be used to ensure the existance of a buffer.
- /// </summary>
- /// <param name="address">Address of the buffer in memory</param>
- /// <param name="size">Size of the buffer in bytes</param>
- public void CreateBuffer(ulong address, ulong size)
- {
- ulong endAddress = address + size;
- ulong alignedAddress = address & ~BufferAlignmentMask;
- ulong alignedEndAddress = (endAddress + BufferAlignmentMask) & ~BufferAlignmentMask;
- // The buffer must have the size of at least one page.
- if (alignedEndAddress == alignedAddress)
- {
- alignedEndAddress += BufferAlignmentSize;
- }
- CreateBufferAligned(alignedAddress, alignedEndAddress - alignedAddress);
- }
- /// <summary>
- /// Performs address translation of the GPU virtual address, and attempts to force
- /// the buffer in the region as dirty.
- /// The buffer lookup for this function is cached in a dictionary for quick access, which
- /// accelerates common UBO updates.
- /// </summary>
- /// <param name="gpuVa">Start GPU virtual address of the buffer</param>
- /// <param name="size">Size in bytes of the buffer</param>
- public void ForceDirty(ulong gpuVa, ulong size)
- {
- BufferCacheEntry result;
- if (!_dirtyCache.TryGetValue(gpuVa, out result) || result.EndGpuAddress < gpuVa + size || result.UnmappedSequence != result.Buffer.UnmappedSequence)
- {
- ulong address = TranslateAndCreateBuffer(gpuVa, size);
- result = new BufferCacheEntry(address, gpuVa, GetBuffer(address, size));
- _dirtyCache[gpuVa] = result;
- }
- result.Buffer.ForceDirty(result.Address, size);
- }
- /// <summary>
- /// Creates a new buffer for the specified range, if needed.
- /// If a buffer where this range can be fully contained already exists,
- /// then the creation of a new buffer is not necessary.
- /// </summary>
- /// <param name="address">Address of the buffer in guest memory</param>
- /// <param name="size">Size in bytes of the buffer</param>
- private void CreateBufferAligned(ulong address, ulong size)
- {
- int overlapsCount;
- lock (_buffers)
- {
- overlapsCount = _buffers.FindOverlapsNonOverlapping(address, size, ref _bufferOverlaps);
- }
- if (overlapsCount != 0)
- {
- // The buffer already exists. We can just return the existing buffer
- // if the buffer we need is fully contained inside the overlapping buffer.
- // Otherwise, we must delete the overlapping buffers and create a bigger buffer
- // that fits all the data we need. We also need to copy the contents from the
- // old buffer(s) to the new buffer.
- ulong endAddress = address + size;
- if (_bufferOverlaps[0].Address > address || _bufferOverlaps[0].EndAddress < endAddress)
- {
- for (int index = 0; index < overlapsCount; index++)
- {
- Buffer buffer = _bufferOverlaps[index];
- address = Math.Min(address, buffer.Address);
- endAddress = Math.Max(endAddress, buffer.EndAddress);
- lock (_buffers)
- {
- _buffers.Remove(buffer);
- }
- }
- Buffer newBuffer = new Buffer(_context, address, endAddress - address, _bufferOverlaps.Take(overlapsCount));
- lock (_buffers)
- {
- _buffers.Add(newBuffer);
- }
- for (int index = 0; index < overlapsCount; index++)
- {
- Buffer buffer = _bufferOverlaps[index];
- int dstOffset = (int)(buffer.Address - newBuffer.Address);
- buffer.CopyTo(newBuffer, dstOffset);
- newBuffer.InheritModifiedRanges(buffer);
- buffer.DisposeData();
- }
- newBuffer.SynchronizeMemory(address, endAddress - address);
- // Existing buffers were modified, we need to rebind everything.
- _rebind = true;
- }
- }
- else
- {
- // No overlap, just create a new buffer.
- Buffer buffer = new Buffer(_context, address, size);
- lock (_buffers)
- {
- _buffers.Add(buffer);
- }
- }
- ShrinkOverlapsBufferIfNeeded();
- }
- /// <summary>
- /// Resizes the temporary buffer used for range list intersection results, if it has grown too much.
- /// </summary>
- private void ShrinkOverlapsBufferIfNeeded()
- {
- if (_bufferOverlaps.Length > OverlapsBufferMaxCapacity)
- {
- Array.Resize(ref _bufferOverlaps, OverlapsBufferMaxCapacity);
- }
- }
- /// <summary>
- /// Gets the address of the compute uniform buffer currently bound at the given index.
- /// </summary>
- /// <param name="index">Index of the uniform buffer binding</param>
- /// <returns>The uniform buffer address, or an undefined value if the buffer is not currently bound</returns>
- public ulong GetComputeUniformBufferAddress(int index)
- {
- return _cpUniformBuffers.Buffers[index].Address;
- }
- /// <summary>
- /// Gets the address of the graphics uniform buffer currently bound at the given index.
- /// </summary>
- /// <param name="stage">Index of the shader stage</param>
- /// <param name="index">Index of the uniform buffer binding</param>
- /// <returns>The uniform buffer address, or an undefined value if the buffer is not currently bound</returns>
- public ulong GetGraphicsUniformBufferAddress(int stage, int index)
- {
- return _gpUniformBuffers[stage].Buffers[index].Address;
- }
- /// <summary>
- /// Ensures that the compute engine bindings are visible to the host GPU.
- /// Note: this actually performs the binding using the host graphics API.
- /// </summary>
- public void CommitComputeBindings()
- {
- int sCount = _cpStorageBufferBindings;
- Span<BufferRange> sRanges = sCount < StackToHeapThreshold ? stackalloc BufferRange[sCount] : new BufferRange[sCount];
- for (int index = 0; index < _cpStorageBuffers.Count; index++)
- {
- ref var bindingInfo = ref _cpStorageBuffers.Bindings[index];
- BufferBounds bounds = _cpStorageBuffers.Buffers[bindingInfo.Slot];
- if (bounds.Address != 0)
- {
- // The storage buffer size is not reliable (it might be lower than the actual size),
- // so we bind the entire buffer to allow otherwise out of range accesses to work.
- sRanges[bindingInfo.Binding] = GetBufferRangeTillEnd(
- bounds.Address,
- bounds.Size,
- bounds.Flags.HasFlag(BufferUsageFlags.Write));
- }
- }
- _context.Renderer.Pipeline.SetStorageBuffers(sRanges);
- int uCount = _cpUniformBufferBindings;
- Span<BufferRange> uRanges = uCount < StackToHeapThreshold ? stackalloc BufferRange[uCount] : new BufferRange[uCount];
- for (int index = 0; index < _cpUniformBuffers.Count; index++)
- {
- ref var bindingInfo = ref _cpUniformBuffers.Bindings[index];
- BufferBounds bounds = _cpUniformBuffers.Buffers[bindingInfo.Slot];
- if (bounds.Address != 0)
- {
- uRanges[bindingInfo.Binding] = GetBufferRange(bounds.Address, bounds.Size);
- }
- }
- _context.Renderer.Pipeline.SetUniformBuffers(uRanges);
- CommitBufferTextureBindings();
- // Force rebind after doing compute work.
- _rebind = true;
- }
- /// <summary>
- /// Commit any queued buffer texture bindings.
- /// </summary>
- private void CommitBufferTextureBindings()
- {
- if (_bufferTextures.Count > 0)
- {
- foreach (var binding in _bufferTextures)
- {
- binding.Texture.SetStorage(GetBufferRange(binding.Address, binding.Size, binding.BindingInfo.Flags.HasFlag(TextureUsageFlags.ImageStore)));
- // The texture must be rebound to use the new storage if it was updated.
- if (binding.IsImage)
- {
- _context.Renderer.Pipeline.SetImage(binding.BindingInfo.Binding, binding.Texture, binding.Format);
- }
- else
- {
- _context.Renderer.Pipeline.SetTexture(binding.BindingInfo.Binding, binding.Texture);
- }
- }
- _bufferTextures.Clear();
- }
- }
- /// <summary>
- /// Ensures that the graphics engine bindings are visible to the host GPU.
- /// Note: this actually performs the binding using the host graphics API.
- /// </summary>
- public void CommitGraphicsBindings()
- {
- if (_indexBufferDirty || _rebind)
- {
- _indexBufferDirty = false;
- if (_indexBuffer.Address != 0)
- {
- BufferRange buffer = GetBufferRange(_indexBuffer.Address, _indexBuffer.Size);
- _context.Renderer.Pipeline.SetIndexBuffer(buffer, _indexBuffer.Type);
- }
- }
- else if (_indexBuffer.Address != 0)
- {
- SynchronizeBufferRange(_indexBuffer.Address, _indexBuffer.Size);
- }
- uint vbEnableMask = _vertexBuffersEnableMask;
- if (_vertexBuffersDirty || _rebind)
- {
- _vertexBuffersDirty = false;
- Span<VertexBufferDescriptor> vertexBuffers = stackalloc VertexBufferDescriptor[Constants.TotalVertexBuffers];
- for (int index = 0; (vbEnableMask >> index) != 0; index++)
- {
- VertexBuffer vb = _vertexBuffers[index];
- if (vb.Address == 0)
- {
- continue;
- }
- BufferRange buffer = GetBufferRange(vb.Address, vb.Size);
- vertexBuffers[index] = new VertexBufferDescriptor(buffer, vb.Stride, vb.Divisor);
- }
- _context.Renderer.Pipeline.SetVertexBuffers(vertexBuffers);
- }
- else
- {
- for (int index = 0; (vbEnableMask >> index) != 0; index++)
- {
- VertexBuffer vb = _vertexBuffers[index];
- if (vb.Address == 0)
- {
- continue;
- }
- SynchronizeBufferRange(vb.Address, vb.Size);
- }
- }
- if (_transformFeedbackBuffersDirty || _rebind)
- {
- _transformFeedbackBuffersDirty = false;
- Span<BufferRange> tfbs = stackalloc BufferRange[Constants.TotalTransformFeedbackBuffers];
- for (int index = 0; index < Constants.TotalTransformFeedbackBuffers; index++)
- {
- BufferBounds tfb = _transformFeedbackBuffers[index];
- if (tfb.Address == 0)
- {
- tfbs[index] = BufferRange.Empty;
- continue;
- }
- tfbs[index] = GetBufferRange(tfb.Address, tfb.Size);
- }
- _context.Renderer.Pipeline.SetTransformFeedbackBuffers(tfbs);
- }
- else
- {
- for (int index = 0; index < Constants.TotalTransformFeedbackBuffers; index++)
- {
- BufferBounds tfb = _transformFeedbackBuffers[index];
- if (tfb.Address == 0)
- {
- continue;
- }
- SynchronizeBufferRange(tfb.Address, tfb.Size);
- }
- }
- if (_gpStorageBuffersDirty || _rebind)
- {
- _gpStorageBuffersDirty = false;
- BindBuffers(_gpStorageBuffers, isStorage: true);
- }
- else
- {
- UpdateBuffers(_gpStorageBuffers);
- }
- if (_gpUniformBuffersDirty || _rebind)
- {
- _gpUniformBuffersDirty = false;
- BindBuffers(_gpUniformBuffers, isStorage: false);
- }
- else
- {
- UpdateBuffers(_gpUniformBuffers);
- }
- CommitBufferTextureBindings();
- _rebind = false;
- }
- /// <summary>
- /// Bind respective buffer bindings on the host API.
- /// </summary>
- /// <param name="bindings">Bindings to bind</param>
- /// <param name="isStorage">True to bind as storage buffer, false to bind as uniform buffers</param>
- private void BindBuffers(BuffersPerStage[] bindings, bool isStorage)
- {
- int count = isStorage ? _gpStorageBufferBindings : _gpUniformBufferBindings;
- Span<BufferRange> ranges = count < StackToHeapThreshold ? stackalloc BufferRange[count] : new BufferRange[count];
- for (ShaderStage stage = ShaderStage.Vertex; stage <= ShaderStage.Fragment; stage++)
- {
- ref var buffers = ref bindings[(int)stage - 1];
- for (int index = 0; index < buffers.Count; index++)
- {
- ref var bindingInfo = ref buffers.Bindings[index];
- BufferBounds bounds = buffers.Buffers[bindingInfo.Slot];
- if (bounds.Address != 0)
- {
- ranges[bindingInfo.Binding] = isStorage
- ? GetBufferRangeTillEnd(bounds.Address, bounds.Size, bounds.Flags.HasFlag(BufferUsageFlags.Write))
- : GetBufferRange(bounds.Address, bounds.Size, bounds.Flags.HasFlag(BufferUsageFlags.Write));
- }
- }
- }
- if (isStorage)
- {
- _context.Renderer.Pipeline.SetStorageBuffers(ranges);
- }
- else
- {
- _context.Renderer.Pipeline.SetUniformBuffers(ranges);
- }
- }
- /// <summary>
- /// Updates data for the already bound buffer bindings.
- /// </summary>
- /// <param name="bindings">Bindings to update</param>
- private void UpdateBuffers(BuffersPerStage[] bindings)
- {
- for (ShaderStage stage = ShaderStage.Vertex; stage <= ShaderStage.Fragment; stage++)
- {
- ref var buffers = ref bindings[(int)stage - 1];
- for (int index = 0; index < buffers.Count; index++)
- {
- ref var binding = ref buffers.Bindings[index];
- BufferBounds bounds = buffers.Buffers[binding.Slot];
- if (bounds.Address == 0)
- {
- continue;
- }
- SynchronizeBufferRange(bounds.Address, bounds.Size);
- }
- }
- }
- /// <summary>
- /// Sets the buffer storage of a buffer texture. This will be bound when the buffer manager commits bindings.
- /// </summary>
- /// <param name="texture">Buffer texture</param>
- /// <param name="address">Address of the buffer in memory</param>
- /// <param name="size">Size of the buffer in bytes</param>
- /// <param name="bindingInfo">Binding info for the buffer texture</param>
- /// <param name="format">Format of the buffer texture</param>
- /// <param name="isImage">Whether the binding is for an image or a sampler</param>
- public void SetBufferTextureStorage(ITexture texture, ulong address, ulong size, TextureBindingInfo bindingInfo, Format format, bool isImage)
- {
- CreateBuffer(address, size);
- _bufferTextures.Add(new BufferTextureBinding(texture, address, size, bindingInfo, format, isImage));
- }
- /// <summary>
- /// Copy a buffer data from a given address to another.
- /// </summary>
- /// <remarks>
- /// This does a GPU side copy.
- /// </remarks>
- /// <param name="srcVa">GPU virtual address of the copy source</param>
- /// <param name="dstVa">GPU virtual address of the copy destination</param>
- /// <param name="size">Size in bytes of the copy</param>
- public void CopyBuffer(GpuVa srcVa, GpuVa dstVa, ulong size)
- {
- ulong srcAddress = TranslateAndCreateBuffer(srcVa.Pack(), size);
- ulong dstAddress = TranslateAndCreateBuffer(dstVa.Pack(), size);
- Buffer srcBuffer = GetBuffer(srcAddress, size);
- Buffer dstBuffer = GetBuffer(dstAddress, size);
- int srcOffset = (int)(srcAddress - srcBuffer.Address);
- int dstOffset = (int)(dstAddress - dstBuffer.Address);
- _context.Renderer.Pipeline.CopyBuffer(
- srcBuffer.Handle,
- dstBuffer.Handle,
- srcOffset,
- dstOffset,
- (int)size);
- if (srcBuffer.IsModified(srcAddress, size))
- {
- dstBuffer.SignalModified(dstAddress, size);
- }
- else
- {
- // Optimization: If the data being copied is already in memory, then copy it directly instead of flushing from GPU.
- dstBuffer.ClearModified(dstAddress, size);
- _context.PhysicalMemory.WriteUntracked(dstAddress, _context.PhysicalMemory.GetSpan(srcAddress, (int)size));
- }
- }
- /// <summary>
- /// Clears a buffer at a given address with the specified value.
- /// </summary>
- /// <remarks>
- /// Both the address and size must be aligned to 4 bytes.
- /// </remarks>
- /// <param name="gpuVa">GPU virtual address of the region to clear</param>
- /// <param name="size">Number of bytes to clear</param>
- /// <param name="value">Value to be written into the buffer</param>
- public void ClearBuffer(GpuVa gpuVa, ulong size, uint value)
- {
- ulong address = TranslateAndCreateBuffer(gpuVa.Pack(), size);
- Buffer buffer = GetBuffer(address, size);
- int offset = (int)(address - buffer.Address);
- _context.Renderer.Pipeline.ClearBuffer(buffer.Handle, offset, (int)size, value);
- buffer.SignalModified(address, size);
- }
- /// <summary>
- /// Gets a buffer sub-range starting at a given memory address.
- /// </summary>
- /// <param name="address">Start address of the memory range</param>
- /// <param name="size">Size in bytes of the memory range</param>
- /// <param name="write">Whether the buffer will be written to by this use</param>
- /// <returns>The buffer sub-range starting at the given memory address</returns>
- private BufferRange GetBufferRangeTillEnd(ulong address, ulong size, bool write = false)
- {
- return GetBuffer(address, size, write).GetRange(address);
- }
- /// <summary>
- /// Gets a buffer sub-range for a given memory range.
- /// </summary>
- /// <param name="address">Start address of the memory range</param>
- /// <param name="size">Size in bytes of the memory range</param>
- /// <param name="write">Whether the buffer will be written to by this use</param>
- /// <returns>The buffer sub-range for the given range</returns>
- private BufferRange GetBufferRange(ulong address, ulong size, bool write = false)
- {
- return GetBuffer(address, size, write).GetRange(address, size);
- }
- /// <summary>
- /// Gets a buffer for a given memory range.
- /// A buffer overlapping with the specified range is assumed to already exist on the cache.
- /// </summary>
- /// <param name="address">Start address of the memory range</param>
- /// <param name="size">Size in bytes of the memory range</param>
- /// <param name="write">Whether the buffer will be written to by this use</param>
- /// <returns>The buffer where the range is fully contained</returns>
- private Buffer GetBuffer(ulong address, ulong size, bool write = false)
- {
- Buffer buffer;
- if (size != 0)
- {
- lock (_buffers)
- {
- buffer = _buffers.FindFirstOverlap(address, size);
- }
- buffer.SynchronizeMemory(address, size);
- if (write)
- {
- buffer.SignalModified(address, size);
- }
- }
- else
- {
- lock (_buffers)
- {
- buffer = _buffers.FindFirstOverlap(address, 1);
- }
- }
- return buffer;
- }
- /// <summary>
- /// Performs guest to host memory synchronization of a given memory range.
- /// </summary>
- /// <param name="address">Start address of the memory range</param>
- /// <param name="size">Size in bytes of the memory range</param>
- private void SynchronizeBufferRange(ulong address, ulong size)
- {
- if (size != 0)
- {
- Buffer buffer;
- lock (_buffers)
- {
- buffer = _buffers.FindFirstOverlap(address, size);
- }
- buffer.SynchronizeMemory(address, size);
- }
- }
- /// <summary>
- /// Disposes all buffers in the cache.
- /// It's an error to use the buffer manager after disposal.
- /// </summary>
- public void Dispose()
- {
- lock (_buffers)
- {
- foreach (Buffer buffer in _buffers)
- {
- buffer.Dispose();
- }
- }
- }
- }
- }
|