| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758 |
- using Ryujinx.Graphics.Shader.IntermediateRepresentation;
- using System;
- using static Ryujinx.Graphics.Shader.IntermediateRepresentation.OperandHelper;
- namespace Ryujinx.Graphics.Shader.Translation
- {
- static class EmitterContextInsts
- {
- public static Operand AtomicAdd(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicAdd | mr, Local(), a, b, c);
- }
- public static Operand AtomicAnd(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicAnd | mr, Local(), a, b, c);
- }
- public static Operand AtomicCompareAndSwap(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c, Operand d)
- {
- return context.Add(Instruction.AtomicCompareAndSwap | mr, Local(), a, b, c, d);
- }
- public static Operand AtomicMaxS32(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicMaxS32 | mr, Local(), a, b, c);
- }
- public static Operand AtomicMaxU32(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicMaxU32 | mr, Local(), a, b, c);
- }
- public static Operand AtomicMinS32(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicMinS32 | mr, Local(), a, b, c);
- }
- public static Operand AtomicMinU32(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicMinU32 | mr, Local(), a, b, c);
- }
- public static Operand AtomicOr(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicOr | mr, Local(), a, b, c);
- }
- public static Operand AtomicSwap(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicSwap | mr, Local(), a, b, c);
- }
- public static Operand AtomicXor(this EmitterContext context, Instruction mr, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.AtomicXor | mr, Local(), a, b, c);
- }
- public static Operand Ballot(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.Ballot, Local(), a);
- }
- public static Operand Barrier(this EmitterContext context)
- {
- return context.Add(Instruction.Barrier);
- }
- public static Operand BitCount(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.BitCount, Local(), a);
- }
- public static Operand BitfieldExtractS32(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.BitfieldExtractS32, Local(), a, b, c);
- }
- public static Operand BitfieldExtractU32(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.BitfieldExtractU32, Local(), a, b, c);
- }
- public static Operand BitfieldInsert(this EmitterContext context, Operand a, Operand b, Operand c, Operand d)
- {
- return context.Add(Instruction.BitfieldInsert, Local(), a, b, c, d);
- }
- public static Operand BitfieldReverse(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.BitfieldReverse, Local(), a);
- }
- public static Operand BitwiseAnd(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.BitwiseAnd, Local(), a, b);
- }
- public static Operand BitwiseExclusiveOr(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.BitwiseExclusiveOr, Local(), a, b);
- }
- public static Operand BitwiseNot(this EmitterContext context, Operand a, bool invert)
- {
- if (invert)
- {
- a = context.BitwiseNot(a);
- }
- return a;
- }
- public static Operand BitwiseNot(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.BitwiseNot, Local(), a);
- }
- public static Operand BitwiseOr(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.BitwiseOr, Local(), a, b);
- }
- public static Operand Branch(this EmitterContext context, Operand d)
- {
- return context.Add(Instruction.Branch, d);
- }
- public static Operand BranchIfFalse(this EmitterContext context, Operand d, Operand a)
- {
- return context.Add(Instruction.BranchIfFalse, d, a);
- }
- public static Operand BranchIfTrue(this EmitterContext context, Operand d, Operand a)
- {
- return context.Add(Instruction.BranchIfTrue, d, a);
- }
- public static Operand Call(this EmitterContext context, int funcId, bool returns, params Operand[] args)
- {
- Operand[] args2 = new Operand[args.Length + 1];
- args2[0] = Const(funcId);
- args.CopyTo(args2, 1);
- return context.Add(Instruction.Call, returns ? Local() : null, args2);
- }
- public static Operand ConditionalSelect(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.ConditionalSelect, Local(), a, b, c);
- }
- public static Operand Copy(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.Copy, Local(), a);
- }
- public static void Copy(this EmitterContext context, Operand d, Operand a)
- {
- if (d.Type == OperandType.Constant)
- {
- return;
- }
- context.Add(Instruction.Copy, d, a);
- }
- public static Operand Discard(this EmitterContext context)
- {
- return context.Add(Instruction.Discard);
- }
- public static Operand EmitVertex(this EmitterContext context)
- {
- return context.Add(Instruction.EmitVertex);
- }
- public static Operand EndPrimitive(this EmitterContext context)
- {
- return context.Add(Instruction.EndPrimitive);
- }
- public static Operand FindLSB(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.FindLSB, Local(), a);
- }
- public static Operand FindMSBS32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.FindMSBS32, Local(), a);
- }
- public static Operand FindMSBU32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.FindMSBU32, Local(), a);
- }
- public static Operand FP32ConvertToFP64(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertFP32ToFP64, Local(), a);
- }
- public static Operand FP64ConvertToFP32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertFP64ToFP32, Local(), a);
- }
- public static Operand FPAbsNeg(this EmitterContext context, Operand a, bool abs, bool neg, Instruction fpType = Instruction.FP32)
- {
- return context.FPNegate(context.FPAbsolute(a, abs, fpType), neg, fpType);
- }
- public static Operand FPAbsolute(this EmitterContext context, Operand a, bool abs, Instruction fpType = Instruction.FP32)
- {
- if (abs)
- {
- a = context.FPAbsolute(a, fpType);
- }
- return a;
- }
- public static Operand FPAbsolute(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Absolute, Local(), a);
- }
- public static Operand FPAdd(this EmitterContext context, Operand a, Operand b, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Add, Local(), a, b);
- }
- public static Operand FPCeiling(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Ceiling, Local(), a);
- }
- public static Operand FPCompareEqual(this EmitterContext context, Operand a, Operand b, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.CompareEqual, Local(), a, b);
- }
- public static Operand FPCompareLess(this EmitterContext context, Operand a, Operand b, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.CompareLess, Local(), a, b);
- }
- public static Operand FP32ConvertToS32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertFP32ToS32, Local(), a);
- }
- public static Operand FP32ConvertToU32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertFP32ToU32, Local(), a);
- }
- public static Operand FP64ConvertToS32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertFP64ToS32, Local(), a);
- }
- public static Operand FP64ConvertToU32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertFP64ToU32, Local(), a);
- }
- public static Operand FPCosine(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.FP32 | Instruction.Cosine, Local(), a);
- }
- public static Operand FPDivide(this EmitterContext context, Operand a, Operand b, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Divide, Local(), a, b);
- }
- public static Operand FPExponentB2(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.FP32 | Instruction.ExponentB2, Local(), a);
- }
- public static Operand FPFloor(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Floor, Local(), a);
- }
- public static Operand FPFusedMultiplyAdd(this EmitterContext context, Operand a, Operand b, Operand c, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.FusedMultiplyAdd, Local(), a, b, c);
- }
- public static Operand FPLogarithmB2(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.FP32 | Instruction.LogarithmB2, Local(), a);
- }
- public static Operand FPMaximum(this EmitterContext context, Operand a, Operand b, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Maximum, Local(), a, b);
- }
- public static Operand FPMinimum(this EmitterContext context, Operand a, Operand b, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Minimum, Local(), a, b);
- }
- public static Operand FPMultiply(this EmitterContext context, Operand a, Operand b, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Multiply, Local(), a, b);
- }
- public static Operand FPNegate(this EmitterContext context, Operand a, bool neg, Instruction fpType = Instruction.FP32)
- {
- if (neg)
- {
- a = context.FPNegate(a, fpType);
- }
- return a;
- }
- public static Operand FPNegate(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Negate, Local(), a);
- }
- public static Operand FPReciprocal(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.FPDivide(fpType == Instruction.FP64 ? context.PackDouble2x32(1.0) : ConstF(1), a, fpType);
- }
- public static Operand FPReciprocalSquareRoot(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.ReciprocalSquareRoot, Local(), a);
- }
- public static Operand FPRound(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Round, Local(), a);
- }
- public static Operand FPSaturate(this EmitterContext context, Operand a, bool sat, Instruction fpType = Instruction.FP32)
- {
- if (sat)
- {
- a = context.FPSaturate(a, fpType);
- }
- return a;
- }
- public static Operand FPSaturate(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return fpType == Instruction.FP64
- ? context.Add(fpType | Instruction.Clamp, Local(), a, context.PackDouble2x32(0.0), context.PackDouble2x32(1.0))
- : context.Add(fpType | Instruction.Clamp, Local(), a, ConstF(0), ConstF(1));
- }
- public static Operand FPSine(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.FP32 | Instruction.Sine, Local(), a);
- }
- public static Operand FPSquareRoot(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.FP32 | Instruction.SquareRoot, Local(), a);
- }
- public static Operand FPTruncate(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.Truncate, Local(), a);
- }
- public static Operand FPSwizzleAdd(this EmitterContext context, Operand a, Operand b, int mask)
- {
- return context.Add(Instruction.SwizzleAdd, Local(), a, b, Const(mask));
- }
- public static void FSIBegin(this EmitterContext context)
- {
- context.Add(Instruction.FSIBegin);
- }
- public static void FSIEnd(this EmitterContext context)
- {
- context.Add(Instruction.FSIEnd);
- }
- public static Operand GroupMemoryBarrier(this EmitterContext context)
- {
- return context.Add(Instruction.GroupMemoryBarrier);
- }
- public static Operand IAbsNeg(this EmitterContext context, Operand a, bool abs, bool neg)
- {
- return context.INegate(context.IAbsolute(a, abs), neg);
- }
- public static Operand IAbsolute(this EmitterContext context, Operand a, bool abs)
- {
- if (abs)
- {
- a = context.IAbsolute(a);
- }
- return a;
- }
- public static Operand IAbsolute(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.Absolute, Local(), a);
- }
- public static Operand IAdd(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.Add, Local(), a, b);
- }
- public static Operand IClampS32(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.Clamp, Local(), a, b, c);
- }
- public static Operand IClampU32(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.ClampU32, Local(), a, b, c);
- }
- public static Operand ICompareEqual(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareEqual, Local(), a, b);
- }
- public static Operand ICompareGreater(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareGreater, Local(), a, b);
- }
- public static Operand ICompareGreaterOrEqual(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareGreaterOrEqual, Local(), a, b);
- }
- public static Operand ICompareGreaterOrEqualUnsigned(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareGreaterOrEqualU32, Local(), a, b);
- }
- public static Operand ICompareGreaterUnsigned(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareGreaterU32, Local(), a, b);
- }
- public static Operand ICompareLess(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareLess, Local(), a, b);
- }
- public static Operand ICompareLessOrEqual(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareLessOrEqual, Local(), a, b);
- }
- public static Operand ICompareLessOrEqualUnsigned(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareLessOrEqualU32, Local(), a, b);
- }
- public static Operand ICompareLessUnsigned(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareLessU32, Local(), a, b);
- }
- public static Operand ICompareNotEqual(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.CompareNotEqual, Local(), a, b);
- }
- public static Operand IConvertS32ToFP32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertS32ToFP32, Local(), a);
- }
- public static Operand IConvertS32ToFP64(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertS32ToFP64, Local(), a);
- }
- public static Operand IConvertU32ToFP32(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertU32ToFP32, Local(), a);
- }
- public static Operand IConvertU32ToFP64(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.ConvertU32ToFP64, Local(), a);
- }
- public static Operand IMaximumS32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.Maximum, Local(), a, b);
- }
- public static Operand IMaximumU32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.MaximumU32, Local(), a, b);
- }
- public static Operand IMinimumS32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.Minimum, Local(), a, b);
- }
- public static Operand IMinimumU32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.MinimumU32, Local(), a, b);
- }
- public static Operand IMultiply(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.Multiply, Local(), a, b);
- }
- public static Operand INegate(this EmitterContext context, Operand a, bool neg)
- {
- if (neg)
- {
- a = context.INegate(a);
- }
- return a;
- }
- public static Operand INegate(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.Negate, Local(), a);
- }
- public static Operand ISubtract(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.Subtract, Local(), a, b);
- }
- public static Operand IsNan(this EmitterContext context, Operand a, Instruction fpType = Instruction.FP32)
- {
- return context.Add(fpType | Instruction.IsNan, Local(), a);
- }
- public static Operand LoadAttribute(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.LoadAttribute, Local(), a, b, c);
- }
- public static Operand LoadConstant(this EmitterContext context, Operand a, Operand b)
- {
- if (a.Type == OperandType.Constant)
- {
- context.Config.SetUsedConstantBuffer(a.Value);
- }
- else
- {
- context.Config.SetUsedFeature(FeatureFlags.CbIndexing);
- }
- return context.Add(Instruction.LoadConstant, Local(), a, b);
- }
- public static Operand LoadGlobal(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.LoadGlobal, Local(), a, b);
- }
- public static Operand LoadLocal(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.LoadLocal, Local(), a);
- }
- public static Operand LoadShared(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.LoadShared, Local(), a);
- }
- public static Operand MemoryBarrier(this EmitterContext context)
- {
- return context.Add(Instruction.MemoryBarrier);
- }
- public static Operand MultiplyHighS32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.MultiplyHighS32, Local(), a, b);
- }
- public static Operand MultiplyHighU32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.MultiplyHighU32, Local(), a, b);
- }
- public static Operand PackDouble2x32(this EmitterContext context, double value)
- {
- long valueAsLong = BitConverter.DoubleToInt64Bits(value);
- return context.Add(Instruction.PackDouble2x32, Local(), Const((int)valueAsLong), Const((int)(valueAsLong >> 32)));
- }
- public static Operand PackDouble2x32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.PackDouble2x32, Local(), a, b);
- }
- public static Operand PackHalf2x16(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.PackHalf2x16, Local(), a, b);
- }
- public static void Return(this EmitterContext context)
- {
- context.PrepareForReturn();
- context.Add(Instruction.Return);
- }
- public static void Return(this EmitterContext context, Operand returnValue)
- {
- context.PrepareForReturn();
- context.Add(Instruction.Return, null, returnValue);
- }
- public static Operand ShiftLeft(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.ShiftLeft, Local(), a, b);
- }
- public static Operand ShiftRightS32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.ShiftRightS32, Local(), a, b);
- }
- public static Operand ShiftRightU32(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.ShiftRightU32, Local(), a, b);
- }
- public static (Operand, Operand) Shuffle(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.Shuffle, (Local(), Local()), a, b, c);
- }
- public static (Operand, Operand) ShuffleDown(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.ShuffleDown, (Local(), Local()), a, b, c);
- }
- public static (Operand, Operand) ShuffleUp(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.ShuffleUp, (Local(), Local()), a, b, c);
- }
- public static (Operand, Operand) ShuffleXor(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.ShuffleXor, (Local(), Local()), a, b, c);
- }
- public static Operand StoreAttribute(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.StoreAttribute, null, a, b, c);
- }
- public static Operand StoreGlobal(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.StoreGlobal, null, a, b, c);
- }
- public static Operand StoreGlobal16(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.StoreGlobal16, null, a, b, c);
- }
- public static Operand StoreGlobal8(this EmitterContext context, Operand a, Operand b, Operand c)
- {
- return context.Add(Instruction.StoreGlobal8, null, a, b, c);
- }
- public static Operand StoreLocal(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.StoreLocal, null, a, b);
- }
- public static Operand StoreShared(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.StoreShared, null, a, b);
- }
- public static Operand StoreShared16(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.StoreShared16, null, a, b);
- }
- public static Operand StoreShared8(this EmitterContext context, Operand a, Operand b)
- {
- return context.Add(Instruction.StoreShared8, null, a, b);
- }
- public static Operand UnpackDouble2x32High(this EmitterContext context, Operand a)
- {
- return UnpackDouble2x32(context, a, 1);
- }
- public static Operand UnpackDouble2x32Low(this EmitterContext context, Operand a)
- {
- return UnpackDouble2x32(context, a, 0);
- }
- private static Operand UnpackDouble2x32(this EmitterContext context, Operand a, int index)
- {
- Operand dest = Local();
- context.Add(new Operation(Instruction.UnpackDouble2x32, index, dest, a));
- return dest;
- }
- public static Operand UnpackHalf2x16High(this EmitterContext context, Operand a)
- {
- return UnpackHalf2x16(context, a, 1);
- }
- public static Operand UnpackHalf2x16Low(this EmitterContext context, Operand a)
- {
- return UnpackHalf2x16(context, a, 0);
- }
- private static Operand UnpackHalf2x16(this EmitterContext context, Operand a, int index)
- {
- Operand dest = Local();
- context.Add(new Operation(Instruction.UnpackHalf2x16, index, dest, a));
- return dest;
- }
- public static Operand VoteAll(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.VoteAll, Local(), a);
- }
- public static Operand VoteAllEqual(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.VoteAllEqual, Local(), a);
- }
- public static Operand VoteAny(this EmitterContext context, Operand a)
- {
- return context.Add(Instruction.VoteAny, Local(), a);
- }
- }
- }
|