CS61A Notes Week 6: Scheme1, Data Directed Programming You Are Scheme and don t let anyone tell you otherwise

Similar documents
CS61A Discussion Notes: Week 11: The Metacircular Evaluator By Greg Krimer, with slight modifications by Phoebus Chen (using notes from Todd Segal)

Intro. Scheme Basics. scm> 5 5. scm>

CS61A Summer 2010 George Wang, Jonathan Kotker, Seshadri Mahalingam, Eric Tzeng, Steven Tang

SCHEME AND CALCULATOR 5b

6.001 Notes: Section 15.1

(Provisional) Lecture 08: List recursion and recursive diagrams 10:00 AM, Sep 22, 2017

CS61A Notes Disc 10: Vectors, concurrency Just When You Were Getting Used to Lists

Discussion 12 The MCE (solutions)

(scheme-1) has lambda but NOT define

PAIRS AND LISTS 6. GEORGE WANG Department of Electrical Engineering and Computer Sciences University of California, Berkeley

Discussion 11. Streams

C311 Lab #3 Representation Independence: Representation Independent Interpreters

Scheme in Scheme: The Metacircular Evaluator Eval and Apply

Review Analyzing Evaluator. CS61A Lecture 25. What gets returned by mc-eval? (not analyzing eval) REVIEW What is a procedure?

UNIVERSITY of CALIFORNIA at Berkeley Department of Electrical Engineering and Computer Sciences Computer Sciences Division

CS 61A Discussion 8: Scheme. March 23, 2017

SCHEME 7. 1 Introduction. 2 Primitives COMPUTER SCIENCE 61A. October 29, 2015

Write for your audience

Lecture 2: SML Basics

Summer 2017 Discussion 10: July 25, Introduction. 2 Primitives and Define

CS61A Notes Week 1A: Basics, order of evaluation, special forms, recursion

Fall Semester, The Metacircular Evaluator. Today we shift perspective from that of a user of computer langugaes to that of a designer of

CSCC24 Functional Programming Scheme Part 2

6.184 Lecture 4. Interpretation. Tweaked by Ben Vandiver Compiled by Mike Phillips Original material by Eric Grimson

Lexical vs. Dynamic Scope

CS 314 Principles of Programming Languages. Lecture 16

SCHEME The Scheme Interpreter. 2 Primitives COMPUTER SCIENCE 61A. October 29th, 2012

Computer Science 21b (Spring Term, 2015) Structure and Interpretation of Computer Programs. Lexical addressing

This exam is worth 30 points, or 18.75% of your total course grade. The exam contains

An Explicit Continuation Evaluator for Scheme

6.001 Notes: Section 8.1

Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi.

CS61A Notes Disc 11: Streams Streaming Along

4.2 Variations on a Scheme -- Lazy Evaluation

CSSE 304 Assignment #13 (interpreter milestone #1) Updated for Fall, 2018


ENVIRONMENT MODEL: FUNCTIONS, DATA 18

CS61A Midterm 2 Review (v1.1)

Homework 6: Higher-Order Procedures Due: 11:59 PM, Oct 16, 2018

1: Introduction to Object (1)

