summaryrefslogtreecommitdiffstats
path: root/Python/opcode_targets.h
Commit message (Expand)AuthorAgeFilesLines
* gh-100239: specialize BINARY_OP/SUBSCR for list-slice (#132626)Irit Katriel2025-05-011-2/+3
* GH-125515: Remove two unused error branches. (#133181)Russell Keith-Magee2025-04-301-2/+0
* gh-132661: Implement PEP 750 (#132662)Lysandros Nikolaou2025-04-301-6/+8
* gh-130704: Strength reduce `LOAD_FAST{_LOAD_FAST}` (#130708)mpage2025-04-011-4/+6
* GH-128534: Fix behavior of branch monitoring for `async for` (GH-130847)Mark Shannon2025-03-071-2/+2
* gh-130574: renumber RESUME opcode from 149 to 128 (GH-130685)Tomasz Pytel2025-03-061-42/+42
* GH-128534: Instrument branches for `async for` loops. (GH-130569)Mark Shannon2025-02-271-2/+3
* gh-129989: Properly disable tailcall interp in configure (GH-129991)Ken Jin2025-02-151-1/+1
* gh-100239: replace BINARY_SUBSCR & family by BINARY_OP with oparg NB_SUBSCR (...Irit Katriel2025-02-071-20/+19
* gh-128563: A new tail-calling interpreter (GH-128718)Ken Jin2025-02-061-0/+505
* GH-128563: Generate `opcode = ...` in instructions that need `opcode` (GH-129...Mark Shannon2025-02-031-3/+3
* GH-126599: Remove the PyOptimizer API (GH-129194)Brandt Bucher2025-01-291-2/+2
* GH-128914: Remove all but one conditional stack effects (GH-129226)Mark Shannon2025-01-271-2/+2
* Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...Sam Gross2025-01-231-9/+9
* GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...Mark Shannon2025-01-201-9/+9
* gh-100239: specialize long tail of binary operations (#128722)Irit Katriel2025-01-161-1/+1
* GH-128685: Specialize (rather than quicken) LOAD_CONST into LOAD_CONST_[IM]MO...Mark Shannon2025-01-131-1/+1
* GH-128375: Better instrument for `FOR_ITER` (GH-128445)Mark Shannon2025-01-061-2/+2
* GH-122548: Implement branch taken and not taken events for sys.monitoring (GH...Mark Shannon2024-12-191-2/+2
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-291-2/+2
* GH-119866: Spill the stack around escaping calls. (GH-124392)Mark Shannon2024-10-071-1/+1
* GH-123040: Specialize shadowed `LOAD_ATTR`. (GH-123219)Mark Shannon2024-08-231-1/+1
* GH-118093: Specialize `CALL_KW` (GH-123006)Mark Shannon2024-08-161-3/+3
* GH-120024: Remove `CHECK_EVAL_BREAKER` macro. (GH-122968)Mark Shannon2024-08-141-3/+3
* GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)Mark Shannon2024-08-131-2/+2
* GH-122029: Break INSTRUMENTED_CALL into micro-ops, so that its behavior is co...Mark Shannon2024-07-261-1/+1
* GH-121131: Clean up and fix some instrumented instructions. (GH-121132)Mark Shannon2024-07-261-3/+3
* GH-122160: Remove BUILD_CONST_KEY_MAP opcode. (GH-122164)Mark Shannon2024-07-251-1/+1
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-181-4/+4
* gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)Jelle Zijlstra2024-05-221-1/+1
* GH-118095: Use broader specializations of CALL in tier 1, for better tier 2 s...Mark Shannon2024-05-041-3/+3
* gh-116381: Remove bad specializations, add fail stats (GH-116464)Ken Jin2024-03-071-3/+3
* gh-116381: Specialize CONTAINS_OP (GH-116385)Ken Jin2024-03-061-5/+5
* GH-111485: Generate `TARGET` table for computed goto dispatch. (GH-113319)Mark Shannon2023-12-201-1/+2
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-031-1/+1
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-021-1/+1
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-14/+14
* gh-109256: allocate opcode IDs for internal opcodes in their own range (#109269)Irit Katriel2023-09-121-71/+71
* GH-108614: Add `RESUME_CHECK` instruction (GH-108630)Mark Shannon2023-09-071-2/+2
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-161-167/+166
* GH-107596: Specialize str[int] (GH-107597)Brandt Bucher2023-08-081-17/+17
* GH-100288: Specialize LOAD_ATTR for simple class attributes. (#105990)Mark Shannon2023-07-101-18/+18
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-291-61/+61
* gh-105775: Convert LOAD_CLOSURE to a pseudo-op (#106059)hms2023-06-291-5/+5
* GH-91095: Specialize calls to normal Python classes. (GH-99331)Mark Shannon2023-06-221-21/+21
* gh-105481: generate _specializations and _specialized_instructions from bytec...Irit Katriel2023-06-191-52/+52
* GH-77273: Better bytecodes for f-strings (GH-6132)Mark Shannon2023-06-141-22/+22
* GH-105678: Split MAKE_FUNCTION into MAKE_FUNCTION and SET_FUNCTION_ATTRIBUTE ...Mark Shannon2023-06-131-15/+15
* GH-105229: Remove remaining two-codeunit superinstructions (GH-105326)Mark Shannon2023-06-081-10/+10
* GH-105229: Replace some superinstructions with single instruction equivalent....Mark Shannon2023-06-051-11/+11