mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
gh-105775: Convert LOAD_CLOSURE to a pseudo-op (#106059)
This enables super-instruction formation, removal of checks for uninitialized variables, and frees up an instruction.
This commit is contained in:
parent
3c70d467c1
commit
8bff940ad6
16 changed files with 733 additions and 702 deletions
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
|
||||
#define IS_PSEUDO_INSTR(OP) \
|
||||
((OP) == LOAD_CLOSURE) || \
|
||||
((OP) == STORE_FAST_MAYBE_NULL) || \
|
||||
((OP) == LOAD_SUPER_METHOD) || \
|
||||
((OP) == LOAD_ZERO_SUPER_METHOD) || \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue