COMMITS
/ Python/ceval.c October 28, 2021
M
bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)
Mark Shannon committed
K
bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)
Ken Jin committed
M
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon committed
October 27, 2021
M
Don't make a call at the C level when calling bound-methods from Python code. (GH-29238)
Mark Shannon committed
B
bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)
Brandt Bucher committed
October 20, 2021
M
bpo-45527: Don't count cache hits, just misses. (GH-29092)
Mark Shannon committed
M
bpo-44525: Specialize simple Python calls. (GH-29033)
Mark Shannon committed
October 19, 2021
K
bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)
Ken Jin committed
K
Record cache hits for BINARY_SUBSCR specializations (GH-29060)
Ken Jin committed
October 18, 2021
V
bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)
Victor Stinner committed
M
bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)
Mark Shannon committed
October 15, 2021
V
bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)
Victor Stinner committed
October 14, 2021
D
bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)
Dennis Sweeney committed
October 13, 2021
B
Ensure that instruction cases are self-contained (GH-28938)
Brandt Bucher committed
P
bpo-45256: Fix cleanup of stolen locals for Python-to-Python calls (GH-28905)
Pablo Galindo Salgado committed
M
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon committed
V
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner committed
October 12, 2021
V
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner committed
October 11, 2021
V
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner committed
M
Restore PEP 523 functionality. (GH-28871)
Mark Shannon committed
October 9, 2021
P
bpo-45256: Small cleanups for the code that inlines Python-to-Python calls in ceval.c (GH-28836)
Pablo Galindo Salgado committed
P
bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)
Pablo Galindo Salgado committed
October 6, 2021
M
M
Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)
Mark Shannon committed
October 5, 2021
M
bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch. (GH-28723)
Mark Shannon committed
October 4, 2021
P
Fix compiler warning in ceval.c regarding signed comparison (GH-28716)
Pablo Galindo Salgado committed
October 3, 2021
S
bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the code unit (GH-28711)
Serhiy Storchaka committed
October 1, 2021
M
Fix a couple of compiler warnings. (GH-28677)
Mark Shannon committed
September 17, 2021
August 30, 2021
D
bpo-45045: Optimize mapping patterns of structural pattern matching (GH-28043)
Dong-hee Na committed
August 27, 2021
M
bpo-44945: Specialize BINARY_ADD (GH-27967)
Mark Shannon committed
August 25, 2021
M
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon committed
August 17, 2021
August 16, 2021
M
bpo-44900: Add five superinstructions. (GH-27741)
Mark Shannon committed
August 12, 2021
I
bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)
Irit Katriel committed
M
bpo-44878: Remove loop from interpreter. All dispatching is done by gotos. (GH-27727)
Mark Shannon committed
August 11, 2021
M
M
bpo-44878: _PyEval_EvalFrameDefault readability improvements (GH-27725)
Mark Shannon committed
M
Add missing DISPATCH() (GH-27715)
Mark Shannon committed
August 10, 2021
M
Fix stats for STORE_ATTR specialization. (GH-27708)
Mark Shannon committed
August 9, 2021
M
bpo-44826: Specialize STORE_ATTR (GH-27590)
Mark Shannon committed
August 4, 2021
M
Add option to write specialization stats to files and script to summarize. (GH-27575)
Mark Shannon committed
July 29, 2021
M
Minor fixes to specialization stats. (GH-27457)
Mark Shannon committed
July 26, 2021
M
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon committed
July 19, 2021
M
bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216)
Mark Shannon committed
July 16, 2021
P
Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)" (#27194)
Pablo Galindo Salgado committed
M
bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)
Mark Shannon committed
July 15, 2021
P
Remove sys._deactivate_opcache() now that is not needed (GH-27154)
Pablo Galindo Salgado committed
I
bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)
Irit Katriel committed
July 8, 2021
M
bpo-44570: Fix line tracing for forwards jumps to duplicated tails (GH-27068)
Mark Shannon committed