Home
last modified time | relevance | path

Searched refs:POP_BLOCK (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Objects/
Dlnotab_notes.txt97 >> 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
Dframeobject.c222 case POP_BLOCK: in frame_setlineno()
306 case POP_BLOCK: in frame_setlineno()
/external/python/cpython3/Objects/
Dlnotab_notes.txt102 >> 17 POP_BLOCK
109 If 'a' is false, execution will jump to the POP_BLOCK instruction at offset 17
111 In this case, we could instead associate the POP_BLOCK with line 5, but that
Dframeobject.c204 case POP_BLOCK: in frame_setlineno()
287 case POP_BLOCK: in frame_setlineno()
/external/python/cpython2/Include/
Dopcode.h90 #define POP_BLOCK 87 macro
/external/python/cpython3/Include/
Dopcode.h65 #define POP_BLOCK 87 macro
/external/python/cpython3/Python/
Dcompile.c953 case POP_BLOCK: in PyCompile_OpcodeStackEffect()
2173 ADDOP(c, POP_BLOCK); in compiler_for()
2226 ADDOP(c, POP_BLOCK); in compiler_async_for()
2241 ADDOP(c, POP_BLOCK); /* for SETUP_LOOP */ in compiler_async_for()
2252 ADDOP(c, POP_BLOCK); /* for SETUP_LOOP */ in compiler_async_for()
2311 ADDOP(c, POP_BLOCK); in compiler_while()
2407 ADDOP(c, POP_BLOCK); in compiler_try_finally()
2469 ADDOP(c, POP_BLOCK); in compiler_try_except()
2522 ADDOP(c, POP_BLOCK); in compiler_try_except()
3795 ADDOP(c, POP_BLOCK); in compiler_async_comprehension_generator()
[all …]
Dceval.c2086 PREDICTED(POP_BLOCK); in _PyEval_EvalFrameDefault()
2087 TARGET(POP_BLOCK) { in _PyEval_EvalFrameDefault()
3078 PREDICT(POP_BLOCK); in _PyEval_EvalFrameDefault()
/external/python/cpython2/Python/
Dcompile.c811 case POP_BLOCK: in opcode_stack_effect()
1627 ADDOP(c, POP_BLOCK); in compiler_for()
1679 ADDOP(c, POP_BLOCK); in compiler_while()
1769 ADDOP(c, POP_BLOCK); in compiler_try_finally()
1831 ADDOP(c, POP_BLOCK); in compiler_try_except()
2937 ADDOP(c, POP_BLOCK); in compiler_with()
Dceval.c2114 TARGET_NOARG(POP_BLOCK) in PyEval_EvalFrameEx()
/external/python/cpython2/Doc/library/
Ddis.rst525 .. opcode:: POP_BLOCK ()
/external/python/cpython3/Doc/library/
Ddis.rst626 .. opcode:: POP_BLOCK