mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
GH-123197: Only count an instruction as deferred if it hasn't deopted first. (GH-123222)
Only count an instruction as deferred if hasn't deopted first.
This commit is contained in:
parent
3d7b1a526d
commit
a3d8c0542e
4 changed files with 33 additions and 30 deletions
|
@ -116,6 +116,7 @@ _Py_GetSpecializationStats(void) {
|
|||
err += add_stat_dict(stats, STORE_SUBSCR, "store_subscr");
|
||||
err += add_stat_dict(stats, STORE_ATTR, "store_attr");
|
||||
err += add_stat_dict(stats, CALL, "call");
|
||||
err += add_stat_dict(stats, CALL_KW, "call_kw");
|
||||
err += add_stat_dict(stats, BINARY_OP, "binary_op");
|
||||
err += add_stat_dict(stats, COMPARE_OP, "compare_op");
|
||||
err += add_stat_dict(stats, UNPACK_SEQUENCE, "unpack_sequence");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue