Chromium Code Reviews| Index: src/interpreter/interpreter-assembler.h |
| diff --git a/src/interpreter/interpreter-assembler.h b/src/interpreter/interpreter-assembler.h |
| index a1604c524037bdaff2426ad334dead56970c0ffb..789029f92ed7e06fb784a48bb66c4d40173c683b 100644 |
| --- a/src/interpreter/interpreter-assembler.h |
| +++ b/src/interpreter/interpreter-assembler.h |
| @@ -87,6 +87,17 @@ class InterpreterAssembler : public compiler::CodeStubAssembler { |
| compiler::Node* first_arg, compiler::Node* arg_count, |
| TailCallMode tail_call_mode); |
| + // Call JSFunction or Callable |function| with |arg_count| |
| + // arguments (not including receiver) and the first argument |
| + // located at |first_arg| with feedback slot id |slot_id|. |
|
rmcilroy
2016/02/22 12:53:23
Add comment about type feedback vector
mythria
2016/02/22 14:51:31
Done.
|
| + 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 constructor |constructor| with |arg_count| arguments (not |
| // including receiver) and the first argument located at |
| // |first_arg|. The |new_target| is the same as the |