-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
gh-124153: Remove _PyType_GetModuleByDef2
private function
#124261
Conversation
Unlike PyType_GetModuleByDef(), this uses PyType_HasFeature() for differentiation.
This will not be inlined, but hopefully 4% faster on Windows PGO. The forceinline version was less efficient (2% faster).
PyType_GetModuleByDef() is now slower.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
Looks like this removes the only call to |
Why not removing _PyType_GetModuleByDef2() body as well? |
Py_tp_token
slot and PyType_GetBaseByToken()
in a few modules_PyType_GetModuleByDef2
private function
(Does it really make sense to remove |
To be honest I don't follow too closely the order in which the changes here should be made/merged. If this removes the last call to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
PyType_GetBaseByToken
function withPy_tp_token
slot #124153