Lines Matching refs:def_op
38 def def_op(name, op): function
43 def_op(name, op)
47 def_op(name, op)
51 def_op(name, op)
57 def_op('POP_TOP', 1)
58 def_op('ROT_TWO', 2)
59 def_op('ROT_THREE', 3)
60 def_op('DUP_TOP', 4)
61 def_op('DUP_TOP_TWO', 5)
62 def_op('ROT_FOUR', 6)
64 def_op('NOP', 9)
65 def_op('UNARY_POSITIVE', 10)
66 def_op('UNARY_NEGATIVE', 11)
67 def_op('UNARY_NOT', 12)
69 def_op('UNARY_INVERT', 15)
71 def_op('BINARY_MATRIX_MULTIPLY', 16)
72 def_op('INPLACE_MATRIX_MULTIPLY', 17)
74 def_op('BINARY_POWER', 19)
75 def_op('BINARY_MULTIPLY', 20)
77 def_op('BINARY_MODULO', 22)
78 def_op('BINARY_ADD', 23)
79 def_op('BINARY_SUBTRACT', 24)
80 def_op('BINARY_SUBSCR', 25)
81 def_op('BINARY_FLOOR_DIVIDE', 26)
82 def_op('BINARY_TRUE_DIVIDE', 27)
83 def_op('INPLACE_FLOOR_DIVIDE', 28)
84 def_op('INPLACE_TRUE_DIVIDE', 29)
86 def_op('RERAISE', 48)
87 def_op('WITH_EXCEPT_START', 49)
88 def_op('GET_AITER', 50)
89 def_op('GET_ANEXT', 51)
90 def_op('BEFORE_ASYNC_WITH', 52)
92 def_op('END_ASYNC_FOR', 54)
93 def_op('INPLACE_ADD', 55)
94 def_op('INPLACE_SUBTRACT', 56)
95 def_op('INPLACE_MULTIPLY', 57)
97 def_op('INPLACE_MODULO', 59)
98 def_op('STORE_SUBSCR', 60)
99 def_op('DELETE_SUBSCR', 61)
100 def_op('BINARY_LSHIFT', 62)
101 def_op('BINARY_RSHIFT', 63)
102 def_op('BINARY_AND', 64)
103 def_op('BINARY_XOR', 65)
104 def_op('BINARY_OR', 66)
105 def_op('INPLACE_POWER', 67)
106 def_op('GET_ITER', 68)
107 def_op('GET_YIELD_FROM_ITER', 69)
109 def_op('PRINT_EXPR', 70)
110 def_op('LOAD_BUILD_CLASS', 71)
111 def_op('YIELD_FROM', 72)
112 def_op('GET_AWAITABLE', 73)
113 def_op('LOAD_ASSERTION_ERROR', 74)
114 def_op('INPLACE_LSHIFT', 75)
115 def_op('INPLACE_RSHIFT', 76)
116 def_op('INPLACE_AND', 77)
117 def_op('INPLACE_XOR', 78)
118 def_op('INPLACE_OR', 79)
120 def_op('LIST_TO_TUPLE', 82)
121 def_op('RETURN_VALUE', 83)
122 def_op('IMPORT_STAR', 84)
123 def_op('SETUP_ANNOTATIONS', 85)
124 def_op('YIELD_VALUE', 86)
125 def_op('POP_BLOCK', 87)
127 def_op('POP_EXCEPT', 89)
133 def_op('UNPACK_SEQUENCE', 92) # Number of tuple items
135 def_op('UNPACK_EX', 94)
140 def_op('LOAD_CONST', 100) # Index in const list
143 def_op('BUILD_TUPLE', 102) # Number of tuple items
144 def_op('BUILD_LIST', 103) # Number of list items
145 def_op('BUILD_SET', 104) # Number of set items
146 def_op('BUILD_MAP', 105) # Number of dict entries
148 def_op('COMPARE_OP', 107) # Comparison operator
162 def_op('IS_OP', 117)
163 def_op('CONTAINS_OP', 118)
168 def_op('LOAD_FAST', 124) # Local variable number
170 def_op('STORE_FAST', 125) # Local variable number
172 def_op('DELETE_FAST', 126) # Local variable number
175 def_op('RAISE_VARARGS', 130) # Number of raise arguments (1, 2, or 3)
176 def_op('CALL_FUNCTION', 131) # #args
177 def_op('MAKE_FUNCTION', 132) # Flags
178 def_op('BUILD_SLICE', 133) # Number of items
179 def_op('LOAD_CLOSURE', 135)
181 def_op('LOAD_DEREF', 136)
183 def_op('STORE_DEREF', 137)
185 def_op('DELETE_DEREF', 138)
188 def_op('CALL_FUNCTION_KW', 141) # #args + #kwargs
189 def_op('CALL_FUNCTION_EX', 142) # Flags
193 def_op('LIST_APPEND', 145)
194 def_op('SET_ADD', 146)
195 def_op('MAP_ADD', 147)
197 def_op('LOAD_CLASSDEREF', 148)
200 def_op('EXTENDED_ARG', 144)
205 def_op('FORMAT_VALUE', 155)
206 def_op('BUILD_CONST_KEY_MAP', 156)
207 def_op('BUILD_STRING', 157)
210 def_op('CALL_METHOD', 161)
212 def_op('LIST_EXTEND', 162)
213 def_op('SET_UPDATE', 163)
214 def_op('DICT_MERGE', 164)
215 def_op('DICT_UPDATE', 165)
217 del def_op, name_op, jrel_op, jabs_op