[pypy-commit] pypy jitframe-on-heap: er, maybe like that

fijal noreply at buildbot.pypy.org
Wed Feb 27 13:56:28 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r61846:4f1b0ef6ca4a
Date: 2013-02-27 14:56 +0200
http://bitbucket.org/pypy/pypy/changeset/4f1b0ef6ca4a/

Log:	er, maybe like that

diff --git a/rpython/jit/backend/arm/assembler.py b/rpython/jit/backend/arm/assembler.py
--- a/rpython/jit/backend/arm/assembler.py
+++ b/rpython/jit/backend/arm/assembler.py
@@ -181,6 +181,7 @@
             return      # not supported (for tests, or non-translated)
         #
         #
+        xxxx
         mc = ARMv7Builder()
         self._store_and_reset_exception(mc, r.r0)
         ofs = self.cpu.get_ofs_of_frame_field('jf_guard_exc')
@@ -742,7 +743,7 @@
         """
         descrs = self.cpu.gc_ll_descr.getframedescrs(self.cpu)
         ofs = self.cpu.unpack_fielddescr(descrs.arraydescr.lendescr)
-        mc.STR_ri(r.r12.value, r.fp.value, imm=ofs)
+        mc.LDR_ri(r.r12.value, r.fp.value, imm=ofs)
         stack_check_cmp_ofs = mc.currpos()
         if expected_size == -1:
             mc.NOP()


More information about the pypy-commit mailing list