[pypy-svn] r52094 - pypy/branch/jit-refactoring/pypy/jit/rainbow

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Mar 3 16:15:44 CET 2008


Author: cfbolz
Date: Mon Mar  3 16:15:43 2008
New Revision: 52094

Modified:
   pypy/branch/jit-refactoring/pypy/jit/rainbow/codewriter.py
Log:
resume points and keepalive do nothing in the rainbow interp


Modified: pypy/branch/jit-refactoring/pypy/jit/rainbow/codewriter.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/rainbow/codewriter.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/rainbow/codewriter.py	Mon Mar  3 16:15:43 2008
@@ -1008,6 +1008,12 @@
     def serialize_op_zero_gc_pointers_inside(self, op):
         pass # XXX is that right?
 
+    def translate_op_resume_point(self, op):
+        pass
+
+    def translate_op_keepalive(self, op):
+        pass
+
     def serialize_op_cast_pointer(self, op):
         color = self.varcolor(op.result)
         assert color == self.varcolor(op.args[0])


More information about the pypy-svn mailing list