summaryrefslogtreecommitdiffstats
path: root/Python/opcode_metadata.h
Commit message (Expand)AuthorAgeFilesLines
* GH-104584: Fix ENTER_EXECUTOR (GH-106141)Mark Shannon2023-07-031-1/+1
* gh-106290: Fix edge cases around uops (#106319)Guido van Rossum2023-07-031-2/+4
* gh-106149: move unconditional jump direction resolution from optimizer to ass...Irit Katriel2023-07-011-2/+2
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-291-1/+42
* gh-105775: Convert LOAD_CLOSURE to a pseudo-op (#106059)hms2023-06-291-0/+1
* gh-104584: Emit macro expansions to opcode_metadata.h (#106163)Guido van Rossum2023-06-281-0/+32
* gh-104584: Baby steps towards generating and executing traces (#105924)Guido van Rossum2023-06-271-0/+106
* GH-91095: Specialize calls to normal Python classes. (GH-99331)Mark Shannon2023-06-221-0/+10
* gh-105481: add HAS_JUMP flag to opcode metadata (#105791)Irit Katriel2023-06-141-14/+16
* GH-77273: Better bytecodes for f-strings (GH-6132)Mark Shannon2023-06-141-4/+14
* gh-105481: add flags to each instr in the opcode metadata table, to replace o...Irit Katriel2023-06-131-203/+210
* GH-105678: Split MAKE_FUNCTION into MAKE_FUNCTION and SET_FUNCTION_ATTRIBUTE ...Mark Shannon2023-06-131-2/+7
* gh-105481: add pseudo-instructions to the bytecodes DSL (#105506)Irit Katriel2023-06-111-2/+76
* GH-105229: Remove remaining two-codeunit superinstructions (GH-105326)Mark Shannon2023-06-081-11/+1
* GH-105229: Replace some superinstructions with single instruction equivalent....Mark Shannon2023-06-051-15/+15
* gh-105214: Use named constants for MAKE_FUNCTION oparg (#105215)Jelle Zijlstra2023-06-021-1/+1
* GH-104584: Plugin optimizer API (GH-105100)Mark Shannon2023-06-021-0/+5
* gh-104909: Split BINARY_OP into micro-ops (#104910)Guido van Rossum2023-05-311-22/+22
* gh-103865: add monitoring support to LOAD_SUPER_ATTR (#103866)Carl Meyer2023-05-161-0/+5
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-161-5/+15
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-121-5/+0
* gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization (#104270)Carl Meyer2023-05-111-3/+8
* gh-87849: fix SEND specialization family definition (GH-104268)Carl Meyer2023-05-111-1/+1
* gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)Carl Meyer2023-05-091-0/+5
* gh-87729: specialize LOAD_SUPER_ATTR_METHOD (#103809)Carl Meyer2023-04-251-2/+7
* gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)Carl Meyer2023-04-241-0/+5
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-0/+95
* GH-88691: Shrink the CALL caches (GH-103230)Brandt Bucher2023-04-051-19/+19
* gh-87092: move CFG related code from compile.c to flowgraph.c (#103021)Irit Katriel2023-03-311-3/+3
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-291-5/+5
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-231-18/+13
* gh-102859: Remove JUMP_IF_FALSE_OR_POP and JUMP_IF_TRUE_OR_POP (#102870)Irit Katriel2023-03-221-10/+0
* gh-102738: remove from cases generator the code related to register instructi...Irit Katriel2023-03-151-174/+170
* GH-90997: Shrink the LOAD_GLOBAL caches (#102569)Brandt Bucher2023-03-111-4/+4
* gh-102021 : Allow multiple input files for interpreter loop generator (#102022)Jacob Bower2023-03-041-2/+3
* gh-101799: implement PREP_RERAISE_STAR as an intrinsic function (#101800)Irit Katriel2023-02-141-5/+5
* GH-87849: Simplify stack effect of SEND and specialize it for generators and ...Mark Shannon2023-02-131-3/+8
* gh-98831: Use opcode metadata for stack_effect() (#101704)Guido van Rossum2023-02-091-7/+18
* gh-98831: Modernize CALL and family (#101508)Guido van Rossum2023-02-081-56/+56
* gh-98831: Modernize CALL_FUNCTION_EX (#101627)Guido van Rossum2023-02-081-2/+2
* gh-98831: Modernize FORMAT_VALUE (#101628)Guido van Rossum2023-02-081-2/+2
* gh-98831: Finish the UNPACK_SEQUENCE family (#101666)Guido van Rossum2023-02-071-8/+8
* gh-101632: Add the new RETURN_CONST opcode (#101633)penguin_wwy2023-02-071-0/+5
* gh-98831: rewrite UNPACK_EX, UNPACK_SEQUENCE, UNPACK_SEQUENCE_TWO_TUPLE in th...Irit Katriel2023-02-071-8/+8
* gh-98831: Modernize the FOR_ITER family of instructions (#101626)Guido van Rossum2023-02-071-15/+15
* gh-98831: rewrite COPY and SWAP in the instruction definition DSL (#101620)Irit Katriel2023-02-061-4/+4
* gh-98831: rewrite MAKE_FUNCTION and BUILD_SLICE in the instruction definition...Irit Katriel2023-02-031-4/+4
* gh-98831: rewrite SEND, GET_YIELD_FROM_ITER, RETURN_GENERATOR in the instruct...Irit Katriel2023-02-031-6/+6
* gh-98831: rewrite RERAISE and CLEANUP_THROW in the instruction definition DSL...Irit Katriel2023-02-021-4/+4
* gh-98831: Modernize the LOAD_GLOBAL family (#101502)Guido van Rossum2023-02-011-10/+10