summaryrefslogtreecommitdiffstats
path: root/Lib/_opcode_metadata.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-116381: Remove bad specializations, add fail stats (GH-116464)Ken Jin2024-03-071-43/+37
| | | * Remove bad specializations, add fail stats
* gh-116381: Specialize CONTAINS_OP (GH-116385)Ken Jin2024-03-061-36/+48
| | | | | | | | | | | * Specialize CONTAINS_OP * 📜🤖 Added by blurb_it. * Add PyAPI_FUNC for JIT --------- Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
* GH-111485: Generate instruction and uop metadata (GH-113287)Mark Shannon2023-12-201-10/+8
|
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ↵Irit Katriel2023-11-031-75/+75
| | | | frame state (#111648)
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ↵Irit Katriel2023-11-021-75/+75
| | | | (#111459)
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-63/+64
|
* gh-109256: allocate opcode IDs for internal opcodes in their own range (#109269)Irit Katriel2023-09-121-186/+186
|
* GH-108614: Add `RESUME_CHECK` instruction (GH-108630)Mark Shannon2023-09-071-141/+145
|
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in ↵Irit Katriel2023-08-161-1/+225
| | | | opcode.py (#107971)
* GH-107596: Specialize str[int] (GH-107597)Brandt Bucher2023-08-081-0/+1
|
* GH-100288: Specialize LOAD_ATTR for simple class attributes. (#105990)Mark Shannon2023-07-101-0/+2
| | | * Add two more specializations of LOAD_ATTR.
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-291-0/+8
|
* GH-91095: Specialize calls to normal Python classes. (GH-99331)Mark Shannon2023-06-221-0/+1
|
* gh-105481: generate _specializations and _specialized_instructions from ↵Irit Katriel2023-06-191-0/+94
bytecodes.c (#105913)