We looked at this answer for C in this question:
http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c
What's the answer for C++?
|
We looked at this answer for C in this question: http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c What's the answer for C++? | |||||
feedback
|
|
[Executive Summary: Use ++i if you don't have a specific reason to use i++.] For C++, the answer is a bit more complicated. If i is a simple type (not an instance of a C++ class) then the answer given for C holds, since the compiler is generating the code. However, if i is an instance of a C++ class, then i++ and ++i are making calls to the operator++() function. Here's a standard pair of these functions:
Since the compiler isn't generating code, but just calling the operator++ function, there is no way to optimize away the tmp variable and its associated copy constructor. If the copy constructor is expensive then this can have a significant performance impact. (thanks to Paul for inquiring about the difference between C and C++.) | |||||||||||||||||
feedback
|
|
Yes. There is. The ++ operator may or may not be defined as a function. For primitive types (int, double, ...) the operators are built in, so the compiler will probably be able to optimize your code. But in the case of an object that defines the ++ operator things are different. The operator++(int) function must create a copy. That is because postfix ++ is expected to return a different value than what it holds: it must hold its value in a temp variable, increment its value and return the temp. In the case of operator++(), prefix ++, there is no need to create a copy: the object can increment itself and then simply return itself. Here is an illustration of the point:
Every time you call operator++(int) you must create a copy, and the compiler can't do anything about it. When given the choice, use operator++(); this way you save a copy. It might be significant in the case of many increments (large loop?) and/or large objects. | ||||
|
feedback
|
|
It's not entirely correct to say that the compiler can't optimize away the temporary variable copy in the postfix case. A quick test with VC shows that it, at least, can do that in certain cases. In the following example, the code generated is identical for prefix and postfix, for instance:
Whether you do ++testFoo or testFoo++, you'll still get the same resulting code. In fact, without reading the count in from the user, the optimizer got the whole thing down to a constant. So this:
Resulted in the following:
So while it's certainly the case that the postfix version could be slower, it may well be that the optimizer will be good enough to get rid of the temporary copy if you're not using it. | |||||
feedback
|
|
There's something about it on Google c++ coding style document. | |||
feedback
|
|
I would like to point out an excellent post by Andrew Koenig on Code Talk very recently. http://dobbscodetalk.com/index.php?option=com_myblog&show=Efficiency-versus-intent.html&Itemid=29 At our company also we use convention of ++iter for consistency and performance where applicable. But Andrew raises over-looked detail regarding intent vs performance. There are times when we want to use iter++ instead of ++iter. So, first decide your intent and if pre or post does not matter then go with pre as it will have some performance benefit by avoiding creation of extra object and throwing it. | |||
|
feedback
|
|
Mark: Just wanted to point out that operator++'s are good candidates to be inlined, and if the compiler elects to do so, the redundant copy will be eliminated in most cases. (e.g. POD types, which iterators usually are.) That said, it's still better style to use ++iter in most cases. :-) | |||
|
feedback
|
|
From the c++ faq lite (13.15):
| |||
feedback
|
|
@Ketan
Obviously post and pre-increment have different semantics and I'm sure everyone agrees that when the result is used you should use the appropriate operator. I think the question is what should one do when the result is discarded (as in After all that's the reason the language is not called " [*] Insert obligatory discussion about | |||||
feedback
|
|
@Mark: I deleted my previous answer because it was a bit flip, and deserved a downvote for that alone. I actually think it's a good question in the sense that it asks what's on the minds of a lot of people. The usual answer is that ++i is faster than i++, and no doubt it is, but the bigger question is "when should you care?" If the fraction of CPU time spent in incrementing iterators is less than 10%, then you may not care. If the fraction of CPU time spent in incrementing iterators is greater than 10%, you can look at which statements are doing that iterating. See if you could just increment integers rather than using iterators. Chances are you could, and while it may be in some sense less desirable, chances are pretty good you will save essentially all the time spent in those iterators. I've seen an example where the iterator-incrementing was consuming well over 90% of the time. In that case, going to integer-incrementing reduced execution time by essentially that amount. (i.e. better than 10x speedup) | ||||
|
feedback
|
|
Here's a benchmark for the case when increment operators are in different translation units. Compiler with g++ 4.5. Ignore the style issues for now
O(n) incrementTest
ResultsResults (timings are in seconds) with g++ 4.5 on a virtual machine:
O(1) incrementTestLet us now take the following file:
It does nothing in the incrementation. This simulates the case when incrementation has constant complexity. ResultsResults now vary extremely:
ConclusionPerformance-wiseIf you do not need the previous value, make it a habit to use pre-increment. Be consistent even with builtin types, you'll get used to it and do not run risk of suffering unecessary performance loss if you ever replace a builtin type with a custom type. Semantic-wise
Knuth.Premature optimization is the root of all evil. As is premature pessimization. | ||||
|
feedback
|
|
The intended question was about when the result is unused (that's clear from the question for C). Can somebody fix this since the question is "community wiki"? About premature optimizations, Knuth is often quoted. That's right. but Donald Knuth would never defend with that the horrible code which you can see in these days. Ever seen a = b + c among Java Integers (not int)? That amounts to 3 boxing/unboxing conversions. Avoiding stuff like that is important. And uselessly writing i++ instead of ++i is the same mistake. EDIT: As phresnel nicely puts it in a comment, this can be summed up as "premature optimization is evil, as is premature pessimization". Even the fact that people are more used to i++ is an unfortunate C legacy, caused by a conceptual mistake by K&R (if you follow the intent argument, that's a logical conclusion; and defending K&R because they're K&R is meaningless, they're great, but they aren't great as language designers; countless mistakes in the C design exist, ranging from gets() to strcpy(), to the strncpy() API (it should have had the strlcpy() API since day 1)). Btw, I'm one of those not used enough to C++ to find ++i annoying to read. Still, I use that since I acknowledge that it's right. | |||||
feedback
|
|
An the reason why you ought to use ++i even on built-in types where there's no performance advantage is to create a good habit for yourself. | |||||
feedback
|
|
@wilhelmtell The compiler can elide the temporary. Verbatim from the other thread: 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 | |||
feedback
|
|
Both are as fast ;) If you want it is the same calculation for the processor, it's just the order in which it is done that differ. For example, the following code :
Produce the following assembly :
You see that for a++ and b++ it's an incl mnemonic, so it's the same operation ;) | ||||
|
feedback
|