Searched refs:CALL_FUNCTION (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Include/ |
D | opcode.h | 112 #define CALL_FUNCTION 131 macro
|
/third_party/python/Objects/ |
D | lnotab_notes.txt | 191 10 CALL_FUNCTION 1 200 24 CALL_FUNCTION 1
|
/third_party/python/Doc/library/ |
D | dis.rst | 39 4 CALL_FUNCTION 1 107 CALL_FUNCTION 738 by :opcode:`CALL_FUNCTION` to construct a class. 1114 .. opcode:: CALL_FUNCTION (argc) 1120 ``CALL_FUNCTION`` pops all arguments and the callable object off the stack,
|
/third_party/python/Python/ |
D | compile.c | 1139 case CALL_FUNCTION: in stack_effect() 1761 ADDOP_I(c, CALL_FUNCTION, 3); in compiler_call_exit_with_nones() 2416 ADDOP_I(c, CALL_FUNCTION, 1); in compiler_function() 2550 ADDOP_I(c, CALL_FUNCTION, 1); in compiler_class() 3470 ADDOP_I(c, CALL_FUNCTION, 1); in compiler_assert() 4481 ADDOP_I(c, CALL_FUNCTION, n + nelts); in compiler_call_helper() 4874 ADDOP_I(c, CALL_FUNCTION, 1); in compiler_comprehension()
|
D | ceval.c | 3964 PREDICT(CALL_FUNCTION); in _PyEval_EvalFrameDefault() 4209 case TARGET(CALL_FUNCTION): { in _PyEval_EvalFrameDefault() 4210 PREDICTED(CALL_FUNCTION); in _PyEval_EvalFrameDefault() 6304 …else if (prevopcode == WITH_EXCEPT_START || (prevopcode == CALL_FUNCTION && prevprevopcode == DUP_… in format_awaitable_error()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 99 Rework CALL_FUNCTION* opcodes to produce shorter and more efficient
|
/third_party/python/Doc/whatsnew/ |
D | 3.6.rst | 2363 The :opcode:`MAKE_FUNCTION`, :opcode:`CALL_FUNCTION`,
|