[pypy-svn] r68041 - pypy/branch/kill-jumptarget/pypy/jit/backend

arigo at codespeak.net arigo at codespeak.net
Wed Sep 30 17:33:57 CEST 2009


Author: arigo
Date: Wed Sep 30 17:33:57 2009
New Revision: 68041

Modified:
   pypy/branch/kill-jumptarget/pypy/jit/backend/model.py
Log:
Precision from pedronis.


Modified: pypy/branch/kill-jumptarget/pypy/jit/backend/model.py
==============================================================================
--- pypy/branch/kill-jumptarget/pypy/jit/backend/model.py	(original)
+++ pypy/branch/kill-jumptarget/pypy/jit/backend/model.py	Wed Sep 30 17:33:57 2009
@@ -43,17 +43,20 @@
 
     def get_latest_value_int(self, index):
         """Returns the value for the index'th argument to the
-        last executed operation.  Returns an int."""
+        last executed operation (from 'fail_args' if it was a guard,
+        or from 'args' if it was a FINISH).  Returns an int."""
         raise NotImplementedError
 
     def get_latest_value_float(self, index):
         """Returns the value for the index'th argument to the
-        last executed operation.  Returns a float."""
+        last executed operation (from 'fail_args' if it was a guard,
+        or from 'args' if it was a FINISH).  Returns a float."""
         raise NotImplementedError
 
     def get_latest_value_ref(self, index):
         """Returns the value for the index'th argument to the
-        last executed operation.  Returns a ptr or an obj."""
+        last executed operation (from 'fail_args' if it was a guard,
+        or from 'args' if it was a FINISH).  Returns a ptr or an obj."""
         raise NotImplementedError
 
     def get_exception(self):



More information about the Pypy-commit mailing list