summaryrefslogtreecommitdiffstats
path: root/Tools/cases_generator
Commit message (Expand)AuthorAgeFilesLines
* Get rid of ERROR_IF's "label" parameter (GH-132654)Brandt Bucher2025-04-304-19/+13
* GH-125515: Mark code after "return" as unreachable in the cases generator (#1...Brandt Bucher2025-04-301-0/+5
* GH-132508: Use tagged integers on the evaluation stack for the last instructi...Mark Shannon2025-04-291-0/+3
* GH-131498: Replace single-element arrays with scalars in bytecodes.c (GH-132615)Brandt Bucher2025-04-181-12/+10
* GH-131498: Cases generator: Allow input and 'peek' variables to be modified (...Mark Shannon2025-04-143-19/+22
* GH-131498: Cases generator: manage stacks automatically (GH-132074)Mark Shannon2025-04-045-58/+78
* GH-131498: Cases generator: Parse down to C statement level. (GH-131948)Mark Shannon2025-04-0210-377/+673
* gh-130704: Strength reduce `LOAD_FAST{_LOAD_FAST}` (#130708)mpage2025-04-012-3/+6
* GH-131498: Another refactoring of the code generator (GH-131827)Mark Shannon2025-03-318-199/+191
* GH-131729: Consider in-memory state when merging storage and stack (GH-131773)Mark Shannon2025-03-271-0/+7
* GH-131729: Code-gen better liveness analysis (GH-131732)Mark Shannon2025-03-265-163/+186
* GH-131513: Cases generator: Allow dead inputs to be reassigned (GH-131515)Mark Shannon2025-03-213-17/+27
* GH-131498: Remove conditional stack effects (GH-131499)Mark Shannon2025-03-208-120/+12
* GH-130296: Remove `_PyOpcode_max_stack_effect` as it is no longer used (GH-13...Mark Shannon2025-03-202-106/+1
* gh-131152: Remove unused imports from `Tools/cases_generator` (#131156)Victor Stinner2025-03-136-7/+5
* 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-284-40/+34
* 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-129989: Change Py_TAIL_CALL_INTERP ifndef to ! (#130269)Ken Jin2025-02-181-2/+2
* gh-129989: Properly disable tailcall interp in configure (GH-129991)Ken Jin2025-02-152-2/+2
* GH-128682: Account for escapes in `DECREF_INPUTS` (GH-129953)Mark Shannon2025-02-125-46/+149
* 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: Move assignment of opcode into ifdef (GH-129803)Ken Jin2025-02-071-3/+4
* gh-128563: A new tail-calling interpreter (GH-128718)Ken Jin2025-02-064-40/+109
* 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-049-58/+129
* GH-128563: Generate `opcode = ...` in instructions that need `opcode` (GH-129...Mark Shannon2025-02-033-32/+8
* GH-128682: Make `PyStackRef_CLOSE` escaping. (GH-129404)Mark Shannon2025-02-033-87/+60
* GH-128563: Move some labels, to simplify implementing tailcalling interpreter...Mark Shannon2025-01-311-2/+0
* GH-126599: Remove the PyOptimizer API (GH-129194)Brandt Bucher2025-01-291-1/+1
* 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-275-4/+98
* Replace `strict_concatenate = True` with `extra_checks = True` (#126391)sobolevn2025-01-251-1/+1
* Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...Sam Gross2025-01-239-16/+143
* GH-128682: Change a couple of functions to only steal references on success. ...Mark Shannon2025-01-221-3/+2
* gh-128563: Move GO_TO_INSTRUCTION and PREDICT to cases generator (GH-129115)Ken Jin2025-01-222-1/+19
* GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...Mark Shannon2025-01-209-143/+16
* GH-128939: Refactor JIT optimize structs (GH-128940)Mark Shannon2025-01-201-4/+4
* Refactor code generators a bit (GH-128920)Mark Shannon2025-01-172-14/+15
* gh-100239: specialize long tail of binary operations (#128722)Irit Katriel2025-01-161-1/+4
* gh-115999: Specialize `LOAD_ATTR` for instance and class receivers in free-th...mpage2025-01-143-8/+13
* GH-128682: Convert explicit loops closing arrays into `DECREF_INPUTS`. (GH-12...Mark Shannon2025-01-142-3/+1
* GH-128682: Stronger checking of `PyStackRef_CLOSE` and `DEAD`. (GH-128683)Mark Shannon2025-01-131-15/+88
* GH-124483: Mark `Py_DECREF`, etc. as escaping for the JIT (GH-128678)Mark Shannon2025-01-131-4/+14