| 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 "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/compiler/access-builder.h" | 7 #include "src/compiler/access-builder.h" |
| 8 #include "src/compiler/common-operator.h" | 8 #include "src/compiler/common-operator.h" |
| 9 #include "src/compiler/graph.h" | 9 #include "src/compiler/graph.h" |
| 10 #include "src/compiler/graph-visualizer.h" | |
| 11 #include "src/compiler/js-graph.h" | 10 #include "src/compiler/js-graph.h" |
| 12 #include "src/compiler/js-operator.h" | 11 #include "src/compiler/js-operator.h" |
| 13 #include "src/compiler/loop-analysis.h" | 12 #include "src/compiler/loop-analysis.h" |
| 14 #include "src/compiler/node.h" | 13 #include "src/compiler/node.h" |
| 15 #include "src/compiler/opcodes.h" | 14 #include "src/compiler/opcodes.h" |
| 16 #include "src/compiler/operator.h" | 15 #include "src/compiler/operator.h" |
| 17 #include "src/compiler/schedule.h" | 16 #include "src/compiler/schedule.h" |
| 18 #include "src/compiler/scheduler.h" | 17 #include "src/compiler/scheduler.h" |
| 19 #include "src/compiler/simplified-operator.h" | 18 #include "src/compiler/simplified-operator.h" |
| 20 #include "src/compiler/verifier.h" | 19 #include "src/compiler/verifier.h" |
| 20 #include "src/compiler/visualizer.h" |
| 21 #include "test/cctest/cctest.h" | 21 #include "test/cctest/cctest.h" |
| 22 | 22 |
| 23 using namespace v8::internal; | 23 using namespace v8::internal; |
| 24 using namespace v8::internal::compiler; | 24 using namespace v8::internal::compiler; |
| 25 | 25 |
| 26 static Operator kIntAdd(IrOpcode::kInt32Add, Operator::kPure, "Int32Add", 2, 0, | 26 static Operator kIntAdd(IrOpcode::kInt32Add, Operator::kPure, "Int32Add", 2, 0, |
| 27 0, 1, 0, 0); | 27 0, 1, 0, 0); |
| 28 static Operator kIntLt(IrOpcode::kInt32LessThan, Operator::kPure, | 28 static Operator kIntLt(IrOpcode::kInt32LessThan, Operator::kPure, |
| 29 "Int32LessThan", 2, 0, 0, 1, 0, 0); | 29 "Int32LessThan", 2, 0, 0, 1, 0, 0); |
| 30 static Operator kStore(IrOpcode::kStore, Operator::kNoProperties, "Store", 0, 2, | 30 static Operator kStore(IrOpcode::kStore, Operator::kNoProperties, "Store", 0, 2, |
| (...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 TEST(LaManyNested_31) { RunManyNestedLoops_i(31); } | 1006 TEST(LaManyNested_31) { RunManyNestedLoops_i(31); } |
| 1007 TEST(LaManyNested_32) { RunManyNestedLoops_i(32); } | 1007 TEST(LaManyNested_32) { RunManyNestedLoops_i(32); } |
| 1008 TEST(LaManyNested_33) { RunManyNestedLoops_i(33); } | 1008 TEST(LaManyNested_33) { RunManyNestedLoops_i(33); } |
| 1009 TEST(LaManyNested_34) { RunManyNestedLoops_i(34); } | 1009 TEST(LaManyNested_34) { RunManyNestedLoops_i(34); } |
| 1010 TEST(LaManyNested_62) { RunManyNestedLoops_i(62); } | 1010 TEST(LaManyNested_62) { RunManyNestedLoops_i(62); } |
| 1011 TEST(LaManyNested_63) { RunManyNestedLoops_i(63); } | 1011 TEST(LaManyNested_63) { RunManyNestedLoops_i(63); } |
| 1012 TEST(LaManyNested_64) { RunManyNestedLoops_i(64); } | 1012 TEST(LaManyNested_64) { RunManyNestedLoops_i(64); } |
| 1013 | 1013 |
| 1014 | 1014 |
| 1015 TEST(LaPhiTangle) { LoopFinderTester t; } | 1015 TEST(LaPhiTangle) { LoopFinderTester t; } |
| OLD | NEW |