Home
last modified time | relevance | path

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

/third_party/python/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 \
195 case POP_JUMP_IF_FALSE: in markblocks()
308 if (nextop != POP_JUMP_IF_FALSE || in PyCode_Optimize()
391 POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE; in PyCode_Optimize()
403 case POP_JUMP_IF_FALSE: in PyCode_Optimize()
493 case POP_JUMP_IF_FALSE: in PyCode_Optimize()
Dceval.c3012 PREDICT(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault()
3026 PREDICT(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault()
3043 PREDICT(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault()
3145 case TARGET(POP_JUMP_IF_FALSE): { in _PyEval_EvalFrameDefault()
3146 PREDICTED(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault()
Dcompile.c1027 case POP_JUMP_IF_FALSE: in stack_effect()
2586 ADDOP_JABS(c, POP_JUMP_IF_FALSE, cleanup); in compiler_jump_if()
2591 ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); in compiler_jump_if()
2614 ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); in compiler_jump_if()
/third_party/python/Include/
Dopcode.h94 #define POP_JUMP_IF_FALSE 114 macro
/third_party/python/Objects/
Dlnotab_notes.txt99 4 POP_JUMP_IF_FALSE 18
Dframeobject.c128 case POP_JUMP_IF_FALSE: in markblocks()
/third_party/python/Doc/library/
Ddis.rst950 .. opcode:: POP_JUMP_IF_FALSE (target)
/third_party/python/Doc/whatsnew/
D3.2.rst1974 13 POP_JUMP_IF_FALSE 28