Searched refs:DUP_TOP (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Include/ |
D | opcode.h | 14 #define DUP_TOP 4 macro
|
/external/python/cpython3/Include/ |
D | opcode.h | 13 #define DUP_TOP 4 macro
|
/external/python/cpython2/Python/ |
D | compile.c | 694 case DUP_TOP: in opcode_stack_effect() 1554 ADDOP(c, DUP_TOP); in compiler_print() 1856 ADDOP(c, DUP_TOP); in compiler_try_except() 2106 ADDOP(c, DUP_TOP); in compiler_visit_stmt() 2154 ADDOP(c, DUP_TOP); in compiler_visit_stmt() 2158 ADDOP(c, DUP_TOP); in compiler_visit_stmt() 2511 ADDOP(c, DUP_TOP); in compiler_compare() 3040 ADDOP(c, DUP_TOP); in compiler_visit_expr() 3290 case 0: ADDOP(c, DUP_TOP); break; in compiler_simple_slice()
|
D | ceval.c | 1292 TARGET_NOARG(DUP_TOP) in PyEval_EvalFrameEx()
|
/external/python/cpython3/Python/ |
D | compile.c | 885 case DUP_TOP: in stack_effect() 2043 ADDOP(c, DUP_TOP); in compiler_class() 2181 ADDOP(c, DUP_TOP); in compiler_jump_if() 2415 ADDOP(c, DUP_TOP); in compiler_async_for() 2662 ADDOP(c, DUP_TOP); in compiler_try_except() 3005 ADDOP(c, DUP_TOP); in compiler_visit_stmt() 3517 ADDOP(c, DUP_TOP); in compiler_compare() 3964 ADDOP(c, DUP_TOP); in compiler_async_comprehension_generator() 4497 ADDOP(c, DUP_TOP); in compiler_visit_expr()
|
D | ceval.c | 1126 TARGET(DUP_TOP) { in _PyEval_EvalFrameDefault()
|
/external/python/cpython3/Objects/ |
D | frameobject.c | 211 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) { in frame_setlineno()
|
/external/python/cpython2/Objects/ |
D | frameobject.c | 222 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) { in frame_setlineno()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 183 .. opcode:: DUP_TOP ()
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 338 .. opcode:: DUP_TOP
|