[pypy-svn] r78048 - pypy/branch/rsre-jit/pypy/jit/backend/x86

arigo at codespeak.net arigo at codespeak.net
Mon Oct 18 17:18:14 CEST 2010


Author: arigo
Date: Mon Oct 18 17:18:11 2010
New Revision: 78048

Modified:
   pypy/branch/rsre-jit/pypy/jit/backend/x86/regalloc.py
Log:
"Implement" jit_debug in the x86 backend.


Modified: pypy/branch/rsre-jit/pypy/jit/backend/x86/regalloc.py
==============================================================================
--- pypy/branch/rsre-jit/pypy/jit/backend/x86/regalloc.py	(original)
+++ pypy/branch/rsre-jit/pypy/jit/backend/x86/regalloc.py	Mon Oct 18 17:18:11 2010
@@ -1068,6 +1068,9 @@
     def consider_debug_merge_point(self, op):
         pass
 
+    def consider_jit_debug(self, op):
+        pass
+
     def get_mark_gc_roots(self, gcrootmap):
         shape = gcrootmap.get_basic_shape(IS_X86_64)
         for v, val in self.fm.frame_bindings.items():



More information about the Pypy-commit mailing list