()
| 772 | |
| 773 | |
| 774 | def execution_count_section() -> Section: |
| 775 | return Section( |
| 776 | "Execution counts", |
| 777 | "Execution counts for Tier 1 instructions.", |
| 778 | [ |
| 779 | Table( |
| 780 | ("Name", "Count:", "Self:", "Cumulative:", "Miss ratio:"), |
| 781 | calc_execution_count_table("opcode"), |
| 782 | join_mode=JoinMode.CHANGE_ONE_COLUMN, |
| 783 | ) |
| 784 | ], |
| 785 | doc=""" |
| 786 | The "miss ratio" column shows the percentage of times the instruction |
| 787 | executed that it deoptimized. When this happens, the base unspecialized |
| 788 | instruction is not counted. |
| 789 | """, |
| 790 | ) |
| 791 | |
| 792 | |
| 793 | def pair_count_section(prefix: str, title=None) -> Section: |
no test coverage detected
searching dependent graphs…