X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcompiler%2Flocall.lisp;h=31e813631a276e921875d2e0b75bc22a2bda5022;hb=5d04a95274c9ddaebbcd6ddffc5d646e2c25598c;hp=bc93706717157f007ad3bef0f3e34aa31c6e3b9d;hpb=4d8b3b1da4d960a6ff768c9e6ee8f99bf270b631;p=sbcl.git diff --git a/src/compiler/locall.lisp b/src/compiler/locall.lisp index bc93706..31e8136 100644 --- a/src/compiler/locall.lisp +++ b/src/compiler/locall.lisp @@ -43,21 +43,38 @@ (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 is either a CAST, or it + ;; must be a regular combination whose arguments are potentially DX as well. + (flet ((recurse (use) + (etypecase use + (cast + (handle-nested-dynamic-extent-lvars (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)))))) + (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)) @@ -191,7 +208,7 @@ (optional-dispatch-entry-point-fun fun 0) (loop for ep in (optional-dispatch-entry-points fun) and n from min - do (entries `((= ,n-supplied ,n) + do (entries `((eql ,n-supplied ,n) (%funcall ,(force ep) ,@(subseq temps 0 n))))) `(lambda (,n-supplied ,@temps) ;; FIXME: Make sure that INDEX type distinguishes between @@ -201,7 +218,9 @@ (cond ,@(if more (butlast (entries)) (entries)) ,@(when more - `((,(if (zerop min) t `(>= ,n-supplied ,max)) + ;; KLUDGE: (NOT (< ...)) instead of >= avoids one round of + ;; deftransforms and lambda-conversion. + `((,(if (zerop min) t `(not (< ,n-supplied ,max))) ,(let ((n-context (gensym)) (n-count (gensym))) `(multiple-value-bind (,n-context ,n-count) @@ -581,7 +600,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))