c++ optimization - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:07:44Z http://stackoverflow.com/feeds/question/811794 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/811794/c-optimization 3 c++ optimization Tim Rupe 2009-05-01T15:06:37Z 2009-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 &amp;c = GetContext(); c.DrawSomething(...); c.DrawSomething(...); c.DrawSomething(...); . . . } </code></pre> http://stackoverflow.com/questions/811794/c-optimization/811808#811808 11 Answer by Michael Kohne for c++ optimization Michael Kohne 2009-05-01T15:09:51Z 2009-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#811814 24 Answer by Adam Rosenfield for c++ optimization Adam Rosenfield 2009-05-01T15:11:34Z 2009-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#811817 2 Answer by nimrodm for c++ optimization nimrodm 2009-05-01T15:12:17Z 2009-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 -2 Answer by JRL for c++ optimization JRL 2009-05-01T15:13:30Z 2009-05-01T15:13:30Z <p>If it works, don't fix it.</p> http://stackoverflow.com/questions/811794/c-optimization/811923#811923 8 Answer by Shing Yip for c++ optimization Shing Yip 2009-05-01T15:42:29Z 2009-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#812204 1 Answer by Paul Nathan for c++ optimization Paul Nathan 2009-05-01T16:50:40Z 2009-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#820902 0 Answer by Mike Dunlavey for c++ optimization Mike Dunlavey 2009-05-04T16:53:09Z 2009-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>