Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a tail recursive pathfinding algorithm that I've implemented in Javascript and would like to know if any (all?) browsers would possibly get stack overflow exceptions.

share|improve this question
2  
Is it actually a recursive algorithm, or an iterative algorithm implemented with recursion? My understanding is that TCO can only help with the latter. – nmichaels Sep 7 '10 at 16:32

4 Answers

up vote 17 down vote accepted

The ECMAScript 4 spec was originally going to add support for TCO, but it was dropped.

http://lambda-the-ultimate.org/node/3047

As far as I know, no widely-available implementations of JS currently do automatic TCO. This may be of use to you, though:

http://paulbarry.com/articles/2009/08/30/tail-call-optimization

Essentially, using the accumulator pattern accomplish the same effect.

share|improve this answer
5  
Or just use a trampoline... – sclv Sep 8 '10 at 0:58
Just an FYI, Rhino has automatic TCO along with Continuations in "interpreted" mode (opt = -1) wiki.apache.org/cocoon/RhinoWithContinuations – Mark Porter Oct 1 '12 at 15:27
(sorry for trolling) ECMAScript 6 has included TCO, termed Proper Tail Calls in the specification. – aaronfrost Jan 20 at 6:13
@sclv: What's the trampoline reference? – bukzor Jan 29 at 8:28

Pretty much every browser you encounter will barf on "too much recursion". Here's an entry in the V8 bug tracker that will probably be interesting reading.

If it's simple self-recursion, it's probably worth the effort to use explicit iteration rather than hoping for tail-call elimination.

share|improve this answer

No joy for the moment, but thankfully proper tail calls are slated for Harmony (ECMAScript version 6) http://wiki.ecmascript.org/doku.php?id=harmony:proper_tail_calls

share|improve this answer

Tail call optimization is now available in LispyScript which compiles to javascript. You can read more about it here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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