mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
GH-100288: Remove LOAD_ATTR_METHOD_WITH_DICT instruction. (GH-100753)
This commit is contained in:
parent
105e37395d
commit
f20c553a45
8 changed files with 40 additions and 95 deletions
33
Include/opcode.h
generated
33
Include/opcode.h
generated
|
@ -174,23 +174,22 @@ extern "C" {
|
|||
#define LOAD_ATTR_WITH_HINT 78
|
||||
#define LOAD_ATTR_METHOD_LAZY_DICT 79
|
||||
#define LOAD_ATTR_METHOD_NO_DICT 80
|
||||
#define LOAD_ATTR_METHOD_WITH_DICT 81
|
||||
#define LOAD_ATTR_METHOD_WITH_VALUES 86
|
||||
#define LOAD_CONST__LOAD_FAST 113
|
||||
#define LOAD_FAST__LOAD_CONST 121
|
||||
#define LOAD_FAST__LOAD_FAST 141
|
||||
#define LOAD_GLOBAL_BUILTIN 143
|
||||
#define LOAD_GLOBAL_MODULE 153
|
||||
#define STORE_ATTR_INSTANCE_VALUE 154
|
||||
#define STORE_ATTR_SLOT 158
|
||||
#define STORE_ATTR_WITH_HINT 159
|
||||
#define STORE_FAST__LOAD_FAST 160
|
||||
#define STORE_FAST__STORE_FAST 161
|
||||
#define STORE_SUBSCR_DICT 166
|
||||
#define STORE_SUBSCR_LIST_INT 167
|
||||
#define UNPACK_SEQUENCE_LIST 168
|
||||
#define UNPACK_SEQUENCE_TUPLE 169
|
||||
#define UNPACK_SEQUENCE_TWO_TUPLE 170
|
||||
#define LOAD_ATTR_METHOD_WITH_VALUES 81
|
||||
#define LOAD_CONST__LOAD_FAST 86
|
||||
#define LOAD_FAST__LOAD_CONST 113
|
||||
#define LOAD_FAST__LOAD_FAST 121
|
||||
#define LOAD_GLOBAL_BUILTIN 141
|
||||
#define LOAD_GLOBAL_MODULE 143
|
||||
#define STORE_ATTR_INSTANCE_VALUE 153
|
||||
#define STORE_ATTR_SLOT 154
|
||||
#define STORE_ATTR_WITH_HINT 158
|
||||
#define STORE_FAST__LOAD_FAST 159
|
||||
#define STORE_FAST__STORE_FAST 160
|
||||
#define STORE_SUBSCR_DICT 161
|
||||
#define STORE_SUBSCR_LIST_INT 166
|
||||
#define UNPACK_SEQUENCE_LIST 167
|
||||
#define UNPACK_SEQUENCE_TUPLE 168
|
||||
#define UNPACK_SEQUENCE_TWO_TUPLE 169
|
||||
#define DO_TRACING 255
|
||||
|
||||
#define HAS_ARG(op) ((((op) >= HAVE_ARGUMENT) && (!IS_PSEUDO_OPCODE(op)))\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue