Counting down in for-loops - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T20:18:31Z http://stackoverflow.com/feeds/question/804777 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/804777/counting-down-in-for-loops 0 Counting down in for-loops ohit 2009-04-29T23:35:24Z 2009-06-19T13:56:08Z <p>I believe (from some research reading) that counting down in for-loops is actually more efficient and faster in runtime. My full software code is C++</p> <p>I currently have this:</p> <pre><code>for (i=0; i&lt;domain; ++i) { </code></pre> <p>my 'i' is unsigned resgister int, also 'domain' is unsigned int</p> <p>in the for-loop i is used for going through an array, e.g.</p> <pre><code>array[i] = do stuff </code></pre> <p>converting this to count down messes up the expected/correct output of my routine.</p> <p>I can imagine the answer being quite trivial, but I can't get my head round it.</p> <p>UPDATE: 'do stuff' does not depend on previous or later iteration. The calculations within the for-loop are independant for that iteration of i. (I hope that makes sense).</p> <p>UPDATE: To achieve a runtime speedup with my for-loop, do I count down and if so remove the unsigned part when delcaring my int, or what other method?</p> <p>Please help.</p> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804788#804788 0 Answer by Nuoji for Counting down in for-loops Nuoji 2009-04-29T23:38:38Z 2009-04-29T23:38:38Z <pre><code>for (i=domain - 1; i &gt;= 0; i--) </code></pre> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804791#804791 3 Answer by Alex Martelli for Counting down in for-loops Alex Martelli 2009-04-29T23:39:12Z 2009-04-29T23:39:12Z <p>If you have a decent compiler, it will optimize "counting up" just as effectively as "counting down". Just try a few benchmarks and you'll see.</p> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804792#804792 10 Answer by Michael for Counting down in for-loops Michael 2009-04-29T23:39:15Z 2009-04-29T23:39:15Z <p>Checking to see if a number is zero can be quicker or more efficient than a comparison. But this is the sort of micro-optimization you really shouldn't worry about - a few clock cycles will be greatly dwarfed by just about any other perf issue.</p> <p>On x86:</p> <pre><code>dec eax jnz Foo </code></pre> <p>Instead of:</p> <pre><code>inc eax cmp eax, 15 jl Foo </code></pre> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804795#804795 1 Answer by patjbs for Counting down in for-loops patjbs 2009-04-29T23:39:23Z 2009-04-29T23:39:23Z <p>Hard to say with information given but... reverse your array, and count down?</p> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804813#804813 7 Answer by jeremy Ruten for Counting down in for-loops jeremy Ruten 2009-04-29T23:44:16Z 2009-04-29T23:44:16Z <p>I'm guessing your backward for loop looks like this:</p> <pre><code>for (i = domain - 1; i &gt;= 0; --i) { </code></pre> <p>In that case, because <code>i</code> is <strong>unsigned</strong>, it will <strong>always</strong> be greater than or equal to zero. When you decrement an unsigned variable that is equal to zero, it will wrap around to a very large number. The solution is either to make <code>i</code> signed, or change the condition in the for loop like this:</p> <pre><code>for (i = domain - 1; i &gt;= 0 &amp;&amp; i &lt; domain; --i) { </code></pre> <p>Or count from <code>domain</code> to <code>1</code> rather than from <code>domain - 1</code> to <code>0</code>:</p> <pre><code>for (i = domain; i &gt;= 1; --i) { array[i - 1] = ...; // notice you have to subtract 1 from i inside the loop now } </code></pre> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804819#804819 11 Answer by foljs for Counting down in for-loops foljs 2009-04-29T23:47:44Z 2009-04-29T23:47:44Z <p>This is not an answer to your problem, because you don't seem to have a problem.</p> <p>This kind of optimization is completely irrelevant and should be left to the compiler (if done at all).</p> <p>Have you profiled your program to check that your for-loop is a bottleneck? If not, then you do not need to spend time worrying about this. Even more so, having "i" as a "register" int, as you write, makes no real sense from a performance standpoint. </p> <p>Even without knowing your problem domain, I can guarantee you that both the reverse-looping technique and the "register" int counter will have <em>negligible</em> impact on your program's performance. Remember, "Premature optimization is the root of all evil".</p> <p>That said, better spent optimization time would be on thinking about the overall program structure, data structures and algorithms used, resource utilization, etc. </p> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804821#804821 2 Answer by Brian Neal for Counting down in for-loops Brian Neal 2009-04-29T23:50:02Z 2009-04-29T23:50:02Z <p>So you "read" that couting down is more efficient? I find this very difficult to believe unless you show me some profiler results and the code. I can buy it under some circumstances, but in the general case, no. Seems to me like this is a classic case of premature optimization.</p> <p>Your comment about "register int i" is also very telling. Nowadays, the compiler always knows better than you how to allocate registers. Don't bother using using the register keyword unless you have profiled your code.</p> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804822#804822 3 Answer by Andrew for Counting down in for-loops Andrew 2009-04-29T23:51:45Z 2009-04-29T23:51:45Z <p>When you're looping through data structures of any sort, cache misses have a far bigger impact than the direction you're going. Concern yourself with the bigger picture of memory layout and algorithm structure instead of trivial micro-optimisations.</p> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804893#804893 10 Answer by don.neufeld for Counting down in for-loops don.neufeld 2009-04-30T00:20:48Z 2009-04-30T00:27:01Z <p>There is only one correct method of looping backwards using an unsigned counter:</p> <pre><code>for( i = n; i-- &gt; 0; ) { // Use i as normal here } </code></pre> <p>There's a trick here, for the last loop iteration you will have i = 1 at the top of the loop, i-- > 0 passes because 1 > 0, then i = 0 in the loop body. On the next iteration i-- > 0 fails because i == 0, so it doesn't matter that the postfix decrement rolled over the counter.</p> <p>Very non obvious I know.</p> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/805170#805170 3 Answer by Rob Kennedy for Counting down in for-loops Rob Kennedy 2009-04-30T02:44:16Z 2009-04-30T02:44:16Z <p>It has nothing to do with counting <em>up</em> or <em>down</em>. What can be faster is counting <strong>toward zero</strong>. <a href="http://stackoverflow.com/questions/804777/counting-down-in-for-loops/804792#804792">Michael's answer</a> shows why — x86 gives you a comparison with zero as an implicit side effect of many instructions, so after you adjust your counter, you just branch based on the result instead of doing an explicit comparison. (Maybe other architectures do that, too; I don't know.)</p> <p>Borland's Pascal compilers are notorious for performing that optimization. The compiler transforms this code:</p> <pre><code>for i := x to y do foo(i); </code></pre> <p>into an internal representation more akin to this:</p> <pre><code>tmp := Succ(y - x); i := x; while tmp &gt; 0 do begin foo(i); Inc(i); Dec(tmp); end; </code></pre> <p>(I say notorious not because the optimization affects the outcome of the loop, but because the debugger displays the counter variable incorrectly. When the programmer inspects <code>i</code>, the debugger may display the value of <code>tmp</code> instead, causing no end of confusion and panic for programmers who think their loops are running backward.)</p> <p>The idea is that even with the extra <code>Inc</code> or <code>Dec</code> instruction, it's still a net win, in terms of running time, over doing an explicit comparison. <strong>Whether you can actually <em>notice</em> that difference is up for debate.</strong></p> <p>But note that the conversion is something the compiler would do <em>automatically</em>, based on whether it deemed the transformation worthwhile. <strong>The compiler is usually better at optimizing code than you are, so don't spend too much effort competing with it.</strong></p> <p>Anyway, you asked about C++, not Pascal. C++ "for" loops aren't quite as easy to apply that optimization to as Pascal "for" loops are because the bounds of Pascal's loops are always fully calculated before the loop runs, whereas C++ loops sometimes depend on the stopping condition and the loop contents. C++ compilers need to do some amount of static analysis to determine whether any given loop could fit the requirements for the kind of transformation Pascal loops qualify for unconditionally. If the C++ compiler does the analysis, then it could do a similar transformation.</p> <p>There's nothing stopping you from writing your loops that way on your own:</p> <pre><code>for (unsigned i = 0, tmp = domain; tmp &gt; 0; ++i, --tmp) array[i] = do stuff </code></pre> <p>Doing that <em>might</em> make your code run faster. Like I said before, though, you probably won't notice. The bigger cost you pay by manually arranging your loops like that is that your code no longer follows established idioms. Your loop is a perfectly ordinary "for" loop, but it no longer <em>looks</em> like one — it has two variables, they're counting in opposite directions, and one of them isn't even used in the loop body — so anyone reading your code (including you, a week, a month, or a year from now when you've forgotten the "optimization" you were hoping to achieve) will need to spend extra effort proving to himself or herself that the loop is indeed an ordinary loop in disguise.</p> <p>(Did you notice that my code above used unsigned variables with no danger of wrapping around at zero? Using two separate variables allows that.)</p> <p>Three things to take away from all this:</p> <ol> <li>Let the optimizer do its job; on the whole it's better at it than you are.</li> <li>Make ordinary code look ordinary so that the special code doesn't have to compete to get attention from people reviewing, debugging, or maintaining it.</li> <li>Don't do anything fancy in the name of performance until testing and profiling show it to be necessary.</li> </ol> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/805240#805240 0 Answer by Dan Breslau for Counting down in for-loops Dan Breslau 2009-04-30T03:24:39Z 2009-04-30T03:24:39Z <p>Jeremy Ruten rightly pointed out that using an unsigned loop counter is dangerous. It's also unnecessary, as far as I can tell.</p> <p>Others have also pointed out the dangers of premature optimization. They're absolutely right.</p> <p>With that said, here is a style I used when programming embedded systems many years ago, when every byte and every cycle did count for something. These forms <strong>were</strong> useful for me on the particular CPUs and compilers that I was using, but your mileage may vary.</p> <pre><code>// Start out pointing to the last elem in array pointer_to_array_elem_type p = array + (domain - 1); for (int i = domain - 1; --i &gt;= 0 ; ) { *p-- = (... whatever ...) } </code></pre> <p>This form takes advantage of the condition flag that is set on <strong>some</strong> processors after arithmetical operations -- on some architectures, the decrement and testing for the branch condition can be combined into a single instruction. Note that using predecrement (<code>--i</code>) is the key here -- using postdecrement (<code>i--</code>) would not have worked as well.</p> <p>Alternatively,</p> <pre><code>// Start out pointing *beyond* the last elem in array pointer_to_array_elem_type p = array + domain; for (pointer_to_array_type p = array + domain; p - domain &gt; 0 ; ) { *(--p) = (... whatever ...) } </code></pre> <p>This second form takes advantage of pointer (address) arithmetic. I rarely see the form <code>(pointer - int)</code> these days (for good reason), but the language guarantees that when you subtract an int from a pointer, the pointer is decremented by <code>(int * sizeof (*pointer))</code>.</p> <p>I'll emphasize again that whether these forms are a win for you depends on the CPU and compiler that you're using. They served me well on Motorola 6809 and 68000 architectures.</p> http://stackoverflow.com/questions/804777/counting-down-in-for-loops/805852#805852 0 Answer by piotr for Counting down in for-loops piotr 2009-04-30T07:58:25Z 2009-04-30T07:58:25Z <p>In some later arm cores, decrement and compare takes only a single instruction. This makes decrementing loops more efficient than incrementing ones.</p> <p>I don't know why there isn't an increment-compare instruction also.</p> <p>I'm surprised that this post was voted -1 when it's a true issue.</p>