index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Tools
/
cases_generator
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-128682: Stronger checking of `PyStackRef_CLOSE` and `DEAD`. (GH-128683)
Mark Shannon
2025-01-13
1
-15/+88
*
GH-124483: Mark `Py_DECREF`, etc. as escaping for the JIT (GH-128678)
Mark Shannon
2025-01-13
1
-4/+14
*
GH-127809: Fix the JIT's understanding of ** (GH-127844)
Brandt Bucher
2025-01-08
1
-0/+1
*
GH-128375: Better instrument for `FOR_ITER` (GH-128445)
Mark Shannon
2025-01-06
5
-4/+15
*
GH-128073: Include `EXIT_IF` when checking for escaping calls (GH-128537)
Mark Shannon
2025-01-06
1
-1/+1
*
gh-119786: Fix miscellaneous typos in `InternalDocs/interpreter_definition.md...
Stan Ulbrych
2024-12-15
1
-3/+3
*
gh-115999: Specialize loading attributes from modules in free-threaded builds...
mpage
2024-12-13
2
-0/+19
*
[doc] Fix typos in `interpreter_definition.md` (#127742)
Stan Ulbrych
2024-12-08
1
-3/+3
*
gh-126612: Include stack effects of uops when computing maximum stack depth (...
mpage
2024-11-26
2
-22/+134
*
gh-127022: Simplify `PyStackRef_FromPyObjectSteal` (#127024)
Sam Gross
2024-11-22
1
-1/+4
*
gh-115999: Specialize `LOAD_GLOBAL` in free-threaded builds (#126607)
mpage
2024-11-21
1
-0/+3
*
gh-120619: Strength reduce function guards, support 2-operand uop forms (GH-1...
Ken Jin
2024-11-09
3
-4/+4
*
GH-126222: Fix `_PyUop_num_popped` (GH-126507)
Mark Shannon
2024-11-07
1
-0/+2
*
gh-126211: Exclude preprocessor directives from statements containing escapin...
mpage
2024-11-01
1
-1/+1
*
gh-118423: Add `INSTRUCTION_SIZE` macro to code generator (GH-125467)
Tomas R.
2024-10-29
4
-6/+54
*
GH-125515: Reduce number of compiler warnings in generated code (GH-125697)
Mark Shannon
2024-10-28
1
-0/+1
*
GH-125521: Remove `if (true)` from generated output to reduce C compiler warn...
Mark Shannon
2024-10-22
2
-6/+14
*
gh-119786: [doc] broken link and typo fix in interpreter_definition.md (#125...
Mikhail Efimov
2024-10-14
1
-2/+3
*
GH-125323: Convert DECREF_INPUTS_AND_REUSE_FLOAT into a function that takes P...
Mark Shannon
2024-10-14
1
-0/+1
*
gh-125323: Remove some unsafe Py_DECREFs in bytecodes.c, replacing them with ...
Ken Jin
2024-10-14
2
-0/+2
*
GH-125174: Make immortal objects more robust, following design from PEP 683 (...
Mark Shannon
2024-10-10
1
-1/+0
*
gh-125039: Make `this_instr`/`prev_instr` const in cases generator (GH-125071)
Tomas R.
2024-10-09
1
-3/+3
*
gh-125084: Resolve paths in generator common code (GH-125085)
Cody Maloney
2024-10-08
1
-3/+3
*
GH-119866: Spill the stack around escaping calls. (GH-124392)
Mark Shannon
2024-10-07
8
-381/+1040
*
GH-123516: Improve JIT memory consumption by invalidating cold executors (GH-...
Savannah Ostrowski
2024-09-27
1
-0/+1
*
gh-124285: Fix bug where bool() is called multiple times for the same part of...
Irit Katriel
2024-09-25
3
-9/+22
*
gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)
Sam Gross
2024-09-24
2
-4/+17
*
GH-123996: Explicitly mark 'self_or_null' as an array of size 1 to ensure tha...
Mark Shannon
2024-09-12
2
-5/+15
*
GH-120024: Remove `CHECK_EVAL_BREAKER` macro. (GH-122968)
Mark Shannon
2024-08-14
4
-35/+1
*
GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)
Mark Shannon
2024-08-13
2
-0/+2
*
gh-117139: Replace _PyList_FromArraySteal with stack ref variant (#122830)
Sam Gross
2024-08-12
1
-1/+1
*
GH-120024: Tidy up case generator code a bit. (GH-122780)
Mark Shannon
2024-08-08
10
-100/+175
*
gh-118926: Spill deferred references to stack in cases generator (#122748)
Sam Gross
2024-08-07
6
-25/+132
*
GH-120024: Refactor code generators to uses classes for emitting code. (GH-12...
Mark Shannon
2024-08-06
4
-274/+272
*
GH-122155: Track local variables between pops and pushes in cases generator (...
Mark Shannon
2024-08-01
7
-102/+213
*
GH-121131: Clean up and fix some instrumented instructions. (GH-121132)
Mark Shannon
2024-07-26
3
-8/+5
*
GH-122155: Fix cases generator to correctly compute 'peek' offset for error h...
Mark Shannon
2024-07-23
3
-6/+17
*
GH-121784: Generate an error during code gen if a variable is marked `unused`...
Mark Shannon
2024-07-18
5
-57/+112
*
GH-118926: Better distinguish between pointer and arrays in interpreter gener...
Mark Shannon
2024-07-09
6
-18/+30
*
gh-117139: Add _PyTuple_FromStackRefSteal and use it (#121244)
Sam Gross
2024-07-02
1
-0/+1
*
gh-117139: Convert the evaluation stack to stack refs (#118450)
Ken Jin
2024-06-26
7
-23/+49
*
GH-120982: Add stack check assertions to generated interpreter code (GH-120992)
Mark Shannon
2024-06-25
1
-0/+1
*
gh-120417: Remove unused imports in cases_generator (#120622)
Victor Stinner
2024-06-17
11
-30/+7
*
gh-119689: generate stack effect metadata for pseudo instructions (#119691)
Irit Katriel
2024-05-29
5
-20/+47
*
GH-118910: Less boilerplate in the tier 2 optimizer (#118913)
Mark Shannon
2024-05-10
1
-3/+0
*
gh-118335: Configure Tier 2 interpreter at build time (#118339)
Guido van Rossum
2024-05-01
1
-0/+1
*
gh-112075: Make instance attributes stored in inline "dict" thread safe (#114...
Dino Viehland
2024-04-22
1
-0/+1
*
GH-115419: Improve list of escaping functions (GH-118054)
Mark Shannon
2024-04-19
1
-0/+10
*
Cases generator: Remove type_prop and passthrough (#117614)
Ken Jin
2024-04-07
2
-11/+0
*
GH-117457: Correct pystats uop "miss" counts (GH-117477)
Michael Droettboom
2024-04-04
1
-2/+8
[next]