compiling with continuations
play

Compiling with Continuations Matthew Might University of Utah - PowerPoint PPT Presentation

Compiling with Continuations Matthew Might University of Utah matt.might.net www.ucombinator.org Administrivia Major update to course notes Final project after Thanksgiving Today Exceptions from continuations


  1. Compiling with Continuations Matthew Might University of Utah matt.might.net www.ucombinator.org

  2. Administrivia • Major update to course notes • Final project after Thanksgiving

  3. Today • Exceptions from continuations • Continuation-passing style, CPS • How to compile continuations

  4. History • Plotkin, 1975 • Steele, 1978

  5. Exceptions • (try expression catch-procedure) • (throw exception)

  6. Exceptions (dynamic-wind before-thunk thunk after-thunk)

  7. Implementation • Save and restore the stack + context • Convert to continuation-passing style

  8. Stack save/restore • Pro: Works for most languages • Con: Stacks are large; expensive

  9. *context in C • setcontext() • getcontext() • makecontext() • swapcontext()

  10. Continuation-passing style (CPS)

  11. The CPS constraints All calls are tail calls.

  12. The CPS constraints Function calls never return.

  13. In practice • All arguments must be atomic • Atomic = must halt & be pure

  14. CPS grammar v ∈ VAR ::= identifier v ℓ REF ::= ( λ ( v 1 · · · v n ) call ) ℓ lam ∈ LAM ::= e , f ∈ EXP = REF + LAM ( f e 1 · · · e n ) ℓ call ∈ CALL ::=

  15. Intuition • Callers pass current continuation to callees • Callees invoke the continution once done

  16. Example (lambda (x) x)

  17. Example (lambda (x k) (k x))

  18. Example (lambda (x return) (return x))

  19. Example (define (f n) (if (= n 0) 1 (* n (f (- n 1)))))

  20. Example (define (f n return) (if (= n 0) 1 (* n (f (- n 1)))))

  21. Example (define (f n return) (if (= n 0) (return 1) (* n (f (- n 1)))))

  22. Example (define (f n return) (if (= n 0) (return 1) (f (- n 1) (lambda (m) (return (* n m))))))

  23. Example (define (f n return) (=$ n 0 (lambda (zero?) (if zero? (return 1) (-$ n 1 (lambda (sub) (f sub (lambda (mul) (*$ n mul return))))))))

  24. Example (define (f a n return) (=$ n 0 (lambda (zero?) (if zero? (return a) (* a n (lambda (an) (- n 1 (lambda (n1) (f an n1 return)))))))))

  25. Example (define (fib n return) (<=$ n 0 (lambda (zero?) (if zero? (return n) (- n 1 (lambda (n1) (- n 2 (lambda (n2) (fib n1 (lambda (f1) (fib n2 (lambda (f2) (+ f1 f2)))))))))))))

  26. CPS: All calls, no return So why have a stack?

  27. Procedure call It’s goto .

  28. Translating (+ 1 2 (lambda (a) …)) a = 1 + 2 ;

  29. Translating (f x y cc) $a1 = x $a2 = y $a3 = cc goto f

  30. Example fib: mov n $a1 (define (fib n return) mov return $a2 (<=$ n 0 (lambda (zero?) leq $t1 n 0 (if zero? bnz $t1 done (return n) sub n1 n 1 (- n 1 (lambda (n1) sub n2 n 2 (- n 2 (lambda (n2) ??? (fib n1 (lambda (f1) done: mov $a1 n (fib n2 (lambda (f2) goto return (+ f1 f2)))))))))))))

  31. Translating (lambda (v1 ... vN) body) (closure (lambda ($e v1 ... vN) body) (make-env ...))

  32. Translating (closure (lambda ($e v1 ... vN) $body) (make-env ...)) { lambda = &&label , env = { fv1 = ... } }

  33. Compiling call/cc call/cc => (lambda (f current-continuation) (f (lambda (x later-continuation) (current-continuation x)) current-continuation)))

  34. Example U

  35. Example map

  36. In the wild Web programming.

  37. Holiday puzzle (call/cc call/cc)

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend