summaryrefslogtreecommitdiff
path: root/sb-eval2.lisp
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2013-07-18 18:25:50 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2013-07-18 18:25:50 +0200
commit14c58ec9e9437b5c5cc7917d76aaa7d642246c67 (patch)
treebcee3bb03b1dd0d5f34335dcb6b281a767b06ca1 /sb-eval2.lisp
parent483ea0a709c5d4c1479cb065d2e5dbd6c1e58da0 (diff)
LET: Support SPECIAL declarations, fix the order of evaluation for special variables.
Note that no other special forms support SPECIAL declarations yet. This includes LAMBDA and LET*.
Diffstat (limited to 'sb-eval2.lisp')
-rw-r--r--sb-eval2.lisp69
1 files changed, 38 insertions, 31 deletions
diff --git a/sb-eval2.lisp b/sb-eval2.lisp
index 3ee4b22..a1bf54a 100644
--- a/sb-eval2.lisp
+++ b/sb-eval2.lisp
@@ -706,44 +706,51 @@
(maybe-closes-over-p `(progn ,@body) vars)))
(new-context
(context-add-env-lexicals context (list)))
- lexical-values*
- special-bindings*)
- (loop for (var . value-form) in real-bindings
- for val* = (prepare-form value-form context)
- if (globally-special-p var)
- collect (cons var val*) into specials
- else
- collect val* into lexicals
- and do (context-add-env-lexical! new-context var)
- finally
- (setq lexical-values* lexicals
- special-bindings* specials))
- (let ((body* (prepare-progn body new-context))
- (special-vars (mapcar #'car special-bindings*))
- (special-vals* (mapcar #'cdr special-bindings*)))
+ srav-laiceps)
+ (let* ((values*
+ (loop for (var . value-form) in real-bindings
+ for val* = (prepare-form value-form context)
+ if (or (member var specials)
+ (globally-special-p var))
+ collect (cons t val*)
+ and do (push var srav-laiceps)
+ else
+ collect (cons nil val*)
+ and do (context-add-env-lexical! new-context var)))
+ (body* (prepare-progn body new-context)))
(if envp
(lambda (env)
- (let ((new-env (make-environment env varnum)))
- (loop for i from 0 below varnum
- for val* in lexical-values*
+ (let ((new-env (make-environment env varnum))
+ (slav-laiceps (list)))
+ (loop with i fixnum = 0
+ for (specialp . val*) in values*
+ when specialp
+ do (push (funcall (the eval-closure val*) env)
+ slav-laiceps)
+ else
do (setf (environment-value new-env 0 i)
- (funcall (the eval-closure val*) env)))
+ (funcall (the eval-closure val*) env))
+ (incf i))
(progv
- special-vars
- (loop for val* in special-vals*
- collect (funcall (the eval-closure val*) env))
+ srav-laiceps
+ slav-laiceps
(funcall body* new-env))))
(lambda (env)
(with-dynamic-extent-environment (new-env env varnum)
- (loop for i from 0 below varnum
- for val* in lexical-values*
- do (setf (environment-value new-env 0 i)
- (funcall (the eval-closure val*) env)))
- (progv
- special-vars
- (loop for val* in special-vals*
- collect (funcall (the eval-closure val*) env))
- (funcall body* new-env))))))))))
+ (let ((slav-laiceps (list)))
+ (loop with i fixnum = 0
+ for (specialp . val*) in values*
+ when specialp
+ do (push (funcall (the eval-closure val*) env)
+ slav-laiceps)
+ else
+ do (setf (environment-value new-env 0 i)
+ (funcall (the eval-closure val*) env))
+ (incf i))
+ (progv
+ srav-laiceps
+ slav-laiceps
+ (funcall body* new-env)))))))))))
((let*)
;; FIXME: SPECIAL declarations!
(destructuring-bind (bindings &rest exprs) (rest form)