Remove without-interrupts from runtime/geneqht.scm.
authorMatt Birkholz <puck@birchwood-abbey.net>
Thu, 18 Jun 2015 18:24:43 +0000 (11:24 -0700)
committerMatt Birkholz <puck@birchwood-abbey.net>
Mon, 17 Aug 2015 23:52:58 +0000 (16:52 -0700)
Serial access to a particular table is still the responsibility of the
user (e.g. SOS procedures?), but the list of all address hash tables
is now a serial population.

src/runtime/geneqht.scm

index 22a32b06e1cb93831376540c325ce943cb802dc2..6e6ae6b565f0888ba4e5c86744da33c4b8841d44 100644 (file)
@@ -50,7 +50,7 @@ USA.
        (hash (compute-key-hash table key)))
     (let loop ((entries (vector-ref buckets hash)))
       (cond ((null? entries)
-            (without-interrupts
+            (without-interruption
              (lambda ()
                (vector-set! buckets
                             hash
@@ -83,7 +83,7 @@ USA.
       (if (not (table-needs-rehash? table))
          hash
          (begin
-           (without-interrupts (lambda () (rehash-table! table)))
+           (without-interruption (lambda () (rehash-table! table)))
            (loop))))))
 
 (define-integrable (eq-hash-mod key modulus)
@@ -97,26 +97,17 @@ USA.
                 modulus))
 
 (define (record-address-hash-table! table)
-  (set! address-hash-tables (weak-cons table address-hash-tables))
-  unspecific)
+  (add-to-population! address-hash-tables table))
 
 (define (mark-address-hash-tables!)
-  (let loop ((previous #f) (tables address-hash-tables))
-    (cond ((null? tables)
-          unspecific)
-         ((system-pair-car tables)
-          (set-table-needs-rehash?! (system-pair-car tables) #t)
-          (loop tables (system-pair-cdr tables)))
-         (else
-          (if previous
-              (system-pair-set-cdr! previous (system-pair-cdr tables))
-              (set! address-hash-tables (system-pair-cdr tables)))
-          (loop previous (system-pair-cdr tables))))))
+  (for-each-inhabitant address-hash-tables
+                      (lambda (table)
+                        (set-table-needs-rehash?! table #t))))
 
 (define address-hash-tables)
 
 (define (initialize-address-hashing!)
-  (set! address-hash-tables '())
+  (set! address-hash-tables (make-serial-population))
   (add-primitive-gc-daemon! mark-address-hash-tables!))
 \f
 ;;;; Resizing
@@ -240,11 +231,5 @@ USA.
 
 (define-integrable minimum-size 4)
 
-(define-integrable (without-interrupts thunk)
-  (let ((interrupt-mask (set-interrupt-enables! interrupt-mask/gc-ok)))
-    (thunk)
-    (set-interrupt-enables! interrupt-mask)
-    unspecific))
-
 (define-integrable (weak-cons car cdr)
   (system-pair-cons (ucode-type weak-cons) car cdr))
\ No newline at end of file