diff --git a/compiler/ir1opt.lisp b/compiler/ir1opt.lisp index 9dba92f198630edf6e95f73f5cc4d2fc309760ea..7afa44cce78bac38f2fb1ff734f8f5a1a205b748 100644 --- a/compiler/ir1opt.lisp +++ b/compiler/ir1opt.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1opt.lisp,v 1.71 2000/07/07 09:33:01 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1opt.lisp,v 1.72 2000/08/09 12:56:39 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1050,7 +1050,10 @@ (record-optimization-failure node transform args)) (setf (gethash node table) (remove transform (gethash node table) :key #'car))) - t)))) + t) + (:delayed + (remhash node table) + nil)))) ((and flame (valid-function-use node type :argument-test #'types-intersect @@ -1062,7 +1065,7 @@ (declaim (end-block)) -;;; GIVE-UP, ABORT-TRANSFORM -- Interface +;;; give-up, abort-transform -- Interface ;;; ;;; Just throw the severity and args... ;;; @@ -1080,6 +1083,50 @@ attempted." (throw 'give-up (values :aborted args))) +(defvar *delayed-transforms*) + +;;; delay-transform -- Interface +;;; +(defun delay-transform (node &rest reasons) + "This function is used to throw out of an IR1 transform, and delay the + transform on the node until later. The reasons specifies when the transform + will be later retried. The :optimize reason causes the transform to be + delayed until after the current IR1 optimization pass. The :constraint + reason causes the transform to be delayed until after constraint + propagation." + (let ((assoc (assoc node *delayed-transforms*))) + (cond ((not assoc) + (setf *delayed-transforms* + (acons node reasons *delayed-transforms*)) + (throw 'give-up :delayed)) + ((cdr assoc) + (dolist (reason reasons) + (pushnew reason (cdr assoc))) + (throw 'give-up :delayed))))) + +;;; retry-delayed-transforms -- Interface. +;;; +;;; Clear any delayed transform with no reasons - these should have been tried +;;; in the last pass. Then remove the reason from the delayed transform +;;; reasons, and if any become empty then set reoptimize flags for the +;;; node. Returns true if any transforms are to be retried. +;;; +(defun retry-delayed-transforms (reason) + (setf *delayed-transforms* (remove-if-not #'cdr *delayed-transforms*)) + (let ((reoptimize nil)) + (dolist (assoc *delayed-transforms*) + (let ((reasons (remove reason (cdr assoc)))) + (setf (cdr assoc) reasons) + (unless reasons + (let ((node (car assoc))) + (unless (node-deleted node) + (setf reoptimize t) + (setf (node-reoptimize node) t) + (let ((block (node-block node))) + (setf (block-reoptimize block) t) + (setf (component-reoptimize (block-component block)) t))))))) + reoptimize)) + ;;; Transform-Call -- Internal ;;; diff --git a/compiler/main.lisp b/compiler/main.lisp index c5b8903780f4b1f3d0df095dc42d5f37f9f1ee76..002153f7f4e21f8cfc202d72853d1e2315203e65 100644 --- a/compiler/main.lisp +++ b/compiler/main.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.117 2000/05/23 05:45:32 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.118 2000/08/09 12:56:40 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -146,7 +146,7 @@ ;;;; Component compilation: -(defparameter max-optimize-iterations 3 +(defparameter max-optimize-iterations 6 "The upper limit on the number of times that we will consecutively do IR1 optimization that doesn't introduce any new code. A finite limit is necessary, since type inference may take arbitrarily long to converge.") @@ -158,7 +158,7 @@ ;;; ;;; Repeatedly optimize Component until no further optimizations can be ;;; found or we hit our iteration limit. When we hit the limit, we clear the -;;; component and block REOPTIMIZE flags to discourage following the next +;;; component and block REOPTIMIZE flags to discourage the following ;;; optimization attempt from pounding on the same code. ;;; (defun ir1-optimize-until-done (component) @@ -169,29 +169,37 @@ (cleared-reanalyze nil)) (loop (when (component-reanalyze component) - (setq count 0) - (setq cleared-reanalyze t) + (setf count 0) + (setf cleared-reanalyze t) (setf (component-reanalyze component) nil)) (setf (component-reoptimize component) nil) (ir1-optimize component) - (unless (component-reoptimize component) - (maybe-mumble " ") - (return)) - (incf count) - (when (= count max-optimize-iterations) - (event ir1-optimize-maxed-out) - (maybe-mumble "* ") - (setf (component-reoptimize component) nil) - (do-blocks (block component) - (setf (block-reoptimize block) nil)) - (return)) + (cond ((component-reoptimize component) + (incf count) + (when (= count max-optimize-iterations) + (maybe-mumble "*") + (cond ((retry-delayed-transforms :optimize) + (maybe-mumble "+") + (setf count 0)) + (t + (event ir1-optimize-maxed-out) + (setf (component-reoptimize component) nil) + (do-blocks (block component) + (setf (block-reoptimize block) nil)) + (return))))) + ((retry-delayed-transforms :optimize) + (setf count 0) + (maybe-mumble "+")) + (t + (return))) (maybe-mumble ".")) (when cleared-reanalyze - (setf (component-reanalyze component) t))) + (setf (component-reanalyze component) t)) + (maybe-mumble " ")) (undefined-value)) (defparameter *constraint-propagate* t) -(defparameter *reoptimize-after-type-check-max* 5) +(defparameter *reoptimize-after-type-check-max* 10) (defevent reoptimize-maxed-out "*REOPTIMIZE-AFTER-TYPE-CHECK-MAX* exceeded.") @@ -221,38 +229,40 @@ (defun ir1-phases (component) (declare (type component component)) (let ((*constraint-number* 0) - (loop-count 1)) + (loop-count 1) + (*delayed-transforms* nil)) (declare (special *constraint-number*)) (loop - (ir1-optimize-until-done component) - (when (or (component-new-functions component) - (component-reanalyze-functions component)) - (maybe-mumble "Locall ") - (local-call-analyze component)) - (dfo-as-needed component) - (when *constraint-propagate* - (maybe-mumble "Constraint ") - (constraint-propagate component)) - (maybe-mumble "Type ") - ;; Delay the generation of type checks until the type - ;; constraints have had time to propagate, else the compiler can - ;; confuse itself. - (unless (and (or (component-reoptimize component) - (component-reanalyze component) - (component-new-functions component) - (component-reanalyze-functions component)) - (< loop-count (- *reoptimize-after-type-check-max* 2))) - (generate-type-checks component) - (unless (or (component-reoptimize component) - (component-reanalyze component) - (component-new-functions component) - (component-reanalyze-functions component)) - (return))) - (when (>= loop-count *reoptimize-after-type-check-max*) - (maybe-mumble "[Reoptimize Limit]") - (event reoptimize-maxed-out) - (return)) - (incf loop-count))) + (ir1-optimize-until-done component) + (when (or (component-new-functions component) + (component-reanalyze-functions component)) + (maybe-mumble "Locall ") + (local-call-analyze component)) + (dfo-as-needed component) + (when *constraint-propagate* + (maybe-mumble "Constraint ") + (constraint-propagate component)) + (when (retry-delayed-transforms :constraint) + (maybe-mumble "Rtran ")) + ;; Delay the generation of type checks until the type constraints have + ;; had time to propagate, else the compiler can confuse itself. + (unless (and (or (component-reoptimize component) + (component-reanalyze component) + (component-new-functions component) + (component-reanalyze-functions component)) + (< loop-count (- *reoptimize-after-type-check-max* 4))) + (maybe-mumble "Type ") + (generate-type-checks component) + (unless (or (component-reoptimize component) + (component-reanalyze component) + (component-new-functions component) + (component-reanalyze-functions component)) + (return))) + (when (>= loop-count *reoptimize-after-type-check-max*) + (maybe-mumble "[Reoptimize Limit]") + (event reoptimize-maxed-out) + (return)) + (incf loop-count))) (ir1-finalize component) (undefined-value))