-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Closed
Labels
3.15new features, bugs and security fixesnew features, bugs and security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)topic-JITtype-crashA hard crash of the interpreter, possibly with a core dumpA hard crash of the interpreter, possibly with a core dump
Description
Crash report
This code snippet crashes when the JIT is enabled:
for _ in range(4096):
2 ** 65
I believe this is caused by GH-132733. Specifically, the abstract interpreter generator "thinks" that the operation itself can escape, and spills res
to the stack before it has been defined:
cpython/Python/optimizer_cases.c.h
Line 2726 in 93809a9
stack_pointer[-2] = res; |
It also never writes the actual result to the stack once it has been computed, leaving the garbage value in its place.
The fix is probably to teach the code generator that nothing using this "pure" constant evaluation mechanism can escape.
Linked PRs
Metadata
Metadata
Assignees
Labels
3.15new features, bugs and security fixesnew features, bugs and security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)topic-JITtype-crashA hard crash of the interpreter, possibly with a core dumpA hard crash of the interpreter, possibly with a core dump