Uh oh!
There was an error while loading. Please reload this page.
bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. - #26396
Conversation
Uh oh!
There was an error while loading. Please reload this page.
24ecd90 to
b4ba659Compareb4ba659 to
4dceac6Compare
markshannon
left a comment
There was a problem hiding this comment.
Also a couple of Windows warnings.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
My initial impression was that MAKE_CELL should be at the front of the cell-related list and I figured it would be better to preserve the gap at 134. I figured it wouldn't matter but if it's a problem I can put MAKE_CELL at 139.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
4975013 to
16c3424Compare16c3424 to
2ea0f06Compare2ea0f06 to
5a4d984Comparebedevere-bot
commented
Jun 7, 2021
🤖 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. |
…s offsets. (pythongh-26396)" This reverts commit 631f993.
…cals offsets. (pythongh-26396)" That commit (3fe921c) was reverted in pythonGH-26597 (3fe921c).
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 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