Index: src/compiler/raw-machine-assembler.h |
diff --git a/src/compiler/raw-machine-assembler.h b/src/compiler/raw-machine-assembler.h |
index b76a2589e03ceeda22ae9da2b986b256754938be..c58db112ea9b355aa1fb7803b10a375d77c8acac 100644 |
--- a/src/compiler/raw-machine-assembler.h |
+++ b/src/compiler/raw-machine-assembler.h |
@@ -481,13 +481,14 @@ class RawMachineAssembler { |
// Call a given call descriptor and the given arguments. |
Node* CallN(CallDescriptor* desc, Node* function, Node** args); |
- |
+ // Call a given call descriptor and the given arguments and frame-state. |
+ Node* CallNWithFrameState(CallDescriptor* desc, Node* function, Node** args, |
+ Node* frame_state); |
+ // Tail call the given call descriptor and the given arguments. |
+ Node* TailCallN(CallDescriptor* call_descriptor, Node* function, Node** args); |
// Call through CallFunctionStub with lazy deopt and frame-state. |
Node* CallFunctionStub0(Node* function, Node* receiver, Node* context, |
Node* frame_state, CallFunctionFlags flags); |
- // Call to a JS function with zero arguments. |
- Node* CallJS0(Node* function, Node* receiver, Node* context, |
- Node* frame_state); |
// Call to a runtime function with zero arguments. |
Node* CallRuntime1(Runtime::FunctionId function, Node* arg0, Node* context, |
Node* frame_state); |
@@ -508,10 +509,6 @@ class RawMachineAssembler { |
MachineType arg7_type, Node* function, Node* arg0, |
Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
Node* arg5, Node* arg6, Node* arg7); |
- Node* TailCallInterpreterDispatch(const CallDescriptor* call_descriptor, |
- Node* target, Node* arg1, Node* arg2, |
- Node* arg3, Node* arg4, Node* arg5, |
- Node* arg6); |
// =========================================================================== |
// The following utility methods deal with control flow, hence might switch |