mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
33 lines
No EOL
1.2 KiB
C#
33 lines
No EOL
1.2 KiB
C#
using System;
|
|
using CPUx86 = Cosmos.Assembler.x86;
|
|
using Cosmos.Assembler;
|
|
using System.Reflection;
|
|
using System.Linq;
|
|
|
|
namespace Cosmos.IL2CPU.X86.IL
|
|
{
|
|
[Cosmos.IL2CPU.OpCode( ILOpCode.Code.Ldsflda )]
|
|
public class Ldsflda : ILOp
|
|
{
|
|
public Ldsflda( Cosmos.Assembler.Assembler aAsmblr )
|
|
: base( aAsmblr )
|
|
{
|
|
}
|
|
|
|
public override void Execute( MethodInfo aMethod, ILOpCode aOpCode )
|
|
{
|
|
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 = LabelName.Get(xCctor) };
|
|
ILOp.EmitExceptionLogic(Assembler, aMethod, aOpCode, true, null, ".AfterCCTorExceptionCheck");
|
|
new Label(".AfterCCTorExceptionCheck");
|
|
}
|
|
string xDataName =DataMember.GetStaticFieldName(xField);
|
|
new CPUx86.Push { DestinationRef = Cosmos.Assembler.ElementReference.New( xDataName ) };
|
|
}
|
|
}
|
|
} |