Skip to content
Snippets Groups Projects
Commit 96fd4726 authored by toy's avatar toy
Browse files

A very slightly massaged patch taken from the SBCL patch by Alexey

Dejneka that fixes the bug where

   The assertion (EQ (C::LAMBDA-TAIL-SET C::CALLER)
                     (C::LAMBDA-TAIL-SET (C::LAMBDA-HOME C::CALLEE))) failed.
parent a0d3af16
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.83 2001/06/17 19:12:36 pw Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.84 2002/08/21 17:55:19 toy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -754,7 +754,13 @@ ...@@ -754,7 +754,13 @@
(let* ((bind-block (node-block bind)) (let* ((bind-block (node-block bind))
(component (block-component bind-block)) (component (block-component bind-block))
(return (lambda-return leaf))) (return (lambda-return leaf)))
(assert (null (leaf-refs leaf)))
;; DELETE-LAMBDA can now remove a recursive lambda. Check
;; that all calls are from the lambda being deleted.
(dolist (ref (lambda-refs leaf))
(let ((home (node-home-lambda ref)))
(assert (eq home leaf))))
(unless (leaf-ever-used leaf) (unless (leaf-ever-used leaf)
(let ((*compiler-error-context* bind)) (let ((*compiler-error-context* bind))
(compiler-note "Deleting unused function~:[.~;~:*~% ~S~]" (compiler-note "Deleting unused function~:[.~;~:*~% ~S~]"
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/locall.lisp,v 1.50 2000/09/07 12:16:23 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/locall.lisp,v 1.51 2002/08/21 17:55:20 toy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -720,24 +720,38 @@ ...@@ -720,24 +720,38 @@
(setf (lambda-tail-set fun) nil) (setf (lambda-tail-set fun) nil)
(let* ((home (node-home-lambda call)) (let* ((home (node-home-lambda call))
(home-env (lambda-environment home))) (home-env (lambda-environment home)))
(assert (not (eq home fun)))
;; FUN belongs to HOME now.
(push fun (lambda-lets home)) (push fun (lambda-lets home))
(setf (lambda-home fun) home) (setf (lambda-home fun) home)
(setf (lambda-environment fun) home-env) (setf (lambda-environment fun) home-env)
;; All of FUN's LETs belong to HOME now
(let ((lets (lambda-lets fun))) (let ((lets (lambda-lets fun)))
(dolist (let lets) (dolist (let lets)
(setf (lambda-home let) home) (setf (lambda-home let) home)
(setf (lambda-environment let) home-env)) (setf (lambda-environment let) home-env))
(setf (lambda-lets home) (nconc lets (lambda-lets home))) (setf (lambda-lets home) (nconc lets (lambda-lets home)))
;; FUN no longer has an independent existence as an entity which
;; has LETs.
(setf (lambda-lets fun) ())) (setf (lambda-lets fun) ()))
;; HOME no longer calls FUN, and owns all of FUN's old DFO
;; dependencies
(setf (lambda-calls home) (setf (lambda-calls home)
(delete fun (nunion (lambda-calls fun) (lambda-calls home)))) (delete fun (nunion (lambda-calls fun) (lambda-calls home))))
;; FUN no longer has an independent existence as an entity
;; which calls things or has DFO dependencies.
(setf (lambda-calls fun) ()) (setf (lambda-calls fun) ())
;; All of FUN's ENTRIES belong to HOME now.
(setf (lambda-entries home) (setf (lambda-entries home)
(nconc (lambda-entries fun) (lambda-entries home))) (nconc (lambda-entries fun) (lambda-entries home)))
;; FUN no longer has an independent existence as an entity
;; with ENTRIES.
(setf (lambda-entries fun) ())) (setf (lambda-entries fun) ()))
(undefined-value)) (undefined-value))
...@@ -957,6 +971,9 @@ ...@@ -957,6 +971,9 @@
(t (t
(reoptimize-continuation ref-cont) (reoptimize-continuation ref-cont)
nil))) nil)))
(when (eq fun (node-home-lambda dest))
(delete-lambda fun)
(return-from maybe-let-convert nil))
(unless (eq (functional-kind fun) :assignment) (unless (eq (functional-kind fun) :assignment)
(let-convert fun dest)) (let-convert fun dest))
(reoptimize-call dest) (reoptimize-call dest)
...@@ -1046,8 +1063,8 @@ ...@@ -1046,8 +1063,8 @@
(declare (type clambda fun)) (declare (type clambda fun))
(when (and (not (functional-kind fun)) (when (and (not (functional-kind fun))
(not (functional-entry-function fun))) (not (functional-entry-function fun)))
(let ((non-tail nil) (let ((outside-non-tail-call nil)
(call-fun nil)) (outside-call nil))
(when (and (dolist (ref (leaf-refs fun) t) (when (and (dolist (ref (leaf-refs fun) t)
(let ((dest (continuation-dest (node-cont ref)))) (let ((dest (continuation-dest (node-cont ref))))
(when (or (not dest) (when (or (not dest)
...@@ -1055,15 +1072,21 @@ ...@@ -1055,15 +1072,21 @@
(return nil)) (return nil))
(let ((home (node-home-lambda ref))) (let ((home (node-home-lambda ref)))
(unless (eq home fun) (unless (eq home fun)
(when call-fun (return nil)) (when outside-call
(setq call-fun home)) (return nil))
(setq outside-call dest))
(unless (node-tail-p dest) (unless (node-tail-p dest)
(when (or non-tail (eq home fun)) (return nil)) (when (or outside-non-tail-call (eq home fun))
(setq non-tail dest))))) (return nil))
(setq outside-non-tail-call dest)))))
(ok-initial-convert-p fun)) (ok-initial-convert-p fun))
(setf (functional-kind fun) :assignment) (setf (functional-kind fun) :assignment)
(let-convert fun (or non-tail (cond (outside-call
(continuation-dest (setf (functional-kind fun) :assignment)
(node-cont (first (leaf-refs fun)))))) (let-convert fun outside-call)
(when non-tail (reoptimize-call non-tail)) (when outside-non-tail-call
t)))) (reoptimize-call outside-non-tail-call))
t)
(t
(delete-lambda fun)
nil))))))
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