发光委托函数调用(Emitting delegate function call)

2019-08-01 06:51发布

我有以下的C#代码:

public static double f2(Func<double, double> f, double x)
{
    return f(x);
}   

在这里,它的IL代码:

.method public hidebysig static 
    float64 f2 (
        class [mscorlib]System.Func`2<float64, float64> f,
        float64 x
    ) cil managed 
{
    // Method begins at RVA 0x20bd
    // Code size 8 (0x8)
    .maxstack 8

    IL_0000: ldarg.0
    IL_0001: ldarg.1
    IL_0002: callvirt instance !1 class [mscorlib]System.Func`2<float64, float64>::Invoke(!0)
    IL_0007: ret
}

我怎么能发射

callvirt instance !1 class [mscorlib]System.Func`2<float64, float64>::Invoke(!0)

通过System.Reflection.Emit或更好的通过Mono.Cecil能 insturction?

什么!1!0是代表?

Answer 1:

!n语法是一个通用的参数的引用。

在这个例子中...

!0是第一通用参数的引用Func<double, double> (用作的参数的类型Invoke方法)

!1是的第二个通用的通用参数的引用Func<double, double> (用作返回类型Invoke

编辑 :使用你的方法System.Reflection.Emit ...

var dynamicMethod = new DynamicMethod(
    "f2Dynamic", 
    typeof(double), 
    new Type[] { typeof(Func<double, double>), typeof(double) });

var il = dynamicMethod.GetILGenerator();

il.Emit(OpCodes.Ldarg_0);
il.Emit(OpCodes.Ldarg_1);
il.Emit(OpCodes.Callvirt, typeof(Func<double, double>).GetMethod("Invoke"));
il.Emit(OpCodes.Ret);

var f2Dynamic = 
    (Func<Func<double, double>, double, double>)dynamicMethod.CreateDelegate(
        typeof(Func<Func<double, double>, double, double>));

Console.WriteLine(f2(x => x * x, 10.0));        // prints 100
Console.WriteLine(f2Dynamic(x => x * x, 10.0)); // prints 100

EDIT2:纠正了!n @kvb的暗示后解释



文章来源: Emitting delegate function call