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
*
gh-141367: Use CALL_LIST_APPEND instruction only for lists, not for list subc...
Mikhail Efimov
2025-11-14
1
-6/+11
*
gh-131253: free-threaded build support for pystats (gh-137189)
Neil Schemenauer
2025-11-03
1
-420/+6
*
gh-139525: Don't specialize functions which have a modified vectorcall (#139524)
Dino Viehland
2025-10-03
1
-0/+9
*
gh-138302: Specialize int ops only if ints are compact (GH-138347)
Tapeline
2025-09-01
1
-3/+3
*
gh-137238: Fix data race in `_Py_slot_tp_getattr_hook` (gh-137240)
Sam Gross
2025-08-05
1
-8/+1
*
gh-132815: Add support for JUMP_BACKWARD in specialization stats (#135606)
PuQing
2025-06-17
1
-0/+1
*
GH-132554: "Virtual" iterators (GH-132555)
Mark Shannon
2025-05-27
1
-37/+41
*
GH-131798: Split up and optimize CALL_ISINSTANCE (GH-133339)
Tomas R.
2025-05-08
1
-1/+1
*
Revert "gh-133395: add option for extension modules to specialize BINARY_OP/S...
Irit Katriel
2025-05-06
1
-31/+4
*
GH-131798: Split CALL_LEN into several uops (GH-133180)
Diego Russo
2025-05-05
1
-1/+1
*
gh-133395: add option for extension modules to specialize BINARY_OP/SUBSCR, a...
Irit Katriel
2025-05-05
1
-4/+31
*
gh-100239: specialize BINARY_OP/SUBSCR for list-slice (#132626)
Irit Katriel
2025-05-01
1
-0/+4
*
PyStats: Make sure that the `failure_kinds` array is big enough. (#133245)
Mark Shannon
2025-05-01
1
-1/+3
*
GH-132554: Add stats for GET_ITER (GH-132592)
Mark Shannon
2025-04-29
1
-0/+49
*
gh-132643: use atomic load for dict in specializer (#132653)
Kumar Aditya
2025-04-18
1
-1/+2
*
gh-132336: Mark a few "slow path" functions used by the interpreter loop as n...
mpage
2025-04-10
1
-14/+14
*
gh-100239: more stats for BINARY_OP/SUBSCR specialization (#132230)
Irit Katriel
2025-04-08
1
-0/+30
*
gh-100239: fix bug in comparison (#132093)
Irit Katriel
2025-04-04
1
-2/+2
*
gh-100239: more refined specialisation stats for BINARY_OP/SUBSCR (#132068)
Irit Katriel
2025-04-04
1
-0/+35
*
gh-130373: Avoid locking in _LOAD_ATTR_WITH_HINT (#130372)
Dino Viehland
2025-03-28
1
-0/+3
*
gh-130931: Add pycore_interpframe.h internal header (#131249)
Victor Stinner
2025-03-19
1
-1/+1
*
gh-131281: Add include for pystats builds (#131369)
Ken Jin
2025-03-17
1
-0/+1
*
GH-131238: More refactoring of core header files (GH-131351)
Mark Shannon
2025-03-17
1
-0/+2
*
gh-115999: Add free-threaded specialization for FOR_ITER (#128798)
T. Wouters
2025-03-12
1
-21/+32
*
gh-100239: replace BINARY_SUBSCR & family by BINARY_OP with oparg NB_SUBSCR (...
Irit Katriel
2025-02-07
1
-170/+128
*
GH-129715: Remove _DYNAMIC_EXIT (GH-129716)
Brandt Bucher
2025-02-07
1
-0/+1
*
GH-128842: Collect JIT memory stats (GH-128941)
Diego Russo
2025-02-02
1
-0/+8
*
GH-128872: Remove unused argument from _PyCode_Quicken (GH-128873)
Yan Yanchii
2025-02-02
1
-2/+1
*
gh-100239: specialize bitwise logical binary ops on ints (#128927)
Irit Katriel
2025-01-29
1
-0/+54
*
Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...
Sam Gross
2025-01-23
1
-76/+32
*
GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...
Mark Shannon
2025-01-20
1
-32/+76
*
gh-100239: Handle NaN and zero division in guards for `BINARY_OP_EXTEND` (#12...
Kirill Podoprigora
2025-01-19
1
-6/+24
*
gh-100239: specialize long tail of binary operations (#128722)
Irit Katriel
2025-01-16
1
-4/+105
*
gh-115999: Specialize `LOAD_ATTR` for instance and class receivers in free-th...
mpage
2025-01-14
1
-90/+139
*
GH-128685: Specialize (rather than quicken) LOAD_CONST into LOAD_CONST_[IM]MO...
Mark Shannon
2025-01-13
1
-9/+0
*
gh-115999: Add free-threaded specialization for COMPARE_OP (#126410)
T. Wouters
2025-01-07
1
-10/+7
*
gh-128262: Allow specialization of calls to classes with __slots__ (GH-128263)
Ken Jin
2024-12-31
1
-4/+0
*
gh-119786: Mention `InternalDocs/interpreter.md` instead of non-existing `ada...
Yan Yanchii
2024-12-30
1
-1/+1
*
gh-115999: Specialize `STORE_ATTR` in free-threaded builds. (gh-127838)
Neil Schemenauer
2024-12-19
1
-107/+164
*
gh-115999: Enable BINARY_SUBSCR_GETITEM for free-threaded build (gh-127737)
Donghee Na
2024-12-19
1
-16/+19
*
gh-115999: Specialize loading attributes from modules in free-threaded builds...
mpage
2024-12-13
1
-36/+56
*
gh-115999: Specialize `CALL_KW` in free-threaded builds (#127713)
mpage
2024-12-11
1
-13/+4
*
gh-125610: Fix `STORE_ATTR_INSTANCE_VALUE` specialization check (GH-125612)
Sam Gross
2024-12-06
1
-1/+4
*
gh-115999: Enable specialization of `CALL` instructions in free-threaded buil...
mpage
2024-12-03
1
-46/+66
*
gh-115999: Add free-threaded specialization for `SEND` (gh-127426)
Neil Schemenauer
2024-12-03
1
-11/+4
*
gh-115999: Specialize `LOAD_SUPER_ATTR` in free-threaded builds (gh-127128)
Neil Schemenauer
2024-12-03
1
-14/+5
*
gh-127518: Fix pystats build after #127169 (#127526)
Michael Droettboom
2024-12-02
1
-2/+3
*
GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...
Mark Shannon
2024-12-02
1
-0/+2
*
gh-115999: Add partial free-thread specialization for BINARY_SUBSCR (gh-127227)
Donghee Na
2024-12-02
1
-14/+11
*
gh-115999: Add free-threaded specialization for `STORE_SUBSCR` (#127169)
Sam Gross
2024-11-26
1
-62/+60
[next]