Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose functions called from the interpreter loop via PyAPI_FUNC #131776

Open
martindemello opened this issue Mar 26, 2025 · 2 comments
Open

Expose functions called from the interpreter loop via PyAPI_FUNC #131776

martindemello opened this issue Mar 26, 2025 · 2 comments
Labels
interpreter-core (Objects, Python, Grammar, and Parser dirs) topic-C-API topic-JIT

Comments

@martindemello
Copy link
Contributor

Rationale: JIT code often needs access to functions called from the interpreter loop (in ceval.c or bytecodes.c), even if they are technically internal functions. gh-115802 is a good example - it added PyAPI_FUNC to a lot of functions in Include/internal.

Cinder currently relies on a fork of 3.12 with a lot of new functions exposed; some but not all of these have also been exposed in 3.13+. As a start, I would like to send in a PR for the functions we have already needed to expose for cinder (e.g. _PyNumber_InPlacePowerNoMod), but more generally it might be useful to look at all the Py* and _Py* functions used directly in ceval or bytecodes and consider exposing them even if no specific JIT has needed them yet.

@tomasr8 tomasr8 added interpreter-core (Objects, Python, Grammar, and Parser dirs) topic-JIT labels Mar 26, 2025
@brandtbucher
Copy link
Member

more generally it might be useful to look at all the Py* and _Py* functions used directly in ceval or bytecodes and consider exposing them even if no specific JIT has needed them yet.

Eh, I'm inclined to wait until people ask for them. Just exposing a bunch of internal, unstable functions with no users doesn't make much sense to me. At best, nobody will actually use them. At worst, people will start using them. :)

@ZeroIntensity
Copy link
Member

If anything, it would be good to expose things in the unstable API rather than the private API.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
interpreter-core (Objects, Python, Grammar, and Parser dirs) topic-C-API topic-JIT
Projects
None yet
Development

No branches or pull requests

4 participants