2020-08-03 03:36:57 +02:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2021-07-11 22:20:40 +02:00
|
|
|
|
using Ryujinx.Graphics.Device;
|
2020-08-03 03:36:57 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Engine.MME
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a Macro Just-in-Time compiler execution context.
|
|
|
|
|
/// </summary>
|
|
|
|
|
class MacroJitContext
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Arguments FIFO.
|
|
|
|
|
/// </summary>
|
2021-08-26 23:50:28 +02:00
|
|
|
|
public Queue<FifoWord> Fifo { get; } = new Queue<FifoWord>();
|
2020-08-03 03:36:57 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches a arguments from the arguments FIFO.
|
|
|
|
|
/// </summary>
|
2021-08-26 23:50:28 +02:00
|
|
|
|
/// <returns>The call argument, or 0 if the FIFO is empty</returns>
|
2020-08-03 03:36:57 +02:00
|
|
|
|
public int FetchParam()
|
|
|
|
|
{
|
2021-08-26 23:50:28 +02:00
|
|
|
|
if (!Fifo.TryDequeue(out var value))
|
2020-08-03 03:36:57 +02:00
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Warning?.Print(LogClass.Gpu, "Macro attempted to fetch an inexistent argument.");
|
2020-08-03 03:36:57 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 23:50:28 +02:00
|
|
|
|
return value.Word;
|
2020-08-03 03:36:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads data from a GPU register.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="state">Current GPU state</param>
|
|
|
|
|
/// <param name="reg">Register offset to read</param>
|
|
|
|
|
/// <returns>GPU register value</returns>
|
2021-07-11 22:20:40 +02:00
|
|
|
|
public static int Read(IDeviceState state, int reg)
|
2020-08-03 03:36:57 +02:00
|
|
|
|
{
|
2021-07-11 22:20:40 +02:00
|
|
|
|
return state.Read(reg * 4);
|
2020-08-03 03:36:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Performs a GPU method call.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">Call argument</param>
|
|
|
|
|
/// <param name="state">Current GPU state</param>
|
|
|
|
|
/// <param name="methAddr">Address, in words, of the method</param>
|
2021-07-11 22:20:40 +02:00
|
|
|
|
public static void Send(int value, IDeviceState state, int methAddr)
|
2020-08-03 03:36:57 +02:00
|
|
|
|
{
|
2021-07-11 22:20:40 +02:00
|
|
|
|
state.Write(methAddr * 4, value);
|
2020-08-03 03:36:57 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|