Lines Matching defs:def_op
38 def def_op(name, op):
43 def_op(name, op)
47 def_op(name, op)
51 def_op(name, op)
57 def_op('CACHE', 0)
58 def_op('POP_TOP', 1)
59 def_op('PUSH_NULL', 2)
61 def_op('NOP', 9)
62 def_op('UNARY_POSITIVE', 10)
63 def_op('UNARY_NEGATIVE', 11)
64 def_op('UNARY_NOT', 12)
66 def_op('UNARY_INVERT', 15)
68 def_op('BINARY_SUBSCR', 25)
70 def_op('GET_LEN', 30)
71 def_op('MATCH_MAPPING', 31)
72 def_op('MATCH_SEQUENCE', 32)
73 def_op('MATCH_KEYS', 33)
75 def_op('PUSH_EXC_INFO', 35)
76 def_op('CHECK_EXC_MATCH', 36)
77 def_op('CHECK_EG_MATCH', 37)
79 def_op('WITH_EXCEPT_START', 49)
80 def_op('GET_AITER', 50)
81 def_op('GET_ANEXT', 51)
82 def_op('BEFORE_ASYNC_WITH', 52)
83 def_op('BEFORE_WITH', 53)
84 def_op('END_ASYNC_FOR', 54)
86 def_op('STORE_SUBSCR', 60)
87 def_op('DELETE_SUBSCR', 61)
89 def_op('GET_ITER', 68)
90 def_op('GET_YIELD_FROM_ITER', 69)
91 def_op('PRINT_EXPR', 70)
92 def_op('LOAD_BUILD_CLASS', 71)
94 def_op('LOAD_ASSERTION_ERROR', 74)
95 def_op('RETURN_GENERATOR', 75)
97 def_op('LIST_TO_TUPLE', 82)
98 def_op('RETURN_VALUE', 83)
99 def_op('IMPORT_STAR', 84)
100 def_op('SETUP_ANNOTATIONS', 85)
101 def_op('YIELD_VALUE', 86)
102 def_op('ASYNC_GEN_WRAP', 87)
103 def_op('PREP_RERAISE_STAR', 88)
104 def_op('POP_EXCEPT', 89)
110 def_op('UNPACK_SEQUENCE', 92) # Number of tuple items
112 def_op('UNPACK_EX', 94)
117 def_op('SWAP', 99)
118 def_op('LOAD_CONST', 100) # Index in const list
121 def_op('BUILD_TUPLE', 102) # Number of tuple items
122 def_op('BUILD_LIST', 103) # Number of list items
123 def_op('BUILD_SET', 104) # Number of set items
124 def_op('BUILD_MAP', 105) # Number of dict entries
126 def_op('COMPARE_OP', 107) # Comparison operator
136 def_op('IS_OP', 117)
137 def_op('CONTAINS_OP', 118)
138 def_op('RERAISE', 119)
139 def_op('COPY', 120)
140 def_op('BINARY_OP', 122)
142 def_op('LOAD_FAST', 124) # Local variable number
144 def_op('STORE_FAST', 125) # Local variable number
146 def_op('DELETE_FAST', 126) # Local variable number
150 def_op('RAISE_VARARGS', 130) # Number of raise arguments (1, 2, or 3)
151 def_op('GET_AWAITABLE', 131)
152 def_op('MAKE_FUNCTION', 132) # Flags
153 def_op('BUILD_SLICE', 133) # Number of items
155 def_op('MAKE_CELL', 135)
157 def_op('LOAD_CLOSURE', 136)
159 def_op('LOAD_DEREF', 137)
161 def_op('STORE_DEREF', 138)
163 def_op('DELETE_DEREF', 139)
167 def_op('CALL_FUNCTION_EX', 142) # Flags
169 def_op('EXTENDED_ARG', 144)
171 def_op('LIST_APPEND', 145)
172 def_op('SET_ADD', 146)
173 def_op('MAP_ADD', 147)
174 def_op('LOAD_CLASSDEREF', 148)
176 def_op('COPY_FREE_VARS', 149)
178 def_op('RESUME', 151) # This must be kept in sync with deepfreeze.py
179 def_op('MATCH_CLASS', 152)
181 def_op('FORMAT_VALUE', 155)
182 def_op('BUILD_CONST_KEY_MAP', 156)
183 def_op('BUILD_STRING', 157)
187 def_op('LIST_EXTEND', 162)
188 def_op('SET_UPDATE', 163)
189 def_op('DICT_MERGE', 164)
190 def_op('DICT_UPDATE', 165)
191 def_op('PRECALL', 166)
193 def_op('CALL', 171)
194 def_op('KW_NAMES', 172)
203 del def_op, name_op, jrel_op, jabs_op