-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter #26595
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
Merged
markshannon
merged 17 commits into
python:main
from
faster-cpython:specialize-load-attr
Jun 10, 2021
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
8db0653
Specialize LOAD_ATTR with LOAD_ATTR_SLOT and LOAD_ATTR_SPLIT_KEYS
markshannon 35522bc
Move dict-common.h to internal/pycore_dict.h
markshannon 3ca2c7c
Add LOAD_ATTR_COMBINED_KEYS specialized opcode.
markshannon 3d50df3
Quicken in function if loopy
markshannon 85dd177
Specialize LOAD_ATTR for module attributes.
markshannon e54f76b
Set dict version to zero before setting index
markshannon eb08f91
Don't crash if module has no dictionary
markshannon a03abb3
Rename LOAD_ATTR_COMBINED_KEYS to LOAD_ATTR_WITH_HINT. Add NEWS item.
markshannon 1079964
Fix name and use wider cache slot.
markshannon d2e0940
Remove rebase artifact
markshannon d890943
Use specialization stats
markshannon f9e999c
Use _PyDict_GetItemHint instead of _Py_dict_lookup to determine index…
markshannon e858ea1
Assert that address is in bounds (ASAN thinks it might not be).
markshannon a0ed9e2
Fix off by one error
markshannon b07f219
Fix compiler warnings and check slot offset can be stored in index field
markshannon 6d9ef8d
Merge branch 'main' into specialize-load-attr
markshannon 41cb98f
Merge branch 'main' into specialize-load-attr
markshannon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use specialization stats
- Loading branch information
commit d8909438f8a6a82c61db6e384b90d17b434cc2c5
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Just casually reading through some of the code, it looks like the
STAT_INC(loadattr_hit);
is duplicated here (see two lines up).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.
Thanks Carl. #26718