summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_frame.h
Commit message (Expand)AuthorAgeFilesLines
* gh-111354: remove comparisons with enum values, variable reuse, unused import...Irit Katriel2023-11-091-0/+1
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-031-2/+5
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-261-16/+6
* gh-109094: remove redundant arg to _PyFrame_PushTrampolineUnchecked (GH-110759)Irit Katriel2023-10-121-2/+2
* gh-107149: Make PyUnstable_ExecutableKinds public (#108440)Victor Stinner2023-08-311-8/+0
* gh-108220: Internal header files require Py_BUILD_CORE to be defined (#108221)Victor Stinner2023-08-211-0/+4
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-171-1/+1
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-2/+2
* gh-105340: include hidden fast-locals in locals() (#105715)Carl Meyer2023-07-051-0/+3
* GH-91095: Specialize calls to normal Python classes. (GH-99331)Mark Shannon2023-06-221-0/+24
* GH-100987: Allow objects other than code objects as the "executable" of an in...Mark Shannon2023-06-141-7/+23
* Revert "Move observability-relevant structure fields to the top" (#105512)Pablo Galindo Salgado2023-06-081-9/+5
* Move observability-relevant structure fields to the top (#105271)Gabriele N. Tornetta2023-06-081-5/+9
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-121-1/+0
* GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...Mark Shannon2023-05-051-2/+0
* GH-103082: Code cleanup in instrumentation code (#103474)Mark Shannon2023-04-291-3/+3
* GH-103488: Use return-offset, not yield-offset. (GH-103502)Mark Shannon2023-04-131-2/+8
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-1/+8
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-231-1/+1
* GH-100987: Refactor `_PyInterpreterFrame` a bit, to assist generator improvem...Mark Shannon2023-02-131-4/+2
* GH-100126: Skip incomplete frames in more places (GH-100613)Brandt Bucher2023-01-091-0/+15
* gh-100758: Refactor initialisation of frame headers into a single function (_...Irit Katriel2023-01-061-4/+8
* gh-100720: refactor calculation of number of frame slots for a code object in...Irit Katriel2023-01-041-1/+10
* gh-99110: Initialize `frame->previous` in init_frame to fix segmentation faul...Bill Fisher2022-12-231-1/+4
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-101-9/+8
* GH-96793: Specialize FOR_ITER for generators. (GH-98772)Mark Shannon2022-11-071-0/+2
* GH-96569: Add two NULL checks to avoid undefined behavior. (GH-96585)Mark Shannon2022-09-061-2/+7
* GH-96237: Allow non-functions as reference-holder in frames. (GH-96238)Mark Shannon2022-08-251-2/+2
* GH-94262: Don't create frame objects for frames that aren't yet complete. (GH...Mark Shannon2022-07-011-0/+17
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-201-23/+27
* GH-89480: Document motivation, design and implementation of 3.11 frame stack....Mark Shannon2022-04-111-0/+8
* bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)Brandt Bucher2022-04-071-7/+10
* Revert "bpo-44800: Document internal frame naming conventions (GH-32281)" (#3...Mark Shannon2022-04-041-69/+0
* bpo-44800: Document internal frame naming conventions (GH-32281)Nick Coghlan2022-04-031-0/+69
* bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...Mark Shannon2022-03-251-0/+1
* bpo-47045: Remove `f_state` field (GH-31963)Mark Shannon2022-03-221-26/+20
* bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)Victor Stinner2022-03-181-4/+0
* bpo-45431: Rename CFrame to _PyCFrame in the C API (GH-31584)Victor Stinner2022-02-281-1/+1
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-251-29/+29
* bpo-45316: Move private functions to internal C API (GH-31579)Victor Stinner2022-02-251-0/+2
* bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)Victor Stinner2022-02-251-0/+12
* Pass reference to func, as well as args, when pushing frame. (GH-31100)Mark Shannon2022-02-031-4/+2
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-281-0/+3
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-201-2/+2
* bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372)Brandt Bucher2022-01-051-2/+4
* bpo-46090: Allow PyThreadState.datastack_* members to be NULL (GH-30234)Brandt Bucher2021-12-281-4/+7
* bpo-46039: Split yield from in two (GH-30035)Mark Shannon2021-12-151-0/+1
* bpo-46008: Make runtime-global object/type lifecycle functions and state cons...Eric Snow2021-12-091-0/+8
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-061-1/+1
* bpo-45753: Interpreter internal tweaks (GH-29575)Mark Shannon2021-12-011-0/+5