Go to the documentation of this file.
18 #define UNARY_POSITIVE 10
19 #define UNARY_NEGATIVE 11
21 #define UNARY_CONVERT 13
23 #define UNARY_INVERT 15
25 #define BINARY_POWER 19
27 #define BINARY_MULTIPLY 20
28 #define BINARY_DIVIDE 21
29 #define BINARY_MODULO 22
31 #define BINARY_SUBTRACT 24
32 #define BINARY_SUBSCR 25
33 #define BINARY_FLOOR_DIVIDE 26
34 #define BINARY_TRUE_DIVIDE 27
35 #define INPLACE_FLOOR_DIVIDE 28
36 #define INPLACE_TRUE_DIVIDE 29
41 #define STORE_SLICE 40
44 #define DELETE_SLICE 50
48 #define INPLACE_ADD 55
49 #define INPLACE_SUBTRACT 56
50 #define INPLACE_MULTIPLY 57
51 #define INPLACE_DIVIDE 58
52 #define INPLACE_MODULO 59
53 #define STORE_SUBSCR 60
54 #define DELETE_SUBSCR 61
56 #define BINARY_LSHIFT 62
57 #define BINARY_RSHIFT 63
61 #define INPLACE_POWER 67
66 #define PRINT_NEWLINE 72
67 #define PRINT_ITEM_TO 73
68 #define PRINT_NEWLINE_TO 74
69 #define INPLACE_LSHIFT 75
70 #define INPLACE_RSHIFT 76
71 #define INPLACE_AND 77
72 #define INPLACE_XOR 78
75 #define WITH_CLEANUP 81
76 #define LOAD_LOCALS 82
77 #define RETURN_VALUE 83
78 #define IMPORT_STAR 84
80 #define YIELD_VALUE 86
82 #define END_FINALLY 88
83 #define BUILD_CLASS 89
85 #define HAVE_ARGUMENT 90
88 #define DELETE_NAME 91
89 #define UNPACK_SEQUENCE 92
91 #define LIST_APPEND 94
94 #define DELETE_ATTR 96
95 #define STORE_GLOBAL 97
96 #define DELETE_GLOBAL 98
98 #define LOAD_CONST 100
100 #define BUILD_TUPLE 102
101 #define BUILD_LIST 103
102 #define BUILD_SET 104
103 #define BUILD_MAP 105
104 #define LOAD_ATTR 106
105 #define COMPARE_OP 107
106 #define IMPORT_NAME 108
107 #define IMPORT_FROM 109
108 #define JUMP_FORWARD 110
110 #define JUMP_IF_FALSE_OR_POP 111
112 #define JUMP_IF_TRUE_OR_POP 112
113 #define JUMP_ABSOLUTE 113
114 #define POP_JUMP_IF_FALSE 114
115 #define POP_JUMP_IF_TRUE 115
117 #define LOAD_GLOBAL 116
119 #define CONTINUE_LOOP 119
120 #define SETUP_LOOP 120
121 #define SETUP_EXCEPT 121
122 #define SETUP_FINALLY 122
124 #define LOAD_FAST 124
125 #define STORE_FAST 125
126 #define DELETE_FAST 126
128 #define RAISE_VARARGS 130
130 #define CALL_FUNCTION 131
131 #define MAKE_FUNCTION 132
132 #define BUILD_SLICE 133
134 #define MAKE_CLOSURE 134
135 #define LOAD_CLOSURE 135
136 #define LOAD_DEREF 136
137 #define STORE_DEREF 137
141 #define CALL_FUNCTION_VAR 140
142 #define CALL_FUNCTION_KW 141
143 #define CALL_FUNCTION_VAR_KW 142
145 #define SETUP_WITH 143
148 #define EXTENDED_ARG 145
157 #define HAS_ARG(op) ((op) >= HAVE_ARGUMENT)
Copyright 2014 Google Inc. All rights reserved.