aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Instruction/AInstEmitHash.cs
diff options
context:
space:
mode:
authorAlex Barney <thealexbarney@gmail.com>2018-10-30 19:43:02 -0600
committergdkchan <gab.dark.100@gmail.com>2018-10-30 22:43:02 -0300
commit9cb57fb4bb3bbae0ae052a5af4a96a49fc5d864d (patch)
tree0c97425aeb311c142bc92a6fcc503cb2c07d4376 /ChocolArm64/Instruction/AInstEmitHash.cs
parent5a87e58183578f5b84ca8d01cbb76aed11820f78 (diff)
Adjust naming conventions for Ryujinx and ChocolArm64 projects (#484)
* Change naming convention for Ryujinx project * Change naming convention for ChocolArm64 project * Fix NaN * Remove unneeded this. from Ryujinx project * Adjust naming from new PRs * Name changes based on feedback * How did this get removed? * Rebasing fix * Change FP enum case * Remove prefix from ChocolArm64 classes - Part 1 * Remove prefix from ChocolArm64 classes - Part 2 * Fix alignment from last commit's renaming * Rename namespaces * Rename stragglers * Fix alignment * Rename OpCode class * Missed a few * Adjust alignment
Diffstat (limited to 'ChocolArm64/Instruction/AInstEmitHash.cs')
-rw-r--r--ChocolArm64/Instruction/AInstEmitHash.cs115
1 files changed, 0 insertions, 115 deletions
diff --git a/ChocolArm64/Instruction/AInstEmitHash.cs b/ChocolArm64/Instruction/AInstEmitHash.cs
deleted file mode 100644
index 69bdbc48..00000000
--- a/ChocolArm64/Instruction/AInstEmitHash.cs
+++ /dev/null
@@ -1,115 +0,0 @@
-using ChocolArm64.Decoder;
-using ChocolArm64.State;
-using ChocolArm64.Translation;
-using System;
-using System.Reflection.Emit;
-using System.Runtime.Intrinsics.X86;
-
-namespace ChocolArm64.Instruction
-{
- static partial class AInstEmit
- {
- public static void Crc32b(AILEmitterCtx Context)
- {
- EmitCrc32(Context, nameof(ASoftFallback.Crc32b));
- }
-
- public static void Crc32h(AILEmitterCtx Context)
- {
- EmitCrc32(Context, nameof(ASoftFallback.Crc32h));
- }
-
- public static void Crc32w(AILEmitterCtx Context)
- {
- EmitCrc32(Context, nameof(ASoftFallback.Crc32w));
- }
-
- public static void Crc32x(AILEmitterCtx Context)
- {
- EmitCrc32(Context, nameof(ASoftFallback.Crc32x));
- }
-
- public static void Crc32cb(AILEmitterCtx Context)
- {
- if (AOptimizations.UseSse42)
- {
- EmitSse42Crc32(Context, typeof(uint), typeof(byte));
- }
- else
- {
- EmitCrc32(Context, nameof(ASoftFallback.Crc32cb));
- }
- }
-
- public static void Crc32ch(AILEmitterCtx Context)
- {
- if (AOptimizations.UseSse42)
- {
- EmitSse42Crc32(Context, typeof(uint), typeof(ushort));
- }
- else
- {
- EmitCrc32(Context, nameof(ASoftFallback.Crc32ch));
- }
- }
-
- public static void Crc32cw(AILEmitterCtx Context)
- {
- if (AOptimizations.UseSse42)
- {
- EmitSse42Crc32(Context, typeof(uint), typeof(uint));
- }
- else
- {
- EmitCrc32(Context, nameof(ASoftFallback.Crc32cw));
- }
- }
-
- public static void Crc32cx(AILEmitterCtx Context)
- {
- if (AOptimizations.UseSse42)
- {
- EmitSse42Crc32(Context, typeof(ulong), typeof(ulong));
- }
- else
- {
- EmitCrc32(Context, nameof(ASoftFallback.Crc32cx));
- }
- }
-
- private static void EmitSse42Crc32(AILEmitterCtx Context, Type TCrc, Type TData)
- {
- AOpCodeAluRs Op = (AOpCodeAluRs)Context.CurrOp;
-
- Context.EmitLdintzr(Op.Rn);
- Context.EmitLdintzr(Op.Rm);
-
- Context.EmitCall(typeof(Sse42).GetMethod(nameof(Sse42.Crc32), new Type[] { TCrc, TData }));
-
- Context.EmitStintzr(Op.Rd);
- }
-
- private static void EmitCrc32(AILEmitterCtx Context, string Name)
- {
- AOpCodeAluRs Op = (AOpCodeAluRs)Context.CurrOp;
-
- Context.EmitLdintzr(Op.Rn);
-
- if (Op.RegisterSize != ARegisterSize.Int32)
- {
- Context.Emit(OpCodes.Conv_U4);
- }
-
- Context.EmitLdintzr(Op.Rm);
-
- ASoftFallback.EmitCall(Context, Name);
-
- if (Op.RegisterSize != ARegisterSize.Int32)
- {
- Context.Emit(OpCodes.Conv_U8);
- }
-
- Context.EmitStintzr(Op.Rd);
- }
- }
-}