Lines Matching refs:opname
7 def count_instr_recursively(f, opname): argument
10 if instr.opname == opname:
16 count += count_instr_recursively(c, opname)
26 if 'JUMP_' not in instr.opname:
30 if tgt.opname in ('JUMP_ABSOLUTE', 'JUMP_FORWARD'):
34 if (instr.opname in ('JUMP_ABSOLUTE', 'JUMP_FORWARD') and
35 tgt.opname == 'RETURN_VALUE'):
39 if '_OR_POP' in instr.opname and 'JUMP_IF_' in tgt.opname:
146 if instr.opname == 'LOAD_CONST']
232 self.assertFalse(instr.opname.startswith('BINARY_'))
290 self.assertFalse(instr.opname.startswith('UNARY_'))
298 self.assertFalse(instr.opname.startswith('UNARY_'))
302 for line, elem, opname in (
308 self.assertInBytecode(code, opname)
317 if instr.opname == 'RETURN_VALUE']
331 if instr.opname == 'RETURN_VALUE']
408 if instr.opname == 'RETURN_VALUE']
436 self.assertFalse(instr.opname.startswith('UNARY_'))
437 self.assertFalse(instr.opname.startswith('BINARY_'))
438 self.assertFalse(instr.opname.startswith('BUILD_'))