diff options
| author | Mark Shannon <mark@hotpy.org> | 2024-02-20 09:39:55 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-20 09:39:55 (GMT) |
| commit | 7b21403ccd16c480812a1e857c0ee2deca592be0 (patch) | |
| tree | ae54fc68fe298bea063502adff747e3ac1dd734d /Python/tier2_redundancy_eliminator_cases.c.h | |
| parent | acda1757bc682922292215906459c2735ee99c04 (diff) | |
| download | cpython-7b21403ccd16c480812a1e857c0ee2deca592be0.zip cpython-7b21403ccd16c480812a1e857c0ee2deca592be0.tar.gz cpython-7b21403ccd16c480812a1e857c0ee2deca592be0.tar.bz2 | |
GH-112354: Initial implementation of warm up on exits and trace-stitching (GH-114142)
Diffstat (limited to 'Python/tier2_redundancy_eliminator_cases.c.h')
| -rw-r--r-- | Python/tier2_redundancy_eliminator_cases.c.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Python/tier2_redundancy_eliminator_cases.c.h b/Python/tier2_redundancy_eliminator_cases.c.h index be2fbb9..98f0bdc 100644 --- a/Python/tier2_redundancy_eliminator_cases.c.h +++ b/Python/tier2_redundancy_eliminator_cases.c.h @@ -1053,8 +1053,6 @@ break; } - /* _JUMP_BACKWARD is not a viable micro-op for tier 2 */ - /* _POP_JUMP_IF_FALSE is not a viable micro-op for tier 2 */ /* _POP_JUMP_IF_TRUE is not a viable micro-op for tier 2 */ @@ -1739,6 +1737,18 @@ break; } + case _COLD_EXIT: { + break; + } + + case _START_EXECUTOR: { + break; + } + + case _FATAL_ERROR: { + break; + } + case _CHECK_VALIDITY_AND_SET_IP: { break; } |
