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-99257: Check the owner's type when specializing slots (GH-99258)
Brandt Bucher
2022-11-10
1
-0/+8
*
GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)
Brandt Bucher
2022-11-09
1
-101/+56
*
GH-96793: Specialize FOR_ITER for generators. (GH-98772)
Mark Shannon
2022-11-07
1
-1/+6
*
GH-98686: Quicken everything (GH-98687)
Brandt Bucher
2022-11-02
1
-11/+2
*
GH-96793: Change `FOR_ITER` to not pop the iterator on exhaustion. (GH-96801)
Mark Shannon
2022-10-27
1
-6/+2
*
GH-91049: Introduce set vectorcall field API for PyFunctionObject (GH-92257)
adphrost
2022-09-15
1
-0/+5
*
GH-90230: Fix warnings and failures with --enable-pystats (GH-96622)
Brandt Bucher
2022-09-09
1
-0/+2
*
GH-93911: Fix `LOAD_ATTR_PROPERTY` caches (GH-96519)
Brandt Bucher
2022-09-06
1
-5/+5
*
gh-93554: Conditional jump opcodes only jump forward (GH-96318)
Irit Katriel
2022-09-01
1
-11/+4
*
Remove dead code in _PyDict_GetItemHint and rename to _PyDict_LookupIndex (GH...
Matthias Görgens
2022-08-18
1
-9/+6
*
GH-93911: Specialize `LOAD_ATTR` for custom `__getattribute__` (GH-93988)
Ken Jin
2022-08-17
1
-19/+103
*
GH-95245: Store object values and dict pointers in single tagged pointer. (GH...
Mark Shannon
2022-08-01
1
-6/+6
*
GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)
Brandt Bucher
2022-07-22
1
-0/+3
*
GH-94822: Don't specialize when metaclasses are involved (GH-94892)
Brandt Bucher
2022-07-18
1
-6/+5
*
GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168)
Mark Shannon
2022-06-27
1
-1/+2
*
GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....
Mark Shannon
2022-06-21
1
-5/+19
*
GH-91432: Specialize FOR_ITER (GH-91713)
Dennis Sweeney
2022-06-21
1
-0/+31
*
gh-94021: Address unreachable code warning in specialize code (GH-94022)
Christian Heimes
2022-06-21
1
-1/+2
*
gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)
Ken Jin
2022-06-17
1
-6/+43
*
Fix BINARY_SUBSCR_GETITEM stats (GH-93903)
Ken Jin
2022-06-16
1
-1/+2
*
Rename 'LOAD_METHOD' specialization stat consts to 'ATTR'. (GH-93812)
Mark Shannon
2022-06-14
1
-17/+14
*
Remove LOAD_METHOD stats. (GH-93807)
Mark Shannon
2022-06-14
1
-1/+0
*
GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)
Ken Jin
2022-06-14
1
-81/+55
*
Add more FOR_ITER specialization stats (GH-32151)
Dennis Sweeney
2022-06-13
1
-2/+26
*
Shrink the LOAD_METHOD cache by one codeunit. (#93537)
Mark Shannon
2022-06-07
1
-6/+3
*
GH-93354: Use exponential backoff to avoid excessive specialization attempts....
Mark Shannon
2022-05-31
1
-22/+21
*
GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...
Mark Shannon
2022-05-27
1
-1/+4
*
gh-92777: Add LOAD_METHOD_LAZY_DICT (GH-92778)
Ken Jin
2022-05-25
1
-6/+15
*
GH-90690: Remove `PRECALL` instruction (GH-92925)
Mark Shannon
2022-05-19
1
-78/+58
*
Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)
Mark Shannon
2022-05-18
1
-0/+2
*
Improve object stats (#92845)
Mark Shannon
2022-05-16
1
-0/+2
*
GH-92239: Make sure that PEP 523 is supported, even when specializing first. ...
Mark Shannon
2022-05-04
1
-0/+6
*
Add more stats for freelist use and allocations. (GH-92211)
Mark Shannon
2022-05-03
1
-0/+5
*
gh-91719: Add pycore_opcode.h internal header file (#91906)
Victor Stinner
2022-04-25
1
-1/+1
*
bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)
Irit Katriel
2022-04-11
1
-3/+11
*
bpo-47009: Let PRECALL_NO_KW_LIST_APPEND do its own POP_TOP (GH-32239)
Dennis Sweeney
2022-04-05
1
-1/+4
*
bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...
Irit Katriel
2022-03-31
1
-2/+2
*
Merge deoptimization blocks in interpreter (GH-32155)
Mark Shannon
2022-03-30
1
-3/+3
*
bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)
Kumar Aditya
2022-03-27
1
-0/+4
*
bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318)
Dennis Sweeney
2022-03-25
1
-2/+4
*
bpo-46841: Quicken code in-place (GH-31888)
Brandt Bucher
2022-03-21
1
-83/+17
*
bpo-46841: Add a _Py_SET_OPCODE macro (GH-31780)
Brandt Bucher
2022-03-12
1
-80/+65
*
bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)
Brandt Bucher
2022-03-08
1
-7/+7
*
bpo-46841: Use inline caching for calls (GH-31709)
Brandt Bucher
2022-03-07
1
-194/+69
*
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
[next]