OLD | NEW |
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 "test/unittests/compiler/graph-unittest.h" | 5 #include "test/unittests/compiler/graph-unittest.h" |
6 | 6 |
7 #include "src/compiler/node-properties.h" | 7 #include "src/compiler/node-properties.h" |
8 #include "test/unittests/compiler/node-test-utils.h" | 8 #include "test/unittests/compiler/node-test-utils.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 | 77 |
78 Node* GraphTest::UndefinedConstant() { | 78 Node* GraphTest::UndefinedConstant() { |
79 return HeapConstant( | 79 return HeapConstant( |
80 Unique<HeapObject>::CreateImmovable(factory()->undefined_value())); | 80 Unique<HeapObject>::CreateImmovable(factory()->undefined_value())); |
81 } | 81 } |
82 | 82 |
83 | 83 |
84 Node* GraphTest::EmptyFrameState() { | 84 Node* GraphTest::EmptyFrameState() { |
85 Node* state_values = graph()->NewNode(common()->StateValues(0)); | 85 Node* state_values = graph()->NewNode(common()->StateValues(0)); |
86 return graph()->NewNode( | 86 return graph()->NewNode( |
87 common()->FrameState(JS_FRAME, BailoutId::None(), | 87 common()->FrameState(BailoutId::None(), OutputFrameStateCombine::Ignore(), |
88 OutputFrameStateCombine::Ignore()), | 88 nullptr), |
89 state_values, state_values, state_values, NumberConstant(0), | 89 state_values, state_values, state_values, NumberConstant(0), |
90 UndefinedConstant(), graph()->start()); | 90 UndefinedConstant(), graph()->start()); |
91 } | 91 } |
92 | 92 |
93 | 93 |
94 Matcher<Node*> GraphTest::IsFalseConstant() { | 94 Matcher<Node*> GraphTest::IsFalseConstant() { |
95 return IsHeapConstant( | 95 return IsHeapConstant( |
96 Unique<HeapObject>::CreateImmovable(factory()->false_value())); | 96 Unique<HeapObject>::CreateImmovable(factory()->false_value())); |
97 } | 97 } |
98 | 98 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 EXPECT_LT(0u, n0->id()); | 139 EXPECT_LT(0u, n0->id()); |
140 EXPECT_LT(0u, n1->id()); | 140 EXPECT_LT(0u, n1->id()); |
141 EXPECT_NE(n0->id(), n1->id()); | 141 EXPECT_NE(n0->id(), n1->id()); |
142 EXPECT_EQ(&kDummyOperator, n0->op()); | 142 EXPECT_EQ(&kDummyOperator, n0->op()); |
143 EXPECT_EQ(&kDummyOperator, n1->op()); | 143 EXPECT_EQ(&kDummyOperator, n1->op()); |
144 } | 144 } |
145 | 145 |
146 } // namespace compiler | 146 } // namespace compiler |
147 } // namespace internal | 147 } // namespace internal |
148 } // namespace v8 | 148 } // namespace v8 |
OLD | NEW |