Cosmos/source2/IL2CPU/Cosmos.IL2CPU.X86/IL/Ldloc.cs
kudzu_cp 1edb546842
2011-02-24 14:50:10 +00:00

65 lines
No EOL
2.2 KiB
C#

using System;
using Cosmos.IL2CPU.ILOpCodes;
using CPUx86 = Cosmos.Compiler.Assembler.X86;
using Cosmos.Compiler.Assembler;
namespace Cosmos.IL2CPU.X86.IL
{
[Cosmos.IL2CPU.OpCode(ILOpCode.Code.Ldloc)]
public class Ldloc : ILOp
{
public Ldloc(Cosmos.Compiler.Assembler.Assembler aAsmblr)
: base(aAsmblr)
{
}
public override void Execute(MethodInfo aMethod, ILOpCode aOpCode)
{
var xOpVar = (OpVar)aOpCode;
var xVar = aMethod.MethodBase.GetMethodBody().LocalVariables[xOpVar.Value];
var xStackCount = GetStackCountForLocal(aMethod, xVar);
var xEBPOffset = ((int)GetEBPOffsetForLocal(aMethod, xOpVar.Value));
var xSize = SizeOfType(xVar.LocalType);
new Comment("EBPOffset = " + xEBPOffset);
if (xStackCount > 1)
{
for (int i = 0; i < xStackCount; i++)
{
new CPUx86.Move { DestinationReg = CPUx86.Registers.EAX, SourceReg = CPUx86.Registers.EBP, SourceIsIndirect = true, SourceDisplacement = (int)(0 - (xEBPOffset + (i * 4))) };
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
}
}
else
{
switch (xSize)
{
case 1:
{
new CPUx86.Xor { DestinationReg = CPUx86.Registers.EAX, SourceReg = CPUx86.Registers.EAX };
new CPUx86.Move { DestinationReg = CPUx86.Registers.AL, SourceReg = CPUx86.Registers.EBP, SourceIsIndirect = true, SourceDisplacement = 0 - xEBPOffset };
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
break;
}
case 2:
{
new CPUx86.Xor { DestinationReg = CPUx86.Registers.EAX, SourceReg = CPUx86.Registers.EAX };
new CPUx86.Move { DestinationReg = CPUx86.Registers.AX, SourceReg = CPUx86.Registers.EBP, SourceIsIndirect = true, SourceDisplacement = 0 - xEBPOffset };
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
break;
}
case 4:
{
new CPUx86.Push { DestinationReg = CPUx86.Registers.EBP, DestinationIsIndirect = true, DestinationDisplacement = 0 - xEBPOffset };
break;
}
}
}
#if DOTNETCOMPATIBLE
Assembler.Stack.Push(ILOp.Align(xSize, 4), xVar.LocalType);
#else
Assembler.Stack.Push(xSize, xVar.LocalType);
#endif
}
}
}