2021-04-03 16:27:19 +02:00
|
|
|
;;;;EXPLICIT-CONTROL EVALUATOR FROM SECTION 5.4 OF
|
|
|
|
;;;; STRUCTURE AND INTERPRETATION OF COMPUTER PROGRAMS
|
|
|
|
|
|
|
|
;;;;Matches code in ch5.scm
|
|
|
|
|
|
|
|
;;; To use it
|
|
|
|
;;; -- load "load-eceval.scm", which loads this file and the
|
|
|
|
;;; support it needs (including the register-machine simulator)
|
|
|
|
|
|
|
|
;;; -- To initialize and start the machine, do
|
|
|
|
|
|
|
|
;: (define the-global-environment (setup-environment))
|
|
|
|
|
|
|
|
;: (start eceval)
|
|
|
|
(load "misc/sicp-eceval-support.scm")
|
2021-04-08 04:14:42 +02:00
|
|
|
(load "misc/sicp-leval.scm")
|
2021-04-03 16:27:19 +02:00
|
|
|
|
|
|
|
;; To restart, can do just
|
|
|
|
;: (start eceval)
|
|
|
|
;;;;;;;;;;
|
|
|
|
|
|
|
|
|
|
|
|
;;**NB. To [not] monitor stack operations, comment in/[out] the line after
|
|
|
|
;; print-result in the machine controller below
|
|
|
|
;;**Also choose the desired make-stack version in regsim.scm
|
|
|
|
|
|
|
|
(define eceval-operations
|
|
|
|
(list
|
|
|
|
;;primitive Scheme operations
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'display display)
|
|
|
|
(list 'newline newline)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'read read)
|
|
|
|
|
|
|
|
;;operations in syntax.scm
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'application? application?)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'assignment-value assignment-value)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'assignment-variable assignment-variable)
|
|
|
|
(list 'assignment? assignment?)
|
|
|
|
(list 'begin-actions begin-actions)
|
|
|
|
(list 'begin? begin?)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'definition-value definition-value)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'definition-variable definition-variable)
|
|
|
|
(list 'definition? definition?)
|
|
|
|
(list 'first-exp first-exp)
|
|
|
|
(list 'first-operand first-operand)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'if-alternative if-alternative)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'if-consequent if-consequent)
|
|
|
|
(list 'if-predicate if-predicate)
|
|
|
|
(list 'if? if?)
|
|
|
|
(list 'lambda-body lambda-body)
|
|
|
|
(list 'lambda-parameters lambda-parameters)
|
|
|
|
(list 'lambda? lambda?)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'last-exp? last-exp?)
|
|
|
|
(list 'no-operands? no-operands?)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'operands operands)
|
|
|
|
(list 'operator operator)
|
|
|
|
(list 'quoted? quoted?)
|
|
|
|
(list 'rest-exps rest-exps)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'rest-operands rest-operands)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'self-evaluating? self-evaluating?)
|
|
|
|
(list 'text-of-quotation text-of-quotation)
|
|
|
|
(list 'variable? variable?)
|
2021-04-03 16:27:19 +02:00
|
|
|
|
|
|
|
;;operations in eceval-support.scm
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'adjoin-arg adjoin-arg)
|
|
|
|
(list 'announce-output announce-output)
|
|
|
|
(list 'apply-primitive-procedure apply-primitive-procedure)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'compound-procedure? compound-procedure?)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'define-variable! define-variable!)
|
|
|
|
(list 'empty-arglist empty-arglist)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'extend-environment extend-environment)
|
2021-04-07 04:11:18 +02:00
|
|
|
(list 'get-global-environment get-global-environment)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'last-operand? last-operand?)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'lookup-variable-value lookup-variable-value)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'make-procedure make-procedure)
|
|
|
|
(list 'no-more-exps? no-more-exps?) ;for non-tail-recursive machine
|
|
|
|
(list 'primitive-procedure? primitive-procedure?)
|
|
|
|
(list 'procedure-body procedure-body)
|
|
|
|
(list 'procedure-environment procedure-environment)
|
|
|
|
(list 'procedure-parameters procedure-parameters)
|
|
|
|
(list 'prompt-for-input prompt-for-input)
|
2021-04-03 16:27:19 +02:00
|
|
|
(list 'set-variable-value! set-variable-value!)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'true? true?)
|
|
|
|
(list 'user-print user-print)
|
|
|
|
|
2021-04-04 17:46:15 +02:00
|
|
|
;;5.23
|
|
|
|
(list 'cond->if cond->if)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'cond-actions cond-actions)
|
|
|
|
(list 'cond-clauses cond-clauses)
|
|
|
|
(list 'cond-else-clause? cond-else-clause?)
|
|
|
|
(list 'cond-first-clause cond-first-clause)
|
|
|
|
(list 'cond-predicate cond-predicate)
|
|
|
|
(list 'cond? cond?)
|
2021-04-04 17:46:15 +02:00
|
|
|
(list 'let->combination let->combination)
|
2021-04-05 17:09:03 +02:00
|
|
|
(list 'let? let?)
|
2021-04-08 04:14:42 +02:00
|
|
|
|
|
|
|
;;5.25
|
|
|
|
(list 'delay-it delay-it)
|
|
|
|
(list 'thunk? thunk?)
|
2021-04-08 14:48:37 +02:00
|
|
|
(list 'thunk-exp thunk-exp)
|
|
|
|
(list 'thunk-env thunk-env)
|
2021-04-08 04:14:42 +02:00
|
|
|
|
2021-04-07 04:11:18 +02:00
|
|
|
))
|
2021-04-03 16:27:19 +02:00
|
|
|
|
2021-04-09 14:57:35 +02:00
|
|
|
; Below is the original version of the evaluator-machine from the book modified
|
|
|
|
; for lazy-evaluation.
|
|
|
|
(define eceval-lazy
|
2021-04-03 16:27:19 +02:00
|
|
|
(make-machine
|
|
|
|
'(exp env val proc argl continue unev)
|
|
|
|
eceval-operations
|
|
|
|
'(
|
|
|
|
|
|
|
|
(perform (op initialize-stack))
|
|
|
|
(assign env (op get-global-environment))
|
2021-04-08 14:48:37 +02:00
|
|
|
(assign continue (label ev-almost-done))
|
2021-04-03 16:27:19 +02:00
|
|
|
(goto (label eval-dispatch))
|
|
|
|
|
|
|
|
unknown-expression-type
|
|
|
|
(assign val (const unknown-expression-type-error))
|
|
|
|
(goto (label signal-error))
|
|
|
|
|
|
|
|
unknown-procedure-type
|
|
|
|
(restore continue)
|
|
|
|
(assign val (const unknown-procedure-type-error))
|
|
|
|
(goto (label signal-error))
|
|
|
|
|
|
|
|
signal-error
|
|
|
|
(perform (op user-print) (reg val))
|
|
|
|
(goto (label ev-done))
|
|
|
|
|
|
|
|
;;SECTION 5.4.1
|
|
|
|
eval-dispatch
|
|
|
|
(test (op self-evaluating?) (reg exp))
|
|
|
|
(branch (label ev-self-eval))
|
|
|
|
(test (op variable?) (reg exp))
|
|
|
|
(branch (label ev-variable))
|
|
|
|
(test (op quoted?) (reg exp))
|
|
|
|
(branch (label ev-quoted))
|
|
|
|
(test (op assignment?) (reg exp))
|
|
|
|
(branch (label ev-assignment))
|
|
|
|
(test (op definition?) (reg exp))
|
|
|
|
(branch (label ev-definition))
|
|
|
|
(test (op if?) (reg exp))
|
|
|
|
(branch (label ev-if))
|
2021-04-04 17:46:15 +02:00
|
|
|
(test (op cond?) (reg exp))
|
|
|
|
(branch (label ev-cond))
|
|
|
|
(test (op let?) (reg exp))
|
|
|
|
(branch (label ev-let))
|
2021-04-03 16:27:19 +02:00
|
|
|
(test (op lambda?) (reg exp))
|
|
|
|
(branch (label ev-lambda))
|
|
|
|
(test (op begin?) (reg exp))
|
|
|
|
(branch (label ev-begin))
|
|
|
|
(test (op application?) (reg exp))
|
|
|
|
(branch (label ev-application))
|
|
|
|
(goto (label unknown-expression-type))
|
|
|
|
|
|
|
|
ev-self-eval
|
|
|
|
(assign val (reg exp))
|
|
|
|
(goto (reg continue))
|
|
|
|
ev-variable
|
|
|
|
(assign val (op lookup-variable-value) (reg exp) (reg env))
|
|
|
|
(goto (reg continue))
|
|
|
|
ev-quoted
|
|
|
|
(assign val (op text-of-quotation) (reg exp))
|
|
|
|
(goto (reg continue))
|
|
|
|
ev-lambda
|
|
|
|
(assign unev (op lambda-parameters) (reg exp))
|
|
|
|
(assign exp (op lambda-body) (reg exp))
|
|
|
|
(assign val (op make-procedure)
|
|
|
|
(reg unev) (reg exp) (reg env))
|
|
|
|
(goto (reg continue))
|
|
|
|
|
|
|
|
ev-application
|
|
|
|
(save continue)
|
|
|
|
(save env)
|
|
|
|
(assign unev (op operands) (reg exp))
|
|
|
|
(save unev)
|
|
|
|
(assign exp (op operator) (reg exp))
|
|
|
|
(assign continue (label ev-appl-did-operator))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-appl-did-operator
|
|
|
|
(restore unev)
|
|
|
|
(restore env)
|
|
|
|
(assign argl (op empty-arglist))
|
|
|
|
(assign proc (reg val))
|
|
|
|
(test (op no-operands?) (reg unev))
|
|
|
|
(branch (label apply-dispatch))
|
|
|
|
(save proc)
|
2021-04-08 04:14:42 +02:00
|
|
|
|
|
|
|
(test (op primitive-procedure?) (reg proc))
|
|
|
|
(branch (label ev-appl-operand-loop-force))
|
|
|
|
(test (op compound-procedure?) (reg proc))
|
|
|
|
(branch (label ev-appl-operand-loop-delay))
|
2021-04-08 14:48:37 +02:00
|
|
|
(goto (label unknown-procedure-type))
|
|
|
|
|
|
|
|
ev-force-it
|
|
|
|
(assign env (op thunk-env) (reg val))
|
|
|
|
(assign exp (op thunk-exp) (reg val))
|
|
|
|
(goto (label eval-dispatch))
|
2021-04-08 04:14:42 +02:00
|
|
|
|
|
|
|
ev-appl-operand-loop-force
|
|
|
|
(save argl)
|
|
|
|
(assign exp (op first-operand) (reg unev))
|
|
|
|
(test (op last-operand?) (reg unev))
|
|
|
|
(branch (label ev-appl-last-arg-force))
|
|
|
|
(save env)
|
|
|
|
(save unev)
|
|
|
|
(assign continue (label ev-appl-accumulate-arg-force))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-appl-accumulate-arg-force
|
2021-04-08 14:48:37 +02:00
|
|
|
(test (op thunk?) (reg val))
|
|
|
|
(branch (label ev-force-it))
|
2021-04-08 04:14:42 +02:00
|
|
|
(restore unev)
|
|
|
|
(restore env)
|
|
|
|
(restore argl)
|
|
|
|
(assign argl (op adjoin-arg) (reg val) (reg argl))
|
|
|
|
(assign unev (op rest-operands) (reg unev))
|
|
|
|
(goto (label ev-appl-operand-loop-force))
|
|
|
|
ev-appl-last-arg-force
|
|
|
|
(assign continue (label ev-appl-accum-last-arg-force))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-appl-accum-last-arg-force
|
2021-04-08 14:48:37 +02:00
|
|
|
(test (op thunk?) (reg val))
|
|
|
|
(branch (label ev-force-it))
|
2021-04-08 04:14:42 +02:00
|
|
|
(restore argl)
|
|
|
|
(assign argl (op adjoin-arg) (reg val) (reg argl))
|
|
|
|
(restore proc)
|
|
|
|
(goto (label apply-dispatch))
|
|
|
|
|
|
|
|
ev-appl-operand-loop-delay
|
2021-04-08 14:48:37 +02:00
|
|
|
;(save argl)
|
2021-04-03 16:27:19 +02:00
|
|
|
(assign exp (op first-operand) (reg unev))
|
|
|
|
(test (op last-operand?) (reg unev))
|
2021-04-08 04:14:42 +02:00
|
|
|
(branch (label ev-appl-last-arg-delay))
|
2021-04-08 14:48:37 +02:00
|
|
|
;(save env)
|
|
|
|
;(save unev)
|
|
|
|
(assign val (op delay-it) (reg exp) (reg env))
|
|
|
|
;(assign continue (label ev-appl-accumulate-arg-delay))
|
|
|
|
;(goto (label eval-dispatch))
|
2021-04-08 04:14:42 +02:00
|
|
|
ev-appl-accumulate-arg-delay
|
2021-04-08 14:48:37 +02:00
|
|
|
;(restore unev)
|
|
|
|
;(restore env)
|
|
|
|
;(restore argl)
|
2021-04-03 16:27:19 +02:00
|
|
|
(assign argl (op adjoin-arg) (reg val) (reg argl))
|
|
|
|
(assign unev (op rest-operands) (reg unev))
|
2021-04-08 04:14:42 +02:00
|
|
|
(goto (label ev-appl-operand-loop-delay))
|
|
|
|
ev-appl-last-arg-delay
|
2021-04-08 14:48:37 +02:00
|
|
|
(assign val (op delay-it) (reg exp) (reg env))
|
|
|
|
;(assign continue (label ev-appl-accum-last-arg-delay))
|
|
|
|
;(goto (label eval-dispatch))
|
2021-04-08 04:14:42 +02:00
|
|
|
ev-appl-accum-last-arg-delay
|
2021-04-08 14:48:37 +02:00
|
|
|
;(restore argl)
|
2021-04-03 16:27:19 +02:00
|
|
|
(assign argl (op adjoin-arg) (reg val) (reg argl))
|
|
|
|
(restore proc)
|
|
|
|
(goto (label apply-dispatch))
|
2021-04-08 04:14:42 +02:00
|
|
|
|
2021-04-03 16:27:19 +02:00
|
|
|
apply-dispatch
|
|
|
|
(test (op primitive-procedure?) (reg proc))
|
|
|
|
(branch (label primitive-apply))
|
|
|
|
(test (op compound-procedure?) (reg proc))
|
|
|
|
(branch (label compound-apply))
|
|
|
|
(goto (label unknown-procedure-type))
|
|
|
|
|
|
|
|
primitive-apply
|
|
|
|
(assign val (op apply-primitive-procedure)
|
|
|
|
(reg proc)
|
|
|
|
(reg argl))
|
|
|
|
(restore continue)
|
|
|
|
(goto (reg continue))
|
|
|
|
|
|
|
|
compound-apply
|
|
|
|
(assign unev (op procedure-parameters) (reg proc))
|
|
|
|
(assign env (op procedure-environment) (reg proc))
|
|
|
|
(assign env (op extend-environment)
|
|
|
|
(reg unev) (reg argl) (reg env))
|
|
|
|
(assign unev (op procedure-body) (reg proc))
|
|
|
|
(goto (label ev-sequence))
|
|
|
|
|
|
|
|
;;;SECTION 5.4.2
|
|
|
|
ev-begin
|
|
|
|
(assign unev (op begin-actions) (reg exp))
|
|
|
|
(save continue)
|
|
|
|
(goto (label ev-sequence))
|
|
|
|
|
|
|
|
ev-sequence
|
|
|
|
(assign exp (op first-exp) (reg unev))
|
|
|
|
(test (op last-exp?) (reg unev))
|
|
|
|
(branch (label ev-sequence-last-exp))
|
|
|
|
(save unev)
|
|
|
|
(save env)
|
|
|
|
(assign continue (label ev-sequence-continue))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-sequence-continue
|
|
|
|
(restore env)
|
|
|
|
(restore unev)
|
|
|
|
(assign unev (op rest-exps) (reg unev))
|
|
|
|
(goto (label ev-sequence))
|
|
|
|
ev-sequence-last-exp
|
|
|
|
(restore continue)
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
|
2021-04-04 17:46:15 +02:00
|
|
|
;;; ex-5.23
|
2021-04-05 17:09:03 +02:00
|
|
|
ev-cond-transform
|
2021-04-04 17:46:15 +02:00
|
|
|
(assign exp (op cond->if) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
2021-04-03 16:27:19 +02:00
|
|
|
|
2021-04-05 17:09:03 +02:00
|
|
|
;;; ex-5.24
|
|
|
|
ev-cond
|
|
|
|
(save continue)
|
|
|
|
(assign unev (op cond-clauses) (reg exp)) ; unev contains all clauses
|
|
|
|
ev-cond-loop
|
|
|
|
(assign exp (op cond-first-clause) (reg unev)) ; exp contains first clause
|
|
|
|
(test (op cond-else-clause?) (reg exp)) ; test for else-clause
|
|
|
|
(branch (label ev-cond-done))
|
|
|
|
(assign continue (label ev-cond-decide))
|
|
|
|
(save unev)
|
|
|
|
(assign exp (op cond-predicate) (reg exp)) ; exp contains first predicate
|
|
|
|
(goto (label eval-dispatch)) ; eval predicate
|
|
|
|
ev-cond-decide
|
|
|
|
(restore unev)
|
|
|
|
(test (op true?) (reg val)) ; test if predicate is true
|
|
|
|
(branch (label ev-cond-done))
|
|
|
|
(assign unev (op cond-clauses) (reg unev)) ; unev contains remainging clauses
|
|
|
|
(goto (label ev-cond-loop))
|
|
|
|
ev-cond-done
|
|
|
|
(restore continue)
|
|
|
|
(assign exp (op cond-first-clause) (reg unev)) ; exp contains true clause
|
|
|
|
(goto (label ev-begin))
|
|
|
|
|
2021-04-04 17:46:15 +02:00
|
|
|
ev-let
|
|
|
|
(assign exp (op let->combination) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
|
|
|
|
;;;SECTION 5.4.3
|
2021-04-03 16:27:19 +02:00
|
|
|
ev-if
|
|
|
|
(save exp)
|
|
|
|
(save env)
|
|
|
|
(save continue)
|
|
|
|
(assign continue (label ev-if-decide))
|
|
|
|
(assign exp (op if-predicate) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-if-decide
|
|
|
|
(restore continue)
|
|
|
|
(restore env)
|
|
|
|
(restore exp)
|
|
|
|
(test (op true?) (reg val))
|
|
|
|
(branch (label ev-if-consequent))
|
|
|
|
ev-if-alternative
|
|
|
|
(assign exp (op if-alternative) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-if-consequent
|
|
|
|
(assign exp (op if-consequent) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
|
|
|
|
ev-assignment
|
|
|
|
(assign unev (op assignment-variable) (reg exp))
|
|
|
|
(save unev)
|
|
|
|
(assign exp (op assignment-value) (reg exp))
|
|
|
|
(save env)
|
|
|
|
(save continue)
|
|
|
|
(assign continue (label ev-assignment-1))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-assignment-1
|
|
|
|
(restore continue)
|
|
|
|
(restore env)
|
|
|
|
(restore unev)
|
|
|
|
(perform
|
|
|
|
(op set-variable-value!) (reg unev) (reg val) (reg env))
|
|
|
|
(assign val (const ok))
|
|
|
|
(goto (reg continue))
|
|
|
|
|
|
|
|
ev-definition
|
|
|
|
(assign unev (op definition-variable) (reg exp))
|
|
|
|
(save unev)
|
|
|
|
(assign exp (op definition-value) (reg exp))
|
|
|
|
(save env)
|
|
|
|
(save continue)
|
|
|
|
(assign continue (label ev-definition-1))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-definition-1
|
|
|
|
(restore continue)
|
|
|
|
(restore env)
|
|
|
|
(restore unev)
|
|
|
|
(perform
|
|
|
|
(op define-variable!) (reg unev) (reg val) (reg env))
|
|
|
|
(assign val (const ok))
|
|
|
|
(goto (reg continue))
|
2021-04-08 14:48:37 +02:00
|
|
|
ev-almost-done
|
|
|
|
(test (op thunk?) (reg val))
|
|
|
|
(branch (label ev-thunk-before-done))
|
|
|
|
(goto (label ev-done))
|
|
|
|
ev-thunk-before-done
|
|
|
|
(assign env (op thunk-env) (reg val))
|
|
|
|
(assign exp (op thunk-exp) (reg val))
|
|
|
|
(assign continue (label ev-done))
|
|
|
|
(goto (label eval-dispatch))
|
2021-04-03 16:27:19 +02:00
|
|
|
ev-done
|
2021-04-09 14:57:35 +02:00
|
|
|
;;(perform (op print-stack-statistics))
|
|
|
|
)))
|
|
|
|
|
|
|
|
; Below is the original version of the evaluator from the book without the
|
|
|
|
; read-eval-print loop. We assign to the expression before we start the
|
|
|
|
; machine. The machine has added support for let and cond.
|
|
|
|
(define eceval
|
|
|
|
(make-machine
|
|
|
|
'(exp env val proc argl continue unev)
|
|
|
|
eceval-operations
|
|
|
|
'(
|
|
|
|
(perform (op initialize-stack))
|
|
|
|
(assign env (op get-global-environment))
|
|
|
|
(assign continue (label ev-done))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
|
|
|
|
unknown-expression-type
|
|
|
|
(assign val (const unknown-expression-type-error))
|
|
|
|
(goto (label signal-error))
|
|
|
|
|
|
|
|
unknown-procedure-type
|
|
|
|
(restore continue)
|
|
|
|
(assign val (const unknown-procedure-type-error))
|
|
|
|
(goto (label signal-error))
|
|
|
|
|
|
|
|
signal-error
|
|
|
|
(perform (op user-print) (reg val))
|
|
|
|
(goto (label ev-done))
|
|
|
|
|
|
|
|
;;SECTION 5.4.1
|
|
|
|
eval-dispatch
|
|
|
|
(test (op cond?) (reg exp))
|
|
|
|
(branch (label ev-cond))
|
|
|
|
(test (op let?) (reg exp))
|
|
|
|
(branch (label ev-let))
|
|
|
|
(test (op self-evaluating?) (reg exp))
|
|
|
|
(branch (label ev-self-eval))
|
|
|
|
(test (op variable?) (reg exp))
|
|
|
|
(branch (label ev-variable))
|
|
|
|
(test (op quoted?) (reg exp))
|
|
|
|
(branch (label ev-quoted))
|
|
|
|
(test (op assignment?) (reg exp))
|
|
|
|
(branch (label ev-assignment))
|
|
|
|
(test (op definition?) (reg exp))
|
|
|
|
(branch (label ev-definition))
|
|
|
|
(test (op if?) (reg exp))
|
|
|
|
(branch (label ev-if))
|
|
|
|
(test (op lambda?) (reg exp))
|
|
|
|
(branch (label ev-lambda))
|
|
|
|
(test (op begin?) (reg exp))
|
|
|
|
(branch (label ev-begin))
|
|
|
|
(test (op application?) (reg exp))
|
|
|
|
(branch (label ev-application))
|
|
|
|
(goto (label unknown-expression-type))
|
|
|
|
|
|
|
|
ev-self-eval
|
|
|
|
(assign val (reg exp))
|
|
|
|
(goto (reg continue))
|
|
|
|
ev-variable
|
|
|
|
(assign val (op lookup-variable-value) (reg exp) (reg env))
|
|
|
|
(goto (reg continue))
|
|
|
|
ev-quoted
|
|
|
|
(assign val (op text-of-quotation) (reg exp))
|
|
|
|
(goto (reg continue))
|
|
|
|
ev-lambda
|
|
|
|
(assign unev (op lambda-parameters) (reg exp))
|
|
|
|
(assign exp (op lambda-body) (reg exp))
|
|
|
|
(assign val (op make-procedure)
|
|
|
|
(reg unev) (reg exp) (reg env))
|
|
|
|
(goto (reg continue))
|
|
|
|
|
|
|
|
ev-application
|
|
|
|
(save continue)
|
|
|
|
(save env)
|
|
|
|
(assign unev (op operands) (reg exp))
|
|
|
|
(save unev)
|
|
|
|
(assign exp (op operator) (reg exp))
|
|
|
|
(assign continue (label ev-appl-did-operator))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-appl-did-operator
|
|
|
|
(restore unev)
|
|
|
|
(restore env)
|
|
|
|
(assign argl (op empty-arglist))
|
|
|
|
(assign proc (reg val))
|
|
|
|
(test (op no-operands?) (reg unev))
|
|
|
|
(branch (label apply-dispatch))
|
|
|
|
(save proc)
|
|
|
|
ev-appl-operand-loop
|
|
|
|
(save argl)
|
|
|
|
(assign exp (op first-operand) (reg unev))
|
|
|
|
(test (op last-operand?) (reg unev))
|
|
|
|
(branch (label ev-appl-last-arg))
|
|
|
|
(save env)
|
|
|
|
(save unev)
|
|
|
|
(assign continue (label ev-appl-accumulate-arg))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-appl-accumulate-arg
|
|
|
|
(restore unev)
|
|
|
|
(restore env)
|
|
|
|
(restore argl)
|
|
|
|
(assign argl (op adjoin-arg) (reg val) (reg argl))
|
|
|
|
(assign unev (op rest-operands) (reg unev))
|
|
|
|
(goto (label ev-appl-operand-loop))
|
|
|
|
ev-appl-last-arg
|
|
|
|
(assign continue (label ev-appl-accum-last-arg))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-appl-accum-last-arg
|
|
|
|
(restore argl)
|
|
|
|
(assign argl (op adjoin-arg) (reg val) (reg argl))
|
|
|
|
(restore proc)
|
|
|
|
(goto (label apply-dispatch))
|
|
|
|
apply-dispatch
|
|
|
|
(test (op primitive-procedure?) (reg proc))
|
|
|
|
(branch (label primitive-apply))
|
|
|
|
(test (op compound-procedure?) (reg proc))
|
|
|
|
(branch (label compound-apply))
|
|
|
|
(goto (label unknown-procedure-type))
|
|
|
|
|
|
|
|
primitive-apply
|
|
|
|
(assign val (op apply-primitive-procedure)
|
|
|
|
(reg proc)
|
|
|
|
(reg argl))
|
|
|
|
(restore continue)
|
|
|
|
(goto (reg continue))
|
|
|
|
|
|
|
|
compound-apply
|
|
|
|
(assign unev (op procedure-parameters) (reg proc))
|
|
|
|
(assign env (op procedure-environment) (reg proc))
|
|
|
|
(assign env (op extend-environment)
|
|
|
|
(reg unev) (reg argl) (reg env))
|
|
|
|
(assign unev (op procedure-body) (reg proc))
|
|
|
|
(goto (label ev-sequence))
|
|
|
|
|
|
|
|
;;;SECTION 5.4.2
|
|
|
|
ev-begin
|
|
|
|
(assign unev (op begin-actions) (reg exp))
|
|
|
|
(save continue)
|
|
|
|
(goto (label ev-sequence))
|
|
|
|
|
|
|
|
ev-cond
|
|
|
|
(save continue)
|
|
|
|
(assign unev (op cond-clauses) (reg exp)) ; unev contains all clauses
|
|
|
|
ev-cond-loop
|
|
|
|
(assign exp (op cond-first-clause) (reg unev)) ; exp contains first clause
|
|
|
|
(test (op cond-else-clause?) (reg exp)) ; test for else-clause
|
|
|
|
(branch (label ev-cond-done))
|
|
|
|
(assign continue (label ev-cond-decide))
|
|
|
|
(save unev)
|
|
|
|
(assign exp (op cond-predicate) (reg exp)) ; exp contains first predicate
|
|
|
|
(goto (label eval-dispatch)) ; eval predicate
|
|
|
|
ev-cond-decide
|
|
|
|
(restore unev)
|
|
|
|
(test (op true?) (reg val)) ; test if predicate is true
|
|
|
|
(branch (label ev-cond-done))
|
|
|
|
(assign unev (op cond-clauses) (reg unev)) ; unev contains remainging clauses
|
|
|
|
(goto (label ev-cond-loop))
|
|
|
|
ev-cond-done
|
|
|
|
(restore continue)
|
|
|
|
(assign exp (op cond-first-clause) (reg unev)) ; exp contains true clause
|
|
|
|
(goto (label ev-begin))
|
|
|
|
|
|
|
|
ev-let
|
|
|
|
(assign exp (op let->combination) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
|
|
|
|
ev-sequence
|
|
|
|
(assign exp (op first-exp) (reg unev))
|
|
|
|
(test (op last-exp?) (reg unev))
|
|
|
|
(branch (label ev-sequence-last-exp))
|
|
|
|
(save unev)
|
|
|
|
(save env)
|
|
|
|
(assign continue (label ev-sequence-continue))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-sequence-continue
|
|
|
|
(restore env)
|
|
|
|
(restore unev)
|
|
|
|
(assign unev (op rest-exps) (reg unev))
|
|
|
|
(goto (label ev-sequence))
|
|
|
|
ev-sequence-last-exp
|
|
|
|
(restore continue)
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
|
|
|
|
;;;SECTION 5.4.3
|
|
|
|
|
|
|
|
ev-if
|
|
|
|
(save exp)
|
|
|
|
(save env)
|
|
|
|
(save continue)
|
|
|
|
(assign continue (label ev-if-decide))
|
|
|
|
(assign exp (op if-predicate) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-if-decide
|
|
|
|
(restore continue)
|
|
|
|
(restore env)
|
|
|
|
(restore exp)
|
|
|
|
(test (op true?) (reg val))
|
|
|
|
(branch (label ev-if-consequent))
|
|
|
|
ev-if-alternative
|
|
|
|
(assign exp (op if-alternative) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-if-consequent
|
|
|
|
(assign exp (op if-consequent) (reg exp))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
|
|
|
|
ev-assignment
|
|
|
|
(assign unev (op assignment-variable) (reg exp))
|
|
|
|
(save unev)
|
|
|
|
(assign exp (op assignment-value) (reg exp))
|
|
|
|
(save env)
|
|
|
|
(save continue)
|
|
|
|
(assign continue (label ev-assignment-1))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-assignment-1
|
|
|
|
(restore continue)
|
|
|
|
(restore env)
|
|
|
|
(restore unev)
|
|
|
|
(perform
|
|
|
|
(op set-variable-value!) (reg unev) (reg val) (reg env))
|
|
|
|
(assign val (const ok))
|
|
|
|
(goto (reg continue))
|
|
|
|
|
|
|
|
ev-definition
|
|
|
|
(assign unev (op definition-variable) (reg exp))
|
|
|
|
(save unev)
|
|
|
|
(assign exp (op definition-value) (reg exp))
|
|
|
|
(save env)
|
|
|
|
(save continue)
|
|
|
|
(assign continue (label ev-definition-1))
|
|
|
|
(goto (label eval-dispatch))
|
|
|
|
ev-definition-1
|
|
|
|
(restore continue)
|
|
|
|
(restore env)
|
|
|
|
(restore unev)
|
|
|
|
(perform
|
|
|
|
(op define-variable!) (reg unev) (reg val) (reg env))
|
|
|
|
(assign val (const ok))
|
|
|
|
(goto (reg continue))
|
|
|
|
ev-done
|
|
|
|
;(perform (op print-stack-statistics))
|
|
|
|
)))
|
2021-04-03 16:27:19 +02:00
|
|
|
|
|
|
|
'(EXPLICIT CONTROL EVALUATOR LOADED)
|