Infinite Recursion
paulbarry.com
Infinite Recursion
1–7 of 7 posts
Re: Infinite Recursion
#2If the recursion is indirect, for example, Scala cannot optimize tail calls, because of the limited JVM instruction set.
Why is that?
Re: Infinite Recursion
#3From: http://stronglytypedblog.blogspot.com/2009/08/scala-tail-rec... If the recursion is indirect, for example, Scala cannot optimize tail calls, because of the limited JVM instruction set. Why is that?
http://java.sun.com/docs/books/jvms/second_edition/html/Inst...
Re: Infinite Recursion
#4From: http://stronglytypedblog.blogspot.com/2009/08/scala-tail-rec... If the recursion is indirect, for example, Scala cannot optimize tail calls, because of the limited JVM instruction set. Why is that?
Apparently the JVM goto instruction can only jump to an address within the same method: http://java.sun.com/docs/books/jvms/second_edition/html/Inst...
There's also the JMP instruction, which is similar and allows the current method's arguments to be passed to another function, discarding the current stack frame and returning to the current method's caller.
Re: Infinite Recursion
#5Re: Infinite Recursion
#6"The same mistake is done on the Computer Language Benchmark Game. There's an Array sorting benchmark where Haskell just blows away even hand-optimized C. The secret is that the benchmark never prints out the contents of the sorted array. The C compiler isn't smart enough to recognize that the array is never actually used anywhere, but Haskell is, and so the entire benchmark basically compiles down to the equivalent of "int main() { return 0; }"."
Re: Infinite Recursion
#7Earlier quoted context omitted.
Apparently the JVM goto instruction can only jump to an address within the same method: http://java.sun.com/docs/books/jvms/second_edition/html/Inst...
I think the CLR team was able to learn from some of the JVM's shortcomings; this limitation is one example. .NET IL has the TAIL. instruction prefix that allows tail calls. It can be prepended to any call instruction outside of an exception handling block. There's also the JMP instruction, which is similar and allows the current method's arguments to be passed to another function, discarding the current stack frame a…
https://connect.microsoft.com/VisualStudio/feedback/ViewFeed...
Apparently there are some performance issues with the TAIL IL instruction, though I wonder if it's really as slow as pushing a new frame on the call stack.