What are these opcodes for? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T03:25:21Zhttp://stackoverflow.com/feeds/question/944443http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/944443/what-are-these-opcodes-for3What are these opcodes for?tanascius2009-06-03T12:28:01Z2009-06-03T12:31:46Z
<p>Using reflector I get the following output:</p>
<pre><code>.method private hidebysig static class myModelTestarea.Foo Method() cil managed
{
.maxstack 1
.locals init ([0] class myModelTestarea.Foo CS$1$0000)
L_0000: nop
L_0001: ldc.i4.0
L_0002: newarr object
L_0007: call object myModelTestarea.Program::Resolve(object[])
L_000c: castclass myModelTestarea.Foo
L_0011: stloc.0
L_0012: br.s L_0014
L_0014: ldloc.0
L_0015: ret
}
</code></pre>
<p>for</p>
<pre><code>private static Foo Method()
{
return (Foo)Resolve();
}
private static object Resolve( params object[] args )
{
return new Foo();
}
</code></pre>
<p>What do the lines 11-14 do? I call a function and get a result (line 7). I cast the result to the right returntype (line c) - why not return right now?</p>
<p>Somehow, the casted result is stored as a local variable - then there is an uncoditional jump to the next line, where the local variable is loaded again. Why?</p>
<p>In my opinion line 11-14 and the local variable can be omitted ... ?</p>
http://stackoverflow.com/questions/944443/what-are-these-opcodes-for/944452#9444529Answer by Marc Gravell for What are these opcodes for?Marc Gravell2009-06-03T12:29:54Z2009-06-03T12:29:54Z<p>That looks like a DEBUG build, which leaves in extra IL to help the debugger. Try it again in RELEASE and it should look cleaner, with optimization etc.</p>
<pre><code>.method private hidebysig static class program/Foo Method() cil managed
{
.maxstack 8
L_0000: ldc.i4.0
L_0001: newarr object
L_0006: call object program::Resolve(object[])
L_000b: castclass program/Foo
L_0010: ret
}
</code></pre>
http://stackoverflow.com/questions/944443/what-are-these-opcodes-for/944463#9444633Answer by Jon Skeet for What are these opcodes for?Jon Skeet2009-06-03T12:31:46Z2009-06-03T12:31:46Z<p>Is this a debug build? It's possible that it's there for the sake of the debugger.</p>
<p>I've seen similar things in other places - it's almost always harmless though. Don't forget that most of the optimisation is done by the JIT, which can notice things like this easily enough. The only downside is that more IL hints to the JIT that the method shouldn't be inlined.</p>