Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r66088:2d0eaeda9275
Date: 2013-08-12 17:35 +0200
http://bitbucket.org/pypy/pypy/changeset/2d0eaeda9275/

Log:    Print assembler including the address of the current instruction and
        the raw bytes; I think there is little point in hiding information
        here, and it lets us see that some jumps have a bogus destination
        address (unpatched)

diff --git a/pypy/tool/jitlogparser/parser.py b/pypy/tool/jitlogparser/parser.py
--- a/pypy/tool/jitlogparser/parser.py
+++ b/pypy/tool/jitlogparser/parser.py
@@ -85,7 +85,7 @@
                     continue
                 e = elem.split("\t")
                 adr = e[0]
-                v = " ".join(e[2:])
+                v = elem   # --- more compactly:  " ".join(e[2:])
                 if not start:
                     start = int(adr.strip(":"), 16)
                 ofs = int(adr.strip(":"), 16) - start
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to