Searched refs:JUMP_FORWARD (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test__opcode.py | 44 JUMP_FORWARD = dis.opmap['JUMP_FORWARD'] 45 self.assertEqual(stack_effect(JUMP_FORWARD, 0), 0) 46 self.assertEqual(stack_effect(JUMP_FORWARD, 0, jump=True), 0) 47 self.assertEqual(stack_effect(JUMP_FORWARD, 0, jump=False), 0)
|
/third_party/python/Include/internal/ |
H A D | pycore_opcode.h | 124 [JUMP_FORWARD] = JUMP_FORWARD, 352 [JUMP_FORWARD] = "JUMP_FORWARD",
|
/third_party/python/Include/ |
H A D | opcode.h | 70 #define JUMP_FORWARD 110 macro
|
/third_party/python/Objects/ |
H A D | frameobject.c | 359 case JUMP_FORWARD: in mark_stacks()
|
/third_party/python/Python/ |
H A D | compile.c | 106 ((opcode) == JUMP_FORWARD || \ 1051 case JUMP_FORWARD: in stack_effect() 7714 last->i_opcode = is_forward ? JUMP_FORWARD : JUMP_BACKWARD; in normalize_jumps() 7718 JUMP_FORWARD : JUMP_BACKWARD_NO_INTERRUPT; in normalize_jumps() 9067 last->i_opcode != JUMP_FORWARD && in extend_block()
|
H A D | ceval.c | 3994 TARGET(JUMP_FORWARD) {
|
Completed in 32 milliseconds