X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Flocall.lisp;h=7cb638b55c2eb48589ad4f1d0b96fce1c66269a1;hb=2ff0ff83dacac9fb25a31f5783b6ea8c0442bc2c;hp=a65bae30a733193799ac601aa1e969fbc619c45f;hpb=cb534036e501667da3b229627bf5169d7fb5a01c;p=sbcl.git diff --git a/src/compiler/locall.lisp b/src/compiler/locall.lisp index a65bae3..7cb638b 100644 --- a/src/compiler/locall.lisp +++ b/src/compiler/locall.lisp @@ -43,7 +43,7 @@ (setf (car args) nil))) (values)) -(defun handle-nested-dynamic-extent-lvars (lvar) +(defun handle-nested-dynamic-extent-lvars (dx lvar) (let ((uses (lvar-uses lvar))) ;; DX value generators must end their blocks: see UPDATE-UVL-LIVE-SETS. ;; Uses of mupltiple-use LVARs already end their blocks, so we just need @@ -55,26 +55,31 @@ (flet ((recurse (use) (etypecase use (cast - (handle-nested-dynamic-extent-lvars (cast-value use))) + (handle-nested-dynamic-extent-lvars dx (cast-value use))) (combination (loop for arg in (combination-args use) - when (lvar-good-for-dx-p arg) - append (handle-nested-dynamic-extent-lvars arg)))))) + ;; deleted args show up as NIL here + when (and arg (lvar-good-for-dx-p arg dx)) + append (handle-nested-dynamic-extent-lvars dx arg))) + (ref + (let* ((other (trivial-lambda-var-ref-lvar use))) + (unless (eq other lvar) + (handle-nested-dynamic-extent-lvars dx other))))))) (cons lvar (if (listp uses) (loop for use in uses - when (use-good-for-dx-p use) + when (use-good-for-dx-p use dx) nconc (recurse use)) - (when (use-good-for-dx-p uses) + (when (use-good-for-dx-p uses dx) (recurse uses))))))) (defun recognize-dynamic-extent-lvars (call fun) (declare (type combination call) (type clambda fun)) (loop for arg in (basic-combination-args call) - and var in (lambda-vars fun) - when (and arg (lambda-var-dynamic-extent var) - (not (lvar-dynamic-extent arg))) - append (handle-nested-dynamic-extent-lvars arg) into dx-lvars + for var in (lambda-vars fun) + for dx = (lambda-var-dynamic-extent var) + when (and dx arg (not (lvar-dynamic-extent arg))) + append (handle-nested-dynamic-extent-lvars dx arg) into dx-lvars finally (when dx-lvars ;; Stack analysis requires that the CALL ends the block, so ;; that MAP-BLOCK-NLXES sees the cleanup we insert here. @@ -240,7 +245,8 @@ (with-ir1-environment-from-node (lambda-bind (main-entry fun)) (let ((res (ir1-convert-lambda (make-xep-lambda-expression fun) :debug-name (debug-name - 'xep (leaf-debug-name fun))))) + 'xep (leaf-debug-name fun)) + :system-lambda t))) (setf (functional-kind res) :external (leaf-ever-used res) t (functional-entry-fun res) fun @@ -595,7 +601,8 @@ (%funcall ,entry ,@args)) :debug-name (debug-name 'hairy-function-entry (lvar-fun-debug-name - (basic-combination-fun call))))))) + (basic-combination-fun call))) + :system-lambda t)))) (convert-call ref call new-fun) (dolist (ref (leaf-refs entry)) (convert-call-if-possible ref (lvar-dest (node-lvar ref)))))) @@ -855,6 +862,8 @@ (setf (lambda-physenv clambda) home-physenv) (when physenv + (unless home-physenv + (setf home-physenv (get-lambda-physenv home))) (setf (physenv-nlx-info home-physenv) (nconc (physenv-nlx-info physenv) (physenv-nlx-info home-physenv))))