#ifndef Py_OPCODE_H #define Py_OPCODE_H #ifdef __cplusplus extern "C" { #endif /* Instruction opcodes for compiled code */ #define STOP_CODE 0 #define POP_TOP 1 #define ROT_TWO 2 #define ROT_THREE 3 #define DUP_TOP 4 #define ROT_FOUR 5 #define NOP 9 #define UNARY_POSITIVE 10 #define UNARY_NEGATIVE 11 #define UNARY_NOT 12 #define UNARY_CONVERT 13 #define UNARY_INVERT 15 #define BINARY_POWER 19 #define BINARY_MULTIPLY 20 #define BINARY_DIVIDE 21 #define BINARY_MODULO 22 #define BINARY_ADD 23 #define BINARY_SUBTRACT 24 #define BINARY_SUBSCR 25 #define BINARY_FLOOR_DIVIDE 26 #define BINARY_TRUE_DIVIDE 27 #define INPLACE_FLOOR_DIVIDE 28 #define INPLACE_TRUE_DIVIDE 29 #define SLICE 30 /* Also uses 31-33 */ #define SLICE_1 31 #define SLICE_2 32 #define SLICE_3 33 #define STORE_SLICE 40 /* Also uses 41-43 */ #define STORE_SLICE_1 41 #define STORE_SLICE_2 42 #define STORE_SLICE_3 43 #define DELETE_SLICE 50 /* Also uses 51-53 */ #define DELETE_SLICE_1 51 #define DELETE_SLICE_2 52 #define DELETE_SLICE_3 53 #define STORE_MAP 54 #define INPLACE_ADD 55 #define INPLACE_SUBTRACT 56 #define INPLACE_MULTIPLY 57 #define INPLACE_DIVIDE 58 #define INPLACE_MODULO 59 #define STORE_SUBSCR 60 #define DELETE_SUBSCR 61 #define BINARY_LSHIFT 62 #define BINARY_RSHIFT 63 #define BINARY_AND 64 #define BINARY_XOR 65 #define BINARY_OR 66 #define INPLACE_POWER 67 #define GET_ITER 68 #define PRINT_EXPR 70 #define PRINT_ITEM 71 #define PRINT_NEWLINE 72 #define PRINT_ITEM_TO 73 #define PRINT_NEWLINE_TO 74 #define INPLACE_LSHIFT 75 #define INPLACE_RSHIFT 76 #define INPLACE_AND 77 #define INPLACE_XOR 78 #define INPLACE_OR 79 #define BREAK_LOOP 80 #define WITH_CLEANUP 81 #define LOAD_LOCALS 82 #define RETURN_VALUE 83 #define IMPORT_STAR 84 #define EXEC_STMT 85 #define YIELD_VALUE 86 #define POP_BLOCK 87 #define END_FINALLY 88 #define BUILD_CLASS 89 #define HAVE_ARGUMENT 90 /* Opcodes from here have an argument: */ #define STORE_NAME 90 /* Index in name list */ #define DELETE_NAME 91 /* "" */ #define UNPACK_SEQUENCE 92 /* Number of sequence items */ #define FOR_ITER 93 #define LIST_APPEND 94 #define STORE_ATTR 95 /* Index in name list */ #define DELETE_ATTR 96 /* "" */ #define STORE_GLOBAL 97 /* "" */ #define DELETE_GLOBAL 98 /* "" */ #define DUP_TOPX 99 /* number of items to duplicate */ #define LOAD_CONST 100 /* Index in const list */ #define LOAD_NAME 101 /* Index in name list */ #define BUILD_TUPLE 102 /* Number of tuple items */ #define BUILD_LIST 103 /* Number of list items */ #define BUILD_SET 104 /* Number of set items */ #define BUILD_MAP 105 /* Always zero for now */ #define LOAD_ATTR 106 /* Index in name list */ #define COMPARE_OP 107 /* Comparison operator */ #define IMPORT_NAME 108 /* Index in name list */ #define IMPORT_FROM 109 /* Index in name list */ #define JUMP_FORWARD 110 /* Number of bytes to skip */ #define JUMP_IF_FALSE_OR_POP 111 /* Target byte offset from beginning of code */ #define JUMP_IF_TRUE_OR_POP 112 /* "" */ #define JUMP_ABSOLUTE 113 /* "" */ #define POP_JUMP_IF_FALSE 114 /* "" */ #define POP_JUMP_IF_TRUE 115 /* "" */ #define LOAD_GLOBAL 116 /* Index in name list */ #define CONTINUE_LOOP 119 /* Start of loop (absolute) */ #define SETUP_LOOP 120 /* Target address (relative) */ #define SETUP_EXCEPT 121 /* "" */ #define SETUP_FINALLY 122 /* "" */ #define LOAD_FAST 124 /* Local variable number */ #define STORE_FAST 125 /* Local variable number */ #define DELETE_FAST 126 /* Local variable number */ #define RAISE_VARARGS 130 /* Number of raise arguments (1, 2 or 3) */ /* CALL_FUNCTION_XXX opcodes defined below depend on this definition */ #define CALL_FUNCTION 131 /* #args + (#kwargs<<8) */ #define MAKE_FUNCTION 132 /* #defaults */ #define BUILD_SLICE 133 /* Number of items */ #define MAKE_CLOSURE 134 /* #free vars */ #define LOAD_CLOSURE 135 /* Load free variable from closure */ #define LOAD_DEREF 136 /* Load and dereference from closure cell */ #define STORE_DEREF 137 /* Store into cell */ /* The next 3 opcodes must be contiguous and satisfy (CALL_FUNCTION_VAR - CALL_FUNCTION) & 3 == 1 */ #define CALL_FUNCTION_VAR 140 /* #args + (#kwargs<<8) */ #define CALL_FUNCTION_KW 141 /* #args + (#kwargs<<8) */ #define CALL_FUNCTION_VAR_KW 142 /* #args + (#kwargs<<8) */ #define SETUP_WITH 143 /* Support for opargs more than 16 bits long */ #define EXTENDED_ARG 145 #define SET_ADD 146 #define MAP_ADD 147 enum cmp_op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE, PyCmp_GT=Py_GT, PyCmp_GE=Py_GE, PyCmp_IN, PyCmp_NOT_IN, PyCmp_IS, PyCmp_IS_NOT, PyCmp_EXC_MATCH, PyCmp_BAD}; #define HAS_ARG(op) ((op) >= HAVE_ARGUMENT) #ifdef __cplusplus } #endif #endif /* !Py_OPCODE_H */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Python-ast.h | File | 20.62 KB | 0644 |
|
Python.h | File | 4.23 KB | 0644 |
|
abstract.h | File | 43.96 KB | 0644 |
|
asdl.h | File | 1.07 KB | 0644 |
|
ast.h | File | 230 B | 0644 |
|
bitset.h | File | 792 B | 0644 |
|
boolobject.h | File | 912 B | 0644 |
|
bufferobject.h | File | 922 B | 0644 |
|
bytearrayobject.h | File | 1.9 KB | 0644 |
|
bytes_methods.h | File | 2.74 KB | 0644 |
|
bytesobject.h | File | 1.13 KB | 0644 |
|
cStringIO.h | File | 1.96 KB | 0644 |
|
cellobject.h | File | 651 B | 0644 |
|
ceval.h | File | 4.87 KB | 0644 |
|
classobject.h | File | 2.93 KB | 0644 |
|
cobject.h | File | 2.86 KB | 0644 |
|
code.h | File | 3.8 KB | 0644 |
|
codecs.h | File | 4.9 KB | 0644 |
|
compile.h | File | 1.04 KB | 0644 |
|
complexobject.h | File | 1.81 KB | 0644 |
|
datetime.h | File | 8.12 KB | 0644 |
|
descrobject.h | File | 2.42 KB | 0644 |
|
dictobject.h | File | 6.52 KB | 0644 |
|
dtoa.h | File | 338 B | 0644 |
|
enumobject.h | File | 253 B | 0644 |
|
errcode.h | File | 1.37 KB | 0644 |
|
eval.h | File | 557 B | 0644 |
|
fileobject.h | File | 3.58 KB | 0644 |
|
floatobject.h | File | 5.49 KB | 0644 |
|
frameobject.h | File | 3.16 KB | 0644 |
|
funcobject.h | File | 2.92 KB | 0644 |
|
genobject.h | File | 891 B | 0644 |
|
graminit.h | File | 1.87 KB | 0644 |
|
grammar.h | File | 1.97 KB | 0644 |
|
import.h | File | 2.17 KB | 0644 |
|
intobject.h | File | 2.77 KB | 0644 |
|
intrcheck.h | File | 274 B | 0644 |
|
iterobject.h | File | 522 B | 0644 |
|
listobject.h | File | 2.51 KB | 0644 |
|
longintrepr.h | File | 3.82 KB | 0644 |
|
longobject.h | File | 5.67 KB | 0644 |
|
marshal.h | File | 713 B | 0644 |
|
memoryobject.h | File | 2.76 KB | 0644 |
|
metagrammar.h | File | 253 B | 0644 |
|
methodobject.h | File | 3.28 KB | 0644 |
|
modsupport.h | File | 4.91 KB | 0644 |
|
moduleobject.h | File | 609 B | 0644 |
|
node.h | File | 956 B | 0644 |
|
object.h | File | 38.09 KB | 0644 |
|
objimpl.h | File | 13.64 KB | 0644 |
|
opcode.h | File | 4.7 KB | 0644 |
|
osdefs.h | File | 1.03 KB | 0644 |
|
parsetok.h | File | 1.74 KB | 0644 |
|
patchlevel.h | File | 1.41 KB | 0644 |
|
pgen.h | File | 253 B | 0644 |
|
pgenheaders.h | File | 1.12 KB | 0644 |
|
py_curses.h | File | 4.06 KB | 0644 |
|
pyarena.h | File | 2.63 KB | 0644 |
|
pycapsule.h | File | 1.64 KB | 0644 |
|
pyconfig-64.h | File | 35.95 KB | 0644 |
|
pyconfig.h | File | 162 B | 0644 |
|
pyctype.h | File | 1.24 KB | 0644 |
|
pydebug.h | File | 1.29 KB | 0644 |
|
pyerrors.h | File | 11.38 KB | 0644 |
|
pyexpat.h | File | 2.07 KB | 0644 |
|
pyfpe.h | File | 8.29 KB | 0644 |
|
pygetopt.h | File | 348 B | 0644 |
|
pymacconfig.h | File | 2.92 KB | 0644 |
|
pymactoolbox.h | File | 7.76 KB | 0644 |
|
pymath.h | File | 6.37 KB | 0644 |
|
pymem.h | File | 4.59 KB | 0644 |
|
pyport.h | File | 31.42 KB | 0644 |
|
pystate.h | File | 6.25 KB | 0644 |
|
pystrcmp.h | File | 463 B | 0644 |
|
pystrtod.h | File | 1.54 KB | 0644 |
|
pythonrun.h | File | 7.11 KB | 0644 |
|
pythread.h | File | 1.22 KB | 0644 |
|
rangeobject.h | File | 646 B | 0644 |
|
setobject.h | File | 3.06 KB | 0644 |
|
sliceobject.h | File | 1.3 KB | 0644 |
|
stringobject.h | File | 7.79 KB | 0644 |
|
structmember.h | File | 2.83 KB | 0644 |
|
structseq.h | File | 862 B | 0644 |
|
symtable.h | File | 3.64 KB | 0644 |
|
sysmodule.h | File | 815 B | 0644 |
|
timefuncs.h | File | 541 B | 0644 |
|
token.h | File | 1.76 KB | 0644 |
|
traceback.h | File | 697 B | 0644 |
|
tupleobject.h | File | 2.18 KB | 0644 |
|
ucnhash.h | File | 924 B | 0644 |
|
unicodeobject.h | File | 51 KB | 0644 |
|
warnings.h | File | 635 B | 0644 |
|
weakrefobject.h | File | 2.89 KB | 0644 |
|