Why can't this be optimized? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T04:46:08Zhttp://stackoverflow.com/feeds/question/504403http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/504403/why-cant-this-be-optimized3Why can't this be optimized?JulianR2009-02-02T18:52:30Z2009-02-02T21:03:23Z
<p>I have a function that I use to add vectors, like this:</p>
<pre><code>public static Vector AddVector(Vector v1, Vector v2)
{
return new Vector(
v1.X + v2.X,
v1.Y + v2.Y,
v1.Z + v2.Z);
}
</code></pre>
<p>Not very interesting. However, I overload the '+' operator for vectors and in the overload I call the AddVector function to avoid code duplication. I was curious whether this would result in two method calls or if it would be optimized at compile or JIT time. I found out that it did result in two method calls because I managed to gain 10% in <b>total</b> performance by duplicating the code of the AddVector as well as the dot product method in the '+' and '*' operator overload methods. Of course, this is a niche case because they get called tens of thousands of times per second, but I didn't expect this. I guess I expected the method to be inlined in the other, or something. And I suppose it's not just the overhead of the method call, but also the copying of the method arguments into the other method (they're structs). </p>
<p>It's no big deal, I can just duplicate the code (or perhaps just remove the AddVector method since I never call it directly) but it will nag me a lot in the future when I decide to create a method for something, like splitting up a large method into several smaller ones. </p>
http://stackoverflow.com/questions/504403/why-cant-this-be-optimized/504443#5044433Answer by siz for Why can't this be optimized?siz2009-02-02T19:02:53Z2009-02-02T19:05:31Z<blockquote>
<p>"And I suppose it's not just the overhead of the method call, but also the copying of the method arguments into the other method (they're structs)."</p>
</blockquote>
<p>Why don't you test this out? Write a version of AddVector that takes a reference to two vector structs, instead of the structs themselves. </p>
http://stackoverflow.com/questions/504403/why-cant-this-be-optimized/504463#5044634Answer by ICR for Why can't this be optimized?ICR2009-02-02T19:07:30Z2009-02-02T19:07:30Z<p>If you compile into debug mode or begin the process with a debugger attatched (though you can add one later) then a large class of JIT optimisations, including inlining, won't happen.</p>
<p>Try re-running your tests by compiling it in Release mode and then running it without a debugger attatched (Ctrl+F5 in VS) and see if you see the optimisations you expected.</p>
http://stackoverflow.com/questions/504403/why-cant-this-be-optimized/504479#5044790Answer by Rob Kennedy for Why can't this be optimized?Rob Kennedy2009-02-02T19:10:56Z2009-02-02T19:10:56Z<p>You say <code>Vector</code> is a struct. According to <a href="http://blogs.msdn.com/davidnotario/archive/2004/11/01/250398.aspx" rel="nofollow">a blog post from 2004</a>, value types are a reason for not inlining a method. I don't know whether the rules have changed about that in the meantime.</p>
http://stackoverflow.com/questions/504403/why-cant-this-be-optimized/504510#5045100Answer by Jay Bazuzi for Why can't this be optimized?Jay Bazuzi2009-02-02T19:21:20Z2009-02-02T19:21:20Z<p>Don't assume that <code>struct</code> is the right choice for performance. The copying cost can be significant in some scenarios. Until you measure you don't know. Furthermore, <code>struct</code>s have <a href="http://stackoverflow.com/questions/370859/why-isnan-is-a-static-method-on-the-double-class-instead-of-an-instance-property/370996#370996">spooky</a> behaviors, especially if they're mutable, but even if they're not.</p>
<p>In addition, what others have said is correct:</p>
<ul>
<li>Running under a debugger will disable JIT optimizations, making your performance measurements invalid.</li>
<li>Compiling in Debug mode also makes performance measurements invalid.</li>
</ul>
http://stackoverflow.com/questions/504403/why-cant-this-be-optimized/504768#5047681Answer by JulianR for Why can't this be optimized?JulianR2009-02-02T20:33:50Z2009-02-02T20:33:50Z<p>I had VS in Release mode and I ran without debugging so that can't be to blame. Running the .exe in the Release folder yields the same result. I have .NET 3.5 SP1 installed. </p>
<p>And whether or not I use structs depends on how many I create of something and how large it is when copying versus referencing. </p>
http://stackoverflow.com/questions/504403/why-cant-this-be-optimized/504883#5048830Answer by JSmyth for Why can't this be optimized?JSmyth2009-02-02T21:03:23Z2009-02-02T21:03:23Z<p>Theres only one optimization I can think of, maybe you want to have a vOut parameter, so you avoid the call to new() and hence reduce garbage collection - Of course, this depends entirely on what you are doing with the returned vector and if you need to persist it or not, and if you're running into garbage collection problems.</p>