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-45963: Make space for the InterpreterFrame of a generator in that generat...
Mark Shannon
2021-12-06
1
-30/+11
*
bpo-45885: Specialize COMPARE_OP (GH-29734)
Dennis Sweeney
2021-12-03
1
-0/+122
*
bpo-45753: Interpreter internal tweaks (GH-29575)
Mark Shannon
2021-12-01
1
-139/+194
*
bpo-45711: Change exc_info related APIs to derive type and traceback from the...
Irit Katriel
2021-11-30
1
-6/+3
*
bpo-45786: Allocate space for frame in frame object. (GH-29729)
Mark Shannon
2021-11-29
1
-7/+5
*
bpo-45711: use exc_value instead of exc_type to determine if exc_info is vali...
Irit Katriel
2021-11-25
1
-4/+14
*
bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...
Mark Shannon
2021-11-23
1
-46/+66
*
bpo-45871: Refactor except matcher validation into a separate function so tha...
Irit Katriel
2021-11-22
1
-23/+33
*
bpo-45709: Fix tracing when exception is handled. (GH-29638)
Mark Shannon
2021-11-19
1
-4/+1
*
bpo-45609: Specialize STORE_SUBSCR (GH-29242)
Dennis Sweeney
2021-11-19
1
-5/+80
*
bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...
Mark Shannon
2021-11-18
1
-23/+38
*
bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)
Dong-hee Na
2021-11-18
1
-0/+35
*
bpo-45636: Simplify BINARY_OP (GH-29565)
Brandt Bucher
2021-11-16
1
-83/+34
*
bpo-45753: Make recursion checks more efficient. (GH-29524)
Mark Shannon
2021-11-16
1
-17/+24
*
bpo-45636: Remove the old %-formatting fast-path (GH-29532)
Brandt Bucher
2021-11-15
1
-8/+0
*
bpo-45711: assert that the type of exc_info is redundant (GH-29518)
Irit Katriel
2021-11-12
1
-0/+25
*
bpo-45636: Merge all numeric operators (GH-29482)
Brandt Bucher
2021-11-11
1
-453/+151
*
bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)
Irit Katriel
2021-11-10
1
-4/+1
*
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
[next]