How to implement continuations? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:04:53Zhttp://stackoverflow.com/feeds/question/6512http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/6512/how-to-implement-continuations11How to implement continuations?Kyle Cronin2008-08-09T01:18:37Z2009-05-18T23:28:26Z
<p>I'm working on a Scheme interpreter written in C. Currently it uses the C runtime stack as its own stack, which is presenting a minor problem with implementing continuations. My current solution is manual copying of the C stack to the heap then copying it back when needed. Aside from not being standard C, this solution is hardly ideal.</p>
<p>What is the simplest way to implement continuations for Scheme in C?</p>
http://stackoverflow.com/questions/6512/how-to-implement-continuations/6515#65153Answer by Patrick for How to implement continuations?Patrick2008-08-09T01:29:33Z2008-08-09T01:29:33Z<p>Use an explicit stack instead.</p>http://stackoverflow.com/questions/6512/how-to-implement-continuations/6566#65664Answer by Chris Jester-Young for How to implement continuations?Chris Jester-Young2008-08-09T02:49:25Z2008-08-09T03:20:13Z<p>I remember reading an article that may be of help to you: <em><a href="http://home.pipeline.com/%7Ehbaker1/CheneyMTA.html" rel="nofollow">Cheney on the M.T.A.</a></em> :-)</p>
<p>Some implementations of Scheme I know of, such as <a href="http://sisc.sourceforge.net/" rel="nofollow">SISC</a>, allocate their call frames on the heap.</p>
<p>@ollie: You don't need to do the hoisting if all your call frames are on the heap. There's a tradeoff in performance, of course: the time to hoist, versus the overhead required to allocate all frames on the heap. Maybe it should be a tunable runtime parameter in the interpreter. :-P</p>http://stackoverflow.com/questions/6512/how-to-implement-continuations/6572#65720Answer by olliej for How to implement continuations?olliej2008-08-09T02:55:01Z2008-08-09T02:55:01Z<p>Patrick is correct, the only way you can really do this is to use an explicit stack in your interpreter, and hoist the appropriate segment of stack into the heap when you need to convert to a continuation.</p>
<p>This is basically the same as what is needed to support closures in languages that support them (closures and continuations being somewhat related).</p>http://stackoverflow.com/questions/6512/how-to-implement-continuations/31951#319514Answer by Thomas Vander Stichele for How to implement continuations?Thomas Vander Stichele2008-08-28T10:05:19Z2008-08-28T10:05:19Z<p>The traditional way is to use setjmp and longjmp, though there are caveats.</p>
<p>Here's a <a href="http://homepage.mac.com/sigfpe/Computing/continuations.html" rel="nofollow">reasonably good explanation</a></p>
http://stackoverflow.com/questions/6512/how-to-implement-continuations/36644#366445Answer by Josh Segall for How to implement continuations?Josh Segall2008-08-31T05:02:30Z2008-08-31T05:02:30Z<p>A good summary is available in <a href="http://www.springerlink.com/content/h5808n962434j275/" rel="nofollow">Implementation Strategies for First-Class Continuations</a>, an article by Clinger, Hartheimer, and Ost. I recommend looking at Chez Scheme's implementation in particular.</p>
<p>Stack copying isn't that complex and there are a number of well-understood techniques available to improve performance. Using heap-allocated frames is also fairly simple, but you make a tradeoff of creating overhead for "normal" situation where you aren't using explicit continuations.</p>
<p>If you convert input code to continuation passing style (CPS) then you can get away with eliminating the stack altogether. However, while CPS is elegant it adds another processing step in the front end and requires additional optimization to overcome certain performance implications.</p>
http://stackoverflow.com/questions/6512/how-to-implement-continuations/134886#1348863Answer by Kyle Burton for How to implement continuations?Kyle Burton2008-09-25T17:59:39Z2008-09-25T17:59:39Z<p>Examples that you can look at are: <a href="http://www.call-with-current-continuation.org/" rel="nofollow">Chicken</a> (a Scheme implementation, written in C that support continuations); Paul Graham's <a href="http://www.paulgraham.com/onlisp.html" rel="nofollow">On Lisp</a> - where he creates a CPS transformer to implement a subset of continuations in Common Lisp; and <a href="http://common-lisp.net/project/cl-weblocks/" rel="nofollow">Weblocks</a> - a continuation based web framework, which also implements a limited form of continuations in Common Lisp.</p>
http://stackoverflow.com/questions/6512/how-to-implement-continuations/343160#3431603Answer by JBF for How to implement continuations?JBF2008-12-05T08:00:30Z2008-12-05T08:00:30Z<p>If you are starting from scratch, you really should look in to Continuation Passing Style (CPS) transformation. Good sources include "LISP in small pieces" and Marc Feeley's scheme in 90 minutes presentation: <a href="http://www.iro.umontreal.ca/~boucherd/mslug/meetings/20041020/minutes-en.html" rel="nofollow">http://www.iro.umontreal.ca/~boucherd/mslug/meetings/20041020/minutes-en.html</a> .</p>
http://stackoverflow.com/questions/6512/how-to-implement-continuations/880282#8802821Answer by Glomek for How to implement continuations?Glomek2009-05-18T23:28:26Z2009-05-18T23:28:26Z<p>Ward's Wiki has <a href="http://c2.com/cgi/wiki?ContinuationImplementation" rel="nofollow">a page devoted to this</a>.</p>