[pypy-commit] pypy stmgc-c8: Failed to fix the issue, so increase the trace_limit for now...

arigo noreply at buildbot.pypy.org
Sat May 30 20:42:07 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c8
Changeset: r77710:77df620af990
Date: 2015-05-30 20:42 +0200
http://bitbucket.org/pypy/pypy/changeset/77df620af990/

Log:	Failed to fix the issue, so increase the trace_limit for now...

diff --git a/rpython/rlib/jit.py b/rpython/rlib/jit.py
--- a/rpython/rlib/jit.py
+++ b/rpython/rlib/jit.py
@@ -482,7 +482,8 @@
               'function_threshold': 1619, # slightly more than one above, also prime
               'trace_eagerness': 200,
               'decay': 40,
-              'trace_limit': 6000,
+              'trace_limit': 25000,  # XXX temporary: with stm, unopt traces
+                                     # XXX are much longer
               'inlining': 1,
               'loop_longevity': 1000,
               'retrace_limit': 5,


More information about the pypy-commit mailing list