mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
30 lines
No EOL
816 B
C#
30 lines
No EOL
816 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
|
|
using CPU = Indy.IL2CPU.Assembler;
|
|
using CPUx86 = Indy.IL2CPU.Assembler.X86;
|
|
using System.Reflection;
|
|
using Indy.IL2CPU.Assembler;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
[OpCode(OpCodeEnum.Ldftn)]
|
|
public class Ldftn: Op {
|
|
private string mFunctionLabel;
|
|
|
|
public Ldftn(ILReader aReader, MethodInformation aMethodInfo)
|
|
: base(aReader, aMethodInfo) {
|
|
MethodBase xMethodRef = aReader.OperandValueMethod;
|
|
if (xMethodRef == null) {
|
|
throw new Exception("Unable to determine Method!");
|
|
}
|
|
mFunctionLabel = CPU.Label.GenerateLabelName(xMethodRef);
|
|
Engine.QueueMethod(xMethodRef);
|
|
}
|
|
|
|
public override void DoAssemble() {
|
|
new CPUx86.Pushd(mFunctionLabel);
|
|
Assembler.StackContents.Push(new StackContent(4, true, false, false));
|
|
}
|
|
}
|
|
} |