Home
last modified time | relevance | path

Searched refs:POP_TOP (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Python/
Dcompile.c880 case POP_TOP: in stack_effect()
2197 ADDOP(c, POP_TOP); in compiler_jump_if()
2426 ADDOP(c, POP_TOP); in compiler_async_for()
2427 ADDOP(c, POP_TOP); in compiler_async_for()
2428 ADDOP(c, POP_TOP); in compiler_async_for()
2430 ADDOP(c, POP_TOP); /* for correct calculation of stack effect */ in compiler_async_for()
2667 ADDOP(c, POP_TOP); in compiler_try_except()
2678 ADDOP(c, POP_TOP); in compiler_try_except()
2726 ADDOP(c, POP_TOP); in compiler_try_except()
2727 ADDOP(c, POP_TOP); in compiler_try_except()
[all …]
Dceval.c1102 TARGET(POP_TOP) { in _PyEval_EvalFrameDefault()
/external/python/cpython2/Include/
Dopcode.h11 #define POP_TOP 1 macro
/external/python/cpython3/Include/
Dopcode.h10 #define POP_TOP 1 macro
/external/python/cpython3/Objects/
Dlnotab_notes.txt102 12 POP_TOP
111 26 POP_TOP
Dframeobject.c211 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) { in frame_setlineno()
/external/python/cpython2/Python/
Dcompile.c689 case POP_TOP: in opcode_stack_effect()
1522 ADDOP_IN_SCOPE(c, POP_TOP); in compiler_lambda()
1571 ADDOP(c, POP_TOP); in compiler_print()
1861 ADDOP(c, POP_TOP); in compiler_try_except()
1866 ADDOP(c, POP_TOP); in compiler_try_except()
1868 ADDOP(c, POP_TOP); in compiler_try_except()
2034 ADDOP(c, POP_TOP); in compiler_from_import()
2172 ADDOP(c, POP_TOP); in compiler_visit_stmt()
2532 ADDOP(c, POP_TOP); in compiler_compare()
2714 ADDOP(c, POP_TOP); in compiler_comprehension_generator()
[all …]
Dceval.c1251 TARGET_NOARG(POP_TOP) in PyEval_EvalFrameEx()
/external/python/cpython2/Doc/library/
Ddis.rst161 .. opcode:: POP_TOP ()
450 is terminated with :opcode:`POP_TOP`.
551 the stack. The next opcode will either ignore it (:opcode:`POP_TOP`), or
/external/python/cpython3/Doc/library/
Ddis.rst322 .. opcode:: POP_TOP
605 is terminated with :opcode:`POP_TOP`.
710 the stack. The next opcode will either ignore it (:opcode:`POP_TOP`), or
/external/python/cpython2/Objects/
Dframeobject.c222 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) { in frame_setlineno()