Cosmos/source/Indy.IL2CPU.IL.X86/Ldflda.cs
mterwoord_cp 739904bbdb
2008-02-07 09:43:42 +00:00

29 lines
No EOL
739 B
C#

using System;
using System.IO;
using CPUx86 = Indy.IL2CPU.Assembler.X86;
using System.Reflection;
namespace Indy.IL2CPU.IL.X86 {
[OpCode(OpCodeEnum.Ldflda)]
public class Ldflda: Op {
private TypeInformation mType;
private TypeInformation.Field mField;
public Ldflda(ILReader aReader, MethodInformation aMethodInfo)
: base(aReader, aMethodInfo) {
FieldInfo xField = aReader.OperandValueField;
if (xField == null) {
throw new Exception("Field not found!");
}
string xFieldId = xField.GetFullName();
mType = Engine.GetTypeInfo(xField.DeclaringType);
mField = mType.Fields[xFieldId];
}
public override void DoAssemble() {
Ldflda(Assembler, mType, mField);
}
}
}