Home
last modified time | relevance | path

Searched refs:POP_JUMP_IF_FALSE (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Python/
Dpeephole.c16 #define CONDITIONAL_JUMP(op) (op==POP_JUMP_IF_FALSE || op==POP_JUMP_IF_TRUE \
19 || op==POP_JUMP_IF_FALSE || op==POP_JUMP_IF_TRUE \
262 case POP_JUMP_IF_FALSE: in markblocks()
368 if (codestr[i+1] != POP_JUMP_IF_FALSE in PyCode_Optimize()
420 if (codestr[i+3] != POP_JUMP_IF_FALSE || in PyCode_Optimize()
542 codestr[i] = POP_JUMP_IF_FALSE; in PyCode_Optimize()
550 case POP_JUMP_IF_FALSE: in PyCode_Optimize()
625 case POP_JUMP_IF_FALSE: in PyCode_Optimize()
Dcompile.c863 case POP_JUMP_IF_FALSE: in opcode_stack_effect()
1474 ADDOP_JABS(c, POP_JUMP_IF_FALSE, next); in compiler_ifexp()
1594 ADDOP_JABS(c, POP_JUMP_IF_FALSE, next); in compiler_if()
1668 ADDOP_JABS(c, POP_JUMP_IF_FALSE, anchor); in compiler_while()
1850 ADDOP_JABS(c, POP_JUMP_IF_FALSE, except); in compiler_try_except()
2607 ADDOP_JABS(c, POP_JUMP_IF_FALSE, if_cleanup); in compiler_listcomp_generator()
2696 ADDOP_JABS(c, POP_JUMP_IF_FALSE, if_cleanup); in compiler_comprehension_generator()
Dceval.c2582 PREDICT(POP_JUMP_IF_FALSE); in PyEval_EvalFrameEx()
2669 PREDICTED_WITH_ARG(POP_JUMP_IF_FALSE); in PyEval_EvalFrameEx()
2670 TARGET(POP_JUMP_IF_FALSE) in PyEval_EvalFrameEx()
/external/python/cpython2/Include/
Dopcode.h123 #define POP_JUMP_IF_FALSE 114 /* "" */ macro
/external/python/cpython2/Objects/
Dlnotab_notes.txt90 6 POP_JUMP_IF_FALSE 17
/external/python/cpython2/Doc/library/
Ddis.rst700 .. opcode:: POP_JUMP_IF_FALSE (target)