从ILGenerator检索代码



我已经编写了一些函数来使用ILGenerator创建一个exe文件。我想要的是向用户展示在不使用ILDasm或Reflector等外部工具的情况下生成的IL语言。

在我的程序执行过程中,我已经将每个OpCode添加到ILGenerator中,因此我可以使用带有OpCode表示的字符串将每个OpCode保存在列表中,但我更喜欢直接获取IL代码。能做到吗?

重要:我使用的是Mono 2.6。

如果您有MethodBuilder,您应该能够使用builder.GetMethodBody().GetILAsByteArray()将IL作为byte[]。但要想从中获得任何意义,您需要以某种方式解析它。

因此,更好的选择可能是使用Mono-Cecil,它可以以可读的格式为您提供程序集的IL代码。

正如Hans Passantsvick所说,答案是Mono.Cecil。让我们看看:

using Mono.Cecil;
using Mono.Cecil.Cil;
[...]

public void Print( ) {
    AssemblyDefinition assembly = AssemblyDefinition.ReadAssembly( this.module_name );
    int i = 0, j = 0;
    foreach ( TypeDefinition t in assembly.MainModule.Types ) {
        if ( t.Name  == "FooClass" ) {
            j = i;
        }
        i++;
    }
    TypeDefinition type = assembly.MainModule.Types[ j ];
    i = j = 0;
    foreach ( MethodDefinition md in type.Methods ) {
        if ( md.Name == "BarMethod" ) {
            j = i;
        }
        i++;
    }
    MethodDefinition foundMethod = type.Methods[ j ];
    foreach( Instruction instr in foundMethod.Body.Instructions ) {
        System.Console.WriteLine( "{0} {1} {2}", instr.Offset, instr.OpCode, instr.Operand );
    }
}

当然可以做得更有效率,但它解决了我的问题。

相关内容

  • 没有找到相关文章

最新更新