| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546 |
- using ARMeilleure.Decoders;
- using ARMeilleure.IntermediateRepresentation;
- using ARMeilleure.State;
- using ARMeilleure.Translation;
- using System;
- using System.Diagnostics;
- using System.Reflection;
- using static ARMeilleure.Instructions.InstEmitHelper;
- using static ARMeilleure.Instructions.InstEmitSimdHelper;
- using static ARMeilleure.IntermediateRepresentation.Operand.Factory;
- 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.
- {
- if (Optimizations.UseF16c)
- {
- Debug.Assert(!Optimizations.ForceLegacySse);
- Operand n = GetVec(op.Rn);
- Operand res = context.AddIntrinsic(Intrinsic.X86Vcvtps2ph, n, Const(X86GetRoundControl(FPRoundingMode.ToNearest)));
- res = context.AddIntrinsic(Intrinsic.X86Pslldq, res, Const(14)); // VectorZeroUpper112()
- res = context.AddIntrinsic(Intrinsic.X86Psrldq, res, Const(14));
- context.Copy(GetVec(op.Rd), res);
- }
- else
- {
- Operand ne = context.VectorExtract(OperandType.FP32, GetVec(op.Rn), 0);
- Operand res = context.Call(typeof(SoftFloat32_16).GetMethod(nameof(SoftFloat32_16.FPConvert)), 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.
- {
- if (Optimizations.UseF16c)
- {
- Debug.Assert(!Optimizations.ForceLegacySse);
- Operand res = context.AddIntrinsic(Intrinsic.X86Vcvtph2ps, GetVec(op.Rn));
- res = context.VectorZeroUpper96(res);
- context.Copy(GetVec(op.Rd), res);
- }
- else
- {
- Operand ne = EmitVectorExtractZx(context, op.Rn, 0, 1);
- Operand res = context.Call(typeof(SoftFloat16_32).GetMethod(nameof(SoftFloat16_32.FPConvert)), 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 = op.RegisterSize == RegisterSize.Simd128 ? context.AddIntrinsic(Intrinsic.X86Movhlps, n, n) : n;
- res = context.AddIntrinsic(Intrinsic.X86Cvtps2pd, res);
- context.Copy(GetVec(op.Rd), res);
- }
- else if (Optimizations.UseF16c && sizeF == 0)
- {
- Debug.Assert(!Optimizations.ForceLegacySse);
- Operand n = GetVec(op.Rn);
- Operand res = op.RegisterSize == RegisterSize.Simd128 ? context.AddIntrinsic(Intrinsic.X86Movhlps, n, n) : n;
- res = context.AddIntrinsic(Intrinsic.X86Vcvtph2ps, 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);
- Operand e = context.Call(typeof(SoftFloat16_32).GetMethod(nameof(SoftFloat16_32.FPConvert)), 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, nameof(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, nameof(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);
- Intrinsic movInst = op.RegisterSize == RegisterSize.Simd128 ? Intrinsic.X86Movlhps : Intrinsic.X86Movhlps;
- Operand nInt = context.AddIntrinsic(Intrinsic.X86Cvtpd2ps, GetVec(op.Rn));
- nInt = context.AddIntrinsic(Intrinsic.X86Movlhps, nInt, nInt);
- Operand res = context.VectorZeroUpper64(d);
- res = context.AddIntrinsic(movInst, res, nInt);
- context.Copy(d, res);
- }
- else if (Optimizations.UseF16c && sizeF == 0)
- {
- Debug.Assert(!Optimizations.ForceLegacySse);
- Operand d = GetVec(op.Rd);
- Operand n = GetVec(op.Rn);
- Intrinsic movInst = op.RegisterSize == RegisterSize.Simd128 ? Intrinsic.X86Movlhps : Intrinsic.X86Movhlps;
- Operand nInt = context.AddIntrinsic(Intrinsic.X86Vcvtps2ph, n, Const(X86GetRoundControl(FPRoundingMode.ToNearest)));
- nInt = context.AddIntrinsic(Intrinsic.X86Movlhps, nInt, nInt);
- Operand res = context.VectorZeroUpper64(d);
- 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)
- {
- Operand e = context.Call(typeof(SoftFloat32_16).GetMethod(nameof(SoftFloat32_16.FPConvert)), 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)
- {
- EmitSse41FcvtsOpF(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)
- {
- EmitSse41FcvtsOpF(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)
- {
- EmitSse41FcvtuOpF(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)
- {
- EmitSse41FcvtuOpF(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, nameof(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, nameof(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)
- {
- EmitSse41FcvtsOpF(context, FPRoundingMode.TowardsZero, scalar: true);
- }
- else
- {
- EmitFcvtz(context, signed: true, scalar: true);
- }
- }
- public static void Fcvtzs_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41FcvtsOpF(context, FPRoundingMode.TowardsZero, scalar: false);
- }
- else
- {
- EmitFcvtz(context, signed: true, scalar: false);
- }
- }
- public static void Fcvtzs_V_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41FcvtsOpF(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)
- {
- EmitSse41FcvtuOpF(context, FPRoundingMode.TowardsZero, scalar: true);
- }
- else
- {
- EmitFcvtz(context, signed: false, scalar: true);
- }
- }
- public static void Fcvtzu_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41FcvtuOpF(context, FPRoundingMode.TowardsZero, scalar: false);
- }
- else
- {
- EmitFcvtz(context, signed: false, scalar: false);
- }
- }
- public static void Fcvtzu_V_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse41)
- {
- EmitSse41FcvtuOpF(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)
- {
- EmitSse2ScvtfOp(context, scalar: true);
- }
- else
- {
- EmitCvtf(context, signed: true, scalar: true);
- }
- }
- public static void Scvtf_S_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2ScvtfOp(context, scalar: true);
- }
- else
- {
- EmitCvtf(context, signed: true, scalar: true);
- }
- }
- public static void Scvtf_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2ScvtfOp(context, scalar: false);
- }
- else
- {
- EmitCvtf(context, signed: true, scalar: false);
- }
- }
- public static void Scvtf_V_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2ScvtfOp(context, scalar: false);
- }
- else
- {
- EmitCvtf(context, signed: true, scalar: false);
- }
- }
- 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)
- {
- EmitSse2UcvtfOp(context, scalar: true);
- }
- else
- {
- EmitCvtf(context, signed: false, scalar: true);
- }
- }
- public static void Ucvtf_S_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2UcvtfOp(context, scalar: true);
- }
- else
- {
- EmitCvtf(context, signed: false, scalar: true);
- }
- }
- public static void Ucvtf_V(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2UcvtfOp(context, scalar: false);
- }
- else
- {
- EmitCvtf(context, signed: false, scalar: false);
- }
- }
- public static void Ucvtf_V_Fixed(ArmEmitterContext context)
- {
- if (Optimizations.UseSse2)
- {
- EmitSse2UcvtfOp(context, scalar: false);
- }
- else
- {
- EmitCvtf(context, signed: false, scalar: 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)
- {
- MethodInfo info = signed
- ? typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToS32))
- : typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToU32));
- e = context.Call(info, e);
- e = context.ZeroExtend32(OperandType.I64, e);
- }
- else /* if (sizeF == 1) */
- {
- MethodInfo info = signed
- ? typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToS64))
- : typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToU64));
- e = context.Call(info, 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)
- {
- MethodInfo info = signed
- ? typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToS32))
- : typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToU32));
- e = context.Call(info, e);
- e = context.ZeroExtend32(OperandType.I64, e);
- }
- else /* if (sizeF == 1) */
- {
- MethodInfo info = signed
- ? typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToS64))
- : typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToU64));
- e = context.Call(info, 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 EmitCvtf(ArmEmitterContext context, bool signed, bool scalar)
- {
- OpCodeSimd op = (OpCodeSimd)context.CurrOp;
- Operand res = context.VectorZero();
- int sizeF = op.Size & 1;
- int sizeI = sizeF + 2;
- int fBits = GetFBits(context);
- int elems = !scalar ? op.GetBytesCount() >> sizeI : 1;
- 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);
- MethodInfo info;
- if (context.CurrOp.RegisterSize == RegisterSize.Int32)
- {
- info = value.Type == OperandType.FP32
- ? typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToS32))
- : typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToS32));
- }
- else
- {
- info = value.Type == OperandType.FP32
- ? typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToS64))
- : typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToS64));
- }
- return context.Call(info, 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);
- MethodInfo info;
- if (context.CurrOp.RegisterSize == RegisterSize.Int32)
- {
- info = value.Type == OperandType.FP32
- ? typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToU32))
- : typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToU32));
- }
- else
- {
- info = value.Type == OperandType.FP32
- ? typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToU64))
- : typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToU64));
- }
- return context.Call(info, 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 EmitSse2ScvtfOp(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 EmitSse2UcvtfOp(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 EmitSse41FcvtsOpF(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 EmitSse41FcvtuOpF(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);
- }
- }
- }
|