blob: 53ce3333c4f14399160a17d8db299dd45878d9aa [file] [log] [blame]
Guido van Rossuma3309961993-07-28 09:05:47 +00001#ifndef Py_OPCODE_H
2#define Py_OPCODE_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Guido van Rossumf70e43a1991-02-19 12:39:46 +00007/***********************************************************
Guido van Rossum9bfef441993-03-29 10:43:31 +00008Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,
9Amsterdam, The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000010
11 All Rights Reserved
12
13Permission to use, copy, modify, and distribute this software and its
14documentation for any purpose and without fee is hereby granted,
15provided that the above copyright notice appear in all copies and that
16both that copyright notice and this permission notice appear in
17supporting documentation, and that the names of Stichting Mathematisch
18Centrum or CWI not be used in advertising or publicity pertaining to
19distribution of the software without specific, written prior permission.
20
21STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
22THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
23FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
24FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
25WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
26ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
27OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
28
29******************************************************************/
30
Guido van Rossum10dc2e81990-11-18 17:27:39 +000031/* Instruction opcodes for compiled code */
32
Guido van Rossum3f5da241990-12-20 15:06:42 +000033#define STOP_CODE 0
Guido van Rossum10dc2e81990-11-18 17:27:39 +000034#define POP_TOP 1
35#define ROT_TWO 2
36#define ROT_THREE 3
Guido van Rossum3f5da241990-12-20 15:06:42 +000037#define DUP_TOP 4
Guido van Rossum10dc2e81990-11-18 17:27:39 +000038
39#define UNARY_POSITIVE 10
40#define UNARY_NEGATIVE 11
41#define UNARY_NOT 12
42#define UNARY_CONVERT 13
43#define UNARY_CALL 14
Guido van Rossum7928cd71991-10-24 14:59:31 +000044#define UNARY_INVERT 15
Guido van Rossum10dc2e81990-11-18 17:27:39 +000045
46#define BINARY_MULTIPLY 20
47#define BINARY_DIVIDE 21
48#define BINARY_MODULO 22
49#define BINARY_ADD 23
50#define BINARY_SUBTRACT 24
51#define BINARY_SUBSCR 25
52#define BINARY_CALL 26
53
54#define SLICE 30
55/* Also uses 31-33 */
56
57#define STORE_SLICE 40
58/* Also uses 41-43 */
59
60#define DELETE_SLICE 50
61/* Also uses 51-53 */
62
63#define STORE_SUBSCR 60
64#define DELETE_SUBSCR 61
65
Guido van Rossum7928cd71991-10-24 14:59:31 +000066#define BINARY_LSHIFT 62
67#define BINARY_RSHIFT 63
68#define BINARY_AND 64
69#define BINARY_XOR 65
70#define BINARY_OR 66
71
72
Guido van Rossum10dc2e81990-11-18 17:27:39 +000073#define PRINT_EXPR 70
74#define PRINT_ITEM 71
75#define PRINT_NEWLINE 72
76
77#define BREAK_LOOP 80
78#define RAISE_EXCEPTION 81
Guido van Rossumf1270271990-11-18 17:38:15 +000079#define LOAD_LOCALS 82
Guido van Rossum10dc2e81990-11-18 17:27:39 +000080#define RETURN_VALUE 83
Guido van Rossumdb3165e1993-10-18 17:06:59 +000081#define LOAD_GLOBALS 84
82#define EXEC_STMT 85
Guido van Rossum8b17d6b1993-03-30 13:18:41 +000083
Guido van Rossum10dc2e81990-11-18 17:27:39 +000084#define BUILD_FUNCTION 86
85#define POP_BLOCK 87
86#define END_FINALLY 88
Guido van Rossumf1270271990-11-18 17:38:15 +000087#define BUILD_CLASS 89
Guido van Rossum10dc2e81990-11-18 17:27:39 +000088
89#define HAVE_ARGUMENT 90 /* Opcodes from here have an argument: */
90
91#define STORE_NAME 90 /* Index in name list */
92#define DELETE_NAME 91 /* "" */
93#define UNPACK_TUPLE 92 /* Number of tuple items */
94#define UNPACK_LIST 93 /* Number of list items */
Guido van Rossum750bf141991-12-16 13:07:35 +000095#define UNPACK_ARG 94 /* Number of arguments */
Guido van Rossum10dc2e81990-11-18 17:27:39 +000096#define STORE_ATTR 95 /* Index in name list */
97#define DELETE_ATTR 96 /* "" */
Guido van Rossum97ff5301991-12-10 13:59:17 +000098#define STORE_GLOBAL 97 /* "" */
99#define DELETE_GLOBAL 98 /* "" */
Guido van Rossum22f863f1992-01-14 18:38:56 +0000100#define UNPACK_VARARG 99 /* Minimal number of arguments */
Guido van Rossum10dc2e81990-11-18 17:27:39 +0000101
102#define LOAD_CONST 100 /* Index in const list */
103#define LOAD_NAME 101 /* Index in name list */
104#define BUILD_TUPLE 102 /* Number of tuple items */
105#define BUILD_LIST 103 /* Number of list items */
106#define BUILD_MAP 104 /* Always zero for now */
107#define LOAD_ATTR 105 /* Index in name list */
108#define COMPARE_OP 106 /* Comparison operator */
109#define IMPORT_NAME 107 /* Index in name list */
110#define IMPORT_FROM 108 /* Index in name list */
Guido van Rossum25831651993-05-19 14:50:45 +0000111#define ACCESS_MODE 109 /* Name (mode is int on top of stack) */
Guido van Rossum10dc2e81990-11-18 17:27:39 +0000112
113#define JUMP_FORWARD 110 /* Number of bytes to skip */
114#define JUMP_IF_FALSE 111 /* "" */
115#define JUMP_IF_TRUE 112 /* "" */
116#define JUMP_ABSOLUTE 113 /* Target byte offset from beginning of code */
117#define FOR_LOOP 114 /* Number of bytes to skip */
118
Guido van Rossum054ff1f1991-04-04 10:45:01 +0000119#define LOAD_LOCAL 115 /* Index in name list */
120#define LOAD_GLOBAL 116 /* Index in name list */
121
Guido van Rossum10dc2e81990-11-18 17:27:39 +0000122#define SETUP_LOOP 120 /* Target address (absolute) */
123#define SETUP_EXCEPT 121 /* "" */
124#define SETUP_FINALLY 122 /* "" */
125
Guido van Rossum8b17d6b1993-03-30 13:18:41 +0000126#define RESERVE_FAST 123 /* Number of local variables */
127#define LOAD_FAST 124 /* Local variable number */
128#define STORE_FAST 125 /* Local variable number */
129#define DELETE_FAST 126 /* Local variable number */
130
Guido van Rossum3f5da241990-12-20 15:06:42 +0000131#define SET_LINENO 127 /* Current line number */
132
Guido van Rossum10dc2e81990-11-18 17:27:39 +0000133/* Comparison operator codes (argument to COMPARE_OP) */
134enum cmp_op {LT, LE, EQ, NE, GT, GE, IN, NOT_IN, IS, IS_NOT, EXC_MATCH, BAD};
Guido van Rossum3f5da241990-12-20 15:06:42 +0000135
136#define HAS_ARG(op) ((op) >= HAVE_ARGUMENT)
Guido van Rossuma3309961993-07-28 09:05:47 +0000137
138#ifdef __cplusplus
139}
140#endif
141#endif /* !Py_OPCODE_H */