In what situations lists in F# are optimized by F# compiler to arrays, to for-loops, while loops, etc. without creating actual list of single linked data?
Never.
Your later comments are enlightening because you assume that this is a flaw in F#:
...it should be smart enough to do it. Similar to Haskell compiler...
Somewhat true.
...Haskell compiler is doing a lot of such optimizations...
True.
However, this is actually a really bad idea. Specifically, you are pursuing optimizations when what you really want is performance. Haskell offers lots of exotic optimizations but its performance characteristics are actually really bad. Moreover, the properties of Haskell that make these optimizations tractable require massive sacrifices elsewhere:
- Purity makes interoperability much harder so Microsoft killed Haskell.NET and Haskell lives on only with its own incompatible VM.
- The GC in Haskell's VM has been optimized for purely functional code at the expense of mutation.
- Purely functional data structures are typically 10× slower than their imperative equivalents, sometimes asymptotically slower and in some cases there is no known purely functional equivalent.
- Laziness and purity go hand-in-hand ("strict evaluation is a canonical side effect") and laziness not only massively degrades performance but makes it wildly unpredictable.
- The enormous numbers of optimizations added to Haskell in an attempt to combat this poor performance (e.g. strictness analysis) render performance even less predictable.
- Unpredictable cache behaviour makes scalability unpredictable on multicores.
For a trivial example of these optimizations not paying off look no further than the idiomatic 2-line quicksort in Haskell which, despite all of its optimizations, remains thousands of times slower than Sedgewick's quicksort in C. In theory, a sufficiently smart Haskell compiler could optimize such source code into an efficient program. In practice, the world's most sophisticated Haskell compilers cannot even do this for a trivial two-line program much less real software.
The source code to the Haskell programs on The Computer Language Benchmarks Game provide some enlightening examples of just how horrific Haskell code becomes when you optimize it.
I want a programming language to:
- Have a simple method of compilation that keeps performance predictable.
- Make it easy to optimize by hand where optimization is required.
- Have a high ceiling on performance so that I can get close to optimal performance when necessary.
F# satisfies these requirements.
seqrather than leaving it to compiler's mercy? – ssg Nov 1 '11 at 8:43