mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-13 03:31:22 +00:00
111 lines
5.7 KiB
C#
111 lines
5.7 KiB
C#
using System;
|
|
using CPUx86 = Cosmos.Assembler.x86;
|
|
using CPU = Cosmos.Assembler.x86;
|
|
using Cosmos.Assembler;
|
|
using Cosmos.Assembler.x86;
|
|
using Cosmos.Assembler.x86.x87;
|
|
using XSharp.Compiler;
|
|
|
|
namespace Cosmos.IL2CPU.X86.IL {
|
|
[Cosmos.IL2CPU.OpCode(ILOpCode.Code.Ceq)]
|
|
public class Ceq : ILOp {
|
|
public Ceq(Cosmos.Assembler.Assembler aAsmblr)
|
|
: base(aAsmblr) {
|
|
}
|
|
|
|
public override void Execute(MethodInfo aMethod, ILOpCode aOpCode)
|
|
{
|
|
var xStackItem = aOpCode.StackPopTypes[0];
|
|
var xStackItemSize = SizeOfType(xStackItem);
|
|
var xStackItemIsFloat = TypeIsFloat(xStackItem);
|
|
var xStackItem2 = aOpCode.StackPopTypes[1];
|
|
var xStackItem2Size = SizeOfType(xStackItem2);
|
|
var xStackItem2IsFloat = TypeIsFloat(xStackItem2);
|
|
var xSize = Math.Max(xStackItemSize, xStackItem2Size);
|
|
|
|
var xNextLabel = GetLabel(aMethod, aOpCode.NextPosition);
|
|
|
|
if (xSize > 8)
|
|
{
|
|
throw new Exception("Cosmos.IL2CPU.x86->IL->Ceq.cs->Error: StackSizes > 8 not supported");
|
|
}
|
|
else if (xSize <= 4)
|
|
{
|
|
if (xStackItemIsFloat)
|
|
{
|
|
new CPUx86.SSE.MoveSS { DestinationReg = CPUx86.RegistersEnum.XMM0, SourceReg = CPUx86.RegistersEnum.ESP, SourceIsIndirect = true };
|
|
new CPUx86.Add { DestinationReg = CPUx86.RegistersEnum.ESP, SourceValue = 4 };
|
|
new CPUx86.SSE.MoveSS { DestinationReg = CPUx86.RegistersEnum.XMM1, SourceReg = CPUx86.RegistersEnum.ESP, SourceIsIndirect = true };
|
|
new CPUx86.SSE.CompareSS { DestinationReg = CPUx86.RegistersEnum.XMM1, SourceReg = CPUx86.RegistersEnum.XMM0, pseudoOpcode = (byte)CPUx86.SSE.ComparePseudoOpcodes.Equal };
|
|
new CPUx86.MoveD { DestinationReg = CPUx86.RegistersEnum.EBX, SourceReg = CPUx86.RegistersEnum.XMM1 };
|
|
new CPUx86.And { DestinationReg = CPUx86.RegistersEnum.EBX, SourceValue = 1 };
|
|
new CPUx86.Mov { SourceReg = CPUx86.RegistersEnum.EBX, DestinationReg = CPUx86.RegistersEnum.ESP, DestinationIsIndirect = true };
|
|
}
|
|
else
|
|
{
|
|
new CPUx86.Pop { DestinationReg = CPUx86.RegistersEnum.EAX };
|
|
new CPUx86.Compare { DestinationReg = CPUx86.RegistersEnum.EAX, SourceReg = CPUx86.RegistersEnum.ESP, SourceIsIndirect = true };
|
|
new CPUx86.ConditionalJump { Condition = CPUx86.ConditionalTestEnum.Equal, DestinationLabel = Label.LastFullLabel + ".True" };
|
|
new CPUx86.Jump { DestinationLabel = Label.LastFullLabel + ".False" };
|
|
new Label(".True");
|
|
new CPUx86.Add { DestinationReg = CPUx86.RegistersEnum.ESP, SourceValue = 4 };
|
|
new CPUx86.Push { DestinationValue = 1 };
|
|
new CPUx86.Jump { DestinationLabel = xNextLabel };
|
|
new Label(".False");
|
|
new CPUx86.Add { DestinationReg = CPUx86.RegistersEnum.ESP, SourceValue = 4 };
|
|
new CPUx86.Push { DestinationValue = 0 };
|
|
new CPUx86.Jump { DestinationLabel = xNextLabel };
|
|
}
|
|
}
|
|
else if (xSize > 4)
|
|
{
|
|
if (xStackItemIsFloat)
|
|
{
|
|
new CPUx86.Mov { DestinationReg = CPUx86.RegistersEnum.ESI, SourceValue = 1 };
|
|
// esi = 1
|
|
XS.Xor(XSRegisters.OldToNewRegister(RegistersEnum.EDI), XSRegisters.OldToNewRegister(RegistersEnum.EDI));
|
|
// edi = 0
|
|
|
|
// value 1
|
|
new FloatLoad { DestinationReg = RegistersEnum.ESP, Size = 64, DestinationDisplacement = 8, DestinationIsIndirect = true };
|
|
// value 2
|
|
new FloatLoad { DestinationReg = RegistersEnum.ESP, Size = 64, DestinationIsIndirect = true };
|
|
new FloatCompareAndSet { DestinationReg = RegistersEnum.ST1 };
|
|
// if zero is set, ST(0) == ST(i)
|
|
new ConditionalMove { Condition = ConditionalTestEnum.Equal, DestinationReg = RegistersEnum.EDI, SourceReg = RegistersEnum.ESI };
|
|
// pops fpu stack
|
|
new FloatStoreAndPop { DestinationReg = RegistersEnum.ST0 };
|
|
new FloatStoreAndPop { DestinationReg = RegistersEnum.ST0 };
|
|
new CPUx86.Add { DestinationReg = RegistersEnum.ESP, SourceValue = 16 };
|
|
new Push { DestinationReg = RegistersEnum.EDI };
|
|
}
|
|
else
|
|
{
|
|
new CPUx86.Pop { DestinationReg = RegistersEnum.EAX };
|
|
new Compare { DestinationReg = RegistersEnum.EAX, SourceReg = RegistersEnum.ESP, SourceIsIndirect = true, SourceDisplacement = 4 };
|
|
new CPUx86.Pop { DestinationReg = RegistersEnum.EAX };
|
|
new ConditionalJump { Condition = ConditionalTestEnum.NotEqual, DestinationLabel = Label.LastFullLabel + ".False" };
|
|
new CPUx86.Xor { DestinationReg = RegistersEnum.EAX, SourceReg = RegistersEnum.ESP, SourceIsIndirect = true, SourceDisplacement = 4 };
|
|
new ConditionalJump { Condition = ConditionalTestEnum.NotZero, DestinationLabel = Label.LastFullLabel + ".False" };
|
|
|
|
//they are equal, eax == 0
|
|
new CPUx86.Add { DestinationReg = RegistersEnum.ESP, SourceValue = 8 };
|
|
new CPUx86.Add { DestinationReg = RegistersEnum.EAX, SourceValue = 1 };
|
|
new Push { DestinationReg = RegistersEnum.EAX };
|
|
new Jump { DestinationLabel = xNextLabel };
|
|
new Label(Label.LastFullLabel + ".False");
|
|
//eax = 0
|
|
new CPUx86.Add { DestinationReg = RegistersEnum.ESP, SourceValue = 8 };
|
|
XS.Xor(XSRegisters.OldToNewRegister(RegistersEnum.EAX), XSRegisters.OldToNewRegister(RegistersEnum.EAX));
|
|
new CPUx86.Push { DestinationReg = CPUx86.RegistersEnum.EAX };
|
|
new CPUx86.Jump { DestinationLabel = xNextLabel };
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Cosmos.IL2CPU.x86->IL->Ceq.cs->Error: Case not handled!");
|
|
}
|
|
}
|
|
}
|
|
}
|