I have to pass a function an instance of an object, so obviously all the information to be taken as argument is to be loaded onto the evaluation stack Here is the code that i am looking for

someClass SomeObject = new someClass();

il.Emit(OpCodes.LoadObject, SomeObject);
il.Emit(OpCodes.CallVirt, MethodInfo Function);


public void Function(Object obj)
{
       Type type = typeof(obj);
       //do something w.r.t to the type
}

I dont require any information stored in the class just the type and i cannot use any of the primitive types to take my decision on

Last i read that i can use a pointer to load the type using some opcodes ... but i am completely lost here, any help or pointers to the right direction would be great :)

[UPDATE]

Well i found an answer to my own question, tried it and it works don't know if it is the correct way or not but i can successfully create and load an object into stack and pass it to a function

ConstructorInfo ci = typeof(SomeClass).GetConstructor(System.Type.EmptyTypes);
IL.Emit(OpCodes.Newobj, ci);
IL.Emit(OpCodes.Call, SomeFunctionMethodInfo);

SomeFunctionMethodInfo is a function that takes Object as an argument, i successfully have passed the object into the function and can manipulate it also and return back the class as an object.

Nowhere i could find the reference to this example, just figured it out through MSDN, am i doing anything wrong or is there any downside to it ? Experts please if you could correct it or provide a better answer

link|improve this question

Your solution is absolutely correct. – Anton Tykhyy Feb 14 '11 at 9:13
The update doesn't "pass the object into the function" - it creates it inside the function, per call. That may be different, depending on whether SomeObject is handed out elsewhere, etc. – Marc Gravell Feb 14 '11 at 10:08
By referring back to my lambda example (object someObj = ... Action action = () => Function(someObj);), that is, instead, the equivalent of Action action = () => Function(new someClass()) - which isn't quite what you asked in the original question (where you had an object created outside of the function) – Marc Gravell Feb 14 '11 at 10:09
ah yes, tried out your solution too, sorry if my question created any confusion. – KiNGPiN Feb 14 '11 at 10:28
feedback

1 Answer

up vote 2 down vote accepted

You can't pluck a reference out of the air in IL, unless you code the reference as a literal which a: don't do it, b: you'd need to pin, and c: don't do it.

The best approach depends on the signature of the method you are writing. If it is static and takes no arguments... well, that is a bit tricky. Personally I'd be inclined to pass an object into the generated method, and have the delegate fetch any external data it needs from there; but another approach is to generate instead a class, and write the method as an instance method that accesses fields on the types.

The difference (hence my preference) is that the first requires (at most) an object[] parameter on the method - and you can use DynamicMethod; the second requires MethodBuilder, TypeBuilder, ModuleBuilder, AssemblyBuilder, etc ;p More work.

The reason I mention object[] is that generally you want a common signature over the generated methods, even if they require different inputs. This lets you bind to a fixed delegate type and use the faster Invoke execution (DynamicInvoke is slow).

For example:

class SomeType { }
delegate void SomeDelegateType(params object[] args);
public class Program
{
    public static void Main()
    {
        var dn = new DynamicMethod("foo", (Type)null, new[] {typeof(object[])});
        var il = dn.GetILGenerator();
        il.Emit(OpCodes.Ldarg_0);
        il.Emit(OpCodes.Ldc_I4_0);
        il.Emit(OpCodes.Ldelem_Ref);
        il.EmitCall(OpCodes.Call, typeof(Program).GetMethod("Function"), null);
        il.Emit(OpCodes.Ret);
        var action = (SomeDelegateType)dn.CreateDelegate(typeof(SomeDelegateType));

        var obj = new SomeType();
        action(obj);
    }
    public static void Function(object obj)
    {
        Type type = obj.GetType();
        Console.WriteLine(type);
    }
}

If you can't have an input argument, then you'll have to use fields on a type you create - which is actually exactly what the compiler does if you write (for example)

object someObj = ...
Action action = () => Function(someObj);

This is created as:

class <>somehorriblename {
    public object someObj;
    public void SomeGeneratedName() { Function(someObj); }
}
...
var captureClass = new <>somehorriblename();
captureClass.someObj = ...
Action action = captureClass.SomeGeneratedName;
link|improve this answer
havn't tried out what you said but i was messing around with some of the opcodes and i found an answer, at least it makes me do what i want to do ... please check the updated question – KiNGPiN Feb 14 '11 at 9:12
By the way, it should be possible to hard-code a reference using a plain (not pinned) GCHandle. The only problem is garbage collection, but if the dynamic method is going to be around for the lifetime of the appdomain that is OK. – Anton Tykhyy Feb 14 '11 at 9:16
@Anton: Thx for the info, i have this method lasting for the whole lifetime of appdomain – KiNGPiN Feb 14 '11 at 10:26
feedback

Your Answer

 
or
required, but never shown

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