COMMITS
/ Python/ceval.c June 21, 2022
D
GH-91432: Specialize FOR_ITER (GH-91713)
Dennis Sweeney committed
June 20, 2022
M
GH-93516: Speedup line number checks when tracing. (GH-93763)
Mark Shannon committed
June 19, 2022
V
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Victor Stinner committed
June 17, 2022
K
gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)
Ken Jin committed
V
gh-77782: Py_FdIsInteractive() now uses PyConfig.interactive (#93916)
Victor Stinner committed
June 16, 2022
K
Fix BINARY_SUBSCR_GETITEM stats (GH-93903)
Ken Jin committed
June 14, 2022
K
GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)
Ken Jin committed
M
GH-93516: Store offset of first traceable instruction in code object (GH-93769)
Mark Shannon committed
June 7, 2022
K
Fix MSVC compiler warnings in ceval.c (#93569)
Ken Jin committed
M
Shrink the LOAD_METHOD cache by one codeunit. (#93537)
Mark Shannon committed
May 31, 2022
D
gh-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH-93144)
Dennis Sweeney committed
M
GH-93354: Use exponential backoff to avoid excessive specialization attempts. (GH-93355)
Mark Shannon committed
May 27, 2022
E
bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)
Eric Snow committed
M
GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (GH-93284)
Mark Shannon committed
May 25, 2022
K
gh-92777: Add LOAD_METHOD_LAZY_DICT (GH-92778)
Ken Jin committed
V
gh-91924: Fix __lltrace__ for non-UTF-8 stdout encoding (#93199)
Victor Stinner committed
May 19, 2022
M
GH-89914: Make the oparg of the YIELD_VALUE instruction equal the stack depth. (GH-92960)
Mark Shannon committed
M
GH-90690: Remove `PRECALL` instruction (GH-92925)
Mark Shannon committed
May 18, 2022
M
Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)
Mark Shannon committed
May 16, 2022
M
Improve object stats (#92845)
Mark Shannon committed
May 13, 2022
M
GH-92236: Remove spurious "line" event when starting coroutine or generator. (GH-92722)
Mark Shannon committed
May 12, 2022
C
Update outdated `LOAD_METHOD` comments in `Python/ceval.c` (GH-92641)
Crowthebird committed
May 4, 2022
M
GH-92239: Make sure that PEP 523 is supported, even when specializing first. (GH-92245)
Mark Shannon committed
V
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner committed
April 30, 2022
D
gh-92063: Enforce types in specialized PRECALL opcodes (GH-92068)
Dennis Sweeney committed
April 28, 2022
D
gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)
Dennis Sweeney committed
April 25, 2022
V
gh-91719: Add pycore_opcode.h internal header file (#91906)
Victor Stinner committed
April 22, 2022
G
gh-89279: In ceval.c, redefine some macros for speed (#32387)
Guido van Rossum committed
April 21, 2022
G
GH-91719: Make MSVC generate somewhat faster switch code (#91718)
Guido van Rossum committed
April 20, 2022
D
Cast to (destructor) to fix compiler warnings (GH-91711)
Dennis Sweeney committed
April 19, 2022
D
gh-90667: Add specializations of Py_DECREF when types are known (GH-30872)
Dennis Sweeney committed
April 17, 2022
D
gh-91625: Don't ignore extended args of adaptive opcodes (GH-91626)
Dennis Sweeney committed
April 16, 2022
D
gh-78607: Replace __ltrace__ with __lltrace__ (GH-91619)
Dennis Sweeney committed
D
gh-91462: Make lltrace output human-readable. (GH-91463)
Dennis Sweeney committed
April 15, 2022
I
gh-91276: Make JUMP_IF_TRUE_OR_POP/JUMP_IF_FALSE_OR_POP relative (GH-32215)
Irit Katriel committed
D
gh-90699: Use _Py_STR(empty) instead of PyUnicode_New(0, 0) for BUILD_STRING (GH-91476)
Dennis Sweeney committed
April 11, 2022
I
bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)
Irit Katriel committed
April 9, 2022
J
Fix some typos in comments (GH-32422)
jonasdlindner committed
April 7, 2022
B
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
Brandt Bucher committed
V
bpo-35134: Remove the Include/code.h header file (GH-32385)
Victor Stinner committed
April 5, 2022
C
bpo-47009: Fix assert on big endian (GH-32332)
Christian Heimes committed
I
bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)
Irit Katriel committed
I
bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)
Irit Katriel committed
D
bpo-47009: Let PRECALL_NO_KW_LIST_APPEND do its own POP_TOP (GH-32239)
Dennis Sweeney committed
April 3, 2022
H
bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (GH-32209)
Hood Chatham committed
April 1, 2022
I
bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)
Irit Katriel committed
D
bpo-47009: Streamline list.append for the common case (GH-31864)
Dennis Sweeney committed
March 31, 2022
I
bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH-32115)
Irit Katriel committed
March 30, 2022
M
Merge deoptimization blocks in interpreter (GH-32155)
Mark Shannon committed