summaryrefslogtreecommitdiffstats
path: root/Python/optimizer_bytecodes.c
Commit message (Expand)AuthorAgeFilesLines
* GH-131798: Narrow the result of _CONTAINS_OP_SET to bool in the JIT (GH-132057)Tomas R.2025-04-051-0/+4
* GH-131498: Cases generator: Parse down to C statement level. (GH-131948)Mark Shannon2025-04-021-6/+12
* GH-131798: Allow the JIT to remove more int/float/str guards (GH-131800)Brandt Bucher2025-04-011-36/+25
* gh-130704: Strength reduce `LOAD_FAST{_LOAD_FAST}` (#130708)mpage2025-04-011-0/+4
* GH-131798: Remove type checks for _TO_BOOL_STR (GH-131816)Amit Lavon2025-03-301-1/+7
* GH-130415: Remove redundant sym_matches_type calls in the JIT optimizer (GH-1...Brandt Bucher2025-03-271-24/+13
* GH-131729: Code-gen better liveness analysis (GH-131732)Mark Shannon2025-03-261-1/+3
* GH-130415: Optimize constant comparison in JIT builds (GH-131489)Savannah Ostrowski2025-03-211-1/+19
* GH-131498: Remove conditional stack effects (GH-131499)Mark Shannon2025-03-201-5/+9
* GH-130903: typo in optimizer DSL for _GUARD_BOTH_UNICODE (#130904)Jamie Phan2025-03-061-1/+1
* GH-130415: Narrow str to "" based on boolean tests (GH-130476)Amit Lavon2025-03-041-1/+1
* GH-130415: Narrow int to 0 based on boolean tests (GH-130772)Klaus1172025-03-041-1/+1
* GH-130415: Use boolean guards to narrow types to values in the JIT (GH-130659)Brandt Bucher2025-03-021-53/+62
* GH-130296: Avoid stack transients in four instructions. (GH-130310)Mark Shannon2025-02-281-45/+20
* gh-100239: replace BINARY_SUBSCR & family by BINARY_OP with oparg NB_SUBSCR (...Irit Katriel2025-02-071-1/+1
* GH-129709: Clean up tier two (GH-129710)Brandt Bucher2025-02-071-44/+1
* GH-128682: Make `PyStackRef_CLOSE` escaping. (GH-129404)Mark Shannon2025-02-031-7/+8
* GH-128914: Remove all but one conditional stack effects (GH-129226)Mark Shannon2025-01-271-25/+18
* Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...Sam Gross2025-01-231-15/+15
* GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...Mark Shannon2025-01-201-15/+15
* GH-128939: Refactor JIT optimize structs (GH-128940)Mark Shannon2025-01-201-16/+34
* gh-115999: Specialize `LOAD_ATTR` for instance and class receivers in free-th...mpage2025-01-141-1/+7
* GH-128685: Specialize (rather than quicken) LOAD_CONST into LOAD_CONST_[IM]MO...Mark Shannon2025-01-131-0/+7
* GH-127809: Fix the JIT's understanding of ** (GH-127844)Brandt Bucher2025-01-081-12/+45
* gh-128195: Add `_REPLACE_WITH_TRUE` to the tier2 optimizer (GH-128203)Yan Yanchii2024-12-231-0/+4
* gh-115999: Enable BINARY_SUBSCR_GETITEM for free-threaded build (gh-127737)Donghee Na2024-12-191-1/+2
* gh-115999: Specialize loading attributes from modules in free-threaded builds...mpage2024-12-131-3/+7
* gh-120619: Strength reduce function guards, support 2-operand uop forms (GH-1...Ken Jin2024-11-091-2/+21
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-291-0/+11
* GH-125912: Teach the JIT's optimizer about _BINARY_OP_INPLACE_ADD_UNICODE (GH...Brandt Bucher2024-10-281-0/+18
* gh-115999: Refactor `LOAD_GLOBAL` specializations to avoid reloading {globals...mpage2024-10-091-0/+10
* GH-119866: Spill the stack around escaping calls. (GH-124392)Mark Shannon2024-10-071-9/+11
* gh-120619: Optimize through `_Py_FRAME_GENERAL` (GH-124518)Ken Jin2024-10-021-23/+16
* GH-115776: Allow any fixed sized object to have inline values (GH-123192)Mark Shannon2024-08-211-2/+2
* GH-118093: Make `CALL_ALLOC_AND_ENTER_INIT` suitable for tier 2. (GH-123140)Mark Shannon2024-08-201-1/+18
* GH-118093: Specialize `CALL_KW` (GH-123006)Mark Shannon2024-08-161-0/+9
* GH-122869: Add missing tier two optimizer cases (GH-122936)Mark Shannon2024-08-121-0/+14
* Manually override bytecode definition in optimizer, to avoid build error (GH-...Mark Shannon2024-07-261-0/+8
* GH-122294: Burn in the addresses of side exits (GH-122295)Brandt Bucher2024-07-261-1/+2
* GH-118093: Add tier two support to several instructions (GH-121884)Brandt Bucher2024-07-181-0/+5
* gh-120437: Fix `_CHECK_STACK_SPACE` optimization problems introduced in gh-11...Nadeshiko Manju2024-06-191-1/+0
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-181-1/+6
* GH-120619: Clean up `RETURN_VALUE` instruction (GH-120624)Mark Shannon2024-06-171-1/+1
* gh-119258: Eliminate Type Guards in Tier 2 Optimizer with Watcher (GH-119365)Saul Shanabrook2024-06-081-8/+29
* GH-119476: Split _CHECK_FUNCTION_VERSION out of _CHECK_FUNCTION_EXACT_ARGS (G...Brandt Bucher2024-05-281-2/+1
* GH-118910: Less boilerplate in the tier 2 optimizer (#118913)Mark Shannon2024-05-101-142/+92
* GH-118095: Use broader specializations of CALL in tier 1, for better tier 2 s...Mark Shannon2024-05-041-1/+10
* GH-118095: Add tier 2 support for YIELD_VALUE (GH-118380)Mark Shannon2024-04-301-0/+9
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-251-0/+22
* GH-115480: Reduce guard strength for binary ops when type of one operand is k...Mark Shannon2024-04-221-7/+44