summaryrefslogtreecommitdiffstats
path: root/Tools/cases_generator
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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-065-4/+15
* GH-128073: Include `EXIT_IF` when checking for escaping calls (GH-128537)Mark Shannon2025-01-061-1/+1
* gh-119786: Fix miscellaneous typos in `InternalDocs/interpreter_definition.md...Stan Ulbrych2024-12-151-3/+3
* gh-115999: Specialize loading attributes from modules in free-threaded builds...mpage2024-12-132-0/+19
* [doc] Fix typos in `interpreter_definition.md` (#127742)Stan Ulbrych2024-12-081-3/+3
* gh-126612: Include stack effects of uops when computing maximum stack depth (...mpage2024-11-262-22/+134
* 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-093-4/+4
* GH-126222: Fix `_PyUop_num_popped` (GH-126507)Mark Shannon2024-11-071-0/+2
* 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-294-6/+54
* GH-125515: Reduce number of compiler warnings in generated code (GH-125697)Mark Shannon2024-10-281-0/+1
* GH-125521: Remove `if (true)` from generated output to reduce C compiler warn...Mark Shannon2024-10-222-6/+14
* gh-119786: [doc] broken link and typo fix in interpreter_definition.md (#125...Mikhail Efimov2024-10-141-2/+3
* 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-142-0/+2
* GH-125174: Make immortal objects more robust, following design from PEP 683 (...Mark Shannon2024-10-101-1/+0
* gh-125039: Make `this_instr`/`prev_instr` const in cases generator (GH-125071)Tomas R.2024-10-091-3/+3
* gh-125084: Resolve paths in generator common code (GH-125085)Cody Maloney2024-10-081-3/+3
* GH-119866: Spill the stack around escaping calls. (GH-124392)Mark Shannon2024-10-078-381/+1040
* 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-253-9/+22
* gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)Sam Gross2024-09-242-4/+17
* GH-123996: Explicitly mark 'self_or_null' as an array of size 1 to ensure tha...Mark Shannon2024-09-122-5/+15
* GH-120024: Remove `CHECK_EVAL_BREAKER` macro. (GH-122968)Mark Shannon2024-08-144-35/+1
* GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)Mark Shannon2024-08-132-0/+2
* 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-0810-100/+175
* gh-118926: Spill deferred references to stack in cases generator (#122748)Sam Gross2024-08-076-25/+132
* GH-120024: Refactor code generators to uses classes for emitting code. (GH-12...Mark Shannon2024-08-064-274/+272
* GH-122155: Track local variables between pops and pushes in cases generator (...Mark Shannon2024-08-017-102/+213
* GH-121131: Clean up and fix some instrumented instructions. (GH-121132)Mark Shannon2024-07-263-8/+5
* GH-122155: Fix cases generator to correctly compute 'peek' offset for error h...Mark Shannon2024-07-233-6/+17
* GH-121784: Generate an error during code gen if a variable is marked `unused`...Mark Shannon2024-07-185-57/+112
* GH-118926: Better distinguish between pointer and arrays in interpreter gener...Mark Shannon2024-07-096-18/+30
* gh-117139: Add _PyTuple_FromStackRefSteal and use it (#121244)Sam Gross2024-07-021-0/+1
* gh-117139: Convert the evaluation stack to stack refs (#118450)Ken Jin2024-06-267-23/+49
* GH-120982: Add stack check assertions to generated interpreter code (GH-120992)Mark Shannon2024-06-251-0/+1
* gh-120417: Remove unused imports in cases_generator (#120622)Victor Stinner2024-06-1711-30/+7
* gh-119689: generate stack effect metadata for pseudo instructions (#119691)Irit Katriel2024-05-295-20/+47
* GH-118910: Less boilerplate in the tier 2 optimizer (#118913)Mark Shannon2024-05-101-3/+0
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-05-011-0/+1
* gh-112075: Make instance attributes stored in inline "dict" thread safe (#114...Dino Viehland2024-04-221-0/+1
* GH-115419: Improve list of escaping functions (GH-118054)Mark Shannon2024-04-191-0/+10
* Cases generator: Remove type_prop and passthrough (#117614)Ken Jin2024-04-072-11/+0
* GH-117457: Correct pystats uop "miss" counts (GH-117477)Michael Droettboom2024-04-041-2/+8