| Index: src/interpreter/interpreter-assembler.h
|
| diff --git a/src/interpreter/interpreter-assembler.h b/src/interpreter/interpreter-assembler.h
|
| index 183d4ddaefff1e11306170eea5be41dee460e64a..1fc4179ef8efb4b6686a404c0cf9fb28d6fbd2c5 100644
|
| --- a/src/interpreter/interpreter-assembler.h
|
| +++ b/src/interpreter/interpreter-assembler.h
|
| @@ -92,6 +92,17 @@ class InterpreterAssembler : public CodeStubAssembler {
|
| // Call JSFunction or Callable |function| with |arg_count|
|
| // arguments (not including receiver) and the first argument
|
| // located at |first_arg|.
|
| + compiler::Node* CallJSWithFeedback(compiler::Node* function,
|
| + compiler::Node* context,
|
| + compiler::Node* first_arg,
|
| + compiler::Node* arg_count,
|
| + compiler::Node* slot_id,
|
| + compiler::Node* type_feedback_vector,
|
| + TailCallMode tail_call_mode);
|
| +
|
| + // Call JSFunction or Callable |function| with |arg_count|
|
| + // arguments (not including receiver) and the first argument
|
| + // located at |first_arg|.
|
| compiler::Node* CallJS(compiler::Node* function, compiler::Node* context,
|
| compiler::Node* first_arg, compiler::Node* arg_count,
|
| TailCallMode tail_call_mode);
|
|
|