OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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/compiler/js-create-lowering.h" | 5 #include "src/compiler/js-create-lowering.h" |
6 #include "src/code-factory.h" | 6 #include "src/code-factory.h" |
| 7 #include "src/compilation-dependencies.h" |
7 #include "src/compiler/access-builder.h" | 8 #include "src/compiler/access-builder.h" |
8 #include "src/compiler/js-graph.h" | 9 #include "src/compiler/js-graph.h" |
9 #include "src/compiler/js-operator.h" | 10 #include "src/compiler/js-operator.h" |
10 #include "src/compiler/machine-operator.h" | 11 #include "src/compiler/machine-operator.h" |
11 #include "src/compiler/node-properties.h" | 12 #include "src/compiler/node-properties.h" |
12 #include "src/compiler/operator-properties.h" | 13 #include "src/compiler/operator-properties.h" |
13 #include "src/isolate-inl.h" | 14 #include "src/isolate-inl.h" |
14 #include "test/unittests/compiler/compiler-test-utils.h" | 15 #include "test/unittests/compiler/compiler-test-utils.h" |
15 #include "test/unittests/compiler/graph-unittest.h" | 16 #include "test/unittests/compiler/graph-unittest.h" |
16 #include "test/unittests/compiler/node-test-utils.h" | 17 #include "test/unittests/compiler/node-test-utils.h" |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 EXPECT_THAT(r.replacement(), | 207 EXPECT_THAT(r.replacement(), |
207 IsFinishRegion(IsAllocate(IsNumberConstant(Context::SizeFor( | 208 IsFinishRegion(IsAllocate(IsNumberConstant(Context::SizeFor( |
208 Context::MIN_CONTEXT_SLOTS + 1)), | 209 Context::MIN_CONTEXT_SLOTS + 1)), |
209 IsBeginRegion(_), control), | 210 IsBeginRegion(_), control), |
210 _)); | 211 _)); |
211 } | 212 } |
212 | 213 |
213 } // namespace compiler | 214 } // namespace compiler |
214 } // namespace internal | 215 } // namespace internal |
215 } // namespace v8 | 216 } // namespace v8 |
OLD | NEW |