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

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

Issue 2509623002: [turbofan] Sparse representation for state values (Closed)
Patch Set: Remove the optimized_out input entirely, return nullptr when iterating Created 4 years, 1 month 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..40efc2b5d9208554f4a1d1bacf25ea2a9c751990 100644
--- a/test/cctest/compiler/test-js-typed-lowering.cc
+++ b/test/cctest/compiler/test-js-typed-lowering.cc
@@ -77,9 +77,9 @@ 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, 0u));
+ Node* locals = graph.NewNode(common.StateValues(0, 0u));
+ Node* stack = graph.NewNode(common.StateValues(0, 0u));
Node* state_node = graph.NewNode(
common.FrameState(BailoutId::None(), OutputFrameStateCombine::Ignore(),

Powered by Google App Engine
This is Rietveld 408576698