Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

which languages support tail recursion optimization?

share|improve this question
Do you mean "support optimizing tail-recursion into simple loops", or "support tail recursion at all"? I'm not sure why a language that supports recursion wouldn't support that one variety of it. – T.E.D. Dec 4 '08 at 14:36
1  
Oh dear, so many names and meanings! – leppie Dec 4 '08 at 15:49

closed as not constructive by Robert Harvey May 23 at 17:58

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

12 Answers

Scheme, Haskell, ...

share|improve this answer
Scala doesn't have real tail recursion optimization, as JVM doesn't support it. It uses trampolines, which are more emulation of TCO that TCO itself. – Marko Kocić Sep 10 '12 at 13:52

Scheme, Lua, Standard ML, Mozart/Oz.

These languages promise that such code

return some_function(params);

reuses current stack frame.

share|improve this answer

Erlang is another.

share|improve this answer

I would assume that tail recursion would be an implementation detail of specific compilers.

share|improve this answer
6  
Some language specs demand that conforming implementions do tail-call optimization. – Brian Dec 4 '08 at 14:35
2  
Per Wikipedia: "Proper tail recursion optimization is required by the standard definitions of some programming languages, such as Scheme." – slim Dec 4 '08 at 14:40
To the other commenters: That is beside the point. The question was about languages that support it, not about ones that require it. – T.E.D. Dec 4 '08 at 15:26
9  
It's not beside the point at all. "z is an implementation detail" implies than you can never state "Language x always supports z". But you can state "Scheme always supports tail recursion optimization". – slim Dec 4 '08 at 15:40
3  
(continued) ... a full answer to the question (which we're unlikely to get) would need to be divided into several categories. Languages that always support it, those than cannot ever support it, those that could support it (but no such implementation is known), and those with some implementations. – slim Dec 4 '08 at 15:43

The F# compiler converts directly recursive functions into loops, and all calls in tail position emit code with the CLR .tail opcode, so that you can write e.g. mutually recursive functions that need not consume the stack.

share|improve this answer
Believe it or not, tail recursion optimization is a feature of C# as well (albeit one with a lot of restrictions). – Jason Baker Dec 4 '08 at 15:09
I was under the impression that C# did not implement tail recursion optimization as mentioned in the following book : "Real World Functional Programming by Tomas Petricek" – Alexandre Brisebois Dec 4 '08 at 15:23
There are enough caveats to using TRO in C# that it shouldn't be something to rely on. But it does make a nice "bonus" optimization in situations where the criteria are met to use TRO. – Jason Baker Dec 4 '08 at 15:30

64-bit .Net supports tail recursion optimization, but you shouldn't make dependencies on it: Tail Call JIT conditions.

The 2nd part of that post goes into much more detail: Enter, Leave, Tailcall Hooks Part 2: Tall tales of tail calls

share|improve this answer
note that as of the VS 2010 release you can take a dependency on the x64 JIT respecting a tail call directive but not that it will always be quick – ShuggyCoUk Jun 19 '09 at 15:08
@ShuggyCoUk - I am going to translate that to "as of .NET 4". VS 2010 is an IDE (it does not generate any CIL and it is certainly not the JIT). – Justin Aug 17 '11 at 14:48
@Justin. You're right, I should have phrased that as, "as off the c# 4.0 compiler and CLR 4 you can take a dependency..." – ShuggyCoUk Aug 17 '11 at 15:10
@Justin, oh and technically the IDE can generate CIL, It hosts the compiler rather than launching a new process and using a latter version of VS will often result in using the latest compiler code even when targeting older versions. This is of course a pedantic point that in no way changes the validity of the main thrust of your comment. – ShuggyCoUk Aug 17 '11 at 15:13

Without compiling a comprehensive list of languages:

  • if you need it, it's there
  • if it's not there, you don't need it

Typically the languages that optimise tail recursion are languages in which tail recursion is the commonest way to achieve iteration.

In Scheme, you iterate by recursing. Therefore, the language standard requires tail recursion optimisation - otherwise iterating over very long lists would be impossible.

In most procedural languages, you iterate with for or while - tail recursion optimization is no help there. In languages that provide these constructs, you wouldn't typically choose to use recursion for problems that could be solved with tail-recursion.

share|improve this answer
This is a bit too much of a generalization: I would love proper tail calls in JavaScript, but they are not there :(. Just because you have for and while does not mean a recursive solution isn't more readable or desirable, so support for proper tail calls would be welcome in most languages. – Tikhon Jelvis Feb 9 '12 at 8:45

SML and OCaml also

Dylan also asks the implementatin to be properly tail recusive.

One interesting point though is that simply adding a type signature to a function could render a function non-tail recursive.

define function count(i :: <integer>)
  if (i == 0)
    i ;
  else
    count(i - 1) ;
  end
end

is tail recusive, but

define function count(i :: <integer>) => (sum :: <integer>)
  if (i == 0)
    i ;
  else
    count(i - 1) ;
  end
end

is not. The reason is that adding the signature to the function requires the compiler to add code after the recursive call to check the type signature. This makes the function call no longer tail recursive.

share|improve this answer

LOGO supports tail recursion optimization.

share|improve this answer

Clojure supports tail recursion through the explicit use of the "recur" special form:

e.g. a simple tail-recursive factorial function:

(defn factorial [x accumulator]
  (if (<= x 1) 
    accumulator
    (recur (dec x) (* x accumulator))))

(factorial 100 1)
=> 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000
share|improve this answer

Perl with goto systax:

From perldoc:

"The goto-&NAME form is quite different from the other forms of goto. In fact, it isn't a goto in the normal sense at all, and doesn't have the stigma associated with other gotos. Instead, it exits the current subroutine (losing any changes set by local()) and immediately calls in its place the named subroutine using the current value of @_. This is used by AUTOLOAD subroutines that wish to load another subroutine and then pretend that the other subroutine had been called in the first place (except that any modifications to @_ in the current subroutine are propagated to the other subroutine.) After the goto, not even caller will be able to tell that this routine was called first."

share|improve this answer
Well, when we talk about tail recursion, usually it is in the context of functional programming. Perl is not even a functional programming language. And the existence of goto just suggest more that it is not. – Daniel Baktiar Mar 27 at 13:19

This isn't a laguage question, it's a compiler question. I don't know of any language that has some syntactic element in it that prevents a compiler from optimizing that way.

For example, I think any compiler that uses the gcc back end supports tail recursion elimination at -O3

share|improve this answer
Technically it isn't a language question but a compiler question. But when we're talking about languages loosely we tend to associate the standard compiler closely with the language. So it's like Java does not support while Haskell supports (qualifier: using their respective standard compilers). – blizpasta Dec 4 '08 at 15:29
I don't think "standard compiler" is a healthy concept to use - even with languages which probably won't ever have two implementations (e.g. Perl). Targeting a specific compiler is like writing IE-only HTML. – slim Dec 4 '08 at 15:52
There is no such thing as a "standard compiler" for C, Fortran, Ada, Lisp, Pascal, Cobol, or most other languages in existance. – T.E.D. Dec 4 '08 at 18:38
2  
Scheme requires tail call optimization: this is part of the language. If a Scheme compiler doesn't optimize it, then it's not a Scheme compiler. – Adam Goode Oct 21 '09 at 16:58
1  
@Lajla then please name some. That's what this question is about (if I understand right.) – finnw Oct 29 '11 at 17:44
show 4 more comments

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