summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_code.h
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-03-08 15:53:22 (GMT)
committerGitHub <noreply@github.com>2022-03-08 15:53:22 (GMT)
commit5498a61c7c25db6f9e76032aa9c5153d79e09889 (patch)
tree7a74ec449c7d56d0dfde2b3d977f49993fee09c1 /Include/internal/pycore_code.h
parent28f84c72b6cee145f9c00e9b999656e9a2517e49 (diff)
downloadcpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.zip
cpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.tar.gz
cpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.tar.bz2
bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)
Diffstat (limited to 'Include/internal/pycore_code.h')
-rw-r--r--Include/internal/pycore_code.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Include/internal/pycore_code.h b/Include/internal/pycore_code.h
index 21c657a..0d324e9 100644
--- a/Include/internal/pycore_code.h
+++ b/Include/internal/pycore_code.h
@@ -86,6 +86,12 @@ typedef struct {
#define INLINE_CACHE_ENTRIES_PRECALL CACHE_ENTRIES(_PyPrecallCache)
+typedef struct {
+ _Py_CODEUNIT counter;
+} _PyStoreSubscrCache;
+
+#define INLINE_CACHE_ENTRIES_STORE_SUBSCR CACHE_ENTRIES(_PyStoreSubscrCache)
+
/* Maximum size of code to quicken, in code units. */
#define MAX_SIZE_TO_QUICKEN 10000