summaryrefslogtreecommitdiffstats
path: root/Python/optimizer_cases.c.h
Commit message (Expand)AuthorAgeFilesLines
* gh-115999: Specialize loading attributes from modules in free-threaded builds...mpage2024-12-131-11/+36
* gh-120619: Strength reduce function guards, support 2-operand uop forms (GH-1...Ken Jin2024-11-091-22/+47
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-041-0/+2
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-291-0/+21
* GH-125912: Teach the JIT's optimizer about _BINARY_OP_INPLACE_ADD_UNICODE (GH...Brandt Bucher2024-10-281-0/+19
* gh-115999: Refactor `LOAD_GLOBAL` specializations to avoid reloading {globals...mpage2024-10-091-9/+51
* GH-119866: Spill the stack around escaping calls. (GH-124392)Mark Shannon2024-10-071-57/+119
* gh-120619: Optimize through `_Py_FRAME_GENERAL` (GH-124518)Ken Jin2024-10-021-24/+14
* GH-123516: Improve JIT memory consumption by invalidating cold executors (GH-...Savannah Ostrowski2024-09-271-0/+4
* gh-121459: Deferred LOAD_GLOBAL (GH-123128)Ken Jin2024-09-131-3/+5
* GH-123996: Explicitly mark 'self_or_null' as an array of size 1 to ensure tha...Mark Shannon2024-09-121-6/+10
* 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/+40
* GH-118093: Specialize `CALL_KW` (GH-123006)Mark Shannon2024-08-161-0/+56
* GH-120024: Remove `CHECK_EVAL_BREAKER` macro. (GH-122968)Mark Shannon2024-08-141-8/+14
* GH-122869: Add missing tier two optimizer cases (GH-122936)Mark Shannon2024-08-121-4/+17
* GH-118095: Add tier two support for BINARY_SUBSCR_GETITEM (GH-120793)Mark Shannon2024-08-011-1/+12
* GH-122155: Track local variables between pops and pushes in cases generator (...Mark Shannon2024-08-011-1/+2
* Manually override bytecode definition in optimizer, to avoid build error (GH-...Mark Shannon2024-07-261-4/+9
* GH-122294: Burn in the addresses of side exits (GH-122295)Brandt Bucher2024-07-261-0/+2
* GH-122029: Break INSTRUMENTED_CALL into micro-ops, so that its behavior is co...Mark Shannon2024-07-261-2/+16
* GH-121131: Clean up and fix some instrumented instructions. (GH-121132)Mark Shannon2024-07-261-6/+2
* GH-118093: Add tier two support for BINARY_OP_INPLACE_ADD_UNICODE (GH-122253)Brandt Bucher2024-07-251-0/+6
* GH-118093: Add tier two support for LOAD_ATTR_PROPERTY (GH-122283)Brandt Bucher2024-07-251-1/+6
* GH-122160: Remove BUILD_CONST_KEY_MAP opcode. (GH-122164)Mark Shannon2024-07-251-9/+0
* GH-118093: Add tier two support to several instructions (GH-121884)Brandt Bucher2024-07-181-3/+45
* GH-116017: Get rid of _COLD_EXITs (GH-120960)Brandt Bucher2024-07-011-4/+0
* gh-117139: Convert the evaluation stack to stack refs (#118450)Ken Jin2024-06-261-9/+9
* GH-120982: Add stack check assertions to generated interpreter code (GH-120992)Mark Shannon2024-06-251-0/+128
* 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-3/+13
* 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/+25
* gh-119821: Support non-dict globals in LOAD_FROM_DICT_OR_GLOBALS (#119822)Jelle Zijlstra2024-05-311-6/+1
* GH-119258: Handle STORE_ATTR_WITH_HINT in tier two (GH-119481)Brandt Bucher2024-05-281-1/+4
* GH-119476: Split _CHECK_FUNCTION_VERSION out of _CHECK_FUNCTION_EXACT_ARGS (G...Brandt Bucher2024-05-281-2/+0
* gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)Jelle Zijlstra2024-05-221-1/+1
* GH-118910: Less boilerplate in the tier 2 optimizer (#118913)Mark Shannon2024-05-101-222/+87
* GH-118095: Use broader specializations of CALL in tier 1, for better tier 2 s...Mark Shannon2024-05-041-3/+53
* GH-113464: Remove the extra jump via `_SIDE_EXIT` in `_EXIT_TRACE` (GH-118545)Mark Shannon2024-05-041-4/+0
* GH-117442: Check eval-breaker at start (rather than end) of tier 2 loops (GH-...Mark Shannon2024-05-021-4/+0
* GH-118095: Add tier 2 support for YIELD_VALUE (GH-118380)Mark Shannon2024-04-301-5/+9
* GH-118095: Allow a variant of RESUME_CHECK in tier 2 (GH-118286)Mark Shannon2024-04-291-0/+8
* GH-118095: Add dynamic exit support and FOR_ITER_GEN support to tier 2 (GH-11...Mark Shannon2024-04-261-1/+12
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-251-0/+23
* GH-115480: Reduce guard strength for binary ops when type of one operand is k...Mark Shannon2024-04-221-8/+60
* GH-115419: Tidy up tier 2 optimizer. Merge peephole pass into main pass (GH-1...Mark Shannon2024-04-181-3/+52
* gh-116168: Remove extra `_CHECK_STACK_SPACE` uops (#117242)Peter Lazorchak2024-04-031-0/+4
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-021-1/+1
* GH-116422: Tier2 hot/cold splitting (GH-116813)Mark Shannon2024-03-261-40/+17