summaryrefslogtreecommitdiffstats
path: root/Python/specialize.c
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-89811: Check for valid tp_version_tag in specializer (GH-115045)Peter Lazorchak2024-02-061-0/+28
* [3.11] GH-105840: Fix assertion failures when specializing calls with too man...Miss Islington (bot)2023-06-161-2/+2
* [3.11] GH-104405: Add missing PEP 523 checks (GH-104441)Brandt Bucher2023-05-121-0/+4
* [3.11] GH-99257: Check the owner's type when specializing slots (GH-99324)Miss Islington (bot)2022-11-101-0/+8
* [3.11] GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121) ...Brandt Bucher2022-07-221-0/+3
* [3.11] GH-94822: Don't specialize when metaclasses are involved (GH-94892) (G...Brandt Bucher2022-07-181-6/+5
* [3.11] GH-93354: Use exponential backoff to avoid excessive specialization at...Mark Shannon2022-06-301-24/+23
* gh-94021: Address unreachable code warning in specialize code (GH-94022)Miss Islington (bot)2022-06-211-1/+2
* GH-92239: Make sure that PEP 523 is supported, even when specializing first. ...Mark Shannon2022-05-041-0/+6
* Add more stats for freelist use and allocations. (GH-92211)Mark Shannon2022-05-031-0/+5
* gh-91719: Add pycore_opcode.h internal header file (#91906)Victor Stinner2022-04-251-1/+1
* bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)Irit Katriel2022-04-111-3/+11
* bpo-47009: Let PRECALL_NO_KW_LIST_APPEND do its own POP_TOP (GH-32239)Dennis Sweeney2022-04-051-1/+4
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-311-2/+2
* Merge deoptimization blocks in interpreter (GH-32155)Mark Shannon2022-03-301-3/+3
* bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)Kumar Aditya2022-03-271-0/+4
* bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318)Dennis Sweeney2022-03-251-2/+4
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-211-83/+17
* bpo-46841: Add a _Py_SET_OPCODE macro (GH-31780)Brandt Bucher2022-03-121-80/+65
* bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)Brandt Bucher2022-03-081-7/+7
* bpo-46841: Use inline caching for calls (GH-31709)Brandt Bucher2022-03-071-194/+69
* Remove trailing spaces (GH-31695)Serhiy Storchaka2022-03-051-1/+1
* bpo-46841: Fix BINARY_OP's handling of inline caches (GH-31671)Brandt Bucher2022-03-041-1/+2
* bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)Mark Shannon2022-03-041-0/+1
* bpo-46841: Use inline caching for attribute accesses (GH-31640)Brandt Bucher2022-03-031-64/+56
* bpo-46841: Improve the failure stats for COMPARE_OP (GH-31663)Brandt Bucher2022-03-031-0/+5
* Move check for str-only keys in LOAD_GLOBAL specializations to specialization...Mark Shannon2022-03-031-0/+8
* bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)Mark Shannon2022-03-011-11/+19
* bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)Brandt Bucher2022-03-011-18/+18
* bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)Mark Shannon2022-02-281-12/+16
* bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)Brandt Bucher2022-02-281-12/+11
* bpo-45316: Move private functions to internal C API (GH-31579)Victor Stinner2022-02-251-1/+2
* bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)Brandt Bucher2022-02-251-44/+43
* bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)Mark Shannon2022-02-241-13/+53
* bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...Dennis Sweeney2022-02-241-0/+10
* bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)Brandt Bucher2022-02-231-19/+17
* bpo-45885: Don't un-adapt `COMPARE_OP` when collecting stats (GH-31516)Brandt Bucher2022-02-231-2/+8
* bpo-46329: Fix test failure when `Py_STATS` is enabled (GH-31511)Brandt Bucher2022-02-231-2/+1
* Move call specializations from CALL to PRECALL. (GH-31496)Mark Shannon2022-02-221-32/+72
* bpo-46329: Change calling sequence (again) (GH-31373)Mark Shannon2022-02-181-3/+2
* bpo-46072: Add detailed failure stats for BINARY_OP (GH-31289)Brandt Bucher2022-02-161-12/+103
* bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)Brandt Bucher2022-02-161-37/+57
* Add pair counts to stats output and summary. (GH-31324)Mark Shannon2022-02-141-5/+11
* Include length in stats for UNPACK_SEQUENCE. (GH-31254)Mark Shannon2022-02-141-6/+28
* bpo-45490: Rename static inline functions (GH-31217)Victor Stinner2022-02-111-1/+1
* bpo-45923: Add `RESUME_QUICK` (GH-31244)Brandt Bucher2022-02-101-0/+3
* Gather stats for PRECALL_METHOD. (GH-31259)Mark Shannon2022-02-101-0/+1
* Add stats for PRECALL_FUNCTION. (GH-31250)Mark Shannon2022-02-101-3/+29
* bpo-46072: Output stats as markdown with collapsible sections. (GH-31228)Mark Shannon2022-02-091-189/+197
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-15/+7