Home
last modified time | relevance | path

Searched refs:i_opcode (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dcompile.c50 unsigned char i_opcode; member
934 i->i_opcode = opcode; in compiler_addop()
1011 i->i_opcode = opcode; in compiler_addop_i()
1029 i->i_opcode = opcode; in compiler_addop_j()
3439 depth += opcode_stack_effect(instr->i_opcode, instr->i_oparg); in stackdepth_walk()
3445 if (instr->i_opcode == FOR_ITER) { in stackdepth_walk()
3448 else if (instr->i_opcode == SETUP_FINALLY || in stackdepth_walk()
3449 instr->i_opcode == SETUP_EXCEPT) { in stackdepth_walk()
3454 else if (instr->i_opcode == JUMP_IF_TRUE_OR_POP || in stackdepth_walk()
3455 instr->i_opcode == JUMP_IF_FALSE_OR_POP) in stackdepth_walk()
[all …]
/external/python/cpython3/Python/
Dcompile.c47 unsigned char i_opcode; member
1147 i->i_opcode = opcode; in compiler_addop()
1239 i->i_opcode = opcode; in compiler_addop_i()
1257 i->i_opcode = opcode; in compiler_addop_j()
5029 int effect = stack_effect(instr->i_opcode, instr->i_oparg, 0); in stackdepth()
5031 fprintf(stderr, "opcode = %d\n", instr->i_opcode); in stackdepth()
5040 effect = stack_effect(instr->i_opcode, instr->i_oparg, 1); in stackdepth()
5047 if (instr->i_opcode == CONTINUE_LOOP) { in stackdepth()
5060 if (instr->i_opcode == JUMP_ABSOLUTE || in stackdepth()
5061 instr->i_opcode == JUMP_FORWARD || in stackdepth()
[all …]