[pypy-svn] r65879 - pypy/branch/pyjitpl5/pypy/module/pypyjit

arigo at codespeak.net arigo at codespeak.net
Tue Jun 23 13:17:10 CEST 2009


Author: arigo
Date: Tue Jun 23 13:17:10 2009
New Revision: 65879

Modified:
   pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py
Log:
(untested) update the pypyjit module too.


Modified: pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py	(original)
+++ pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py	Tue Jun 23 13:17:10 2009
@@ -16,8 +16,10 @@
 from pypy.interpreter.function import Function
 from pypy.interpreter.pyopcode import ExitFrame
 
-PyFrame._virtualizable2_ = True
-PyFrame._always_virtual_ = ['valuestack_w', 'fastlocals_w']
+PyFrame._virtualizable2_ = ['last_instr',
+                            'valuestackdepth', 'valuestack_w[*]',
+                            'fastlocals_w[*]',
+                            ]
 
 class PyPyJitDriver(JitDriver):
     reds = ['frame', 'ec']



More information about the Pypy-commit mailing list