Index: src/compiler/js-generic-lowering.cc |
diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc |
index 68cc1cea9053358bbd5a065647e8300b83bdc56e..699f7dd60569f8f6abe14767b1ca9325849ace9b 100644 |
--- a/src/compiler/js-generic-lowering.cc |
+++ b/src/compiler/js-generic-lowering.cc |
@@ -292,14 +292,6 @@ REPLACE_UNIMPLEMENTED(JSDebugger) |
#undef REPLACE_UNIMPLEMENTED |
-static CallDescriptor::DeoptimizationSupport DeoptimizationSupportForNode( |
- Node* node) { |
- return OperatorProperties::CanLazilyDeoptimize(node->op()) |
- ? CallDescriptor::kCanDeoptimize |
- : CallDescriptor::kCannotDeoptimize; |
-} |
- |
- |
void JSGenericLowering::ReplaceWithCompareIC(Node* node, Token::Value token, |
bool pure) { |
BinaryOpICStub stub(isolate(), Token::ADD); // TODO(mstarzinger): Hack. |
@@ -332,8 +324,7 @@ void JSGenericLowering::ReplaceWithCompareIC(Node* node, Token::Value token, |
void JSGenericLowering::ReplaceWithICStubCall(Node* node, |
HydrogenCodeStub* stub) { |
CodeStubInterfaceDescriptor* d = stub->GetInterfaceDescriptor(); |
- CallDescriptor* desc = linkage()->GetStubCallDescriptor( |
- d, 0, DeoptimizationSupportForNode(node)); |
+ CallDescriptor* desc = linkage()->GetStubCallDescriptor(d); |
Node* stub_code = CodeConstant(stub->GetCode()); |
PatchInsertInput(node, 0, stub_code); |
PatchOperator(node, common()->Call(desc)); |
@@ -364,8 +355,12 @@ void JSGenericLowering::ReplaceWithRuntimeCall(Node* node, |
Operator::Property props = node->op()->properties(); |
const Runtime::Function* fun = Runtime::FunctionForId(f); |
int nargs = (nargs_override < 0) ? fun->nargs : nargs_override; |
- CallDescriptor* desc = linkage()->GetRuntimeCallDescriptor( |
- f, nargs, props, DeoptimizationSupportForNode(node)); |
+ CallDescriptor::DeoptimizationSupport deopt = |
+ OperatorProperties::CanLazilyDeoptimize(node->op()) |
+ ? CallDescriptor::kCanDeoptimize |
+ : CallDescriptor::kCannotDeoptimize; |
+ CallDescriptor* desc = |
+ linkage()->GetRuntimeCallDescriptor(f, nargs, props, deopt); |
Node* ref = ExternalConstant(ExternalReference(f, isolate())); |
Node* arity = Int32Constant(nargs); |
if (!centrystub_constant_.is_set()) { |
@@ -513,8 +508,7 @@ Node* JSGenericLowering::LowerJSCallConstruct(Node* node) { |
int arity = OpParameter<int>(node); |
CallConstructStub stub(isolate(), NO_CALL_CONSTRUCTOR_FLAGS); |
CodeStubInterfaceDescriptor* d = GetInterfaceDescriptor(isolate(), &stub); |
- CallDescriptor* desc = linkage()->GetStubCallDescriptor( |
- d, arity, DeoptimizationSupportForNode(node)); |
+ CallDescriptor* desc = linkage()->GetStubCallDescriptor(d, arity); |
Node* stub_code = CodeConstant(stub.GetCode()); |
Node* construct = NodeProperties::GetValueInput(node, 0); |
PatchInsertInput(node, 0, stub_code); |
@@ -530,8 +524,7 @@ Node* JSGenericLowering::LowerJSCallFunction(Node* node) { |
CallParameters p = OpParameter<CallParameters>(node); |
CallFunctionStub stub(isolate(), p.arity - 2, p.flags); |
CodeStubInterfaceDescriptor* d = GetInterfaceDescriptor(isolate(), &stub); |
- CallDescriptor* desc = linkage()->GetStubCallDescriptor( |
- d, p.arity - 1, DeoptimizationSupportForNode(node)); |
+ CallDescriptor* desc = linkage()->GetStubCallDescriptor(d, p.arity - 1); |
Node* stub_code = CodeConstant(stub.GetCode()); |
PatchInsertInput(node, 0, stub_code); |
PatchOperator(node, common()->Call(desc)); |