up vote 26 down vote favorite
4
share [g+] share [fb]

I found this question about which languages optimize tail recursion. What I want to know is why C# doesn't optimize tail recursion, whenever possible?

For a concrete case, why isn't this method optimized into a loop (VS2008 32 bit, if that matters)?:

private static void Foo(int i)
{
  if (i == 1000000)
    return;

  if (i % 100 == 0)
    Console.WriteLine(i);

  Foo(i+1);
}
link|improve this question

68% accept rate
feedback

4 Answers

up vote 23 down vote accepted

JIT compilation is a tricky balancing act between not spending too much time doing the compilation phase (thus slowing down short lived applications considerably) vs not doing enough analysis to keep the application competitive in the long term with a standard Ahead of Time compilation.

Interestingly the ngen compilation steps are not targeted to being more aggressive in their optimizations, I suspect this is because they simply don't want to have bugs where the behaviour is dependent on whether the JIT or ngen was responsible for the machine code.

The CLR itself does support tail call optimization, but the language specific compiler must know how to generate the relevant opcode and the JIT must be willing to respect it. F#'s fsc will generate the relevant opcodes (though for a simple recursion it may just convert the whole thing into a while loop directly). I believe the current csc will too.

See this blog post for some details (quite possibly now out of date given recent JIT changes) Note that the CLR changes for 4.0 the x86, x64 and ia64 will respect it

link|improve this answer
2  
See also this post: social.msdn.microsoft.com/Forums/en-US/netfxtoolsdev/thread/… wherein I discover that tail is slower than a regular call. Eep! – plinth Jan 29 '09 at 13:07
feedback

This Microsoft Connect feedback submission should answer your question. It contains an official response from Microsoft, so I'd recommend going by that.

Thanks for the suggestion. We've considered emiting tail call instructions at a number of points in the development of the C# compiler. However, there are some subtle issues which have pushed us to avoid this so far: 1) There is actually a non-trivial overhead cost to using the .tail instruction in the CLR (it is not just a jump instruction as tail calls ultimately become in many less strict environments such as functional language runtime environments where tail calls are heavily optimized). 2) There are few real C# methods where it would be legal to emit tail calls (other languages encourage coding patterns which have more tail recursion, and many that rely heavily on tail call optimization actually do global re-writing (such as Continuation Passing transformations) to increase the amount of tail recursion). 3) Partly because of 2), cases where C# methods stack overflow due to deep recursion that should have succeeded are fairly rare.

All that said, we continue to look at this, and we may in a future release of the compiler find some patterns where it makes sense to emit .tail instructions.

By the way, as it has been pointed out, it is worth noting that tail recursion is optimised on x64.

link|improve this answer
1  
You might find this helpful too: weblogs.asp.net/podwysocki/archive/2008/07/07/… – Noldorin Jan 29 '09 at 12:36
Very nice article Noldorin, thx for sharing! – Alexandre Brisebois Jan 29 '09 at 12:40
No prob, glad you find it helpful. – Noldorin Jan 29 '09 at 13:34
feedback

I was recently told that C# compile for 64 bit does optimize tail recursion.

C# also implements this, the reason why it is not always applied, is that the rules used to apply tail recursion are very strict.

link|improve this answer
The x64 jitter does this, but the C# compiler does not – Mark Sowul Sep 22 '11 at 20:12
thanks for the information. This is white different then what I previously thought. – Alexandre Brisebois Sep 27 '11 at 13:49
feedback

Problaby because recursion is harder than iteration for many problems, in others it's trivial to convert recursion into iteration and many others probably will not cause a stackoverflow anyway, so probably it was not a must-have optimization and they left it to the JIT (64-bits JIT does, but 32-bit JIT not)
C# compiler doesn't have as many optimizations as most C++ compilers.
For example divide a variable between 3 using division and binary shift and multiplication, the division will be slower in C# but the C++ compiler probably will optimize it better than you.

link|improve this answer
3  
If a function is tailcall recursive, all you really need is a goto statement. – Jason Baker Jan 29 '09 at 13:09
Not if A() calls B() and B() calls A() – Mark Sowul Sep 22 '11 at 20:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.