aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Instruction/AInstEmitSimdHash.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Instruction/AInstEmitSimdHash.cs')
-rw-r--r--ChocolArm64/Instruction/AInstEmitSimdHash.cs83
1 files changed, 81 insertions, 2 deletions
diff --git a/ChocolArm64/Instruction/AInstEmitSimdHash.cs b/ChocolArm64/Instruction/AInstEmitSimdHash.cs
index 6b642acb..5a59e779 100644
--- a/ChocolArm64/Instruction/AInstEmitSimdHash.cs
+++ b/ChocolArm64/Instruction/AInstEmitSimdHash.cs
@@ -1,10 +1,89 @@
using ChocolArm64.Decoder;
using ChocolArm64.Translation;
+using static ChocolArm64.Instruction.AInstEmitSimdHelper;
+
namespace ChocolArm64.Instruction
{
static partial class AInstEmit
{
+#region "Sha1"
+ public static void Sha1c_V(AILEmitterCtx Context)
+ {
+ AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp;
+
+ Context.EmitLdvec(Op.Rd);
+ EmitVectorExtractZx(Context, Op.Rn, 0, 2);
+ Context.EmitLdvec(Op.Rm);
+
+ ASoftFallback.EmitCall(Context, nameof(ASoftFallback.HashChoose));
+
+ Context.EmitStvec(Op.Rd);
+ }
+
+ public static void Sha1h_V(AILEmitterCtx Context)
+ {
+ AOpCodeSimd Op = (AOpCodeSimd)Context.CurrOp;
+
+ EmitVectorExtractZx(Context, Op.Rn, 0, 2);
+
+ ASoftFallback.EmitCall(Context, nameof(ASoftFallback.FixedRotate));
+
+ EmitScalarSet(Context, Op.Rd, 2);
+ }
+
+ public static void Sha1m_V(AILEmitterCtx Context)
+ {
+ AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp;
+
+ Context.EmitLdvec(Op.Rd);
+ EmitVectorExtractZx(Context, Op.Rn, 0, 2);
+ Context.EmitLdvec(Op.Rm);
+
+ ASoftFallback.EmitCall(Context, nameof(ASoftFallback.HashMajority));
+
+ Context.EmitStvec(Op.Rd);
+ }
+
+ public static void Sha1p_V(AILEmitterCtx Context)
+ {
+ AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp;
+
+ Context.EmitLdvec(Op.Rd);
+ EmitVectorExtractZx(Context, Op.Rn, 0, 2);
+ Context.EmitLdvec(Op.Rm);
+
+ ASoftFallback.EmitCall(Context, nameof(ASoftFallback.HashParity));
+
+ Context.EmitStvec(Op.Rd);
+ }
+
+ public static void Sha1su0_V(AILEmitterCtx Context)
+ {
+ AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp;
+
+ Context.EmitLdvec(Op.Rd);
+ Context.EmitLdvec(Op.Rn);
+ Context.EmitLdvec(Op.Rm);
+
+ ASoftFallback.EmitCall(Context, nameof(ASoftFallback.Sha1SchedulePart1));
+
+ Context.EmitStvec(Op.Rd);
+ }
+
+ public static void Sha1su1_V(AILEmitterCtx Context)
+ {
+ AOpCodeSimd Op = (AOpCodeSimd)Context.CurrOp;
+
+ Context.EmitLdvec(Op.Rd);
+ Context.EmitLdvec(Op.Rn);
+
+ ASoftFallback.EmitCall(Context, nameof(ASoftFallback.Sha1SchedulePart2));
+
+ Context.EmitStvec(Op.Rd);
+ }
+#endregion
+
#region "Sha256"
public static void Sha256h_V(AILEmitterCtx Context)
{
@@ -39,7 +118,7 @@ namespace ChocolArm64.Instruction
Context.EmitLdvec(Op.Rd);
Context.EmitLdvec(Op.Rn);
- ASoftFallback.EmitCall(Context, nameof(ASoftFallback.SchedulePart1));
+ ASoftFallback.EmitCall(Context, nameof(ASoftFallback.Sha256SchedulePart1));
Context.EmitStvec(Op.Rd);
}
@@ -52,7 +131,7 @@ namespace ChocolArm64.Instruction
Context.EmitLdvec(Op.Rn);
Context.EmitLdvec(Op.Rm);
- ASoftFallback.EmitCall(Context, nameof(ASoftFallback.SchedulePart2));
+ ASoftFallback.EmitCall(Context, nameof(ASoftFallback.Sha256SchedulePart2));
Context.EmitStvec(Op.Rd);
}