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, 0 insertions, 54 deletions
diff --git a/ChocolArm64/Instructions/InstEmitSimdCrypto.cs b/ChocolArm64/Instructions/InstEmitSimdCrypto.cs
deleted file mode 100644
index 33c81aab..00000000
--- a/ChocolArm64/Instructions/InstEmitSimdCrypto.cs
+++ /dev/null
@@ -1,54 +0,0 @@
-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);
- }
- }
-}