(self)
| 341 | return basic, specialized_hits, specialized_misses, not_specialized |
| 342 | |
| 343 | def get_deferred_counts(self) -> dict[str, int]: |
| 344 | return { |
| 345 | opcode: opcode_stat.get("specialization.deferred", 0) |
| 346 | for opcode, opcode_stat in self._data.items() |
| 347 | if opcode != "RESUME" |
| 348 | } |
| 349 | |
| 350 | def get_misses_counts(self) -> dict[str, int]: |
| 351 | return { |
no test coverage detected