| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- using ChocolArm64.Decoder;
- using ChocolArm64.State;
- using ChocolArm64.Translation;
- using System;
- using System.Reflection.Emit;
- using System.Runtime.Intrinsics.X86;
- using static ChocolArm64.Instruction.AInstEmitAluHelper;
- using static ChocolArm64.Instruction.AInstEmitSimdHelper;
- namespace ChocolArm64.Instruction
- {
- static partial class AInstEmit
- {
- public static void Cmeq_S(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Beq_S, Scalar: true);
- }
- public static void Cmeq_V(AILEmitterCtx Context)
- {
- if (Context.CurrOp is AOpCodeSimdReg Op)
- {
- if (Op.Size < 3 && AOptimizations.UseSse2)
- {
- EmitSse2Op(Context, nameof(Sse2.CompareEqual));
- }
- else if (Op.Size == 3 && AOptimizations.UseSse41)
- {
- EmitSse41Op(Context, nameof(Sse41.CompareEqual));
- }
- else
- {
- EmitCmp(Context, OpCodes.Beq_S, Scalar: false);
- }
- }
- else
- {
- EmitCmp(Context, OpCodes.Beq_S, Scalar: false);
- }
- }
- public static void Cmge_S(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Bge_S, Scalar: true);
- }
- public static void Cmge_V(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Bge_S, Scalar: false);
- }
- public static void Cmgt_S(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Bgt_S, Scalar: true);
- }
- public static void Cmgt_V(AILEmitterCtx Context)
- {
- if (Context.CurrOp is AOpCodeSimdReg Op)
- {
- if (Op.Size < 3 && AOptimizations.UseSse2)
- {
- EmitSse2Op(Context, nameof(Sse2.CompareGreaterThan));
- }
- else if (Op.Size == 3 && AOptimizations.UseSse42)
- {
- EmitSse42Op(Context, nameof(Sse42.CompareGreaterThan));
- }
- else
- {
- EmitCmp(Context, OpCodes.Bgt_S, Scalar: false);
- }
- }
- else
- {
- EmitCmp(Context, OpCodes.Bgt_S, Scalar: false);
- }
- }
- public static void Cmhi_S(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Bgt_Un_S, Scalar: true);
- }
- public static void Cmhi_V(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Bgt_Un_S, Scalar: false);
- }
- public static void Cmhs_S(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Bge_Un_S, Scalar: true);
- }
- public static void Cmhs_V(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Bge_Un_S, Scalar: false);
- }
- public static void Cmle_S(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Ble_S, Scalar: true);
- }
- public static void Cmle_V(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Ble_S, Scalar: false);
- }
- public static void Cmlt_S(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Blt_S, Scalar: true);
- }
- public static void Cmlt_V(AILEmitterCtx Context)
- {
- EmitCmp(Context, OpCodes.Blt_S, Scalar: false);
- }
- public static void Cmtst_S(AILEmitterCtx Context)
- {
- EmitCmtst(Context, Scalar: true);
- }
- public static void Cmtst_V(AILEmitterCtx Context)
- {
- EmitCmtst(Context, Scalar: false);
- }
- public static void Fccmp_S(AILEmitterCtx Context)
- {
- AOpCodeSimdFcond Op = (AOpCodeSimdFcond)Context.CurrOp;
- AILLabel LblTrue = new AILLabel();
- AILLabel LblEnd = new AILLabel();
- Context.EmitCondBranch(LblTrue, Op.Cond);
- EmitSetNZCV(Context, Op.NZCV);
- Context.Emit(OpCodes.Br, LblEnd);
- Context.MarkLabel(LblTrue);
- Fcmp_S(Context);
- Context.MarkLabel(LblEnd);
- }
- public static void Fccmpe_S(AILEmitterCtx Context)
- {
- Fccmp_S(Context);
- }
- public static void Fcmeq_S(AILEmitterCtx Context)
- {
- if (Context.CurrOp is AOpCodeSimdReg && AOptimizations.UseSse
- && AOptimizations.UseSse2)
- {
- EmitScalarSseOrSse2OpF(Context, nameof(Sse.CompareEqualScalar));
- }
- else
- {
- EmitScalarFcmp(Context, OpCodes.Beq_S);
- }
- }
- public static void Fcmeq_V(AILEmitterCtx Context)
- {
- if (Context.CurrOp is AOpCodeSimdReg && AOptimizations.UseSse
- && AOptimizations.UseSse2)
- {
- EmitVectorSseOrSse2OpF(Context, nameof(Sse.CompareEqual));
- }
- else
- {
- EmitVectorFcmp(Context, OpCodes.Beq_S);
- }
- }
- public static void Fcmge_S(AILEmitterCtx Context)
- {
- if (Context.CurrOp is AOpCodeSimdReg && AOptimizations.UseSse
- && AOptimizations.UseSse2)
- {
- EmitScalarSseOrSse2OpF(Context, nameof(Sse.CompareGreaterThanOrEqualScalar));
- }
- else
- {
- EmitScalarFcmp(Context, OpCodes.Bge_S);
- }
- }
- public static void Fcmge_V(AILEmitterCtx Context)
- {
- if (Context.CurrOp is AOpCodeSimdReg && AOptimizations.UseSse
- && AOptimizations.UseSse2)
- {
- EmitVectorSseOrSse2OpF(Context, nameof(Sse.CompareGreaterThanOrEqual));
- }
- else
- {
- EmitVectorFcmp(Context, OpCodes.Bge_S);
- }
- }
- public static void Fcmgt_S(AILEmitterCtx Context)
- {
- if (Context.CurrOp is AOpCodeSimdReg && AOptimizations.UseSse
- && AOptimizations.UseSse2)
- {
- EmitScalarSseOrSse2OpF(Context, nameof(Sse.CompareGreaterThanScalar));
- }
- else
- {
- EmitScalarFcmp(Context, OpCodes.Bgt_S);
- }
- }
- public static void Fcmgt_V(AILEmitterCtx Context)
- {
- if (Context.CurrOp is AOpCodeSimdReg && AOptimizations.UseSse
- && AOptimizations.UseSse2)
- {
- EmitVectorSseOrSse2OpF(Context, nameof(Sse.CompareGreaterThan));
- }
- else
- {
- EmitVectorFcmp(Context, OpCodes.Bgt_S);
- }
- }
- public static void Fcmle_S(AILEmitterCtx Context)
- {
- EmitScalarFcmp(Context, OpCodes.Ble_S);
- }
- public static void Fcmle_V(AILEmitterCtx Context)
- {
- EmitVectorFcmp(Context, OpCodes.Ble_S);
- }
- public static void Fcmlt_S(AILEmitterCtx Context)
- {
- EmitScalarFcmp(Context, OpCodes.Blt_S);
- }
- public static void Fcmlt_V(AILEmitterCtx Context)
- {
- EmitVectorFcmp(Context, OpCodes.Blt_S);
- }
- public static void Fcmp_S(AILEmitterCtx Context)
- {
- AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp;
- bool CmpWithZero = !(Op is AOpCodeSimdFcond) ? Op.Bit3 : false;
- //Handle NaN case.
- //If any number is NaN, then NZCV = 0011.
- if (CmpWithZero)
- {
- EmitNaNCheck(Context, Op.Rn);
- }
- else
- {
- EmitNaNCheck(Context, Op.Rn);
- EmitNaNCheck(Context, Op.Rm);
- Context.Emit(OpCodes.Or);
- }
- AILLabel LblNaN = new AILLabel();
- AILLabel LblEnd = new AILLabel();
- Context.Emit(OpCodes.Brtrue_S, LblNaN);
- void EmitLoadOpers()
- {
- EmitVectorExtractF(Context, Op.Rn, 0, Op.Size);
- if (CmpWithZero)
- {
- if (Op.Size == 0)
- {
- Context.EmitLdc_R4(0f);
- }
- else /* if (Op.Size == 1) */
- {
- Context.EmitLdc_R8(0d);
- }
- }
- else
- {
- EmitVectorExtractF(Context, Op.Rm, 0, Op.Size);
- }
- }
- //Z = Rn == Rm
- EmitLoadOpers();
- Context.Emit(OpCodes.Ceq);
- Context.Emit(OpCodes.Dup);
- Context.EmitStflg((int)APState.ZBit);
- //C = Rn >= Rm
- EmitLoadOpers();
- Context.Emit(OpCodes.Cgt);
- Context.Emit(OpCodes.Or);
- Context.EmitStflg((int)APState.CBit);
- //N = Rn < Rm
- EmitLoadOpers();
- Context.Emit(OpCodes.Clt);
- Context.EmitStflg((int)APState.NBit);
- //V = 0
- Context.EmitLdc_I4(0);
- Context.EmitStflg((int)APState.VBit);
- Context.Emit(OpCodes.Br_S, LblEnd);
- Context.MarkLabel(LblNaN);
- EmitSetNZCV(Context, 0b0011);
- Context.MarkLabel(LblEnd);
- }
- public static void Fcmpe_S(AILEmitterCtx Context)
- {
- Fcmp_S(Context);
- }
- private static void EmitNaNCheck(AILEmitterCtx Context, int Reg)
- {
- IAOpCodeSimd Op = (IAOpCodeSimd)Context.CurrOp;
- EmitVectorExtractF(Context, Reg, 0, Op.Size);
- if (Op.Size == 0)
- {
- Context.EmitCall(typeof(float), nameof(float.IsNaN));
- }
- else if (Op.Size == 1)
- {
- Context.EmitCall(typeof(double), nameof(double.IsNaN));
- }
- else
- {
- throw new InvalidOperationException();
- }
- }
- private static void EmitCmp(AILEmitterCtx Context, OpCode ILOp, bool Scalar)
- {
- AOpCodeSimd Op = (AOpCodeSimd)Context.CurrOp;
- int Bytes = Op.GetBitsCount() >> 3;
- int Elems = !Scalar ? Bytes >> Op.Size : 1;
- ulong SzMask = ulong.MaxValue >> (64 - (8 << Op.Size));
- for (int Index = 0; Index < Elems; Index++)
- {
- EmitVectorExtractSx(Context, Op.Rn, Index, Op.Size);
- if (Op is AOpCodeSimdReg BinOp)
- {
- EmitVectorExtractSx(Context, BinOp.Rm, Index, Op.Size);
- }
- else
- {
- Context.EmitLdc_I8(0L);
- }
- AILLabel LblTrue = new AILLabel();
- AILLabel LblEnd = new AILLabel();
- Context.Emit(ILOp, LblTrue);
- EmitVectorInsert(Context, Op.Rd, Index, Op.Size, 0);
- Context.Emit(OpCodes.Br_S, LblEnd);
- Context.MarkLabel(LblTrue);
- EmitVectorInsert(Context, Op.Rd, Index, Op.Size, (long)SzMask);
- Context.MarkLabel(LblEnd);
- }
- if ((Op.RegisterSize == ARegisterSize.SIMD64) || Scalar)
- {
- EmitVectorZeroUpper(Context, Op.Rd);
- }
- }
- private static void EmitCmtst(AILEmitterCtx Context, bool Scalar)
- {
- AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp;
- int Bytes = Op.GetBitsCount() >> 3;
- int Elems = !Scalar ? Bytes >> Op.Size : 1;
- ulong SzMask = ulong.MaxValue >> (64 - (8 << Op.Size));
- for (int Index = 0; Index < Elems; Index++)
- {
- EmitVectorExtractZx(Context, Op.Rn, Index, Op.Size);
- EmitVectorExtractZx(Context, Op.Rm, Index, Op.Size);
- AILLabel LblTrue = new AILLabel();
- AILLabel LblEnd = new AILLabel();
- Context.Emit(OpCodes.And);
- Context.EmitLdc_I8(0L);
- Context.Emit(OpCodes.Bne_Un_S, LblTrue);
- EmitVectorInsert(Context, Op.Rd, Index, Op.Size, 0);
- Context.Emit(OpCodes.Br_S, LblEnd);
- Context.MarkLabel(LblTrue);
- EmitVectorInsert(Context, Op.Rd, Index, Op.Size, (long)SzMask);
- Context.MarkLabel(LblEnd);
- }
- if ((Op.RegisterSize == ARegisterSize.SIMD64) || Scalar)
- {
- EmitVectorZeroUpper(Context, Op.Rd);
- }
- }
- private static void EmitScalarFcmp(AILEmitterCtx Context, OpCode ILOp)
- {
- EmitFcmp(Context, ILOp, 0, Scalar: true);
- }
- private static void EmitVectorFcmp(AILEmitterCtx Context, OpCode ILOp)
- {
- AOpCodeSimd Op = (AOpCodeSimd)Context.CurrOp;
- int SizeF = Op.Size & 1;
- int Bytes = Op.GetBitsCount() >> 3;
- int Elems = Bytes >> SizeF + 2;
- for (int Index = 0; Index < Elems; Index++)
- {
- EmitFcmp(Context, ILOp, Index, Scalar: false);
- }
- if (Op.RegisterSize == ARegisterSize.SIMD64)
- {
- EmitVectorZeroUpper(Context, Op.Rd);
- }
- }
- private static void EmitFcmp(AILEmitterCtx Context, OpCode ILOp, int Index, bool Scalar)
- {
- AOpCodeSimd Op = (AOpCodeSimd)Context.CurrOp;
- int SizeF = Op.Size & 1;
- ulong SzMask = ulong.MaxValue >> (64 - (32 << SizeF));
- EmitVectorExtractF(Context, Op.Rn, Index, SizeF);
- if (Op is AOpCodeSimdReg BinOp)
- {
- EmitVectorExtractF(Context, BinOp.Rm, Index, SizeF);
- }
- else if (SizeF == 0)
- {
- Context.EmitLdc_R4(0f);
- }
- else /* if (SizeF == 1) */
- {
- Context.EmitLdc_R8(0d);
- }
- AILLabel LblTrue = new AILLabel();
- AILLabel LblEnd = new AILLabel();
- Context.Emit(ILOp, LblTrue);
- if (Scalar)
- {
- EmitVectorZeroAll(Context, Op.Rd);
- }
- else
- {
- EmitVectorInsert(Context, Op.Rd, Index, SizeF + 2, 0);
- }
- Context.Emit(OpCodes.Br_S, LblEnd);
- Context.MarkLabel(LblTrue);
- if (Scalar)
- {
- EmitVectorInsert(Context, Op.Rd, Index, 3, (long)SzMask);
- EmitVectorZeroUpper(Context, Op.Rd);
- }
- else
- {
- EmitVectorInsert(Context, Op.Rd, Index, SizeF + 2, (long)SzMask);
- }
- Context.MarkLabel(LblEnd);
- }
- }
- }
|