Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: src/compiler/effect-control-linearizer.cc

Issue 2692753004: [turbofan] escape analysis supports arguments object and rest elements (Closed)
Patch Set: replaced obscure for-loop Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/compiler/effect-control-linearizer.cc
diff --git a/src/compiler/effect-control-linearizer.cc b/src/compiler/effect-control-linearizer.cc
index 1aa0ec6668c8ea5e228447ab3c3a082014acf9d5..9a1a91a8153d0808f5386abe93b0d22441a03c67 100644
--- a/src/compiler/effect-control-linearizer.cc
+++ b/src/compiler/effect-control-linearizer.cc
@@ -738,8 +738,11 @@ bool EffectControlLinearizer::TryWireInStateEffect(Node* node,
case IrOpcode::kObjectIsUndetectable:
result = LowerObjectIsUndetectable(node);
break;
- case IrOpcode::kNewRestParameterElements:
- result = LowerNewRestParameterElements(node);
+ case IrOpcode::kArgumentsFrame:
+ result = LowerArgumentsFrame(node);
+ break;
+ case IrOpcode::kArgumentsLength:
+ result = LowerArgumentsLength(node);
break;
case IrOpcode::kNewUnmappedArgumentsElements:
result = LowerNewUnmappedArgumentsElements(node);
@@ -1847,21 +1850,77 @@ Node* EffectControlLinearizer::LowerObjectIsUndetectable(Node* node) {
return done.PhiAt(0);
}
-Node* EffectControlLinearizer::LowerNewRestParameterElements(Node* node) {
- int const formal_parameter_count = ParameterCountOf(node->op());
+Node* EffectControlLinearizer::LowerArgumentsLength(Node* node) {
+ Node* arguments_frame = NodeProperties::GetValueInput(node, 0);
+ int formal_parameter_count = FormalParameterCountOf(node->op());
+ bool is_rest_length = IsRestLengthOf(node->op());
+ DCHECK(formal_parameter_count >= 0);
- Callable const callable = CodeFactory::NewRestParameterElements(isolate());
- Operator::Properties const properties = node->op()->properties();
- CallDescriptor::Flags const flags = CallDescriptor::kNoFlags;
- CallDescriptor* desc = Linkage::GetStubCallDescriptor(
- isolate(), graph()->zone(), callable.descriptor(), 0, flags, properties);
- return __ Call(desc, __ HeapConstant(callable.code()),
- __ IntPtrConstant(formal_parameter_count),
- __ NoContextConstant());
+ if (is_rest_length) {
+ auto if_adaptor_frame = __ MakeLabel<1>();
+ auto done = __ MakeLabel<3>(MachineRepresentation::kTaggedSigned);
+
+ Node* frame = graph()->NewNode(machine()->LoadFramePointer());
Jarin 2017/02/15 16:17:14 Please do not create nodes directly here and below
+ __ GotoIf(__ WordEqual(arguments_frame, frame), &done, __ SmiConstant(0));
+ __ Goto(&if_adaptor_frame);
+
+ __ Bind(&if_adaptor_frame);
+ Node* arguments_length = __ Load(
+ MachineType::TaggedSigned(), arguments_frame,
+ __ IntPtrConstant(ArgumentsAdaptorFrameConstants::kLengthOffset));
+
+ Node* rest_length =
+ graph()->NewNode(machine()->IntSub(), arguments_length,
+ __ SmiConstant(formal_parameter_count));
+ __ GotoIf(graph()->NewNode(machine()->IntLessThan(), rest_length,
+ __ SmiConstant(0)),
+ &done, __ SmiConstant(0));
+ __ Goto(&done, rest_length);
+
+ __ Bind(&done);
+ return done.PhiAt(0);
+ } else {
+ auto if_adaptor_frame = __ MakeLabel<1>();
+ auto done = __ MakeLabel<2>(MachineRepresentation::kTaggedSigned);
+
+ Node* frame = graph()->NewNode(machine()->LoadFramePointer());
+ __ GotoIf(__ WordEqual(arguments_frame, frame), &done,
+ __ SmiConstant(formal_parameter_count));
+ __ Goto(&if_adaptor_frame);
+
+ __ Bind(&if_adaptor_frame);
+ Node* arguments_length = __ Load(
+ MachineType::TaggedSigned(), arguments_frame,
+ __ IntPtrConstant(ArgumentsAdaptorFrameConstants::kLengthOffset));
+ __ Goto(&done, arguments_length);
+
+ __ Bind(&done);
+ return done.PhiAt(0);
+ }
+}
+
+Node* EffectControlLinearizer::LowerArgumentsFrame(Node* node) {
+ auto done = __ MakeLabel<2>(MachineType::PointerRepresentation());
+
+ Node* frame = graph()->NewNode(machine()->LoadFramePointer());
+ Node* parent_frame =
+ __ Load(MachineType::AnyTagged(), frame,
+ __ IntPtrConstant(StandardFrameConstants::kCallerFPOffset));
+ Node* parent_frame_type = __ Load(
+ MachineType::AnyTagged(), parent_frame,
+ __ IntPtrConstant(CommonFrameConstants::kContextOrFrameTypeOffset));
+ __ GotoIf(__ WordEqual(parent_frame_type,
+ __ SmiConstant(StackFrame::ARGUMENTS_ADAPTOR)),
+ &done, parent_frame);
+ __ Goto(&done, frame);
+
+ __ Bind(&done);
+ return done.PhiAt(0);
}
Node* EffectControlLinearizer::LowerNewUnmappedArgumentsElements(Node* node) {
- int const formal_parameter_count = ParameterCountOf(node->op());
+ Node* frame = NodeProperties::GetValueInput(node, 0);
+ Node* length = NodeProperties::GetValueInput(node, 1);
Callable const callable =
CodeFactory::NewUnmappedArgumentsElements(isolate());
@@ -1869,8 +1928,7 @@ Node* EffectControlLinearizer::LowerNewUnmappedArgumentsElements(Node* node) {
CallDescriptor::Flags const flags = CallDescriptor::kNoFlags;
CallDescriptor* desc = Linkage::GetStubCallDescriptor(
isolate(), graph()->zone(), callable.descriptor(), 0, flags, properties);
- return __ Call(desc, __ HeapConstant(callable.code()),
- __ IntPtrConstant(formal_parameter_count),
+ return __ Call(desc, __ HeapConstant(callable.code()), frame, length,
__ NoContextConstant());
}

Powered by Google App Engine
This is Rietveld 408576698