2019-10-26 19:50:52 +02:00
|
|
|
|
using System;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
|
{
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// GPU state.
|
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
|
class GpuState
|
|
|
|
|
{
|
|
|
|
|
private const int RegistersCount = 0xe00;
|
|
|
|
|
|
2019-11-22 03:46:14 +01:00
|
|
|
|
public delegate void MethodCallback(GpuState state, int argument);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
|
|
private int[] _backingMemory;
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// GPU register information.
|
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
|
private struct Register
|
|
|
|
|
{
|
|
|
|
|
public MethodCallback Callback;
|
|
|
|
|
|
2019-10-26 19:50:52 +02:00
|
|
|
|
public MethodOffset BaseOffset;
|
|
|
|
|
|
|
|
|
|
public int Stride;
|
|
|
|
|
public int Count;
|
|
|
|
|
|
|
|
|
|
public bool Modified;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Register[] _registers;
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a new instance of the GPU state.
|
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
|
public GpuState()
|
|
|
|
|
{
|
|
|
|
|
_backingMemory = new int[RegistersCount];
|
|
|
|
|
|
|
|
|
|
_registers = new Register[RegistersCount];
|
|
|
|
|
|
2019-10-26 19:50:52 +02:00
|
|
|
|
for (int index = 0; index < _registers.Length; index++)
|
|
|
|
|
{
|
|
|
|
|
_registers[index].BaseOffset = (MethodOffset)index;
|
|
|
|
|
_registers[index].Stride = 1;
|
|
|
|
|
_registers[index].Count = 1;
|
|
|
|
|
_registers[index].Modified = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (var item in GpuStateTable.Table)
|
|
|
|
|
{
|
|
|
|
|
int totalRegs = item.Size * item.Count;
|
|
|
|
|
|
|
|
|
|
for (int regOffset = 0; regOffset < totalRegs; regOffset++)
|
|
|
|
|
{
|
|
|
|
|
int index = (int)item.Offset + regOffset;
|
|
|
|
|
|
|
|
|
|
_registers[index].BaseOffset = item.Offset;
|
|
|
|
|
_registers[index].Stride = item.Size;
|
|
|
|
|
_registers[index].Count = item.Count;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
|
|
InitializeDefaultState();
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Calls a GPU method, using this state.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="meth">The GPU method to be called</param>
|
2019-10-13 08:02:07 +02:00
|
|
|
|
public void CallMethod(MethodParams meth)
|
|
|
|
|
{
|
|
|
|
|
Register register = _registers[meth.Method];
|
|
|
|
|
|
|
|
|
|
if (_backingMemory[meth.Method] != meth.Argument)
|
|
|
|
|
{
|
2019-10-26 19:50:52 +02:00
|
|
|
|
_registers[(int)register.BaseOffset].Modified = true;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_backingMemory[meth.Method] = meth.Argument;
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
register.Callback?.Invoke(this, meth.Argument);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads data from a GPU register at the given offset.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="offset">Offset to be read</param>
|
|
|
|
|
/// <returns>Data at the register</returns>
|
2019-10-13 08:02:07 +02:00
|
|
|
|
public int Read(int offset)
|
|
|
|
|
{
|
|
|
|
|
return _backingMemory[offset];
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 02:11:43 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Writes data to the GPU register at the given offset.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="offset">Offset to be written</param>
|
|
|
|
|
/// <param name="value">Value to be written</param>
|
|
|
|
|
public void Write(int offset, int value)
|
|
|
|
|
{
|
|
|
|
|
_backingMemory[offset] = value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
2020-01-02 00:14:18 +01:00
|
|
|
|
/// Writes an offset value at the uniform buffer offset register.
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="offset">The offset to be written</param>
|
2019-10-13 08:02:07 +02:00
|
|
|
|
public void SetUniformBufferOffset(int offset)
|
|
|
|
|
{
|
|
|
|
|
_backingMemory[(int)MethodOffset.UniformBufferState + 3] = offset;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes registers with the default state.
|
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
|
private void InitializeDefaultState()
|
|
|
|
|
{
|
|
|
|
|
// Depth ranges.
|
|
|
|
|
for (int index = 0; index < 8; index++)
|
|
|
|
|
{
|
|
|
|
|
_backingMemory[(int)MethodOffset.ViewportExtents + index * 4 + 2] = 0;
|
|
|
|
|
_backingMemory[(int)MethodOffset.ViewportExtents + index * 4 + 3] = 0x3F800000;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-06 23:37:00 +01:00
|
|
|
|
// Viewport transform enable.
|
|
|
|
|
_backingMemory[(int)MethodOffset.ViewportTransformEnable] = 1;
|
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
|
// Default front stencil mask.
|
|
|
|
|
_backingMemory[0x4e7] = 0xff;
|
|
|
|
|
|
|
|
|
|
// Default color mask.
|
2019-12-06 23:37:00 +01:00
|
|
|
|
for (int index = 0; index < Constants.TotalRenderTargets; index++)
|
|
|
|
|
{
|
|
|
|
|
_backingMemory[(int)MethodOffset.RtColorMask + index] = 0x1111;
|
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Registers a callback that is called every time a GPU method, or methods are called.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="offset">Offset of the method</param>
|
|
|
|
|
/// <param name="count">Word count of the methods region</param>
|
|
|
|
|
/// <param name="callback">Calllback to be called</param>
|
2019-10-26 19:50:52 +02:00
|
|
|
|
public void RegisterCallback(MethodOffset offset, int count, MethodCallback callback)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-26 19:50:52 +02:00
|
|
|
|
for (int index = 0; index < count; index++)
|
|
|
|
|
{
|
|
|
|
|
_registers[(int)offset + index].Callback = callback;
|
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Registers a callback that is called every time a GPU method is called.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="offset">Offset of the method</param>
|
|
|
|
|
/// <param name="callback">Calllback to be called</param>
|
2019-10-26 19:50:52 +02:00
|
|
|
|
public void RegisterCallback(MethodOffset offset, MethodCallback callback)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-26 19:50:52 +02:00
|
|
|
|
_registers[(int)offset].Callback = callback;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks if a given register has been modified since the last call to this method.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="offset">Register offset</param>
|
|
|
|
|
/// <returns>True if modified, false otherwise</returns>
|
2019-11-23 06:17:22 +01:00
|
|
|
|
public bool QueryModified(MethodOffset offset)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-11-23 06:17:22 +01:00
|
|
|
|
bool modified = _registers[(int)offset].Modified;
|
2019-10-26 19:50:52 +02:00
|
|
|
|
|
2019-11-23 06:17:22 +01:00
|
|
|
|
_registers[(int)offset].Modified = false;
|
2019-10-26 19:50:52 +02:00
|
|
|
|
|
|
|
|
|
return modified;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks if two registers have been modified since the last call to this method.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="m1">First register offset</param>
|
|
|
|
|
/// <param name="m2">Second register offset</param>
|
|
|
|
|
/// <returns>True if any register was modified, false otherwise</returns>
|
2019-11-23 06:17:22 +01:00
|
|
|
|
public bool QueryModified(MethodOffset m1, MethodOffset m2)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-11-23 06:17:22 +01:00
|
|
|
|
bool modified = _registers[(int)m1].Modified ||
|
|
|
|
|
_registers[(int)m2].Modified;
|
2019-10-26 19:50:52 +02:00
|
|
|
|
|
2019-11-23 06:17:22 +01:00
|
|
|
|
_registers[(int)m1].Modified = false;
|
|
|
|
|
_registers[(int)m2].Modified = false;
|
|
|
|
|
|
|
|
|
|
return modified;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks if two registers have been modified since the last call to this method.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="m1">First register offset</param>
|
|
|
|
|
/// <param name="m2">Second register offset</param>
|
2020-01-01 16:39:09 +01:00
|
|
|
|
/// <param name="m3">Third register offset</param>
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <returns>True if any register was modified, false otherwise</returns>
|
2019-11-23 06:17:22 +01:00
|
|
|
|
public bool QueryModified(MethodOffset m1, MethodOffset m2, MethodOffset m3)
|
|
|
|
|
{
|
|
|
|
|
bool modified = _registers[(int)m1].Modified ||
|
|
|
|
|
_registers[(int)m2].Modified ||
|
|
|
|
|
_registers[(int)m3].Modified;
|
|
|
|
|
|
|
|
|
|
_registers[(int)m1].Modified = false;
|
|
|
|
|
_registers[(int)m2].Modified = false;
|
|
|
|
|
_registers[(int)m3].Modified = false;
|
|
|
|
|
|
|
|
|
|
return modified;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks if two registers have been modified since the last call to this method.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="m1">First register offset</param>
|
|
|
|
|
/// <param name="m2">Second register offset</param>
|
2020-01-01 16:39:09 +01:00
|
|
|
|
/// <param name="m3">Third register offset</param>
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <param name="m4">Fourth register offset</param>
|
|
|
|
|
/// <returns>True if any register was modified, false otherwise</returns>
|
2019-11-23 06:17:22 +01:00
|
|
|
|
public bool QueryModified(MethodOffset m1, MethodOffset m2, MethodOffset m3, MethodOffset m4)
|
|
|
|
|
{
|
|
|
|
|
bool modified = _registers[(int)m1].Modified ||
|
|
|
|
|
_registers[(int)m2].Modified ||
|
|
|
|
|
_registers[(int)m3].Modified ||
|
|
|
|
|
_registers[(int)m4].Modified;
|
|
|
|
|
|
|
|
|
|
_registers[(int)m1].Modified = false;
|
|
|
|
|
_registers[(int)m2].Modified = false;
|
|
|
|
|
_registers[(int)m3].Modified = false;
|
|
|
|
|
_registers[(int)m4].Modified = false;
|
2019-10-26 19:50:52 +02:00
|
|
|
|
|
|
|
|
|
return modified;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks if two registers have been modified since the last call to this method.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="m1">First register offset</param>
|
|
|
|
|
/// <param name="m2">Second register offset</param>
|
2020-01-01 16:39:09 +01:00
|
|
|
|
/// <param name="m3">Third register offset</param>
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <param name="m4">Fourth register offset</param>
|
|
|
|
|
/// <param name="m5">Fifth register offset</param>
|
|
|
|
|
/// <returns>True if any register was modified, false otherwise</returns>
|
2019-12-05 21:34:47 +01:00
|
|
|
|
public bool QueryModified(
|
|
|
|
|
MethodOffset m1,
|
|
|
|
|
MethodOffset m2,
|
|
|
|
|
MethodOffset m3,
|
|
|
|
|
MethodOffset m4,
|
|
|
|
|
MethodOffset m5)
|
|
|
|
|
{
|
|
|
|
|
bool modified = _registers[(int)m1].Modified ||
|
|
|
|
|
_registers[(int)m2].Modified ||
|
|
|
|
|
_registers[(int)m3].Modified ||
|
|
|
|
|
_registers[(int)m4].Modified ||
|
|
|
|
|
_registers[(int)m5].Modified;
|
|
|
|
|
|
|
|
|
|
_registers[(int)m1].Modified = false;
|
|
|
|
|
_registers[(int)m2].Modified = false;
|
|
|
|
|
_registers[(int)m3].Modified = false;
|
|
|
|
|
_registers[(int)m4].Modified = false;
|
|
|
|
|
_registers[(int)m5].Modified = false;
|
|
|
|
|
|
|
|
|
|
return modified;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets indexed data from a given register offset.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T">Type of the data</typeparam>
|
|
|
|
|
/// <param name="offset">Register offset</param>
|
|
|
|
|
/// <param name="index">Index for indexed data</param>
|
|
|
|
|
/// <returns>The data at the specified location</returns>
|
2019-10-26 19:50:52 +02:00
|
|
|
|
public T Get<T>(MethodOffset offset, int index) where T : struct
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-26 19:50:52 +02:00
|
|
|
|
Register register = _registers[(int)offset];
|
|
|
|
|
|
|
|
|
|
if ((uint)index >= register.Count)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(index));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Get<T>(offset + index * register.Stride);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 17:32:06 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets data from a given register offset.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T">Type of the data</typeparam>
|
|
|
|
|
/// <param name="offset">Register offset</param>
|
|
|
|
|
/// <returns>The data at the specified location</returns>
|
2019-10-13 08:02:07 +02:00
|
|
|
|
public T Get<T>(MethodOffset offset) where T : struct
|
|
|
|
|
{
|
|
|
|
|
return MemoryMarshal.Cast<int, T>(_backingMemory.AsSpan().Slice((int)offset))[0];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|