Author: David Schneider <[email protected]>
Branch: arm-backend-2
Changeset: r51160:cad3c03c5ac1
Date: 2012-01-03 11:10 +0100
http://bitbucket.org/pypy/pypy/changeset/cad3c03c5ac1/

Log:    rename field

diff --git a/pypy/jit/backend/arm/assembler.py 
b/pypy/jit/backend/arm/assembler.py
--- a/pypy/jit/backend/arm/assembler.py
+++ b/pypy/jit/backend/arm/assembler.py
@@ -577,7 +577,7 @@
         operations = self.setup(original_loop_token, operations)
         self._dump(operations, 'bridge')
         assert isinstance(faildescr, AbstractFailDescr)
-        code = faildescr._failure_recovery_code
+        code = faildescr._arm_failure_recovery_code
         enc = rffi.cast(rffi.CCHARP, code)
         frame_depth = faildescr._arm_current_frame_depth
         arglocs = self.decode_inputargs(enc)
@@ -638,7 +638,7 @@
                                         tok.faillocs, save_exc=tok.save_exc)
             # store info on the descr
             descr._arm_current_frame_depth = tok.faillocs[0].getint()
-            descr._failure_recovery_code = memaddr
+            descr._arm_failure_recovery_code = memaddr
             descr._arm_guard_pos = pos
 
     def process_pending_guards(self, block_start):
diff --git a/pypy/jit/backend/arm/runner.py b/pypy/jit/backend/arm/runner.py
--- a/pypy/jit/backend/arm/runner.py
+++ b/pypy/jit/backend/arm/runner.py
@@ -113,7 +113,7 @@
                             len(all_regs) * WORD +
                             len(all_vfp_regs) * DOUBLE_WORD))
         fail_index_2 = self.assembler.failure_recovery_func(
-            faildescr._failure_recovery_code,
+            faildescr._arm_failure_recovery_code,
             addr_of_force_index,
             addr_end_of_frame)
         self.assembler.leave_jitted_hook()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to