d7044b10a2
* Add CRC32 A32 instructions. * Fix CRC32 instructions. * Add CRC intrinsic and fast path. Loop is currently unrolled, will look into adding temp vars after tests are added. * Begin work on Crc tests * Fix SSE4.2 path for CRC32C, finialize tests. * Remove unused IR path. * Fix spacing between prefix checks. * This should be Src. * PTC Version * OpCodeTable Order * Integer check improvement. Value and Crc can be either 32 or 64 size. * This wasn't necessary... * If size is 3, value type must be I64. * Fix same src+dest handling for non crc intrinsics. * Pre-fix (ha) issue with vex encodings
69 lines
1.9 KiB
C#
69 lines
1.9 KiB
C#
using ARMeilleure.Decoders;
|
|
using ARMeilleure.IntermediateRepresentation;
|
|
using ARMeilleure.Translation;
|
|
|
|
using static ARMeilleure.Instructions.InstEmitHashHelper;
|
|
using static ARMeilleure.Instructions.InstEmitHelper;
|
|
|
|
namespace ARMeilleure.Instructions
|
|
{
|
|
static partial class InstEmit
|
|
{
|
|
private const int ByteSizeLog2 = 0;
|
|
private const int HWordSizeLog2 = 1;
|
|
private const int WordSizeLog2 = 2;
|
|
private const int DWordSizeLog2 = 3;
|
|
|
|
public static void Crc32b(ArmEmitterContext context)
|
|
{
|
|
EmitCrc32Call(context, ByteSizeLog2, false);
|
|
}
|
|
|
|
public static void Crc32h(ArmEmitterContext context)
|
|
{
|
|
EmitCrc32Call(context, HWordSizeLog2, false);
|
|
}
|
|
|
|
public static void Crc32w(ArmEmitterContext context)
|
|
{
|
|
EmitCrc32Call(context, WordSizeLog2, false);
|
|
}
|
|
|
|
public static void Crc32x(ArmEmitterContext context)
|
|
{
|
|
EmitCrc32Call(context, DWordSizeLog2, false);
|
|
}
|
|
|
|
public static void Crc32cb(ArmEmitterContext context)
|
|
{
|
|
EmitCrc32Call(context, ByteSizeLog2, true);
|
|
}
|
|
|
|
public static void Crc32ch(ArmEmitterContext context)
|
|
{
|
|
EmitCrc32Call(context, HWordSizeLog2, true);
|
|
}
|
|
|
|
public static void Crc32cw(ArmEmitterContext context)
|
|
{
|
|
EmitCrc32Call(context, WordSizeLog2, true);
|
|
}
|
|
|
|
public static void Crc32cx(ArmEmitterContext context)
|
|
{
|
|
EmitCrc32Call(context, DWordSizeLog2, true);
|
|
}
|
|
|
|
private static void EmitCrc32Call(ArmEmitterContext context, int size, bool c)
|
|
{
|
|
OpCodeAluBinary op = (OpCodeAluBinary)context.CurrOp;
|
|
|
|
Operand n = GetIntOrZR(context, op.Rn);
|
|
Operand m = GetIntOrZR(context, op.Rm);
|
|
|
|
Operand d = EmitCrc32(context, n, m, size, c);
|
|
|
|
SetIntOrZR(context, op.Rd, d);
|
|
}
|
|
}
|
|
}
|