()
| 339 | ) |
| 340 | |
| 341 | def main(): |
| 342 | stats = gather_stats() |
| 343 | opcode_stats = extract_opcode_stats(stats) |
| 344 | total = get_total(opcode_stats) |
| 345 | emit_execution_counts(opcode_stats, total) |
| 346 | emit_pair_counts(opcode_stats, total) |
| 347 | emit_specialization_stats(opcode_stats) |
| 348 | emit_specialization_overview(opcode_stats, total) |
| 349 | emit_call_stats(stats) |
| 350 | emit_object_stats(stats) |
| 351 | print("---") |
| 352 | print("Stats gathered on:", date.today()) |
| 353 | |
| 354 | if __name__ == "__main__": |
| 355 | main() |
no test coverage detected