Implement biased reference counting in --disable-gil builds
#110481
Labels
3.13
new features, bugs and security fixes
interpreter-core
(Objects, Python, Grammar, and Parser dirs)
type-feature
A feature request or enhancement
Feature or enhancement
CPython's current reference counting implementation would not be thread-safe without the GIL. In
--disable-gilbuilds, we should implement biased reference counting, which is thread-safe and has lower execution overhead compared to plain atomic reference counting. The design is described in the "Biased Reference Counting" section of PEP 703.This will require changing the
PyObjectstruct in--disable-gilbuilds. I expect the--disable-gilstruct to look like:Not all the fields will be used immediately, but it will be easier to include them as part of implementing this change.
I intend to split the implementation across (at least) two PRs to make it easier to review.
PyObjectfields and implement the core biased reference counting operations, but not the inter-thread queue to reduce the initial complexity.The inter-thread queue is needed eventually (before actually disabling the GIL), but since the
--disable-gilbuilds still currently require the GIL, it doesn't have to be in the initial PR.Linked PRs
The text was updated successfully, but these errors were encountered: