Don't double count misses. (GH-100984)

This commit is contained in:
Mark Shannon 2023-01-13 15:57:39 +00:00 committed by GitHub
parent e5bd5ad70d
commit c00eb1eae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -404,6 +404,9 @@ def emit_specialization_overview(opcode_stats, total):
total = 0
counts = []
for i, opcode_stat in enumerate(opcode_stats):
# Avoid double counting misses
if title == "Misses" and "specializable" in opcode_stat:
continue
value = opcode_stat.get(field, 0)
counts.append((value, opname[i]))
total += value