Skip to content

Commit 76b9b3e

Browse files
committed
Speedup instrumented for loops and fix branch iterator bug
1 parent e389d6c commit 76b9b3e

17 files changed

+631
-511
lines changed

Include/internal/pycore_magic_number.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ Known values:
264264
Python 3.14a2 3609 (Add LOAD_SMALL_INT and LOAD_CONST_IMMORTAL instructions, remove RETURN_CONST)
265265
(3610 accidentally omitted)
266266
Python 3.14a4 3611 (Add NOT_TAKEN instruction)
267+
Python 3.14a4 3612 (Add POP_ITER and INSTRUMENTED_POP_ITER)
267268
268269
Python 3.15 will start with 3650
269270
@@ -276,7 +277,7 @@ PC/launcher.c must also be updated.
276277
277278
*/
278279

279-
#define PYC_MAGIC_NUMBER 3611
280+
#define PYC_MAGIC_NUMBER 3612
280281
/* This is equivalent to converting PYC_MAGIC_NUMBER to 2 bytes
281282
(little-endian) and then appending b'\r\n'. */
282283
#define PYC_MAGIC_NUMBER_TOKEN \

Include/internal/pycore_opcode_metadata.h

Lines changed: 26 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_uop_ids.h

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_uop_metadata.h

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)