summaryrefslogtreecommitdiffstats
path: root/Python/specialize.c
Commit message (Expand)AuthorAgeFilesLines
* gh-116381: Remove bad specializations, add fail stats (GH-116464)Ken Jin2024-03-071-14/+26
* gh-116381: Specialize CONTAINS_OP (GH-116385)Ken Jin2024-03-061-0/+38
* gh-115168: Add pystats counter for invalidated executors (GH-115169)Michael Droettboom2024-02-261-0/+1
* Tier 2 cleanups and tweaks (#115534)Guido van Rossum2024-02-201-8/+4
* gh-114058: Foundations of the Tier2 redundancy eliminator (GH-115085)Ken Jin2024-02-131-0/+5
* GH-113710: Fix updating of dict version tag and add watched dict stats (GH-11...Mark Shannon2024-02-121-0/+2
* GH-114806. Don't specialize calls to classes with metaclasses. (GH-114870)Mark Shannon2024-02-011-0/+5
* gh-114312: Collect stats for unlikely events (GH-114493)Michael Droettboom2024-01-251-0/+11
* gh-89811: Check for valid tp_version_tag in specializer (GH-113558)Peter Lazorchak2024-01-111-1/+29
* GH-113486: Do not emit spurious PY_UNWIND events for optimized calls to class...Mark Shannon2024-01-051-1/+1
* GH-111485: Generate instruction and uop metadata (GH-113287)Mark Shannon2023-12-201-0/+1
* gh-112320: Implement on-trace confidence tracking for branches (#112321)Guido van Rossum2023-12-121-0/+1
* GH-111772: Specialize slot loads and stores for `_Py_T_OBJECT` (GH-111773)Mark Shannon2023-11-061-3/+3
* gh-109329: Count tier2 opcode misses (#110561)Michael Droettboom2023-10-311-0/+3
* gh-110481: Implement biased reference counting (gh-110764)Sam Gross2023-10-301-1/+1
* gh-111354: define names for RESUME oparg values (#111365)Irit Katriel2023-10-261-1/+2
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-261-2/+1
* GH-111213: Fix a few broken stats (GH-111216)Mark Shannon2023-10-261-1/+1
* gh-109329: Add stat for "trace too short" (GH-110402)Michael Droettboom2023-10-051-0/+1
* GH-109329: Add tier 2 stats (GH-109913)Michael Droettboom2023-10-041-4/+50
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-56/+26
* GH-109330: Dump and compare stats using opcode names, not numbers (GH-109335)Michael Droettboom2023-09-121-8/+8
* gh-109039: Branch prediction for Tier 2 interpreter (#109038)Guido van Rossum2023-09-111-3/+17
* gh-108753: _Py_PrintSpecializationStats() uses Py_hexdigits (#109040)Victor Stinner2023-09-071-2/+2
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-061-32/+66
* gh-108765: Cleanup #include in Python/*.c files (#108977)Victor Stinner2023-09-061-3/+3
* gh-108488: Initialize JUMP_BACKWARD cache to 0, not 17 (#108591)Guido van Rossum2023-08-291-1/+3
* gh-107265: Revert "Ensure _PyCode_Quicken does not handle ENTER_EXECUTOR" (#1...Dong-hee Na2023-08-251-2/+0
* gh-107265: Ensure _PyCode_Quicken does not handle ENTER_EXECUTOR (gh-108460)Dong-hee Na2023-08-241-0/+2
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-231-1/+4
* GH-106485: Dematerialize instance dictionaries when possible (GH-106539)Brandt Bucher2023-08-091-5/+14
* GH-105848: Simplify the arrangement of CALL's stack (GH-107788)Brandt Bucher2023-08-091-0/+8
* GH-107596: Specialize str[int] (GH-107597)Brandt Bucher2023-08-081-11/+14
* Add some GC stats to Py_STATS (GH-107581)Mark Shannon2023-08-041-1/+17
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-6/+6
* gh-106320: Move _PyMethodWrapper_Type to internal C API (#107064)Victor Stinner2023-07-221-2/+2
* GH-100288: Specialize LOAD_ATTR for simple class attributes. (#105990)Mark Shannon2023-07-101-13/+22
* gh-106320: Fix specialize.c compilation by including pycore_pylifecycle.h (#1...Guido van Rossum2023-07-041-0/+1
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-291-3/+110
* gh-104584: Baby steps towards generating and executing traces (#105924)Guido van Rossum2023-06-271-0/+4
* GH-91095: Specialize calls to normal Python classes. (GH-99331)Mark Shannon2023-06-221-5/+94
* GH-105840: Fix assertion failures when specializing calls with too many __def...Brandt Bucher2023-06-161-2/+2
* GH-105229: Remove remaining two-codeunit superinstructions (GH-105326)Mark Shannon2023-06-081-10/+0
* GH-105229: Replace some superinstructions with single instruction equivalent....Mark Shannon2023-06-051-11/+1
* GH-104405: Add missing PEP 523 checks (GH-104406)Brandt Bucher2023-05-121-0/+22
* gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization (#104270)Carl Meyer2023-05-111-28/+5
* GH-102181: Improve specialization stats for SEND (GH-102182)penguin_wwy2023-05-101-41/+45
* gh-104184: fix building --with-pydebug --enable-pystats (#104217)Carl Meyer2023-05-091-1/+1
* GH-103082: Code cleanup in instrumentation code (#103474)Mark Shannon2023-04-291-1/+1
* gh-103978: avoid using 'class' as an identifier (#103979)Carl Meyer2023-04-281-3/+3