1.0.6.2: remove multiple layout-clos-hash slots
[sbcl.git] / src / pcl / cache.lisp
index 129ebbf..29af071 100644 (file)
 
 (defmacro modify-cache (cache-vector &body body)
   `(with-pcl-lock
+     ;; This locking scheme is less the sufficient, and not what the
+     ;; PCL implementors had planned: apparently we should increment
+     ;; the lock count atomically, and all cache users should check
+     ;; the count before and after they touch cache: if the counts
+     ;; match the cache was not altered, if they don't match the
+     ;; work needs to be redone.
+     ;;
+     ;; We probably want to re-engineer things so that the whole
+     ;; cache vector gets replaced atomically when we do things
+     ;; to it that could affect others.
      (multiple-value-prog1
        (progn ,@body)
        (let ((old-count (cache-vector-lock-count ,cache-vector)))
                    1
                    (1+ old-count)))))))
 
-(deftype field-type ()
-  '(mod #.layout-clos-hash-length))
-
 (eval-when (:compile-toplevel :load-toplevel :execute)
   (declaim (ftype (function (fixnum) (values (and unsigned-byte fixnum) &optional))
                   power-of-two-ceiling))
   (nkeys 1 :type (integer 1 #.+nkeys-limit+))
   (valuep nil :type (member nil t))
   (nlines 0 :type fixnum)
-  (field 0 :type field-type)
   (limit-fn #'default-limit-fn :type function)
   (mask 0 :type fixnum)
   (size 0 :type fixnum)
 ;;; are the forms of this constant which it is more convenient for the
 ;;; runtime code to use.
 (defconstant wrapper-cache-number-length
-  (integer-length layout-clos-hash-max))
-(defconstant wrapper-cache-number-mask layout-clos-hash-max)
+  (integer-length (1- layout-clos-hash-limit)))
+(defconstant wrapper-cache-number-mask (1- layout-clos-hash-limit))
 (defconstant wrapper-cache-number-adds-ok
-  (truncate most-positive-fixnum layout-clos-hash-max))
+  (truncate most-positive-fixnum (1- layout-clos-hash-limit)))
 \f
 ;;;; wrappers themselves
 
+;;; FIXME: delete this comment, possibly replacing it with a reference
+;;; to Kiczales and Rodruigez
+;;;
 ;;; This caching algorithm requires that wrappers have more than one
 ;;; wrapper cache number. You should think of these multiple numbers
 ;;; as being in columns. That is, for a given cache, the same column
 ;;; `pack' the wrapper cache numbers on machines where the addressing
 ;;; modes make that a good idea.
 
-;;; In SBCL, as in CMU CL, we want to do type checking as early as
-;;; possible; structures help this. The structures are hard-wired to
-;;; have a fixed number of cache hash values, and that number must
-;;; correspond to the number of cache lines we use.
-(defconstant wrapper-cache-number-vector-length
-  layout-clos-hash-length)
-
 (unless (boundp '*the-class-t*)
   (setq *the-class-t* nil))
 
-(defmacro wrapper-class (wrapper)
-  `(classoid-pcl-class (layout-classoid ,wrapper)))
-(defmacro wrapper-no-of-instance-slots (wrapper)
-  `(layout-length ,wrapper))
-
-;;; This is called in BRAID when we are making wrappers for classes
-;;; whose slots are not initialized yet, and which may be built-in
-;;; classes. We pass in the class name in addition to the class.
-(defun boot-make-wrapper (length name &optional class)
-  (let ((found (find-classoid name nil)))
-    (cond
-     (found
-      (unless (classoid-pcl-class found)
-        (setf (classoid-pcl-class found) class))
-      (aver (eq (classoid-pcl-class found) class))
-      (let ((layout (classoid-layout found)))
-        (aver layout)
-        layout))
-     (t
-      (make-wrapper-internal
-       :length length
-       :classoid (make-standard-classoid
-                  :name name :pcl-class class))))))
-
-;;; The following variable may be set to a STANDARD-CLASS that has
-;;; already been created by the lisp code and which is to be redefined
-;;; by PCL. This allows STANDARD-CLASSes to be defined and used for
-;;; type testing and dispatch before PCL is loaded.
-(defvar *pcl-class-boot* nil)
-
-;;; In SBCL, as in CMU CL, the layouts (a.k.a wrappers) for built-in
-;;; and structure classes already exist when PCL is initialized, so we
-;;; don't necessarily always make a wrapper. Also, we help maintain
-;;; the mapping between CL:CLASS and SB-KERNEL:CLASSOID objects.
-(defun make-wrapper (length class)
-  (cond
-    ((or (typep class 'std-class)
-         (typep class 'forward-referenced-class))
-     (make-wrapper-internal
-      :length length
-      :classoid
-      (let ((owrap (class-wrapper class)))
-        (cond (owrap
-               (layout-classoid owrap))
-              ((or (*subtypep (class-of class) *the-class-standard-class*)
-                   (*subtypep (class-of class) *the-class-funcallable-standard-class*)
-                   (typep class 'forward-referenced-class))
-               (cond ((and *pcl-class-boot*
-                           (eq (slot-value class 'name) *pcl-class-boot*))
-                      (let ((found (find-classoid
-                                    (slot-value class 'name))))
-                        (unless (classoid-pcl-class found)
-                          (setf (classoid-pcl-class found) class))
-                        (aver (eq (classoid-pcl-class found) class))
-                        found))
-                     (t
-                      (let ((name (slot-value class 'name)))
-                        (make-standard-classoid :pcl-class class
-                                                :name (and (symbolp name) name))))))
-              (t
-               (bug "Got to T branch in ~S" 'make-wrapper))))))
-    (t
-     (let* ((found (find-classoid (slot-value class 'name)))
-            (layout (classoid-layout found)))
-       (unless (classoid-pcl-class found)
-         (setf (classoid-pcl-class found) class))
-       (aver (eq (classoid-pcl-class found) class))
-       (aver layout)
-       layout))))
-
-(defconstant +first-wrapper-cache-number-index+ 0)
-
-(declaim (inline next-wrapper-cache-number-index))
-(defun next-wrapper-cache-number-index (field-number)
-  (and (< field-number #.(1- wrapper-cache-number-vector-length))
-       (1+ field-number)))
-
-;;; FIXME: Why are there two layers here, with one operator trivially
-;;; defined in terms of the other? It'd be nice either to have a
-;;; comment explaining why the separation is valuable, or to collapse
-;;; it into a single layer.
-;;;
-;;; Second FIXME deleted from here. Setting the "hash" values is OK:
-;;; that's part of the magic we need to do to obsolete things. The
-;;; hash values are used as indexes to the cache vectors. Nikodemus
-;;; thinks both "layers" should go away, and we should just use the
-;;; LAYOUT-CLOS-HASH directly.
-(defmacro cache-number-vector-ref (cnv n)
-  `(wrapper-cache-number-vector-ref ,cnv ,n))
-(defmacro wrapper-cache-number-vector-ref (wrapper n)
-  `(layout-clos-hash ,wrapper ,n))
-
-(declaim (inline wrapper-class*))
-(defun wrapper-class* (wrapper)
-  (or (wrapper-class wrapper)
-      (ensure-non-standard-class
-       (classoid-name (layout-classoid wrapper)))))
-
-;;; The wrapper cache machinery provides general mechanism for
-;;; trapping on the next access to any instance of a given class. This
-;;; mechanism is used to implement the updating of instances when the
-;;; class is redefined (MAKE-INSTANCES-OBSOLETE). The same mechanism
-;;; is also used to update generic function caches when there is a
-;;; change to the superclasses of a class.
-;;;
-;;; Basically, a given wrapper can be valid or invalid. If it is
-;;; invalid, it means that any attempt to do a wrapper cache lookup
-;;; using the wrapper should trap. Also, methods on
-;;; SLOT-VALUE-USING-CLASS check the wrapper validity as well. This is
-;;; done by calling CHECK-WRAPPER-VALIDITY.
-
-(declaim (inline invalid-wrapper-p))
-(defun invalid-wrapper-p (wrapper)
-  (not (null (layout-invalid wrapper))))
-
-;;; FIXME: This needs a lock
-(defvar *previous-nwrappers* (make-hash-table))
-
-(defun invalidate-wrapper (owrapper state nwrapper)
-  (aver (member state '(:flush :obsolete) :test #'eq))
-  (let ((new-previous ()))
-    ;; First off, a previous call to INVALIDATE-WRAPPER may have
-    ;; recorded OWRAPPER as an NWRAPPER to update to. Since OWRAPPER
-    ;; is about to be invalid, it no longer makes sense to update to
-    ;; it.
-    ;;
-    ;; We go back and change the previously invalidated wrappers so
-    ;; that they will now update directly to NWRAPPER. This
-    ;; corresponds to a kind of transitivity of wrapper updates.
-    (dolist (previous (gethash owrapper *previous-nwrappers*))
-      (when (eq state :obsolete)
-        (setf (car previous) :obsolete))
-      (setf (cadr previous) nwrapper)
-      (push previous new-previous))
-
-    (dotimes (i layout-clos-hash-length)
-      (setf (cache-number-vector-ref owrapper i) 0))
-    ;; FIXME: We could save a whopping cons by using (STATE . WRAPPER)
-    ;; instead
-    (push (setf (layout-invalid owrapper) (list state nwrapper))
-          new-previous)
-
-    (remhash owrapper *previous-nwrappers*)
-    (setf (gethash nwrapper *previous-nwrappers*) new-previous)))
-
-(defun check-wrapper-validity (instance)
-  (let* ((owrapper (wrapper-of instance))
-         (state (layout-invalid owrapper)))
-    (aver (not (eq state :uninitialized)))
-    (etypecase state
-      (null owrapper)
-      ;; FIXME: I can't help thinking that, while this does cure the
-      ;; symptoms observed from some class redefinitions, this isn't
-      ;; the place to be doing this flushing.  Nevertheless...  --
-      ;; CSR, 2003-05-31
-      ;;
-      ;; CMUCL comment:
-      ;;    We assume in this case, that the :INVALID is from a
-      ;;    previous call to REGISTER-LAYOUT for a superclass of
-      ;;    INSTANCE's class.  See also the comment above
-      ;;    FORCE-CACHE-FLUSHES.  Paul Dietz has test cases for this.
-      ((member t)
-       (force-cache-flushes (class-of instance))
-       (check-wrapper-validity instance))
-      (cons
-       (ecase (car state)
-         (:flush
-          (flush-cache-trap owrapper (cadr state) instance))
-         (:obsolete
-          (obsolete-instance-trap owrapper (cadr state) instance)))))))
-
-(declaim (inline check-obsolete-instance))
-(defun check-obsolete-instance (instance)
-  (when (invalid-wrapper-p (layout-of instance))
-    (check-wrapper-validity instance)))
-\f
-
 (defun get-cache (nkeys valuep limit-fn nlines)
   (let ((cache (make-cache)))
     (declare (type cache cache))
       (setf (cache-nkeys cache) nkeys
             (cache-valuep cache) valuep
             (cache-nlines cache) nlines
-            (cache-field cache) +first-wrapper-cache-number-index+
             (cache-limit-fn cache) limit-fn
             (cache-mask cache) cache-mask
             (cache-size cache) actual-size
             (cache-overflow cache) nil)
       cache)))
 
-(defun get-cache-from-cache (old-cache new-nlines
-                             &optional (new-field +first-wrapper-cache-number-index+))
+(defun get-cache-from-cache (old-cache new-nlines)
   (let ((nkeys (cache-nkeys old-cache))
         (valuep (cache-valuep old-cache))
         (cache (make-cache)))
             (cache-nkeys cache) nkeys
             (cache-valuep cache) valuep
             (cache-nlines cache) nlines
-            (cache-field cache) new-field
             (cache-limit-fn cache) (cache-limit-fn old-cache)
             (cache-mask cache) cache-mask
             (cache-size cache) actual-size
 
 ;;; The basic functional version. This is used by the cache miss code to
 ;;; compute the primary location of an entry.
-(defun compute-primary-cache-location (field mask wrappers)
-  (declare (type field-type field) (fixnum mask))
+(defun compute-primary-cache-location (mask wrappers)
+  (declare (fixnum mask))
   (if (not (listp wrappers))
-      (logand mask
-              (the fixnum (wrapper-cache-number-vector-ref wrappers field)))
+      (logand mask (layout-clos-hash wrappers))
       (let ((location 0)
             (i 0))
         (declare (fixnum location i))
         (dolist (wrapper wrappers)
           ;; First add the cache number of this wrapper to location.
-          (let ((wrapper-cache-number (wrapper-cache-number-vector-ref wrapper
-                                                                       field)))
-            (declare (fixnum wrapper-cache-number))
+          (let ((wrapper-cache-number (layout-clos-hash wrapper)))
             (if (zerop wrapper-cache-number)
                 (return-from compute-primary-cache-location 0)
                 (incf location wrapper-cache-number)))
   (declare (type cache to-cache from-cache) (fixnum from-location))
   (let ((result 0)
         (cache-vector (cache-vector from-cache))
-        (field (cache-field to-cache))
         (mask (cache-mask to-cache))
         (nkeys (cache-nkeys to-cache)))
-    (declare (type field-type field) (fixnum result mask nkeys)
+    (declare (fixnum result mask nkeys)
              (simple-vector cache-vector))
     (dotimes-fixnum (i nkeys)
+      ;; FIXME: Sometimes we get NIL here as wrapper, apparently because
+      ;; another thread has stomped on the cache-vector.
       (let* ((wrapper (cache-vector-ref cache-vector (+ i from-location)))
-             (wcn (wrapper-cache-number-vector-ref wrapper field)))
-        (declare (fixnum wcn))
+             (wcn (layout-clos-hash wrapper)))
         (incf result wcn))
       (when (and (not (zerop i))
                  (zerop (mod i wrapper-cache-number-adds-ok)))
         (logand mask result)
         (1+ (logand mask result)))))
 \f
-;;;  NIL: means nothing so far, no actual arg info has NILs in the
-;;;  metatype
-;;;
-;;;  CLASS: seen all sorts of metaclasses (specifically, more than one
-;;;  of the next 5 values) or else have seen something which doesn't
-;;;  fall into a single category (SLOT-INSTANCE, FORWARD).
-;;;
-;;;  T: means everything so far is the class T
-;;;  STANDARD-INSTANCE: seen only standard classes
-;;;  BUILT-IN-INSTANCE: seen only built in classes
-;;;  STRUCTURE-INSTANCE: seen only structure classes
-;;;  CONDITION-INSTANCE: seen only condition classes
-(defun raise-metatype (metatype new-specializer)
-  (let ((slot      (find-class 'slot-class))
-        (standard  (find-class 'standard-class))
-        (fsc       (find-class 'funcallable-standard-class))
-        (condition (find-class 'condition-class))
-        (structure (find-class 'structure-class))
-        (built-in  (find-class 'built-in-class))
-        (frc       (find-class 'forward-referenced-class)))
-    (flet ((specializer->metatype (x)
-             (let ((meta-specializer
-                     (if (eq *boot-state* 'complete)
-                         (class-of (specializer-class x))
-                         (class-of x))))
-               (cond
-                 ((eq x *the-class-t*) t)
-                 ((*subtypep meta-specializer standard) 'standard-instance)
-                 ((*subtypep meta-specializer fsc) 'standard-instance)
-                 ((*subtypep meta-specializer condition) 'condition-instance)
-                 ((*subtypep meta-specializer structure) 'structure-instance)
-                 ((*subtypep meta-specializer built-in) 'built-in-instance)
-                 ((*subtypep meta-specializer slot) 'slot-instance)
-                 ((*subtypep meta-specializer frc) 'forward)
-                 (t (error "~@<PCL cannot handle the specializer ~S ~
-                            (meta-specializer ~S).~@:>"
-                           new-specializer meta-specializer))))))
-      ;; We implement the following table. The notation is
-      ;; that X and Y are distinct meta specializer names.
-      ;;
-      ;;    NIL    <anything>    ===>  <anything>
-      ;;    X      X             ===>  X
-      ;;    X      Y             ===>  CLASS
-      (let ((new-metatype (specializer->metatype new-specializer)))
-        (cond ((eq new-metatype 'slot-instance) 'class)
-              ((eq new-metatype 'forward) 'class)
-              ((null metatype) new-metatype)
-              ((eq metatype new-metatype) new-metatype)
-              (t 'class))))))
-
-(defmacro with-dfun-wrappers ((args metatypes)
-                              (dfun-wrappers invalid-wrapper-p
-                                             &optional wrappers classes types)
-                              invalid-arguments-form
-                              &body body)
-  `(let* ((args-tail ,args) (,invalid-wrapper-p nil) (invalid-arguments-p nil)
-          (,dfun-wrappers nil) (dfun-wrappers-tail nil)
-          ,@(when wrappers
-              `((wrappers-rev nil) (types-rev nil) (classes-rev nil))))
-     (dolist (mt ,metatypes)
-       (unless args-tail
-         (setq invalid-arguments-p t)
-         (return nil))
-       (let* ((arg (pop args-tail))
-              (wrapper nil)
-              ,@(when wrappers
-                  `((class *the-class-t*)
-                    (type t))))
-         (unless (eq mt t)
-           (setq wrapper (wrapper-of arg))
-           (when (invalid-wrapper-p wrapper)
-             (setq ,invalid-wrapper-p t)
-             (setq wrapper (check-wrapper-validity arg)))
-           (cond ((null ,dfun-wrappers)
-                  (setq ,dfun-wrappers wrapper))
-                 ((not (consp ,dfun-wrappers))
-                  (setq dfun-wrappers-tail (list wrapper))
-                  (setq ,dfun-wrappers (cons ,dfun-wrappers dfun-wrappers-tail)))
-                 (t
-                  (let ((new-dfun-wrappers-tail (list wrapper)))
-                    (setf (cdr dfun-wrappers-tail) new-dfun-wrappers-tail)
-                    (setf dfun-wrappers-tail new-dfun-wrappers-tail))))
-           ,@(when wrappers
-               `((setq class (wrapper-class* wrapper))
-                 (setq type `(class-eq ,class)))))
-         ,@(when wrappers
-             `((push wrapper wrappers-rev)
-               (push class classes-rev)
-               (push type types-rev)))))
-     (if invalid-arguments-p
-         ,invalid-arguments-form
-         (let* (,@(when wrappers
-                    `((,wrappers (nreverse wrappers-rev))
-                      (,classes (nreverse classes-rev))
-                      (,types (mapcar (lambda (class)
-                                        `(class-eq ,class))
-                                      ,classes)))))
-           ,@body))))
-\f
-;;;; some support stuff for getting a hold of symbols that we need when
-;;;; building the discriminator codes. It's OK for these to be interned
-;;;; symbols because we don't capture any user code in the scope in which
-;;;; these symbols are bound.
-
-(declaim (list *dfun-arg-symbols*))
-(defvar *dfun-arg-symbols* '(.ARG0. .ARG1. .ARG2. .ARG3.))
-
-(defun dfun-arg-symbol (arg-number)
-  (or (nth arg-number *dfun-arg-symbols*)
-      (format-symbol *pcl-package* ".ARG~A." arg-number)))
-
-(declaim (list *slot-vector-symbols*))
-(defvar *slot-vector-symbols* '(.SLOTS0. .SLOTS1. .SLOTS2. .SLOTS3.))
-
-(defun slot-vector-symbol (arg-number)
-  (or (nth arg-number *slot-vector-symbols*)
-      (format-symbol *pcl-package* ".SLOTS~A." arg-number)))
-
-(declaim (inline make-dfun-required-args))
-(defun make-dfun-required-args (metatypes)
-  ;; Micro-optimizations 'R Us
-  (labels ((rec (types i)
-             (declare (fixnum i))
-             (when types
-               (cons (dfun-arg-symbol i)
-                     (rec (cdr types) (1+ i))))))
-    (rec metatypes 0)))
-
-(defun make-dfun-lambda-list (metatypes applyp)
-  (let ((required (make-dfun-required-args metatypes)))
-    (if applyp
-        (nconc required
-               ;; Use &MORE arguments to avoid consing up an &REST list
-               ;; that we might not need at all. See MAKE-EMF-CALL and
-               ;; INVOKE-EFFECTIVE-METHOD-FUNCTION for the other
-               ;; pieces.
-               '(&more .dfun-more-context. .dfun-more-count.))
-      required)))
-
-(defun make-dlap-lambda-list (metatypes applyp)
-  (let* ((required (make-dfun-required-args metatypes))
-         (lambda-list (if applyp
-                          (append required '(&more .more-context. .more-count.))
-                          required)))
-    ;; Return the full lambda list, the required arguments, a form
-    ;; that will generate a rest-list, and a list of the &MORE
-    ;; parameters used.
-    (values lambda-list
-            required
-            (when applyp
-              '((sb-c::%listify-rest-args
-                 .more-context.
-                 (the (and unsigned-byte fixnum)
-                   .more-count.))))
-            (when applyp
-              '(.more-context. .more-count.)))))
-
-(defun make-emf-call (metatypes applyp fn-variable &optional emf-type)
-  (let ((required (make-dfun-required-args metatypes)))
-    `(,(if (eq emf-type 'fast-method-call)
-           'invoke-effective-method-function-fast
-           'invoke-effective-method-function)
-       ,fn-variable
-       ,applyp
-       :required-args ,required
-       ;; INVOKE-EFFECTIVE-METHOD-FUNCTION will decide whether to use
-       ;; the :REST-ARG version or the :MORE-ARG version depending on
-       ;; the type of the EMF.
-       :rest-arg ,(if applyp
-                      ;; Creates a list from the &MORE arguments.
-                      '((sb-c::%listify-rest-args
-                         .dfun-more-context.
-                         (the (and unsigned-byte fixnum)
-                           .dfun-more-count.)))
-                      nil)
-       :more-arg ,(when applyp
-                    '(.dfun-more-context. .dfun-more-count.)))))
-
-(defun make-fast-method-call-lambda-list (metatypes applyp)
-  (list* '.pv-cell. '.next-method-call.
-         (make-dfun-lambda-list metatypes applyp)))
-
-\f
 (defmacro with-local-cache-functions ((cache) &body body)
   `(let ((.cache. ,cache))
      (declare (type cache .cache.))
               (limit-fn () (cache-limit-fn .cache.))
               (size () (cache-size .cache.))
               (mask () (cache-mask .cache.))
-              (field () (cache-field .cache.))
               (overflow () (cache-overflow .cache.))
               ;;
               ;; Return T IFF this cache location is reserved.  The
                  (cache) (line-location line))))
        (declare (ignorable #'cache #'nkeys #'line-size #'c-vector #'valuep
                            #'nlines #'max-location #'limit-fn #'size
-                           #'mask #'field #'overflow #'line-reserved-p
+                           #'mask #'overflow #'line-reserved-p
                            #'location-reserved-p #'line-location
                            #'location-line #'line-wrappers #'location-wrappers
                            #'line-matches-wrappers-p
   ;; FILL-CACHE won't return if WRAPPERS is nil, might as well check..
   (aver wrappers)
   (or (fill-cache-p nil cache wrappers value)
-      (and (< (ceiling (* (cache-count cache) *cache-expand-threshold*))
-              (if (= (cache-nkeys cache) 1)
-                  (1- (cache-nlines cache))
-                  (cache-nlines cache)))
-           (adjust-cache cache wrappers value))
       (expand-cache cache wrappers value)))
 
 (defvar *check-cache-p* nil)
 (defun probe-cache (cache wrappers &optional default limit-fn)
   (aver wrappers)
   (with-local-cache-functions (cache)
-    (let* ((location (compute-primary-cache-location (field) (mask) wrappers))
+    (let* ((location (compute-primary-cache-location (mask) wrappers))
            (limit (funcall (or limit-fn (limit-fn)) (nlines))))
       (declare (fixnum location limit))
       (when (location-reserved-p location)
 ;;; FIXME: Deceptive name as this has side-effects.
 (defun fill-cache-p (forcep cache wrappers value)
   (with-local-cache-functions (cache)
-    (let* ((location (compute-primary-cache-location (field) (mask) wrappers))
+    (let* ((location (compute-primary-cache-location (mask) wrappers))
            (primary (location-line location)))
       (declare (fixnum location primary))
       ;; FIXME: I tried (aver (> location 0)) and (aver (not
                                                           (+ from-loc i)))))))
             (maybe-check-cache cache)))))))
 
-;;; Returns NIL or (values <field> <cache-vector>)
-;;;
-;;; This is only called when it isn't possible to put the entry in the
-;;; cache the easy way. That is, this function assumes that
-;;; FILL-CACHE-P has been called as returned NIL.
-;;;
-;;; If this returns NIL, it means that it wasn't possible to find a
-;;; wrapper field for which all of the entries could be put in the
-;;; cache (within the limit).
-(defun adjust-cache (cache wrappers value)
-  (with-local-cache-functions (cache)
-    (let ((ncache (get-cache-from-cache cache (nlines) (field))))
-      (do ((nfield (cache-field ncache)
-                   (next-wrapper-cache-number-index nfield)))
-          ((null nfield) nil)
-        (setf (cache-field ncache) nfield)
-        (labels ((try-one-fill-from-line (line)
-                   (fill-cache-from-cache-p nil ncache cache line))
-                 (try-one-fill (wrappers value)
-                   (fill-cache-p nil ncache wrappers value)))
-          (if (and (dotimes-fixnum (i (nlines) t)
-                     (when (and (null (line-reserved-p i))
-                                (line-valid-p i wrappers))
-                       (unless (try-one-fill-from-line i) (return nil))))
-                   (dolist (wrappers+value (cache-overflow cache) t)
-                     (unless (try-one-fill (car wrappers+value) (cdr wrappers+value))
-                       (return nil)))
-                   (try-one-fill wrappers value))
-              (return (maybe-check-cache ncache))
-              (flush-cache-vector-internal (cache-vector ncache))))))))
-
 ;;; returns: (values <cache>)
 (defun expand-cache (cache wrappers value)
   ;;(declare (values cache))
                  (unless (fill-cache-from-cache-p nil ncache cache line)
                    (do-one-fill (line-wrappers line) (line-value line))))
                (do-one-fill (wrappers value)
-                 (setq ncache (or (adjust-cache ncache wrappers value)
-                                  (fill-cache-p t ncache wrappers value))))
+                 (setq ncache (fill-cache-p t ncache wrappers value)))
                (try-one-fill (wrappers value)
                  (fill-cache-p nil ncache wrappers value)))
         (dotimes-fixnum (i (nlines))