What is the difference between the CIL instructions "Call" and "Callvirt"?
|
2
|
|
|
|
|
|
|
||||||||
|
|
|
When the runtime executes a By contrast, the Note that the compiler can emit
Consider calling code:
While For this reason, .NET's EDIT: Turns out I was wrong. The C# compiler cannot make an unconditional jump to the method's location because the object's reference (the value of This actually explains some bizarre code I found in the .NET framework using Reflector:
It's possible for a compiler to emit verifiable code that has a null value for the So I guess Given this information it now seems to me that EDIT 2: There's more to this than it seems. For example the following code emits a
Obviously in such a case there is no chance that the object instance could be null. Interestingly, in a DEBUG build, the following code emits
This is because you could set a breakpoint on the second line and modify the value of Unfortunately my PC is currently out of action, but I'll experiment with this once it's up again. |
|||
|
|
|
Unfortunately this is not the case. Callvirt does one other thing that makes it useful. When an object has a method called on it callvirt will check if the object exists, and if not throws a NullReferenceException. Call will simply jump to the memory location even if the object reference is not there, and try to execute the bytes in that location. What this means is that callvirt is always used by the C# compiler (not sure about VB) for classes, and call is always used for structs (because they can never be null or subclassed). Edit In response to Drew Noakes comment: Yes it seems you can get the compiler to emit a call for any class, but only in the following very specific case:
NOTE The class does not have to be sealed for this to work. So it looks like the compiler will emit a call if all these things are true:
|
||||||||
|
