Joint work with Olivier Danvy.

Abstract

We present the first operational account of call by need that connects syntactic theory and implementation practice. Syntactic theory: the storeless operational semantics using syntax rewriting to account for demand-driven computation and for caching intermediate results. Implementation practice: the store-based operational technique using memo-thunks to implement demand-driven computation and to cache intermediate results for subsequent sharing. This practice was initiated by Landin and Wadsworth and is prevalent today to implement lazy programming languages such as Haskell. This theory was initiated by Ariola, Felleisen, Maraist, Odersky and Wadler and is prevalent today to reason equationally about lazy programs, on par with Barendregt et al.’s term graphs. Nobody knows, however, how this theory of call by need compares to this practice of call by need: all that is known is that the syntactic theory of call by need agrees with the syntactic theory of call by name, and that the implementation practice of call by need optimizes the implementation practice of call by name.

Our operational account takes the form of three new calculi for lazy evaluation of lambda-terms and our synthesis takes the form of three lock-step equivalences. The first calculus is a hereditarily compressed variant of Ariola et al.’s call-by-need lambda-calculus and makes ``neededness’’ syntactically explicit. The second calculus distinguishes between strict bindings (which are induced by demand-driven computation) and non-strict bindings (which are used for caching intermediate results). The third calculus uses memo-thunks and an algebraic store. The first calculus syntactically corresponds to a storeless abstract machine, the second to an abstract machine with local stores, and the third to a lazy Krivine machine, i.e., a traditional store-based abstract machine implementing lazy evaluation. The machines are intensionally compatible with extensional reasoning about lazy programs and they are lock-step equivalent. Each machine functionally corresponds to a natural semantics for call by need in the style of Launchbury, though for non-preprocessed λ-terms.

Our results reveal a genuine and principled unity of computational theory and computational practice, one that readily applies to variations on the general theme of call by need.

References

Olivier Danvy and Ian Zerny. A Synthetic Operational Account of Call-by-Need Evaluation. Proceedings of the 2013 ACM SIGPLAN Conference on Principles and Practice of Declarative Programming (PPDP 2013). ACM Press, 2013. To appear. [BIB].

Official website for PPDP’13.