aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Instructions/InstEmitSimdCrypto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Instructions/InstEmitSimdCrypto.cs')
-rw-r--r--ChocolArm64/Instructions/InstEmitSimdCrypto.cs54
1 files changed, 54 insertions, 0 deletions
diff --git a/ChocolArm64/Instructions/InstEmitSimdCrypto.cs b/ChocolArm64/Instructions/InstEmitSimdCrypto.cs
new file mode 100644
index 00000000..33c81aab
--- /dev/null
+++ b/ChocolArm64/Instructions/InstEmitSimdCrypto.cs
@@ -0,0 +1,54 @@
+using ChocolArm64.Decoders;
+using ChocolArm64.Translation;
+
+namespace ChocolArm64.Instructions
+{
+ static partial class InstEmit
+ {
+ public static void Aesd_V(ILEmitterCtx context)
+ {
+ OpCodeSimd64 op = (OpCodeSimd64)context.CurrOp;
+
+ context.EmitLdvec(op.Rd);
+ context.EmitLdvec(op.Rn);
+
+ SoftFallback.EmitCall(context, nameof(SoftFallback.Decrypt));
+
+ context.EmitStvec(op.Rd);
+ }
+
+ public static void Aese_V(ILEmitterCtx context)
+ {
+ OpCodeSimd64 op = (OpCodeSimd64)context.CurrOp;
+
+ context.EmitLdvec(op.Rd);
+ context.EmitLdvec(op.Rn);
+
+ SoftFallback.EmitCall(context, nameof(SoftFallback.Encrypt));
+
+ context.EmitStvec(op.Rd);
+ }
+
+ public static void Aesimc_V(ILEmitterCtx context)
+ {
+ OpCodeSimd64 op = (OpCodeSimd64)context.CurrOp;
+
+ context.EmitLdvec(op.Rn);
+
+ SoftFallback.EmitCall(context, nameof(SoftFallback.InverseMixColumns));
+
+ context.EmitStvec(op.Rd);
+ }
+
+ public static void Aesmc_V(ILEmitterCtx context)
+ {
+ OpCodeSimd64 op = (OpCodeSimd64)context.CurrOp;
+
+ context.EmitLdvec(op.Rn);
+
+ SoftFallback.EmitCall(context, nameof(SoftFallback.MixColumns));
+
+ context.EmitStvec(op.Rd);
+ }
+ }
+}