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
/
Include
/
internal
/
pycore_code.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-90997: Improve inline cache performance for MSVC (GH-96781)
Brandt Bucher
2022-09-15
1
-74/+19
*
GH-93911: Specialize `LOAD_ATTR` for custom `__getattribute__` (GH-93988)
Ken Jin
2022-08-17
1
-0/+1
*
GH-94739: Mark stacks of exception handling blocks for setting frame.f_lineno...
Mark Shannon
2022-07-18
1
-0/+13
*
GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....
Mark Shannon
2022-06-21
1
-8/+8
*
GH-91432: Specialize FOR_ITER (GH-91713)
Dennis Sweeney
2022-06-21
1
-0/+7
*
gh-87347: Add parenthesis around macro arguments (#93915)
Victor Stinner
2022-06-20
1
-5/+5
*
GH-93516: Speedup line number checks when tracing. (GH-93763)
Mark Shannon
2022-06-20
1
-0/+29
*
GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)
Ken Jin
2022-06-14
1
-7/+5
*
Shrink the LOAD_METHOD cache by one codeunit. (#93537)
Mark Shannon
2022-06-07
1
-1/+0
*
GH-93354: Use exponential backoff to avoid excessive specialization attempts....
Mark Shannon
2022-05-31
1
-3/+44
*
GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...
Mark Shannon
2022-05-27
1
-0/+5
*
GH-90690: Remove `PRECALL` instruction (GH-92925)
Mark Shannon
2022-05-19
1
-8/+0
*
Improve object stats (#92845)
Mark Shannon
2022-05-16
1
-49/+0
*
Add more stats for freelist use and allocations. (GH-92211)
Mark Shannon
2022-05-03
1
-0/+8
*
gh-89479: Export _Py_GetSpecializationStats() internal function (#92011)
Victor Stinner
2022-04-28
1
-2/+3
*
GH-88116: Use a compact format to represent end line and column offsets. (GH-...
Mark Shannon
2022-04-21
1
-14/+35
*
Merge deoptimization blocks in interpreter (GH-32155)
Mark Shannon
2022-03-30
1
-0/+2
*
bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318)
Dennis Sweeney
2022-03-25
1
-1/+1
*
bpo-46841: Quicken code in-place (GH-31888)
Brandt Bucher
2022-03-21
1
-12/+5
*
bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)
Brandt Bucher
2022-03-08
1
-0/+6
*
bpo-46841: Use inline caching for calls (GH-31709)
Brandt Bucher
2022-03-07
1
-115/+26
*
bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)
Mark Shannon
2022-03-04
1
-0/+1
*
bpo-46841: Use inline caching for attribute accesses (GH-31640)
Brandt Bucher
2022-03-03
1
-25/+112
*
bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
Mark Shannon
2022-03-01
1
-1/+10
*
bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)
Brandt Bucher
2022-03-01
1
-4/+12
*
bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)
Mark Shannon
2022-02-28
1
-9/+48
*
bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)
Brandt Bucher
2022-02-28
1
-1/+8
*
Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)
Kumar Aditya
2022-02-26
1
-1/+1
*
bpo-45316: Move private PyCode C API to internal C API (GH-31576)
Victor Stinner
2022-02-25
1
-18/+44
*
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher
2022-02-25
1
-1/+8
*
bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)
Brandt Bucher
2022-02-23
1
-1/+1
*
Move call specializations from CALL to PRECALL. (GH-31496)
Mark Shannon
2022-02-22
1
-1/+3
*
bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)
Brandt Bucher
2022-02-16
1
-0/+2
*
bpo-46430: Intern strings in deep-frozen modules (GH-30683)
Kumar Aditya
2022-02-09
1
-0/+2
*
bpo-46072: Add some frame stats. (GH-31060)
Mark Shannon
2022-02-02
1
-0/+2
*
bpo-46072: Add some object layout and allocation stats (GH-31051)
Mark Shannon
2022-02-01
1
-0/+12
*
bpo-46072: Add simple stats for Python calls. (GH-30989)
Mark Shannon
2022-01-28
1
-0/+8
*
bpo-46329: Split calls into precall and call instructions. (GH-30855)
Mark Shannon
2022-01-28
1
-2/+3
*
bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965)
Christian Heimes
2022-01-27
1
-1/+1
*
bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)
Kumar Aditya
2022-01-27
1
-0/+2
*
bpo-46072: Add top level stats struct (GH-30169)
Mark Shannon
2021-12-17
1
-8/+21
*
bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...
Mark Shannon
2021-12-15
1
-15/+2
*
bpo-44525: Split calls into PRECALL and CALL (GH-30011)
Mark Shannon
2021-12-14
1
-2/+2
*
bpo-45885: Specialize COMPARE_OP (GH-29734)
Dennis Sweeney
2021-12-03
1
-0/+2
*
bpo-45753: Interpreter internal tweaks (GH-29575)
Mark Shannon
2021-12-01
1
-11/+12
*
bpo-45609: Specialize STORE_SUBSCR (GH-29242)
Dennis Sweeney
2021-11-19
1
-0/+1
*
bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...
Mark Shannon
2021-11-18
1
-1/+2
*
bpo-45636: Merge all numeric operators (GH-29482)
Brandt Bucher
2021-11-11
1
-2/+2
*
bpo-45527: Don't count cache hits, just misses. (GH-29092)
Mark Shannon
2021-10-20
1
-47/+0
*
bpo-44525: Specialize simple Python calls. (GH-29033)
Mark Shannon
2021-10-20
1
-0/+7
[next]