Recall the syntax of LC. We will add one primitive binary operator,
+
, to the language, giving the following syntax for terms
in the language:
M :== x | n | (lambda (x) M) | (M M) | (+ M M)A proper LC program is an LC expression M that is closed, i,e., contains no free variables. An LC program is any LC expression. Think of LC as being a sub-language of Scheme. For the moment, we will confine our attention to proper programs.
We similarly extend our abstract syntax for LC to include addition as a primitive application. The set AR of abstract representations is defined bv the equation:
AR = (make-var Var) | (make-const Num) | (make-proc Var AR) | (make-app AR AR) | (make-add AR AR)
given the data definitions:
(define-struct var (name)) (define-struct const (number)) (define-struct proc (param body)) (define-struct app (rator rand)) (define-struct add (left right))
Recall that in Comp 210, we formulated the semantics of Scheme as an
extension to the familiar algebraic calculation process. Consider
(+ (+ 3 4) (+ 7 5))
. To evaluate this, we first
determine the value of (+ 3 4)
and of (+ 7
5)
. Why? Because these are not values and +
can
only add two values (numbers).
What is a value? Intuitively, it is any expression that can be returned as the "answer" produced by a computation. We must understand this concept in detail before we can explain the process of evaluation. Let's consider the various possible forms for expression and determine which are values.
First, lambda
expressions are values.
Are numbers values?
Yes, they are.
Are identifiers values?
No, they stand for values.
Are applications values?
No, they are not; they trigger an evaluation. Are primitive applications
(+ M M)
values? No, they also trigger an evaluation.
In summary, (M M)
and (+ M M)
are
computations, (lambda ...)
and numbers are
values, and identifiers are neither (they are not
computations because they do not trigger evaluation in our interpreter
for LC and they are not values because they are not legitimate
"answers" for computations).
Let us return to our example, (+ (+ 3 4) (+ 7 5))
.
By following the regular rules of evaluation for Scheme, we determine
that the expression above yields the value 19
.
Let us review the rules of evaluation for the LC subset of Scheme.
Rule 1:
For +
-expressions, evaluate the operands, then add
them.
Rule 2:
For applications of the binary operator +
to two arguments that are values, replace the application
by the sum of the two arguments.
Rule 3: For applications of lambda-expressions to values, substitute the argument for the parameter in the body. Does this argument have to be a value? In LC, we will impose this requirement. Scheme does the same. Some other functional languages (e.g., Haskell) do not.
((lambda (y) 5) ((lambda (x) (x x)) (lambda (x) (x x))))The argument given to the procedure does not reduce to a value. However, since the argument need not be evaluated before being substituted for
y
, the application can be reduced,
yielding the answer 5
.
Hence, we ``patch'' our application rule to read: For lambda applications,
substitute the value of the argument for the parameter in the
body.
This revision, however, still isn't quite satisfactory. Consider
the procedure (lambda (x) (lambda (x) x))
. When this
procedure is applied, we do not want the inner x
to be
substituted; that should happen only when the inner procedure is
applied. Hence, we amend our rule to read,
For lambda applications, substitute the value of the argument for all free instances of the parameter in the body.
Given an LC expression, we evaluate it by repeatedly applying the preceding rules until we get an answer. What happens when we encounter an expression to which more than one rule applies? In Rice Scheme and LC, the leftmost rule always takes priority.
As long as we only evaluate proper programs (closed expressions), the preceding evaluation rules are satisfactory. But they will fail if we try to evaluate arbitrary programs (expressions that may contain free variables) or if we try to use the evaluation rule for lambda applications as a transformation rule to simplify programs. Consider the following reduction of an expression with the free variable x:
((lambda (y) (lambda (x) y)) (lambda (z) x)) = (lambda (x) (lambda (z) x))Is this reduction correct? No! What happened? The free occurrence of x in the application bound by the inner
(lambda (x)
...)
. This anomaly called "capture of a free variable"
is clearly not what we intended. Our evaluation
rules will produce legitimate answers (integer values) for some
improper programs that should produce run-time errors.
Even worse, if
we try to use the reduction of
applications as a transformation rule to simplify programs, we
can change the meaning of programs.
There are two ways out of this conundrum:
(define x ...)functions frequently refer to free variables with global definitions. As a result, the only viable option in defining a substitution semantics for such a language is to force substitutions to be hygienic. In the absence of global definitions, however, free variables serve no useful purpose in functional languages like LC. For this reason, we simply ban free variables from LC programs, permitting us to avoid the issue of safe substitution.
Note: many languages avoid the capture problem by prohibiting functions (procedures) as arguments. In such a language, lambda expressions are not values and are never substituted for variables.
Now we can translate our rules into a program. Here is a sketch of the evaluator:
(define Eval (lambda (M) (cond ((var? M) (impossible ...)) ((const? M) M) ((proc? M) M) ((add? M) (add-num (Eval (add-left M)) (Eval (add-right M)))) (else ; (app? M) is true (Apply (Eval (app-rator M)) (Eval (app-rand M))))))) (define Apply (lambda (a-proc a-value) (Eval (substitute a-val ; for (proc-param a-proc) ; in (proc-body a-proc))))) (define substitute (lambda (v x M) (cond ; M ... cases go here ... )))
The key property of this evaluator is that it only manipulates (abstract) syntax. It specifies the meaning of LC by mechanically transforming the syntactic representation of a program. This approach only assigns meaning to complete LC programs, not to individual components of an LC program (such as particular lambda expressions embedded in the program). Such an evaluator is called is a purely syntactic method for describing meaning of programs
From the perspective of implementation efficiency,
our evaluator (Eval
) has some problems.
Consider its behavior on an input like
((lambda (x) <big-proc>) 5)Assume that
<big-proc>
consists of many uses of
x
. The evaluator must step through this entire procedure
body, replacing every occurrence of x
by the value
5
. The new tree produced by this process has the same size
as the original tree (since we traversed the entire tree, and replaced
an identifier with a value). What does eval
do next? It
walks once again over the entirety of the new tree that it just
produced after substitution, for the purpose of evaluating it. This
two phase process is clearly very wasteful, particularly since it
involves copying the original abstract syntax tree for
<big-proc>
.
To be more frugal, eval
could instead do the following:
it could merge the two traversals into one, which is carried out when
evaluating the (as yet unsubstituted) tree. During this traversal, it
could carry along a table of the necessary substitutions, which it
could then perform just before evaluating an identifier. This table
of delayed substitutions is called an environment.
Hence, our evaluator now takes two arguments: the expression and an
environment. The environment env
contains a list of the
identifiers that are free in the body, and the values associated with
them.
(define Eval (lambda (M env) (cond ((var? M) lookup M's name in env) ((const? M) ...) ((proc? M) ... what do we do here? ...) ((add? M) ...) (else ... ))))
The interesting clause in this definition is the code for evaluating procedures. To preserve the semantics of our evaluation rules, we must keep track of the environment active at the time the procedure was evaluated. Why? Because this environment contains the correct substitutions. When the procedure is finally applied (possibly more than once), the current environment will generally contain the WRONG substitutions.
(define-struct pair (var val)) (define-struct closure (body env)) (define Eval (lambda (M env) (cond ((var? M) (lookup M env)) ((const? M) M) ((proc? M) (make-closure M env)) ((add? M) (add (Eval (add-left M) env) (Eval (add-right M) env))) (else (Apply (Eval (app-rator M) env) (Eval (app-rand M) env)))))) (define Apply (lambda (fn arg) ; fn must be a closure (Eval (proc-body (closure-body fn)) (extend (closure-env fn) (proc-param (closure-body)) arg)))) (define lookup (lambda (var env) (if (null? env) (error ...) (if (eq? var (pair-var (first env))) (pair-val (first env)) (lookup var (rest env)))))) (define extend (lambda (env var val) (cons (make-pair var val) env))) (define emptyEnv '())At the top level, a complete LC program P is evaluated by calling
(Eval P emptyEnv)
. Since there are no free variables in
a complete program, emptyEnv contains all of the environment information
(bindings of free variables) required to evaluate it.
We have
Solutions to Exercises
(let (v M) N)}abbreviate the LC expression
((lambda (v) N) M)
This abbreviation makes LC code much easier to read.
(let (y 2) (let (f (lambda (x) (* x y))) (let (g (lambda (y) (f (+ y y)))) (g (+ y y)))))which abbreviates the LC program
((lambda (y) ((lambda (f) ((lambda (g) (g (+ y y))))) (lambda (y) (f (+ y y)))) (lambda (x) (* x y))) 2)The program evaluates to 16. If we naively substitute
(lambda (x) (* x y))for f in the expression
(let (g (lambda (y) (f (+ y y)))) (g (+ y y)))we get
(let (g (lambda (y) ((lambda (x) (* x y)) (+ y y)))) (g (+ y y)))With this transformation, the program reduces to 32. After the transformation, the free occurrence of y in the value of f refers to the formal parameter y in the definition of g rather than the y introduced in the outermost let.
(let (y 17) (let (f (lambda (x) (+ y y))) (let (y 2) (f 0))))This program abbreviates the LC program
((lambda (y) ((lambda (f) ((lambda (y) (f 0)) 2)) (lambda (x) (+ y y))) 17))Given this program, a closure-based LC interpreter will
(let f ...)in the resulting environment
(y = 17)
(let (y 2) ...)in the extended environment
(f = [(lambda (x) (+ y y)), (y = 17)]; y = 17)
(f 0)in the extended environment
((y = 2; f = [(lambda (x) (+ y y)), (y = 17)]; y = 17)
[(lambda (x) (+ y y)), (y = 17)]and evaluate this closure applied to the value 0
(x = 0; y = 17)
An incorrect interpreter that fails to build closures will perform the following computation for the same program:
(let f ...)in the resulting environment
(y = 17)
(let (y 2) ...)in the extended environment
(f = (lambda (x) (+ y y); y = 17)
(f 0)in the extended environment
(y = 2; f = (lambda (x) (+ y y)); y = 17)
(lambda (x) (+ y y))and evaluate this expression applied to the value 0 in the environment
(y = 2; f = (lambda (x) (+ y y)); y = 17)
(x = 0; y = 2; f = (lambda (x) (+ y y)); y = 17)