diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-30 16:30:23 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-30 16:30:23 -0300 |
| commit | 19b83445683cf9cfcf9e3d27596ab030eb08353c (patch) | |
| tree | fc523f2bac9dfef080db688f6b6b3d0a688d1178 | |
| parent | ba43af57657aa045032f6be4e2faba10d35436ae (diff) | |
Add UABD instruction
| -rw-r--r-- | ChocolArm64/AOpCodeTable.cs | 1 | ||||
| -rw-r--r-- | ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs | 21 |
2 files changed, 15 insertions, 7 deletions
diff --git a/ChocolArm64/AOpCodeTable.cs b/ChocolArm64/AOpCodeTable.cs index eefa94d1..c2929d9b 100644 --- a/ChocolArm64/AOpCodeTable.cs +++ b/ChocolArm64/AOpCodeTable.cs @@ -285,6 +285,7 @@ namespace ChocolArm64 Set("01111110xx1xxxxx100001xxxxxxxxxx", AInstEmit.Sub_S, typeof(AOpCodeSimdReg)); Set("0>101110<<1xxxxx100001xxxxxxxxxx", AInstEmit.Sub_V, typeof(AOpCodeSimdReg)); Set("0x001110000xxxxx0xx000xxxxxxxxxx", AInstEmit.Tbl_V, typeof(AOpCodeSimdTbl)); + Set("0x101110<<1xxxxx011101xxxxxxxxxx", AInstEmit.Uabd_V, typeof(AOpCodeSimdReg)); Set("0x101110<<1xxxxx011100xxxxxxxxxx", AInstEmit.Uabdl_V, typeof(AOpCodeSimdReg)); Set("0x101110<<1xxxxx000000xxxxxxxxxx", AInstEmit.Uaddl_V, typeof(AOpCodeSimdReg)); Set("001011100x110000001110xxxxxxxxxx", AInstEmit.Uaddlv_V, typeof(AOpCodeSimd)); diff --git a/ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs b/ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs index 84a5babf..1d40ee89 100644 --- a/ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs +++ b/ChocolArm64/Instruction/AInstEmitSimdArithmetic.cs @@ -546,18 +546,25 @@ namespace ChocolArm64.Instruction EmitVectorBinaryOpZx(Context, () => Context.Emit(OpCodes.Sub)); } + public static void Uabd_V(AILEmitterCtx Context) + { + EmitVectorTernaryOpZx(Context, () => EmitAbd(Context)); + } + public static void Uabdl_V(AILEmitterCtx Context) { - EmitVectorWidenRnRmTernaryOpZx(Context, () => - { - Context.Emit(OpCodes.Sub); + EmitVectorWidenRnRmTernaryOpZx(Context, () => EmitAbd(Context)); + } - Type[] Types = new Type[] { typeof(long) }; + private static void EmitAbd(AILEmitterCtx Context) + { + Context.Emit(OpCodes.Sub); - Context.EmitCall(typeof(Math).GetMethod(nameof(Math.Abs), Types)); + Type[] Types = new Type[] { typeof(long) }; - Context.Emit(OpCodes.Add); - }); + Context.EmitCall(typeof(Math).GetMethod(nameof(Math.Abs), Types)); + + Context.Emit(OpCodes.Add); } public static void Uaddl_V(AILEmitterCtx Context) |
