{{ message }}
bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets.#26396
Merged
ericsnowcurrently merged 14 commits intoJun 7, 2021
Merged
bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets.#26396ericsnowcurrently merged 14 commits into
ericsnowcurrently merged 14 commits into
Conversation
markshannon
reviewed
May 27, 2021
24ecd90 to
b4ba659
Compare
May 27, 2021 23:55
b4ba659 to
4dceac6
Compare
June 4, 2021 00:07
markshannon
reviewed
Jun 4, 2021
markshannon
left a comment
Member
There was a problem hiding this comment.
Also a couple of Windows warnings.
Sorry, something went wrong.
4975013 to
16c3424
Compare
June 7, 2021 18:30
16c3424 to
2ea0f06
Compare
June 7, 2021 20:23
2ea0f06 to
5a4d984
Compare
June 7, 2021 20:46
24 hidden items
Load more…
|
🤖 New build scheduled with the buildbot fleet by @ericsnowcurrently for commit 05accc0 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
Sorry, something went wrong.
pablogsal
added a commit
to pablogsal/cpython
that referenced
this pull request
Jun 8, 2021
…s offsets. (pythongh-26396)" This reverts commit 631f993.
pablogsal
added a commit
that referenced
this pull request
Jun 8, 2021
ericsnowcurrently
added a commit
to ericsnowcurrently/cpython
that referenced
this pull request
Jun 8, 2021
…cals offsets. (pythongh-26396)" That commit (3fe921c) was reverted in pythonGH-26597 (3fe921c).
ericsnowcurrently
added a commit
that referenced
this pull request
Jun 8, 2021
This was reverted in GH-26596 (commit 6d518bb) due to some bad memory accesses. * Add the MAKE_CELL opcode. (gh-26396) The memory accesses have been fixed. https://bugs.python.org/issue43693
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.
This moves logic out of the frame initialization code and into the compiler and eval loop. Doing so simplifies the runtime code and allows us to optimize it better.
https://bugs.python.org/issue43693