[pypy-commit] pypy remove-globals-in-jit: Add this too.

arigo noreply at buildbot.pypy.org
Fri Nov 9 16:30:02 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: remove-globals-in-jit
Changeset: r58806:d44ad061c141
Date: 2012-11-08 10:53 +0100
http://bitbucket.org/pypy/pypy/changeset/d44ad061c141/

Log:	Add this too.

diff --git a/pypy/jit/backend/model.py b/pypy/jit/backend/model.py
--- a/pypy/jit/backend/model.py
+++ b/pypy/jit/backend/model.py
@@ -121,6 +121,10 @@
         """
         raise NotImplementedError
 
+    def get_latest_descr(self, deadframe):
+        """Returns the Descr for the last operation executed by the frame."""
+        raise NotImplementedError
+
     def get_latest_value_int(self, deadframe, index):
         """Returns the value for the index'th argument to the
         last executed operation (from 'fail_args' if it was a guard,


More information about the pypy-commit mailing list