summaryrefslogtreecommitdiffstats
path: root/Tools/cases_generator/analyzer.py
Commit message (Expand)AuthorAgeFilesLines
* gh-131152: Remove unused imports from `Tools/cases_generator` (#131156)Victor Stinner2025-03-131-1/+1
* gh-115999: Add free-threaded specialization for FOR_ITER (#128798)T. Wouters2025-03-121-0/+3
* GH-127705: Use `_PyStackRef`s in the default build. (GH-127875)Mark Shannon2025-03-101-0/+4
* gh-130574: renumber RESUME opcode from 149 to 128 (GH-130685)Tomasz Pytel2025-03-061-3/+3
* gh-118331: Fix a couple of issues when list allocation fails (#130811)mpage2025-03-051-1/+0
* GH-130296: Avoid stack transients in four instructions. (GH-130310)Mark Shannon2025-02-281-6/+9
* GH-130396: Use computed stack limits on linux (GH-130398)Mark Shannon2025-02-251-1/+1
* GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not cou...Petr Viktorin2025-02-241-1/+1
* GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)Mark Shannon2025-02-191-1/+1
* GH-128682: Account for escapes in `DECREF_INPUTS` (GH-129953)Mark Shannon2025-02-121-5/+0
* GH-129709: Clean up tier two (GH-129710)Brandt Bucher2025-02-071-0/+1
* GH-129763: Remove the LLTRACE macro (GH-129764)Brandt Bucher2025-02-071-1/+0
* gh-128563: A new tail-calling interpreter (GH-128718)Ken Jin2025-02-061-0/+1
* GH-128682: Mark two more macros as escaping. (GH-129645)Mark Shannon2025-02-041-10/+2
* GH-128682: Spill the stack pointer in labels, as well as instructions (GH-129...Mark Shannon2025-02-041-20/+38
* GH-128563: Generate `opcode = ...` in instructions that need `opcode` (GH-129...Mark Shannon2025-02-031-13/+5
* GH-128682: Make `PyStackRef_CLOSE` escaping. (GH-129404)Mark Shannon2025-02-031-11/+34
* GH-128563: Move some labels, to simplify implementing tailcalling interpreter...Mark Shannon2025-01-311-2/+0
* gh-115999: Enable free-threaded specialization of LOAD_CONST (#129365)T. Wouters2025-01-291-0/+1
* gh-128563: Move labels in ceval.c to bytecodes.c (GH-129112)Ken Jin2025-01-271-1/+20
* Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...Sam Gross2025-01-231-6/+72
* GH-128682: Change a couple of functions to only steal references on success. ...Mark Shannon2025-01-221-3/+2
* GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...Mark Shannon2025-01-201-72/+6
* gh-115999: Specialize `LOAD_ATTR` for instance and class receivers in free-th...mpage2025-01-141-1/+1
* GH-128682: Convert explicit loops closing arrays into `DECREF_INPUTS`. (GH-12...Mark Shannon2025-01-141-3/+0
* GH-124483: Mark `Py_DECREF`, etc. as escaping for the JIT (GH-128678)Mark Shannon2025-01-131-4/+14
* GH-127809: Fix the JIT's understanding of ** (GH-127844)Brandt Bucher2025-01-081-0/+1
* GH-128375: Better instrument for `FOR_ITER` (GH-128445)Mark Shannon2025-01-061-0/+4
* GH-128073: Include `EXIT_IF` when checking for escaping calls (GH-128537)Mark Shannon2025-01-061-1/+1
* gh-127022: Simplify `PyStackRef_FromPyObjectSteal` (#127024)Sam Gross2024-11-221-1/+4
* gh-115999: Specialize `LOAD_GLOBAL` in free-threaded builds (#126607)mpage2024-11-211-0/+3
* gh-120619: Strength reduce function guards, support 2-operand uop forms (GH-1...Ken Jin2024-11-091-1/+1
* gh-126211: Exclude preprocessor directives from statements containing escapin...mpage2024-11-011-1/+1
* gh-118423: Add `INSTRUCTION_SIZE` macro to code generator (GH-125467)Tomas R.2024-10-291-0/+33
* GH-125521: Remove `if (true)` from generated output to reduce C compiler warn...Mark Shannon2024-10-221-1/+1
* GH-125323: Convert DECREF_INPUTS_AND_REUSE_FLOAT into a function that takes P...Mark Shannon2024-10-141-0/+1
* gh-125323: Remove some unsafe Py_DECREFs in bytecodes.c, replacing them with ...Ken Jin2024-10-141-0/+1
* GH-125174: Make immortal objects more robust, following design from PEP 683 (...Mark Shannon2024-10-101-1/+0
* GH-119866: Spill the stack around escaping calls. (GH-124392)Mark Shannon2024-10-071-118/+253
* GH-123516: Improve JIT memory consumption by invalidating cold executors (GH-...Savannah Ostrowski2024-09-271-0/+1
* gh-124285: Fix bug where bool() is called multiple times for the same part of...Irit Katriel2024-09-251-0/+2
* gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)Sam Gross2024-09-241-0/+12
* GH-120024: Remove `CHECK_EVAL_BREAKER` macro. (GH-122968)Mark Shannon2024-08-141-16/+1
* GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)Mark Shannon2024-08-131-0/+1
* gh-117139: Replace _PyList_FromArraySteal with stack ref variant (#122830)Sam Gross2024-08-121-1/+1
* GH-120024: Tidy up case generator code a bit. (GH-122780)Mark Shannon2024-08-081-25/+63
* gh-118926: Spill deferred references to stack in cases generator (#122748)Sam Gross2024-08-071-0/+45
* GH-122155: Track local variables between pops and pushes in cases generator (...Mark Shannon2024-08-011-4/+6
* GH-121131: Clean up and fix some instrumented instructions. (GH-121132)Mark Shannon2024-07-261-6/+3
* GH-122155: Fix cases generator to correctly compute 'peek' offset for error h...Mark Shannon2024-07-231-1/+5