X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Flocall.lisp;h=3faf635af99d6fb4c3cad09fa78267f5117e17db;hb=b8f49ceae4a3b513de21f385bb784729d2ddff3f;hp=2c413654ba3949ad8f52b3320adc34b2df3b25fb;hpb=6fa7b9f967304c090078b835c5419d816c017d8d;p=sbcl.git diff --git a/src/compiler/locall.lisp b/src/compiler/locall.lisp index 2c41365..3faf635 100644 --- a/src/compiler/locall.lisp +++ b/src/compiler/locall.lisp @@ -43,21 +43,33 @@ (setf (car args) nil))) (values)) +(defun handle-nested-dynamic-extent-lvars (lvar) + (let ((uses (lvar-uses lvar))) + ;; Stack analysis wants DX value generators to end their + ;; blocks. Uses of mupltiple used LVARs already end their blocks, + ;; so we just need to process used-once LVARs. + (when (node-p uses) + (node-ends-block uses)) + ;; If this LVAR's USE is good for DX, it must be a regular + ;; combination, and its arguments are potentially DX as well. + (flet ((recurse (use) + (loop for arg in (combination-args use) + append (handle-nested-dynamic-extent-lvars arg)))) + (cons lvar + (if (listp uses) + (loop for use in uses + when (use-good-for-dx-p use) + nconc (recurse use)) + (when (use-good-for-dx-p uses) + (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) + when (and arg (lambda-var-dynamic-extent var) (not (lvar-dynamic-extent arg))) - collect arg into dx-lvars - and do (let ((use (lvar-uses arg))) - ;; Stack analysis wants DX value generators to end - ;; their blocks. Uses of mupltiple used LVARs already - ;; end their blocks, so we just need to process - ;; used-once LVARs. - (when (node-p use) - (node-ends-block use))) + append (handle-nested-dynamic-extent-lvars arg) into dx-lvars finally (when dx-lvars (binding* ((before-ctran (node-prev call)) (nil (ensure-block-start before-ctran)) @@ -583,7 +595,7 @@ (declare (ignorable ,@ignores)) (%funcall ,entry ,@args)) :debug-name (debug-name 'hairy-function-entry - (lvar-fun-name + (lvar-fun-debug-name (basic-combination-fun call))))))) (convert-call ref call new-fun) (dolist (ref (leaf-refs entry))