Lines Matching defs:opcode
91 #define IS_WITHIN_OPCODE_RANGE(opcode) \ argument
94 #define IS_VIRTUAL_OPCODE(opcode) ((opcode) < 0) argument
96 #define IS_VIRTUAL_JUMP_OPCODE(opcode) \ argument
105 #define IS_ASSEMBLER_OPCODE(opcode) \ argument
119 #define IS_BACKWARDS_JUMP_OPCODE(opcode) \ argument
183 int opcode = instr->i_opcode; in is_block_push() local
197 int opcode = instruction->i_opcode; in instr_size() local
208 int opcode = instruction->i_opcode; in write_instr() local
944 stack_effect(int opcode, int oparg, int jump) in stack_effect()
1200 PyCompile_OpcodeStackEffectWithJump(int opcode, int oparg, int jump) in PyCompile_OpcodeStackEffectWithJump()
1206 PyCompile_OpcodeStackEffect(int opcode, int oparg) in PyCompile_OpcodeStackEffect()
1213 int opcode = instr->i_opcode; in is_end_of_basic_block() local
1247 compiler_addop_line(struct compiler *c, int opcode, int line, in compiler_addop_line()
1279 compiler_addop(struct compiler *c, int opcode) in compiler_addop()
1286 compiler_addop_noline(struct compiler *c, int opcode) in compiler_addop_noline()
1452 compiler_addop_o(struct compiler *c, int opcode, PyObject *dict, in compiler_addop_o()
1462 compiler_addop_name(struct compiler *c, int opcode, PyObject *dict, in compiler_addop_name()
1482 compiler_addop_i_line(struct compiler *c, int opcode, Py_ssize_t oparg, in compiler_addop_i_line()
1521 compiler_addop_i(struct compiler *c, int opcode, Py_ssize_t oparg) in compiler_addop_i()
1529 compiler_addop_i_noline(struct compiler *c, int opcode, Py_ssize_t oparg) in compiler_addop_i_noline()
1534 static int add_jump_to_block(struct compiler *c, int opcode, in add_jump_to_block()
1566 compiler_addop_j(struct compiler *c, int opcode, basicblock *b) in compiler_addop_j()
1574 compiler_addop_j_noline(struct compiler *c, int opcode, basicblock *b) in compiler_addop_j_noline()
7285 int opcode = setup->i_opcode; in push_except_block() local
8511 get_const_value(int opcode, int oparg, PyObject *co_consts) in get_const_value()
8614 int opcode = instructions[len].i_opcode; in swaptimize() local
8699 #define SWAPPABLE(opcode) \ argument
8785 jump_thread(struct instr *inst, struct instr *target, int opcode) in jump_thread()