1993-07-28 06:05:47 -03:00
|
|
|
#ifndef Py_OPCODE_H
|
|
|
|
#define Py_OPCODE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1991-02-19 08:39:46 -04:00
|
|
|
|
1990-11-18 13:27:39 -04:00
|
|
|
/* Instruction opcodes for compiled code */
|
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define POP_TOP 1
|
|
|
|
#define ROT_TWO 2
|
|
|
|
#define ROT_THREE 3
|
|
|
|
#define DUP_TOP 4
|
2010-09-04 15:43:52 -03:00
|
|
|
#define DUP_TOP_TWO 5
|
2012-01-13 07:43:40 -04:00
|
|
|
#define NOP 9
|
1990-11-18 13:27:39 -04:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define UNARY_POSITIVE 10
|
|
|
|
#define UNARY_NEGATIVE 11
|
|
|
|
#define UNARY_NOT 12
|
1995-07-18 11:21:06 -03:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define UNARY_INVERT 15
|
1990-11-18 13:27:39 -04:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define BINARY_POWER 19
|
1996-01-11 20:51:44 -04:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define BINARY_MULTIPLY 20
|
2006-03-16 02:02:10 -04:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define BINARY_MODULO 22
|
|
|
|
#define BINARY_ADD 23
|
|
|
|
#define BINARY_SUBTRACT 24
|
|
|
|
#define BINARY_SUBSCR 25
|
2001-08-08 02:00:18 -03:00
|
|
|
#define BINARY_FLOOR_DIVIDE 26
|
|
|
|
#define BINARY_TRUE_DIVIDE 27
|
|
|
|
#define INPLACE_FLOOR_DIVIDE 28
|
|
|
|
#define INPLACE_TRUE_DIVIDE 29
|
1990-11-18 13:27:39 -04:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define STORE_MAP 54
|
|
|
|
#define INPLACE_ADD 55
|
|
|
|
#define INPLACE_SUBTRACT 56
|
|
|
|
#define INPLACE_MULTIPLY 57
|
|
|
|
|
|
|
|
#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
|
2007-03-18 12:41:51 -03:00
|
|
|
#define LOAD_BUILD_CLASS 71
|
2012-01-13 07:43:40 -04:00
|
|
|
#define YIELD_FROM 72
|
|
|
|
|
|
|
|
#define INPLACE_LSHIFT 75
|
|
|
|
#define INPLACE_RSHIFT 76
|
|
|
|
#define INPLACE_AND 77
|
|
|
|
#define INPLACE_XOR 78
|
|
|
|
#define INPLACE_OR 79
|
|
|
|
#define BREAK_LOOP 80
|
2006-02-27 18:32:47 -04:00
|
|
|
#define WITH_CLEANUP 81
|
2007-03-18 12:41:51 -03:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define RETURN_VALUE 83
|
|
|
|
#define IMPORT_STAR 84
|
2007-11-06 17:34:58 -04:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define YIELD_VALUE 86
|
|
|
|
#define POP_BLOCK 87
|
|
|
|
#define END_FINALLY 88
|
|
|
|
#define POP_EXCEPT 89
|
1990-11-18 13:27:39 -04:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define HAVE_ARGUMENT 90 /* Opcodes from here have an argument: */
|
1990-11-18 13:27:39 -04:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define STORE_NAME 90 /* Index in name list */
|
|
|
|
#define DELETE_NAME 91 /* "" */
|
|
|
|
#define UNPACK_SEQUENCE 92 /* Number of sequence items */
|
|
|
|
#define FOR_ITER 93
|
Merged revisions 55225-55227,55229-55269 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
................
r55238 | guido.van.rossum | 2007-05-10 16:46:05 -0700 (Thu, 10 May 2007) | 9 lines
Merged revisions 55227 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r55227 | guido.van.rossum | 2007-05-10 10:20:15 -0700 (Thu, 10 May 2007) | 2 lines
Fix a bug in test_c_api() that caused a negative refcount.
........
................
r55246 | neal.norwitz | 2007-05-11 00:01:52 -0700 (Fri, 11 May 2007) | 1 line
Remove commands.getstatus() it is obsolete.
................
r55248 | neal.norwitz | 2007-05-11 00:29:05 -0700 (Fri, 11 May 2007) | 2 lines
Remove bsddb185 support.
................
r55249 | neal.norwitz | 2007-05-11 00:29:50 -0700 (Fri, 11 May 2007) | 1 line
Remove bsddb185 module too
................
r55250 | neal.norwitz | 2007-05-11 00:32:13 -0700 (Fri, 11 May 2007) | 1 line
bsddb185: Gotta remove from the file checked in, not Setup
................
r55251 | neal.norwitz | 2007-05-11 00:53:26 -0700 (Fri, 11 May 2007) | 1 line
Remove obsolete IRIX modules (as much as I could find, there is probably more)
................
r55252 | neal.norwitz | 2007-05-11 00:55:35 -0700 (Fri, 11 May 2007) | 1 line
Remove SGI turd.
................
r55254 | georg.brandl | 2007-05-11 03:11:01 -0700 (Fri, 11 May 2007) | 2 lines
Add a case for set comprehensions to the "cannot assign to" switch.
................
r55255 | georg.brandl | 2007-05-11 03:11:25 -0700 (Fri, 11 May 2007) | 2 lines
Fix wrong imports.
................
r55261 | georg.brandl | 2007-05-11 07:37:48 -0700 (Fri, 11 May 2007) | 2 lines
Remove removed tex files.
................
r55262 | georg.brandl | 2007-05-11 08:28:41 -0700 (Fri, 11 May 2007) | 2 lines
Commit PEP 3132 implementation.
................
r55264 | georg.brandl | 2007-05-11 08:50:19 -0700 (Fri, 11 May 2007) | 2 lines
Check in the inevitable AST version number and format Py_ssize_t with %zd.
................
r55265 | neal.norwitz | 2007-05-11 09:12:22 -0700 (Fri, 11 May 2007) | 1 line
Remove mention of os.popen* and popen2.* since these will be removed.
................
r55266 | neal.norwitz | 2007-05-11 09:19:57 -0700 (Fri, 11 May 2007) | 1 line
Get doc to build again (almost, the doc is fine)
................
r55267 | neal.norwitz | 2007-05-11 09:21:02 -0700 (Fri, 11 May 2007) | 1 line
Really get doc to build (remove use of string module)
................
r55269 | neal.norwitz | 2007-05-11 09:29:43 -0700 (Fri, 11 May 2007) | 1 line
Add some notes to cleanup later
................
2007-05-11 13:50:42 -03:00
|
|
|
#define UNPACK_EX 94 /* Num items before variable part +
|
|
|
|
(Num items after variable part << 8) */
|
2000-08-11 19:15:52 -03:00
|
|
|
|
2012-01-13 07:43:40 -04:00
|
|
|
#define STORE_ATTR 95 /* Index in name list */
|
|
|
|
#define DELETE_ATTR 96 /* "" */
|
|
|
|
#define STORE_GLOBAL 97 /* "" */
|
|
|
|
#define DELETE_GLOBAL 98 /* "" */
|
|
|
|
|
|
|
|
#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) */
|
2000-03-28 19:49:17 -04:00
|
|
|
/* CALL_FUNCTION_XXX opcodes defined below depend on this definition */
|
2012-01-13 07:43:40 -04:00
|
|
|
#define CALL_FUNCTION 131 /* #args + (#kwargs<<8) */
|
|
|
|
#define MAKE_FUNCTION 132 /* #defaults + #kwdefaults<<8 + #annotations<<16 */
|
|
|
|
#define BUILD_SLICE 133 /* Number of items */
|
1995-07-07 19:32:10 -03:00
|
|
|
|
2007-03-18 12:41:51 -03:00
|
|
|
#define MAKE_CLOSURE 134 /* same as MAKE_FUNCTION */
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 16:06:59 -04:00
|
|
|
#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 */
|
2010-09-10 18:39:53 -03:00
|
|
|
#define DELETE_DEREF 138 /* Delete closure cell */
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 16:06:59 -04:00
|
|
|
|
2000-03-28 19:49:17 -04:00
|
|
|
/* The next 3 opcodes must be contiguous and satisfy
|
2000-03-28 20:10:03 -04:00
|
|
|
(CALL_FUNCTION_VAR - CALL_FUNCTION) & 3 == 1 */
|
2012-01-13 07:43:40 -04:00
|
|
|
#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) */
|
2000-03-28 19:49:17 -04:00
|
|
|
|
2009-06-28 00:18:59 -03:00
|
|
|
#define SETUP_WITH 143
|
|
|
|
|
2000-08-23 21:32:09 -03:00
|
|
|
/* Support for opargs more than 16 bits long */
|
2009-06-28 00:18:59 -03:00
|
|
|
#define EXTENDED_ARG 144
|
2000-08-23 21:32:09 -03:00
|
|
|
|
2008-12-18 07:06:25 -04:00
|
|
|
#define LIST_APPEND 145
|
|
|
|
#define SET_ADD 146
|
|
|
|
#define MAP_ADD 147
|
|
|
|
|
2013-04-30 10:41:40 -03:00
|
|
|
#define LOAD_CLASSDEREF 148
|
2002-01-01 15:59:11 -04:00
|
|
|
|
2008-06-11 12:59:43 -03:00
|
|
|
/* EXCEPT_HANDLER is a special, implicit block type which is created when
|
|
|
|
entering an except handler. It is not an opcode but we define it here
|
|
|
|
as we want it to be available to both frameobject.c and ceval.c, while
|
|
|
|
remaining private.*/
|
|
|
|
#define EXCEPT_HANDLER 257
|
|
|
|
|
|
|
|
|
2002-01-01 15:59:11 -04:00
|
|
|
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,
|
2012-01-13 07:43:40 -04:00
|
|
|
PyCmp_IN, PyCmp_NOT_IN, PyCmp_IS, PyCmp_IS_NOT, PyCmp_EXC_MATCH, PyCmp_BAD};
|
1990-12-20 11:06:42 -04:00
|
|
|
|
|
|
|
#define HAS_ARG(op) ((op) >= HAVE_ARGUMENT)
|
1993-07-28 06:05:47 -03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_OPCODE_H */
|