(self)
| 348 | } |
| 349 | |
| 350 | def get_misses_counts(self) -> dict[str, int]: |
| 351 | return { |
| 352 | opcode: opcode_stat.get("specialization.miss", 0) |
| 353 | for opcode, opcode_stat in self._data.items() |
| 354 | if not self.is_specializable(opcode) |
| 355 | } |
| 356 | |
| 357 | def get_opcode_counts(self) -> dict[str, int]: |
| 358 | counts = {} |
no test coverage detected