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

Side by Side Diff: src/compiler/js-typed-lowering.cc

Issue 2151773002: Avoid jumping to the runtime for ForInFilter (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: use the code stub in turbofan Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/code-factory.h" 5 #include "src/code-factory.h"
6 #include "src/compilation-dependencies.h" 6 #include "src/compilation-dependencies.h"
7 #include "src/compiler/access-builder.h" 7 #include "src/compiler/access-builder.h"
8 #include "src/compiler/js-graph.h" 8 #include "src/compiler/js-graph.h"
9 #include "src/compiler/js-typed-lowering.h" 9 #include "src/compiler/js-typed-lowering.h"
10 #include "src/compiler/linkage.h" 10 #include "src/compiler/linkage.h"
(...skipping 1746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1757 etrue0 = effect; 1757 etrue0 = effect;
1758 vtrue0 = key; 1758 vtrue0 = key;
1759 } 1759 }
1760 1760
1761 Node* if_false0 = graph()->NewNode(common()->IfFalse(), branch0); 1761 Node* if_false0 = graph()->NewNode(common()->IfFalse(), branch0);
1762 Node* efalse0; 1762 Node* efalse0;
1763 Node* vfalse0; 1763 Node* vfalse0;
1764 { 1764 {
1765 // Filter the {key} to check if it's still a valid property of the 1765 // Filter the {key} to check if it's still a valid property of the
1766 // {receiver} (does the ToName conversion implicitly). 1766 // {receiver} (does the ToName conversion implicitly).
1767 Callable const callable = CodeFactory::ForInFilter(isolate());
1768 CallDescriptor const* const desc = Linkage::GetStubCallDescriptor(
1769 isolate(), graph()->zone(), callable.descriptor(), 0,
1770 CallDescriptor::kNeedsFrameState);
1767 vfalse0 = efalse0 = graph()->NewNode( 1771 vfalse0 = efalse0 = graph()->NewNode(
1768 javascript()->CallRuntime(Runtime::kForInFilter), receiver, key, 1772 common()->Call(desc), jsgraph()->HeapConstant(callable.code()),
1769 context, frame_state, effect, if_false0); 1773 key, receiver, context, frame_state, effect, if_false0);
1770 if_false0 = graph()->NewNode(common()->IfSuccess(), vfalse0); 1774 if_false0 = graph()->NewNode(common()->IfSuccess(), vfalse0);
1771 } 1775 }
1772 1776
1773 control = graph()->NewNode(common()->Merge(2), if_true0, if_false0); 1777 control = graph()->NewNode(common()->Merge(2), if_true0, if_false0);
1774 effect = graph()->NewNode(common()->EffectPhi(2), etrue0, efalse0, control); 1778 effect = graph()->NewNode(common()->EffectPhi(2), etrue0, efalse0, control);
1775 ReplaceWithValue(node, node, effect, control); 1779 ReplaceWithValue(node, node, effect, control);
1776 node->ReplaceInput(0, vtrue0); 1780 node->ReplaceInput(0, vtrue0);
1777 node->ReplaceInput(1, vfalse0); 1781 node->ReplaceInput(1, vfalse0);
1778 node->ReplaceInput(2, control); 1782 node->ReplaceInput(2, control);
1779 node->TrimInputCount(3); 1783 node->TrimInputCount(3);
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
2084 } 2088 }
2085 2089
2086 2090
2087 CompilationDependencies* JSTypedLowering::dependencies() const { 2091 CompilationDependencies* JSTypedLowering::dependencies() const {
2088 return dependencies_; 2092 return dependencies_;
2089 } 2093 }
2090 2094
2091 } // namespace compiler 2095 } // namespace compiler
2092 } // namespace internal 2096 } // namespace internal
2093 } // namespace v8 2097 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698