mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
GH-129715: Remove _DYNAMIC_EXIT (GH-129716)
This commit is contained in:
parent
e4a00f70b1
commit
5fa7e1b7fd
13 changed files with 138 additions and 226 deletions
|
@ -457,6 +457,7 @@ class Stats:
|
|||
inner_loop = self._data["Optimization inner loop"]
|
||||
recursive_call = self._data["Optimization recursive call"]
|
||||
low_confidence = self._data["Optimization low confidence"]
|
||||
unknown_callee = self._data["Optimization unknown callee"]
|
||||
executors_invalidated = self._data["Executors invalidated"]
|
||||
|
||||
return {
|
||||
|
@ -497,6 +498,10 @@ class Stats:
|
|||
"A trace is abandoned because the likelihood of the jump to top being taken "
|
||||
"is too low.",
|
||||
): (low_confidence, attempts),
|
||||
Doc(
|
||||
"Unknown callee",
|
||||
"A trace is abandoned because the target of a call is unknown.",
|
||||
): (unknown_callee, attempts),
|
||||
Doc(
|
||||
"Executors invalidated",
|
||||
"The number of executors that were invalidated due to watched "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue