COMMITS
/ Python/specialize.c February 25, 2022
B
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher committed
February 24, 2022
M
bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)
Mark Shannon committed
D
bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH-31484)
Dennis Sweeney committed
February 23, 2022
B
bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)
Brandt Bucher committed
B
bpo-45885: Don't un-adapt `COMPARE_OP` when collecting stats (GH-31516)
Brandt Bucher committed
B
bpo-46329: Fix test failure when `Py_STATS` is enabled (GH-31511)
Brandt Bucher committed
February 22, 2022
M
Move call specializations from CALL to PRECALL. (GH-31496)
Mark Shannon committed
February 18, 2022
M
bpo-46329: Change calling sequence (again) (GH-31373)
Mark Shannon committed
February 16, 2022
B
bpo-46072: Add detailed failure stats for BINARY_OP (GH-31289)
Brandt Bucher committed
B
bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)
Brandt Bucher committed
February 14, 2022
M
Add pair counts to stats output and summary. (GH-31324)
Mark Shannon committed
M
Include length in stats for UNPACK_SEQUENCE. (GH-31254)
Mark Shannon committed
February 11, 2022
V
bpo-45490: Rename static inline functions (GH-31217)
Victor Stinner committed
February 10, 2022
B
bpo-45923: Add `RESUME_QUICK` (GH-31244)
Brandt Bucher committed
M
Gather stats for PRECALL_METHOD. (GH-31259)
Mark Shannon committed
M
Add stats for PRECALL_FUNCTION. (GH-31250)
Mark Shannon committed
February 9, 2022
M
bpo-46072: Output stats as markdown with collapsible sections. (GH-31228)
Mark Shannon committed
February 8, 2022
February 7, 2022
M
bpo-46072: Improve LOAD_METHOD stats (GH-31104)
Mark Shannon committed
February 4, 2022
M
Add miss stats for specialized instructions. (GH-31108)
Mark Shannon committed
February 3, 2022
M
Collect stats for UNPACK_SEQUENCE. (GH-31105)
Mark Shannon committed
D
bpo-45885: Add more stats for COMPARE_OP in specialize.c (GH-31040)
Dennis Sweeney committed
February 2, 2022
M
Add specialization stats for FOR_ITER. (GH-31079)
Mark Shannon committed
M
bpo-46072: Add some frame stats. (GH-31060)
Mark Shannon committed
February 1, 2022
M
bpo-46072: Add some object layout and allocation stats (GH-31051)
Mark Shannon committed
January 28, 2022
M
bpo-46072: Add simple stats for Python calls. (GH-30989)
Mark Shannon committed
M
bpo-46329: Split calls into precall and call instructions. (GH-30855)
Mark Shannon committed
January 23, 2022
K
bpo-46486: Fixed misspelled name DesciptorClassification
Kumar Aditya committed
January 21, 2022
V
bpo-46417: Use _PyType_CAST() in Python directory (GH-30769)
Victor Stinner committed
January 20, 2022
M
bpo-46409: Make generators in bytecode (GH-30633)
Mark Shannon committed
January 17, 2022
K
bpo-46405: fix msvc compiler warnings (GH-30627)
Kumar Aditya committed
January 4, 2022
D
bpo-45609: More specialization stats for STORE_SUBSCR (GH-30193)
Dennis Sweeney committed
December 17, 2021
M
bpo-46072: Add top level stats struct (GH-30169)
Mark Shannon committed
December 16, 2021
M
Better randomization of stats filenames. (GH-30145)
Mark Shannon committed
B
bpo-45829: Check `__getitem__`'s version for overflow before specializing (GH-30129)
Brandt Bucher committed
December 15, 2021
M
bpo-46072: Add --with-pystats configure option to simplify gathering of VM stats (GH-30116)
Mark Shannon committed
M
December 14, 2021
M
bpo-44525: Split calls into PRECALL and CALL (GH-30011)
Mark Shannon committed
December 9, 2021
B
bpo-45510: Check both types when specializing subtraction (GH-29995)
Brandt Bucher committed
December 7, 2021
December 3, 2021
D
bpo-45885: Specialize COMPARE_OP (GH-29734)
Dennis Sweeney committed
November 23, 2021
November 19, 2021
D
bpo-45609: Specialize STORE_SUBSCR (GH-29242)
Dennis Sweeney committed
November 18, 2021
M
bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (GH-29592)
Mark Shannon committed
D
bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)
Dong-hee Na committed
November 15, 2021
B
bpo-45636: Remove the old %-formatting fast-path (GH-29532)
Brandt Bucher committed
November 11, 2021
B
bpo-45636: Merge all numeric operators (GH-29482)
Brandt Bucher committed
October 20, 2021
M
bpo-45527: Don't count cache hits, just misses. (GH-29092)
Mark Shannon committed
M
bpo-44525: Specialize simple Python calls. (GH-29033)
Mark Shannon committed
October 19, 2021
K
bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)
Ken Jin committed