aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/instrumentation.c
Commit message (Expand)AuthorAge
* gh-132336: Mark a few "slow path" functions used by the interpreter loop as n...mpage2025-04-10
* gh-131763: Replace the redundant check with assert in remove_tools (#131765)Sergey Muraviov2025-03-26
* gh-111178: fix UBSan failures for `Python/instrumentation.c` (#131608)Bénédikt Tran2025-03-24
* gh-131238: Remove includes from pycore_interp.h (#131495)Victor Stinner2025-03-20
* gh-131238: Remove more includes from pycore_interp.h (#131480)Victor Stinner2025-03-19
* gh-131238: Remove many includes from pycore_interp.h (#131472)Victor Stinner2025-03-19
* GH-131238: Core header refactor (GH-131250)Mark Shannon2025-03-17
* gh-131141: fix data race in instrumentation while registering callback (#131142)Kumar Aditya2025-03-13
* GH-128534: Fix behavior of branch monitoring for `async for` (GH-130847)Mark Shannon2025-03-07
* GH-128534: Instrument branches for `async for` loops. (GH-130569)Mark Shannon2025-02-27
* GH-129715: Don't project traces that return to an unknown caller (GH-130024)Brandt Bucher2025-02-12
* Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...Sam Gross2025-01-23
* GH-128563: Add new frame owner type for interpreter entry frames (GH-129078)Mark Shannon2025-01-21
* GH-127953: Make line number lookup O(1) regardless of the size of the code ob...Mark Shannon2025-01-21
* GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...Mark Shannon2025-01-20
* GH-128375: Better instrument for `FOR_ITER` (GH-128445)Mark Shannon2025-01-06
* GH-122548: Implement branch taken and not taken events for sys.monitoring (GH...Mark Shannon2024-12-19
* gh-114940: Add _Py_FOR_EACH_TSTATE_UNLOCKED(), and Friends (gh-127077)Eric Snow2024-11-21
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-04
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-29
* GH-116968: Remove branch from advance_backoff_counter (GH-124469)Mark Shannon2024-10-07
* gh-116750: Add clear_tool_id function to unregister events and callbacks (#12...Tian Gao2024-10-01
* GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)Mark Shannon2024-08-13
* gh-122247: Move instruction instrumentation sanity check after tracing check ...Tian Gao2024-08-07
* gh-117657: Fix some simple races in instrumentation.c (GH-120118)Ken Jin2024-06-13
* gh-111997: Fix argument count for LINE event and clarify type of argument cou...scoder2024-05-26
* gh-119431: fix refleak in test_monitoring (#119444)Irit Katriel2024-05-23
* gh-118692: Avoid creating unnecessary StopIteration instances for monitoring ...Irit Katriel2024-05-21
* gh-118415: Fix issues with local tracing being enabled/disabled on a function...Dino Viehland2024-05-06
* gh-111997: C-API for signalling monitoring events (#116413)Irit Katriel2024-05-04
* gh-107674: Improve performance of `sys.settrace` (GH-117133)Tian Gao2024-05-03
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-04-30
* gh-117657: Fix small issues with instrumentation and TSAN (#118064)Dino Viehland2024-04-30
* gh-107674: Lazy load line number to improve performance of tracing (GH-118127)Tian Gao2024-04-29
* gh-116818: Make `sys.settrace`, `sys.setprofile`, and monitoring thread-safe ...Dino Viehland2024-04-19
* gh-107674: Remove some unnecessary code in instrumentation code (GH-117393)Tian Gao2024-04-09
* gh-116968: Reimplement Tier 2 counters (#117144)Guido van Rossum2024-04-04
* gh-115832: Fix instrumentation version mismatch during interpreter shutdown (...Brett Simmers2024-03-04
* gh-116098: Revert "gh-107674: Improve performance of `sys.settrace` (GH-11498...Tian Gao2024-03-01
* gh-107674: Improve performance of `sys.settrace` (GH-114986)Tian Gao2024-02-28
* gh-115168: Add pystats counter for invalidated executors (GH-115169)Michael Droettboom2024-02-26
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-20
* GH-113486: Do not emit spurious PY_UNWIND events for optimized calls to class...Mark Shannon2024-01-05
* gh-103615: Use local events for opcode tracing (GH-109472)Tian Gao2023-11-03
* gh-110481: Implement biased reference counting (gh-110764)Sam Gross2023-10-30
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-26
* GH-109369: Add machinery for deoptimizing tier2 executors, both individually ...Mark Shannon2023-10-23
* GH-109369: Merge all eval-breaker flags and monitoring version into one word....Mark Shannon2023-10-04
* GH-107265: Add missing deoptimizations for ENTER_EXECUTOR's original opcode (...Tian Gao2023-09-22
* gh-109371: Fix monitoring with instruction events set (gh-109385)Tian Gao2023-09-18