diff options
author | Guido van Rossum <guido@python.org> | 2023-11-17 11:49:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 11:49:42 -0800 |
commit | be0bd54c6b3b2382d03f2073070353c8b946902b (patch) | |
tree | c92d1dacbfd1fe3e7e9bf538538cf48b66c5a4d3 /Python/generated_cases.c.h | |
parent | b4144979934d7b8448f80c1fbee65dc3bfbce005 (diff) | |
download | cpython-be0bd54c6b3b2382d03f2073070353c8b946902b.tar.gz cpython-be0bd54c6b3b2382d03f2073070353c8b946902b.zip |
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/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index fe0cbfe6330..a74529d8855 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -1731,6 +1731,7 @@ seq = stack_pointer[-1]; { uint16_t counter = read_u16(&this_instr[1].cache); + TIER_ONE_ONLY #if ENABLE_SPECIALIZATION if (ADAPTIVE_COUNTER_IS_ZERO(counter)) { next_instr = this_instr; |