index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
ceval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)
Mark Shannon
2021-10-28
1
-57/+84
*
bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)
Ken Jin
2021-10-28
1
-0/+6
*
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon
2021-10-28
1
-23/+24
*
Don't make a call at the C level when calling bound-methods from Python code....
Mark Shannon
2021-10-27
1
-1/+14
*
bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)
Brandt Bucher
2021-10-27
1
-44/+24
*
bpo-45527: Don't count cache hits, just misses. (GH-29092)
Mark Shannon
2021-10-20
1
-46/+7
*
bpo-44525: Specialize simple Python calls. (GH-29033)
Mark Shannon
2021-10-20
1
-3/+42
*
bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)
Ken Jin
2021-10-19
1
-0/+147
*
Record cache hits for BINARY_SUBSCR specializations (GH-29060)
Ken Jin
2021-10-19
1
-0/+3
*
bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)
Victor Stinner
2021-10-18
1
-7/+7
*
bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)
Mark Shannon
2021-10-18
1
-153/+97
*
bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)
Victor Stinner
2021-10-15
1
-10/+7
*
bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)
Dennis Sweeney
2021-10-14
1
-1/+61
*
Ensure that instruction cases are self-contained (GH-28938)
Brandt Bucher
2021-10-13
1
-6/+6
*
bpo-45256: Fix cleanup of stolen locals for Python-to-Python calls (GH-28905)
Pablo Galindo Salgado
2021-10-13
1
-10/+24
*
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon
2021-10-13
1
-36/+36
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-1/+1
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-2/+2
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-5/+5
*
Restore PEP 523 functionality. (GH-28871)
Mark Shannon
2021-10-11
1
-4/+2
*
bpo-45256: Small cleanups for the code that inlines Python-to-Python calls in...
Pablo Galindo Salgado
2021-10-09
1
-11/+22
*
bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)
Pablo Galindo Salgado
2021-10-09
1
-29/+120
*
bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...
Mark Shannon
2021-10-06
1
-5/+6
*
Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)
Mark Shannon
2021-10-06
1
-12/+12
*
bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch...
Mark Shannon
2021-10-05
1
-213/+240
*
Fix compiler warning in ceval.c regarding signed comparison (GH-28716)
Pablo Galindo Salgado
2021-10-04
1
-1/+1
*
bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...
Serhiy Storchaka
2021-10-03
1
-9/+9
*
Fix a couple of compiler warnings. (GH-28677)
Mark Shannon
2021-10-01
1
-2/+2
*
bpo-45107: Make LOAD_METHOD_CLASS safer and faster, clean up comments (GH-28177)
Ken Jin
2021-09-17
1
-7/+2
*
bpo-45045: Optimize mapping patterns of structural pattern matching (GH-28043)
Dong-hee Na
2021-08-30
1
-6/+17
*
bpo-44945: Specialize BINARY_ADD (GH-27967)
Mark Shannon
2021-08-27
1
-15/+114
*
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon
2021-08-25
1
-36/+40
*
bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)
Ken Jin
2021-08-17
1
-15/+127
*
bpo-44900: Add five superinstructions. (GH-27741)
Mark Shannon
2021-08-16
1
-9/+86
*
bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)
Irit Katriel
2021-08-12
1
-1/+1
*
bpo-44878: Remove loop from interpreter. All dispatching is done by gotos. (G...
Mark Shannon
2021-08-12
1
-14/+17
*
bpo-44878: Remove the switch from the main interpreter loop when using comput...
Mark Shannon
2021-08-11
1
-177/+206
*
bpo-44878: _PyEval_EvalFrameDefault readability improvements (GH-27725)
Mark Shannon
2021-08-11
1
-51/+49
*
Add missing DISPATCH() (GH-27715)
Mark Shannon
2021-08-11
1
-0/+2
*
Fix stats for STORE_ATTR specialization. (GH-27708)
Mark Shannon
2021-08-10
1
-0/+2
*
bpo-44826: Specialize STORE_ATTR (GH-27590)
Mark Shannon
2021-08-09
1
-4/+121
*
Add option to write specialization stats to files and script to summarize. (G...
Mark Shannon
2021-08-04
1
-0/+2
*
Minor fixes to specialization stats. (GH-27457)
Mark Shannon
2021-07-29
1
-0/+3
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
1
-208/+223
*
bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216)
Mark Shannon
2021-07-19
1
-1/+6
*
Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...
Pablo Galindo Salgado
2021-07-16
1
-6/+1
*
bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)
Mark Shannon
2021-07-16
1
-1/+6
*
Remove sys._deactivate_opcache() now that is not needed (GH-27154)
Pablo Galindo Salgado
2021-07-15
1
-13/+0
*
bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)
Irit Katriel
2021-07-15
1
-0/+116
*
bpo-44570: Fix line tracing for forwards jumps to duplicated tails (GH-27068)
Mark Shannon
2021-07-08
1
-4/+2
[next]