Searched refs:BUILD_TUPLE (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Python/ |
D | peephole.c | 44 assert(codestr[n*3] == BUILD_TUPLE || codestr[n*3] == BUILD_LIST); in tuple_of_constants() 433 case BUILD_TUPLE: in PyCode_Optimize() 439 ((opcode == BUILD_TUPLE && in PyCode_Optimize()
|
D | compile.c | 842 case BUILD_TUPLE: in opcode_stack_effect() 1307 ADDOP_I(c, BUILD_TUPLE, free); in compiler_make_closure() 1422 ADDOP_I(c, BUILD_TUPLE, n); in compiler_class() 2488 ADDOP_I(c, BUILD_TUPLE, n); in compiler_tuple() 3378 ADDOP_I(c, BUILD_TUPLE, n); in compiler_visit_slice()
|
D | ceval.c | 2462 TARGET(BUILD_TUPLE) in PyEval_EvalFrameEx()
|
/external/python/cpython2/Include/ |
D | opcode.h | 109 #define BUILD_TUPLE 102 /* Number of tuple items */ macro
|
/external/python/cpython3/Include/ |
D | opcode.h | 80 #define BUILD_TUPLE 102 macro
|
/external/python/cpython3/Python/ |
D | compile.c | 1005 case BUILD_TUPLE: in stack_effect() 1644 ADDOP_I(c, BUILD_TUPLE, free); in compiler_make_closure() 1842 ADDOP_I(c, BUILD_TUPLE, asdl_seq_LEN(args->defaults)); in compiler_visit_defaults() 3385 BUILD_LIST, BUILD_TUPLE, BUILD_LIST_UNPACK); in compiler_list() 3401 BUILD_TUPLE, BUILD_TUPLE, BUILD_TUPLE_UNPACK); in compiler_tuple() 3701 ADDOP_I(c, BUILD_TUPLE, nseen); in compiler_call_helper() 3718 ADDOP_I(c, BUILD_TUPLE, nseen); in compiler_call_helper() 3727 ADDOP_I(c, BUILD_TUPLE, 0); in compiler_call_helper() 4929 ADDOP_I(c, BUILD_TUPLE, n); in compiler_visit_slice()
|
D | peephole.c | 304 case BUILD_TUPLE: in PyCode_Optimize()
|
D | ceval.c | 2258 TARGET(BUILD_TUPLE) { in _PyEval_EvalFrameDefault()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 639 .. opcode:: BUILD_TUPLE (count) 647 Works as ``BUILD_TUPLE``, but creates a list. 652 Works as ``BUILD_TUPLE``, but creates a set.
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 809 .. opcode:: BUILD_TUPLE (count) 817 Works as :opcode:`BUILD_TUPLE`, but creates a list. 822 Works as :opcode:`BUILD_TUPLE`, but creates a set.
|
/external/python/cpython2/Lib/compiler/ |
D | pyassem.py | 735 def BUILD_TUPLE(self, count): member in StackDepthTracker
|