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