Lines Matching defs:opcode
13 #include "opcode.h" // EXTENDED_ARG
110 // Given the index of the effective opcode, scan back to construct the oparg
285 int i, j, opcode;
310 opcode = _Py_OPCODE(code[i]);
311 switch (opcode) {
321 if (opcode == POP_JUMP_FORWARD_IF_FALSE ||
322 opcode == POP_JUMP_FORWARD_IF_TRUE ||
323 opcode == JUMP_IF_FALSE_OR_POP ||
324 opcode == JUMP_IF_TRUE_OR_POP)
329 assert(opcode == POP_JUMP_BACKWARD_IF_FALSE ||
330 opcode == POP_JUMP_BACKWARD_IF_TRUE);
337 if (opcode == JUMP_IF_FALSE_OR_POP ||
338 opcode == JUMP_IF_TRUE_OR_POP)
455 int delta = PyCompile_OpcodeStackEffect(opcode, get_arg(code, i));
1077 _PyFrame_OpAlreadyRan(_PyInterpreterFrame *frame, int opcode, int oparg)
1079 // This only works when opcode is a non-quickened form:
1080 assert(_PyOpcode_Deopt[opcode] == opcode);
1087 if (check_opcode == opcode && check_oparg == oparg) {