mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
109 lines
3.7 KiB
C#
109 lines
3.7 KiB
C#
using System;
|
|
using CPUx86 = Cosmos.Assembler.x86;
|
|
using CPU = Cosmos.Assembler.x86;
|
|
using Cosmos.Assembler.x86;
|
|
using Cosmos.Assembler;
|
|
using Cosmos.Assembler.x86.SSE;
|
|
using Cosmos.Assembler.x86.x87;
|
|
using XSharp.Compiler;
|
|
using static XSharp.Compiler.XSRegisters;
|
|
|
|
namespace Cosmos.IL2CPU.X86.IL
|
|
{
|
|
[Cosmos.IL2CPU.OpCode( ILOpCode.Code.Cgt )]
|
|
public class Cgt : ILOp
|
|
{
|
|
public Cgt( 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);
|
|
if( xStackItemSize > 8 )
|
|
{
|
|
//EmitNotImplementedException( Assembler, GetServiceProvider(), "Cgt: StackSizes>8 not supported", CurInstructionLabel, mMethodInfo, mCurrentOffset, NextInstructionLabel );
|
|
throw new NotImplementedException("Cosmos.IL2CPU.x86->IL->Cgt.cs->Error: StackSizes > 8 not supported");
|
|
//return;
|
|
}
|
|
string BaseLabel = GetLabel( aMethod, aOpCode ) + ".";
|
|
string LabelTrue = BaseLabel + "True";
|
|
string LabelFalse = BaseLabel + "False";
|
|
var xNextLabel = GetLabel(aMethod, aOpCode.NextPosition);
|
|
if( xStackItemSize > 4 )
|
|
{
|
|
XS.Set(XSRegisters.ESI, 1);
|
|
// esi = 1
|
|
XS.Xor(XSRegisters.EDI, XSRegisters.EDI);
|
|
// edi = 0
|
|
if (xStackItemIsFloat)
|
|
{
|
|
// value 1
|
|
new FloatLoad { DestinationReg = RegistersEnum.ESP, Size = 64, DestinationDisplacement = 8, DestinationIsIndirect = true };
|
|
// value 2
|
|
XS.FPU.FloatLoad(ESP, destinationIsIndirect: true, size: RegisterSize.Long64);
|
|
XS.FPU.FloatCompareAndSet(ST1);
|
|
// if carry is set, ST(0) < ST(i)
|
|
new ConditionalMove { Condition = ConditionalTestEnum.Below, DestinationReg = RegistersEnum.EDI, SourceReg = RegistersEnum.ESI };
|
|
// pops fpu stack
|
|
XS.FPU.FloatStoreAndPop(ST0);
|
|
XS.FPU.FloatStoreAndPop(ST0);
|
|
XS.Add(XSRegisters.ESP, 16);
|
|
}
|
|
else
|
|
{
|
|
XS.Pop(XSRegisters.EAX);
|
|
XS.Pop(XSRegisters.EDX);
|
|
//value2: EDX:EAX
|
|
XS.Pop(XSRegisters.EBX);
|
|
XS.Pop(XSRegisters.ECX);
|
|
//value1: ECX:EBX
|
|
XS.Compare(XSRegisters.ECX, XSRegisters.EDX);
|
|
XS.Jump(ConditionalTestEnum.GreaterThan, LabelTrue);
|
|
XS.Jump(ConditionalTestEnum.LessThan, LabelFalse);
|
|
XS.Compare(XSRegisters.EBX, XSRegisters.EAX);
|
|
XS.Label(LabelTrue);
|
|
new ConditionalMove { Condition = ConditionalTestEnum.GreaterThan, DestinationReg = RegistersEnum.EDI, SourceReg = RegistersEnum.ESI };
|
|
XS.Label(LabelFalse);
|
|
}
|
|
XS.Push(XSRegisters.EDI);
|
|
/*
|
|
XS.Jump(ConditionalTestEnum.GreaterThan, LabelTrue);
|
|
XS.Label(LabelFalse);
|
|
XS.Push(0);
|
|
XS.Jump(xNextLabel);
|
|
XS.Label(LabelTrue );
|
|
XS.Push(1);*/
|
|
}
|
|
else
|
|
{
|
|
if (xStackItemIsFloat){
|
|
XS.SSE.MoveSS(XMM0, ESP, sourceIsIndirect: true);
|
|
XS.Add(XSRegisters.ESP, 4);
|
|
XS.SSE.MoveSS(XMM1, ESP, sourceIsIndirect: true);
|
|
new CompareSS { DestinationReg = RegistersEnum.XMM1, SourceReg = RegistersEnum.XMM0, pseudoOpcode = (byte)ComparePseudoOpcodes.NotLessThanOrEqualTo };
|
|
XS.SSE2.MoveD(XMM1, EBX);
|
|
XS.And(XSRegisters.EBX, 1);
|
|
XS.Set(ESP, EBX, destinationIsIndirect: true);
|
|
}
|
|
|
|
else{
|
|
XS.Pop(XSRegisters.EAX);
|
|
XS.Compare(EAX, ESP, sourceIsIndirect: true);
|
|
XS.Jump(ConditionalTestEnum.LessThan, LabelTrue);
|
|
XS.Jump(LabelFalse);
|
|
XS.Label(LabelTrue );
|
|
XS.Add(XSRegisters.ESP, 4);
|
|
XS.Push(1);
|
|
XS.Jump(xNextLabel);
|
|
XS.Label(LabelFalse );
|
|
XS.Add(XSRegisters.ESP, 4);
|
|
XS.Push(0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|