[pypy-svn] r33089 - in pypy/dist/pypy/jit: hintannotator timeshifter

pedronis at codespeak.net pedronis at codespeak.net
Tue Oct 10 12:10:49 CEST 2006


Author: pedronis
Date: Tue Oct 10 12:10:46 2006
New Revision: 33089

Modified:
   pypy/dist/pypy/jit/hintannotator/annotator.py
   pypy/dist/pypy/jit/timeshifter/rtyper.py
Log:
consider zero_gc_pointers_inside



Modified: pypy/dist/pypy/jit/hintannotator/annotator.py
==============================================================================
--- pypy/dist/pypy/jit/hintannotator/annotator.py	(original)
+++ pypy/dist/pypy/jit/hintannotator/annotator.py	Tue Oct 10 12:10:46 2006
@@ -36,6 +36,9 @@
             vcontainerdef = self.bookkeeper.getvirtualcontainerdef(TYPE)
             return hintmodel.SomeLLAbstractContainer(vcontainerdef)
 
+    def consider_op_zero_gc_pointers_inside(self, hs_v):
+        pass
+
     def consider_op_keepalive(self, hs_v):
         pass
 

Modified: pypy/dist/pypy/jit/timeshifter/rtyper.py
==============================================================================
--- pypy/dist/pypy/jit/timeshifter/rtyper.py	(original)
+++ pypy/dist/pypy/jit/timeshifter/rtyper.py	Tue Oct 10 12:10:46 2006
@@ -558,7 +558,9 @@
                    [ts.s_JITState, s_contdesc, ts.s_RedBox],
                    [v_jitstate,    c_contdesc, v_size     ], ts.s_RedBox)
         
-        
+    def translate_op_zero_gc_pointers_inside(self, hop):
+        pass
+
     def translate_op_ptr_nonzero(self, hop, reverse=False):
         ts = self
         PTRTYPE = originalconcretetype(hop.args_s[0])



More information about the Pypy-commit mailing list