CIS4/681 { Articial Intelligence 2 > (insert-sort '( )) ( ) 2 More Complicated Recursion So far everything we have dened requires

6.001 Notes: Section 31.1

Programming Project #4: A Logo Interpreter Summer 2005

Part II Composition of Functions

6.037 Lecture 7B. Scheme Variants Normal Order Lazy Evaluation Streams

CSE413: Programming Languages and Implementation Racket structs Implementing languages with interpreters Implementing closures

Discussion 4. Data Abstraction and Sequences

PROFESSOR: Last time, we took a look at an explicit control evaluator for Lisp, and that bridged the gap between

Project 5 - The Meta-Circular Evaluator

Implementing Continuations

Environment Diagrams. Administrivia. Agenda Step by Step Environment Diagram Stuff. The Rules. Practice it s on! What are The Rules?

Lecture 3: Recursion; Structural Induction

CS 360 Programming Languages Interpreters

Repetition Through Recursion

TAIL RECURSION, SCOPE, AND PROJECT 4 11

Berkeley Scheme s OOP

If Statements, For Loops, Functions

Chapter01.fm Page 1 Monday, August 23, :52 PM. Part I of Change. The Mechanics. of Change

SCHEME 8. 1 Introduction. 2 Primitives COMPUTER SCIENCE 61A. March 23, 2017

6.037 Lecture 4. Interpretation. What is an interpreter? Why do we need an interpreter? Stages of an interpreter. Role of each part of the interpreter

(Refer Slide Time: 06:01)

Introduction to Programming

Homework 1. Notes. What To Turn In. Unix Accounts. Reading. Handout 3 CSCI 334: Spring, 2017

User-defined Functions. Conditional Expressions in Scheme

CS 4349 Lecture October 18th, 2017

Macros & Streams Spring 2018 Discussion 9: April 11, Macros

6.001 Notes: Section 17.5

Announcements. The current topic: Scheme. Review: BST functions. Review: Representing trees in Scheme. Reminder: Lab 2 is due on Monday at 10:30 am.

6.001 Notes: Section 6.1

Where The Objects Roam

Project 5 - The Meta-Circular Evaluator

Homework 6: Higher-Order Procedures Due: 10:00 PM, Oct 17, 2017

Streams, Delayed Evaluation and a Normal Order Interpreter. CS 550 Programming Languages Jeremy Johnson

Basic Scheme February 8, Compound expressions Rules of evaluation Creating procedures by capturing common patterns

MITOCW watch?v=kz7jjltq9r4

CS61A Notes 02b Fake Plastic Trees. 2. (cons ((1 a) (2 o)) (3 g)) 3. (list ((1 a) (2 o)) (3 g)) 4. (append ((1 a) (2 o)) (3 g))

Homework 1. Reading. Problems. Handout 3 CSCI 334: Spring, 2012

Scheme as implemented by Racket

by the evening of Tuesday, Feb 6

Here are some of the more basic curves that we ll need to know how to do as well as limits on the parameter if they are required.

Implementing Recursion

XP: Backup Your Important Files for Safety

Reasoning About Programs Panagiotis Manolios

This exam is worth 70 points, or about 23% of your total course grade. The exam contains 15 questions.

Below are example solutions for each of the questions. These are not the only possible answers, but they are the most common ones.

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

Administrivia. Simple data types

Reading Assignment. Lazy Evaluation

STREAMS 10. Basics of Streams. Practice with Streams COMPUTER SCIENCE 61AS. 1. What is a stream? 2. How does memoization work?

RACKET BASICS, ORDER OF EVALUATION, RECURSION 1

CSE 413 Languages & Implementation. Hal Perkins Winter 2019 Structs, Implementing Languages (credits: Dan Grossman, CSE 341)

CS 314 Principles of Programming Languages

Functional abstraction. What is abstraction? Eating apples. Readings: HtDP, sections Language level: Intermediate Student With Lambda

Functional abstraction

Documentation for LISP in BASIC

;; definition of function, fun, that adds 7 to the input (define fun (lambda (x) (+ x 7)))

Sample Final Exam Questions

EXPRESSIONS, STATEMENTS, AND FUNCTIONS 1

Foundations, Reasoning About Algorithms, and Design By Contract CMPSC 122

Why do we need an interpreter? SICP Interpretation part 1. Role of each part of the interpreter. 1. Arithmetic calculator.

Transcription:

CS61A Notes Week 6: Scheme1, Data Directed Programming You Are Scheme and don t let anyone tell you otherwise If you re not already crazy about Scheme (and I m sure you are), then here s something to get excited about: only 6 weeks into the semester, and you can already write a fairly competent interpreter using Scheme! A certain lesser college in the South Bay doesn t let you do that till your third year! Now, now, I know it s a little intimidating to look at this big piece of code with recursion out the wazoo, but hang in there and throw in the time; this code is only going to get bigger and more complicated as the semester rolls on. But the interpreter will also grow, not just in size, but in power and elegance as well. Great. Now you look so excited to learn. Our intention is to build a Scheme interpreter, a program that reads in Scheme code and executes it much like STk does. It s pure, pure coincidence that we happen to be using Scheme to build this very Scheme interpreter. Don t get confused by that! Make sure you separate what is Scheme1, and what is STk. Sometimes, it might help to pretend you re not interpreting Scheme, but just some crazy, bizarre language. Another word of caution: There are many, many ways to implement a Scheme interpreter. You ll often find yourself asking, why are we doing things this way? Well, very possibly, we don t have to, but that s a design decision we made. So be more concerned with how it works before you ask why? The Meat is in eval-1 and apply-1 The whole operation of Scheme1 depends on the mutual recursion of eval-1 and apply-1. Here s their job: eval-1 apply-1 INPUT: a valid Scheme expression INPUT: a procedure and its arguments, both already OUTPUT: the result of evaluating the Scheme expression; evaluated the value of the expression OUTPUT: the result of applying the procedure to its If exp is constant (numbers, strings, #t, #f, etc.), then arguments return itself. If the procedure is a primitive procedure (+, *, cons, car, If exp is a symbol (+, *, car, etc.), then use the underlying STk s eval to evaluate it. This is where Scheme1 cheats; all symbols are assumed to be primitive procedures of STk. We do not expect to see actual variables here, since we don t have define, and all variables in a lambda body should ve etc.), then use STk s apply procedure to perform primitive voodoo. We could tell it s a primitive procedure using procedure? because, remember, eval-1 should ve already called STk s eval on it already and turned it into an STk procedure. already been substituted with values. If the procedure is a compound procedure (a lambda If exp is a special form, do special form voodoo (if, lambda, quote). expression), call eval-1 on the body of the lambda with the parameters substituted with the argument values. If exp is a procedure call, evaluate what the procedure is (using eval-1), and evaluate the arguments. Then, call apply-1 with the evaluated procedure and arguments. It is crucial to understand how eval-1 and apply-1 interact! It s really not that complicated, and it s exactly what I ve been muttering on the board whenever I pretend I m Scheme and evaluate an expression. We ll step through an example soon with primitive procedures, but first, let s look at how primitives are represented. A Word On Special Forms Before we dive too deeply into Scheme1 let s briefly consider special forms. Where do we actually deal with them? A quick glance at the code reveals that they re very special indeed we take care of them in eval-1. Note that we, in no sense, consider them to be compound procedures, and we do NOT call apply-1 on a special form! Remember why special forms are special we don t always evaluate every argument. If we treat it as a procedure call, then we re going to map eval-1 on all of its arguments, which is exactly what we don t want to do. Eric, Kevin, Phill, Hamilton, and Stephanie CS61A Summer 2011 notes courtesy of Justin Chen 1

So remember if you want to add a special form, like we did for and, the place to do it is in eval-1. You must catch it before eval-1 thinks it s a procedure and evaluates all its arguments! The Art of Being Complicated Note that, as a quirk specific only to Scheme1, a lambda expression is self-evaluating (you can see this in eval-1). That is, a lambda expression evaluates to itself, just like 3 evaluates to 3. Note, however, that a lambda expression is not a procedure! This is an important distinction. A lambda expression is an expression something that you pass into eval-1 as an argument. A procedure is a value something that eval-1 returns. It s simply a matter of coincidence that a procedure in Scheme1 is represented just like a lambda expression. This is rather unfortunate, but will be fixed in mc-eval, the last iteration of these normal Scheme interpreters. How is a compound procedure different from a primitive procedure? Well, to eval-1, a procedure call is a procedure call, and when eval-1 sees one, it simply evaluates the procedure and its arguments, regardless of whether the procedure is primitive or compound. It then just passes both the procedure and its arguments to apply-1. Thus it is apply-1 who distinguishes between primitive and compound procedures. Thus, the proc argument of apply-1 can be one of two things: a primitive procedure the result you get when eval-1 calls STk s eval on a symbol like + or car which are bound to primitive procedures in STk. These will pass STk s procedure? test. To apply a primitive procedure, apply-1 will use STk s apply procedure to apply an STk procedure to the list of arguments. Here we re just passing the work off to the underlying STk. a compound procedure this is represented as a lambda expression (though it is a procedure, not an expression). These will pass the lambda-exp? test. Recall that, according to our substitution model, in order to evaluate a compound procedure (a lambda) call, we substitute argument values for parameters in the procedure s body, and then evaluate the body. More precisely, we re going to call eval-1 on the body of the procedure, after we substitute all the formal parameters with the evaluated argument values. To perform substitution when doing a compound procedure call, we do something that is very similar to the substitute2 that you wrote, where we take in the body of the procedure, and wherever we see a formal parameter, we replace it with the corresponding argument. It does have this extra bound argument; this is a list of symbols that we do not want to substitute for. For example, given ((lambda(x) ((lambda(x) (* x 2)) 5)) 10), when we re substituting x for 10, we do not replace the x in the inner lambda with 10. Instead, we re supposed to leave that x alone since that x refers to the inner x (the one that will be bound to 5) rather than the outer x (the one that s bound to 10). All of this will become clearer once we try to trace through an example. For this example, we re going to gloss over most of substitution and just focus on the interaction between eval-1, apply-1 and substitute. (((lambda (x) ((lambda (y) (lambda (x) (+ x y x))) x)) 5) 10) Before doing anything, do it by hand what should it return? eval-1 called with (((lambda(x) ((lambda(y) (lambda(x) (+ x y x))) x)) 5) 10); it sees that it is a procedure call, naturally a list of two elements. What s the procedure? Well, to find out, call eval-1 on it! Eric, Kevin, Phill, Hamilton, and Stephanie CS61A Summer 2011 notes courtesy of Justin Chen 2

eval-1 called with ((lambda(x) ((lambda(y) (lambda (x)(+ x y x))) x)) 5). Looks like a procedure call to me! What s the procedure? eval-1 called with (lambda(x) ((lambda(y) (lambda(x) (+ x y x))) x)). This is just a lambda expression; it evaluates to a procedure represented by the same lambda expression, so we will just return itself. eval-1 returns (lambda(x) ((lambda(y) (lambda(x) (+ x y x))) x)). Next, we need to map eval-1 over the arguments, which is just the list of a single argument (5). Mapping eval-1 over that, of course, will return to us (5), since 5 is self-evaluating. We re done evaluating the procedure and the arguments, so it s time to apply: apply-1 called with proc (lambda(x) ((lambda(y) (lambda(x) (+ x y x))) x)), and argument list (5). apply-1 sees that this is a compound procedure, so first it tries to substitute 5 for x in the body of the expression: substitute called with exp as ((lambda(y) (lambda(x) (+ x y x))) x), params as (x), args as (5), and bound as (). Let's skip over the details of substitute, but we already know what it is supposed to return: substitute returns ((lambda(y) (lambda(x) (+ x y x))) 5). Evaluate the body: eval-1 called with ((lambda(y) (lambda(x) (+ x y x))) 5). Looks like a procedure call! The procedure will evaluate to (lambda(y) (lambda(x) (+ x y x))), and the argument list will evaluate to (5). Let s apply this puppy! apply-1 called with proc (lambda (y) (lambda (x) (+ x y x))) and argument list (5). The procedure is compound, so we try to call substitute on its body: substitute called with (lambda(x) (+ x y x)) with params (y), args (5), and bound (). It does the obvious thing: substitute returns (lambda(x) (+ x 5 x)). Now we evaluate the body: eval-1 called with (lambda(x) (+ x 5 x)). Why, that s a lambda expression! We re going to just return the procedure, represented as itself: eval-1 returns (lambda(x) (+ x 5 x)) apply-1 returns (lambda(x) (+ x 5 x)) eval-1 returns (lambda(x) (+ x 5 x)) apply-1 returns (lambda(x) (+ x 5 x)) eval-1 returns (lambda(x) (+ x 5 x)), and we've finally found out what the procedure of our original procedure is! What are the arguments? Well, it's just (10). Time to apply: apply-1 called with (lambda(x) (+ x 5 x)) and argument list (10). Of course, this is a compound procedure, so we, as usual, call substitute on the body: substitute called with exp as (+ x 5 x), params (x), args (10), and bound the empty list (). substitute returns (+ 10 5 10). Now we can evaluate the body. eval-1 called with (+ 10 5 10). A procedure call! The procedure is evaluated as the STk + procedure, and the argument list evaluated as (10 5 10). We call apply-1: apply-1 called with STk s + procedure and args (10 5 10). We will use STk s apply to apply the primitive procedure, getting 25. apply-1 returns 25 eval-1 returns 25 apply-1 returns 25 eval-1 returns 25 Accept No Substitutes (well, except you kind of have to) So, just what does substitute do, given an expression and lists params, args and bound? If the expression is a symbol, then it might be a member of the params or bound lists. If the symbol is in the bound list, then ignore it; otherwise, substitute it with the corresponding value in the args list. We use a very simple procedure called lookup to do this. If it s not a member of either lists, then it s probably a symbol referring to a primitive procedure, like + or car. In that case, where lookup won t find it in the params list, it will just give up and not try to replace it with anything. If the expression is a quoted expression or a constant, then don t substitute it with anything. If the expression is a lambda expression, then return the same lambda with its body substituted correctly. Look at the code; it makes a new lambda, whose arguments stay as they were, but whose body is passed recursively to substitute. Note, however, that in the recursive call, we append the formal parameters of the lambda expression onto the bound list; this is because, in the body of this lambda expression, we don t want to substitute any argument values for its formal parameters, even if we have a Eric, Kevin, Phill, Hamilton, and Stephanie CS61A Summer 2011 notes courtesy of Justin Chen 3

binding in the param-args lists for a variable with the same name as one of its formal parameters. We already touched on why not. If the expression is anything else, it is a procedure call; then, map substitute on every sub-expression. QUESTIONS Try it yourself: trace each call to eval-1 and apply-1 for the expression (+ 3 (- 8 5)). How about for(+ 3 ((lambda (x) (- x 1)) 5))? If I type this into STk, I get an unbound variable error: (eval-1 'x) This surprises me a bit, since I expected eval-1 to return x, unquoted. Why did this happen? What should I have typed in instead? Hacking Scheme1: For some reason, the following expression works: ( (lambda(x) (* x x)) 3) Note the quote in front of the lambda expression. Well, it s not supposed to! Why does it work? What fact about Scheme1 does this exploit? Type Tagging, Data Directed Programming, and Message Passing Up till now, we have been writing smart programs programs that know what to do given the arguments. But with data-directed programming, we re slowly moving toward the paradigm where programs are dumb, but data are smart. If you recall, procedures like apply-generic are short and simplistic, but the data you pass in arguments with type tags and the data you store in the global Eric, Kevin, Phill, Hamilton, and Stephanie CS61A Summer 2011 notes courtesy of Justin Chen 4

table containing separate procedures for dealing with different type tags and operations are what knows what to do with the data. Hence the term data-directed programming. The advantage is simple: maintainability. Remember, programs or procedures are complicated beasts, and you should cringe every time you need to modify a working procedure. Yet data is simple putting new items into a global table doesn t require you to alter existing code. Adding new features will rarely break old, working code. This is also useful when you re dealing at once with multiple representations of data, which you'll see more of in this week's homework. We will do something similar here. But before diving into type-tagging and data directed programming, let's first talk about yet another approach: message passing. Imagine a world where data was intelligent and completely self-aware that's message passing! In data-directed programming, the data directed the programming that is, the data, with its appropriate tagging and established global table, is able to guide the program by providing the correct procedures for the correct situation. In message passing, the data is the program. You hand the data a message - an action you want it to perform and the data will carry it out on it's own. Message passing is the peak of intelligent data, because everything is handled internally by the data. All it needs is the right message. QUESTION: The TAs have broken out in a cold war; apparently, at the last midterm-grading session, someone ate the last potsticker and refused to admit it. It is near the end of the semester, and Colleen really needs to enter the grades. Unfortunately, the TAs represent the grades of their students differently, and refuse to change their representation to someone else s. Colleen is far too busy to work with five different sets of procedures and five sets of student data, so for educational purposes, you have been tasked to solve this problem for her. The TAs have agreed to type-tag each student record with their first name, conforming to the following standard: (define type-tag car) (define content cdr) It s up to you to combine their representations into a single interface for Colleen to use. IN CLASS: Write a procedure, (make-tagged-record ta-name record), that takes in a TA s student record, and type-tags it so it s consistent with the type-tag and content accessor procedures defined above. A student record consists of two things: a name item and a grade item. Each TA represents a student record differently. Hamilton uses a list, whose first element is a name item, and the second element the grade item. Eric uses a cons pair, whose car is the name item, and the cdr the grade item. Write get-name and get-grade procedures that take in a student record and return the name or grade items, respectively. We will do this in three different ways: a. Conventional-style type tagging Eric, Kevin, Phill, Hamilton, and Stephanie CS61A Summer 2011 notes courtesy of Justin Chen 5

b. Data-directed programming c. Message passing this one's a little different. Instead of going off an existing TA's implementation, you now have the chance to create your own. Create an implementation of student records using message passing, which can accept the messages get-name and get-grade. EXTRA PRACTICE: Each TA represents names differently. Kevin uses a cons pair, whose car is the last name and whose cdr is the first. Phill is so cool that a name is just a word of two letters, representing the initials of the student (so George Bush would be gb). Write generic get-first-name and get-last-name procedures that take in a tagged student record and return the first or last name, respectively. Try this using conventional-style type tagging, then with data-directed programming. Eric, Kevin, Phill, Hamilton, and Stephanie CS61A Summer 2011 notes courtesy of Justin Chen 6

Each TA represents grades differently. Eric is lazy, so his grade item is just the total number of points for the student. Stephanie is more careful, so her grade item is an association list of pairs; each pair represents a grade entry for an assignment, so the car is the name of the assignment, and the cdr the number of points the student got. Write a generic get-total-points procedure that takes in a tagged student record and return the total number of points the student has. Try this using conventional-style type tagging, then with data-directed programming. Now Colleen wants you to convert all student records to the format she wants. She has supplied you with her recordconstructor, (make-student-record name grade), which takes in a name item and a grade item, and returns a student record in the format Colleen likes. She also gave you (make-name first last), which creates a name item, and (make-grade total-points), which takes in the total number of points the student has and creates a grade item. Write a procedure, (convert-to-colleen-format records), which takes in a list of student records, and returns a list of student records in Colleen s format, each record tagged with Colleen. Eric, Kevin, Phill, Hamilton, and Stephanie CS61A Summer 2011 notes courtesy of Justin Chen 7