Searched refs:POP_BLOCK (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Objects/ |
D | lnotab_notes.txt | 97 >> 17 POP_BLOCK 104 If 'a' is false, execution will jump to the POP_BLOCK instruction at offset 17 106 In this case, we could instead associate the POP_BLOCK with line 5, but that
|
D | frameobject.c | 253 case POP_BLOCK: in frame_setlineno() 337 case POP_BLOCK: in frame_setlineno()
|
/external/python/cpython3/Objects/ |
D | lnotab_notes.txt | 106 >> 18 POP_BLOCK 115 If 'a' is false, execution will jump to the POP_BLOCK instruction at offset 18 117 In this case, we could instead associate the POP_BLOCK with line 5, but that
|
D | frameobject.c | 243 case POP_BLOCK: in frame_setlineno() 326 case POP_BLOCK: in frame_setlineno()
|
/external/python/cpython2/Include/ |
D | opcode.h | 90 #define POP_BLOCK 87 macro
|
/external/python/cpython3/Include/ |
D | opcode.h | 65 #define POP_BLOCK 87 macro
|
/external/python/cpython3/Python/ |
D | compile.c | 973 case POP_BLOCK: in stack_effect() 2354 ADDOP(c, POP_BLOCK); in compiler_for() 2409 ADDOP(c, POP_BLOCK); in compiler_async_for() 2431 ADDOP(c, POP_BLOCK); /* for SETUP_LOOP */ in compiler_async_for() 2487 ADDOP(c, POP_BLOCK); in compiler_while() 2583 ADDOP(c, POP_BLOCK); in compiler_try_finally() 2645 ADDOP(c, POP_BLOCK); in compiler_try_except() 2699 ADDOP(c, POP_BLOCK); in compiler_try_except() 3958 ADDOP(c, POP_BLOCK); in compiler_async_comprehension_generator() 4281 ADDOP(c, POP_BLOCK); in compiler_async_with() [all …]
|
D | ceval.c | 1846 PREDICTED(POP_BLOCK); in _PyEval_EvalFrameDefault() 1847 TARGET(POP_BLOCK) { in _PyEval_EvalFrameDefault() 2827 PREDICT(POP_BLOCK); in _PyEval_EvalFrameDefault()
|
/external/python/cpython2/Python/ |
D | compile.c | 811 case POP_BLOCK: in opcode_stack_effect() 1636 ADDOP(c, POP_BLOCK); in compiler_for() 1688 ADDOP(c, POP_BLOCK); in compiler_while() 1778 ADDOP(c, POP_BLOCK); in compiler_try_finally() 1840 ADDOP(c, POP_BLOCK); in compiler_try_except() 2938 ADDOP(c, POP_BLOCK); in compiler_with()
|
D | ceval.c | 2126 TARGET_NOARG(POP_BLOCK) in PyEval_EvalFrameEx()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 525 .. opcode:: POP_BLOCK ()
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 676 .. opcode:: POP_BLOCK
|