| 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 // TODO(jochen): Remove this after the setting is turned on globally. | |
| 6 #define V8_IMMINENT_DEPRECATION_WARNINGS | |
| 7 | |
| 8 #include "src/compiler/access-builder.h" | 5 #include "src/compiler/access-builder.h" |
| 9 #include "src/compiler/common-operator.h" | 6 #include "src/compiler/common-operator.h" |
| 10 #include "src/compiler/graph.h" | 7 #include "src/compiler/graph.h" |
| 11 #include "src/compiler/graph-visualizer.h" | 8 #include "src/compiler/graph-visualizer.h" |
| 12 #include "src/compiler/js-graph.h" | 9 #include "src/compiler/js-graph.h" |
| 13 #include "src/compiler/js-operator.h" | 10 #include "src/compiler/js-operator.h" |
| 14 #include "src/compiler/loop-analysis.h" | 11 #include "src/compiler/loop-analysis.h" |
| 15 #include "src/compiler/node.h" | 12 #include "src/compiler/node.h" |
| 16 #include "src/compiler/opcodes.h" | 13 #include "src/compiler/opcodes.h" |
| 17 #include "src/compiler/operator.h" | 14 #include "src/compiler/operator.h" |
| (...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1011 TEST(LaManyNested_62) { RunManyNestedLoops_i(62); } | 1008 TEST(LaManyNested_62) { RunManyNestedLoops_i(62); } |
| 1012 TEST(LaManyNested_63) { RunManyNestedLoops_i(63); } | 1009 TEST(LaManyNested_63) { RunManyNestedLoops_i(63); } |
| 1013 TEST(LaManyNested_64) { RunManyNestedLoops_i(64); } | 1010 TEST(LaManyNested_64) { RunManyNestedLoops_i(64); } |
| 1014 | 1011 |
| 1015 | 1012 |
| 1016 TEST(LaPhiTangle) { LoopFinderTester t; } | 1013 TEST(LaPhiTangle) { LoopFinderTester t; } |
| 1017 | 1014 |
| 1018 } // namespace compiler | 1015 } // namespace compiler |
| 1019 } // namespace internal | 1016 } // namespace internal |
| 1020 } // namespace v8 | 1017 } // namespace v8 |
| OLD | NEW |