diff options
author | Mark Shannon <mark@hotpy.org> | 2023-11-07 09:42:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 09:42:39 (GMT) |
commit | 931f4438c92ec0eb2aa894092a91749f1d5bd216 (patch) | |
tree | 4cf62037b26667fa59ddf85da24641319fe2353a /Python/executor_cases.c.h | |
parent | 13405ecffda6c66d6a5cf2a22dff892c108c69db (diff) | |
download | cpython-931f4438c92ec0eb2aa894092a91749f1d5bd216.zip cpython-931f4438c92ec0eb2aa894092a91749f1d5bd216.tar.gz cpython-931f4438c92ec0eb2aa894092a91749f1d5bd216.tar.bz2 |
GH-111485: Allow arbitrary annotations on instructions and micro-ops. (GH-111697)
Diffstat (limited to 'Python/executor_cases.c.h')
-rw-r--r-- | Python/executor_cases.c.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h index df7ddf2..d9e9ad1 100644 --- a/Python/executor_cases.c.h +++ b/Python/executor_cases.c.h @@ -871,24 +871,6 @@ break; } - case _SPECIALIZE_UNPACK_SEQUENCE: { - PyObject *seq; - seq = stack_pointer[-1]; - uint16_t counter = (uint16_t)next_uop[-1].operand; - #if ENABLE_SPECIALIZATION - if (ADAPTIVE_COUNTER_IS_ZERO(counter)) { - next_instr = this_instr; - _Py_Specialize_UnpackSequence(seq, next_instr, oparg); - DISPATCH_SAME_OPARG(); - } - STAT_INC(UNPACK_SEQUENCE, deferred); - DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache); - #endif /* ENABLE_SPECIALIZATION */ - (void)seq; - (void)counter; - break; - } - case _UNPACK_SEQUENCE: { PyObject *seq; seq = stack_pointer[-1]; |