summaryrefslogtreecommitdiffstats
path: root/Python/tier2_redundancy_eliminator_cases.c.h
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2024-02-20 09:39:55 (GMT)
committerGitHub <noreply@github.com>2024-02-20 09:39:55 (GMT)
commit7b21403ccd16c480812a1e857c0ee2deca592be0 (patch)
treeae54fc68fe298bea063502adff747e3ac1dd734d /Python/tier2_redundancy_eliminator_cases.c.h
parentacda1757bc682922292215906459c2735ee99c04 (diff)
downloadcpython-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.h14
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;
}