vote up 1 vote down star

I'm working on a routine to use DynamicMethod to retrieve values from a object. It worked fine with most of data types, except for DateTime.Ticks, which is int64

In the following test app. I uses both MethodInfo and DynamicMethod, the methodInfo returns correct value but DynamicMethod doesn't. Any ideas?

using System;
using System.Reflection;
using System.Reflection.Emit;

namespace ConsoleApplication2
{
    public delegate object MemberGetDelegate(object obj);

    class Program
    {
        static void Main(string[] args)
        {
            DateTime dat = DateTime.Today;
            PropertyInfo pi = typeof(DateTime).GetProperty("Ticks");
            MethodInfo mi = pi.GetGetMethod();
            Type type = pi.PropertyType;
            object ticks = mi.Invoke(dat, new object[] { });
            Console.WriteLine("Get by MethodInfo " + ticks.ToString());

            MemberGetDelegate mget=TypeUtils.GetMemberFunc(pi);
            object ret = mget(dat);
            Console.WriteLine("Get by DynamicMethod " + ret.ToString());

            Console.Read();
        }
    }

    static class TypeUtils
    {
        public static readonly Type objectType = typeof(object);
        public static readonly Type[] typeArray = new[] { typeof(object) };

        public static MemberGetDelegate GetMemberFunc(PropertyInfo pi)
        {

            MethodInfo mi = pi.GetGetMethod();

            if (mi != null)
            {
                DynamicMethod dm = new DynamicMethod("_" + mi.Name,
                                                     objectType,
                                                     typeArray,
                                                     pi.Module, true);
                ILGenerator il = dm.GetILGenerator();

                // Load the instance of the object (argument 0) onto the stack
                il.Emit(OpCodes.Ldarg_0);

                // Call underlying get method
                il.EmitCall(OpCodes.Callvirt, mi, null);

                //boxing
                if (pi.PropertyType.IsValueType)
                {
                    il.Emit(OpCodes.Box, pi.PropertyType);                   
                }

                // return the value on the top of the stack
                il.Emit(OpCodes.Ret);

                return  (MemberGetDelegate) dm.CreateDelegate(typeof (MemberGetDelegate));

            }
            return null;
        }
    }
}
flag
Can you please report in what way the result is incorrect that you get? – Martin v. Löwis Aug 30 at 17:24
Example of incorrect values: Get by property 633871872000000000 Get by MethodInfo 633871872000000000 Get by DynamicMethod 3723350993856077580 – Lasse V. Karlsen Aug 30 at 17:37
Thanks Lasse for posting your result. I initially thought it was caused by boxing, so I changed delegate's signature and removed boxing code, I didn't help, I'm still getting the incorrect value. – Tony Aug 30 at 18:27

1 Answer

vote up 0 vote down check

You're generating invalid code. If you compile the resulting IL with Ilasm

ldarg.0
callvirt instance int64 [mscorlib]System.DateTime::get_Ticks()
box int64
ret

And then run PEVerify on the executable, it will tell you that the code is invalid. (You can't use callvirt on a value type method like that). Working code should look like this

ldarg.0
unbox [mscorlib]System.DateTime
call instance int64 [mscorlib]System.DateTime::get_Ticks()
box int64
ret

Adapt your code generation accordingly and it will return the correct value.

link|flag
Thanks, that helps. Added unboxing logic and it worked fine. il.Emit(OpCodes.Ldarg_0); // unboxing for value type if (pi.PropertyType.IsValueType) { il.Emit(OpCodes.Unbox,pi.ReflectedType); } il.EmitCall(OpCodes.Callvirt, mi, null); //boxing if (pi.PropertyType.IsValueType) { il.Emit(OpCodes.Box, pi.PropertyType); } – Tony Aug 31 at 16:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.