OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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.h" | 5 #include "src/compiler/js-type-feedback.h" |
6 | 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-operator.h" | 9 #include "src/compiler/js-operator.h" |
10 #include "src/compiler/js-type-feedback.h" | |
11 #include "src/compiler/machine-operator.h" | 10 #include "src/compiler/machine-operator.h" |
12 #include "src/compiler/node-matchers.h" | 11 #include "src/compiler/node-matchers.h" |
13 #include "src/compiler/node-properties.h" | 12 #include "src/compiler/node-properties.h" |
14 #include "src/compiler/operator-properties.h" | 13 #include "src/compiler/operator-properties.h" |
15 | 14 |
16 #include "test/unittests/compiler/compiler-test-utils.h" | 15 #include "test/unittests/compiler/compiler-test-utils.h" |
17 #include "test/unittests/compiler/graph-unittest.h" | 16 #include "test/unittests/compiler/graph-unittest.h" |
18 #include "test/unittests/compiler/node-test-utils.h" | 17 #include "test/unittests/compiler/node-test-utils.h" |
19 #include "testing/gmock-support.h" | 18 #include "testing/gmock-support.h" |
20 | 19 |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 IsReturn(load_field_match, load_field_match, graph()->start())); | 326 IsReturn(load_field_match, load_field_match, graph()->start())); |
328 EXPECT_THAT(graph()->end(), IsEnd(ret)); | 327 EXPECT_THAT(graph()->end(), IsEnd(ret)); |
329 | 328 |
330 EXPECT_FALSE(dependencies()->IsEmpty()); | 329 EXPECT_FALSE(dependencies()->IsEmpty()); |
331 dependencies()->Rollback(); | 330 dependencies()->Rollback(); |
332 } | 331 } |
333 | 332 |
334 } // namespace compiler | 333 } // namespace compiler |
335 } // namespace internal | 334 } // namespace internal |
336 } // namespace v8 | 335 } // namespace v8 |
OLD | NEW |