summaryrefslogtreecommitdiffstats
path: root/Python/executor_cases.c.h
Commit message (Expand)AuthorAgeFilesLines
* gh-134584: Eliminate redundant refcounting from `_LOAD_ATTR_WITH_HINT` (GH-14...Hai Zhu2025-12-231-11/+5
* GH-139922: Tail calling for MSVC (VS 2026) (GH-143068)Chris Eibl2025-12-221-24/+33
* gh-120321: Make gi_frame_state transitions atomic in FT build (gh-142599)Sam Gross2025-12-191-15/+79
* gh-142961: Fix constant folding len(tuple) in JIT (GH-142963)Ken Jin2025-12-191-0/+100
* GH-134584: Remove redundant refcount for `BINARY_OP_SUBSCR_STR_INT` (#142844)Savannah Ostrowski2025-12-181-8/+8
* gh-134584: Eliminate redundant refcounting from _BINARY_OP_SUBSCR_LIST_INT (G...LloydZ2025-12-181-17/+9
* gh-142890: remove unnecessary interp parameter from dict functions and `_PyDi...Kumar Aditya2025-12-181-1/+1
* gh-134584: Remove redundant refcount from _BINARY_OP_ADD_UNICODE (gh-142825)Donghee Na2025-12-181-54/+35
* gh-134584: Eliminate redundant refcounting from `_STORE_ATTR_WITH_HINT` (GH-1...Nadeshiko Manju2025-12-161-5/+9
* gh-134584: Eliminate redundant refcounting from `_LOAD_ATTR_INSTANCE_VALUE` (...Nadeshiko Manju2025-12-161-12/+88
* GH-134584: Remove redundant refcount from `_STORE_ATTR_SLOT` (#142729)Savannah Ostrowski2025-12-151-4/+10
* gh-134584: JIT: Eliminate redundant refcount ops for X_INT (GH-142765)Ken Jin2025-12-151-147/+80
* gh-134584: Eliminate redundant refcounting from `_STORE_ATTR_INSTANCE_VALUE` ...Nadeshiko Manju2025-12-151-4/+10
* gh-134584: Remove custom float decref ops (GH-142576)Ken Jin2025-12-151-1826/+1403
* GH-142718: JIT: Fix crash due to incorrect caching on side exits when exiting...Mark Shannon2025-12-151-16/+639
* gh-134584: Eliminate redundant refcounting from _STORE_SUBSCR_DICT (GH-142712)Donghee Na2025-12-151-8/+12
* gh-134584: Eliminate redundant refcounting from _CALL_LIST_APPEND (GH-142711)Nadeshiko Manju2025-12-151-16/+146
* gh-134584: Eliminate redundant refcounting from _STORE_SUBSCR_LIST_INT (gh-14...Donghee Na2025-12-141-6/+14
* gh-134584: Eliminate redundant refcounting from `_CALL_BUILTION_O` (GH-142695)PuQing2025-12-141-12/+10
* gh-134584: Eliminate redundant refcounting from `_CALL_STR_1` (GH-136070)Nadeshiko Manju2025-12-141-16/+9
* gh-134584: Cleanups for GH-135860 (GH-142604)Ken Jin2025-12-131-11/+6
* gh-134584: Revert partially GH-135860 (GH-142620)Ken Jin2025-12-121-7/+10
* gh-134584: Eliminate redundant refcounting from ``_CALL_LEN`` (gh-136104)Donghee Na2025-12-111-18/+11
* gh-134584: Eliminate redundant refcounting from `_CALL_TUPLE_1` (GH-135860)Noam Cohen2025-12-111-16/+11
* GH-140683: JIT: Improve machine code for loading smaller constants on AArch64...Mark Shannon2025-12-111-117/+117
* GH-135379: Top of stack caching for the JIT. (GH-135465)Mark Shannon2025-12-111-1073/+11159
* GH-139757: JIT: Remove redundant branches to jumps in the assembly optimizer ...Mark Shannon2025-12-081-2/+3
* GH-141794: Limit size of generated machine code. (GH-142228)Mark Shannon2025-12-031-712/+382
* GH-139109: Support switch/case dispatch with the tracing interpreter. (GH-141...Mark Shannon2025-11-181-0/+2
* gh-141367: Use CALL_LIST_APPEND instruction only for lists, not for list subc...Mikhail Efimov2025-11-141-4/+0
* gh-139109: A new tracing JIT compiler frontend for CPython (GH-140310)Ken Jin2025-11-131-22/+113
* gh-138050: [WIP] JIT - Streamline MAKE_WARM - move coldness check to executor...alm2025-10-271-3/+0
* GH-138378: Move globals-to-consts pass into main optimizer pass (GH-138379)Mark Shannon2025-09-181-11/+0
* gh-137136: Suppress build warnings when build on Windows with --experimental-...AN Long2025-09-031-2/+2
* gh-138264: Fix gcc 14 compiler warnings (GH-138265)Serhiy Storchaka2025-09-031-4/+4
* GH-137959: Replace shim code in jitted code with a single trampoline function...Mark Shannon2025-08-211-3/+3
* GH-132532: Add new DSL macros to better declare semantics of exits at ends of...Mark Shannon2025-08-091-18/+20
* GH-136410: Faster side exits by using a cold exit stub (GH-136411)Mark Shannon2025-08-011-33/+51
* gh-115999: remove redundant check in free-threading from `_STORE_ATTR_WITH_HI...Kumar Aditya2025-07-041-9/+0
* gh-136125: Use `_PyObject_GetMethodStackRef` for `LOAD_ATTR` (GH-136127)Ken Jin2025-07-011-9/+8
* gh-134584: Specialize POP_TOP by reference and type in JIT (GH-135761)Ken Jin2025-06-231-0/+40
* gh-135379: Move PyLong_CheckCompact to private header and rename it (GH-135707)Ken Jin2025-06-191-2/+2
* GH-135379: Specialize int operations for compact ints only (GH-135668)Mark Shannon2025-06-191-37/+40
* gh-134584: Decref elimination for float ops in the JIT (GH-134588)Ken Jin2025-06-171-0/+81
* GH-135379: Support limited scalar replacement for replicated uops in the JIT ...Mark Shannon2025-06-171-2/+59
* gh-135474: Specialize arithmetic only on compact ints (GH-135479)Ken Jin2025-06-141-9/+15
* GH-135379: Remove types from stack items in code generator. (GH-135384)Mark Shannon2025-06-111-62/+72
* GH-132554: Fix tier2 `FOR_ITER` implementation and optimizations (GH-135137)Mark Shannon2025-06-051-19/+6
* GH-132554: "Virtual" iterators (GH-132555)Mark Shannon2025-05-271-93/+96
* GH-131798: Optimize away isinstance calls in the JIT (GH-134369)Tomas R.2025-05-221-0/+110