using System;
using System.Collections.Generic;
using System.Linq;
using CPUx86 = Indy.IL2CPU.Assembler.X86;
using System.Reflection;
namespace Indy.IL2CPU.IL.X86 {
public abstract class X86CustomMethodImplementationOp: CustomMethodImplementationOp {
public X86CustomMethodImplementationOp(ILReader aReader, MethodInformation aMethodInfo)
: base(aReader, aMethodInfo) {
}
///
/// Passes the call directly to an equal method.
///
///
protected void PassCall(MethodBase aMethod) {
for (int i = 0; i < MethodInfo.Arguments.Length; i++) {
Ldarg.Ldarg(Assembler, MethodInfo.Arguments[i]);
}
Engine.QueueMethod(aMethod);
Op xOp = new Call(aMethod,0);
xOp.Assembler = Assembler;
xOp.Assemble();
}
protected override void Assemble_System_UInt32___Indy_IL2CPU_CustomImplementation_System_StringImpl_GetStorage___System_UInt32___() {
// arg 0 == this
AssembleOp(new Ldarg(MethodInfo, 0));
new Indy.IL2CPU.Assembler.X86.Pop(CPUx86.Registers.EAX);
if (!mAssembler.InMetalMode) {
int xStorageSize;
Dictionary xFields = Engine.GetTypeFieldInfo(typeof(string), out xStorageSize);
new Indy.IL2CPU.Assembler.X86.Add(CPUx86.Registers.EAX, "0" + xFields["$$Storage$$"].Offset.ToString("X") + "h");
new Indy.IL2CPU.Assembler.X86.Move(CPUx86.Registers.EAX, CPUx86.Registers.AtEAX);
new Indy.IL2CPU.Assembler.X86.Add(CPUx86.Registers.EAX, "12");
new Indy.IL2CPU.Assembler.X86.Pushd(CPUx86.Registers.EAX);
}
}
private void AssembleOp(X86.Op aOp) {
aOp.Assembler = Assembler;
aOp.Assemble();
}
protected override void Assemble_System_Object___System_Array_GetValue___System_Int32___() {
// arg 0 == this
// arg 1 == Index
AssembleOp(new Ldarg(MethodInfo, 0));
AssembleOp(new Ldarg(MethodInfo, 1));
AssembleOp(new Ldelem_I4(null, MethodInfo));
new Indy.IL2CPU.Assembler.X86.Pop(CPUx86.Registers.EAX);
}
protected override void Assemble_System_Void___System_Array_SetValue___System_Object__System_Int32___() {
// arg 0 == this
// arg 1 == value
// arg 2 == index
AssembleOp(new Ldarg(MethodInfo, 0));
AssembleOp(new Ldarg(MethodInfo, 2));
AssembleOp(new Ldarg(MethodInfo, 1));
Stelem_Ref.Assemble(Assembler, 4);
}
protected override void Assemble_System_Int32_System_Array_get_Length____() {
AssembleOp(new Ldarg(MethodInfo, 0));
new Indy.IL2CPU.Assembler.X86.Popd(CPUx86.Registers.EAX);
new Indy.IL2CPU.Assembler.X86.Pushd("[eax + 8]");
new Indy.IL2CPU.Assembler.X86.Popd(CPUx86.Registers.EAX);
}
}
}