Author: Armin Rigo <[email protected]>
Branch: stm-thread-2
Changeset: r57794:fd5a4f54ed7a
Date: 2012-10-05 12:55 +0000
http://bitbucket.org/pypy/pypy/changeset/fd5a4f54ed7a/
Log: Ignore calls to _gctransformer_hint_close_stack_ functions.
diff --git a/pypy/jit/codewriter/call.py b/pypy/jit/codewriter/call.py
--- a/pypy/jit/codewriter/call.py
+++ b/pypy/jit/codewriter/call.py
@@ -137,6 +137,10 @@
if (hasattr(targetgraph, 'func') and
hasattr(targetgraph.func, 'oopspec')):
return 'builtin'
+ if (hasattr(targetgraph, 'func') and
+ getattr(targetgraph.func, '_gctransformer_hint_close_stack_',
+ False)):
+ return 'residual'
elif op.opname == 'oosend':
SELFTYPE, methname, opargs = support.decompose_oosend(op)
if SELFTYPE.oopspec_name is not None:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit