| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503 |
- using ARMeilleure.Decoders;
- using ARMeilleure.IntermediateRepresentation;
- using ARMeilleure.State;
- using ARMeilleure.Translation;
- using System;
- using System.Diagnostics;
- using static ARMeilleure.Instructions.InstEmitHelper;
- using static ARMeilleure.Instructions.InstEmitSimdHelper;
- using static ARMeilleure.IntermediateRepresentation.OperandHelper;
- namespace ARMeilleure.Instructions
- {
- using Func1I = Func<Operand, Operand>;
- static partial class InstEmit
- {
- public static void Fcvt_S(ArmEmitterContext context)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- if (op.Size == 0 && op.Opc == 1) // Single -> Double.
- {
- if (Optimizations.UseSse2)
- {
- Operand n = GetVec(op.Rn);
- Operand res = context.AddIntrinsic(Intrinsic.X86Cvtss2sd, context.VectorZero(), n);
- context.Copy(GetVec(op.Rd), res);
- }
- else
- {
- Operand ne = context.VectorExtract(OperandType.FP32, GetVec(op.Rn), 0);
- Operand res = context.ConvertToFP(OperandType.FP64, ne);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- }
- else if (op.Size == 1 && op.Opc == 0) // Double -> Single.
- {
- if (Optimizations.UseSse2)
- {
- Operand n = GetVec(op.Rn);
- Operand res = context.AddIntrinsic(Intrinsic.X86Cvtsd2ss, context.VectorZero(), n);
- context.Copy(GetVec(op.Rd), res);
- }
- else
- {
- Operand ne = context.VectorExtract(OperandType.FP64, GetVec(op.Rn), 0);
- Operand res = context.ConvertToFP(OperandType.FP32, ne);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- }
- else if (op.Size == 0 && op.Opc == 3) // Single -> Half.
- {
- Operand ne = context.VectorExtract(OperandType.FP32, GetVec(op.Rn), 0);
- Delegate dlg = new _U16_F32(SoftFloat32_16.FPConvert);
- Operand res = context.Call(dlg, ne);
- res = context.ZeroExtend16(OperandType.I64, res);
- context.Copy(GetVec(op.Rd), EmitVectorInsert(context, context.VectorZero(), res, 0, 1));
- }
- else if (op.Size == 3 && op.Opc == 0) // Half -> Single.
- {
- Operand ne = EmitVectorExtractZx(context, op.Rn, 0, 1);
- Delegate dlg = new _F32_U16(SoftFloat16_32.FPConvert);
- Operand res = context.Call(dlg, ne);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- else if (op.Size == 1 && op.Opc == 3) // Double -> Half.
- {
- throw new NotImplementedException("Double-precision to half-precision.");
- }
- else if (op.Size == 3 && op.Opc == 1) // Double -> Half.
- {
- throw new NotImplementedException("Half-precision to double-precision.");
- }
- else // Invalid encoding.
- {
- Debug.Assert(false, $"type == {op.Size} && opc == {op.Opc}");
- }
- }
- public static void Fcvtas_Gp(ArmEmitterContext context)
- {
- EmitFcvt_s_Gp(context, (op1) => EmitRoundMathCall(context, MidpointRounding.AwayFromZero, op1));
- }
- public static void Fcvtas_S(ArmEmitterContext context)
- {
- EmitFcvt(context, (op1) => EmitRoundMathCall(context, MidpointRounding.AwayFromZero, op1), signed: true, scalar: true);
- }
- public static void Fcvtas_V(ArmEmitterContext context)
- {
- EmitFcvt(context, (op1) => EmitRoundMathCall(context, MidpointRounding.AwayFromZero, op1), signed: true, scalar: false);
- }
- public static void Fcvtau_Gp(ArmEmitterContext context)
- {
- EmitFcvt_u_Gp(context, (op1) => EmitRoundMathCall(context, MidpointRounding.AwayFromZero, op1));
- }
- public static void Fcvtau_S(ArmEmitterContext context)
- {
- EmitFcvt(context, (op1) => EmitRoundMathCall(context, MidpointRounding.AwayFromZero, op1), signed: false, scalar: true);
- }
- public static void Fcvtau_V(ArmEmitterContext context)
- {
- EmitFcvt(context, (op1) => EmitRoundMathCall(context, MidpointRounding.AwayFromZero, op1), signed: false, scalar: false);
- }
- public static void Fcvtl_V(ArmEmitterContext context)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- int sizeF = op.Size & 1;
- if (Optimizations.UseSse2 && sizeF == 1)
- {
- Operand n = GetVec(op.Rn);
- Operand res;
- if (op.RegisterSize == RegisterSize.Simd128)
- {
- res = context.AddIntrinsic(Intrinsic.X86Movhlps, n, n);
- }
- else
- {
- res = n;
- }
- res = context.AddIntrinsic(Intrinsic.X86Cvtps2pd, res);
- context.Copy(GetVec(op.Rd), res);
- }
- else
- {
- Operand res = context.VectorZero();
- int elems = 4 >> sizeF;
- int part = op.RegisterSize == RegisterSize.Simd128 ? elems : 0;
- for (int index = 0; index < elems; index++)
- {
- if (sizeF == 0)
- {
- Operand ne = EmitVectorExtractZx(context, op.Rn, part + index, 1);
- Delegate dlg = new _F32_U16(SoftFloat16_32.FPConvert);
- Operand e = context.Call(dlg, ne);
- res = context.VectorInsert(res, e, index);
- }
- else /* if (sizeF == 1) */
- {
- Operand ne = context.VectorExtract(OperandType.FP32, GetVec(op.Rn), part + index);
- Operand e = context.ConvertToFP(OperandType.FP64, ne);
- res = context.VectorInsert(res, e, index);
- }
- }
- context.Copy(GetVec(op.Rd), res);
- }
- }
- public static void Fcvtms_Gp(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts_Gp(context, FPRoundingMode.TowardsMinusInfinity, isFixed: false);
- }
- else
- {
- EmitFcvt_s_Gp(context, (op1) => EmitUnaryMathCall(context, MathF.Floor, Math.Floor, op1));
- }
- }
- public static void Fcvtmu_Gp(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu_Gp(context, FPRoundingMode.TowardsMinusInfinity, isFixed: false);
- }
- else
- {
- EmitFcvt_u_Gp(context, (op1) => EmitUnaryMathCall(context, MathF.Floor, Math.Floor, op1));
- }
- }
- public static void Fcvtn_V(ArmEmitterContext context)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- int sizeF = op.Size & 1;
- if (Optimizations.UseSse2 && sizeF == 1)
- {
- Operand d = GetVec(op.Rd);
- Operand res = context.VectorZeroUpper64(d);
- Operand nInt = context.AddIntrinsic(Intrinsic.X86Cvtpd2ps, GetVec(op.Rn));
- nInt = context.AddIntrinsic(Intrinsic.X86Movlhps, nInt, nInt);
- Intrinsic movInst = op.RegisterSize == RegisterSize.Simd128
- ? Intrinsic.X86Movlhps
- : Intrinsic.X86Movhlps;
- res = context.AddIntrinsic(movInst, res, nInt);
- context.Copy(d, res);
- }
- else
- {
- OperandType type = sizeF == 0 ? OperandType.FP32 : OperandType.FP64;
- int elems = 4 >> sizeF;
- int part = op.RegisterSize == RegisterSize.Simd128 ? elems : 0;
- Operand d = GetVec(op.Rd);
- Operand res = part == 0 ? context.VectorZero() : context.Copy(d);
- for (int index = 0; index < elems; index++)
- {
- Operand ne = context.VectorExtract(type, GetVec(op.Rn), 0);
- if (sizeF == 0)
- {
- Delegate dlg = new _U16_F32(SoftFloat32_16.FPConvert);
- Operand e = context.Call(dlg, ne);
- e = context.ZeroExtend16(OperandType.I64, e);
- res = EmitVectorInsert(context, res, e, part + index, 1);
- }
- else /* if (sizeF == 1) */
- {
- Operand e = context.ConvertToFP(OperandType.FP32, ne);
- res = context.VectorInsert(res, e, part + index);
- }
- }
- context.Copy(d, res);
- }
- }
- public static void Fcvtns_S(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts(context, FPRoundingMode.ToNearest, scalar: true);
- }
- else
- {
- EmitFcvt(context, (op1) => EmitRoundMathCall(context, MidpointRounding.ToEven, op1), signed: true, scalar: true);
- }
- }
- public static void Fcvtns_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts(context, FPRoundingMode.ToNearest, scalar: false);
- }
- else
- {
- EmitFcvt(context, (op1) => EmitRoundMathCall(context, MidpointRounding.ToEven, op1), signed: true, scalar: false);
- }
- }
- public static void Fcvtnu_S(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu(context, FPRoundingMode.ToNearest, scalar: true);
- }
- else
- {
- EmitFcvt(context, (op1) => EmitRoundMathCall(context, MidpointRounding.ToEven, op1), signed: false, scalar: true);
- }
- }
- public static void Fcvtnu_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu(context, FPRoundingMode.ToNearest, scalar: false);
- }
- else
- {
- EmitFcvt(context, (op1) => EmitRoundMathCall(context, MidpointRounding.ToEven, op1), signed: false, scalar: false);
- }
- }
- public static void Fcvtps_Gp(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts_Gp(context, FPRoundingMode.TowardsPlusInfinity, isFixed: false);
- }
- else
- {
- EmitFcvt_s_Gp(context, (op1) => EmitUnaryMathCall(context, MathF.Ceiling, Math.Ceiling, op1));
- }
- }
- public static void Fcvtpu_Gp(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu_Gp(context, FPRoundingMode.TowardsPlusInfinity, isFixed: false);
- }
- else
- {
- EmitFcvt_u_Gp(context, (op1) => EmitUnaryMathCall(context, MathF.Ceiling, Math.Ceiling, op1));
- }
- }
- public static void Fcvtzs_Gp(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts_Gp(context, FPRoundingMode.TowardsZero, isFixed: false);
- }
- else
- {
- EmitFcvt_s_Gp(context, (op1) => op1);
- }
- }
- public static void Fcvtzs_Gp_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts_Gp(context, FPRoundingMode.TowardsZero, isFixed: true);
- }
- else
- {
- EmitFcvtzs_Gp_Fixed(context);
- }
- }
- public static void Fcvtzs_S(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts(context, FPRoundingMode.TowardsZero, scalar: true);
- }
- else
- {
- EmitFcvtz(context, signed: true, scalar: true);
- }
- }
- public static void Fcvtzs_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts(context, FPRoundingMode.TowardsZero, scalar: false);
- }
- else
- {
- EmitFcvtz(context, signed: true, scalar: false);
- }
- }
- public static void Fcvtzs_V_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvts(context, FPRoundingMode.TowardsZero, scalar: false);
- }
- else
- {
- EmitFcvtz(context, signed: true, scalar: false);
- }
- }
- public static void Fcvtzu_Gp(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu_Gp(context, FPRoundingMode.TowardsZero, isFixed: false);
- }
- else
- {
- EmitFcvt_u_Gp(context, (op1) => op1);
- }
- }
- public static void Fcvtzu_Gp_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu_Gp(context, FPRoundingMode.TowardsZero, isFixed: true);
- }
- else
- {
- EmitFcvtzu_Gp_Fixed(context);
- }
- }
- public static void Fcvtzu_S(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu(context, FPRoundingMode.TowardsZero, scalar: true);
- }
- else
- {
- EmitFcvtz(context, signed: false, scalar: true);
- }
- }
- public static void Fcvtzu_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu(context, FPRoundingMode.TowardsZero, scalar: false);
- }
- else
- {
- EmitFcvtz(context, signed: false, scalar: false);
- }
- }
- public static void Fcvtzu_V_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41Fcvtu(context, FPRoundingMode.TowardsZero, scalar: false);
- }
- else
- {
- EmitFcvtz(context, signed: false, scalar: false);
- }
- }
- public static void Scvtf_Gp(ArmEmitterContext context)
- {
- OpCodeSimdCvt op = (OpCodeSimdCvt)context.CurrOp;
- Operand res = GetIntOrZR(context, op.Rn);
- if (op.RegisterSize == RegisterSize.Int32)
- {
- res = context.SignExtend32(OperandType.I64, res);
- }
- res = EmitFPConvert(context, res, op.Size, signed: true);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- public static void Scvtf_Gp_Fixed(ArmEmitterContext context)
- {
- OpCodeSimdCvt op = (OpCodeSimdCvt)context.CurrOp;
- Operand res = GetIntOrZR(context, op.Rn);
- if (op.RegisterSize == RegisterSize.Int32)
- {
- res = context.SignExtend32(OperandType.I64, res);
- }
- res = EmitFPConvert(context, res, op.Size, signed: true);
- res = EmitI2fFBitsMul(context, res, op.FBits);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- public static void Scvtf_S(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2Scvtf(context, scalar: true);
- }
- else
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- int sizeF = op.Size & 1;
- Operand res = EmitVectorLongExtract(context, op.Rn, 0, sizeF + 2);
- res = EmitFPConvert(context, res, op.Size, signed: true);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- }
- public static void Scvtf_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2Scvtf(context, scalar: false);
- }
- else
- {
- EmitVectorCvtf(context, signed: true);
- }
- }
- public static void Scvtf_V_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2Scvtf(context, scalar: false);
- }
- else
- {
- EmitVectorCvtf(context, signed: true);
- }
- }
- public static void Ucvtf_Gp(ArmEmitterContext context)
- {
- OpCodeSimdCvt op = (OpCodeSimdCvt)context.CurrOp;
- Operand res = GetIntOrZR(context, op.Rn);
- res = EmitFPConvert(context, res, op.Size, signed: false);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- public static void Ucvtf_Gp_Fixed(ArmEmitterContext context)
- {
- OpCodeSimdCvt op = (OpCodeSimdCvt)context.CurrOp;
- Operand res = GetIntOrZR(context, op.Rn);
- res = EmitFPConvert(context, res, op.Size, signed: false);
- res = EmitI2fFBitsMul(context, res, op.FBits);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- public static void Ucvtf_S(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2Ucvtf(context, scalar: true);
- }
- else
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- int sizeF = op.Size & 1;
- Operand ne = EmitVectorLongExtract(context, op.Rn, 0, sizeF + 2);
- Operand res = EmitFPConvert(context, ne, sizeF, signed: false);
- context.Copy(GetVec(op.Rd), context.VectorInsert(context.VectorZero(), res, 0));
- }
- }
- public static void Ucvtf_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2Ucvtf(context, scalar: false);
- }
- else
- {
- EmitVectorCvtf(context, signed: false);
- }
- }
- public static void Ucvtf_V_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2Ucvtf(context, scalar: false);
- }
- else
- {
- EmitVectorCvtf(context, signed: false);
- }
- }
- private static void EmitFcvt(ArmEmitterContext context, Func1I emit, bool signed, bool scalar)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- Operand res = context.VectorZero();
- Operand n = GetVec(op.Rn);
- int sizeF = op.Size & 1;
- int sizeI = sizeF + 2;
- OperandType type = sizeF == 0 ? OperandType.FP32 : OperandType.FP64;
- int elems = !scalar ? op.GetBytesCount() >> sizeI : 1;
- for (int index = 0; index < elems; index++)
- {
- Operand ne = context.VectorExtract(type, n, index);
- Operand e = emit(ne);
- if (sizeF == 0)
- {
- Delegate dlg = signed
- ? (Delegate)new _S32_F32(SoftFallback.SatF32ToS32)
- : (Delegate)new _U32_F32(SoftFallback.SatF32ToU32);
- e = context.Call(dlg, e);
- e = context.ZeroExtend32(OperandType.I64, e);
- }
- else /* if (sizeF == 1) */
- {
- Delegate dlg = signed
- ? (Delegate)new _S64_F64(SoftFallback.SatF64ToS64)
- : (Delegate)new _U64_F64(SoftFallback.SatF64ToU64);
- e = context.Call(dlg, e);
- }
- res = EmitVectorInsert(context, res, e, index, sizeI);
- }
- context.Copy(GetVec(op.Rd), res);
- }
- private static void EmitFcvtz(ArmEmitterContext context, bool signed, bool scalar)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- Operand res = context.VectorZero();
- Operand n = GetVec(op.Rn);
- int sizeF = op.Size & 1;
- int sizeI = sizeF + 2;
- OperandType type = sizeF == 0 ? OperandType.FP32 : OperandType.FP64;
- int fBits = GetFBits(context);
- int elems = !scalar ? op.GetBytesCount() >> sizeI : 1;
- for (int index = 0; index < elems; index++)
- {
- Operand ne = context.VectorExtract(type, n, index);
- Operand e = EmitF2iFBitsMul(context, ne, fBits);
- if (sizeF == 0)
- {
- Delegate dlg = signed
- ? (Delegate)new _S32_F32(SoftFallback.SatF32ToS32)
- : (Delegate)new _U32_F32(SoftFallback.SatF32ToU32);
- e = context.Call(dlg, e);
- e = context.ZeroExtend32(OperandType.I64, e);
- }
- else /* if (sizeF == 1) */
- {
- Delegate dlg = signed
- ? (Delegate)new _S64_F64(SoftFallback.SatF64ToS64)
- : (Delegate)new _U64_F64(SoftFallback.SatF64ToU64);
- e = context.Call(dlg, e);
- }
- res = EmitVectorInsert(context, res, e, index, sizeI);
- }
- context.Copy(GetVec(op.Rd), res);
- }
- private static void EmitFcvt_s_Gp(ArmEmitterContext context, Func1I emit)
- {
- EmitFcvt___Gp(context, emit, signed: true);
- }
- private static void EmitFcvt_u_Gp(ArmEmitterContext context, Func1I emit)
- {
- EmitFcvt___Gp(context, emit, signed: false);
- }
- private static void EmitFcvt___Gp(ArmEmitterContext context, Func1I emit, bool signed)
- {
- OpCodeSimdCvt op = (OpCodeSimdCvt)context.CurrOp;
- OperandType type = op.Size == 0 ? OperandType.FP32 : OperandType.FP64;
- Operand ne = context.VectorExtract(type, GetVec(op.Rn), 0);
- Operand res = signed
- ? EmitScalarFcvts(context, emit(ne), 0)
- : EmitScalarFcvtu(context, emit(ne), 0);
- SetIntOrZR(context, op.Rd, res);
- }
- private static void EmitFcvtzs_Gp_Fixed(ArmEmitterContext context)
- {
- EmitFcvtz__Gp_Fixed(context, signed: true);
- }
- private static void EmitFcvtzu_Gp_Fixed(ArmEmitterContext context)
- {
- EmitFcvtz__Gp_Fixed(context, signed: false);
- }
- private static void EmitFcvtz__Gp_Fixed(ArmEmitterContext context, bool signed)
- {
- OpCodeSimdCvt op = (OpCodeSimdCvt)context.CurrOp;
- OperandType type = op.Size == 0 ? OperandType.FP32 : OperandType.FP64;
- Operand ne = context.VectorExtract(type, GetVec(op.Rn), 0);
- Operand res = signed
- ? EmitScalarFcvts(context, ne, op.FBits)
- : EmitScalarFcvtu(context, ne, op.FBits);
- SetIntOrZR(context, op.Rd, res);
- }
- private static void EmitVectorCvtf(ArmEmitterContext context, bool signed)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- Operand res = context.VectorZero();
- int sizeF = op.Size & 1;
- int sizeI = sizeF + 2;
- int fBits = GetFBits(context);
- int elems = op.GetBytesCount() >> sizeI;
- for (int index = 0; index < elems; index++)
- {
- Operand ne = EmitVectorLongExtract(context, op.Rn, index, sizeI);
- Operand e = EmitFPConvert(context, ne, sizeF, signed);
- e = EmitI2fFBitsMul(context, e, fBits);
- res = context.VectorInsert(res, e, index);
- }
- context.Copy(GetVec(op.Rd), res);
- }
- private static int GetFBits(ArmEmitterContext context)
- {
- if (context.CurrOp is OpCodeSimdShImm op)
- {
- return GetImmShr(op);
- }
- return 0;
- }
- private static Operand EmitFPConvert(ArmEmitterContext context, Operand value, int size, bool signed)
- {
- Debug.Assert(value.Type == OperandType.I32 || value.Type == OperandType.I64);
- Debug.Assert((uint)size < 2);
- OperandType type = size == 0 ? OperandType.FP32 : OperandType.FP64;
- if (signed)
- {
- return context.ConvertToFP(type, value);
- }
- else
- {
- return context.ConvertToFPUI(type, value);
- }
- }
- private static Operand EmitScalarFcvts(ArmEmitterContext context, Operand value, int fBits)
- {
- Debug.Assert(value.Type == OperandType.FP32 || value.Type == OperandType.FP64);
- value = EmitF2iFBitsMul(context, value, fBits);
- if (context.CurrOp.RegisterSize == RegisterSize.Int32)
- {
- Delegate dlg = value.Type == OperandType.FP32
- ? (Delegate)new _S32_F32(SoftFallback.SatF32ToS32)
- : (Delegate)new _S32_F64(SoftFallback.SatF64ToS32);
- return context.Call(dlg, value);
- }
- else
- {
- Delegate dlg = value.Type == OperandType.FP32
- ? (Delegate)new _S64_F32(SoftFallback.SatF32ToS64)
- : (Delegate)new _S64_F64(SoftFallback.SatF64ToS64);
- return context.Call(dlg, value);
- }
- }
- private static Operand EmitScalarFcvtu(ArmEmitterContext context, Operand value, int fBits)
- {
- Debug.Assert(value.Type == OperandType.FP32 || value.Type == OperandType.FP64);
- value = EmitF2iFBitsMul(context, value, fBits);
- if (context.CurrOp.RegisterSize == RegisterSize.Int32)
- {
- Delegate dlg = value.Type == OperandType.FP32
- ? (Delegate)new _U32_F32(SoftFallback.SatF32ToU32)
- : (Delegate)new _U32_F64(SoftFallback.SatF64ToU32);
- return context.Call(dlg, value);
- }
- else
- {
- Delegate dlg = value.Type == OperandType.FP32
- ? (Delegate)new _U64_F32(SoftFallback.SatF32ToU64)
- : (Delegate)new _U64_F64(SoftFallback.SatF64ToU64);
- return context.Call(dlg, value);
- }
- }
- private static Operand EmitF2iFBitsMul(ArmEmitterContext context, Operand value, int fBits)
- {
- Debug.Assert(value.Type == OperandType.FP32 || value.Type == OperandType.FP64);
- if (fBits == 0)
- {
- return value;
- }
- if (value.Type == OperandType.FP32)
- {
- return context.Multiply(value, ConstF(MathF.Pow(2f, fBits)));
- }
- else /* if (value.Type == OperandType.FP64) */
- {
- return context.Multiply(value, ConstF(Math.Pow(2d, fBits)));
- }
- }
- private static Operand EmitI2fFBitsMul(ArmEmitterContext context, Operand value, int fBits)
- {
- Debug.Assert(value.Type == OperandType.FP32 || value.Type == OperandType.FP64);
- if (fBits == 0)
- {
- return value;
- }
- if (value.Type == OperandType.FP32)
- {
- return context.Multiply(value, ConstF(1f / MathF.Pow(2f, fBits)));
- }
- else /* if (value.Type == OperandType.FP64) */
- {
- return context.Multiply(value, ConstF(1d / Math.Pow(2d, fBits)));
- }
- }
- public static Operand EmitSse2CvtDoubleToInt64OpF(ArmEmitterContext context, Operand opF, bool scalar)
- {
- Debug.Assert(opF.Type == OperandType.V128);
- Operand longL = context.AddIntrinsicLong (Intrinsic.X86Cvtsd2si, opF); // opFL
- Operand res = context.VectorCreateScalar(longL);
- if (!scalar)
- {
- Operand opFH = context.AddIntrinsic (Intrinsic.X86Movhlps, res, opF); // res doesn't matter.
- Operand longH = context.AddIntrinsicLong (Intrinsic.X86Cvtsd2si, opFH);
- Operand resH = context.VectorCreateScalar(longH);
- res = context.AddIntrinsic (Intrinsic.X86Movlhps, res, resH);
- }
- return res;
- }
- private static Operand EmitSse2CvtInt64ToDoubleOp(ArmEmitterContext context, Operand op, bool scalar)
- {
- Debug.Assert(op.Type == OperandType.V128);
- Operand longL = context.AddIntrinsicLong(Intrinsic.X86Cvtsi2si, op); // opL
- Operand res = context.AddIntrinsic (Intrinsic.X86Cvtsi2sd, context.VectorZero(), longL);
- if (!scalar)
- {
- Operand opH = context.AddIntrinsic (Intrinsic.X86Movhlps, res, op); // res doesn't matter.
- Operand longH = context.AddIntrinsicLong(Intrinsic.X86Cvtsi2si, opH);
- Operand resH = context.AddIntrinsic (Intrinsic.X86Cvtsi2sd, res, longH); // res doesn't matter.
- res = context.AddIntrinsic (Intrinsic.X86Movlhps, res, resH);
- }
- return res;
- }
- private static void EmitSse2Scvtf(ArmEmitterContext context, bool scalar)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- Operand n = GetVec(op.Rn);
- // sizeF == ((OpCodeSimdShImm)op).Size - 2
- int sizeF = op.Size & 1;
- if (sizeF == 0)
- {
- Operand res = context.AddIntrinsic(Intrinsic.X86Cvtdq2ps, n);
- if (op is OpCodeSimdShImm fixedOp)
- {
- int fBits = GetImmShr(fixedOp);
- // BitConverter.Int32BitsToSingle(fpScaled) == 1f / MathF.Pow(2f, fBits)
- int fpScaled = 0x3F800000 - fBits * 0x800000;
- Operand fpScaledMask = scalar
- ? X86GetScalar (context, fpScaled)
- : X86GetAllElements(context, fpScaled);
- res = context.AddIntrinsic(Intrinsic.X86Mulps, res, fpScaledMask);
- }
- if (scalar)
- {
- res = context.VectorZeroUpper96(res);
- }
- else if (op.RegisterSize == RegisterSize.Simd64)
- {
- res = context.VectorZeroUpper64(res);
- }
- context.Copy(GetVec(op.Rd), res);
- }
- else /* if (sizeF == 1) */
- {
- Operand res = EmitSse2CvtInt64ToDoubleOp(context, n, scalar);
- if (op is OpCodeSimdShImm fixedOp)
- {
- int fBits = GetImmShr(fixedOp);
- // BitConverter.Int64BitsToDouble(fpScaled) == 1d / Math.Pow(2d, fBits)
- long fpScaled = 0x3FF0000000000000L - fBits * 0x10000000000000L;
- Operand fpScaledMask = scalar
- ? X86GetScalar (context, fpScaled)
- : X86GetAllElements(context, fpScaled);
- res = context.AddIntrinsic(Intrinsic.X86Mulpd, res, fpScaledMask);
- }
- if (scalar)
- {
- res = context.VectorZeroUpper64(res);
- }
- context.Copy(GetVec(op.Rd), res);
- }
- }
- private static void EmitSse2Ucvtf(ArmEmitterContext context, bool scalar)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- Operand n = GetVec(op.Rn);
- // sizeF == ((OpCodeSimdShImm)op).Size - 2
- int sizeF = op.Size & 1;
- if (sizeF == 0)
- {
- Operand mask = scalar // 65536.000f (1 << 16)
- ? X86GetScalar (context, 0x47800000)
- : X86GetAllElements(context, 0x47800000);
- Operand res = context.AddIntrinsic(Intrinsic.X86Psrld, n, Const(16));
- res = context.AddIntrinsic(Intrinsic.X86Cvtdq2ps, res);
- res = context.AddIntrinsic(Intrinsic.X86Mulps, res, mask);
- Operand res2 = context.AddIntrinsic(Intrinsic.X86Pslld, n, Const(16));
- res2 = context.AddIntrinsic(Intrinsic.X86Psrld, res2, Const(16));
- res2 = context.AddIntrinsic(Intrinsic.X86Cvtdq2ps, res2);
- res = context.AddIntrinsic(Intrinsic.X86Addps, res, res2);
- if (op is OpCodeSimdShImm fixedOp)
- {
- int fBits = GetImmShr(fixedOp);
- // BitConverter.Int32BitsToSingle(fpScaled) == 1f / MathF.Pow(2f, fBits)
- int fpScaled = 0x3F800000 - fBits * 0x800000;
- Operand fpScaledMask = scalar
- ? X86GetScalar (context, fpScaled)
- : X86GetAllElements(context, fpScaled);
- res = context.AddIntrinsic(Intrinsic.X86Mulps, res, fpScaledMask);
- }
- if (scalar)
- {
- res = context.VectorZeroUpper96(res);
- }
- else if (op.RegisterSize == RegisterSize.Simd64)
- {
- res = context.VectorZeroUpper64(res);
- }
- context.Copy(GetVec(op.Rd), res);
- }
- else /* if (sizeF == 1) */
- {
- Operand mask = scalar // 4294967296.0000000d (1L << 32)
- ? X86GetScalar (context, 0x41F0000000000000L)
- : X86GetAllElements(context, 0x41F0000000000000L);
- Operand res = context.AddIntrinsic (Intrinsic.X86Psrlq, n, Const(32));
- res = EmitSse2CvtInt64ToDoubleOp(context, res, scalar);
- res = context.AddIntrinsic (Intrinsic.X86Mulpd, res, mask);
- Operand res2 = context.AddIntrinsic (Intrinsic.X86Psllq, n, Const(32));
- res2 = context.AddIntrinsic (Intrinsic.X86Psrlq, res2, Const(32));
- res2 = EmitSse2CvtInt64ToDoubleOp(context, res2, scalar);
- res = context.AddIntrinsic(Intrinsic.X86Addpd, res, res2);
- if (op is OpCodeSimdShImm fixedOp)
- {
- int fBits = GetImmShr(fixedOp);
- // BitConverter.Int64BitsToDouble(fpScaled) == 1d / Math.Pow(2d, fBits)
- long fpScaled = 0x3FF0000000000000L - fBits * 0x10000000000000L;
- Operand fpScaledMask = scalar
- ? X86GetScalar (context, fpScaled)
- : X86GetAllElements(context, fpScaled);
- res = context.AddIntrinsic(Intrinsic.X86Mulpd, res, fpScaledMask);
- }
- if (scalar)
- {
- res = context.VectorZeroUpper64(res);
- }
- context.Copy(GetVec(op.Rd), res);
- }
- }
- private static void EmitSse41Fcvts(ArmEmitterContext context, FPRoundingMode roundMode, bool scalar)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- Operand n = GetVec(op.Rn);
- // sizeF == ((OpCodeSimdShImm)op).Size - 2
- int sizeF = op.Size & 1;
- if (sizeF == 0)
- {
- Operand nRes = context.AddIntrinsic(Intrinsic.X86Cmpps, n, n, Const((int)CmpCondition.OrderedQ));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, n);
- if (op is OpCodeSimdShImm fixedOp)
- {
- int fBits = GetImmShr(fixedOp);
- // BitConverter.Int32BitsToSingle(fpScaled) == MathF.Pow(2f, fBits)
- int fpScaled = 0x3F800000 + fBits * 0x800000;
- Operand fpScaledMask = scalar
- ? X86GetScalar (context, fpScaled)
- : X86GetAllElements(context, fpScaled);
- nRes = context.AddIntrinsic(Intrinsic.X86Mulps, nRes, fpScaledMask);
- }
- nRes = context.AddIntrinsic(Intrinsic.X86Roundps, nRes, Const(X86GetRoundControl(roundMode)));
- Operand nInt = context.AddIntrinsic(Intrinsic.X86Cvtps2dq, nRes);
- Operand fpMaxValMask = scalar // 2.14748365E9f (2147483648)
- ? X86GetScalar (context, 0x4F000000)
- : X86GetAllElements(context, 0x4F000000);
- nRes = context.AddIntrinsic(Intrinsic.X86Cmpps, nRes, fpMaxValMask, Const((int)CmpCondition.NotLessThan));
- Operand dRes = context.AddIntrinsic(Intrinsic.X86Pxor, nInt, nRes);
- if (scalar)
- {
- dRes = context.VectorZeroUpper96(dRes);
- }
- else if (op.RegisterSize == RegisterSize.Simd64)
- {
- dRes = context.VectorZeroUpper64(dRes);
- }
- context.Copy(GetVec(op.Rd), dRes);
- }
- else /* if (sizeF == 1) */
- {
- Operand nRes = context.AddIntrinsic(Intrinsic.X86Cmppd, n, n, Const((int)CmpCondition.OrderedQ));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, n);
- if (op is OpCodeSimdShImm fixedOp)
- {
- int fBits = GetImmShr(fixedOp);
- // BitConverter.Int64BitsToDouble(fpScaled) == Math.Pow(2d, fBits)
- long fpScaled = 0x3FF0000000000000L + fBits * 0x10000000000000L;
- Operand fpScaledMask = scalar
- ? X86GetScalar (context, fpScaled)
- : X86GetAllElements(context, fpScaled);
- nRes = context.AddIntrinsic(Intrinsic.X86Mulpd, nRes, fpScaledMask);
- }
- nRes = context.AddIntrinsic(Intrinsic.X86Roundpd, nRes, Const(X86GetRoundControl(roundMode)));
- Operand nLong = EmitSse2CvtDoubleToInt64OpF(context, nRes, scalar);
- Operand fpMaxValMask = scalar // 9.2233720368547760E18d (9223372036854775808)
- ? X86GetScalar (context, 0x43E0000000000000L)
- : X86GetAllElements(context, 0x43E0000000000000L);
- nRes = context.AddIntrinsic(Intrinsic.X86Cmppd, nRes, fpMaxValMask, Const((int)CmpCondition.NotLessThan));
- Operand dRes = context.AddIntrinsic(Intrinsic.X86Pxor, nLong, nRes);
- if (scalar)
- {
- dRes = context.VectorZeroUpper64(dRes);
- }
- context.Copy(GetVec(op.Rd), dRes);
- }
- }
- private static void EmitSse41Fcvtu(ArmEmitterContext context, FPRoundingMode roundMode, bool scalar)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- Operand n = GetVec(op.Rn);
- // sizeF == ((OpCodeSimdShImm)op).Size - 2
- int sizeF = op.Size & 1;
- if (sizeF == 0)
- {
- Operand nRes = context.AddIntrinsic(Intrinsic.X86Cmpps, n, n, Const((int)CmpCondition.OrderedQ));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, n);
- if (op is OpCodeSimdShImm fixedOp)
- {
- int fBits = GetImmShr(fixedOp);
- // BitConverter.Int32BitsToSingle(fpScaled) == MathF.Pow(2f, fBits)
- int fpScaled = 0x3F800000 + fBits * 0x800000;
- Operand fpScaledMask = scalar
- ? X86GetScalar (context, fpScaled)
- : X86GetAllElements(context, fpScaled);
- nRes = context.AddIntrinsic(Intrinsic.X86Mulps, nRes, fpScaledMask);
- }
- nRes = context.AddIntrinsic(Intrinsic.X86Roundps, nRes, Const(X86GetRoundControl(roundMode)));
- Operand zero = context.VectorZero();
- Operand nCmp = context.AddIntrinsic(Intrinsic.X86Cmpps, nRes, zero, Const((int)CmpCondition.NotLessThanOrEqual));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, nCmp);
- Operand fpMaxValMask = scalar // 2.14748365E9f (2147483648)
- ? X86GetScalar (context, 0x4F000000)
- : X86GetAllElements(context, 0x4F000000);
- Operand nInt = context.AddIntrinsic(Intrinsic.X86Cvtps2dq, nRes);
- nRes = context.AddIntrinsic(Intrinsic.X86Subps, nRes, fpMaxValMask);
- nCmp = context.AddIntrinsic(Intrinsic.X86Cmpps, nRes, zero, Const((int)CmpCondition.NotLessThanOrEqual));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, nCmp);
- Operand nInt2 = context.AddIntrinsic(Intrinsic.X86Cvtps2dq, nRes);
- nRes = context.AddIntrinsic(Intrinsic.X86Cmpps, nRes, fpMaxValMask, Const((int)CmpCondition.NotLessThan));
- Operand dRes = context.AddIntrinsic(Intrinsic.X86Pxor, nInt2, nRes);
- dRes = context.AddIntrinsic(Intrinsic.X86Paddd, dRes, nInt);
- if (scalar)
- {
- dRes = context.VectorZeroUpper96(dRes);
- }
- else if (op.RegisterSize == RegisterSize.Simd64)
- {
- dRes = context.VectorZeroUpper64(dRes);
- }
- context.Copy(GetVec(op.Rd), dRes);
- }
- else /* if (sizeF == 1) */
- {
- Operand nRes = context.AddIntrinsic(Intrinsic.X86Cmppd, n, n, Const((int)CmpCondition.OrderedQ));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, n);
- if (op is OpCodeSimdShImm fixedOp)
- {
- int fBits = GetImmShr(fixedOp);
- // BitConverter.Int64BitsToDouble(fpScaled) == Math.Pow(2d, fBits)
- long fpScaled = 0x3FF0000000000000L + fBits * 0x10000000000000L;
- Operand fpScaledMask = scalar
- ? X86GetScalar (context, fpScaled)
- : X86GetAllElements(context, fpScaled);
- nRes = context.AddIntrinsic(Intrinsic.X86Mulpd, nRes, fpScaledMask);
- }
- nRes = context.AddIntrinsic(Intrinsic.X86Roundpd, nRes, Const(X86GetRoundControl(roundMode)));
- Operand zero = context.VectorZero();
- Operand nCmp = context.AddIntrinsic(Intrinsic.X86Cmppd, nRes, zero, Const((int)CmpCondition.NotLessThanOrEqual));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, nCmp);
- Operand fpMaxValMask = scalar // 9.2233720368547760E18d (9223372036854775808)
- ? X86GetScalar (context, 0x43E0000000000000L)
- : X86GetAllElements(context, 0x43E0000000000000L);
- Operand nLong = EmitSse2CvtDoubleToInt64OpF(context, nRes, scalar);
- nRes = context.AddIntrinsic(Intrinsic.X86Subpd, nRes, fpMaxValMask);
- nCmp = context.AddIntrinsic(Intrinsic.X86Cmppd, nRes, zero, Const((int)CmpCondition.NotLessThanOrEqual));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, nCmp);
- Operand nLong2 = EmitSse2CvtDoubleToInt64OpF(context, nRes, scalar);
- nRes = context.AddIntrinsic(Intrinsic.X86Cmppd, nRes, fpMaxValMask, Const((int)CmpCondition.NotLessThan));
- Operand dRes = context.AddIntrinsic(Intrinsic.X86Pxor, nLong2, nRes);
- dRes = context.AddIntrinsic(Intrinsic.X86Paddq, dRes, nLong);
- if (scalar)
- {
- dRes = context.VectorZeroUpper64(dRes);
- }
- context.Copy(GetVec(op.Rd), dRes);
- }
- }
- private static void EmitSse41Fcvts_Gp(ArmEmitterContext context, FPRoundingMode roundMode, bool isFixed)
- {
- OpCodeSimdCvt op = (OpCodeSimdCvt)context.CurrOp;
- Operand n = GetVec(op.Rn);
- if (op.Size == 0)
- {
- Operand nRes = context.AddIntrinsic(Intrinsic.X86Cmpss, n, n, Const((int)CmpCondition.OrderedQ));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, n);
- if (isFixed)
- {
- // BitConverter.Int32BitsToSingle(fpScaled) == MathF.Pow(2f, op.FBits)
- int fpScaled = 0x3F800000 + op.FBits * 0x800000;
- Operand fpScaledMask = X86GetScalar(context, fpScaled);
- nRes = context.AddIntrinsic(Intrinsic.X86Mulss, nRes, fpScaledMask);
- }
- nRes = context.AddIntrinsic(Intrinsic.X86Roundss, nRes, Const(X86GetRoundControl(roundMode)));
- Operand nIntOrLong = op.RegisterSize == RegisterSize.Int32
- ? context.AddIntrinsicInt (Intrinsic.X86Cvtss2si, nRes)
- : context.AddIntrinsicLong(Intrinsic.X86Cvtss2si, nRes);
- int fpMaxVal = op.RegisterSize == RegisterSize.Int32
- ? 0x4F000000 // 2.14748365E9f (2147483648)
- : 0x5F000000; // 9.223372E18f (9223372036854775808)
- Operand fpMaxValMask = X86GetScalar(context, fpMaxVal);
- nRes = context.AddIntrinsic(Intrinsic.X86Cmpss, nRes, fpMaxValMask, Const((int)CmpCondition.NotLessThan));
- Operand nInt = context.AddIntrinsicInt(Intrinsic.X86Cvtsi2si, nRes);
- if (op.RegisterSize == RegisterSize.Int64)
- {
- nInt = context.SignExtend32(OperandType.I64, nInt);
- }
- Operand dRes = context.BitwiseExclusiveOr(nIntOrLong, nInt);
- SetIntOrZR(context, op.Rd, dRes);
- }
- else /* if (op.Size == 1) */
- {
- Operand nRes = context.AddIntrinsic(Intrinsic.X86Cmpsd, n, n, Const((int)CmpCondition.OrderedQ));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, n);
- if (isFixed)
- {
- // BitConverter.Int64BitsToDouble(fpScaled) == Math.Pow(2d, op.FBits)
- long fpScaled = 0x3FF0000000000000L + op.FBits * 0x10000000000000L;
- Operand fpScaledMask = X86GetScalar(context, fpScaled);
- nRes = context.AddIntrinsic(Intrinsic.X86Mulsd, nRes, fpScaledMask);
- }
- nRes = context.AddIntrinsic(Intrinsic.X86Roundsd, nRes, Const(X86GetRoundControl(roundMode)));
- Operand nIntOrLong = op.RegisterSize == RegisterSize.Int32
- ? context.AddIntrinsicInt (Intrinsic.X86Cvtsd2si, nRes)
- : context.AddIntrinsicLong(Intrinsic.X86Cvtsd2si, nRes);
- long fpMaxVal = op.RegisterSize == RegisterSize.Int32
- ? 0x41E0000000000000L // 2147483648.0000000d (2147483648)
- : 0x43E0000000000000L; // 9.2233720368547760E18d (9223372036854775808)
- Operand fpMaxValMask = X86GetScalar(context, fpMaxVal);
- nRes = context.AddIntrinsic(Intrinsic.X86Cmpsd, nRes, fpMaxValMask, Const((int)CmpCondition.NotLessThan));
- Operand nLong = context.AddIntrinsicLong(Intrinsic.X86Cvtsi2si, nRes);
- if (op.RegisterSize == RegisterSize.Int32)
- {
- nLong = context.ConvertI64ToI32(nLong);
- }
- Operand dRes = context.BitwiseExclusiveOr(nIntOrLong, nLong);
- SetIntOrZR(context, op.Rd, dRes);
- }
- }
- private static void EmitSse41Fcvtu_Gp(ArmEmitterContext context, FPRoundingMode roundMode, bool isFixed)
- {
- OpCodeSimdCvt op = (OpCodeSimdCvt)context.CurrOp;
- Operand n = GetVec(op.Rn);
- if (op.Size == 0)
- {
- Operand nRes = context.AddIntrinsic(Intrinsic.X86Cmpss, n, n, Const((int)CmpCondition.OrderedQ));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, n);
- if (isFixed)
- {
- // BitConverter.Int32BitsToSingle(fpScaled) == MathF.Pow(2f, op.FBits)
- int fpScaled = 0x3F800000 + op.FBits * 0x800000;
- Operand fpScaledMask = X86GetScalar(context, fpScaled);
- nRes = context.AddIntrinsic(Intrinsic.X86Mulss, nRes, fpScaledMask);
- }
- nRes = context.AddIntrinsic(Intrinsic.X86Roundss, nRes, Const(X86GetRoundControl(roundMode)));
- Operand zero = context.VectorZero();
- Operand nCmp = context.AddIntrinsic(Intrinsic.X86Cmpss, nRes, zero, Const((int)CmpCondition.NotLessThanOrEqual));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, nCmp);
- int fpMaxVal = op.RegisterSize == RegisterSize.Int32
- ? 0x4F000000 // 2.14748365E9f (2147483648)
- : 0x5F000000; // 9.223372E18f (9223372036854775808)
- Operand fpMaxValMask = X86GetScalar(context, fpMaxVal);
- Operand nIntOrLong = op.RegisterSize == RegisterSize.Int32
- ? context.AddIntrinsicInt (Intrinsic.X86Cvtss2si, nRes)
- : context.AddIntrinsicLong(Intrinsic.X86Cvtss2si, nRes);
- nRes = context.AddIntrinsic(Intrinsic.X86Subss, nRes, fpMaxValMask);
- nCmp = context.AddIntrinsic(Intrinsic.X86Cmpss, nRes, zero, Const((int)CmpCondition.NotLessThanOrEqual));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, nCmp);
- Operand nIntOrLong2 = op.RegisterSize == RegisterSize.Int32
- ? context.AddIntrinsicInt (Intrinsic.X86Cvtss2si, nRes)
- : context.AddIntrinsicLong(Intrinsic.X86Cvtss2si, nRes);
- nRes = context.AddIntrinsic(Intrinsic.X86Cmpss, nRes, fpMaxValMask, Const((int)CmpCondition.NotLessThan));
- Operand nInt = context.AddIntrinsicInt(Intrinsic.X86Cvtsi2si, nRes);
- if (op.RegisterSize == RegisterSize.Int64)
- {
- nInt = context.SignExtend32(OperandType.I64, nInt);
- }
- Operand dRes = context.BitwiseExclusiveOr(nIntOrLong2, nInt);
- dRes = context.Add(dRes, nIntOrLong);
- SetIntOrZR(context, op.Rd, dRes);
- }
- else /* if (op.Size == 1) */
- {
- Operand nRes = context.AddIntrinsic(Intrinsic.X86Cmpsd, n, n, Const((int)CmpCondition.OrderedQ));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, n);
- if (isFixed)
- {
- // BitConverter.Int64BitsToDouble(fpScaled) == Math.Pow(2d, op.FBits)
- long fpScaled = 0x3FF0000000000000L + op.FBits * 0x10000000000000L;
- Operand fpScaledMask = X86GetScalar(context, fpScaled);
- nRes = context.AddIntrinsic(Intrinsic.X86Mulsd, nRes, fpScaledMask);
- }
- nRes = context.AddIntrinsic(Intrinsic.X86Roundsd, nRes, Const(X86GetRoundControl(roundMode)));
- Operand zero = context.VectorZero();
- Operand nCmp = context.AddIntrinsic(Intrinsic.X86Cmpsd, nRes, zero, Const((int)CmpCondition.NotLessThanOrEqual));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, nCmp);
- long fpMaxVal = op.RegisterSize == RegisterSize.Int32
- ? 0x41E0000000000000L // 2147483648.0000000d (2147483648)
- : 0x43E0000000000000L; // 9.2233720368547760E18d (9223372036854775808)
- Operand fpMaxValMask = X86GetScalar(context, fpMaxVal);
- Operand nIntOrLong = op.RegisterSize == RegisterSize.Int32
- ? context.AddIntrinsicInt (Intrinsic.X86Cvtsd2si, nRes)
- : context.AddIntrinsicLong(Intrinsic.X86Cvtsd2si, nRes);
- nRes = context.AddIntrinsic(Intrinsic.X86Subsd, nRes, fpMaxValMask);
- nCmp = context.AddIntrinsic(Intrinsic.X86Cmpsd, nRes, zero, Const((int)CmpCondition.NotLessThanOrEqual));
- nRes = context.AddIntrinsic(Intrinsic.X86Pand, nRes, nCmp);
- Operand nIntOrLong2 = op.RegisterSize == RegisterSize.Int32
- ? context.AddIntrinsicInt (Intrinsic.X86Cvtsd2si, nRes)
- : context.AddIntrinsicLong(Intrinsic.X86Cvtsd2si, nRes);
- nRes = context.AddIntrinsic(Intrinsic.X86Cmpsd, nRes, fpMaxValMask, Const((int)CmpCondition.NotLessThan));
- Operand nLong = context.AddIntrinsicLong(Intrinsic.X86Cvtsi2si, nRes);
- if (op.RegisterSize == RegisterSize.Int32)
- {
- nLong = context.ConvertI64ToI32(nLong);
- }
- Operand dRes = context.BitwiseExclusiveOr(nIntOrLong2, nLong);
- dRes = context.Add(dRes, nIntOrLong);
- SetIntOrZR(context, op.Rd, dRes);
- }
- }
- private static Operand EmitVectorLongExtract(ArmEmitterContext context, int reg, int index, int size)
- {
- OperandType type = size == 3 ? OperandType.I64 : OperandType.I32;
- return context.VectorExtract(type, GetVec(reg), index);
- }
- }
- }
|