diff options
Diffstat (limited to 'Tools/scripts/summarize_stats.py')
-rw-r--r-- | Tools/scripts/summarize_stats.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tools/scripts/summarize_stats.py b/Tools/scripts/summarize_stats.py index 161af09183a..4243b53850b 100644 --- a/Tools/scripts/summarize_stats.py +++ b/Tools/scripts/summarize_stats.py @@ -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 { @@ -498,6 +499,10 @@ class Stats: "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 " "dictionary changes.", |