Skip to content
Snippets Groups Projects
Commit df073a64 authored by ram's avatar ram
Browse files

In GET-LAMBDA-ENVIRONMENT, clean out any deleted variables that where optimized

away after environment pre-analysis.
parent 4e03e1b4
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/envanal.lisp,v 1.14 1991/03/18 13:06:22 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/envanal.lisp,v 1.15 1991/08/28 02:59:57 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -67,17 +67,24 @@ ...@@ -67,17 +67,24 @@
;;; GET-LAMBDA-ENVIRONMENT -- Internal ;;; GET-LAMBDA-ENVIRONMENT -- Internal
;;; ;;;
;;; If Fun has an environment, return it, otherwise assign one. ;;; If Fun has an environment, return it, otherwise assign one. We clean
;;; any deleted variables out of an existing environments closure. This is
;;; necessary because pre-analysis is done before optimization.
;;; ;;;
(defun get-lambda-environment (fun) (defun get-lambda-environment (fun)
(declare (type clambda fun)) (declare (type clambda fun))
(let ((fun (lambda-home fun))) (let* ((fun (lambda-home fun))
(or (lambda-environment fun) (env (lambda-environment fun)))
(let ((res (make-environment :function fun))) (cond (env
(setf (lambda-environment fun) res) (setf (environment-closure env)
(dolist (lambda (lambda-lets fun)) (delete-if-not #'leaf-refs (environment-closure env)))
(setf (lambda-environment lambda) res)) env)
res)))) (t
(let ((res (make-environment :function fun)))
(setf (lambda-environment fun) res)
(dolist (lambda (lambda-lets fun))
(setf (lambda-environment lambda) res))
res)))))
;;; GET-NODE-ENVIRONMENT -- Internal ;;; GET-NODE-ENVIRONMENT -- Internal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment