[pypy-svn] r37612 - pypy/dist/pypy/jit/codegen/dump

ac at codespeak.net ac at codespeak.net
Tue Jan 30 17:21:38 CET 2007


Author: ac
Date: Tue Jan 30 17:21:37 2007
New Revision: 37612

Modified:
   pypy/dist/pypy/jit/codegen/dump/rgenop.py
Log:
Add read_frame_place to the dump "backend"

Modified: pypy/dist/pypy/jit/codegen/dump/rgenop.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/dump/rgenop.py	(original)
+++ pypy/dist/pypy/jit/codegen/dump/rgenop.py	Tue Jan 30 17:21:37 2007
@@ -432,4 +432,10 @@
         RDumpGenOp.dump("# write_frame_place(place=%s)" % (place,))
         llrgenop.RGenOp.write_frame_place(T, base, place, value)
 
+    @staticmethod
+    @specialize.arg(0)
+    def read_frame_place(T, base, place):
+        RDumpGenOp.dump("# read_frame_place(place=%s)" % (place,))
+        return llrgenop.RGenOp.read_frame_place(T, base, place)
+
 kindtokennames = {}



More information about the Pypy-commit mailing list