-
-
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: Implement PyType_GetBaseByToken()
and Py_tp_token
slot
#124163
Conversation
I'll check this and PoC version again. |
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.
Looks great, thank you!
I have just one style suggestion. But if you'd like to keep it we can merge the PR as it is.
Objects/typeobject.c
Outdated
return -1; | ||
} | ||
|
||
if (!_PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE)) { |
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.
When I observed a good performance, the line had a typo (missing a NOT), though check_base_by_token()
was unused during a PGO test. The telco
got slower by 5-10% once I corrected, which was actually fixed by one of the following:
-
Use
if-else
statement -
Replace
_PyType_HasFeature()
with the publicPyType_HasFeature()
, not with ineffective(type->tp_flags & Py_TPFLAGS_HEAPTYPE)
They are not used in PyType_GetBaseByToken()
.
This chains the branches in PyType_GetBaseByToken() as well, which is effective when MSVC is in better condition on PGO.
I think I've finished. When checking a type without a result, this may be a bit slower than the draft PR, not trained well for now. |
PyType_GetBaseByToken
function withPy_tp_token
slot #124153📚 Documentation preview 📚: https://cpython-previews--124163.org.readthedocs.build/