mirror of
https://github.com/python/cpython.git
synced 2025-08-29 21:25:01 +00:00
bpo-44725 : expose specialization stats in python (GH-27192)
This commit is contained in:
parent
6741794dd4
commit
ddd1c418c0
7 changed files with 158 additions and 1 deletions
|
@ -234,3 +234,13 @@ _specialized_instructions = [
|
|||
"LOAD_GLOBAL_MODULE",
|
||||
"LOAD_GLOBAL_BUILTIN",
|
||||
]
|
||||
|
||||
_specialization_stats = [
|
||||
"specialization_success",
|
||||
"specialization_failure",
|
||||
"hit",
|
||||
"deferred",
|
||||
"miss",
|
||||
"deopt",
|
||||
"unquickened",
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue