Or is it all about semantics?
|
|
Short answer: no, they are exactly the same. Guess it could in theory depend on the compiler; a really broken one might do something slightly different but I'd be surprised. Just for fun here are two variants that compile down to exactly the same assembly code for me using x86 gcc version 4.3.3 as shipped with Ubuntu. You can check the assembly produced on the final binary with objdump on linux.
int main()
{
#if 1
int i = 10;
do { printf("%d\n", i); } while(--i);
#else
int i = 10;
for (; i; --i) printf("%d\n", i);
#endif
}
EDIT: Here is an "oranges with oranges" while loop example that also compiles down to the same thing:
while(i) { printf("%d\n", i); --i; }
|
|||||||||||||||||||||
|
|
If your for and while loops do the same things, the machine code generated by the compiler should be (nearly) the same. For instance in some testing I did a few years ago,
and
would generate exactly the same code, or (and Neil pointed out in the comments) with one extra jmp, which won't make a big enough difference in performance to worry about. |
|||||||||||||||||
|
|
There is no semantic difference, there need not be any compiled difference. But it depends on the compiler. So I tried with with g++ 4.3.2, CC 5.5, and xlc6. g++, CC were identical, xlc WAS NOT The difference in xlc was in the initial loop entry.
XLC OUTPUT
|
|||
|
|
|
The scope of the variable in the test of the Therefore, if there are performance implications as a side-effect of keeping a variable alive longer, then there will be performance implications in choosing between a while and a for loop ( and not wrapping the while up in {} to reduce the scope of its variables ). An example might be a concurrent collection which counts the number of iterators referring to it, and if more than one iterator exists, it applies locking to prevent concurrent modification, but as an optimisation elides the locking if only one iterator refers to it. If you then had two |
|||||
|
|
Compilers that optimize using loop unrolling will probably only do so in the for-loop case. |
|||||
|
|
Both are equivalent. It's a matter of semantics. The only difference may lie in the do... while construct, where you postpone the evaluation of the condition until after the body, and thus may save 1 evaluation.
as opposed to
|
||||
|
|
|
I write compilers. We compile all "structured" control flow ( |
|||||||||||
|
|
No. If they're doing equivalent things, they'll compile to the same code - as you say, it's about semantics. Choose the one that best represents what you're trying to express. |
|||
|
|
|
Ideally it should be the same, but eventually it depends on your compiler/interpreter. To be sure, you must measure or examine the generated assembly code. Proof that there may be a difference: These lines produce different assembly code using cc65.
|
||||
|
|
|
On Atmel ATMega while() is faster than for(). Why is this is explained in AVR035: Efficient C Coding for AVR. P.S. Original platform was not mentioned in question. |
|||
|
|
|
continue behaves differently in for and while: in for, it alters the counter, in while, it usually doesn't |
|||||||
|
|
They are the same as far as performance goes. I tend to use |
|||
|
|
|
To add another answer: In my experience, optimizing software is like a big, bushy beard being shaved off a man.
The last is where the difference between P.S. The programmers I know (who are all very good, and I suspect are a representative sample) basically go at it from the other direction. |
||||
|
|
There is a difference in some cases. If you are at the point where that difference matters, you either need to pick a better algorithm or begin coding in assembly language. Trust me, coding in assembly is preferable to fixing your compiler version. |
|||
|
|
|
Is
The apocryphal quote of Willie Sutton when asked Why do you rob banks?: If you want to save cycles, find out where they are. |
||||
|
|
|
Probably only coding style.
|
||||
|