summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_uop_ids.h
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2024-01-24 12:08:31 (GMT)
committerGitHub <noreply@github.com>2024-01-24 12:08:31 (GMT)
commit384429d1c0cf011dcf88d4043e0328de8b063c24 (patch)
treed3b325f08d9359bce60065b162ddec3572b08662 /Include/internal/pycore_uop_ids.h
parent1e4f00ebd8db44a031b61eed0803b4c3d731aed7 (diff)
downloadcpython-384429d1c0cf011dcf88d4043e0328de8b063c24.zip
cpython-384429d1c0cf011dcf88d4043e0328de8b063c24.tar.gz
cpython-384429d1c0cf011dcf88d4043e0328de8b063c24.tar.bz2
GH-113710: Add a tier 2 peephole optimization pass. (GH-114487)
* Convert _LOAD_CONST to inline versions * Remove PEP 523 checks
Diffstat (limited to 'Include/internal/pycore_uop_ids.h')
-rw-r--r--Include/internal/pycore_uop_ids.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Include/internal/pycore_uop_ids.h b/Include/internal/pycore_uop_ids.h
index 8ee90d7..a705658 100644
--- a/Include/internal/pycore_uop_ids.h
+++ b/Include/internal/pycore_uop_ids.h
@@ -230,9 +230,10 @@ extern "C" {
#define _JUMP_TO_TOP 377
#define _SAVE_RETURN_OFFSET 378
#define _CHECK_VALIDITY 379
-#define _LOAD_CONST_INLINE_BORROW 380
-#define _INTERNAL_INCREMENT_OPT_COUNTER 381
-#define MAX_UOP_ID 381
+#define _LOAD_CONST_INLINE 380
+#define _LOAD_CONST_INLINE_BORROW 381
+#define _INTERNAL_INCREMENT_OPT_COUNTER 382
+#define MAX_UOP_ID 382
#ifdef __cplusplus
}