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-46940: Don't override existing AttributeError suggestion information (GH-...
Pablo Galindo Salgado
2022-03-07
1
-3/+6
*
bpo-46841: Fix BINARY_OP's handling of inline caches (GH-31671)
Brandt Bucher
2022-03-04
1
-2/+3
*
bpo-46841: Fix error message hacks in `GET_AWAITABLE` (GH-31664)
Brandt Bucher
2022-03-04
1
-11/+5
*
bpo-46841: Use inline caching for attribute accesses (GH-31640)
Brandt Bucher
2022-03-03
1
-166/+102
*
Move check for str-only keys in LOAD_GLOBAL specializations to specialization...
Mark Shannon
2022-03-03
1
-15/+6
*
bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)
Inada Naoki
2022-03-01
1
-40/+53
*
bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
Mark Shannon
2022-03-01
1
-13/+19
*
bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)
Brandt Bucher
2022-03-01
1
-15/+18
*
bpo-45431: Rename CFrame to _PyCFrame in the C API (GH-31584)
Victor Stinner
2022-02-28
1
-3/+3
*
bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)
Mark Shannon
2022-02-28
1
-18/+20
*
bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)
Brandt Bucher
2022-02-28
1
-14/+15
*
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner
2022-02-25
1
-41/+41
*
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher
2022-02-25
1
-6/+34
*
bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)
Mark Shannon
2022-02-24
1
-2/+34
*
bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...
Dennis Sweeney
2022-02-24
1
-3/+77
*
bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)
Brandt Bucher
2022-02-23
1
-23/+16
*
Fix reporting of specialization stats. (GH-31503)
Mark Shannon
2022-02-22
1
-0/+2
*
Move call specializations from CALL to PRECALL. (GH-31496)
Mark Shannon
2022-02-22
1
-75/+132
*
bpo-46329: Streamline calling sequence a bit. (GH-31465)
Mark Shannon
2022-02-21
1
-118/+151
*
bpo-46329: Change calling sequence (again) (GH-31373)
Mark Shannon
2022-02-18
1
-21/+11
*
bpo-46709: check eval breaker in specialized `CALL` opcodes (GH-31404)
Nikita Sobolev
2022-02-18
1
-0/+9
*
bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)
Brandt Bucher
2022-02-16
1
-33/+66
*
Include length in stats for UNPACK_SEQUENCE. (GH-31254)
Mark Shannon
2022-02-14
1
-2/+2
*
bpo-45923: Add `RESUME_QUICK` (GH-31244)
Brandt Bucher
2022-02-10
1
-7/+9
*
Gather stats for PRECALL_METHOD. (GH-31259)
Mark Shannon
2022-02-10
1
-2/+13
*
bpo-46532: Reduce number of memory writes to update call_shape.kwnames. (GH-3...
Mark Shannon
2022-02-10
1
-7/+15
*
Fix sys.getdxp() when configured with --enable-pystats. (GH-31251)
Mark Shannon
2022-02-10
1
-1/+17
*
Add stats for PRECALL_FUNCTION. (GH-31250)
Mark Shannon
2022-02-10
1
-0/+5
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-56/+34
*
bpo-46675: Allow object value arrays and split key dictionaries larger than 1...
Mark Shannon
2022-02-08
1
-3/+2
*
bpo-46072: Merge dxpairs into py_stats. (GH-31197)
Mark Shannon
2022-02-07
1
-60/+17
*
bpo-46670: Remove unused macros in ceval.c (GH-31196)
Victor Stinner
2022-02-07
1
-7/+2
*
Add miss stats for specialized instructions. (GH-31108)
Mark Shannon
2022-02-04
1
-0/+1
*
Collect stats for UNPACK_SEQUENCE. (GH-31105)
Mark Shannon
2022-02-03
1
-0/+6
*
Pass reference to func, as well as args, when pushing frame. (GH-31100)
Mark Shannon
2022-02-03
1
-5/+5
*
Add specialization stats for FOR_ITER. (GH-31079)
Mark Shannon
2022-02-02
1
-0/+5
*
bpo-46072: Add some frame stats. (GH-31060)
Mark Shannon
2022-02-02
1
-1/+4
*
fFx refleak in isinstance error path (GH-31005)
Ken Jin
2022-01-29
1
-0/+1
*
bpo-46072: Add simple stats for Python calls. (GH-30989)
Mark Shannon
2022-01-28
1
-0/+4
*
bpo-46329: Split calls into precall and call instructions. (GH-30855)
Mark Shannon
2022-01-28
1
-190/+325
*
bpo-46528: Simplify the VM's stack manipulations (GH-30902)
Brandt Bucher
2022-01-26
1
-59/+9
*
Use existing unbound_local_error label in DELETE_FAST opcode (GH-30882)
Kumar Aditya
2022-01-26
1
-6/+1
*
bpo-46420: Use NOTRACE_DISPATCH() in specialized opcodes (GH-30652)
Dennis Sweeney
2022-01-25
1
-26/+43
*
bpo-43683: Streamline YIELD_VALUE and SEND (GH-30723)
Mark Shannon
2022-01-24
1
-21/+14
*
bpo-46409: Make generators in bytecode (GH-30633)
Mark Shannon
2022-01-20
1
-107/+88
*
bpo-45953: Statically initialize all the non-object PyInterpreterState fields...
Eric Snow
2022-01-14
1
-2/+0
*
bpo-45953: Statically initialize all the PyThreadState fields we can. (gh-30590)
Eric Snow
2022-01-14
1
-4/+0
*
bpo-45953: Statically allocate the main interpreter (and initial thread state...
Eric Snow
2022-01-12
1
-1/+1
*
bpo-46347: Yet another fix in the erorr path of PyEval_EvalCodeEx (#30554)
Yury Selivanov
2022-01-12
1
-1/+0
*
bpo-46347: Fix PyEval_EvalCodeEx to correctly cleanup in error paths (#30551)
Yury Selivanov
2022-01-11
1
-13/+9
[next]