In programming language theory, call-by-push-value (CBPV) is an intermediate language that embeds the call-by-value (CBV) and call-by-name (CBN) evaluation strategies. CBPV is structured as a polarized λ-calculus with two main types, "values" (+) and "computations" (-).[1] Restrictions on interactions between the two types enforce a controlled order of evaluation, similar to monads or CPS. The calculus can embed computational effects, such as nontermination, mutable state, or nondeterminism. There are natural semantics-preserving translations from CBV and CBN into CBPV. This means that giving a CBPV semantics and proving its properties implicitly establishes CBV and CBN semantics and properties as well. Paul Blain Levy formulated and developed CBPV in several papers and his doctoral thesis.[2] [3] [4]
The CBPV paradigm is based on the slogan "a value is, a computation does". One complication in the presentation is distinguishing type variables ranging over value types from those ranging over computation types. This article follows Levy in using underlines to denote computations, so
B
\underline{B}
The exact set of constructs varies by author and desired use for the calculus, but the following constructs are typical:[2] [4]
λx.M
are computations of typeA\to\underline{B}
x:A
M:\underline{B}
F V
or V'F
is a computation of type \underline{B}
V:A
F:A\to\underline{B}
let { x_1 = V_1; ... }. M
binds values x_1
to values V_1
, of matching types A1
M
: \underline{B}
thunk M
is a value of typeU\underline{A}
M
of type \underline{A}
force X
: \underline{A}
X
: U\underline{A}
V
of typeA
return V
: FA
M to x. N
: \underline{B}
M
: FA
N
: \underline{B}
match V as { (1,...) in M_1, ... }
. Depending on presentation, ADTs may be limited to binary sums and products, Booleans only, or be omitted altogether.A program is a closed computation of type
FA
A
Expressions such as not true : bool
make sense denotationally. But, following the rules above, not
can only be encoded using pattern-matching, which would make it a computation, and therefore the overall expression must also be a computation, giving not true : F bool
. Similarly, there is no way to obtain 1
from (1,2)
without constructing a computation. When modelling CBPV in the equational or category theory, such constructs are indispensable. Levy therefore defines an extended IR, "CBPV with complex values". This IR extends let-binding to bind values within a value expression, and also to pattern-match a value with each clause returning a value expression.[3] Besides modelling, such constructs also make writing programs in CBPV more natural.[2]
Complex values complicate the operational semantics, in particular requiring an arbitrary decision of when to evaluate the complex value. Such a decision has no semantic significance because evaluating complex values has no side effects. Also, it is possible to syntactically convert any computation or closed expression to one of the same type and denotation without complex values.[3] Therefore, many presentations omit complex values.[4]
The CBV translation produces CBPV values for each expression. A CBV function λx.M
:
A\tovB
thunk λx.M<sup>v</sup>
: U(Av\toFBv)
M N
: A
M<sup>v</sup> to f in N<sup>v</sup> to x in x'(force f)
of type FA
match V as { (1,...) in M_1, ... }
is translated as V<sup>v</sup> to z in match z as { (1,...) in M_1<sup>v</sup>, ... }
. Values are wrapped with return
when necessary, but otherwise remain unmodified.[2] In some translations, sequencing may be required, such as translating inl M
to M to x. return inl x
.[4] The CBN translation produces CBPV computations for each expression. A CBN function λx.M
:
A\toB
λx.M<sup>N</sup>
: (UAn)\toXn
M N
: C
M<sup>v</sup> (thunk N<sup>v</sup>)
of type Cn
match V as { (1,...) in M_1, ... }
is translated similarly to CBN as V<sup>n</sup> to z in match z as { (1,...) in M_1<sup>n</sup>, ... }
. ADT values are wrapped with return
, but force
and thunk
are also necessary on internal structure. Levy's translation assumes that M = force (thunk M)
, which does indeed hold.[2] It is also possible to extend CBPV to model call-by-need, by introducing a M need x. N
construct that allows visible sharing. This construct has semantics similar to M name x. N = (λy.N[x ↦ (force y)])(thunk M)
, except that with the need
construct, the thunk of M
is evaluated at most once.[6]
Some authors have noted that CBPV can be simplified, by removing either the U type constructor (thunks)[7] or the F type constructor (computations returning values).[8] Egger and Mogelberg justify omitting U on the grounds of streamlined syntax and avoiding the clutter of inferable conversions from computations to values. This choice makes computation types a subset of value types, and it is then natural to expand function types to a full function space between values. They term their calculus the "Enriched Effects Calculus". This modified calculus is equivalent to a superset of CBPV via a bidirectional semantics-preserving translation.[7] Ehrhard in contrast omits the F type constructor, making values a subset of computations. Ehrhard renames computations to "general types" to better reflect their semantics. This modified calculus, the "half-polarized lambda calculus", has close connections to linear logic.[8] [9] It can be translated bidirectionally to a subset of a fully-polarized variant of CBPV.