2023-08-04 03:21:22 +00:00
|
|
|
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
|
|
|
using Ryujinx.Graphics.Shader.StructuredIr;
|
|
|
|
using Ryujinx.Graphics.Shader.Translation;
|
|
|
|
using System;
|
|
|
|
|
2023-08-15 13:17:00 +00:00
|
|
|
using static Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions.InstGenCall;
|
2023-08-04 03:21:22 +00:00
|
|
|
using static Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions.InstGenHelper;
|
2023-08-15 13:17:00 +00:00
|
|
|
using static Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions.InstGenMemory;
|
|
|
|
using static Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions.InstGenVector;
|
2023-08-04 03:21:22 +00:00
|
|
|
using static Ryujinx.Graphics.Shader.StructuredIr.InstructionInfo;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
|
|
|
|
{
|
|
|
|
static class InstGen
|
|
|
|
{
|
|
|
|
public static string GetExpression(CodeGenContext context, IAstNode node)
|
|
|
|
{
|
|
|
|
if (node is AstOperation operation)
|
|
|
|
{
|
|
|
|
return GetExpression(context, operation);
|
|
|
|
}
|
|
|
|
else if (node is AstOperand operand)
|
|
|
|
{
|
|
|
|
return context.OperandManager.GetExpression(context, operand);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new ArgumentException($"Invalid node type \"{node?.GetType().Name ?? "null"}\".");
|
|
|
|
}
|
|
|
|
|
|
|
|
private static string GetExpression(CodeGenContext context, AstOperation operation)
|
|
|
|
{
|
|
|
|
Instruction inst = operation.Inst;
|
|
|
|
|
|
|
|
InstInfo info = GetInstructionInfo(inst);
|
|
|
|
|
|
|
|
if ((info.Type & InstType.Call) != 0)
|
|
|
|
{
|
|
|
|
bool atomic = (info.Type & InstType.Atomic) != 0;
|
|
|
|
|
|
|
|
int arity = (int)(info.Type & InstType.ArityMask);
|
|
|
|
|
|
|
|
string args = string.Empty;
|
|
|
|
|
|
|
|
if (atomic)
|
|
|
|
{
|
|
|
|
// Hell
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (int argIndex = 0; argIndex < arity; argIndex++)
|
|
|
|
{
|
|
|
|
if (argIndex != 0)
|
|
|
|
{
|
|
|
|
args += ", ";
|
|
|
|
}
|
|
|
|
|
|
|
|
AggregateType dstType = GetSrcVarType(inst, argIndex);
|
|
|
|
|
|
|
|
args += GetSourceExpr(context, operation.GetSource(argIndex), dstType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return info.OpName + '(' + args + ')';
|
|
|
|
}
|
|
|
|
else if ((info.Type & InstType.Op) != 0)
|
|
|
|
{
|
|
|
|
string op = info.OpName;
|
|
|
|
|
|
|
|
if (inst == Instruction.Return && operation.SourcesCount != 0)
|
|
|
|
{
|
|
|
|
return $"{op} {GetSourceExpr(context, operation.GetSource(0), context.CurrentFunction.ReturnType)}";
|
|
|
|
}
|
|
|
|
|
|
|
|
int arity = (int)(info.Type & InstType.ArityMask);
|
|
|
|
|
|
|
|
string[] expr = new string[arity];
|
|
|
|
|
|
|
|
for (int index = 0; index < arity; index++)
|
|
|
|
{
|
|
|
|
IAstNode src = operation.GetSource(index);
|
|
|
|
|
|
|
|
string srcExpr = GetSourceExpr(context, src, GetSrcVarType(inst, index));
|
|
|
|
|
|
|
|
bool isLhs = arity == 2 && index == 0;
|
|
|
|
|
|
|
|
expr[index] = Enclose(srcExpr, src, inst, info, isLhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (arity)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
return op;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
return op + expr[0];
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
return $"{expr[0]} {op} {expr[1]}";
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
return $"{expr[0]} {op[0]} {expr[1]} {op[1]} {expr[2]}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((info.Type & InstType.Special) != 0)
|
|
|
|
{
|
|
|
|
switch (inst & Instruction.Mask)
|
|
|
|
{
|
|
|
|
case Instruction.Barrier:
|
|
|
|
return "|| BARRIER ||";
|
|
|
|
case Instruction.Call:
|
2023-08-15 13:17:00 +00:00
|
|
|
return Call(context, operation);
|
2023-08-04 03:21:22 +00:00
|
|
|
case Instruction.FSIBegin:
|
|
|
|
return "|| FSI BEGIN ||";
|
|
|
|
case Instruction.FSIEnd:
|
|
|
|
return "|| FSI END ||";
|
|
|
|
case Instruction.FindLSB:
|
|
|
|
return "|| FIND LSB ||";
|
|
|
|
case Instruction.FindMSBS32:
|
|
|
|
return "|| FIND MSB S32 ||";
|
|
|
|
case Instruction.FindMSBU32:
|
|
|
|
return "|| FIND MSB U32 ||";
|
|
|
|
case Instruction.GroupMemoryBarrier:
|
|
|
|
return "|| FIND GROUP MEMORY BARRIER ||";
|
|
|
|
case Instruction.ImageLoad:
|
|
|
|
return "|| IMAGE LOAD ||";
|
|
|
|
case Instruction.ImageStore:
|
|
|
|
return "|| IMAGE STORE ||";
|
|
|
|
case Instruction.ImageAtomic:
|
|
|
|
return "|| IMAGE ATOMIC ||";
|
|
|
|
case Instruction.Load:
|
2023-08-15 13:17:00 +00:00
|
|
|
return Load(context, operation);
|
2023-08-04 03:21:22 +00:00
|
|
|
case Instruction.Lod:
|
|
|
|
return "|| LOD ||";
|
|
|
|
case Instruction.MemoryBarrier:
|
|
|
|
return "|| MEMORY BARRIER ||";
|
|
|
|
case Instruction.Store:
|
2023-08-15 13:17:00 +00:00
|
|
|
return Store(context, operation);
|
2023-08-04 03:21:22 +00:00
|
|
|
case Instruction.TextureSample:
|
2023-08-15 13:17:00 +00:00
|
|
|
return TextureSample(context, operation);
|
2023-08-04 03:21:22 +00:00
|
|
|
case Instruction.TextureSize:
|
2023-08-15 13:17:00 +00:00
|
|
|
return TextureSize(context, operation);
|
2023-08-04 03:21:22 +00:00
|
|
|
case Instruction.VectorExtract:
|
2023-08-15 13:17:00 +00:00
|
|
|
return VectorExtract(context, operation);
|
2023-08-04 03:21:22 +00:00
|
|
|
case Instruction.VoteAllEqual:
|
|
|
|
return "|| VOTE ALL EQUAL ||";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-15 13:17:00 +00:00
|
|
|
// TODO: Return this to being an error
|
|
|
|
return $"Unexpected instruction type \"{info.Type}\".";
|
2023-08-04 03:21:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|