summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_opcode_metadata.h
Commit message (Expand)AuthorAgeFilesLines
* gh-106529: Make FOR_ITER a viable uop (#112134)Guido van Rossum2023-11-201-39/+47
* GH-111848: Set the IP when de-optimizing (GH-112065)Mark Shannon2023-11-151-52/+52
* GH-111848: Convert remaining jumps to deopts into tier 2 code. (GH-112045)Mark Shannon2023-11-141-55/+87
* GH-109369: Exit tier 2 if executor is invalid (GH-111657)Mark Shannon2023-11-091-224/+233
* GH-111848: Tidy up tier 2 handling of FOR_ITER specialization by using DEOPT_...Mark Shannon2023-11-081-18/+21
* GH-111485: Allow arbitrary annotations on instructions and micro-ops. (GH-111...Mark Shannon2023-11-071-1/+9
* GH-111485: Make BEFORE_WITH a uop (GH-111812)Brandt Bucher2023-11-071-0/+1
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-031-3/+3
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-021-3/+3
* GH-111485: Use micro-ops to split specialization code from base action (GH-11...Mark Shannon2023-11-011-78/+253
* GH-111485: Remove some special cases from the code generator and bytecodes.c ...Mark Shannon2023-10-311-17/+19
* GH-111485: Increment `next_instr` consistently at the start of the instructio...Mark Shannon2023-10-311-5/+6
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-261-8/+8
* GH-109214: _SET_IP before _PUSH_FRAME (but not _POP_FRAME) (GH-111001)Brandt Bucher2023-10-241-2/+2
* GH-109214: Convert _SAVE_CURRENT_IP to _SET_IP in tier 2 trace creation. (GH-...Mark Shannon2023-10-121-4/+4
* gh-104909: Split more LOAD_ATTR specializations (GH-110317)Guido van Rossum2023-10-041-35/+111
* gh-109979: Unify _GUARD_TYPE_VERSION{,_STORE} (#110301)Guido van Rossum2023-10-031-39/+32
* gh-104909: Split some more insts into ops (#109943)Guido van Rossum2023-09-271-26/+94
* gh-109287: Desugar inst(X) to op(X); macro(X) = X (#109294)Guido van Rossum2023-09-151-2/+18
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-78/+87
* gh-109256: allocate opcode IDs for internal opcodes in their own range (#109269)Irit Katriel2023-09-121-97/+97
* gh-109214: Rename SAVE_IP to _SET_IP, and similar (#109285)Guido van Rossum2023-09-111-35/+35
* gh-109039: Branch prediction for Tier 2 interpreter (#109038)Guido van Rossum2023-09-111-9/+13
* gh-109118: Fix runtime crash when NameError happens in PEP 695 function (#109...Jelle Zijlstra2023-09-091-52/+38
* GH-108614: Add `RESUME_CHECK` instruction (GH-108630)Mark Shannon2023-09-071-2/+8
* GH-108614: Remove `TIER_ONE` and `TIER_TWO` from `_PUSH_FRAME` (GH-108725)Mark Shannon2023-09-041-3/+3
* gh-107557: Remove unnecessary SAVE_IP instructions (#108583)Guido van Rossum2023-08-291-195/+255
* gh-107901: add the HAS_EVAL_BREAK instruction flag (#108375)Irit Katriel2023-08-251-17/+19
* gh-106581: Split CALL_BOUND_METHOD_EXACT_ARGS into uops (#108462)Guido van Rossum2023-08-251-14/+27
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-231-0/+20
* 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/+4
* gh-106581: Project through calls (#108067)Guido van Rossum2023-08-171-39/+48
* gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)Guido van Rossum2023-08-161-4/+43
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-161-0/+490
* gh-107557: Setup abstract interpretation (#107847)Ken Jin2023-08-151-0/+142
* gh-105481: reduce repetition in opcode metadata generation code (#107942)Irit Katriel2023-08-141-14/+15
* GH-105848: Simplify the arrangement of CALL's stack (GH-107788)Brandt Bucher2023-08-091-9/+9
* GH-107596: Specialize str[int] (GH-107597)Brandt Bucher2023-08-081-0/+6
* gh-106812: Refactor cases_generator to allow uops with array stack effects (#...Guido van Rossum2023-08-041-4/+15
* GH-104909: Move unused cache entries from uops to macros (#107444)Guido van Rossum2023-07-311-26/+24
* gh-105481: Generate the opcode lists in dis from data extracted from bytecode...Irit Katriel2023-07-181-16/+20
* 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-16/+26
* gh-106581: Add 10 new opcodes by allowing `assert(kwnames == NULL)` (#106707)Guido van Rossum2023-07-171-0/+10
* gh-106797: Remove warning logs from Python/generated_cases.c.h (gh-106798)Dong-hee Na2023-07-171-5/+5
* gh-105481: expose opcode metadata via the _opcode module (#106688)Irit Katriel2023-07-141-10/+22
* gh-106529: Split FOR_ITER_{LIST,TUPLE} into uops (#106696)Guido van Rossum2023-07-141-7/+19
* gh-106701: Move the hand-written Tier 2 uops to bytecodes.c (#106702)Guido van Rossum2023-07-131-50/+50
* GH-104909: Split `LOAD_ATTR_INSTANCE_VALUE` into micro-ops (GH-106678)Mark Shannon2023-07-131-9/+13