-
-
Notifications
You must be signed in to change notification settings - Fork 32k
bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. #26396
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
Changes from all commits
110a891
4d1056b
e18489b
21acbc2
167cdc1
409b92a
da503d0
1a8400e
09f718f
cd2508f
362088d
9cdc8ba
5a4d984
05accc0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,14 +181,16 @@ def jabs_op(name, op): | |
def_op('MAKE_FUNCTION', 132) # Flags | ||
def_op('BUILD_SLICE', 133) # Number of items | ||
|
||
def_op('LOAD_CLOSURE', 135) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why the opcode shuffle? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My initial impression was that |
||
def_op('MAKE_CELL', 135) | ||
hasfree.append(135) | ||
def_op('LOAD_DEREF', 136) | ||
def_op('LOAD_CLOSURE', 136) | ||
hasfree.append(136) | ||
def_op('STORE_DEREF', 137) | ||
def_op('LOAD_DEREF', 137) | ||
hasfree.append(137) | ||
def_op('DELETE_DEREF', 138) | ||
def_op('STORE_DEREF', 138) | ||
hasfree.append(138) | ||
def_op('DELETE_DEREF', 139) | ||
hasfree.append(139) | ||
|
||
def_op('CALL_FUNCTION_KW', 141) # #args + #kwargs | ||
def_op('CALL_FUNCTION_EX', 142) # Flags | ||
|
Uh oh!
There was an error while loading. Please reload this page.