hi when having a
vector<int> var;
for(int i=0; i< var.size();i++) , is the size() function called each time or only once ?
from the answers I guess I better use iterators , or just have variable before the loop
|
hi when having a
from the answers I guess I better use iterators , or just have variable before the loop |
||||
|
In theory, it is called each time, since a for loop:
is expanded to something like
(notice the curly braces, because initialization is already in an inner scope) In practice, if the compiler understands that a piece of your condition is invariant through all the duration of the loop and it does not have side-effects, it can be smart enough to move it out. This is routinely done with The compiler may be helped in this optimization also by the various Doing that optimization by hand is worthy if you know that a part of your condition is "expensive" to evaluate (and such condition isn't, since it usually boils down to a pointer subtraction, which is almost surely inlined). Edit: as others said, in general with containers it's better to use iterators, but for For lists and other containers, instead, using iterators instead of random access can be really important, since using random access may mean walk every time the list, while incrementing an iterator is just a pointer dereference. The use of |
|||||||||||||||||
|
|
It's 'called' each time, but I put called into quotes because it really probably is just an inline method call, so you don't have to worry about its performance. Why not use |
|||||||||||
|
|
It must be called everytime because size() might return a different value everytime. Therefore there's no big choice it simply must be. |
|||||
|
|
As other have said
on top of which
|
|||
|
|
|
The However, what you should pay attention to is:
Therefore, the loop should be:
|
||||
|
|
|
I think that if the compiler can conclusively deduce that the variable
then the above may be transposed to something equivalent of
However, I am not absolutely sure, so comments are welcome :) Also,
|
|||||||
|
|
But it could be done in this way (providing that this loop intends to only read/write without actually changing the size of a vector):
In the loop above you have just one call to size independently from size being inlined or not. |
|||
|
|
|
as others said, The compiler shall decide what to do with the actual code written. The key figure is that it is called each time. But if you want to get a performance boost, it is best to write your code with some considerations. Your case is one of them, there are others as well, like the difference between these two pieces of code:
The difference is that the first one will not change the ram page too much per references, but the other will exhaust your cache and TLB and other stuff. Also inline won't help that much! because the order of the calling function will remain as n(size of the vector) times. It helps in some places though, but the best thing is to rewrite your code. But! if you want to let a compiler do it's optimizations over your code NEVER put volatile, like so:
It prevents the compiler from optimizing. If you need another hint for performance use register instead of volatile.
The compiler will try not to move i from the CPU-registers to RAM. It is not ensured that it can do it, but it will do it's best ;) |
|||||||||||
|
std::for_each(var.begin(), var.end(), Action());– Loki Astari Oct 10 '10 at 21:21