diff options
author | Guido van Rossum <guido@python.org> | 2023-11-17 19:49:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 19:49:42 (GMT) |
commit | be0bd54c6b3b2382d03f2073070353c8b946902b (patch) | |
tree | c92d1dacbfd1fe3e7e9bf538538cf48b66c5a4d3 /Python/bytecodes.c | |
parent | b4144979934d7b8448f80c1fbee65dc3bfbce005 (diff) | |
download | cpython-be0bd54c6b3b2382d03f2073070353c8b946902b.zip cpython-be0bd54c6b3b2382d03f2073070353c8b946902b.tar.gz cpython-be0bd54c6b3b2382d03f2073070353c8b946902b.tar.bz2 |
gh-106529: Cleanups split off gh-112134 (#112214)
- Double max trace size to 256
- Add a dependency on executor_cases.c.h for ceval.o
- Mark `_SPECIALIZE_UNPACK_SEQUENCE` as `TIER_ONE_ONLY`
- Add debug output back showing the optimized trace
- Bunch of cleanups to Tools/cases_generator/
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 8a7dcb8..bd81dc1 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -1210,6 +1210,7 @@ dummy_func( }; specializing op(_SPECIALIZE_UNPACK_SEQUENCE, (counter/1, seq -- seq)) { + TIER_ONE_ONLY #if ENABLE_SPECIALIZATION if (ADAPTIVE_COUNTER_IS_ZERO(counter)) { next_instr = this_instr; |