summaryrefslogtreecommitdiffstats
path: root/Tools/cases_generator
Commit message (Expand)AuthorAgeFilesLines
* Fix typos in docs and comments (#109619)Heinz-Alexander Fuetterer2023-09-201-1/+1
* gh-109287: Desugar inst(X) to op(X); macro(X) = X (#109294)Guido van Rossum2023-09-154-161/+92
* gh-106581: Honor 'always_exits' in write_components() (#109338)Guido van Rossum2023-09-121-1/+1
* gh-109256: allocate opcode IDs for internal opcodes in their own range (#109269)Irit Katriel2023-09-121-11/+23
* gh-109214: Rename SAVE_IP to _SET_IP, and similar (#109285)Guido van Rossum2023-09-114-10/+10
* gh-109039: Branch prediction for Tier 2 interpreter (#109038)Guido van Rossum2023-09-111-4/+14
* GH-108614: Add `RESUME_CHECK` instruction (GH-108630)Mark Shannon2023-09-072-1/+3
* gh-106581: Support multiple uops pushing new values (#108895)Guido van Rossum2023-09-051-17/+53
* GH-108614: Remove non-debug uses of `#if TIER_ONE` and `#if TIER_TWO` from `_...Mark Shannon2023-08-311-2/+2
* gh-107557: Remove unnecessary SAVE_IP instructions (#108583)Guido van Rossum2023-08-293-12/+21
* gh-107901: add the HAS_EVAL_BREAK instruction flag (#108375)Irit Katriel2023-08-252-4/+9
* gh-104504: Cases generator: enable mypy's `possibly-undefined` error code (#1...Alex Waygood2023-08-252-5/+10
* gh-106581: Split CALL_BOUND_METHOD_EXACT_ARGS into uops (#108462)Guido van Rossum2023-08-251-1/+1
* gh-106581: Fix two bugs in the code generator's copy optimization (#108380)Guido van Rossum2023-08-241-17/+62
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-231-0/+12
* Fix spurious diff if the cases generator is run on Windows (#108319)Alex Waygood2023-08-221-1/+1
* gh-108216: Cleanup #include in internal header files (#108228)Victor Stinner2023-08-211-1/+1
* gh-108220: Internal header files require Py_BUILD_CORE to be defined (#108221)Victor Stinner2023-08-211-0/+7
* gh-104504: cases generator: Add `--warn-unreachable` to the mypy config (#108...Alex Waygood2023-08-204-28/+36
* gh-104504: Run mypy on cases_generator in CI (and blacken the code) (gh-108090)Dong-hee Na2023-08-187-187/+301
* gh-106581: Project through calls (#108067)Guido van Rossum2023-08-172-3/+5
* gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)Guido van Rossum2023-08-164-54/+79
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-161-6/+200
* gh-107557: Setup abstract interpretation (#107847)Ken Jin2023-08-153-2/+108
* gh-105481: reduce repetition in opcode metadata generation code (#107942)Irit Katriel2023-08-141-62/+46
* gh-106797: Remove warning logs from Python/generated_cases.c.h and executor_c...Dong-hee Na2023-08-121-2/+2
* Update README for the cases generator (#107826)Guido van Rossum2023-08-101-2/+6
* gh-106812: Small stack effect fixes (#107759)Guido van Rossum2023-08-083-20/+15
* gh-106812: Fix two tiny bugs in analysis.py (#107649)Guido van Rossum2023-08-051-1/+3
* gh-106812: Refactor cases_generator to allow uops with array stack effects (#...Guido van Rossum2023-08-048-322/+592
* Thoroughly refactor the cases generator (#107151)Guido van Rossum2023-07-246-1146/+1285
* gh-105540: Show source files relative to root (#106927)Guido van Rossum2023-07-201-4/+10
* GH-104584: Miscellaneous fixes for -Xuops (GH-106908)Brandt Bucher2023-07-201-0/+2
* gh-105481: Generate the opcode lists in dis from data extracted from bytecode...Irit Katriel2023-07-181-1/+12
* Small fixes to code generator (#106845)Guido van Rossum2023-07-181-5/+5
* gh-106603: Make uop struct a triple (opcode, oparg, operand) (#106794)Guido van Rossum2023-07-171-11/+4
* gh-106581: Add 10 new opcodes by allowing `assert(kwnames == NULL)` (#106707)Guido van Rossum2023-07-171-4/+10
* gh-106797: Remove warning logs from Python/generated_cases.c.h (gh-106798)Dong-hee Na2023-07-171-3/+11
* gh-105540: Convert `pytest` tests of `cases_generator` to regular tests (#106...Nikita Sobolev2023-07-162-498/+16
* gh-106706: Streamline family syntax in cases generator DSL (#106716)Kevin Diem2023-07-163-16/+15
* gh-105481: expose opcode metadata via the _opcode module (#106688)Irit Katriel2023-07-141-7/+25
* gh-106701: Move the hand-written Tier 2 uops to bytecodes.c (#106702)Guido van Rossum2023-07-131-4/+8
* GH-104909: Split `LOAD_ATTR_INSTANCE_VALUE` into micro-ops (GH-106678)Mark Shannon2023-07-131-13/+1
* gh-105481: move Python/opcode_metadata.h to Include/internal/pycore_opcode_me...Irit Katriel2023-07-121-1/+1
* gh-106529: Support JUMP_BACKWARD in Tier 2 (uops) (#106543)Guido van Rossum2023-07-111-0/+1
* gh-106360: remove redundant #ifdef (#106622)Irit Katriel2023-07-111-4/+2
* gh-106529: Implement POP_JUMP_IF_XXX uops (#106551)Guido van Rossum2023-07-101-0/+5
* gh-104584: Allow unspecialized instructions in superblocks (#106497)Guido van Rossum2023-07-071-2/+24
* gh-104584: Move super-instruction special-casing to generator (#106500)Guido van Rossum2023-07-071-2/+59
* GH-106360: Support very basic superblock introspection (#106422)Mark Shannon2023-07-041-4/+2