Lines Matching defs:opcode
2 #include "opcode.h"
16 opcode: int
22 Compute the stack effect of the opcode.
26 _opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg,
33 if (HAS_ARG(opcode)) {
36 "stack_effect: opcode requires oparg but oparg was not specified");
46 "stack_effect: opcode does not permit oparg but oparg was specified");
63 if (IS_ARTIFICIAL(opcode)) {
67 effect = PyCompile_OpcodeStackEffectWithJump(opcode, oparg_int, jump_int);
71 "invalid opcode or oparg");