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
/
generate_cases.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-109214: Convert _SAVE_CURRENT_IP to _SET_IP in tier 2 trace creation. (GH-...
Mark Shannon
2023-10-12
1
-3/+3
*
gh-109287: fix overrides in cases generator (#110419)
Carl Meyer
2023-10-05
1
-17/+0
*
gh-109979: Auto-generate the target for DEOPT_IF() (#110193)
Guido van Rossum
2023-10-03
1
-3/+1
*
gh-104909: Split some more insts into ops (#109943)
Guido van Rossum
2023-09-27
1
-0/+11
*
Fix typos in docs and comments (#109619)
Heinz-Alexander Fuetterer
2023-09-20
1
-1/+1
*
gh-109287: Desugar inst(X) to op(X); macro(X) = X (#109294)
Guido van Rossum
2023-09-15
1
-141/+71
*
gh-109256: allocate opcode IDs for internal opcodes in their own range (#109269)
Irit Katriel
2023-09-12
1
-11/+23
*
gh-109214: Rename SAVE_IP to _SET_IP, and similar (#109285)
Guido van Rossum
2023-09-11
1
-5/+5
*
gh-109039: Branch prediction for Tier 2 interpreter (#109038)
Guido van Rossum
2023-09-11
1
-4/+14
*
gh-107557: Remove unnecessary SAVE_IP instructions (#108583)
Guido van Rossum
2023-08-29
1
-3/+2
*
gh-104504: Cases generator: enable mypy's `possibly-undefined` error code (#1...
Alex Waygood
2023-08-25
1
-4/+9
*
gh-106581: Split CALL_BOUND_METHOD_EXACT_ARGS into uops (#108462)
Guido van Rossum
2023-08-25
1
-1/+1
*
gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...
Irit Katriel
2023-08-23
1
-0/+12
*
Fix spurious diff if the cases generator is run on Windows (#108319)
Alex Waygood
2023-08-22
1
-1/+1
*
gh-108216: Cleanup #include in internal header files (#108228)
Victor Stinner
2023-08-21
1
-1/+1
*
gh-108220: Internal header files require Py_BUILD_CORE to be defined (#108221)
Victor Stinner
2023-08-21
1
-0/+7
*
gh-104504: cases generator: Add `--warn-unreachable` to the mypy config (#108...
Alex Waygood
2023-08-20
1
-20/+13
*
gh-104504: Run mypy on cases_generator in CI (and blacken the code) (gh-108090)
Dong-hee Na
2023-08-18
1
-45/+52
*
gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)
Guido van Rossum
2023-08-16
1
-7/+27
*
gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...
Irit Katriel
2023-08-16
1
-6/+200
*
gh-107557: Setup abstract interpretation (#107847)
Ken Jin
2023-08-15
1
-2/+60
*
gh-105481: reduce repetition in opcode metadata generation code (#107942)
Irit Katriel
2023-08-14
1
-62/+46
*
gh-106812: Refactor cases_generator to allow uops with array stack effects (#...
Guido van Rossum
2023-08-04
1
-112/+33
*
Thoroughly refactor the cases generator (#107151)
Guido van Rossum
2023-07-24
1
-1143/+144
*
gh-105540: Show source files relative to root (#106927)
Guido van Rossum
2023-07-20
1
-4/+10
*
GH-104584: Miscellaneous fixes for -Xuops (GH-106908)
Brandt Bucher
2023-07-20
1
-0/+2
*
gh-105481: Generate the opcode lists in dis from data extracted from bytecode...
Irit Katriel
2023-07-18
1
-1/+12
*
Small fixes to code generator (#106845)
Guido van Rossum
2023-07-18
1
-5/+5
*
gh-106603: Make uop struct a triple (opcode, oparg, operand) (#106794)
Guido van Rossum
2023-07-17
1
-11/+4
*
gh-106581: Add 10 new opcodes by allowing `assert(kwnames == NULL)` (#106707)
Guido van Rossum
2023-07-17
1
-4/+10
*
gh-106797: Remove warning logs from Python/generated_cases.c.h (gh-106798)
Dong-hee Na
2023-07-17
1
-3/+11
*
gh-105540: Convert `pytest` tests of `cases_generator` to regular tests (#106...
Nikita Sobolev
2023-07-16
1
-16/+16
*
gh-106706: Streamline family syntax in cases generator DSL (#106716)
Kevin Diem
2023-07-16
1
-14/+13
*
gh-105481: expose opcode metadata via the _opcode module (#106688)
Irit Katriel
2023-07-14
1
-7/+25
*
gh-106701: Move the hand-written Tier 2 uops to bytecodes.c (#106702)
Guido van Rossum
2023-07-13
1
-4/+8
*
GH-104909: Split `LOAD_ATTR_INSTANCE_VALUE` into micro-ops (GH-106678)
Mark Shannon
2023-07-13
1
-13/+1
*
gh-105481: move Python/opcode_metadata.h to Include/internal/pycore_opcode_me...
Irit Katriel
2023-07-12
1
-1/+1
*
gh-106529: Support JUMP_BACKWARD in Tier 2 (uops) (#106543)
Guido van Rossum
2023-07-11
1
-0/+1
*
gh-106360: remove redundant #ifdef (#106622)
Irit Katriel
2023-07-11
1
-4/+2
*
gh-106529: Implement POP_JUMP_IF_XXX uops (#106551)
Guido van Rossum
2023-07-10
1
-0/+5
*
gh-104584: Allow unspecialized instructions in superblocks (#106497)
Guido van Rossum
2023-07-07
1
-2/+24
*
gh-104584: Move super-instruction special-casing to generator (#106500)
Guido van Rossum
2023-07-07
1
-2/+59
*
GH-106360: Support very basic superblock introspection (#106422)
Mark Shannon
2023-07-04
1
-4/+2
*
gh-106290: Fix edge cases around uops (#106319)
Guido van Rossum
2023-07-03
1
-5/+9
*
gh-106149: move unconditional jump direction resolution from optimizer to ass...
Irit Katriel
2023-07-01
1
-2/+2
*
gh-106267: Add type cast to generated code (#106289)
Kirill Podoprigora
2023-06-30
1
-1/+1
*
GH-106250: Support insts using one cache entry and no oparg (GH-106252)
Guido van Rossum
2023-06-29
1
-18/+18
*
gh-104584: Emit macro expansions to opcode_metadata.h (#106163)
Guido van Rossum
2023-06-28
1
-72/+113
*
gh-104584: Add #line directives to executor_cases.c.h (#106126)
Guido van Rossum
2023-06-27
1
-1/+1
*
gh-104584: Baby steps towards generating and executing traces (#105924)
Guido van Rossum
2023-06-27
1
-20/+167
[next]