{{ message }}
bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter#26638
Merged
markshannon merged 11 commits intoJun 14, 2021
Merged
Conversation
|
🤖 New build scheduled with the buildbot fleet by @markshannon for commit 8ad3e55 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
Sorry, something went wrong.
ericsnowcurrently
left a comment
Member
There was a problem hiding this comment.
There are a few spots where things are a little unclear but mostly I was able to follow the change.
Sorry, something went wrong.
jdevries3133
pushed a commit
to jdevries3133/cpython
that referenced
this pull request
Jun 19, 2021
…-26638) * Add specializations of LOAD_GLOBAL. * Add more stats. * Remove old opcache; it is no longer used. * Add NEWS
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.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.
Adds two specializations of
LOAD_GLOBAL:LOAD_GLOBAL_MODULEfor module variablesLOAD_GLOBAL_BUILTINfor builtins.Removes the old "opcache" mechanism.
Adds a few more stats (hidden behind a compile-time flag).
https://bugs.python.org/issue44338