30.10.1 Python Byte Code Instructions

Python 2.5

30.10.1 Python Byte Code Instructions

The Python compiler currently generates the following byte code instructions.

Indicates end-of-code to the compiler, not used by the interpreter.

Do nothing code. Used as a placeholder by the bytecode optimizer.

Removes the top-of-stack (TOS) item.

Swaps the two top-most stack items.

Lifts second and third stack item one position up, moves top down to position three.

Lifts second, third and forth stack item one position up, moves top down to position four.

Duplicates the reference on top of the stack.

Unary Operations take the top of the stack, apply the operation, and push the result back on the stack.

Implements TOS = +TOS.

Implements TOS = -TOS.

Implements TOS = not TOS.

Implements TOS = `TOS`.

Implements TOS = ~TOS.

Implements TOS = iter(TOS).

Binary operations remove the top of the stack (TOS) and the second top-most stack item (TOS1) from the stack. They perform the operation, and put the result back on the stack.

Implements TOS = TOS1 ** TOS.

Implements TOS = TOS1 * TOS.

Implements TOS = TOS1 / TOS when from __future__ import division is not in effect.

Implements TOS = TOS1 // TOS.

Implements TOS = TOS1 / TOS when from __future__ import division is in effect.

Implements TOS = TOS1 % TOS.

Implements TOS = TOS1 + TOS.

Implements TOS = TOS1 - TOS.

Implements TOS = TOS1[TOS].

Implements TOS = TOS1 << TOS.

Implements TOS = TOS1 >> TOS.

Implements TOS = TOS1 & TOS.

Implements TOS = TOS1 ^ TOS.

Implements TOS = TOS1 | TOS.

In-place operations are like binary operations, in that they remove TOS and TOS1, and push the result back on the stack, but the operation is done in-place when TOS1 supports it, and the resulting TOS may be (but does not have to be) the original TOS1.

Implements in-place TOS = TOS1 ** TOS.

Implements in-place TOS = TOS1 * TOS.

Implements in-place TOS = TOS1 / TOS when from __future__ import division is not in effect.

Implements in-place TOS = TOS1 // TOS.

Implements in-place TOS = TOS1 / TOS when from __future__ import division is in effect.

Implements in-place TOS = TOS1 % TOS.

Implements in-place TOS = TOS1 + TOS.

Implements in-place TOS = TOS1 - TOS.

Implements in-place TOS = TOS1 << TOS.

Implements in-place TOS = TOS1 >> TOS.

Implements in-place TOS = TOS1 & TOS.

Implements in-place TOS = TOS1 ^ TOS.

Implements in-place TOS = TOS1 | TOS.

The slice opcodes take up to three parameters.

Implements TOS = TOS[:].

Implements TOS = TOS1[TOS:].

Implements TOS = TOS1[:TOS].

Implements TOS = TOS2[TOS1:TOS].

Slice assignment needs even an additional parameter. As any statement, they put nothing on the stack.

Implements TOS[:] = TOS1.

Implements TOS1[TOS:] = TOS2.

Implements TOS1[:TOS] = TOS2.

Implements TOS2[TOS1:TOS] = TOS3.

Implements del TOS[:].

Implements del TOS1[TOS:].

Implements del TOS1[:TOS].

Implements del TOS2[TOS1:TOS].

Implements TOS1[TOS] = TOS2.

Implements del TOS1[TOS].

Miscellaneous opcodes.

Implements the expression statement for the interactive mode. TOS is removed from the stack and printed. In non-interactive mode, an expression statement is terminated with POP_STACK.

Prints TOS to the file-like object bound to sys.stdout. There is one such instruction for each item in the print statement.

Like PRINT_ITEM, but prints the item second from TOS to the file-like object at TOS. This is used by the extended print statement.

Prints a new line on sys.stdout. This is generated as the last operation of a print statement, unless the statement ends with a comma.

Like PRINT_NEWLINE, but prints the new line on the file-like object on the TOS. This is used by the extended print statement.

Terminates a loop due to a break statement.

Continues a loop due to a continue statement. target is the address to jump to (which should be a FOR_ITER instruction).

Calls list.append(TOS1, TOS). Used to implement list comprehensions.

Pushes a reference to the locals of the current scope on the stack. This is used in the code for a class definition: After the class body is evaluated, the locals are passed to the class definition.

Returns with TOS to the caller of the function.

Pops TOS and yields it from a generator.

Loads all symbols not starting with "_" directly from the module TOS to the local namespace. The module is popped after loading all names. This opcode implements from module import *.

Implements exec TOS2,TOS1,TOS. The compiler fills missing optional parameters with None.

Removes one block from the block stack. Per frame, there is a stack of blocks, denoting nested loops, try statements, and such.

Terminates a finally clause. The interpreter recalls whether the exception has to be re-raised, or whether the function returns, and continues with the outer-next block.

