[pypy-commit] pypy stm-thread-2: Disable this case too for now.

arigo noreply at buildbot.pypy.org
Thu Sep 13 07:33:53 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-thread-2
Changeset: r57316:27450e42694a
Date: 2012-09-12 22:11 +0200
http://bitbucket.org/pypy/pypy/changeset/27450e42694a/

Log:	Disable this case too for now.

diff --git a/pypy/jit/backend/x86/runner.py b/pypy/jit/backend/x86/runner.py
--- a/pypy/jit/backend/x86/runner.py
+++ b/pypy/jit/backend/x86/runner.py
@@ -132,11 +132,12 @@
                 prev_interpreter = LLInterpreter.current_interpreter
                 LLInterpreter.current_interpreter = self.debug_ll_interpreter
             try:
-                if not self.gc_ll_descr.stm:
+                #if not self.gc_ll_descr.stm:
                     fail_index = func(*args)
-                else:
-                    fail_index = llop.stm_jit_invoke_code(lltype.Signed,
-                                                          func, *args)
+                #else:
+                #    fail_index = llop.stm_jit_invoke_code(lltype.Signed,
+                #                                          func, *args)
+                #    XXX stm: do we need this special call operations?
             finally:
                 if not self.translate_support_code:
                     LLInterpreter.current_interpreter = prev_interpreter
diff --git a/pypy/translator/stm/funcgen.py b/pypy/translator/stm/funcgen.py
--- a/pypy/translator/stm/funcgen.py
+++ b/pypy/translator/stm/funcgen.py
@@ -35,9 +35,8 @@
     string_literal = c_string_constant(info)
     return 'BecomeInevitable(%s);' % (string_literal,)
 
-def stm_jit_invoke_code(funcgen, op):
-    XXX
-    return funcgen.OP_DIRECT_CALL(op)
+##def stm_jit_invoke_code(funcgen, op):
+##    return funcgen.OP_DIRECT_CALL(op)
 
 def _stm_nogc_init_function():
     """Called at process start-up when running with no GC."""


More information about the pypy-commit mailing list