Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/IL/Ldflda.cs
mterwoord_cp fbee5696df
2009-09-19 08:27:33 +00:00

102 lines
3.7 KiB
C#

using System;
using System.Linq;
using CPUx86 = Cosmos.IL2CPU.X86;
namespace Cosmos.IL2CPU.X86.IL
{
[Cosmos.IL2CPU.OpCode( ILOpCode.Code.Ldflda )]
public class Ldflda : ILOp
{
public Ldflda( Cosmos.IL2CPU.Assembler aAsmblr )
: base( aAsmblr )
{
}
public override void Execute( MethodInfo aMethod, ILOpCode aOpCode )
{
var xOpCode = (ILOpCodes.OpField)aOpCode;
DoExecute(Assembler, aMethod, xOpCode.Value.DeclaringType, xOpCode.Value.GetFullName());
}
public static void DoExecute(Assembler Assembler, MethodInfo aMethod, Type aDeclaringType, string aField) {
var xFields = GetFieldsInfo(aDeclaringType);
var xFieldInfo = (from item in xFields
where item.Id == aField
select item).Single();
int xExtraOffset = 0;
var xType = aMethod.MethodBase.DeclaringType;
bool xNeedsGC = aDeclaringType.IsClass && !aDeclaringType.IsValueType;
if (xNeedsGC) {
xExtraOffset = 12;
}
uint xOffset = 0;
var xActualOffset = xFieldInfo.Offset + xExtraOffset;
var xSize = xFieldInfo.Size;
new CPUx86.Pop { DestinationReg = CPUx86.Registers.EAX };
new CPUx86.Add { DestinationReg = CPUx86.Registers.EAX, SourceValue = (uint)(xActualOffset) };
Assembler.Stack.Pop();
Assembler.Stack.Push(new StackContents.Item(4, xType));
#warning TODO: Implement Plugs
//if( aDerefExternalAddress && aField.IsExternalField )
//{
// new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX, DestinationIsIndirect = true };
//}
//else
{
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
}
}
// using System;
// using System.Collections.Generic;
// using System.IO;
//
//
// using CPUx86 = Cosmos.IL2CPU.X86;
// using System.Reflection;
// using Indy.IL2CPU.Compiler;
//
// namespace Indy.IL2CPU.IL.X86 {
// [OpCode(OpCodeEnum.Ldflda)]
// public class Ldflda: Op {
// private Type mType;
// private TypeInformation mTypeInfo;
// private TypeInformation.Field mField;
// private string mFieldId;
// //public static void ScanOp(ILReader aReader, MethodInformation aMethodInfo, SortedList<string, object> aMethodData)
// //{
// // FieldInfo xField = aReader.OperandValueField;
// // if (xField == null)
// // {
// // throw new Exception("Field not found!");
// // }
// // Engine.RegisterType(xField.DeclaringType);
// // Engine.RegisterType(xField.FieldType);
// //}
//
// public Ldflda(ILReader aReader, MethodInformation aMethodInfo)
// : base(aReader, aMethodInfo) {
// FieldInfo xField = aReader.OperandValueField;
// if (xField == null) {
// throw new Exception("Field not found!");
// }
// mFieldId = xField.GetFullName();
// mType = xField.DeclaringType;
// }
//
// public override void DoAssemble() {
// mTypeInfo = GetService<IMetaDataInfoService>().GetTypeInfo(mType);
// mField = mTypeInfo.Fields[mFieldId];
// Ldflda(Assembler, mTypeInfo, mField);
// }
// }
// }
}
}