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
/
specialize.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove trailing spaces (GH-31695)
Serhiy Storchaka
2022-03-05
1
-1/+1
*
bpo-46841: Fix BINARY_OP's handling of inline caches (GH-31671)
Brandt Bucher
2022-03-04
1
-1/+2
*
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
-64/+56
*
bpo-46841: Improve the failure stats for COMPARE_OP (GH-31663)
Brandt Bucher
2022-03-03
1
-0/+5
*
Move check for str-only keys in LOAD_GLOBAL specializations to specialization...
Mark Shannon
2022-03-03
1
-0/+8
*
bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
Mark Shannon
2022-03-01
1
-11/+19
*
bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)
Brandt Bucher
2022-03-01
1
-18/+18
*
bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)
Mark Shannon
2022-02-28
1
-12/+16
*
bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)
Brandt Bucher
2022-02-28
1
-12/+11
*
bpo-45316: Move private functions to internal C API (GH-31579)
Victor Stinner
2022-02-25
1
-1/+2
*
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher
2022-02-25
1
-44/+43
*
bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)
Mark Shannon
2022-02-24
1
-13/+53
*
bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...
Dennis Sweeney
2022-02-24
1
-0/+10
*
bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)
Brandt Bucher
2022-02-23
1
-19/+17
*
bpo-45885: Don't un-adapt `COMPARE_OP` when collecting stats (GH-31516)
Brandt Bucher
2022-02-23
1
-2/+8
*
bpo-46329: Fix test failure when `Py_STATS` is enabled (GH-31511)
Brandt Bucher
2022-02-23
1
-2/+1
*
Move call specializations from CALL to PRECALL. (GH-31496)
Mark Shannon
2022-02-22
1
-32/+72
*
bpo-46329: Change calling sequence (again) (GH-31373)
Mark Shannon
2022-02-18
1
-3/+2
*
bpo-46072: Add detailed failure stats for BINARY_OP (GH-31289)
Brandt Bucher
2022-02-16
1
-12/+103
*
bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)
Brandt Bucher
2022-02-16
1
-37/+57
*
Add pair counts to stats output and summary. (GH-31324)
Mark Shannon
2022-02-14
1
-5/+11
*
Include length in stats for UNPACK_SEQUENCE. (GH-31254)
Mark Shannon
2022-02-14
1
-6/+28
*
bpo-45490: Rename static inline functions (GH-31217)
Victor Stinner
2022-02-11
1
-1/+1
*
bpo-45923: Add `RESUME_QUICK` (GH-31244)
Brandt Bucher
2022-02-10
1
-0/+3
*
Gather stats for PRECALL_METHOD. (GH-31259)
Mark Shannon
2022-02-10
1
-0/+1
*
Add stats for PRECALL_FUNCTION. (GH-31250)
Mark Shannon
2022-02-10
1
-3/+29
*
bpo-46072: Output stats as markdown with collapsible sections. (GH-31228)
Mark Shannon
2022-02-09
1
-189/+197
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-15/+7
*
bpo-46072: Improve LOAD_METHOD stats (GH-31104)
Mark Shannon
2022-02-07
1
-3/+17
*
Add miss stats for specialized instructions. (GH-31108)
Mark Shannon
2022-02-04
1
-27/+34
*
Collect stats for UNPACK_SEQUENCE. (GH-31105)
Mark Shannon
2022-02-03
1
-1/+16
*
bpo-45885: Add more stats for COMPARE_OP in specialize.c (GH-31040)
Dennis Sweeney
2022-02-03
1
-2/+47
*
Add specialization stats for FOR_ITER. (GH-31079)
Mark Shannon
2022-02-02
1
-0/+68
*
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/+9
*
bpo-46329: Split calls into precall and call instructions. (GH-30855)
Mark Shannon
2022-01-28
1
-83/+131
*
bpo-46486: Fixed misspelled name DesciptorClassification
Kumar Aditya
2022-01-23
1
-8/+8
*
bpo-46417: Use _PyType_CAST() in Python directory (GH-30769)
Victor Stinner
2022-01-21
1
-2/+1
*
bpo-46409: Make generators in bytecode (GH-30633)
Mark Shannon
2022-01-20
1
-4/+0
*
bpo-46405: fix msvc compiler warnings (GH-30627)
Kumar Aditya
2022-01-17
1
-1/+1
*
bpo-45609: More specialization stats for STORE_SUBSCR (GH-30193)
Dennis Sweeney
2022-01-04
1
-3/+68
*
bpo-46072: Add top level stats struct (GH-30169)
Mark Shannon
2021-12-17
1
-47/+51
*
Better randomization of stats filenames. (GH-30145)
Mark Shannon
2021-12-16
1
-2/+14
*
bpo-45829: Check `__getitem__`'s version for overflow before specializing (GH...
Brandt Bucher
2021-12-16
1
-1/+1
*
bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...
Mark Shannon
2021-12-15
1
-25/+22
*
bpo-44525: Specialize for calls to type and other builtin classes with 1 argu...
Mark Shannon
2021-12-15
1
-2/+25
*
bpo-44525: Split calls into PRECALL and CALL (GH-30011)
Mark Shannon
2021-12-14
1
-20/+79
*
bpo-45510: Check both types when specializing subtraction (GH-29995)
Brandt Bucher
2021-12-09
1
-0/+4
[next]