Is there a performance difference between i++ and ++i if the resulting value is not used?
|
10
|
|
|
|
|
|
Executive summary: No. i++ could potentially be slower than ++i, since the old value of i might need to be saved for later use, but in practice all modern compilers will optimize this away. We can demonstrate this by looking at the code for this function, both with ++i and i++.
The files are the same, except for ++i and i++:
We'll compile them, and also get the generated assembler:
And we can see that both the generated object and assembler files are the same.
~~ Mark Harrison ~~ |
|||
|
|
|
Thank you for forking the thread and for analysis. I knew that for integral types, however, I'd like to know if it's working all fine if you work in C++ and implement your own iterators. |
||
|
|
|
|
Paul, good point. Since ++i and i++ are really calls to the function operator++, the compiler can't optimize away the temporary intermediate variable. So it's definitely true for C++ objects that ++i is more efficient. Thanks for that clarification! |
||
|
|
|
My C is a little rusty, so I apologize in advance. Speedwise, I can understand the results. But, I am confused as to how both files came out to the same MD5 hash. Maybe a for loop runs the same, but wouldn't the following 2 lines of code generate different assembly?
vs
The first one writes the value to the array, then increments i. The second increments i then writes to the array. I'm no assembly expert, but I just don't see how the same executable would be generated by these 2 different lines of code. Just my two cents. |
||
|
|
|
In C, the compiler can generally optimize them to be the same if the result is unused. However, in C++ if using other types that provide their own ++ operators, the prefix version is likely to be faster than the postfix version. So, if you don't need the postfix semantics, it is better to use the prefix operator. |
||
|
|
|
|
@Jason Z The compiler optimization happens before the assembly is finished being generated, it would see that the i variable is not used anywhere else on the same line, so holding its value would be a waste, it probably effectively flips it to i++. But that's just a guess. I can't wait till one of my lecturers tries to say it's faster and I get to be the guy who corrects a theory with practical evidence. I can almost feel the animosity already ^_^ |
||
|
|
|
@Tarks: you are a man after my own heart. Good luck in that class! |
||
|
|
|
|
Taking a leaf from Scott Meyers, More Effective c++ Item 6: Distinguish between prefix and postfix forms of increment and decrement operations. The prefix version is always preferred over the postfix in regards to objects, especially in regards to iterators. The reason for this if you look at the call pattern of the operators.
Looking at this example it is easy to see how the prefix operator will always be more efficient than the postfix. Because of the need for a temporary object in the use of the postfix. This is why when you see examples using iterators they always use the prefix version. But as you point out for int's there is effectively no difference because of compiler optimisation that can take place. |
||
|
|
|
A better answer is that ++i will sometimes be faster but never slower. Everyone seems to be assuming that 'i' is a regular built-in type such as int. In this case there will be no measurable difference. However if 'i' is complex type then you may well find a measurable difference. For i++ you must make a copy of your class before incrementing it. Depending on what's involved in a copy it could indeed be slower since with ++it you can just return the final value.
Another difference is that with ++i you have the option of returning a reference instead of a value. Again, depending on what's involved in making a copy of your object this could be slower. A real-world example of where this can occur would be the use of iterators. Copying an iterator is unlikely to be a bottle-neck in your application, but it's still good practice to get into the habit of using ++i instead of i++ where the outcome is not affected. |
||
|
|
|
@Mark Harrison The C++ compiler is allowed to eliminate stack based temporaries even if doing so changes program behavior. MSDN link for VC 8: http://msdn.microsoft.com/en-us/library/ms364057(VS.80).aspx MSN |
||
|
|
|
Nothing wrong with your C, but you didn't read the original question in full:-
Note the italics. In your example, the 'result' of i++/++i is used, but in the idiomatic for loop, the 'result' of the pre/postincrement operator isn't used so the compiler can do what it likes. |
||
|
|
|
|
Here's an additional observation if you're worried about micro optimisation. Decrementing loops can 'possibly' be more efficient than incrementing loops (depending on instruction set architecture e.g. ARM), given:
On each loop you you will have one instruction each for:
Whereas a decrementing loop:
The loop will have an instruction for each of:
Of course this works only when decrementing to zero! Remembered from the ARM System Developer's Guide. |
||
|
|
|
From Efficiency versus intent by Andrew Koenig :
And :
So, if the resulting value is not used, I would use ++i. But not because it is more efficient: because it correctly states my intent. |
||||
|
|
|
Please don't let the question of "which one is faster" be the deciding factor of which to use. Chances are you're never going to care that much, and besides, programmer reading time is far more expensive than machine time. Use whichever makes most sense to the human reading the code. |
||
|
|
|
|
I always prefer pre-increment, however ... I wanted to point out that even in the case of calling the operator++ function, the compiler will be able to optimize away the temporary if the function gets inlined. Since the operator++ is usually short and often implemented in the header, it is likely to get inlined. So, for practical purposes, there likely isn't much of a difference between the performance of the two forms. However, I always prefer pre-increment since it seems better to directly express what I"m trying to say, rather than relying on the optimizer to figure it out. Also, giving the optmizer less to do likely means the compiler runs faster. |
||||||
|
|
|
@Mark Even though the compiler is allowed to optimize away the (stack based) temporary copy of the variable and gcc (in recent versions) is doing so, doesn't mean all compilers will always do so. I just tested it with the compilers we use in our current project and 3 out of 4 do not optimize it. Never assume the compiler gets it right, especially if the possibly faster, but never slower code is as easy to read. If you don't have a really stupid implementation of one of the operators in your code: Alwas prefer ++i over i++. |
||
|
|
|
|
I prefer ++i than i++ |
||
|
|
