Saturday 23 May 2009

Performance Considerations for using .NET framework

Very good article here.
Also details some of the optimisations on the path from MSIL to native, such as:

  • Constant folding - if x=5+7 at compile-time, x=12 at runtime
  • Loop unrolling
  • Code hoisitng - read the article to find out what this is!

No comments: