compositional semantics for composable continuations
play

Compositional Semantics for Composable Continuations From Abortive - PowerPoint PPT Presentation

Compositional Semantics for Composable Continuations From Abortive to Delimited Control Paul Downen Zena M. Ariola University of Oregon ICFP14 September 1, 2014 The big picture Effects that manipulate control flow, compositionally


  1. Compositional Semantics for Composable Continuations From Abortive to Delimited Control Paul Downen Zena M. Ariola University of Oregon ICFP’14 — September 1, 2014

  2. The big picture ◮ Effects that manipulate control flow, compositionally ◮ Programs can refer to their context, but . . . ◮ Still have local, equational reasoning inside open programs ◮ Logic is an inspiration, . . . ◮ Lessons from logic can fix problems in programming ◮ Even with an untyped mindset ◮ Sometimes, being type-agnostic is liberating!

  3. Classical control ◮ callcc is the classic control operator, going back to Scheme ◮ Classical control corresponds to classical logic (Griffin, 1990) ◮ Start with pure language, add primitive operations ◮ Start with intuitionistic logic, add classical axioms ◮ Start with a language with continuation variables ◮ Start with a logic with multiple conclusions

  4. Delimited control ◮ Delimit the scope of effects ◮ Continuations compose like functions ◮ Vastly more expressive power than classical control ◮ Every monadic effect is simulated by delimited control (Filinski, 1994) ◮ Exposes “monadic plumbing” underlying CBV languages

  5. Roadmap from classical to delimited control Classical λ + callcc λµ

  6. Roadmap from classical to delimited control Classical λ + callcc syntactic λµ Λ µ relaxation

  7. Roadmap from classical to delimited control Classical Delimited λ + callcc λ + shift 0 + reset 0 syntactic λµ Λ µ relaxation

  8. Classical control

  9. Operational semantics of callcc ◮ Extension of CBV λ -calculus V ::= x | | λ x . M | callcc | built-in function | [ E ] | reified evaluation context M , N ::= V | | M N E ::= � | | E M | | V E E [( λ x . M ) V ] �→ E [ M { V / x } ] E [ callcc V ] �→ E [ V [ E ]] E [[ E ′ ] V ] �→ E ′ [ V ]

  10. Equational theory for callcc ◮ Reason more generally about open programs ◮ Extension of λ c (Moggi, 1989) β v ( λ x . M ) V = M { V / x } η v λ x . V x = V β Ω ( λ x . E [ x ]) M = E [ M ] ◮ Add axioms that explain behavior of built-in callcc function (Sabry and Felleisen, 1993; Sabry, 1996)

  11. Problems of non-compositionality ◮ Equational theory weaker than operational semantics! ◮ Some programs can be evaluated to a value. . . callcc ( λ k .λ x . k ( λ . x )) �→ → ( λ x . [ � ] ( λ . x )) ◮ But the equational theory for callcc cannot reach a value! callcc ( λ k .λ x . k ( λ . x )) � = V ◮ How can we know that we have the “whole” context?

  12. Of jumps and the extent of a continuation ◮ Calling a continuation never returns — it “jumps” ◮ E [[ E ′ ] 1 ] “jumps” out of E to E ′ ◮ Add variables α, β, . . . that stand for continuations ◮ Applying a continuation (variable) “jumps” (a.k.a. “aborts”) ◮ A jump α M is the same when inside a larger evaluation context E [ α M ] = α M E is garbage ◮ A jump delimits the usable extent of a continuation

  13. A running jump ◮ Let’s try that again ◮ We can evaluate a jump to an answer. . . α ( callcc ( λ k .λ x . k ( λ . x ))) �→ → α ( λ x . [ α � ] ( λ . x )) ◮ And the equational theory for callcc reaches that answer! α ( callcc ( λ k .λ x . k ( λ . x ))) = α ( λ x .α ( λ . x ))

  14. λµ : taking jumps seriously ◮ Syntactically distinguish jumps as “commands” M , N ::= . . . | | µα. c control abstraction c :: = [ α ] M command, a.k.a “jump” ◮ Commands “run” [ α ]( E [( λ x . M ) V ]) �→ [ α ]( E [ M { V / x } ]) [ α ]( E [ µβ. c ]) �→ c { [ α ]( E [ N ]) / [ β ] N }

  15. λµ : a language of classical logic ◮ Developed as calculus for classical logic (Parigot, 1992) ◮ Originally CBN, but also CBV (extension of λ c ): µ E [ α ]( E [ µβ. c ]) = c { [ α ]( E [ N ]) / [ β ] N } η µ µα. [ α ] M = M β µ ( λ x .µα. [ β ] M ) N = µα. [ β ](( λ x . M ) N ) ◮ Equational theory contains operational semantics ◮ λµ ≡ λ + callcc!

  16. Relaxing the syntax

  17. Λ µ : a more relaxed language ◮ Collapse term/command distinction: M ≡ c M ::= . . . | | µα. M | | [ α ] M ◮ Same rules, just more expressive meta-variables: ( λ x . [ α ] x ) 1 = [ α ] 1 because [ α ] x is now a term [ α ]( µ . 1 ) = 1 because 1 is now a command

  18. Nothing new, nothing gained? ◮ We haven’t added any new constructs ◮ We haven’t added any new rules ◮ As typed calculus, Λ µ considered equivalent to Parigot’s λµ ◮ So they’re the same?

  19. Nothing new, nothing gained? ◮ We haven’t added any new constructs ◮ We haven’t added any new rules ◮ As typed calculus, Λ µ considered equivalent to Parigot’s λµ ◮ So they’re the same? No!

  20. Delimited control

  21. shift and reset ◮ shift and reset are a common basis for delimited control reset ( E [ shift V ]) = reset ( V ( λ x . reset ( E [ x ]))) ◮ Continuations return, they are composable like normal functions 2 × reset ( 10 + ( shift ( λ k . k ( k 2 )))) = 2 × reset ( 10 + reset ( 10 + reset ( 2 ))) = 2 × reset ( 22 ) = 44

  22. λ + shift + reset ≤ Λ µ ◮ Embedding of shift and reset into Λ µ ◮ Equational theory of shift and reset (Kameyama and Hasegawa, 2003) provable in Λ µ ◮ The two-pass CPS transformation for shift and reset (Danvy and Filinski, 1990) derived from embedding ◮ So λ + shift + reset is a subset of Λ µ µα 1 .µα 2 .µα 3 . 4 [ α 3 ][ α 2 ][ α 1 ]( f 0 ) ◮ What covers the whole of Λ µ ?

  23. shift 0 and reset 0 ◮ Like shift, except that shift 0 removes its surrounding delimiter reset ( E [ shift V ]) = reset ( V ( λ x . reset ( E [ x ]))) reset 0 ( E [ shift 0 V ]) = V ( λ x . reset 0 ( E [ x ])) ◮ Many shift 0 s can “dig” out of many reset 0 s

  24. λ + shift 0 + reset 0 ≡ Λ µ ◮ λ with shift 0 and reset 0 is equivalent to Λ µ ◮ Equational theories correspond ◮ CPS transforms correspond ◮ shift 0 and reset 0 rely on mixing terms with commands ◮ Restricting then relaxing the syntax led us from classical to delimited control!

  25. Roadmap from classical to delimited control Classical Delimited λ + callcc λ + shift 0 + reset 0 syntactic λµ Λ µ relaxation

  26. Roadmap from classical to delimited control Classical Delimited λ + callcc λ + shift 0 + reset 0 λ + shift + reset syntactic λµ Λ µ relaxation

  27. Λ µ : a framework for delimited control ◮ Encode both shift , reset and shift 0 , reset 0 in Λ µ ◮ Provable observational guarantees about the operators ◮ Example: idempotency of reset reset ( reset ( M )) = reset ( M ) ◮ Observational guarantees still hold under composition ◮ reset is still idempotent even if we use shift 0 ◮ Safely put together programs using either operators

  28. More in the paper ◮ Parameterize equational theory by different evaluation strategies ◮ call-by-value, call-by-name, and call-by-need ◮ Improved reasoning for control operators in λ -calculus using continuation variables ◮ Equational correspondence with compositional transformations ◮ Compositionality and hygiene makes life easier!

  29. Final words ◮ Control-flow effects: have our cake and eat it too ◮ Expressive capability ◮ Preserve local, open, high-level reasoning ◮ Generic (parametric) treatment of evaluation strategies ◮ Compositionality is powerful ◮ Logic can be a wonderful guide

  30. References I O. Danvy and A. Filinski. Abstracting control. In LISP and Functional Programming , pages 151–160, 1990. A. Filinski. Representing monads. In POPL , pages 446–457, 1994. T. Griffin. A formulae-as-types notion of control. In POPL , pages 47–58, 1990. Y. Kameyama and M. Hasegawa. A sound and complete axiomatization of delimited continuations. In ICFP , pages 177–188, 2003. E. Moggi. Computational λ -calculus and monads. In Logic in Computer Science , 1989.

  31. References II M. Parigot. Lambda-my-calculus: An algorithmic interpretation of classical natural deduction. In LPAR , pages 190–201, 1992. A. Sabry. Note on axiomatizing the semantics of control operators. Technical Report CIS-TR-96-03, Department of Computer and Information Science, University of Oregon, 1996. A. Sabry and M. Felleisen. Reasoning about programs in continuation-passing style. Lisp and Symbolic Computation , 6(3-4): 289–360, 1993.

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