Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

loop condition evaluation

Just a quick question.

I have a loop that looks like this:

for (int i = 0; i < dim * dim; i++) 

Is the condition in a for loop re-evaluated on every loop?

If so, would it be more efficient to do something like this?:

int dimSquare = dim * dim; for (int i = 0; i < dimSquare; i++) 

Thanks

-Faken

like image 379
Faken Avatar asked Aug 07 '09 00:08

Faken


2 Answers

Yes, semantically it will be evaluated on every loop. In some cases, compilers may be able to remove the condition from the loop automatically - but not always. In particular:

void foo(const struct rect *r) {   for (int i = 0; i < r->width * r->height; i++) {     quux();   } } 

The compiler will not be able to move the multiplication out in this case, as for all it knows quux() modifies r.

In general, usually only local variables are eligible for lifting expressions out of a loop (assuming you never take their address!). While under some conditions structure members may be eligible as well, there are so many things that may cause the compiler to assume everything in memory has changed - writing to just about any pointer, or calling virtually any function, for example. So if you're using any non-locals there, it's best to assume the optimization won't occur.

That said, in general, I'd only recommend proactively moving potentially expensive code out of the condition if it either:

  • Doesn't hurt readability to do so
  • Obviously will take a very long time (eg, network accesses)
  • Or shows up as a hotspot on profiling.
like image 60
bdonlan Avatar answered Oct 04 '22 12:10

bdonlan


In general, if you would for example change the value of "dim" inside your loop, it would be re-evaluated every time. But since that is not the case in your example, a decent compiler would optimize your code and you wouldn't see any difference in performance.

like image 45
Lucas Avatar answered Oct 04 '22 10:10

Lucas