c++ optimization - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T19:07:44Zhttp://stackoverflow.com/feeds/question/811794http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/811794/c-optimization3c++ optimizationTim Rupe2009-05-01T15:06:37Z2009-05-04T22:43:36Z
<p>I'm working on some existing c++ code that appears to be written poorly, and is very frequently called. I'm wondering if I should spend time changing it, or if the compiler is already optimizing the problem away.</p>
<p>I'm using Visual Studio 2008.</p>
<p>Here is an example:</p>
<pre><code>void someDrawingFunction(....)
{
GetContext().DrawSomething(...);
GetContext().DrawSomething(...);
GetContext().DrawSomething(...);
.
.
.
}
</code></pre>
<p>Here is how I would do it:</p>
<pre><code>void someDrawingFunction(....)
{
MyContext &c = GetContext();
c.DrawSomething(...);
c.DrawSomething(...);
c.DrawSomething(...);
.
.
.
}
</code></pre>
http://stackoverflow.com/questions/811794/c-optimization/811808#81180811Answer by Michael Kohne for c++ optimizationMichael Kohne2009-05-01T15:09:51Z2009-05-01T15:09:51Z<p>If you're sure it's a performance problem, change it. If GetContext is a function call (as opposed to a macro or an inline function), then the compiler is going to HAVE to call it every time, because the compiler can't necessarily see what it's doing, and thus, the compiler probably won't know that it can eliminate the call. </p>
<p>Of course, you'll need to make sure that GetContext ALWAYS returns the same thing, and that this 'optimization' is safe.</p>
http://stackoverflow.com/questions/811794/c-optimization/811814#81181424Answer by Adam Rosenfield for c++ optimizationAdam Rosenfield2009-05-01T15:11:34Z2009-05-01T15:11:34Z<p>Don't guess at where your program is spending time. <strong>Profile first</strong> to find your bottlenecks, then optimize those.</p>
<p>As for <code>GetContext()</code>, that depends on how complex it is. If it's just returning a class member variable, then chances are that the compiler will inline it. If <code>GetContext()</code> has to perform a more complicated operation (such as looking up the context in a table), the compiler probably isn't inlining it, and you may wish to only call it once, as in your second snippet.</p>
<p>If you're using GCC, you can also tag the <code>GetContext()</code> function with the <a href="http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html#index-g%5Ft%5F0040code%5F007bpure%5F007d-function-attribute-2256" rel="nofollow"><code>pure</code> attribute</a>. This will allow it to perform more optimizations, such as <a href="http://en.wikipedia.org/wiki/Common%5Fsubexpression%5Felimination" rel="nofollow">common subexpression elimination</a>.</p>
http://stackoverflow.com/questions/811794/c-optimization/811817#8118172Answer by nimrodm for c++ optimizationnimrodm2009-05-01T15:12:17Z2009-05-01T15:12:17Z<p>Obviously, if GetContext() has side effects (I/O, updating globals, etc.) than the suggested optimization will produce different results.</p>
<p>So unless the compiler can somehow detect that GetContext() is pure, you should optimize it yourself.</p>
http://stackoverflow.com/questions/811794/c-optimization/811822#811822-2Answer by JRL for c++ optimizationJRL2009-05-01T15:13:30Z2009-05-01T15:13:30Z<p>If it works, don't fix it.</p>
http://stackoverflow.com/questions/811794/c-optimization/811923#8119238Answer by Shing Yip for c++ optimizationShing Yip2009-05-01T15:42:29Z2009-05-01T15:42:29Z<p>If it is logically correct to do it the second way, i.e. calling GetContext() once on multiple times does not affect your program logic, i'd do it the second way even if you profile it and prove that there are no performance difference either way, so the next developer looking at this code will not ask the same question again.</p>
http://stackoverflow.com/questions/811794/c-optimization/812204#8122041Answer by Paul Nathan for c++ optimizationPaul Nathan2009-05-01T16:50:40Z2009-05-01T16:50:40Z<p>If you're wondering what the compiler does, look at the assembly code.</p>
http://stackoverflow.com/questions/811794/c-optimization/820902#8209020Answer by Mike Dunlavey for c++ optimizationMike Dunlavey2009-05-04T16:53:09Z2009-05-04T16:53:09Z<p>That is such a simple change, I would do it.<br>
It is quicker to fix it than to debate it.</p>
<p>But do you actually have a problem?<br>
Just because it's called often doesn't mean it's called TOO often.<br>
If it seems qualitatively piggy, <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">sample it</a> to see what it's spending time at.<br>
Chances are excellent that it is <em>not</em> what you would have guessed.</p>