Is the limit in the following loop (12332*324234) calculated once or every time the loop runs?
for(int i=0; i<12332*324234;i++)
{
//Do something!
}
|
|
For this it it calculated once, or more likely 0 times. The compiler will optimize the multiplication away for you. However this is not always the case if you have something like.
Because the compiler is not always able to see what EDIT: As MainMa said in a comment, you are in this situation you can eliminate the cost by doing something like this:
IF you are certain that the value of |
|||||
|
|
Actually that won't compile because it will overflow but if you make it a smaller number and open up Reflector you will find something like this.
|
|||||
|
|
This is one of the most commonly misunderstood behavior of loops in C#. Here's what you need to know:
So, for example:
In this case, the expression However, in this case:
The value of In the case of something like the following:
The cost of computing the The compiler cannot optimize away the calls to methods or properties that occur within the loop bounds expression because they may also change with each iteration. Imagine if the loop above was written as:
Clearly Now, in most cases, the cost of computing the bounds constraint for a loop is going to be relatively inexpensive, so you don't have to worry about it. But you do need to understand how the compiler treats loop bounds like this. Also, as a developer you need to be careful about using properties or methods that have side-effects as part of a bounds expression - after all, these side effects will occur on each iteration of the loop. |
||||
|
|
|
There's two ways to interpret your question:
The answer to those two, different, questions are:
In other words:
If the evaluation of |
|||
|
|
First of all the for loop in the question will not compile. But lets say it was
VS
the IL code is exactly same .
Now even if I replace it with a function in the loop like
I get this IL code
which looks same to me. So to me it looks like there is no difference in FOR LOOP with finite limit , another with calculate limit , and last with limit coming from a function. So As long as the code copiles , you know what you are doing in a mammoth loop like this and you have enough memory in process i think it will work and produce same perf. (in C#) |
|||
|
|
|
As @Chaos noted, it won't compile. But if you use a representable expression (like 100*100), the result will probably be hard-coded. On Mono, the CIL includes:
As you can see, 100 * 100 is hard-coded as 10000. However, in general it will be evaluated each time, and if a method or property is called, this probably can't be optimized away. |
||||
|
|
|
It looks to be calculated every time. Disassembly from VS2008.
|
|||||
|
|
Yes, comparison value is calculated every loop cycle. If you absolutely have to use for-loop, which is rarely really necessary anymore, afaik there is only one "good" loop template:
Notice the prefix increment too. |
|||||||||
|