-
Notifications
You must be signed in to change notification settings - Fork 0
/
5.1-continuation-passing-5.11-begin.rkt
546 lines (475 loc) · 18.3 KB
/
5.1-continuation-passing-5.11-begin.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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
#lang eopl
; Continuation-Passing Interpreter (based on 5.10 version)
;Exercise 5.11 [**] Add the begin expression of exercise 4.4 to the continuationpassing interpreter.
;Be sure that no call to value-of or value-of-rands occurs in a position that would build control context.
;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 ::= letrec {Identifier ({Identifier}*) = Expression}* in Expression
; letrec-exp (p-names b-varss p-bodys letrec-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 ::= begin Expression {Expression}∗ end
; begin-exp (exp1 exps)
;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)
(identifier ((or "+" "-")) symbol)
(number (digit (arbno digit)) number)
(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 ("letrec" (arbno identifier "(" (arbno identifier) ")" "=" expression) "in" expression) letrec-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 ("begin" expression (arbno expression) "end") begin-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?) (env env?) (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 env 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)
; ****environment****
(define env? (list-of pair?))
(define (empty-env) '())
(define (extend-env var val saved-env)
(cons (cons var (newref val)) saved-env))
(define (apply-env env search-var)
(let loop ((env env))
(if (null? env)
(report-no-binding-found search-var)
(let ((var (caar env))
(val (cdar env)))
(if (eqv? var search-var)
val
(loop (cdr env)))))))
; 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))))
;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)
(initialize-store!)
(cases program pgm
(a-program (exp1)
(value-of/k exp1 (init-env) (end-cont)))))
;value-of/k : Exp × Env × Cont → FinalAnswer
(define value-of/k
(lambda (exp env cont)
(cases expression exp
(const-exp (num) (apply-cont cont (num-val num)))
(var-exp (var) (apply-cont cont (deref (apply-env env var))))
(if-exp (exp1 exp2 exp3)
(value-of/k exp1 env
(lambda (val)
(if (expval->bool val)
(value-of/k exp2 env cont)
(value-of/k exp3 env cont)))))
(let-exp (vars exps body)
(value-of-explist/k exps env
(lambda (vals)
(value-of/k body (extend-env+ vars vals env) cont))))
(let*-exp (vars exps body)
(value-of-explist*/k vars exps env
(lambda (nenv)
(value-of/k body nenv cont))))
(letrec-exp (p-names b-varss p-bodys letrec-body)
(value-of-explist-rec/k p-names b-varss p-bodys env
(lambda (nenv)
(value-of/k letrec-body nenv cont))))
(null-exp () (apply-cont cont (null-val)))
(cond-exp (preds actions)
(value-of-cond/k preds actions env cont))
(unpack-exp (vars exp1 body)
(value-of/k exp1 env
(lambda (lst)
(let ((vals (expval->list lst)))
(if (equal-length? vars vals)
(value-of/k body (extend-env+ vars vals env) cont)
(eopl:error 'unpack "the length of the list doesn't match the number of variables"))))))
(proc-exp (vars body) (apply-cont cont (proc-val (compound vars body env #f))))
(traceproc-exp (vars body) (apply-cont cont (proc-val (compound vars body env #t))))
(begin-exp (exp1 exps) (let loop ((exp1 exp1)
(exps exps))
(if (null? exps)
(value-of/k exp1 env cont)
(value-of/k exp1 env
(lambda (val)
(loop (car exps) (cdr exps)))))))
(call-exp (rator rands)
(value-of/k rator env
(lambda (proc)
(let ((a-proc (expval->proc proc)))
(value-of-explist/k rands env
(lambda (args)
(apply-procedure/k a-proc args cont)))))))
)))
;end-cont : () → Cont
(define (end-cont)
(lambda (val)
(begin
;(eopl:printf "End of computation.~%")
val)))
;apply-cont : Cont × ExpVal → FinalAnswer
(define (apply-cont cont v) (cont v))
; ListOf(Exp) × Env × Cont → ListOf(FinalAnswer)
(define (value-of-explist/k exps env cont)
(let loop ((exps exps)
(vals '()))
(if (null? exps)
(apply-cont cont (reverse vals))
(value-of/k (car exps) env
(lambda (val)
(loop (cdr exps) (cons val vals)))))))
(define (value-of-explist*/k vars exps env cont)
(let loop ((vars vars)
(exps exps)
(env env))
(if (null? exps)
(apply-cont cont env)
(value-of/k (car exps) env
(lambda (val)
(loop (cdr vars) (cdr exps) (extend-env (car vars) val env)))))))
(define (value-of-explist-rec/k p-names b-varss bodys env cont)
(let* ((vecs (map (lambda (n) (make-vector 1)) p-names))
(new-env (fold/l (lambda (env name vec) (extend-env name vec env)) env p-names vecs)))
(for-each (lambda (vec b-vars body)
(vector-set! vec 0 (proc-val (compound b-vars body new-env #f))))
vecs b-varss bodys)
(apply-cont cont new-env)))
(define (value-of-cond/k preds actions env cont)
(let loop ((preds preds)
(actions actions))
(if (null? preds)
(eopl:error 'value-of-cond/k "none of the cond predicates succeed")
(value-of/k (car preds) env
(lambda (val)
(if (equal? true val)
(value-of/k (car actions) env cont)
(loop (cdr preds) (cdr 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/k proc1 args cont)
(cases proc proc1
(compound (vars body env trace)
(if trace (display "enter procedure\n") #t)
(check-arity vars args)
(value-of/k body (extend-env+ vars args env)
(lambda (val)
(if trace (display "exit procedure\n") #t)
(apply-cont cont val))))
(primitive (name op) (apply-cont cont (apply op args)))))
; ****store****
; ====store====
(define the-store 'uninitialized)
;empty-store : () → Sto
(define (empty-store) '())
;get-store : () → Sto
(define (get-store) the-store)
;initialize-store! : () → Unspecified
(define (initialize-store!)
(set! the-store (empty-store)))
;reference? : SchemeVal → Bool
(define reference? integer?)
;newref : ExpVal → Ref
(define (newref val)
(let ((next-ref (length the-store)))
(set! the-store (append the-store (list val))) ; note the `append` here
next-ref))
;deref : Ref → ExpVal
(define (deref ref)
(let ((val (list-ref the-store ref)))
(if (vector? val)
(vector-ref val 0)
val)))
;setref! : Ref × ExpVal → Unspecified
;usage: sets the-store to a state like the original, but with position ref containing val.
(define (setref! ref val)
(set! the-store
(letrec
((setref-inner
;usage: returns a list like store1, except that position ref1 contains val.
(lambda (store1 ref1)
(cond
((null? store1)
(report-invalid-reference ref the-store))
((zero? ref1)
(cons val (cdr store1)))
(else
(cons
(car store1)
(setref-inner
(cdr store1) (- ref1 1))))))))
(setref-inner the-store ref))))
(define (report-invalid-reference ref store)
(eopl:error 'setref! "invalid reference ~s" ref))
; ****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 (filter pred lst . lsts)
(reverse (apply fold/l (lambda (res e . l)
(if (apply pred e l)
(cons e res)
res))
'() lst 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 "1")
;1
(run "if (equal? 0 0) then (+ 1 1) else (+ 2 2)")
;2
(run "if (equal? 0 1) then (+ 1 1) else (+ 2 2)")
;4
(run "i")
;1
(run "cons")
;|#<primitive:cons>|
(run "let i=2 v=(+ i 1) a=v in (list i v a x)")
;(2 2 5 10)
(run "let* i=2 v=(+ i 1) a=v in (list i v a x)")
;(2 3 3 10)
(run "letrec even(x) = if (zero? x) then true else (odd (- x 1))
odd(x) = if (zero? x) then false else (even (- x 1))
in (list (odd 3) (even 3))")
;(#t #f)
(run "emptylist")
;()
(run "cond (zero? 0) ==> (cons 1 1)
(zero? 0) ==> (cons 2 2) end")
;(1 . 1)
(run "cond (zero? 1) ==> (cons 1 1)
(zero? 0) ==> (cons 2 2) end")
;(2 . 2)
;(run "cond (zero? 1) ==> (cons 1 1)
; (zero? 1) ==> (cons 2 2) end")
;[error] value-of-cond/k: none of the cond predicates succeed
(run "unpack a b c = (list (+ 0 0) (+ 1 1) (+ 2 2)) in (list a b c)")
;(0 2 4)
(run "let f=proc(x) (* x 2) in
(list (f 1) (f 2))")
;(2 4)
(run "begin (print 1) (print 2) 3 end")
;1 2 3