summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_frame.h
Commit message (Expand)AuthorAgeFilesLines
* gh-130704: Strength reduce `LOAD_FAST{_LOAD_FAST}` (#130708)mpage2025-04-011-0/+6
* gh-130931: Add pycore_interpframe.h internal header (#131249)Victor Stinner2025-03-191-363/+4
* gh-130931: Add pycore_typedefs.h internal header (#131396)Victor Stinner2025-03-191-3/+4
* GH-131238: More refactoring of core header files (GH-131351)Mark Shannon2025-03-171-0/+1
* GH-127705: Use `_PyStackRef`s in the default build. (GH-127875)Mark Shannon2025-03-101-8/+17
* gh-129236: Use `stackpointer` in free threaded GC (#129240)Sam Gross2025-01-291-24/+0
* GH-128563: Don't leave frame->lltrace uninitialized (GH-129417)Brandt Bucher2025-01-291-0/+6
* gh-128954: Reorder _PyInterpreterFrame fields for reduced memory usage (#128958)Sam Gross2025-01-271-1/+1
* gh-128563: Move lltrace into the frame struct (GH-129113)Ken Jin2025-01-211-1/+6
* GH-128563: Add new frame owner type for interpreter entry frames (GH-129078)Mark Shannon2025-01-211-2/+3
* gh-127411: Fix invalid conversion of load of TLBC array when compiled in C++ ...mpage2024-12-021-1/+1
* GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...Mark Shannon2024-12-021-0/+3
* Revert "GH-126491: GC: Mark objects reachable from roots before doing cycle c...Hugo van Kemenade2024-11-191-3/+0
* GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...Mark Shannon2024-11-181-0/+3
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-041-4/+52
* gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)Sam Gross2024-09-241-9/+17
* gh-123923: Defer refcounting for `f_executable` in `_PyInterpreterFrame` (#12...Sam Gross2024-09-121-6/+7
* GH-118093: Make `CALL_ALLOC_AND_ENTER_INIT` suitable for tier 2. (GH-123140)Mark Shannon2024-08-201-5/+8
* gh-117139: Garbage collector support for deferred refcounting (#122956)Sam Gross2024-08-151-0/+24
* GH-120024: Use pointer for stack pointer (GH-121923)Mark Shannon2024-07-181-20/+25
* gh-118934: Make PyEval_GetLocals return borrowed reference (#119769)Tian Gao2024-07-161-0/+4
* gh-119786: fix broken links in docs and comment (#121601)Irit Katriel2024-07-101-1/+1
* gh-117139: Convert the evaluation stack to stack refs (#118450)Ken Jin2024-06-261-13/+14
* gh-120834: fix type of *_iframe field in _PyGenObject_HEAD declaration (#120835)Irit Katriel2024-06-241-8/+0
* Fix typos in comments (#120481)Xie Yanbo2024-06-201-1/+1
* gh-74929: Implement PEP 667 (GH-115153)Tian Gao2024-05-041-8/+5
* GH-118095: Use broader specializations of CALL in tier 1, for better tier 2 s...Mark Shannon2024-05-041-0/+5
* gh-118272: Clear generator frame's locals when the generator is closed (#118277)Irit Katriel2024-04-301-0/+3
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-251-2/+12
* gh-117045: Add code object to function version cache (#117028)Guido van Rossum2024-03-211-1/+1
* 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