well as other cases where the interesting frames used to be
obscured by interrupt handling frames.
* bug fix: SORT was not interrupt safe.
+ * bug fix: XREF accounts for the last node of each basic-block as
+ well.
changes in sbcl-1.0.14 relative to sbcl-1.0.13:
* new feature: SB-EXT:*EXIT-HOOKS* are called when the process exits
((sb-introspect::who-macroexpands 'macro/1)
(macro-use/1 macro-use/2 macro-use/3 macro-use/4 inline/2))
((sb-introspect::who-binds '*a*) (xref/2))
- ((sb-introspect::who-sets '*a*) (xref/2))
+ ((sb-introspect::who-sets '*a*) (xref/2 xref/13))
((sb-introspect::who-references '*a*)
- (xref/1 xref/2 xref/4 inline/1))
+ (xref/1 xref/2 xref/4 inline/1 xref/14))
((sb-introspect::who-references '+z+)
(inline/1)))))
(loop for x in tests
(return-from record-component-xrefs))
(do ((block (block-next (component-head component)) (block-next block)))
((null (block-next block)))
- (let* ((this-cont (block-start block))
- (last (block-last block)))
+ (let ((start (block-start block)))
(flet ((handle-node (functional)
;; Record xref information for all nodes in the block.
;; Note that this code can get executed several times
;; for the same block, if the functional is referenced
;; from multiple XEPs.
- (loop for node = (ctran-next this-cont)
- then (ctran-next (node-next node))
- until (eq node last)
+ (loop for ctran = start then (node-next node)
+ while ctran
+ for node = (ctran-next ctran)
do (record-node-xrefs node functional))
;; Properly record the deferred macroexpansion information
;; that's been stored in the block.
(defun record-node-xrefs (node context)
(declare (type node node))
(etypecase node
- ((or creturn cif entry mv-combination cast))
+ ((or creturn cif entry mv-combination cast exit))
(combination
;; Record references to globals made using SYMBOL-VALUE.
(let ((fun (principal-lvar-use (combination-fun node)))
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.14.1"
+"1.0.14.2"