Searched refs:BUILD_LIST (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Include/ |
D | opcode.h | 83 #define BUILD_LIST 103 macro
|
/external/python/cpython2/Include/ |
D | opcode.h | 110 #define BUILD_LIST 103 /* Number of list items */ macro
|
/external/python/cpython2/Python/ |
D | peephole.c | 44 assert(codestr[n*3] == BUILD_TUPLE || codestr[n*3] == BUILD_LIST); in tuple_of_constants() 434 case BUILD_LIST: in PyCode_Optimize() 441 (opcode == BUILD_LIST && in PyCode_Optimize()
|
D | compile.c | 843 case BUILD_LIST: in opcode_stack_effect() 2474 ADDOP_I(c, BUILD_LIST, n); in compiler_list() 2634 ADDOP_I(c, BUILD_LIST, 0); in compiler_listcomp()
|
D | ceval.c | 2476 TARGET(BUILD_LIST) in PyEval_EvalFrameEx()
|
/external/python/cpython2/Lib/compiler/ |
D | pyassem.py | 737 def BUILD_LIST(self, count): member in StackDepthTracker
|
/external/python/cpython3/Python/ |
D | compile.c | 997 case BUILD_LIST: in stack_effect() 3791 return starunpack_helper(c, elts, 0, BUILD_LIST, in compiler_list() 3807 return starunpack_helper(c, elts, 0, BUILD_LIST, in compiler_tuple() 4309 else if (starunpack_helper(c, args, n, BUILD_LIST, in compiler_call_helper() 4635 op = BUILD_LIST; in compiler_comprehension()
|
D | ceval.c | 2752 case TARGET(BUILD_LIST): { in _PyEval_EvalFrameDefault()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 645 .. opcode:: BUILD_LIST (count)
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 824 .. opcode:: BUILD_LIST (count)
|