[pypy-commit] pypy better-jit-hooks: put it back

fijal noreply at buildbot.pypy.org
Sun Dec 25 19:20:27 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: better-jit-hooks
Changeset: r50861:8ac7b4de9412
Date: 2011-12-25 20:19 +0200
http://bitbucket.org/pypy/pypy/changeset/8ac7b4de9412/

Log:	put it back

diff --git a/pypy/jit/metainterp/jitprof.py b/pypy/jit/metainterp/jitprof.py
--- a/pypy/jit/metainterp/jitprof.py
+++ b/pypy/jit/metainterp/jitprof.py
@@ -18,6 +18,7 @@
 OPT_FORCINGS
 ABORT_TOO_LONG
 ABORT_BRIDGE
+ABORT_BAD_LOOP
 ABORT_ESCAPE
 ABORT_FORCE_QUASIIMMUT
 NVIRTUALS
@@ -155,6 +156,7 @@
         self._print_intline("abort: trace too long", cnt[ABORT_TOO_LONG])
         self._print_intline("abort: compiling", cnt[ABORT_BRIDGE])
         self._print_intline("abort: vable escape", cnt[ABORT_ESCAPE])
+        self._print_intline("abort: bad loop", cnt[ABORT_BAD_LOOP])
         self._print_intline("abort: force quasi-immut",
                                                cnt[ABORT_FORCE_QUASIIMMUT])
         self._print_intline("nvirtuals", cnt[NVIRTUALS])


More information about the pypy-commit mailing list