我正在制作一个声音合成程序,用户可以在其中创建自己的声音,进行基于节点的合成,创建振荡器,滤波器等。
程序将节点编译为中间语言,然后通过ILGenerator和DynamicMethod转换为MSIL。
它与一个数组一起工作,其中存储了所有的操作和数据,但是如果我能够使用指针来允许我稍后进行一些位级操作,它将会更快。
PD:速度很重要!
我注意到一个DynamicMethod构造函数重写有一个方法属性,其中一个是UnsafeExport,但我不能使用它,因为唯一有效的组合是Public+Static
这就是我想做的,这给我抛出了一个VerificationException:(只是给指针赋值)
//Testing delegate
unsafe delegate float TestDelegate(float* data);
//Inside the test method (which is marked as unsafe)
Type ReturnType = typeof(float);
Type[] Args = new Type[] { typeof(float*) };
//Can't use UnamangedExport as method attribute:
DynamicMethod M = new DynamicMethod(
"HiThere",
ReturnType, Args);
ILGenerator Gen = M.GetILGenerator();
//Set the pointer value to 7.0:
Gen.Emit(OpCodes.Ldarg_0);
Gen.Emit(OpCodes.Ldc_R4, 7F);
Gen.Emit(OpCodes.Stind_R4);
//Just return a dummy value:
Gen.Emit(OpCodes.Ldc_R4, 20F);
Gen.Emit(OpCodes.Ret);
var del = (TestDelegate)M.CreateDelegate(typeof(TestDelegate));
float* data = (float*)Marshal.AllocHGlobal(4);
//VerificationException thrown here:
float result = del(data);
如果将执行程序集的ManifestModule
作为第四个参数传递给DynamicMethod
构造函数,它将按预期工作:
DynamicMethod M = new DynamicMethod(
"HiThere",
ReturnType, Args,
Assembly.GetExecutingAssembly().ManifestModule);
(来源:http://srstrong.blogspot.com/2008/09/unsafe-code-without-unsafe-keyword.html)