Remove CpuId IR instruction (#1227)
This commit is contained in:
parent
1f8e45c2ba
commit
96c7988671
4 changed files with 0 additions and 44 deletions
|
@ -53,7 +53,6 @@ namespace ARMeilleure.CodeGen.X86
|
|||
Add(Instruction.ConvertToFP, GenerateConvertToFP);
|
||||
Add(Instruction.Copy, GenerateCopy);
|
||||
Add(Instruction.CountLeadingZeros, GenerateCountLeadingZeros);
|
||||
Add(Instruction.CpuId, GenerateCpuId);
|
||||
Add(Instruction.Divide, GenerateDivide);
|
||||
Add(Instruction.DivideUI, GenerateDivideUI);
|
||||
Add(Instruction.Fill, GenerateFill);
|
||||
|
@ -765,11 +764,6 @@ namespace ARMeilleure.CodeGen.X86
|
|||
context.Assembler.Xor(dest, Const(operandMask), OperandType.I32);
|
||||
}
|
||||
|
||||
private static void GenerateCpuId(CodeGenContext context, Operation operation)
|
||||
{
|
||||
context.Assembler.Cpuid();
|
||||
}
|
||||
|
||||
private static void GenerateDivide(CodeGenContext context, Operation operation)
|
||||
{
|
||||
Operand dest = operation.Destination;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue