[pypy-commit] pypy jitframe-on-heap: mark those as unimplemented

fijal noreply at buildbot.pypy.org
Mon Jan 21 10:11:24 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r60282:c8e6b57929df
Date: 2013-01-21 11:11 +0200
http://bitbucket.org/pypy/pypy/changeset/c8e6b57929df/

Log:	mark those as unimplemented

diff --git a/rpython/jit/backend/x86/assembler.py b/rpython/jit/backend/x86/assembler.py
--- a/rpython/jit/backend/x86/assembler.py
+++ b/rpython/jit/backend/x86/assembler.py
@@ -2060,6 +2060,7 @@
         # first, close the stack in the sense of the asmgcc GC root tracker
         gcrootmap = self.cpu.gc_ll_descr.gcrootmap
         if gcrootmap:
+            raise NotImplementedError # we need tests
             xxx
             self.call_release_gil(gcrootmap, arglocs)
         # do the call
@@ -2067,6 +2068,7 @@
         self.genop_call(op, arglocs, result_loc)
         # then reopen the stack
         if gcrootmap:
+            raise NotImplementedError # we need tests
             xxx
             self.call_reacquire_gil(gcrootmap, result_loc)
         # finally, the guard_not_forced


More information about the pypy-commit mailing list