2021-10-12 22:35:31 +02:00
|
|
|
using Ryujinx.Graphics.Shader.Decoders;
|
|
|
|
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
|
|
|
using Ryujinx.Graphics.Shader.Translation;
|
|
|
|
|
|
|
|
using static Ryujinx.Graphics.Shader.Instructions.InstEmitHelper;
|
|
|
|
using static Ryujinx.Graphics.Shader.IntermediateRepresentation.OperandHelper;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Shader.Instructions
|
|
|
|
{
|
|
|
|
static partial class InstEmit
|
|
|
|
{
|
|
|
|
public static void Al2p(EmitterContext context)
|
|
|
|
{
|
|
|
|
InstAl2p op = context.GetOp<InstAl2p>();
|
|
|
|
|
|
|
|
context.Copy(GetDest(op.Dest), context.IAdd(GetSrcReg(context, op.SrcA), Const(op.Imm11)));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void Ald(EmitterContext context)
|
|
|
|
{
|
|
|
|
InstAld op = context.GetOp<InstAld>();
|
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
// Some of those attributes are per invocation,
|
|
|
|
// so we should ignore any primitive vertex indexing for those.
|
|
|
|
bool hasPrimitiveVertex = AttributeMap.HasPrimitiveVertex(context.Config.Stage, op.O) && !op.P;
|
|
|
|
|
|
|
|
if (!op.Phys)
|
|
|
|
{
|
|
|
|
hasPrimitiveVertex &= HasPrimitiveVertex(op.Imm11);
|
|
|
|
}
|
|
|
|
|
|
|
|
Operand primVertex = hasPrimitiveVertex ? context.Copy(GetSrcReg(context, op.SrcB)) : null;
|
2021-10-12 22:35:31 +02:00
|
|
|
|
|
|
|
for (int index = 0; index < (int)op.AlSize + 1; index++)
|
|
|
|
{
|
|
|
|
Register rd = new Register(op.Dest + index, RegisterType.Gpr);
|
|
|
|
|
|
|
|
if (rd.IsRZ)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (op.Phys)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
Operand offset = context.ISubtract(GetSrcReg(context, op.SrcA), Const(AttributeConsts.UserAttributeBase));
|
|
|
|
Operand vecIndex = context.ShiftRightU32(offset, Const(4));
|
|
|
|
Operand elemIndex = context.BitwiseAnd(context.ShiftRightU32(offset, Const(2)), Const(3));
|
2021-10-12 22:35:31 +02:00
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
StorageKind storageKind = op.O ? StorageKind.Output : StorageKind.Input;
|
2021-10-12 22:35:31 +02:00
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
context.Copy(Register(rd), context.Load(storageKind, IoVariable.UserDefined, primVertex, vecIndex, elemIndex));
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
2021-10-18 23:38:04 +02:00
|
|
|
else if (op.SrcB == RegisterConsts.RegisterZeroIndex || op.P)
|
2021-10-12 22:35:31 +02:00
|
|
|
{
|
2021-11-08 17:18:46 +01:00
|
|
|
int offset = FixedFuncToUserAttribute(context.Config, op.Imm11 + index * 4, op.O);
|
2021-10-12 22:35:31 +02:00
|
|
|
|
2021-10-18 23:38:04 +02:00
|
|
|
context.FlagAttributeRead(offset);
|
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
bool isOutput = op.O && CanLoadOutput(offset);
|
|
|
|
|
|
|
|
if (!op.P && !isOutput && TryConvertIdToIndexForVulkan(context, offset, out Operand value))
|
2021-10-18 23:38:04 +02:00
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
context.Copy(Register(rd), value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
context.Copy(Register(rd), AttributeMap.GenerateAttributeLoad(context, primVertex, offset, isOutput, op.P));
|
2021-10-18 23:38:04 +02:00
|
|
|
}
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-11-08 17:18:46 +01:00
|
|
|
int offset = FixedFuncToUserAttribute(context.Config, op.Imm11 + index * 4, op.O);
|
2021-10-18 23:38:04 +02:00
|
|
|
|
|
|
|
context.FlagAttributeRead(offset);
|
2021-10-12 22:35:31 +02:00
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
bool isOutput = op.O && CanLoadOutput(offset);
|
2021-10-12 22:35:31 +02:00
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
context.Copy(Register(rd), AttributeMap.GenerateAttributeLoad(context, primVertex, offset, isOutput, false));
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void Ast(EmitterContext context)
|
|
|
|
{
|
|
|
|
InstAst op = context.GetOp<InstAst>();
|
|
|
|
|
|
|
|
for (int index = 0; index < (int)op.AlSize + 1; index++)
|
|
|
|
{
|
|
|
|
if (op.SrcB + index > RegisterConsts.RegisterZeroIndex)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Register rd = new Register(op.SrcB + index, RegisterType.Gpr);
|
|
|
|
|
|
|
|
if (op.Phys)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
Operand offset = context.ISubtract(GetSrcReg(context, op.SrcA), Const(AttributeConsts.UserAttributeBase));
|
|
|
|
Operand vecIndex = context.ShiftRightU32(offset, Const(4));
|
|
|
|
Operand elemIndex = context.BitwiseAnd(context.ShiftRightU32(offset, Const(2)), Const(3));
|
|
|
|
Operand invocationId = AttributeMap.HasInvocationId(context.Config.Stage, isOutput: true)
|
|
|
|
? context.Load(StorageKind.Input, IoVariable.InvocationId)
|
|
|
|
: null;
|
|
|
|
|
|
|
|
context.Store(StorageKind.Output, IoVariable.UserDefined, invocationId, vecIndex, elemIndex, Register(rd));
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-10-18 23:38:04 +02:00
|
|
|
// TODO: Support indirect stores using Ra.
|
|
|
|
|
|
|
|
int offset = op.Imm11 + index * 4;
|
|
|
|
|
2021-11-08 17:18:46 +01:00
|
|
|
if (!context.Config.IsUsedOutputAttribute(offset))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset = FixedFuncToUserAttribute(context.Config, offset, isOutput: true);
|
|
|
|
|
2021-10-18 23:38:04 +02:00
|
|
|
context.FlagAttributeWritten(offset);
|
2021-10-12 22:35:31 +02:00
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
AttributeMap.GenerateAttributeStore(context, offset, op.P, Register(rd));
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void Ipa(EmitterContext context)
|
|
|
|
{
|
|
|
|
InstIpa op = context.GetOp<InstIpa>();
|
|
|
|
|
|
|
|
context.FlagAttributeRead(op.Imm10);
|
|
|
|
|
|
|
|
Operand res;
|
|
|
|
|
2021-11-08 17:18:46 +01:00
|
|
|
bool isFixedFunc = false;
|
|
|
|
|
2021-10-12 22:35:31 +02:00
|
|
|
if (op.Idx)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
Operand offset = context.ISubtract(GetSrcReg(context, op.SrcA), Const(AttributeConsts.UserAttributeBase));
|
|
|
|
Operand vecIndex = context.ShiftRightU32(offset, Const(4));
|
|
|
|
Operand elemIndex = context.BitwiseAnd(context.ShiftRightU32(offset, Const(2)), Const(3));
|
2021-10-12 22:35:31 +02:00
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
res = context.Load(StorageKind.Input, IoVariable.UserDefined, null, vecIndex, elemIndex);
|
|
|
|
res = context.FPMultiply(res, context.Load(StorageKind.Input, IoVariable.FragmentCoord, null, Const(3)));
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-11-08 17:18:46 +01:00
|
|
|
isFixedFunc = TryFixedFuncToUserAttributeIpa(context, op.Imm10, out res);
|
2021-10-12 22:35:31 +02:00
|
|
|
|
|
|
|
if (op.Imm10 >= AttributeConsts.UserAttributeBase && op.Imm10 < AttributeConsts.UserAttributeEnd)
|
|
|
|
{
|
|
|
|
int index = (op.Imm10 - AttributeConsts.UserAttributeBase) >> 4;
|
|
|
|
|
|
|
|
if (context.Config.ImapTypes[index].GetFirstUsedType() == PixelImap.Perspective)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
res = context.FPMultiply(res, context.Load(StorageKind.Input, IoVariable.FragmentCoord, null, Const(3)));
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-26 00:51:07 +02:00
|
|
|
else if (op.Imm10 == AttributeConsts.PositionX || op.Imm10 == AttributeConsts.PositionY)
|
|
|
|
{
|
|
|
|
// FragCoord X/Y must be divided by the render target scale, if resolution scaling is active,
|
|
|
|
// because the shader code is not expecting scaled values.
|
|
|
|
res = context.FPDivide(res, context.Load(StorageKind.Input, IoVariable.SupportBlockRenderScale, null, Const(0)));
|
|
|
|
}
|
|
|
|
else if (op.Imm10 == AttributeConsts.FrontFacing && context.Config.GpuAccessor.QueryHostHasFrontFacingBug())
|
|
|
|
{
|
|
|
|
// gl_FrontFacing sometimes has incorrect (flipped) values depending how it is accessed on Intel GPUs.
|
|
|
|
// This weird trick makes it behave.
|
|
|
|
res = context.ICompareLess(context.INegate(context.IConvertS32ToFP32(res)), Const(0));
|
|
|
|
}
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
|
2021-11-08 17:18:46 +01:00
|
|
|
if (op.IpaOp == IpaOp.Multiply && !isFixedFunc)
|
2021-10-12 22:35:31 +02:00
|
|
|
{
|
|
|
|
Operand srcB = GetSrcReg(context, op.SrcB);
|
|
|
|
|
|
|
|
res = context.FPMultiply(res, srcB);
|
|
|
|
}
|
|
|
|
|
|
|
|
res = context.FPSaturate(res, op.Sat);
|
|
|
|
|
|
|
|
context.Copy(GetDest(op.Dest), res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void Isberd(EmitterContext context)
|
|
|
|
{
|
|
|
|
InstIsberd op = context.GetOp<InstIsberd>();
|
|
|
|
|
2022-04-08 12:42:39 +02:00
|
|
|
// This instruction performs a load from ISBE (Internal Stage Buffer Entry) memory.
|
|
|
|
// Here, we just propagate the offset, as the result from this instruction is usually
|
|
|
|
// used with ALD to perform vertex load on geometry or tessellation shaders.
|
|
|
|
// The offset is calculated as (PrimitiveIndex * VerticesPerPrimitive) + VertexIndex.
|
|
|
|
// Since we hardcode PrimitiveIndex to zero, then the offset will be just VertexIndex.
|
2021-10-12 22:35:31 +02:00
|
|
|
context.Copy(GetDest(op.Dest), GetSrcReg(context, op.SrcA));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void OutR(EmitterContext context)
|
|
|
|
{
|
|
|
|
InstOutR op = context.GetOp<InstOutR>();
|
|
|
|
|
|
|
|
EmitOut(context, op.OutType.HasFlag(OutType.Emit), op.OutType.HasFlag(OutType.Cut));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void OutI(EmitterContext context)
|
|
|
|
{
|
|
|
|
InstOutI op = context.GetOp<InstOutI>();
|
|
|
|
|
|
|
|
EmitOut(context, op.OutType.HasFlag(OutType.Emit), op.OutType.HasFlag(OutType.Cut));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void OutC(EmitterContext context)
|
|
|
|
{
|
|
|
|
InstOutC op = context.GetOp<InstOutC>();
|
|
|
|
|
|
|
|
EmitOut(context, op.OutType.HasFlag(OutType.Emit), op.OutType.HasFlag(OutType.Cut));
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void EmitOut(EmitterContext context, bool emit, bool cut)
|
|
|
|
{
|
|
|
|
if (!(emit || cut))
|
|
|
|
{
|
|
|
|
context.Config.GpuAccessor.Log("Invalid OUT encoding.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (emit)
|
|
|
|
{
|
2022-05-12 15:47:13 +02:00
|
|
|
if (context.Config.LastInVertexPipeline)
|
|
|
|
{
|
|
|
|
context.PrepareForVertexReturn(out var tempXLocal, out var tempYLocal, out var tempZLocal);
|
|
|
|
|
|
|
|
context.EmitVertex();
|
|
|
|
|
|
|
|
// Restore output position value before transformation.
|
|
|
|
|
|
|
|
if (tempXLocal != null)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
context.Copy(context.Load(StorageKind.Input, IoVariable.Position, null, Const(0)), tempXLocal);
|
2022-05-12 15:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tempYLocal != null)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
context.Copy(context.Load(StorageKind.Input, IoVariable.Position, null, Const(1)), tempYLocal);
|
2022-05-12 15:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tempZLocal != null)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
context.Copy(context.Load(StorageKind.Input, IoVariable.Position, null, Const(2)), tempZLocal);
|
2022-05-12 15:47:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
context.EmitVertex();
|
|
|
|
}
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cut)
|
|
|
|
{
|
|
|
|
context.EndPrimitive();
|
|
|
|
}
|
|
|
|
}
|
2021-11-08 17:18:46 +01:00
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
private static bool HasPrimitiveVertex(int attr)
|
|
|
|
{
|
|
|
|
return attr != AttributeConsts.PrimitiveId &&
|
|
|
|
attr != AttributeConsts.TessCoordX &&
|
|
|
|
attr != AttributeConsts.TessCoordY;
|
|
|
|
}
|
|
|
|
|
2022-10-01 07:35:52 +02:00
|
|
|
private static bool CanLoadOutput(int attr)
|
|
|
|
{
|
|
|
|
return attr != AttributeConsts.TessCoordX && attr != AttributeConsts.TessCoordY;
|
|
|
|
}
|
|
|
|
|
2021-11-08 17:18:46 +01:00
|
|
|
private static bool TryFixedFuncToUserAttributeIpa(EmitterContext context, int attr, out Operand selectedAttr)
|
|
|
|
{
|
|
|
|
if (attr >= AttributeConsts.FrontColorDiffuseR && attr < AttributeConsts.BackColorDiffuseR)
|
|
|
|
{
|
|
|
|
// TODO: If two sided rendering is enabled, then this should return
|
|
|
|
// FrontColor if the fragment is front facing, and back color otherwise.
|
2023-04-26 00:51:07 +02:00
|
|
|
selectedAttr = GenerateIpaLoad(context, FixedFuncToUserAttribute(context.Config, attr, isOutput: false));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (attr == AttributeConsts.FogCoord)
|
|
|
|
{
|
|
|
|
// TODO: We likely need to emulate the fixed-function functionality for FogCoord here.
|
|
|
|
selectedAttr = GenerateIpaLoad(context, FixedFuncToUserAttribute(context.Config, attr, isOutput: false));
|
2021-11-08 17:18:46 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (attr >= AttributeConsts.BackColorDiffuseR && attr < AttributeConsts.ClipDistance0)
|
|
|
|
{
|
|
|
|
selectedAttr = ConstF(((attr >> 2) & 3) == 3 ? 1f : 0f);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (attr >= AttributeConsts.TexCoordBase && attr < AttributeConsts.TexCoordEnd)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
selectedAttr = GenerateIpaLoad(context, FixedFuncToUserAttribute(context.Config, attr, isOutput: false));
|
2021-11-08 17:18:46 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
selectedAttr = GenerateIpaLoad(context, attr);
|
2021-11-08 17:18:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
private static Operand GenerateIpaLoad(EmitterContext context, int offset)
|
|
|
|
{
|
|
|
|
return AttributeMap.GenerateAttributeLoad(context, null, offset, isOutput: false, isPerPatch: false);
|
|
|
|
}
|
|
|
|
|
2021-11-08 17:18:46 +01:00
|
|
|
private static int FixedFuncToUserAttribute(ShaderConfig config, int attr, bool isOutput)
|
|
|
|
{
|
2022-11-19 03:27:54 +01:00
|
|
|
bool supportsLayerFromVertexOrTess = config.GpuAccessor.QueryHostSupportsLayerVertexTessellation();
|
|
|
|
int fixedStartAttr = supportsLayerFromVertexOrTess ? 0 : 1;
|
|
|
|
|
|
|
|
if (attr == AttributeConsts.Layer && config.Stage != ShaderStage.Geometry && !supportsLayerFromVertexOrTess)
|
|
|
|
{
|
|
|
|
attr = FixedFuncToUserAttribute(config, attr, AttributeConsts.Layer, 0, isOutput);
|
|
|
|
config.SetLayerOutputAttribute(attr);
|
|
|
|
}
|
2023-04-26 00:51:07 +02:00
|
|
|
else if (attr == AttributeConsts.FogCoord)
|
|
|
|
{
|
|
|
|
attr = FixedFuncToUserAttribute(config, attr, AttributeConsts.FogCoord, fixedStartAttr, isOutput);
|
|
|
|
}
|
2022-11-19 03:27:54 +01:00
|
|
|
else if (attr >= AttributeConsts.FrontColorDiffuseR && attr < AttributeConsts.ClipDistance0)
|
2021-11-08 17:18:46 +01:00
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
attr = FixedFuncToUserAttribute(config, attr, AttributeConsts.FrontColorDiffuseR, fixedStartAttr + 1, isOutput);
|
2021-11-08 17:18:46 +01:00
|
|
|
}
|
|
|
|
else if (attr >= AttributeConsts.TexCoordBase && attr < AttributeConsts.TexCoordEnd)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
attr = FixedFuncToUserAttribute(config, attr, AttributeConsts.TexCoordBase, fixedStartAttr + 5, isOutput);
|
2021-11-08 17:18:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return attr;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int FixedFuncToUserAttribute(ShaderConfig config, int attr, int baseAttr, int baseIndex, bool isOutput)
|
|
|
|
{
|
|
|
|
int index = (attr - baseAttr) >> 4;
|
2023-04-26 00:51:07 +02:00
|
|
|
int userAttrIndex = config.GetFreeUserAttribute(isOutput, baseIndex + index);
|
2021-11-08 17:18:46 +01:00
|
|
|
|
|
|
|
if ((uint)userAttrIndex < Constants.MaxAttributes)
|
|
|
|
{
|
|
|
|
attr = AttributeConsts.UserAttributeBase + userAttrIndex * 16 + (attr & 0xf);
|
|
|
|
|
|
|
|
if (isOutput)
|
|
|
|
{
|
|
|
|
config.SetOutputUserAttributeFixedFunc(userAttrIndex);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
config.SetInputUserAttributeFixedFunc(userAttrIndex);
|
|
|
|
}
|
|
|
|
}
|
2023-04-26 00:51:07 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
config.GpuAccessor.Log($"No enough user attributes for fixed attribute offset 0x{attr:X}.");
|
|
|
|
}
|
2021-11-08 17:18:46 +01:00
|
|
|
|
|
|
|
return attr;
|
|
|
|
}
|
2022-11-11 17:22:49 +01:00
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
private static bool TryConvertIdToIndexForVulkan(EmitterContext context, int attr, out Operand value)
|
2022-11-11 17:22:49 +01:00
|
|
|
{
|
|
|
|
if (context.Config.Options.TargetApi == TargetApi.Vulkan)
|
|
|
|
{
|
|
|
|
if (attr == AttributeConsts.InstanceId)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
value = context.ISubtract(
|
|
|
|
context.Load(StorageKind.Input, IoVariable.InstanceIndex),
|
|
|
|
context.Load(StorageKind.Input, IoVariable.BaseInstance));
|
|
|
|
return true;
|
2022-11-11 17:22:49 +01:00
|
|
|
}
|
|
|
|
else if (attr == AttributeConsts.VertexId)
|
|
|
|
{
|
2023-04-26 00:51:07 +02:00
|
|
|
value = context.Load(StorageKind.Input, IoVariable.VertexIndex);
|
|
|
|
return true;
|
2022-11-11 17:22:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-26 00:51:07 +02:00
|
|
|
value = null;
|
|
|
|
return false;
|
2022-11-11 17:22:49 +01:00
|
|
|
}
|
2021-10-12 22:35:31 +02:00
|
|
|
}
|
|
|
|
}
|