Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Basic C# question
Message
From
06/07/2006 12:23:12
 
 
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 2.0
Miscellaneous
Thread ID:
01133939
Message ID:
01134190
Views:
21
Viv,

There are a few permutations of what will happen based on the optimizers analysis of your code ie. is the array on the stack etc. It could decide to unroll and inline the loop completely, or it could decide to re-order instructions for better cache coherence?

The point I should have added to my original comment was that MS are putting a huge amount of time and effort into optimizing JITters (go look at Pheonix and POGO) to the point where they can actually generate code based on how the user "uses" the application!

You should make sure that you optimize for algorithmic efficiency and not assume that the IL represents the actual native code being generated!

Regards
Neil
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform