Searched refs:POP_JUMP_IF_FALSE (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython3/Python/ |
D | peephole.c | 14 #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()
|
D | compile.c | 1039 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()
|
D | ceval.c | 2590 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/ |
D | peephole.c | 16 #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()
|
D | compile.c | 863 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()
|
D | ceval.c | 2594 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/ |
D | opcode.h | 123 #define POP_JUMP_IF_FALSE 114 /* "" */ macro
|
/external/python/cpython3/Include/ |
D | opcode.h | 92 #define POP_JUMP_IF_FALSE 114 macro
|
/external/python/cpython2/Objects/ |
D | lnotab_notes.txt | 90 6 POP_JUMP_IF_FALSE 17
|
/external/python/cpython3/Objects/ |
D | lnotab_notes.txt | 97 4 POP_JUMP_IF_FALSE 18
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 700 .. opcode:: POP_JUMP_IF_FALSE (target)
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 949 .. opcode:: POP_JUMP_IF_FALSE (target)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 1972 13 POP_JUMP_IF_FALSE 28
|