PEEK(oparg + 1) = self;
PEEK(oparg + 2) = meth;
Py_DECREF(function);
- goto call_exact_args;
+ JUMP_TO_INSTRUCTION(CALL_PY_EXACT_ARGS);
}
TARGET(KW_NAMES) {
}
TARGET(CALL) {
+ PREDICTED(CALL);
int total_args, is_meth;
- call_function:
is_meth = is_method(stack_pointer, oparg);
PyObject *function = PEEK(oparg + 1);
if (!is_meth && Py_TYPE(function) == &PyMethod_Type) {
else {
STAT_INC(CALL, deferred);
DECREMENT_ADAPTIVE_COUNTER(cache);
- goto call_function;
+ JUMP_TO_INSTRUCTION(CALL);
}
}
TARGET(CALL_PY_EXACT_ARGS) {
- call_exact_args:
+ PREDICTED(CALL_PY_EXACT_ARGS);
assert(call_shape.kwnames == NULL);
DEOPT_IF(tstate->interp->eval_frame, CALL);
_PyCallCache *cache = (_PyCallCache *)next_instr;