-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.3-proc-3.28-dynamic-scoping.rkt
395 lines (340 loc) · 12.8 KB
/
3.3-proc-3.28-dynamic-scoping.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
#lang eopl
; Exercise 3.28 [**] Dynamic binding (or dynamic scoping) is an alternative design for procedures, in which
; the procedure body is evaluated in an environment obtained by extending the environment at the point of call.
; the procedure datatype does not need to contain env any more.
;ExpVal = Int+Bool+Null+Pair+Proc
;DenVal = Int+Bool+Null+Pair+Proc
;syntax
;Program ::= Expression
; a-program (exp1)
;Expression ::= Number
; const-exp (num)
;Expression ::= if Expression then Expression else Expression
; if-exp (exp1 exp2 exp3)
;Expression ::= Identifier
; var-exp (var)
;Expression ::= let {Identifier = Expression}* in Expression
; let-exp (vars exps body)
;Expression ::= let* {Identifier = Expression}* in Expression
; let*-exp (vars exps body)
;Expression ::= cond {Expression ==> Expression}∗ end
; cond-exp (preds actions)
;Expression ::= unpack {Identifier}∗ = Expression in Expression
; unpack-exp (vars exp1 exp2)
;Expression ::= proc ({Identifier}*) Expression
; proc-exp (vars body)
;Expression ::= traceproc ({Identifier}*) Expression
; traceproc-exp (vars body)
;Expression ::= (Expression {Expression}*)
; call-exp (rator rands)
;Operation ::= +|-|*|/|equal?|greater?|less?|minus|cons|car|cdr|null?|list|print
; wonder why scanner-spec2 doesn't work
;(define special '("+" "-" "*" "/" "?"))
;(define scanner-spec2
; `((white-sp (whitespace) skip)
; (comment ("%" (arbno (not #\newline))) skip)
; (identifier ((or letter ,@special) (arbno (or letter digit ,@special))) symbol)
; (number (digit (arbno digit)) number)))
(define scanner-spec
'((white-sp (whitespace) skip)
(comment ("%" (arbno (not #\newline))) skip)
(identifier ((or letter "+" "-" "*" "/" "?") (arbno (or letter digit "+" "-" "*" "/" "?"))) symbol)
(number (digit (arbno digit)) number)))
(define grammar
'((program (expression) a-program)
(expression (number) const-exp)
(expression ("if" expression "then" expression "else" expression) if-exp)
(expression (identifier) var-exp)
(expression ("let" (arbno identifier "=" expression) "in" expression) let-exp)
(expression ("let*" (arbno identifier "=" expression) "in" expression) let*-exp)
(expression ("emptylist") null-exp)
(expression ("cond" (arbno expression "==>" expression) "end") cond-exp)
(expression ("unpack" (arbno identifier) "=" expression "in" expression) unpack-exp)
(expression ("proc" "(" (arbno identifier) ")" expression) proc-exp)
(expression ("traceproc" "(" (arbno identifier) ")" expression) traceproc-exp)
(expression ("(" expression (arbno expression) ")") call-exp)
))
(sllgen:make-define-datatypes scanner-spec grammar)
(define list-the-datatypes
(lambda ()
(sllgen:list-define-datatypes scanner-spec grammar)))
(define just-scan
(sllgen:make-string-scanner scanner-spec grammar))
(define scan&parse
(sllgen:make-string-parser scanner-spec grammar))
(define identifier? symbol?)
;; Expressed values for the PROC
(define-datatype expval expval?
(num-val (num number?))
(bool-val (bool boolean?))
(null-val)
(pair-val (car expval?) (cdr expval?))
(proc-val (proc proc?)))
; procedure
(define-datatype proc proc?
(compound (vars (list-of identifier?)) (body expression?) (trace boolean?))
(primitive (name identifier?) (op procedure?)))
; used by print
(define (expval->sexp val)
(cases expval val
(num-val (num) num)
(bool-val (bool) bool)
(null-val () '())
(pair-val (a d) (cons (expval->sexp a) (expval->sexp d)))
(proc-val (a-proc) (cases proc a-proc
(compound (vars body trace)
(if trace
(string->symbol "#<traceproc>")
(string->symbol "#<procedure>")))
(primitive (name op) (string->symbol (string-append "#<primitive:"
(symbol->string name) ">")))))))
;expval->num : ExpVal → Int
(define (expval->num val)
(cases expval val
(num-val (num) num)
(else (report-expval-extractor-error 'num val))))
;expval->bool : ExpVal → Bool
(define (expval->bool val)
(cases expval val
(bool-val (bool) bool)
(else (report-expval-extractor-error 'bool val))))
;expval->proc : ExpVal → Proc
(define (expval->proc val)
(cases expval val
(proc-val (proc) proc)
(else (report-expval-extractor-error 'proc val))))
;expval->list : ExpVal → List
;convert only 1 layer. If val is not a list-val, reports error
(define (expval->list val)
(cases expval val
(null-val () '())
(pair-val (a d) (cons a (expval->list d)))
(else (report-expval-extractor-error 'list val))))
(define true (bool-val #t))
(define false (bool-val #f))
(define (report-expval-extractor-error expect val)
(eopl:error 'expval->extractor "Bad expval: expected a ~s, got ~s" expect val))
; env data structure representation, from Exercise 2.21
(define (report-no-binding-found search-var)
(eopl:error 'apply-env "No binding for ~s" search-var))
(define (report-invalid-env env)
(eopl:error 'apply-env "Bad environment: ~s" env))
; list-of: takes a predicate and generates a new predicate
; Pred -> Pred
(define (list-of pred)
(define (new-pred l)
(if (null? l)
#t
(and (pair? l) (pred (car l)) (new-pred (cdr l)))))
new-pred)
; any: predicate that always returns true
(define (any val) #t)
(define-datatype env-type env?
(empty-env)
(extend-env (var symbol?)
(val any)
(env env?)))
(define (apply-env env search-var)
(cases env-type env
(empty-env () (report-no-binding-found search-var))
(extend-env (var val env) (if (eqv? var search-var)
val
(apply-env env search-var)))))
(define (has-binding? env search-var)
(cases env-type env
(empty-env () #f)
(extend-env (var val env)
(or (eqv? var search-var)
(has-binding? env search-var)))))
; TODO: check duplicate vars
(define (extend-env+ vars vals env)
(if (null? vars)
env
(extend-env+ (cdr vars) (cdr vals) (extend-env (car vars) (car vals) env))))
(define (extend-env* vars exps env)
(if (null? vars)
env
(extend-env* (cdr vars) (cdr exps) (extend-env (car vars) (value-of (car exps) env) env))))
;init-env : () → Env
;usage: (init-env) = [i=1,v=5,x=10,true=true,false=false,+=.,-=.,...]
(define (init-env)
(extend-env+ '(i v x true false)
(list (num-val 1) (num-val 5) (num-val 10) true false)
(fold/l (lambda (env p)
(let ((name (car p))
(op (cdr p)))
(extend-env name (proc-val (primitive name op)) env))) (empty-env) primitives)))
; evaluation
;run : String → ExpVal ->Sexp
(define (run string)
(expval->sexp (value-of-program (scan&parse string))))
;value-of-program : Program → ExpVal
(define (value-of-program pgm)
(cases program pgm
(a-program (exp1)
(value-of exp1 (init-env)))))
;value-of : Exp × Env → ExpVal
(define value-of
(lambda (exp env)
(cases expression exp
(const-exp (num) (num-val num))
(var-exp (var) (apply-env env var))
(if-exp (exp1 exp2 exp3)
(let ((val1 (value-of exp1 env)))
(if (expval->bool val1)
(value-of exp2 env)
(value-of exp3 env))))
(let-exp (vars exps body)
(value-of body
(extend-env+ vars (value-of-explist exps env) env)))
(let*-exp (vars exps body)
(value-of body
(extend-env* vars exps env)))
(null-exp () (null-val))
(cond-exp (preds actions)
(value-of-cond preds actions env))
(unpack-exp (vars exp1 body)
(let* ((lst (value-of exp1 env))
(vals (expval->list lst)))
(if (equal-length? vars vals)
(value-of body (extend-env+ vars vals env))
(eopl:error 'unpack "the length of the list doesn't match the number of variables"))))
(proc-exp (vars body) (proc-val (compound vars body #f)))
(traceproc-exp (vars body) (proc-val (compound vars body #t)))
(call-exp (rator rands)
(let ((a-proc (expval->proc (value-of rator env)))
(args (value-of-explist rands env)))
(apply-procedure a-proc args env)))
)))
; ListOf(Exp) × Env → ListOf(ExpVal)
(define (value-of-explist exps env)
(map (lambda (exp) (value-of exp env)) exps))
(define (value-of-cond preds actions env)
(define (iter preds actions)
(cond
((null? preds) (eopl:error 'value-of-cond "none of the cond predicates succeed"))
((equal? true (value-of (car preds) env)) (value-of (car actions) env))
(else (iter (cdr preds) (cdr actions)))))
(iter preds actions))
(define (check-arity vars args)
(let ((l1 (length vars))
(l2 (length args)))
(if (not (= l1 l2))
(eopl:error 'apply-procedure "arity mismatch, expected ~s, got ~s" l1 l2)
#t)))
(define (apply-procedure proc1 args env)
(cases proc proc1
(compound (vars body trace)
(if trace (display "enter procedure\n") #t)
(check-arity vars args)
(let ((res (value-of body (extend-env+ vars args env))))
(if trace (display "exit procedure\n") #t)
res))
(primitive (name op) (apply op args))))
; primitives
; arithmetic operations
; ExpVal(Int) × ExpVal(Int) → ExpVal(Int)
(define (prim-arith+ val1 val2)
(arith-bin + val1 val2))
(define (prim-arith- val1 val2)
(arith-bin - val1 val2))
(define (prim-arith* val1 val2)
(arith-bin * val1 val2))
(define (prim-arith/ val1 val2)
(arith-bin quotient val1 val2))
(define (arith-bin proc val1 val2)
(let ((num1 (expval->num val1))
(num2 (expval->num val2)))
(num-val (proc num1 num2))))
(define (prim-minus val1)
(num-val (- (expval->num val1))))
; comparison operations
; ExpVal(Int) × ExpVal(Int) → ExpVal(Bool)
(define (prim-compare=? val1 val2)
(compare-ex = val1 val2))
(define (prim-compare>? val1 val2)
(compare-ex > val1 val2))
(define (prim-compare<? val1 val2)
(compare-ex < val1 val2))
(define (compare-ex proc val1 val2)
(let ((num1 (expval->num val1))
(num2 (expval->num val2)))
(bool-val (proc num1 num2))))
; ExpVal(Int) → ExpVal(Bool)
(define (prim-zero? val1)
(if (zero? (expval->num val1))
true
false))
; list operations
; ExpVal(Any) × ExpVal(Any) → ExpVal(Pair)
(define (prim-cons val1 val2)
(pair-val val1 val2))
; ExpVal(Pair) → ExpVal(Any)
(define (prim-car val)
(cases expval val
(pair-val (a d) a)
(else (report-expval-extractor-error 'pair val))))
(define (prim-cdr val)
(cases expval val
(pair-val (a d) d)
(else (report-expval-extractor-error 'pair val))))
; ExpVal(Any) → ExpVal(Bool)
(define (prim-null? val)
(cases expval val
(null-val () true)
(else false)))
; () → ExpVal(Null)
; { ExpVal(Any) }+ → ExpVal(Pair)
(define (prim-list . lov)
(define (iter l)
(if (null? l)
(null-val)
(pair-val (car l) (iter (cdr l)))))
(iter lov))
; ExpVal(Any) → print and returns 1
(define (prim-print val)
(let ((sexp (expval->sexp val)))
(display sexp)
(newline)
(num-val 1)))
(define primitives
(list (cons '+ prim-arith+)
(cons '- prim-arith-)
(cons '* prim-arith*)
(cons '/ prim-arith/)
(cons 'minus prim-minus)
(cons 'equal? prim-compare=?)
(cons 'greater? prim-compare>?)
(cons 'less? prim-compare<?)
(cons 'zero? prim-zero?)
(cons 'cons prim-cons)
(cons 'car prim-car)
(cons 'cdr prim-cdr)
(cons 'null? prim-null?)
(cons 'list prim-list)
(cons 'print prim-print)))
; utils
; fold/l accumulator on the left
(define (fold/l op init lst1 . lsts)
(if (null? lst1)
init
(apply fold/l op (apply op init (car lst1) (map car lsts)) (cdr lst1) (map cdr lsts))))
; fold/r accumulator on the right
(define (fold/r op init lst1 . lsts)
(if (null? lst1)
init
(apply op (car lst1) (fold/r (lambda (lst args)
(cons (car lst) args))
(list (apply fold/r op init (cdr lst1) (map cdr lsts)))
lsts))))
(define (equal-length? l1 l2)
(= (length l1) (length l2)))
(define repl
(sllgen:make-rep-loop "--> " value-of-program
(sllgen:make-stream-parser scanner-spec grammar)))
; test
;> (run "let a = 3
; in let p = proc (x) (- x a)
; a = 5
; in (- a (p 2))")
;8