[pypy-commit] pypy ppc-backend-2: Pass addr_all_null_registers as third parameter to failure_recovery_func.

edelsohn noreply at buildbot.pypy.org
Mon Jun 11 20:34:49 CEST 2012


Author: edelsohn
Branch: ppc-backend-2
Changeset: r55600:ebc753ac7439
Date: 2012-06-11 14:34 -0400
http://bitbucket.org/pypy/pypy/changeset/ebc753ac7439/

Log:	Pass addr_all_null_registers as third parameter to
	failure_recovery_func.

diff --git a/pypy/jit/backend/ppc/runner.py b/pypy/jit/backend/ppc/runner.py
--- a/pypy/jit/backend/ppc/runner.py
+++ b/pypy/jit/backend/ppc/runner.py
@@ -102,7 +102,8 @@
         # start of "no gc operation!" block
         fail_index_2 = self.asm.failure_recovery_func(
                 bytecode,
-                spilling_pointer)
+                spilling_pointer,
+                addr_all_null_registers)
         self.asm.leave_jitted_hook()
         # end of "no gc operation!" block
         assert fail_index == fail_index_2


More information about the pypy-commit mailing list