diff options
author | Michael Droettboom <mdboom@gmail.com> | 2023-10-31 00:02:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-31 00:02:45 (GMT) |
commit | 84b4533e8446cbff3325fffe939c87f7120a3ffd (patch) | |
tree | dd06a187031f6929c5bf4ba0e49ccac87e5b8ed8 /Tools/scripts | |
parent | c6fe0869ab1d91525f88279f8567461082c0d3ce (diff) | |
download | cpython-84b4533e8446cbff3325fffe939c87f7120a3ffd.zip cpython-84b4533e8446cbff3325fffe939c87f7120a3ffd.tar.gz cpython-84b4533e8446cbff3325fffe939c87f7120a3ffd.tar.bz2 |
gh-109329: Count tier2 opcode misses (#110561)
This keeps a separate 'miss' counter for each micro-opcode, incremented whenever a guard uop takes a deoptimization side exit.
Diffstat (limited to 'Tools/scripts')
-rw-r--r-- | Tools/scripts/summarize_stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/summarize_stats.py b/Tools/scripts/summarize_stats.py index 165b9b4..0527d4be 100644 --- a/Tools/scripts/summarize_stats.py +++ b/Tools/scripts/summarize_stats.py @@ -1028,7 +1028,7 @@ def optimization_section() -> Section: ], ) yield Section( - "Uop stats", + "Uop execution stats", "", [ Table( |