Scheme in Scheme. Why implement Scheme in Scheme  Implementing a language is aa good way to learn more about programming languages  Interpreters are.

Slides:



Advertisements
Similar presentations
Lists in Lisp and Scheme a. Lists are Lisp’s fundamental data structures, but there are others – Arrays, characters, strings, etc. – Common Lisp has moved.
Advertisements

Scheme in Scheme. Why implement Scheme in Scheme  Implementing a language is a good way to learn more about programming languages  Interpreters are.
1 Programming Languages (CS 550) Lecture Summary Functional Programming and Operational Semantics for Scheme Jeremy R. Johnson.
Functional Programming. Pure Functional Programming Computation is largely performed by applying functions to values. The value of an expression depends.
Chapter 3 Functional Programming. Outline Introduction to functional programming Scheme: an untyped functional programming language.
Scheme in Scheme?!? …the metacircular evaluator….
1 The metacircular evaluator Names Extend the calculator to store intermediate results as named values (define x (+ 4 5)) store result as x (+ x.
Metacircular Evaluation SICP Chapter 4 Mark Boady.
מבוא מורחב למדעי המחשב תרגול 13 Lazy Evaluation. Lazy Evaluation Implementation Two types of values – Delayed Values – Actual Values Introduce two functions.
1 The Metacircular Evaluator Chapter 4 Section 4.1 We will not cover every little detail in the lectures, so you MUST read Section 4.1 in full.
מבוא מורחב למדעי המחשב בשפת Scheme תרגול 11. Metacircular Evaluator 4.1, pages definitions file on web 2.
(define applicative-eval (lambda (exp) (cond ((atomic? exp) (eval-atomic exp)) ((special-form? exp) (eval-special-form exp)) ((list-form? exp) (eval-list.
1 Lecture 18 Continue Evaluator. 2 z9 true#t + twice Representing procedures (eval '(define twice (lambda (x) (+ x x))) GE) symbol primitive scheme procedure.
Functional programming: LISP Originally developed for symbolic computing Main motivation: include recursion (see McCarthy biographical excerpt on web site).
SICP Interpretation part 1 Parts of an interpreter Arithmetic calculator Names Conditionals and if Store procedures in the environment.
Lexical vs. Dynamic Scope …where do I point to?. Intro… Remember in Scheme whenever we call a procedure we pop a frame and point it to where the procedure.
6.001 SICP SICP – Evaluation I Recitation 11/19/2004 Eval review Evaluation examples define lambda apply New language elements.
SICP Variations on a Scheme Scheme Evaluator – A Grand Tour Techniques for language design: Interpretation: eval/apply Semantics vs. syntax Syntactic.
Functional programming: LISP Originally developed for symbolic computing First interactive, interpreted language Dynamic typing: values have types, variables.
Scheme More MCE examples. Q1 new special form which defines global variables (static ) search the global environment – Variable exists: does nothing,
The environment model evaluator and compiler 1 The env model evaluator Motivation In one word: Efficiency Saves repeated renaming and substitution: Using.
1 Saves repeated renaming and substitution: explicit substitution is replaced by variable bindings using new data structures (frame, environment). Can.
1 Continue Evaluator. 2 z9 true#t + twice Representing procedures (eval '(define twice (lambda (x) (+ x x))) GE) symbol primitive scheme procedure + symbol.
1 Programming Languages (CS 550) Lecture 5 Summary Object Oriented Programming and Implementation* Jeremy R. Johnson *Lecture based on notes from SICP.
1 The metacircular evaluator (Cont.) Defining new procedures (define (lambda? e) (tag-check e 'lambda)) (define (eval exp env) (cond ((number? exp)
Scheme in Scheme 1. Why implement Scheme in Scheme  Implementing a language is a good way to learn more about programming languages  Interpreters are.
Functional Programming Universitatea Politehnica Bucuresti Adina Magda Florea
CS220 Programming Principles 프로그래밍의 이해 2002 가을학기 Class 15: Meta-Circular Evaluator 한 태숙.
SICP Interpretation Parts of an interpreter Arithmetic calculator Names Conditionals and if Storing procedures in the environment Environment as.
David Evans CS200: Computer Science University of Virginia Computer Science Lecture 18: Think Globally, Mutate Locally.
Scheme in Scheme. Why implement Scheme in Scheme  Implementing a language is a good way to learn more about programming languages  Interpreters are.
The environment-based operational semantics Chapter
18-October-2002cse Symbols © 2002 University of Washington1 Symbols CSE 413, Autumn 2002 Programming Languages
1 Lecture 20 Lazy Evaluation Continued (4.2.1, 4.2.2) MC-eval examples from exams (Time permitting)
1 Read-Eval-Print Loop (define (driver-loop) (prompt-for-input input-prompt) (let ((input (read))) (let ((output (eval input the-global-env))) (announce-output.
Scheme Profs Tim Sheard and Andrew Black CS 311 Computational Structures.
Milos Hauskrecht (PDF) Hieu D. Vu (PPT) LISP PROGARMMING LANGUAGE.
1 Programming Languages (CS 550) Lecture 4 Summary Functional Programming and Operational Semantics for Scheme Jeremy R. Johnson.
1 Env. Model Implementation & Analyzer Practice Session #10 Env. Model Implementation & Analyzer Practice Session #10.
1 Lecture 19 Dynamic Scoping Lazy Evaluation (4.2.1, 4.2.2)
1/ SICP Variations on a Scheme Scheme Evaluator – A Grand Tour Making the environment model concrete Defining eval defines the language –Provides.
CS 598 Scripting Languages Design and Implementation 10. Interpreters Part I: Lisp.
Scheme in Scheme 2. What’s next  Adding set!  Dynamic vs. lexical variable scope  Extending mcscheme v1 with libraries  Can mcscheme execute mcscheme?
1 FP Foundations, Scheme In Text: Chapter Chapter 14: FP Foundations, Scheme Mathematical Functions Def: A mathematical function is a mapping of.
1 Lecture 19 Review last lecture on evaluator, Dynamic Scoping Lazy Evaluation (4.2.1, 4.2.2)
CS61A Lecture Colleen Lewis 1. Clicker poll Are you in a two person group for project 4? A)Yes – I have my partner B)No – I plan to work.
1 Vectors, binary search, and sorting. 2 We know about lists O(n) time to get the n-th item. Consecutive cons cell are not necessarily consecutive in.
1 The Evaluator. 2 Compiler vs. Interpreter Command Processing Unit The Computer Program in Low Level Machine Language Program in High Level Language.
SICP Interpretation part 2 Store operators in the environment Environment as explicit parameter Defining new procedures.
Scheme in Scheme 1.
Operational Semantics of Scheme
Lecture 4: Metacircles Eval Apply David Evans
Edited by Original material by Eric Grimson
6.001 SICP Variations on a Scheme
Lists in Lisp and Scheme
Env. Model Implementation
Original material by Eric Grimson
The Metacircular Evaluator
Dynamic Scoping Lazy Evaluation
The Metacircular Evaluator
The Metacircular Evaluator (Continued)
Lecture 26: The Metacircular Evaluator Eval Apply
6.001 SICP Further Variations on a Scheme
Streams, Delayed Evaluation and a Normal Order Interpreter
Lecture 13 - Assignment and the environments model Chapter 3
6.001 SICP Variations on a Scheme
6.001 SICP Interpretation Parts of an interpreter
topics interpreters meta-linguistic abstraction eval and apply
Rehearsal: Lazy Evaluation Infinite Streams in our lazy evaluator
Lecture 25: The Metacircular Evaluator Eval Apply
Presentation transcript:

Scheme in Scheme

Why implement Scheme in Scheme  Implementing a language is aa good way to learn more about programming languages  Interpreters are easier to implement than compilers, in genera  Scheme is a simple language, but also a powerful one  Implementing it first in Scheme allows us to put off some of the more complex lower-level parts, like parsing and data structures  While focusing on higher-level aspects

Lisp and Scheme are simple  Simple syntax and semantics  John McCarthy’s original Lisp had very little structure: Procedures CONS, CAR, CDR, EQ and ATOM Special forms QUOTE, COND, SET and LAMBDA Values T and NIL  The rest of Lisp can be built on this foundation (more or less)

Meta-circular Evaluator  We’ll look at an adaptation of the metacircular evaluator for Scheme from Abelson and Sussman’s book, the Structure and Interpretation of Computer Programs (SICP)  “A meta-circular evaluator is a special case of a self-interpreter in which the existing facilities of the parent interpreter are directly applied to the source code being interpreted, without any need for additional implementation. Meta- circular evaluation is most common in the context of homoiconic languages”.

Meta-circular Evaluator  In computer programming, homoiconicity is a property of some programming languages, in which the primary representation of programs is also a data structure in a primitive type of the language itself.  From homo meaning the same and icon meaning representation.

Meta-circular Evaluator  We’ll not do all of Scheme, but just enough for you to understand the approach  We can us the same approach when writing an interpreter for Scheme in Python  Since the MCE requires mutable pairs, we’ll run it in the R5RS dialect I’m still working on a version that can run in the latest PLT scheme

Mutable Pairs?  Scheme calls a cons cell a pair  Lisp always had special functions to change (aka destructively modify or mutate) the components of a simple cons cell  Can you detect a sentiment there?  RPLACA (RePLAce CAr) was Lisp’s function to replace the car of a cons cell with a new pointer  RPLACD (RePLAce CDr) clobbered the cons cell’s cdr pointer

SET-CAR! And SET-CDR! > (define l1 '(a b c d)) > l1 (a b c d) > (set-car! l1 'foo) > l1 (foo b c d) > (set-cdr! l1 '(2 3)) > l1 (foo 2 3) > (set-cdr! l1 l1) > l1 #0=(foo. #0#) > (cadr l1) foo > (caddr l1) foo > (cadddr l1) foo

Lobbying to kick out of R6RS  Scheme will remove set-car! and set-cdr! from the language as of R6RS They’re playing to their ideological base here Or maybe just eating their own dog food  R6RS is the Revised **6 Report on the Algorithmic Language Scheme  R6RS does have a library, mutable-pairs, provides a new datatype for a mutable pair and functions for it mcons, mcar, mcdr, mlist, …set-mcar!, set- mcdr!

mutable-pairs > (define l1 (cons 1 (cons 2 empty))) > l1 (1 2) > (define m1 (mcons 1 (mcons 2 empty))) > m1 {1 2} > (car l1) 1 > (car m1).. car: expects argument of type ; given {1 2} > (mcar m1) 1 > (set-car! l1 'foo).. reference to undefined identifier: set-car! > (set-mcar! l1 'foo).. set-mcar!: expects type as 1st argument, given: (1 2); other arguments were: foo > (set-mcar! m1 'foo) > m1 {foo 2}

How to evaluate an expression  We’ll sketch out some rules to use in evaluating an s-expession  Then we will realize these in Scheme  The only tricky part is representing an environment, i.e., the binding of symbols to their values Since environments inherit from other environments, we’ll consider an environment to be a set of frames We’ll start with a global environment

Eval an Atom  Self-Evaluating - Just return their value Numbers and strings are self evaluating  Symbol - Lookup closest binding and return Raise an error if not found

Eval a “special form” Special forms are those that get evaluated in a special, non-standard way (quote X) – return X (define X B) – bind X to evaluation of B (lambda VARS BODY) - Make a procedure, write down VARS and BODY, do not evaluate (set! X Y) – find X binding name, eval Y and set X to the return value (if X Y Z) – eval X and then either the Y or Z

Eval a procedure call  Primitive: (F. ARGS) Apply by magic...  User-defined: (F. ARGS) Make a new environment frame Extend to procedures frame Bind arguments to formal parameters Evaluate procedure body in the new frame Return its value

Scheme in Scheme (define (scheme) (print '|> |) (print (mceval (read) the-global-environment)) (scheme) )

Eval (define (mceval exp env) (cond ((self-evaluating? exp) exp) ((symbol? exp) (lookup exp env)) ((special-form? exp) (do-something-special exp env)) (else (mcapply (mceval (car exp) env) (map (lambda (e) (mceval e env)) (cdr exp))) ) ) )

apply (define (apply op args) (if (primitive? op) (do-magic op args) (mceval (op-body op) (extend-environment (op-formals op) args (op-env op)))))

The Yin and Yang of Lisp

What’s in a function?  In Scheme or Lisp, the representation of a function has three parts: A list of the names of its formal parameters The expression(s) that make up the function’s body, i.e. the code to be evaluated The environment in which the function was defined, so values of non-local symbols can be looked up  We might just represent a function as a list like (procedure (x y) (+ (* 2 x) y) (… env …))

What’s an environment  An environment is just a list of environment frames The last frame in the list is the global one The nth frame in the list extends the n+1th  An environment frame records two things A list of variables bound in the environment The values they are bound to  Suppose we want to extend the global environ- ment with a new local one where x=1 and y=2

Running the MCE… (define (scheme) (display "Type `exit' to leave MCE\n") (schemeloop)) (define (schemeloop) (display "\nMCE> ") (let ((input (read))) (if (equal? input 'exit) 'done (begin (display (mceval input the-global-environment)) (schemeloop)))))

mceval (define (mceval exp env) (cond ((self-evaluating? exp) exp) ((symbol? exp) (lookup-variable-value exp env)) ((quoted? exp) (cadr exp)) ((assignment? exp) (eval-assignment exp env)) ((definition? exp) (eval-definition exp env)) ((if? exp) (eval-if exp env)) ((lambda? Exp) (make-procedure (cadr exp) (cddr exp) env)) ((begin? exp) (eval-sequence (cdr exp) env)) ((application? exp) (mcapply (mceval (car exp) env) (map (lambda (x)(mceval x env)) (cdr exp)))) (else (error "mceval: Unknown expression type" exp))))

mcapply (define (mcapply procedure arguments) (cond ((primitive-procedure? procedure) (apply-primitive-procedure procedure arguments)) ((defined-procedure? procedure) (eval-sequence (proc-body procedure) (extend-environment (proc-parameters procedure) arguments (proc-environment procedure)))) (else (error "mceval: Unknown proc. type" procedure))))

Global Environment (define the-empty-environment '()) (define (setup-environment) (let ((initial-env (extend-environment primitive-proc-names primitive-proc-objects the-empty-environment))) (define-variable! 'empty '() initial-env) initial-env)) (define the-global-environment (setup-environment))

Extending an environment (define (extend-environment vars vals base-env) (if (= (length vars) (length vals)) (cons (make-frame vars vals) base-env) (if (< (length vars) (length vals)) (error "Too many arguments supplied" vars vals) (error "Too few arguments supplied" vars vals)))) (define (make-frame variables values) (cons variables values))

Looking up a value (define (lookup-variable-value var env) (define (env-loop env) (define (scan vars vals) (cond ((null? vars) (env-loop (enclosing-environment env))) ((eq? var (car vars)) (car vals)) (else (scan (cdr vars) (cdr vals))))) (if (eq? env the-empty-environment) (error "Unbound variable" var) (let ((frame (car-frame env))) (scan (frame-variables frame) (frame-values frame))))) (env-loop env))

Defining a variable (define (define-variable! var val env) (let ((frame (car-frame env))) (define (scan vars vals) (cond ((null? vars) (add-binding-to-frame! var val frame)) ((eq? var (car vars)) (set-car! vals val)) (else (scan (cdr vars) (cdr vals))))) (scan (frame-variables frame) (frame-values frame))))

Setting a variable (define (set-variable-value! var val env) (define (env-loop env) (define (scan vars vals) (cond ((null? Vars) (env-loop (enclosing-environment env))) ((eq? var (car vars)) (set-car! vals val)) (else (scan (cdr vars) (cdr vals))))) (if (eq? env the-empty-environment) (error "Unbound variable -- SET!" var) (let ((frame (car-frame env))) (scan (frame-variables frame) (frame-values frame))))) (env-loop env))