Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dopcode.h10 #define POP_TOP 1 macro
/external/python/cpython3/Python/
Dcompile.c880 case POP_TOP: in stack_effect()
1675 ADDOP(c, POP_TOP); in compiler_unwind_fblock()
1702 ADDOP(c, POP_TOP); in compiler_unwind_fblock()
1703 ADDOP(c, POP_TOP); in compiler_unwind_fblock()
1704 ADDOP(c, POP_TOP); in compiler_unwind_fblock()
1725 ADDOP(c, POP_TOP); in compiler_unwind_fblock()
1747 ADDOP(c, POP_TOP); in compiler_unwind_fblock()
2597 ADDOP(c, POP_TOP); in compiler_jump_if()
3091 ADDOP(c, POP_TOP); in compiler_try_except()
3102 ADDOP(c, POP_TOP); in compiler_try_except()
[all …]
Dceval.c1502 case TARGET(POP_TOP): { in _PyEval_EvalFrameDefault()
/external/python/cpython2/Include/
Dopcode.h11 #define POP_TOP 1 macro
/external/python/cpython3/Objects/
Dlnotab_notes.txt104 12 POP_TOP
113 26 POP_TOP
/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.rst331 .. opcode:: POP_TOP
633 is terminated with :opcode:`POP_TOP`.
747 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()