[pypy-commit] pypy heapcache-refactor: kill outdated comments

arigo pypy.commits at gmail.com
Thu Mar 17 05:52:45 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: heapcache-refactor
Changeset: r83097:b1a3ac45b246
Date: 2016-03-17 10:51 +0100
http://bitbucket.org/pypy/pypy/changeset/b1a3ac45b246/

Log:	kill outdated comments

diff --git a/rpython/jit/metainterp/heapcache.py b/rpython/jit/metainterp/heapcache.py
--- a/rpython/jit/metainterp/heapcache.py
+++ b/rpython/jit/metainterp/heapcache.py
@@ -86,31 +86,13 @@
         self.reset()
 
     def reset(self):
-        # maps boxes to values
+        # maps boxes to HeapCacheValue
         self.values = {}
-        # store the boxes that contain newly allocated objects, this maps the
-        # boxes to a bool, the bool indicates whether or not the object has
-        # escaped the trace or not (True means the box never escaped, False
-        # means it did escape), its presences in the mapping shows that it was
-        # allocated inside the trace
-        #if trace_branch:
-            #self.new_boxes = {}
-        #    pass
-        #else:
-            #for box in self.new_boxes:
-            #    self.new_boxes[box] = False
-        #    pass
-        #if reset_virtuals:
-        #    self.likely_virtuals = {}      # only for jit.isvirtual()
-        # Tracks which boxes should be marked as escaped when the key box
-        # escapes.
-        #self.dependencies = {}
-
         # heap cache
         # maps descrs to CacheEntry
         self.heap_cache = {}
         # heap array cache
-        # maps descrs to {index: {from_value: to_value}} dicts
+        # maps descrs to {index: CacheEntry} dicts
         self.heap_array_cache = {}
 
     def reset_keep_likely_virtuals(self):


More information about the pypy-commit mailing list