Searched refs:PRECALL (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Include/internal/ |
H A D | pycore_opcode.h | 51 [PRECALL] = 1, 177 [PRECALL] = PRECALL, 178 [PRECALL_ADAPTIVE] = PRECALL, 179 [PRECALL_BOUND_METHOD] = PRECALL, 180 [PRECALL_BUILTIN_CLASS] = PRECALL, 181 [PRECALL_BUILTIN_FAST_WITH_KEYWORDS] = PRECALL, 182 [PRECALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS] = PRECALL, 183 [PRECALL_NO_KW_BUILTIN_FAST] = PRECALL, 184 [PRECALL_NO_KW_BUILTIN_O] = PRECALL, [all...] |
/third_party/python/Python/ |
H A D | specialize.c | 27 [PRECALL] = PRECALL_ADAPTIVE, 124 err += add_stat_dict(stats, PRECALL, "precall"); in _Py_GetSpecializationStats() 1375 SPECIALIZATION_FAIL(PRECALL, SPEC_FAIL_CALL_PYTHON_CLASS); in specialize_class_call() 1397 SPECIALIZATION_FAIL(PRECALL, tp == &PyUnicode_Type ? in specialize_class_call() 1401 SPECIALIZATION_FAIL(PRECALL, SPEC_FAIL_CALL_CLASS_MUTABLE); in specialize_class_call() 1435 SPECIALIZATION_FAIL(PRECALL, SPEC_FAIL_CALL_KWNAMES); in specialize_method_descriptor() 1444 SPECIALIZATION_FAIL(PRECALL, SPEC_FAIL_WRONG_NUMBER_ARGUMENTS); in specialize_method_descriptor() 1452 SPECIALIZATION_FAIL(PRECALL, SPEC_FAIL_WRONG_NUMBER_ARGUMENTS); in specialize_method_descriptor() 1476 SPECIALIZATION_FAIL(PRECALL, builtin_call_fail_kind(descr->d_method->ml_flags)); in specialize_method_descriptor() 1545 SPECIALIZATION_FAIL(PRECALL, SPEC_FAIL_CALL_KWNAME in specialize_c_call() [all...] |
H A D | ceval.c | 1376 // Skip from a PRECALL over a CALL to the next instruction: 1621 /* It is only between the PRECALL instruction and the following CALL, 4487 /* Designed to work in tandem with PRECALL. */ 4512 PRECALL that it's not a method call. 4657 TARGET(PRECALL) { 4658 PREDICTED(PRECALL); 4704 DEOPT_IF(is_method(stack_pointer, oparg), PRECALL); local 4706 DEOPT_IF(Py_TYPE(function) != &PyMethod_Type, PRECALL); local 4707 STAT_INC(PRECALL, hit); 4722 DEOPT_IF(Py_TYPE(function) != &PyFunction_Type, PRECALL); local 5015 DEOPT_IF(PyCFunction_GET_FLAGS(callable) != METH_O, PRECALL); global() local 5049 PRECALL); global() local 5088 (METH_FASTCALL | METH_KEYWORDS), PRECALL); global() local [all...] |
H A D | compile.c | 1119 case PRECALL: in stack_effect() 1962 ADDOP_I(c, PRECALL, 2); in compiler_call_exit_with_nones() 2340 ADDOP_I(c, PRECALL, 0); in compiler_apply_decorators() 4046 ADDOP_I(c, PRECALL, 0); in compiler_assert() 4903 ADDOP_I(c, PRECALL, argsl + kwdsl); in maybe_optimize_method_call() 4968 ADDOP_I(c, PRECALL, 1); in compiler_joined_str() 5142 ADDOP_I(c, PRECALL, n + nelts + nkwelts); in compiler_call_helper() 5533 ADDOP_I(c, PRECALL, 0); in compiler_comprehension()
|
/third_party/python/Include/ |
H A D | opcode.h | 115 #define PRECALL 166 macro
|
Completed in 23 milliseconds