[pypy-commit] pypy stm-gc: Fixes

arigo noreply at buildbot.pypy.org
Wed Apr 4 10:58:52 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-gc
Changeset: r54174:cae9d28240ae
Date: 2012-04-03 22:16 +0200
http://bitbucket.org/pypy/pypy/changeset/cae9d28240ae/

Log:	Fixes

diff --git a/pypy/rpython/memory/gc/stmgc.py b/pypy/rpython/memory/gc/stmgc.py
--- a/pypy/rpython/memory/gc/stmgc.py
+++ b/pypy/rpython/memory/gc/stmgc.py
@@ -92,7 +92,7 @@
         from pypy.rpython.memory.gc import stmshared
         self.stm_operations = stm_operations
         self.nursery_size = nursery_size
-        self.sharedarea = stmshared.StmGCSharedArea(self,
+        self.sharedarea = stmshared.StmGCSharedArea(self, ArenaCollectionClass,
                                                     page_size, arena_size,
                                                     small_request_threshold)
         #
@@ -118,7 +118,7 @@
         #
         from pypy.rpython.memory.gc.stmtls import StmGCTLS
         self.main_thread_tls = StmGCTLS(self, in_main_thread=True)
-        self.main_thread_tls.enter()
+        self.main_thread_tls.start_transaction()
 
     def get_tls(self):
         from pypy.rpython.memory.gc.stmtls import StmGCTLS
@@ -234,7 +234,7 @@
         debug_print("XXX collect() ignored")
 
     def start_transaction(self):
-        self.collector.start_transaction()
+        self.get_tls().start_transaction()
 
     def commit_transaction(self):
         self.collector.commit_transaction()
diff --git a/pypy/rpython/memory/gc/stmshared.py b/pypy/rpython/memory/gc/stmshared.py
--- a/pypy/rpython/memory/gc/stmshared.py
+++ b/pypy/rpython/memory/gc/stmshared.py
@@ -2,8 +2,9 @@
 
 class StmGCSharedArea(object):
 
-    def __init__(self, gc, page_size, arena_size, small_request_threshold):
-        ...
+    def __init__(self, gc, ArenaCollectionClass,
+                 page_size, arena_size, small_request_threshold):
+        self.gc = gc
         # The ArenaCollection() handles the nonmovable objects allocation.
         # It contains all small GCFLAG_GLOBAL objects.  The non-small ones
         # are directly malloc'ed.
@@ -12,3 +13,6 @@
             ArenaCollectionClass = minimarkpage.ArenaCollection
         self.ac = ArenaCollectionClass(arena_size, page_size,
                                        small_request_threshold)
+
+    def setup(self):
+        pass
diff --git a/pypy/rpython/memory/gc/stmtls.py b/pypy/rpython/memory/gc/stmtls.py
--- a/pypy/rpython/memory/gc/stmtls.py
+++ b/pypy/rpython/memory/gc/stmtls.py
@@ -1,7 +1,7 @@
-from pypy.rpython.lltypesystem import lltype, llmemory
+from pypy.rpython.lltypesystem import lltype, llmemory, llarena, rffi
 from pypy.rpython.annlowlevel import cast_instance_to_base_ptr
 from pypy.rpython.annlowlevel import cast_base_ptr_to_instance, base_ptr_lltype
-from pypy.rlib import objectmodel
+from pypy.rlib.objectmodel import we_are_translated, free_non_gc_object
 from pypy.rlib.rarithmetic import r_uint
 from pypy.rlib.debug import ll_assert
 
@@ -14,7 +14,10 @@
 
     _alloc_flavor_ = 'raw'
 
+    nontranslated_dict = {}
+
     def __init__(self, gc, in_main_thread):
+        self.gc = gc
         self.in_main_thread = in_main_thread
         self.stm_operations = self.gc.stm_operations
         self.null_address_dict = self.gc.null_address_dict
@@ -25,6 +28,7 @@
         #     mallocs are forbidden
         self.nursery_free = NULL
         self.nursery_top  = NULL
+        self.nursery_pending_clear = 0
         # --- the start and size of the nursery belonging to this thread.
         #     never changes.
         self.nursery_size  = self.gc.nursery_size
@@ -32,7 +36,7 @@
         #
         # --- the local raw-malloced objects, young and old
         self.rawmalloced_young_objects = self.null_address_dict()
-        self.rawmalloced_old_objects = self.AddressStack()
+        self.rawmalloced_old_objects = None
         self.rawmalloced_total_size = r_uint(0)
         # --- the local objects with weakrefs, young and old
         self.young_objects_with_weakrefs = self.AddressStack()
@@ -47,7 +51,7 @@
     def teardown_thread(self):
         self._unregister_with_C_code()
         self._free_nursery(self.nursery_start)
-        objectmodel.free_non_gc_object(self)
+        free_non_gc_object(self)
 
     def _alloc_nursery(self, nursery_size):
         nursery = llarena.arena_malloc(nursery_size, 1)
@@ -59,9 +63,14 @@
         llarena.arena_free(nursery)
 
     def _register_with_C_code(self):
-        tls = cast_instance_to_base_ptr(self)
-        self.stm_operations.set_tls(llmemory.cast_ptr_to_adr(tls),
-                                    int(self.in_main_thread))
+        if we_are_translated():
+            tls = cast_instance_to_base_ptr(self)
+            tlsaddr = llmemory.cast_ptr_to_adr(tls)
+        else:
+            n = 10000 + len(self.nontranslated_dict)
+            tlsaddr = rffi.cast(llmemory.Address, n)
+            self.nontranslated_dict[n] = self
+        self.stm_operations.set_tls(tlsaddr, int(self.in_main_thread))
 
     def _unregister_with_C_code(self):
         ll_assert(self.gc.get_tls() is self,
@@ -70,38 +79,56 @@
 
     @staticmethod
     def cast_address_to_tls_object(self, tlsaddr):
-        tls = llmemory.cast_adr_to_ptr(tlsaddr, base_ptr_lltype())
-        return cast_base_ptr_to_instance(tls)
+        if we_are_translated():
+            tls = llmemory.cast_adr_to_ptr(tlsaddr, base_ptr_lltype())
+            return cast_base_ptr_to_instance(tls)
+        else:
+            n = rffi.cast(lltype.Signed, tlsaddr)
+            return self.nontranslated_dict[n]
 
     # ------------------------------------------------------------
 
-    def enter(self):
+    def start_transaction(self):
         """Enter a thread: performs any pending cleanups, and set
         up a fresh state for allocating.  Called at the start of
-        transactions, and at the start of the main thread."""
-        # Note that the calls to enter() and leave() are not balanced:
-        # if a transaction is aborted, leave() might never be called.
+        each transaction, and at the start of the main thread."""
+        # Note that the calls to enter() and
+        # end_of_transaction_collection() are not balanced: if a
+        # transaction is aborted, the latter might never be called.
         # Be ready here to clean up any state.
-        xxx
-
-    def leave(self):
-        """Leave a thread: no more allocations are allowed.
-        Called when a transaction finishes."""
-        xxx
+        if self.nursery_free:
+            clear_size = self.nursery_free - self.nursery_start
+        else:
+            clear_size = self.nursery_pending_clear
+        if clear_size > 0:
+            llarena.arena_reset(self.nursery_start, clear_size, 2)
+            self.nursery_pending_clear = 0
+        if self.rawmalloced_young_objects:
+            xxx
+        if self.rawmalloced_old_objects:
+            xxx
+        self.nursery_free = self.nursery_start
+        self.nursery_top  = self.nursery_start + self.nursery_size
 
     # ------------------------------------------------------------
 
-    def end_of_transaction_collection(self):
-        """Do an end-of-transaction collection.  Finds all surviving
-        young objects and make them old.  This guarantees that the
-        nursery is empty afterwards.  (Even if there are finalizers, XXX)
-        Assumes that there are no roots from the stack.
-        """
-        xxx
-
     def local_collection(self):
         """Do a local collection.  Finds all surviving young objects
         and make them old.  Also looks for roots from the stack.
+        The flag GCFLAG_WAS_COPIED is kept and the C tree is updated
+        if the local young object moves.
+        """
+        xxx
+
+    def end_of_transaction_collection(self):
+        """Do an end-of-transaction collection.  Finds all surviving
+        non-GCFLAG_WAS_COPIED young objects and make them old.  Assumes
+        that there are no roots from the stack.  This guarantees that the
+        nursery will end up empty, apart from GCFLAG_WAS_COPIED objects.
+        To finish the commit, the C code will need to copy them over the
+        global objects (or abort in case of conflict, which is still ok).
+
+        No more mallocs are allowed after this is called.
         """
         xxx
 


More information about the pypy-commit mailing list