mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 04:40:14 +00:00
change StackContents to uint, able to use now mnemoric with 3 operands, shl IL near 64 bit (unknown error), add asm line to nasm error
113 lines
No EOL
5.2 KiB
C#
113 lines
No EOL
5.2 KiB
C#
using System;
|
|
using Cosmos.Compiler.Assembler;
|
|
using Cosmos.IL2CPU.ILOpCodes;
|
|
using CPUx86 = Cosmos.Compiler.Assembler.X86;
|
|
using System.Reflection;
|
|
using System.Linq;
|
|
|
|
namespace Cosmos.IL2CPU.X86.IL
|
|
{
|
|
[Cosmos.IL2CPU.OpCode( ILOpCode.Code.Ldsfld )]
|
|
public class Ldsfld : ILOp
|
|
{
|
|
public Ldsfld( Cosmos.Compiler.Assembler.Assembler aAsmblr )
|
|
: base( aAsmblr )
|
|
{
|
|
}
|
|
|
|
public override void Execute( MethodInfo aMethod, ILOpCode aOpCode )
|
|
{
|
|
|
|
var xType = aMethod.MethodBase.DeclaringType;
|
|
var xOpCode = ( ILOpCodes.OpField )aOpCode;
|
|
System.Reflection.FieldInfo xField = xOpCode.Value;
|
|
|
|
// call cctor:
|
|
var xCctor = (xField.DeclaringType.GetConstructors(BindingFlags.Static | BindingFlags.NonPublic) ?? new ConstructorInfo[0]).SingleOrDefault();
|
|
if (xCctor != null)
|
|
{
|
|
new CPUx86.Call { DestinationLabel = MethodInfoLabelGenerator.GenerateLabelName(xCctor) };
|
|
ILOp.EmitExceptionLogic(Assembler, aMethod, aOpCode, true, null, ".AfterCCTorExceptionCheck");
|
|
new Label(".AfterCCTorExceptionCheck");
|
|
}
|
|
|
|
//Assembler.Stack.Pop();
|
|
int aExtraOffset;// = 0;
|
|
bool xNeedsGC = xField.FieldType.IsClass && !xField.FieldType.IsValueType;
|
|
var xSize = SizeOfType( xField.FieldType );
|
|
if( xNeedsGC )
|
|
{
|
|
aExtraOffset = 12;
|
|
}
|
|
|
|
string xDataName = DataMember.GetStaticFieldName(xField);
|
|
if( xSize >= 4 )
|
|
{
|
|
for( int i = 1; i <= ( xSize / 4 ); i++ )
|
|
{
|
|
// Pop("eax");
|
|
// Move(Assembler, "dword [" + mDataName + " + 0x" + (i * 4).ToString("X") + "]", "eax");
|
|
new CPUx86.Push { DestinationRef = ElementReference.New( xDataName ), DestinationIsIndirect = true, DestinationDisplacement = ( int )( xSize - ( i * 4 ) ) };
|
|
}
|
|
switch( xSize % 4 )
|
|
{
|
|
case 1:
|
|
{
|
|
new CPUx86.Move { DestinationReg = CPUx86.Registers.EAX, SourceValue = 0 };
|
|
new CPUx86.Move { DestinationReg = CPUx86.Registers.AL, SourceRef = ElementReference.New( xDataName ), SourceIsIndirect = true };
|
|
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
|
|
break;
|
|
}
|
|
case 2:
|
|
{
|
|
new CPUx86.Move { DestinationReg = CPUx86.Registers.EAX, SourceValue = 0 };
|
|
new CPUx86.Move { DestinationReg = CPUx86.Registers.AX, SourceRef = ElementReference.New( xDataName ), SourceIsIndirect = true };
|
|
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
|
|
break;
|
|
}
|
|
case 0:
|
|
{
|
|
break;
|
|
}
|
|
default:
|
|
//EmitNotImplementedException( Assembler, GetServiceProvider(), "Ldsfld: Remainder size " + ( xSize % 4 ) + " not supported!", mCurLabel, mMethodInformation, mCurOffset, mNextLabel );
|
|
throw new NotImplementedException();
|
|
//break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
switch( xSize )
|
|
{
|
|
case 1:
|
|
{
|
|
new CPUx86.Move { DestinationReg = CPUx86.Registers.EAX, SourceValue = 0 };
|
|
new CPUx86.Move { DestinationReg = CPUx86.Registers.AL, SourceRef = ElementReference.New( xDataName ), SourceIsIndirect = true };
|
|
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
|
|
break;
|
|
}
|
|
case 2:
|
|
{
|
|
new CPUx86.Move { DestinationReg = CPUx86.Registers.EAX, SourceValue = 0 };
|
|
new CPUx86.Move { DestinationReg = CPUx86.Registers.AX, SourceRef = ElementReference.New( xDataName ), SourceIsIndirect = true };
|
|
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
|
|
break;
|
|
}
|
|
case 0:
|
|
{
|
|
break;
|
|
}
|
|
default:
|
|
//EmitNotImplementedException( Assembler, GetServiceProvider(), "Ldsfld: Remainder size " + ( xSize % 4 ) + " not supported!", mCurLabel, mMethodInformation, mCurOffset, mNextLabel );
|
|
throw new NotImplementedException();
|
|
//break;
|
|
}
|
|
}
|
|
#if DOTNETCOMPATIBLE
|
|
Assembler.Stack.Push( new StackContents.Item(ILOp.Align(xSize, 4), null ) );
|
|
#else
|
|
Assembler.Stack.Push( new StackContents.Item( xSize, null ) );
|
|
#endif
|
|
}
|
|
}
|
|
} |