码迷,mamicode.com
首页 > Windows程序 > 详细

C#版memset功能

时间:2015-01-26 11:58:10      阅读:838      评论:0      收藏:0      [点我收藏+]

标签:c#   xamarin   性能   .net   wp   

public static class cmemory
{
    static Action<IntPtr, byte, int> memsetDelegate;
    static cmemory()
    {
        DynamicMethod dynamicMethod = new DynamicMethod(
            "memset",
            MethodAttributes.Public | MethodAttributes.Static, CallingConventions.Standard,
            null,
            new[] { typeof(IntPtr), typeof(byte), typeof(int) }, typeof(cmemory), true
            );
        ILGenerator generator = dynamicMethod.GetILGenerator();
        generator.Emit(OpCodes.Ldarg_0);
        generator.Emit(OpCodes.Ldarg_1);
        generator.Emit(OpCodes.Ldarg_2);
        generator.Emit(OpCodes.Initblk);
        generator.Emit(OpCodes.Ret);
        memsetDelegate = (Action<IntPtr, byte, int>)dynamicMethod.CreateDelegate(typeof(Action<IntPtr, byte, int>));
    }
    public static void memset(byte[] array, byte what, int length)
    {
        GCHandle gcHandle = GCHandle.Alloc(array, GCHandleType.Pinned);
        memsetDelegate(gcHandle.AddrOfPinnedObject(), what, length);
        gcHandle.Free();
    }

}


msil有支持Initblk指令,功能相当于memset,但.net类却没有对应的封装。用Emit把该指令封装成函数。(备注:Array.Clear只能清0,不能指定其他值)

pc,wp可用,xamarin未测。

性能:pc上Initblk与Array.Clear性能相当,wp上是3倍速度。与for循环byte赋值相比,快12到15倍左右。

C#版memset功能

标签:c#   xamarin   性能   .net   wp   

原文地址:http://blog.csdn.net/kamille/article/details/43149735

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!