[pypy-commit] pypy default: Disable logging the jit-running times, which are not interesting

arigo noreply at buildbot.pypy.org
Sat Sep 17 18:47:26 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r47318:501bfffe93ca
Date: 2011-09-17 18:47 +0200
http://bitbucket.org/pypy/pypy/changeset/501bfffe93ca/

Log:	Disable logging the jit-running times, which are not interesting and
	run far too often.

diff --git a/pypy/jit/metainterp/warmstate.py b/pypy/jit/metainterp/warmstate.py
--- a/pypy/jit/metainterp/warmstate.py
+++ b/pypy/jit/metainterp/warmstate.py
@@ -367,9 +367,9 @@
             # ---------- execute assembler ----------
             while True:     # until interrupted by an exception
                 metainterp_sd.profiler.start_running()
-                debug_start("jit-running")
+                #debug_start("jit-running")
                 fail_descr = warmrunnerdesc.execute_token(loop_token)
-                debug_stop("jit-running")
+                #debug_stop("jit-running")
                 metainterp_sd.profiler.end_running()
                 loop_token = None     # for test_memmgr
                 if vinfo is not None:


More information about the pypy-commit mailing list