On this page:
6.1 To a Model of an Interpreter
6.2 Modeling Functions, and a useful pattern for adding new features
6.2.1 Capture-Avoiding Substitution
6.3 Computing with Judgments
7.5.0.17

6 Lecture 3 – The First Complete Model of a Language

6.1 To a Model of an Interpreter

So far, we’ve seen how to model (1) a collection of expressions, (2) a reduction judgment which performs obvious computations, and (3) a conversion judgment →* which applies reduction transitivily and under all sub-expressions.

The conversion judgment is ... similar to an interpreter, but isn’t quite. The problem is that it does not necessarily run our program "to completion". We can construct derivations that convert our program to a new expression after 0 steps, or 1 step, or 5 steps of reduction. But an interpreter should run a program until it is complete, and there are no more reduction steps possible.

To model an interpreter, we need to define what it means for a program to be complete. In most programming language implementations, we want our program to run until there are no more instructions to perform and then return a value, or print something to the screen, or some other way of giving a result to the user. We model this by defining some notion of observation. The interpreter is then the function that returns an observation after converting a program until there are no reductions possible and an observation is reached.

First, we define observations. In PL theory, we usually consider observations to be first-order values. In our running example language, this means booleans and natural numbers.
  o = b
  | n

Then, we model the evaluation function as follows.

eval(e) = o

 

e →* o

------------

eval(e) = o

For judgment of the shape ... = any, i.e., those judgment that simply equal some meta-variable, it is common to use them "inline". For example, I could write eval(((s z) + (s z))) to mean (s (s z)), without bothering to say "the observation o such that eval((s z) + (s z)) = o".

This specifies that eval is the function that returns an observation o of some program e such that e is convertible to o. In this language, since o is a first-order value, it has no reductions left and the program must be complete. While the conversion judgment is non-deterministic, we require as a premise to eval that we be given the particular derivation that ends in an observation, not any of the conversions that fail to finish reducing the expression.

This only gives us a model of the interpreter. We still have to provide the derivation proving that any e converts to an observation. But now we have a complete model of a language. We can ask, and prove, that the expression ((s z) + (s z)), when run in any correct interpreter, will in the observation (s (s z)).

This also gives us the starting point for how we know a compiler correct: since expressions now have meaning, "running them in the interpreter", we can start asking whether that meaning is preserved.

Note that so far, we have very few guarantees about our language. The interpreter is only defined for some expressions. For example, the interpretation of (true + false) is completely undefined. The eval function gives no result for this expression, since conversion never reduces it to an observation. When we start modeling compilation, we will see why undefined behavior is so pernicious: we can have a completely correct compiler, since it preserves the meaning of every expression (that, by definition, has a meaning), but could do anything for other expressions and still be proven correct.

6.2 Modeling Functions, and a useful pattern for adding new features

So far we’ve been working with a trivial language of booleans and natural numbers. But the lessons and the general strategy apply to pretty much every language we’ll model. So let’s add first-class functions!

First-class functions ("functions", from now on) are popular in PL theory because they are a single feature that can represent many features in a small model. We can encode objects, threads, co-routines, loops, actors, etc. all using first-class functions. This means we can do a relatively small amount of math and apply it to a large number of programming language features.

Unfortunately, first-class functions are pretty tricky.

So when modeling a new feature, where should we start? We know we need some expression that we can write, and we’ll need to give them some reduction rules. But how do we pick some expressions, and then how do we choose reduction rules?

In the previous examples, there was a pattern that we can extend. We started with booleans and we added two expressions, true and false, that represent the boolean values, and one expression, if, that used the boolean values. When we added natural numbers, we added a way of building natural numbers, z and s, and a way of using natural numbers, +.

In general, programming language models add features by adding some introduction forms that allow the user to build some kind of data, and elimination forms that allow the user to that data to perform some computation. We start by adding the syntax of the introduction forms and elimination forms. Then we add a single reduction rule for each elimination form applied to each introduction form. We can predict how many reduction rules we should have: there ought to be n*m rules, where we have n introduction forms and m elimination forms. For example, we had two introduction forms for booleans, and one elimination form, so we had two reduction rules related to booleans. The same with the natural numbers. Each reduction rule has a predictable pattern: start with the elimination form and pattern match on the sub-expression that is an introduction form. All if does is pattern match on its first sub-expression. The same with +.

The pattern doesn’t tell us everything. We still need to pick forms and rules that match our intuition for what we’re trying to model. But it gives us a place to start.

Applying this pattern, we start by modeling functions. We expected to add some introduction forms, and elimination forms. Intuitively, we want to be able to define functions, and call functions. That sounds like two different forms.
  e = ....
  | (λx.e)
  | (e_1 e_2)
  | x
We add the introduction form (λx.e) to define a function of one argument, named x, which can be used in the body of the function e. We also add a way to call functions with an argument, (e_1 e_2), which calls (or, "applies") the function e_1 to the argument e_2.

In a small deviation from the pattern, we also add x as an expression. We need this in order to reference function arguments, but it is not clearly either an elimination form or an introduction form. In general, names are complicated, and this is not the last time we’ll look at them askance.

Next, we move on to reduction rules. The pattern tells us we should have one new reduction rule, since we have one elimination form that can be applied to one introduction form (1*1 = 1). We start by applying the pattern: the conclusion of the rule should be the elimination form pattern matching on the introduction form:

??

---------------

((λx.e) e_2) → ??

Now, for what the rule should do. We’re trying to model "calling a function". Intuitively, we want this to start executing the body of the function, e, but with all instances of the argument name x replaced by the argument e_2. But how do we model that idea formally? Well, we don’t know how to do it with anything we’ve seen so far, and we have only one way to add new things to our universe: we make a new judgment.

The new rule will be

---------------

((λx.e) e_2) → e[e_2/x]

Where the right-hand side is the capture-avoiding substitution judgment.

6.2.1 Capture-Avoiding Substitution

The judgment we need has a special name: substitution. Sometimes, it is written like e[e_2/x] = e, meaning that the expressions e that results from replacing all occurances of the name x in e by the expression e2.

Following the convention from earlier, we can just write e[e_2/x] to refer to e.

This is the most common version used. Unfortunately, PL theorists are sloppy, and it is also written as e[x/e_2], e[x := e_2], [e_2/x]e, [x/e_2]e, and about 15 different other ways to date.

The idea for the judgment is simple: pattern match on an expression and, if it is equal to x, replace it. We can start with the simple values for which the answer is obvious.

e[e/x] = e

 

---------------- [Subst-True]

true[e/x] = true

 

---------------- [Subst-False]

false[e/x] = false

 

---------------- [Subst-Zero]

z[e/x] = z

true, false, and z cannot possibly have any references to the name x, so substitution on them just equals the original term.

Another (sort of) easy one is the case for names x. There is a trick to this one, though.

 

---------------- [Subst-X1]

x_1[e/x_1] = e

 

---------------- [Subst-X2]

x_2[e/x_1] = x_2

We have to split it into two cases: either we’re at a name that is exactly the same as the one we’re trying to replace, and we replace it, or not and we leave it alone. These are rules are the heart of the idea of substitution: replace the name for an argument by the argument.

Next we get to harder rules, like those with sub-expressions.

 

??

---------------- [Subst-Plus]

(e_1 + e_2)[e/x] = ??

 

??

---------------- [Subst-If]

(if e_1 then e_2 else e_3)[e/x] = ??

Intuitively, we just want to keep replacing all the occurances of x by e. So these are just recursive on the syntax of the expressions

 

e_1[e/x] = e_1'    e_2[e/x] = e_2'

---------------- [Subst-Plus]

(e_1 + e_2)[e/x] = (e_1' + e_2')

 

e_1[e/x] = e_1'

e_2[e/x] = e_2'

e_3[e/x] = e_3'

---------------- [Subst-If]

(if e_1 then e_2 else e_3)[e/x] = (if e_1' then e_2' else e_3')

Finally, our new features: function and application.

 

---------------- [Subst-Fun]

(λx.e_1)[e/x] = ??

 

---------------- [Subst-App]

(e_1 e_2)[e/x] = ??

At first glance, these look like more expressions with sub-expressions, so we can just recursively substitute.

 

e_1[e/x] = e_1'

---------------- [Subst-Fun-Wrong]

((λx.e_1) e_2)[e/x] = (λx.e_1')

 

---------------- [Subst-App]

(e_1 e_2)[e/x] = ((e_1[e/x]) (e_2[e/x]))

I use substitution infix in the [Subst-App] rule, to give you practice reading it.

This is okay for the application case, but it is subtly wrong for the function case. To see why, it helps to step through some examples. Using our new rule,

---------------

((λx.e) e_2) → e[e_2/x]

and our current definition of substitution, we can reduce some simple examples as follows.

(λx.x) 0            -> 0

(λx.x) (λx.x)       -> (λx.x)

(λx.λy.x) false     -> λy.false

(λy.false) true     -> false

This seems to behave about right. If we apply the identity function to 0, we get 0. If we apply the identity function to another identity function, we the identity function. When we apply a function that returns another function whose body simply references the first argument, we get back a new function whose body is the first argument.

But these examples don’t test an important case that is legal, but most programmers would never consider. What if we apply a function to a free variable? This is not legal in most programming languages, but it is in our model.

(λx.λy.x) y     -> λy.y

The problem is that now the binding structure has changed. Previously, one could never refer to the value of the argument named y. The expression λx.λy.x modeled a function of two argumenst that throws out the second argument and returns the first. But with our definition of substitution, we can access that second argument.

(λx.λy.x) false true   ->* false

(λx.λy.x) y true       ->* true

Perverse programmers that write free variables are not the real problem. Free variable can pop up naturally when reasoning about a program. For instance, many optimizations and refactorings happen in the precense of free variables, and we would like our reduction and conversion judgments to be able to validate these rewrites.

To solve this, we have to make substitution avoid capturing even when substiting a free variable into an expression. The way we model this is easy: just rename a bound variable to a fresh one that is never used anywhere else, then substitute.

z is fresh

e_1[z/x] = e_2

e_2[e/x] = e_3

---------------- [Subst-Fun]

(λx.e_1)[e/x] = (λz.e_3)

It’s hard to say exactly, formally, what we mean by "is fresh". But we just suppose there is some infinite set of names to draw from, and we know which ones have never been used.

You don’t need to think about this capture-avoiding nonsense too hard, though. Most programming languages people totally ignore the problem. They know the problem exists, and they know a solution exists. So we all just pretend like variable behave, and we avoid ever writing examples for which there will be a problem.

6.3 Computing with Judgments

Now that we have a model of a realish language, we’re like to be able to do things with it. Our judgments, when carefully designed, correspond to easily to recursive functions. Redex can automatically compute derivations for us for such judgments. This is Extremely Handy, since writing derivations is tedious.

We’ll start by modeling our new language in Redex. The problems involved in modeling functions are so well understood that Redex can solve them for you. When writing a language in Redex, we just tell Redex which expressions should be able to "refer to" names, and Redex will figure out how to implement substitution for us.

Examples:
> (define-language L
    [b ::= true false]
    [n ::= z (s n)]
    [e ::= b n (e + e) (if e then e else e) (λ x e) (e e) x]
    [o ::= b n]
    [x ::= variable-not-otherwise-mentioned]
    #:binding-forms
    (λ x e #:refers-to x))
; Tell Redex which language we mean when we don't say.
> (default-language L)
> (term (substitute (λ y x) x y))

'(λ y«0» y)

> (term (substitute (λ y x) x true))

'(λ y«1» true)

With substitution formally defined, our model of functions is pretty much done. We can write our reduction judgment and start writing examples.

Example:
> (define-judgment-form L
    #:contract ( e e)
    #:mode ( I O)
  
    [-------------- "Step-Add-Zero"
     ( (z + e) e)]
  
    [-------------------------------------------- "Step-Add-Add1"
     ( ((s any_1) + any_2) (any_1 + (s any_2)))]
  
    [----------------- "Step-If-True"
     ( (if true then any_1 else any_2) any_1)]
  
    [----------------- "Step-If-False"
     ( (if false then any_1 else any_2) any_2)]
  
    [------------------------------- "Step-App"
     ( ((λ x e) e_2) (substitute e x e_2))])

In this judgment, I introduce moded judgments using the new form #:mode ( I O). This tells Redex that I expect the first expression to be an Input, and the second to be an Output.

To ask Redex to compute the output of a judgment, we pass a meta-variable in the output position, and use judgment-holds like this:

Example:
> (judgment-holds ( ((λ x x) false) e)
                  e)

'(false)

Since judgments can be non-deterministic, Redex returns a list of possible answers. In this case, there is one answer.

To build the whole derivation, we use build-derivations. We similarly get back a list of possible derivations.

Example:
> (build-derivations ( ((λ x x) false) e))

(list (derivation '(→ ((λ x x) false) false) "Step-App" '()))

Recall that our conversion judgment did not follow the rule about inductive judgments getting smaller in the premises. The consequences comes now.

Examples:
> (define-judgment-form L
    #:contract (→*-unfortunate e_1 e_2)
    #:mode (→*-unfortunate I O)
  
    [( e_1 e_2)
     ----------------- "Step"
     (→*-unfortunate e_1 e_2)]
  
    [------------- "Refl"
     (→*-unfortunate e_1 e_1)]
  
    [(→*-unfortunate e_1 e_2)
     (→*-unfortunate e_2 e_3)
     ------------------ "Trans"
     (→*-unfortunate e_1 e_3)]
  
    [(→*-unfortunate e_1 e_11)
     ------------------- "If-Compat-e1"
     (→*-unfortunate (if e_1 then e_2 else e_3) (if e_11 then e_2 else e_3))]
  
    [(→*-unfortunate e_2 e_21)
     ------------------- "If-Compat-e2"
     (→*-unfortunate (if e_1 then e_2 else e_3) (if e_1 then e_21 else e_3))]
  
    [(→*-unfortunate e_3 e_31)
     ------------------- "If-Compat-e3"
     (→*-unfortunate (if e_1 then e_2 else e_3) (if e_1 then e_2 else e_31))]
  
    [(→*-unfortunate e_1 e_11)
     --------------------- "Plus-Compat-e1"
     (→*-unfortunate (e_1 + e_2) (e_11 + e_2))]
  
    [(→*-unfortunate e_2 e_21)
     --------------------- "Plus-Compat-e2"
     (→*-unfortunate (e_1 + e_2) (e_1 + e_21))]
  
    [(→*-unfortunate e_1 e_11)
     ; Oh look, a free variable
     --------------------- "Fun-Compat"
     (→*-unfortunate (λ x e_1) (λ x e_11))]
  
    [(→*-unfortunate e_1 e_11)
     --------------------- "App-Compat-e1"
     (→*-unfortunate (e_1 e_2) (e_11 e_2))]
  
    [(→*-unfortunate e_2 e_21)
     --------------------- "App-Compat-e2"
     (→*-unfortunate (e_1 e_2) (e_1 e_21))])
> (require racket/sandbox)
> (with-limits
   5 ; seconds
   512 ; mbytes
   (judgment-holds (→*-unfortunate ((λ x (x + (s z))) (s z)) e) e))

with-limit: out of time

We try to turn this into a moded judgment, but Redex fails to find a derivation within 5 seconds. Redex infinitely searches for a derivation by infinitely applying the "Trans" rule. The judgment does not easily correspond to a simple recursive function, so Redex does not know what else to do. We have to do work to translate this into a nice computable judgment.

This applies more generally in PL theory. If a judgment is not obviously a recursive function, then it is only a specification, and does not necessarily yield an implementation. Any proof about that judgment may require more work before it can be applied to any real implementation.

Thankfully, for our conversion judgment, the work is relatively simple. We force something to always get smaller. We split the judgment into two: one that either reduces something or (recursively) reduces some sub-expression, and one with the reflexivity and transitivity rules.

Examples:
> (define-judgment-form L
    #:contract (→+ e_1 e_2)
    #:mode (→+ I O)
  
    [( e_1 e_2)
     ----------------- "Step"
     (→+ e_1 e_2)]
  
    [(→+ e_1 e_11)
     ------------------- "If-Compat-e1"
     (→+ (if e_1 then e_2 else e_3) (if e_11 then e_2 else e_3))]
  
    [(→+ e_2 e_21)
     ------------------- "If-Compat-e2"
     (→+ (if e_1 then e_2 else e_3) (if e_1 then e_21 else e_3))]
  
    [(→+ e_3 e_31)
     ------------------- "If-Compat-e3"
     (→+ (if e_1 then e_2 else e_3) (if e_1 then e_2 else e_31))]
  
    [(→+ e_1 e_11)
     --------------------- "Plus-Compat-e1"
     (→+ (e_1 + e_2) (e_11 + e_2))]
  
    [(→+ e_2 e_21)
     --------------------- "Plus-Compat-e2"
     (→+ (e_1 + e_2) (e_1 + e_21))]
  
    [(→+ e_1 e_11)
     ; Oh look, a free variable
     --------------------- "Fun-Compat"
     (→+ (λ x e_1) (λ x e_11))]
  
    [(→+ e_1 e_11)
     --------------------- "App-Compat-e1"
     (→+ (e_1 e_2) (e_11 e_2))]
  
    [(→+ e_2 e_21)
     --------------------- "App-Compat-e2"
     (→+ (e_1 e_2) (e_1 e_21))])
> (define-judgment-form L
    #:contract (→* e_1 e_2)
    #:mode (→* I O)
  
    [------------- "Refl"
     (→* e_1 e_1)]
  
    [(→+ e_1 e_2)
     (→* e_2 e_3)
     ------------------ "Trans"
     (→* e_1 e_3)])
> (judgment-holds (→* ((λ x (x + (s z))) (s z)) e) e)

'(((s z) + (s z)) ((λ x (x + (s z))) (s z)) (s (s z)) (z + (s (s z))))

Now we can finish our evaluation function, and we get a runnable model of an interpreter.

Examples:
> (define-judgment-form L
    #:contract (eval e o)
    #:mode (eval I O)
  
    [(→* e o)
     ----------
     (eval e o)])
> (judgment-holds (eval ((λ x (x + (s z))) (s z)) o) o)

'((s (s z)))