Searched refs:POP_TOP (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Include/ |
D | opcode.h | 10 #define POP_TOP 1 macro
|
/external/python/cpython3/Python/ |
D | compile.c | 880 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 …]
|
D | ceval.c | 1502 case TARGET(POP_TOP): { in _PyEval_EvalFrameDefault()
|
/external/python/cpython2/Include/ |
D | opcode.h | 11 #define POP_TOP 1 macro
|
/external/python/cpython3/Objects/ |
D | lnotab_notes.txt | 104 12 POP_TOP 113 26 POP_TOP
|
/external/python/cpython2/Python/ |
D | compile.c | 689 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 …]
|
D | ceval.c | 1251 TARGET_NOARG(POP_TOP) in PyEval_EvalFrameEx()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 161 .. 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/ |
D | dis.rst | 331 .. 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/ |
D | frameobject.c | 222 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) { in frame_setlineno()
|