Cosmos/source/Cosmos.IL2CPU/IL/Stobj.cs
José Pedro eff94b0f11 Improved code organization.
Added method tests.
Implemented Rethrow opcode.
2017-01-27 17:01:51 +00:00

55 lines
2.1 KiB
C#

using System;
//using CPUx86 = Cosmos.Assembler.x86;
using XSharp.Compiler;
using static XSharp.Compiler.XSRegisters;
namespace Cosmos.IL2CPU.X86.IL
{
[Cosmos.IL2CPU.OpCode( ILOpCode.Code.Stobj )]
public class Stobj : ILOp
{
public Stobj( Cosmos.Assembler.Assembler aAsmblr )
: base( aAsmblr )
{
}
public override void Execute( MethodInfo aMethod, ILOpCode aOpCode )
{
var xFieldSize = SizeOfType(aOpCode.StackPopTypes[0]);
var xRoundedSize = Align(xFieldSize, 4);
DoNullReferenceCheck(Assembler, DebugEnabled, (int)xRoundedSize);
XS.Set(ECX, ESP, sourceDisplacement: checked((int)xRoundedSize));
for( int i = 0; i < ( xFieldSize / 4 ); i++ )
{
XS.Pop(EAX);
XS.Set(ECX, EAX, destinationDisplacement: i * 4);
}
switch( xFieldSize % 4 )
{
case 0:
{
break;
}
case 1:
{
XS.Pop(EAX);
XS.Set(ECX, AL, destinationDisplacement: checked((int)(xFieldSize / 4) * 4));
//new CPUx86.Mov { DestinationReg = ECX, DestinationIsIndirect = true, DestinationDisplacement = checked((int)( xFieldSize / 4 ) * 4 ), SourceReg = AL };
break;
}
case 2:
{
XS.Pop(EAX);
XS.Set(ECX, AX, destinationDisplacement: checked((int)(xFieldSize / 4) * 4));
//new CPUx86.Mov { DestinationReg = ECX, DestinationIsIndirect = true, DestinationDisplacement = checked((int)( xFieldSize / 4 ) * 4 ), SourceReg = AX };
break;
}
default:
throw new Exception( "Remainder size " + ( xFieldSize % 4 ) + " not supported!" );
}
XS.Add(ESP, 4);
}
}
}