summaryrefslogtreecommitdiffstats
path: root/Python/optimizer_bytecodes.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* GH-115419: Tidy up tier 2 optimizer. Merge peephole pass into main pass (GH-1...Mark Shannon2024-04-181-5/+78
* gh-117176: Fix compiler warning in Python/optimizer_bytecodes.c (GH-117199)Kirill Podoprigora2024-03-241-1/+1
* gh-117045: Add code object to function version cache (#117028)Guido van Rossum2024-03-211-8/+19
* GH-117066: Tier 2 optimizer: Don't throw away good traces if we can't optimiz...Mark Shannon2024-03-201-1/+3
* Cleanup tier2 debug output (#116920)Guido van Rossum2024-03-181-0/+1
* gh-115419: Change default sym to not_null (GH-116562)Ken Jin2024-03-131-1/+8
* gh-116420: Fix unused var compilation warnings (GH-116466)Ken Jin2024-03-071-0/+12
* GH-115687: Most comparisons create Booleans, so propagate that information (G...Mark Shannon2024-03-061-0/+29
* GH-115819: Eliminate Boolean guards when value is known (GH-116355)Mark Shannon2024-03-051-0/+41
* GH-115685: Optimize `TO_BOOL` and variants based on truthiness of input. (GH-...Mark Shannon2024-03-051-28/+45
* gh-115480: Type propagate _BINARY_OP_ADD_UNICODE (GH-115710)Ken Jin2024-03-011-0/+16
* gh-115685: Type/values propagate for TO_BOOL in tier 2 (GH-115686)Ken Jin2024-02-291-0/+61
* gh-116088: Insert bottom checks after all sym_set_...() calls (#116089)Guido van Rossum2024-02-291-9/+27
* gh-115859: Re-enable T2 optimizer pass by default (#116062)Guido van Rossum2024-02-281-9/+34
* gh-115816: Improve internal symbols API in optimizer (#116028)Guido van Rossum2024-02-281-0/+2
* GH-115816: Assorted naming and formatting changes to improve maintainability....Mark Shannon2024-02-271-98/+115
* GH-115816: Make tier2 optimizer symbols testable, and add a few tests. (GH-11...Mark Shannon2024-02-271-85/+85
* Rename tier 2 redundancy eliminator to optimizer (#115888)Guido van Rossum2024-02-261-0/+409