diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-02 20:03:28 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-02 20:03:28 -0300 |
| commit | 829b1b1cc0a7dced1946500c1f27b4a7277ddb26 (patch) | |
| tree | 7e2a63127147ff1e2031be3d9ec45628229b8a27 /ChocolArm64/Instruction | |
| parent | f39a864050589ac7e757a9d72b46ac693125b382 (diff) | |
Add REV64 (vector) instruction
Diffstat (limited to 'ChocolArm64/Instruction')
| -rw-r--r-- | ChocolArm64/Instruction/AInstEmitSimdLogical.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ChocolArm64/Instruction/AInstEmitSimdLogical.cs b/ChocolArm64/Instruction/AInstEmitSimdLogical.cs index ea4b17b3..f4cc66cf 100644 --- a/ChocolArm64/Instruction/AInstEmitSimdLogical.cs +++ b/ChocolArm64/Instruction/AInstEmitSimdLogical.cs @@ -1,4 +1,5 @@ using ChocolArm64.Translation; +using System; using System.Reflection.Emit; using static ChocolArm64.Instruction.AInstEmitSimdHelper; @@ -65,5 +66,15 @@ namespace ChocolArm64.Instruction { EmitVectorImmBinaryOp(Context, () => Context.Emit(OpCodes.Or)); } + + public static void Rev64_V(AILEmitterCtx Context) + { + Action Emit = () => + { + ASoftFallback.EmitCall(Context, nameof(ASoftFallback.ReverseBits64)); + }; + + EmitVectorUnaryOpZx(Context, Emit); + } } }
\ No newline at end of file |
