Searched refs:POP_JUMP_IF_FALSE (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Include/ |
D | opcode.h | 99 #define POP_JUMP_IF_FALSE 114 macro
|
/third_party/python/Python/ |
D | compile.c | 1109 case POP_JUMP_IF_FALSE: in stack_effect() 2708 ADDOP_JUMP(c, POP_JUMP_IF_FALSE, cleanup); in compiler_jump_if() 2713 ADDOP_JUMP(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); in compiler_jump_if() 2737 ADDOP_JUMP(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); in compiler_jump_if() 5947 RETURN_IF_FALSE(jump_to_fail_pop(c, pc, POP_JUMP_IF_FALSE)); in compiler_pattern_class() 5992 RETURN_IF_FALSE(jump_to_fail_pop(c, pc, POP_JUMP_IF_FALSE)); in compiler_pattern_mapping() 6004 RETURN_IF_FALSE(jump_to_fail_pop(c, pc, POP_JUMP_IF_FALSE)); in compiler_pattern_mapping() 6062 RETURN_IF_FALSE(jump_to_fail_pop(c, pc, POP_JUMP_IF_FALSE)); in compiler_pattern_mapping() 6276 RETURN_IF_FALSE(jump_to_fail_pop(c, pc, POP_JUMP_IF_FALSE)); in compiler_pattern_sequence() 6282 RETURN_IF_FALSE(jump_to_fail_pop(c, pc, POP_JUMP_IF_FALSE)); in compiler_pattern_sequence() [all …]
|
D | ceval.c | 3610 PREDICT(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault() 3624 PREDICT(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault() 3641 PREDICT(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault() 3743 case TARGET(POP_JUMP_IF_FALSE): { in _PyEval_EvalFrameDefault() 3744 PREDICTED(POP_JUMP_IF_FALSE); in _PyEval_EvalFrameDefault()
|
/third_party/python/Objects/ |
D | lnotab_notes.txt | 187 4 POP_JUMP_IF_FALSE 18
|
D | frameobject.c | 150 case POP_JUMP_IF_FALSE: in markblocks()
|
/third_party/python/Doc/library/ |
D | dis.rst | 997 .. opcode:: POP_JUMP_IF_FALSE (target)
|
/third_party/python/Doc/whatsnew/ |
D | 3.2.rst | 1974 13 POP_JUMP_IF_FALSE 28
|