2019-10-13 08:02:07 +02:00
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
using Ryujinx.Graphics.Gpu.Engine;
|
2020-07-24 04:53:25 +02:00
|
|
|
using Ryujinx.Graphics.Gpu.Engine.GPFifo;
|
2019-10-13 08:02:07 +02:00
|
|
|
using Ryujinx.Graphics.Gpu.Memory;
|
2020-04-19 03:25:57 +02:00
|
|
|
using Ryujinx.Graphics.Gpu.Synchronization;
|
2019-10-13 08:02:07 +02:00
|
|
|
using System;
|
2021-01-17 21:08:06 +01:00
|
|
|
using System.Collections.Generic;
|
2020-11-13 00:15:34 +01:00
|
|
|
using System.Threading;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu
|
|
|
|
{
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// GPU emulation context.
|
|
|
|
/// </summary>
|
2019-12-31 23:09:49 +01:00
|
|
|
public sealed class GpuContext : IDisposable
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-11-13 00:15:34 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Event signaled when the host emulation context is ready to be used by the gpu context.
|
|
|
|
/// </summary>
|
|
|
|
public ManualResetEvent HostInitalized { get; }
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Host renderer.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
public IRenderer Renderer { get; }
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Physical memory access (it actually accesses the process memory, not actual physical memory).
|
|
|
|
/// </summary>
|
2019-12-26 00:28:17 +01:00
|
|
|
internal PhysicalMemory PhysicalMemory { get; private set; }
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// GPU memory manager.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
public MemoryManager MemoryManager { get; }
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// GPU engine methods processing.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
internal Methods Methods { get; }
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
2020-07-24 04:53:25 +02:00
|
|
|
/// GPU General Purpose FIFO queue.
|
2019-12-31 21:08:20 +01:00
|
|
|
/// </summary>
|
2020-07-24 04:53:25 +02:00
|
|
|
public GPFifoDevice GPFifo { get; }
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2020-04-19 03:25:57 +02:00
|
|
|
/// <summary>
|
|
|
|
/// GPU synchronization manager.
|
|
|
|
/// </summary>
|
|
|
|
public SynchronizationManager Synchronization { get; }
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Presentation window.
|
|
|
|
/// </summary>
|
2019-11-24 03:24:03 +01:00
|
|
|
public Window Window { get; }
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Internal sequence number, used to avoid needless resource data updates
|
|
|
|
/// in the middle of a command buffer before synchronizations.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
internal int SequenceNumber { get; private set; }
|
|
|
|
|
2021-01-17 21:08:06 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Internal sync number, used to denote points at which host synchronization can be requested.
|
|
|
|
/// </summary>
|
|
|
|
internal ulong SyncNumber { get; private set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Actions to be performed when a CPU waiting sync point is triggered.
|
|
|
|
/// If there are more than 0 items when this happens, a host sync object will be generated for the given <see cref="SyncNumber"/>,
|
|
|
|
/// and the SyncNumber will be incremented.
|
|
|
|
/// </summary>
|
|
|
|
internal List<Action> SyncActions { get; }
|
|
|
|
|
2019-12-26 00:28:17 +01:00
|
|
|
private readonly Lazy<Capabilities> _caps;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Host hardware capabilities.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
internal Capabilities Capabilities => _caps.Value;
|
|
|
|
|
2021-03-03 01:39:36 +01:00
|
|
|
/// <summary>
|
2021-03-22 19:40:07 +01:00
|
|
|
/// Event for signalling shader cache loading progress.
|
2021-03-03 01:39:36 +01:00
|
|
|
/// </summary>
|
2021-03-22 19:40:07 +01:00
|
|
|
public event Action<Shader.ShaderCacheState, int, int> ShaderCacheStateChanged
|
2021-03-03 01:39:36 +01:00
|
|
|
{
|
|
|
|
add => Methods.ShaderCache.ShaderCacheStateChanged += value;
|
|
|
|
remove => Methods.ShaderCache.ShaderCacheStateChanged -= value;
|
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Creates a new instance of the GPU emulation context.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="renderer">Host renderer</param>
|
2019-10-13 08:02:07 +02:00
|
|
|
public GpuContext(IRenderer renderer)
|
|
|
|
{
|
|
|
|
Renderer = renderer;
|
|
|
|
|
2020-07-12 05:07:01 +02:00
|
|
|
MemoryManager = new MemoryManager(this);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
Methods = new Methods(this);
|
|
|
|
|
2020-07-24 04:53:25 +02:00
|
|
|
GPFifo = new GPFifoDevice(this);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2020-04-19 03:25:57 +02:00
|
|
|
Synchronization = new SynchronizationManager();
|
|
|
|
|
2019-11-24 03:24:03 +01:00
|
|
|
Window = new Window(this);
|
|
|
|
|
2019-12-01 03:53:09 +01:00
|
|
|
_caps = new Lazy<Capabilities>(Renderer.GetCapabilities);
|
2020-11-13 00:15:34 +01:00
|
|
|
|
|
|
|
HostInitalized = new ManualResetEvent(false);
|
2021-01-17 21:08:06 +01:00
|
|
|
|
|
|
|
SyncActions = new List<Action>();
|
2020-11-13 00:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-11-17 22:40:19 +01:00
|
|
|
/// Initialize the GPU shader cache.
|
2020-11-13 00:15:34 +01:00
|
|
|
/// </summary>
|
2020-11-17 22:40:19 +01:00
|
|
|
public void InitializeShaderCache()
|
2020-11-13 00:15:34 +01:00
|
|
|
{
|
|
|
|
HostInitalized.WaitOne();
|
|
|
|
|
|
|
|
Methods.ShaderCache.Initialize();
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Advances internal sequence number.
|
|
|
|
/// This forces the update of any modified GPU resource.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
internal void AdvanceSequence()
|
|
|
|
{
|
|
|
|
SequenceNumber++;
|
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Sets the process memory manager, after the application process is initialized.
|
|
|
|
/// This is required for any GPU memory access.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="cpuMemory">CPU memory manager</param>
|
2020-05-04 00:54:50 +02:00
|
|
|
public void SetVmm(Cpu.MemoryManager cpuMemory)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2019-12-26 00:28:17 +01:00
|
|
|
PhysicalMemory = new PhysicalMemory(cpuMemory);
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
2019-12-31 23:09:49 +01:00
|
|
|
|
2021-01-17 21:08:06 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Registers an action to be performed the next time a syncpoint is incremented.
|
|
|
|
/// This will also ensure a host sync object is created, and <see cref="SyncNumber"/> is incremented.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="action">The action to be performed on sync object creation</param>
|
|
|
|
public void RegisterSyncAction(Action action)
|
|
|
|
{
|
|
|
|
SyncActions.Add(action);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a host sync object if there are any pending sync actions. The actions will then be called.
|
|
|
|
/// If no actions are present, a host sync object is not created.
|
|
|
|
/// </summary>
|
|
|
|
public void CreateHostSyncIfNeeded()
|
|
|
|
{
|
|
|
|
if (SyncActions.Count > 0)
|
|
|
|
{
|
|
|
|
Renderer.CreateSync(SyncNumber);
|
|
|
|
|
|
|
|
SyncNumber++;
|
|
|
|
|
|
|
|
foreach (Action action in SyncActions)
|
|
|
|
{
|
|
|
|
action();
|
|
|
|
}
|
|
|
|
|
|
|
|
SyncActions.Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-31 23:09:49 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Disposes all GPU resources currently cached.
|
|
|
|
/// It's an error to push any GPU commands after disposal.
|
|
|
|
/// Additionally, the GPU commands FIFO must be empty for disposal,
|
|
|
|
/// and processing of all commands must have finished.
|
|
|
|
/// </summary>
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Methods.ShaderCache.Dispose();
|
|
|
|
Methods.BufferManager.Dispose();
|
|
|
|
Methods.TextureManager.Dispose();
|
2020-01-21 23:23:11 +01:00
|
|
|
Renderer.Dispose();
|
2020-07-24 04:53:25 +02:00
|
|
|
GPFifo.Dispose();
|
2020-11-13 00:15:34 +01:00
|
|
|
HostInitalized.Dispose();
|
2019-12-31 23:09:49 +01:00
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|