Creates a new class object. TOS is the methods dictionary, TOS1 the tuple of the names of the base classes, and TOS2 the class name.

All of the following opcodes expect arguments. An argument is two bytes, with the more significant byte last.

Implements name = TOS. namei is the index of name in the attribute co_names of the code object. The compiler tries to use STORE_LOCAL or STORE_GLOBAL if possible.

Implements del name, where namei is the index into co_names attribute of the code object.

Unpacks TOS into count individual values, which are put onto the stack right-to-left.

Duplicate count items, keeping them in the same order. Due to implementation limits, count should be between 1 and 5 inclusive.

Implements TOS.name = TOS1, where namei is the index of name in co_names.

Implements del TOS.name, using namei as index into co_names.

Works as STORE_NAME, but stores the name as a global.

Works as DELETE_NAME, but deletes a global name.

Pushes "co_consts[consti]" onto the stack.

Pushes the value associated with "co_names[namei]" onto the stack.

Creates a tuple consuming count items from the stack, and pushes the resulting tuple onto the stack.

Works as BUILD_TUPLE, but creates a list.

Pushes a new empty dictionary object onto the stack. The argument is ignored and set to zero by the compiler.

Replaces TOS with getattr(TOS, co_names[namei]).

Performs a Boolean operation. The operation name can be found in cmp_op[opname].

Imports the module co_names[namei]. The module object is pushed onto the stack. The current namespace is not affected: for a proper import statement, a subsequent STORE_FAST instruction modifies the namespace.

Loads the attribute co_names[namei] from the module found in TOS. The resulting object is pushed onto the stack, to be subsequently stored by a STORE_FAST instruction.

Increments byte code counter by delta.

If TOS is true, increment the byte code counter by delta. TOS is left on the stack.

If TOS is false, increment the byte code counter by delta. TOS is not changed.

Set byte code counter to target.

TOS is an iterator. Call its next() method. If this yields a new value, push it on the stack (leaving the iterator below it). If the iterator indicates it is exhausted TOS is popped, and the byte code counter is incremented by delta.

Loads the global named co_names[namei] onto the stack.

Pushes a block for a loop onto the block stack. The block spans from the current instruction with a size of delta bytes.

Pushes a try block from a try-except clause onto the block stack. delta points to the first except block.

Pushes a try block from a try-except clause onto the block stack. delta points to the finally block.

Pushes a reference to the local co_varnames[var_num] onto the stack.

Stores TOS into the local co_varnames[var_num].

Deletes local co_varnames[var_num].

Pushes a reference to the cell contained in slot i of the cell and free variable storage. The name of the variable is co_cellvars[i] if i is less than the length of co_cellvars. Otherwise it is co_freevars[i - len(co_cellvars)].

Loads the cell contained in slot i of the cell and free variable storage. Pushes a reference to the object the cell contains on the stack.

Stores TOS into the cell contained in slot i of the cell and free variable storage.

This opcode is obsolete.

Raises an exception. argc indicates the number of parameters to the raise statement, ranging from 0 to 3. The handler will find the traceback as TOS2, the parameter as TOS1, and the exception as TOS.

Calls a function. The low byte of argc indicates the number of positional parameters, the high byte the number of keyword parameters. On the stack, the opcode finds the keyword parameters first. For each keyword argument, the value is on top of the key. Below the keyword parameters, the positional parameters are on the stack, with the right-most parameter on top. Below the parameters, the function object to call is on the stack.

Pushes a new function object on the stack. TOS is the code associated with the function. The function object is defined to have argc default parameters, which are found below TOS.

Creates a new function object, sets its func_closure slot, and pushes it on the stack. TOS is the code associated with the function. If the code object has N free variables, the next N items on the stack are the cells for these variables. The function also has argc default parameters, where are found before the cells.

Pushes a slice object on the stack. argc must be 2 or 3. If it is 2, slice(TOS1, TOS) is pushed; if it is 3, slice(TOS2, TOS1, TOS) is pushed. See the slice() built-in function for more information.

Prefixes any opcode which has an argument too big to fit into the default two bytes. ext holds two additional bytes which, taken together with the subsequent opcode's argument, comprise a four-byte argument, ext being the two most-significant bytes.

Calls a function. argc is interpreted as in CALL_FUNCTION. The top element on the stack contains the variable argument list, followed by keyword and positional arguments.

Calls a function. argc is interpreted as in CALL_FUNCTION. The top element on the stack contains the keyword arguments dictionary, followed by explicit keyword and positional arguments.

Calls a function. argc is interpreted as in CALL_FUNCTION. The top element on the stack contains the keyword arguments dictionary, followed by the variable-arguments tuple, followed by explicit keyword and positional arguments.

This is not really an opcode. It identifies the dividing line between opcodes which don't take arguments < HAVE_ARGUMENT and those which do >= HAVE_ARGUMENT.
See About this document... for information on suggesting changes.