Searched refs:POP_TOP (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Python/ |
D | compile.c | 880 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 …]
|
D | ceval.c | 1102 TARGET(POP_TOP) { in _PyEval_EvalFrameDefault()
|
/external/python/cpython2/Include/ |
D | opcode.h | 11 #define POP_TOP 1 macro
|
/external/python/cpython3/Include/ |
D | opcode.h | 10 #define POP_TOP 1 macro
|
/external/python/cpython3/Objects/ |
D | lnotab_notes.txt | 102 12 POP_TOP 111 26 POP_TOP
|
D | frameobject.c | 211 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) { in frame_setlineno()
|
/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 | 322 .. 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/ |
D | frameobject.c | 222 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) { in frame_setlineno()
|