Skip to content
Snippets Groups Projects
Commit 7a2c48fb authored by ram's avatar ram
Browse files

Add finite-sb-last-block-count slot to reduce reinitalization overhead.

parent cfa5dbff
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/vop.lisp,v 1.38 1993/03/12 15:16:47 hallgren Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/vop.lisp,v 1.39 1993/08/12 20:21:46 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -901,8 +901,13 @@
;;
;; A vector containing the TN currently live in each location in the SB, or
;; NIL if the location is unused. This is used during load-tn pack.
(live-tns '#() :type simple-vector))
(live-tns '#() :type simple-vector)
;;
;; The number of blocks for which the ALWAYS-LIVE and CONFLICTS might not be
;; virgin, and thus must be reinitialized when PACK starts. Less then the
;; length of those vectors when not all of the length was used on the
;; previously packed component.
(last-block-count 0 :type index))
;;; the SC structure holds the storage base that storage is allocated in and
;;; information used to select locations within the SB.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment