aboutsummaryrefslogtreecommitdiff
path: root/tests/tailcall.test
AgeCommit message (Collapse)AuthorFilesLines
2020-04-02tailcall: Fix to avoid tailcalls consuming C stack framesSteve Bennett1-1/+1
The purpose of a tailcall is to avoid using additional stack frames, however although were were not creating an extra Tcl callframe we were using C stack frames through the call sequence: JimCallProcedure -> Jim_EvalObjList -> JimInvokeCommand -> JimCallProcedure This meant that a large number of tailcalls would overflow the stack. Instead we need to have JimCallProcedure return to JimInvokeCommand where the tailcall can be handled by a subsequent call to JimCallProcedure. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2014-01-03tailcall: properly merge tailcall framesSteve Bennett1-1/+43
Resolve the tailcall command immediately in [tailcall] and stash it. If a tailcall is currently being evaluated, new tailcalls in the same frame are merged/deferred to evaluate in the same C stack frame. Can't merge tailcall evaluations across uplevel. Add some tests for these cases Signed-off-by: Steve Bennett <steveb@workware.net.au>
2013-12-21tailcall should resolve command in current namespaceSteve Bennett1-0/+12
Currently tailcall resolves the command in the parent namespace. This also fixes the deletion of [local] commands such that they are always correctly deleted. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-11-28Implement [alias] in CSteve Bennett1-8/+0
And allow commands to set a temporary name for the purpose of generating error messages Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-10-21Tcl 8.6 can run most tailcall testsSteve Bennett1-2/+3
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-10-21Return from tailcall should be passed throughSteve Bennett1-0/+13
If a proc invokes a command via a tailcall and that command invokes "return", the return should be passed back to the caller of the proc. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-12-06Add more dependencies for testsSteve Bennett1-0/+1
Allow tests to run with almost all features disabled
2010-11-22Overhaul unit test frameworkSteve Bennett1-1/+5
Much closer to tcltest now, including constraints. Try to get all appropriate tests running under both Jim and Tcl. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-10-15Improvements to tailcallSteve Bennett1-0/+50
Add tests and documentation Make tailcall work within 'try' Fix tailcall interaction with uplevel Use tailcall for dispatch in tree.tcl Also some related improvements in tree.tcl Signed-off-by: Steve Bennett <steveb@workware.net.au>