[pypy-commit] pypy ppc-jit-backend-rpythonization: (bivab, hager): disable codepath until gc support is in place

hager noreply at buildbot.pypy.org
Tue Feb 7 18:20:26 CET 2012


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend-rpythonization
Changeset: r52199:11b80f0c5896
Date: 2012-02-07 09:19 -0800
http://bitbucket.org/pypy/pypy/changeset/11b80f0c5896/

Log:	(bivab, hager): disable codepath until gc support is in place

diff --git a/pypy/jit/backend/ppc/ppcgen/regalloc.py b/pypy/jit/backend/ppc/ppcgen/regalloc.py
--- a/pypy/jit/backend/ppc/ppcgen/regalloc.py
+++ b/pypy/jit/backend/ppc/ppcgen/regalloc.py
@@ -522,7 +522,8 @@
         self.assembler.emit_call(op, args, self, fail_index)
         # then reopen the stack
         if gcrootmap:
-            self.assembler.call_reacquire_gil(gcrootmap, r.r0, fcond)
+            assert 0, "not implemented yet"
+            # self.assembler.call_reacquire_gil(gcrootmap, registers)
         locs = self._prepare_guard(guard_op)
         self.possibly_free_vars(guard_op.getfailargs())
         return locs


More information about the pypy-commit mailing list