| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- 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>();
- Operand primVertex = context.Copy(GetSrcReg(context, op.SrcB));
- 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)
- {
- Operand userAttrOffset = context.ISubtract(GetSrcReg(context, op.SrcA), Const(AttributeConsts.UserAttributeBase));
- Operand userAttrIndex = context.ShiftRightU32(userAttrOffset, Const(2));
- context.Copy(Register(rd), context.LoadAttribute(Const(AttributeConsts.UserAttributeBase), userAttrIndex, primVertex));
- context.Config.SetUsedFeature(FeatureFlags.IaIndexing);
- }
- else if (op.SrcB == RegisterConsts.RegisterZeroIndex || op.P)
- {
- int offset = FixedFuncToUserAttribute(context.Config, op.Imm11 + index * 4, op.O);
- context.FlagAttributeRead(offset);
- if (op.O && CanLoadOutput(offset))
- {
- offset |= AttributeConsts.LoadOutputMask;
- }
- Operand src = op.P ? AttributePerPatch(offset) : CreateInputAttribute(context, offset);
- context.Copy(Register(rd), src);
- }
- else
- {
- int offset = FixedFuncToUserAttribute(context.Config, op.Imm11 + index * 4, op.O);
- context.FlagAttributeRead(offset);
- if (op.O && CanLoadOutput(offset))
- {
- offset |= AttributeConsts.LoadOutputMask;
- }
- Operand src = Const(offset);
- context.Copy(Register(rd), context.LoadAttribute(src, Const(0), primVertex));
- }
- }
- }
- 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)
- {
- Operand userAttrOffset = context.ISubtract(GetSrcReg(context, op.SrcA), Const(AttributeConsts.UserAttributeBase));
- Operand userAttrIndex = context.ShiftRightU32(userAttrOffset, Const(2));
- context.StoreAttribute(Const(AttributeConsts.UserAttributeBase), userAttrIndex, Register(rd));
- context.Config.SetUsedFeature(FeatureFlags.OaIndexing);
- }
- else
- {
- // TODO: Support indirect stores using Ra.
- int offset = op.Imm11 + index * 4;
- if (!context.Config.IsUsedOutputAttribute(offset))
- {
- return;
- }
- offset = FixedFuncToUserAttribute(context.Config, offset, isOutput: true);
- context.FlagAttributeWritten(offset);
- Operand dest = op.P ? AttributePerPatch(offset) : Attribute(offset);
- context.Copy(dest, Register(rd));
- }
- }
- }
- public static void Ipa(EmitterContext context)
- {
- InstIpa op = context.GetOp<InstIpa>();
- context.FlagAttributeRead(op.Imm10);
- Operand res;
- bool isFixedFunc = false;
- if (op.Idx)
- {
- Operand userAttrOffset = context.ISubtract(GetSrcReg(context, op.SrcA), Const(AttributeConsts.UserAttributeBase));
- Operand userAttrIndex = context.ShiftRightU32(userAttrOffset, Const(2));
- res = context.LoadAttribute(Const(AttributeConsts.UserAttributeBase), userAttrIndex, Const(0));
- res = context.FPMultiply(res, Attribute(AttributeConsts.PositionW));
- context.Config.SetUsedFeature(FeatureFlags.IaIndexing);
- }
- else
- {
- isFixedFunc = TryFixedFuncToUserAttributeIpa(context, op.Imm10, out res);
- if (op.Imm10 >= AttributeConsts.UserAttributeBase && op.Imm10 < AttributeConsts.UserAttributeEnd)
- {
- int index = (op.Imm10 - AttributeConsts.UserAttributeBase) >> 4;
- if (context.Config.ImapTypes[index].GetFirstUsedType() == PixelImap.Perspective)
- {
- res = context.FPMultiply(res, Attribute(AttributeConsts.PositionW));
- }
- }
- }
- if (op.IpaOp == IpaOp.Multiply && !isFixedFunc)
- {
- 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>();
- // 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.
- 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)
- {
- 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)
- {
- context.Copy(Attribute(AttributeConsts.PositionX), tempXLocal);
- }
- if (tempYLocal != null)
- {
- context.Copy(Attribute(AttributeConsts.PositionY), tempYLocal);
- }
- if (tempZLocal != null)
- {
- context.Copy(Attribute(AttributeConsts.PositionZ), tempZLocal);
- }
- }
- else
- {
- context.EmitVertex();
- }
- }
- if (cut)
- {
- context.EndPrimitive();
- }
- }
- private static bool CanLoadOutput(int attr)
- {
- return attr != AttributeConsts.TessCoordX && attr != AttributeConsts.TessCoordY;
- }
- 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.
- int index = (attr - AttributeConsts.FrontColorDiffuseR) >> 4;
- int userAttrIndex = context.Config.GetFreeUserAttribute(isOutput: false, index);
- Operand frontAttr = Attribute(AttributeConsts.UserAttributeBase + userAttrIndex * 16 + (attr & 0xf));
- context.Config.SetInputUserAttributeFixedFunc(userAttrIndex);
- selectedAttr = frontAttr;
- 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)
- {
- selectedAttr = Attribute(FixedFuncToUserAttribute(context.Config, attr, AttributeConsts.TexCoordBase, 4, isOutput: false));
- return true;
- }
- selectedAttr = Attribute(attr);
- return false;
- }
- private static int FixedFuncToUserAttribute(ShaderConfig config, int attr, bool isOutput)
- {
- 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);
- }
- else if (attr >= AttributeConsts.FrontColorDiffuseR && attr < AttributeConsts.ClipDistance0)
- {
- attr = FixedFuncToUserAttribute(config, attr, AttributeConsts.FrontColorDiffuseR, fixedStartAttr, isOutput);
- }
- else if (attr >= AttributeConsts.TexCoordBase && attr < AttributeConsts.TexCoordEnd)
- {
- attr = FixedFuncToUserAttribute(config, attr, AttributeConsts.TexCoordBase, fixedStartAttr + 4, isOutput);
- }
- return attr;
- }
- private static int FixedFuncToUserAttribute(ShaderConfig config, int attr, int baseAttr, int baseIndex, bool isOutput)
- {
- int index = (attr - baseAttr) >> 4;
- int userAttrIndex = config.GetFreeUserAttribute(isOutput, index);
- if ((uint)userAttrIndex < Constants.MaxAttributes)
- {
- userAttrIndex += baseIndex;
- attr = AttributeConsts.UserAttributeBase + userAttrIndex * 16 + (attr & 0xf);
- if (isOutput)
- {
- config.SetOutputUserAttributeFixedFunc(userAttrIndex);
- }
- else
- {
- config.SetInputUserAttributeFixedFunc(userAttrIndex);
- }
- }
- return attr;
- }
- private static Operand CreateInputAttribute(EmitterContext context, int attr)
- {
- if (context.Config.Options.TargetApi == TargetApi.Vulkan)
- {
- if (attr == AttributeConsts.InstanceId)
- {
- return context.ISubtract(Attribute(AttributeConsts.InstanceIndex), Attribute(AttributeConsts.BaseInstance));
- }
- else if (attr == AttributeConsts.VertexId)
- {
- return Attribute(AttributeConsts.VertexIndex);
- }
- }
- return Attribute(attr);
- }
- }
- }
|