Home
last modified time | relevance | path

Searched refs:BUILD_TUPLE (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Include/
Dopcode.h82 #define BUILD_TUPLE 102 macro
/external/python/cpython2/Include/
Dopcode.h109 #define BUILD_TUPLE 102 /* Number of tuple items */ macro
/external/python/cpython2/Python/
Dpeephole.c44 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()
Dcompile.c842 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()
Dceval.c2462 TARGET(BUILD_TUPLE) in PyEval_EvalFrameEx()
/external/python/cpython2/Doc/library/
Ddis.rst639 .. 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/Python/
Dpeephole.c327 case BUILD_TUPLE: in PyCode_Optimize()
Dcompile.c996 case BUILD_TUPLE: in stack_effect()
1939 ADDOP_I(c, BUILD_TUPLE, free); in compiler_make_closure()
2128 ADDOP_I(c, BUILD_TUPLE, asdl_seq_LEN(args->defaults)); in compiler_visit_defaults()
3743 ADDOP_I(c, BUILD_TUPLE, n+pushed); in starunpack_helper()
Dceval.c2740 case TARGET(BUILD_TUPLE): { in _PyEval_EvalFrameDefault()
/external/python/cpython3/Doc/library/
Ddis.rst818 .. opcode:: BUILD_TUPLE (count)
826 Works as :opcode:`BUILD_TUPLE`, but creates a list.
831 Works as :opcode:`BUILD_TUPLE`, but creates a set.
/external/python/cpython2/Lib/compiler/
Dpyassem.py735 def BUILD_TUPLE(self, count): member in StackDepthTracker