Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dpeephole.c14 #define CONDITIONAL_JUMP(op) (op==POP_JUMP_IF_FALSE || op==POP_JUMP_IF_TRUE \
17 || op==POP_JUMP_IF_FALSE || op==POP_JUMP_IF_TRUE \
186 case POP_JUMP_IF_FALSE: in markblocks()
292 if (nextop != POP_JUMP_IF_FALSE || in PyCode_Optimize()
364 POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE; in PyCode_Optimize()
376 case POP_JUMP_IF_FALSE: in PyCode_Optimize()
458 case POP_JUMP_IF_FALSE: in PyCode_Optimize()
Dcompile.c1039 case POP_JUMP_IF_FALSE: in stack_effect()
2185 ADDOP_JABS(c, POP_JUMP_IF_FALSE, cleanup); in compiler_jump_if()
2191 ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); in compiler_jump_if()
2214 ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); in compiler_jump_if()
2665 ADDOP_JABS(c, POP_JUMP_IF_FALSE, except); in compiler_try_except()
Dceval.c2590 PREDICT(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault()
2648 PREDICTED(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault()
2649 TARGET(POP_JUMP_IF_FALSE) { in _PyEval_EvalFrameDefault()
/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()
1483 ADDOP_JABS(c, POP_JUMP_IF_FALSE, next); in compiler_ifexp()
1603 ADDOP_JABS(c, POP_JUMP_IF_FALSE, next); in compiler_if()
1677 ADDOP_JABS(c, POP_JUMP_IF_FALSE, anchor); in compiler_while()
1859 ADDOP_JABS(c, POP_JUMP_IF_FALSE, except); in compiler_try_except()
2608 ADDOP_JABS(c, POP_JUMP_IF_FALSE, if_cleanup); in compiler_listcomp_generator()
2697 ADDOP_JABS(c, POP_JUMP_IF_FALSE, if_cleanup); in compiler_comprehension_generator()
Dceval.c2594 PREDICT(POP_JUMP_IF_FALSE); in PyEval_EvalFrameEx()
2689 PREDICTED_WITH_ARG(POP_JUMP_IF_FALSE); in PyEval_EvalFrameEx()
2690 TARGET(POP_JUMP_IF_FALSE) in PyEval_EvalFrameEx()
/external/python/cpython2/Include/
Dopcode.h123 #define POP_JUMP_IF_FALSE 114 /* "" */ macro
/external/python/cpython3/Include/
Dopcode.h92 #define POP_JUMP_IF_FALSE 114 macro
/external/python/cpython2/Objects/
Dlnotab_notes.txt90 6 POP_JUMP_IF_FALSE 17
/external/python/cpython3/Objects/
Dlnotab_notes.txt97 4 POP_JUMP_IF_FALSE 18
/external/python/cpython2/Doc/library/
Ddis.rst700 .. opcode:: POP_JUMP_IF_FALSE (target)
/external/python/cpython3/Doc/library/
Ddis.rst949 .. opcode:: POP_JUMP_IF_FALSE (target)
/external/python/cpython3/Doc/whatsnew/
D3.2.rst1972 13 POP_JUMP_IF_FALSE 28