[pypy-commit] pypy jit-leaner-frontend: add more debug prints

fijal pypy.commits at gmail.com
Fri Mar 11 08:45:33 EST 2016


Author: fijal
Branch: jit-leaner-frontend
Changeset: r82971:5645eb6ac117
Date: 2016-03-11 15:44 +0200
http://bitbucket.org/pypy/pypy/changeset/5645eb6ac117/

Log:	add more debug prints

diff --git a/rpython/jit/metainterp/opencoder.py b/rpython/jit/metainterp/opencoder.py
--- a/rpython/jit/metainterp/opencoder.py
+++ b/rpython/jit/metainterp/opencoder.py
@@ -215,6 +215,7 @@
         debug_print(" bigint consts: " + str(self._consts_bigint) + " " + str(len(self._bigints)))
         debug_print(" float consts: " + str(self._consts_float) + " " + str(len(self._floats)))
         debug_print(" ref consts: " + str(self._consts_ptr) + " " + str(len(self._refs)))
+        debug_print(" descrs: " + len(self._descrs))
         debug_stop("jit-trace-done")
         return 0 # completely different than TraceIter.done, but we have to
         # share the base class


More information about the pypy-commit mailing list