X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fir1-step.lisp;h=8f852fe6f376db9d3cb4daf26248f0f4998100cc;hb=3a2c2a2217f77e0d1a44a581c83e0311ebc2594a;hp=2ca4af68dbdd9b6b200c483cf08cce5cc65952f6;hpb=8a8a8922802460741d6f8f6c11d71b1f414cf3a7;p=sbcl.git diff --git a/src/compiler/ir1-step.lisp b/src/compiler/ir1-step.lisp index 2ca4af6..8f852fe 100644 --- a/src/compiler/ir1-step.lisp +++ b/src/compiler/ir1-step.lisp @@ -64,7 +64,8 @@ `(locally (declare (optimize (insert-step-conditions 0))) (step-variable ,form-string ,form)))) (list - (let* ((*step-arguments-p* (policy *lexenv* (= insert-step-conditions 3))) + (let* ((*step-arguments-p* (and *allow-instrumenting* + (policy *lexenv* (= insert-step-conditions 3)))) (step-form `(step-form ,form-string ',(source-path-original-source *current-path*) *compile-file-pathname*)) @@ -88,7 +89,8 @@ ;; KLUDGE: packages we're not interested in stepping. (mapcar #'find-package '(sb!c sb!int sb!impl sb!kernel sb!pcl))))))) (let ((lexenv *lexenv*)) - (and (policy lexenv (>= insert-step-conditions 2)) + (and *allow-instrumenting* + (policy lexenv (>= insert-step-conditions 2)) (cond ((consp form) (let ((op (car form))) (or (and (consp op) (eq 'lambda (car op))) @@ -99,6 +101,7 @@ (step-symbol-p op))))) ((symbolp form) (and *step-arguments-p* + *allow-instrumenting* (policy lexenv (= insert-step-conditions 3)) (not (consp (lexenv-find form vars))) (not (constantp form))