Author: Richard Plangger <[email protected]>
Branch:
Changeset: r88235:0c1ef72f23c4
Date: 2016-11-08 20:13 +0100
http://bitbucket.org/pypy/pypy/changeset/0c1ef72f23c4/
Log: account for vector guards while parsing the textual jit log
diff --git a/rpython/tool/jitlogparser/storage.py
b/rpython/tool/jitlogparser/storage.py
--- a/rpython/tool/jitlogparser/storage.py
+++ b/rpython/tool/jitlogparser/storage.py
@@ -62,7 +62,7 @@
guard_dict = {}
for loop_no, loop in enumerate(loops):
for op in loop.operations:
- if op.name.startswith('guard_'):
+ if op.name.startswith('guard_') or
op.name.startswith('vec_guard_'):
guard_dict[int(op.descr[len('<Guard0x'):-1], 16)] = (op,
loop)
for loop in loops:
if loop.comment:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit