I'm not sure if the following code can cause redundant calculations, or is it compiler-specific?
for ( int i = 0; i < strlen(ss); ++i )
{
// blabla
}
So will strlen() be calculated everytime when i increases?
|
I'm not sure if the following code can cause redundant calculations, or is it compiler-specific?
So will |
||||
| show 13 more comments |
|
Yes, I'd do something like
or possibly
as long as the string isn't going to change length during the iteration. If it might, then you'll need to either call |
|||||||||||||||||||||
|
|
Yes, every time you use the loop. Then it will every time calculate the length of the string. so use it like this:
In the above code See this Link for more information. In the code below every time the loop runs
|
|||||||||||||||||
|
|
A good compiler may not calculate it every time, but I don't think you can be sure, that every compiler does it. In addition to that, the compiler has to know, that strlen(ss) does not change. This is only true if ss is not changed in the for-loop. For example if you use a read-only function on ss in the for-loop but don't declare the ss-parameter as const, the compiler can not even know, that ss is not changed in the loop and has to calculate strlen(ss) in every iteration |
|||||||||||||||||||
|
|
If You should save the
|
|||||||||||||||
|
|
Formally yes, Anyway I do not want to negate the possibility of the existance of some clever compiler optimisation, that will optimise away any successive call to strlen() after the first one. |
|||
|
|
|
The predicate code in it's entirety will be executed on every iteration of the
The compiler doesn't know either of these things and hence can't safely memoize the result of the first call |
|||||||||||||||
|
|
Yes, the |
||||
|
|
|
Yes, the If you want to improve the efficiency then always remember to save everything in local variables... It will take time but it's very useful .. You can use code like below:
|
||||
|
|
|
Not common nowadays but 20 years ago on 16 bit platforms, I'd recommend this: for (char* p=str; *p; p++) { } If your compiler isn't very smart in optimization the above code can result in good assembly code. |
||||
|
|
|
Yes. The test doesn't know that ss doesn't get changed inside the loop. If you know that it won't change then I would write:
|
|||
|
|
|
Yes. strlen will be calculated everytime when i increases. If you didn't change ss with in the loop means it won't affect logic otherwise it will affect. It is safer to use following code.
|
|||
|
|
|
YES, in simple words.
And there is small no in rare condition in which compiler is wishing to, as an optimization step if it finds that there is no changes made in |
|||
|
|
|
Yes.
Below code shows why the compiler should not optimize
|
|||
|
|
We can easily test it :
Loop condition evaluates after each repetition, before restarting the loop . |
|||
|
|
|
well, I noticed that someone is saying that it is optimized by default by any "clever" modern compiler. By the way look at results without optimization. I tried:
My compiler: g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
|
|||
|
|
|
Elaborating on Prætorian's answer I recommend the following:
disadvantage is that you have to use |
|||
|
|
ssinside the loop. – Hristo Iliev Jul 6 '12 at 15:21ssis never modified, it can hoist the computation out of the loop. – Daniel Fischer Jul 6 '12 at 15:22