Tail call is a subroutine call that happens inside another procedure as its final action; it may produce a return value which is then immediately returned by the calling procedure.
2
votes
2answers
98 views
When executed will this be a tail call?
Once compiled and ran will this behave as a tail call?
let rec f accu = function
| [] -> accu
| h::t -> (h + accu) |> f <| t
Maybe there is an easy way to test behavior that I'm ...
1
vote
1answer
80 views
Does Arduino support tail call elimination?
I was wondering if the standard Arduino environment support tail call elimination...
Does anyone know something about it?
3
votes
2answers
97 views
CIL (MSIL) tailcall recursion in instance methods
Background: I am programming a .NET compiler (very similar to C#) for a school project. One of the features I am currently trying to add is tailcall recursion within methods.
More info: In CIL, the ...
3
votes
1answer
220 views
Immutable Trie structure in F#
I am playing around with the aho-corasick algorithm to try and get a little better with F#, and I ran across a problem with the Trie implementations, they are all mutable or can't be tail call ...
4
votes
1answer
350 views
how is C# tail recursion optimization possible when a stack trace is returned when an exception is raised
I'be seen a few questions regarding missing tail call optimization in C# supposedly making the language ill suited for recursive algorithm implementations. this, however,begs the question, how can we ...
10
votes
4answers
704 views
How to recognize what is, and what is not tail recursion?
Sometimes it's simple enough (if the self call is the last statement, it's tail recursion), but there are still cases that confuse me. A professor told me that "if there's no instruction to execute ...
0
votes
1answer
235 views
How to implement tail calls in a custom VM
How can I implement tail calls in a custom virtual machine?
I know that I need to pop off the original function's local stack, then it's arguments, then push on the new arguments. But, if I pop off ...
3
votes
3answers
1k views
Visual C++ Tail Call Optimization
According to answers to that question:
Which, if any, C++ compilers do tail-recursion optimization?
it seems, that compiler should do tail-recursion optimization.
But I've tried proposed options and ...
1
vote
2answers
593 views
Tail calling in Java and C#?
I was reading about Clojure and found a discussion about Java not supporting tail calls, in the current version, and that people were throwing exceptions to simulate tail calling in the JVM, anyways ...
4
votes
5answers
958 views
Functional languages with concurrent garbage collectors?
Microsoft's new F# programming language provides the powerful combination of functional programming (first-class lexical closures and tail calls) with an efficient concurrent garbage collector that ...