mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
38 lines
No EOL
1.1 KiB
C#
38 lines
No EOL
1.1 KiB
C#
using System;
|
|
using System.IO;
|
|
using Indy.IL2CPU.Assembler;
|
|
|
|
|
|
using CPU = Indy.IL2CPU.Assembler.X86;
|
|
using System.Reflection;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
[OpCode(OpCodeEnum.Ldtoken)]
|
|
public class Ldtoken: Op {
|
|
private string mTokenAddress;
|
|
public Ldtoken(ILReader aReader, MethodInformation aMethodInfo)
|
|
: base(aReader, aMethodInfo) {
|
|
// todo: add support for type tokens and method tokens
|
|
FieldInfo xFieldDef = aReader.OperandValueField;
|
|
if (xFieldDef != null) {
|
|
if (!xFieldDef.IsStatic) {
|
|
throw new Exception("Nonstatic field-backed tokens not supported yet!");
|
|
}
|
|
Engine.QueueStaticField(xFieldDef);
|
|
mTokenAddress = DataMember.GetStaticFieldName(xFieldDef);
|
|
return;
|
|
}
|
|
Type xTypeRef = aReader.OperandValueType;
|
|
if(xTypeRef!=null) {
|
|
mTokenAddress = "0" + Engine.RegisterType(xTypeRef).ToString("X") + "h";
|
|
return;
|
|
}
|
|
throw new Exception("Token type not supported yet!");
|
|
}
|
|
|
|
public override void DoAssemble() {
|
|
new CPU.Pushd(mTokenAddress);
|
|
Assembler.StackContents.Push(new StackContent(4, typeof(uint)));
|
|
}
|
|
}
|
|
} |