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

Unified Diff: test/cctest/compiler/test-js-typed-lowering.cc

Issue 2509623002: [turbofan] Sparse representation for state values (Closed)
Patch Set: Large reformatting, addressing Jaro's comments Created 4 years 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: test/cctest/compiler/test-js-typed-lowering.cc
diff --git a/test/cctest/compiler/test-js-typed-lowering.cc b/test/cctest/compiler/test-js-typed-lowering.cc
index f504e549fdbc8d238bbb8faba01e9821d48ff44b..606f338052f41303fd37e4d8ae833cf5a2ad9a25 100644
--- a/test/cctest/compiler/test-js-typed-lowering.cc
+++ b/test/cctest/compiler/test-js-typed-lowering.cc
@@ -77,9 +77,12 @@ class JSTypedLoweringTester : public HandleAndZoneScope {
}
Node* EmptyFrameState(Node* context) {
- Node* parameters = graph.NewNode(common.StateValues(0));
- Node* locals = graph.NewNode(common.StateValues(0));
- Node* stack = graph.NewNode(common.StateValues(0));
+ Node* parameters =
+ graph.NewNode(common.StateValues(0, SparseInputMask::Dense()));
+ Node* locals =
+ graph.NewNode(common.StateValues(0, SparseInputMask::Dense()));
+ Node* stack =
+ graph.NewNode(common.StateValues(0, SparseInputMask::Dense()));
Node* state_node = graph.NewNode(
common.FrameState(BailoutId::None(), OutputFrameStateCombine::Ignore(),

Powered by Google App Engine
This is Rietveld 408576698