• Home
  • Raw
  • Download

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)
70 def_op('BINARY_MATRIX_MULTIPLY', 16)
71 def_op('INPLACE_MATRIX_MULTIPLY', 17)
73 def_op('BINARY_POWER', 19)
74 def_op('BINARY_MULTIPLY', 20)
76 def_op('BINARY_MODULO', 22)
77 def_op('BINARY_ADD', 23)
78 def_op('BINARY_SUBTRACT', 24)
79 def_op('BINARY_SUBSCR', 25)
80 def_op('BINARY_FLOOR_DIVIDE', 26)
81 def_op('BINARY_TRUE_DIVIDE', 27)
82 def_op('INPLACE_FLOOR_DIVIDE', 28)
83 def_op('INPLACE_TRUE_DIVIDE', 29)
84 def_op('GET_LEN', 30)
85 def_op('MATCH_MAPPING', 31)
86 def_op('MATCH_SEQUENCE', 32)
87 def_op('MATCH_KEYS', 33)
88 def_op('COPY_DICT_WITHOUT_KEYS', 34)
90 def_op('WITH_EXCEPT_START', 49)
91 def_op('GET_AITER', 50)
92 def_op('GET_ANEXT', 51)
93 def_op('BEFORE_ASYNC_WITH', 52)
95 def_op('END_ASYNC_FOR', 54)
96 def_op('INPLACE_ADD', 55)
97 def_op('INPLACE_SUBTRACT', 56)
98 def_op('INPLACE_MULTIPLY', 57)
100 def_op('INPLACE_MODULO', 59)
101 def_op('STORE_SUBSCR', 60)
102 def_op('DELETE_SUBSCR', 61)
103 def_op('BINARY_LSHIFT', 62)
104 def_op('BINARY_RSHIFT', 63)
105 def_op('BINARY_AND', 64)
106 def_op('BINARY_XOR', 65)
107 def_op('BINARY_OR', 66)
108 def_op('INPLACE_POWER', 67)
109 def_op('GET_ITER', 68)
110 def_op('GET_YIELD_FROM_ITER', 69)
111 def_op('PRINT_EXPR', 70)
112 def_op('LOAD_BUILD_CLASS', 71)
113 def_op('YIELD_FROM', 72)
114 def_op('GET_AWAITABLE', 73)
115 def_op('LOAD_ASSERTION_ERROR', 74)
116 def_op('INPLACE_LSHIFT', 75)
117 def_op('INPLACE_RSHIFT', 76)
118 def_op('INPLACE_AND', 77)
119 def_op('INPLACE_XOR', 78)
120 def_op('INPLACE_OR', 79)
122 def_op('LIST_TO_TUPLE', 82)
123 def_op('RETURN_VALUE', 83)
124 def_op('IMPORT_STAR', 84)
125 def_op('SETUP_ANNOTATIONS', 85)
126 def_op('YIELD_VALUE', 86)
127 def_op('POP_BLOCK', 87)
129 def_op('POP_EXCEPT', 89)
135 def_op('UNPACK_SEQUENCE', 92) # Number of tuple items
137 def_op('UNPACK_EX', 94)
142 def_op('ROT_N', 99)
143 def_op('LOAD_CONST', 100) # Index in const list
146 def_op('BUILD_TUPLE', 102) # Number of tuple items
147 def_op('BUILD_LIST', 103) # Number of list items
148 def_op('BUILD_SET', 104) # Number of set items
149 def_op('BUILD_MAP', 105) # Number of dict entries
151 def_op('COMPARE_OP', 107) # Comparison operator
162 def_op('IS_OP', 117)
163 def_op('CONTAINS_OP', 118)
164 def_op('RERAISE', 119)
169 def_op('LOAD_FAST', 124) # Local variable number
171 def_op('STORE_FAST', 125) # Local variable number
173 def_op('DELETE_FAST', 126) # Local variable number
176 def_op('GEN_START', 129) # Kind of generator/coroutine
177 def_op('RAISE_VARARGS', 130) # Number of raise arguments (1, 2, or 3)
178 def_op('CALL_FUNCTION', 131) # #args
179 def_op('MAKE_FUNCTION', 132) # Flags
180 def_op('BUILD_SLICE', 133) # Number of items
182 def_op('LOAD_CLOSURE', 135)
184 def_op('LOAD_DEREF', 136)
186 def_op('STORE_DEREF', 137)
188 def_op('DELETE_DEREF', 138)
191 def_op('CALL_FUNCTION_KW', 141) # #args + #kwargs
192 def_op('CALL_FUNCTION_EX', 142) # Flags
194 def_op('EXTENDED_ARG', 144)
196 def_op('LIST_APPEND', 145)
197 def_op('SET_ADD', 146)
198 def_op('MAP_ADD', 147)
199 def_op('LOAD_CLASSDEREF', 148)
202 def_op('MATCH_CLASS', 152)
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)
211 def_op('LIST_EXTEND', 162)
212 def_op('SET_UPDATE', 163)
213 def_op('DICT_MERGE', 164)
214 def_op('DICT_UPDATE', 165)
216 del def_op, name_op, jrel_op, jabs_op