| 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/compilation-dependencies.h" | 5 #include "src/compilation-dependencies.h" |
| 6 #include "src/compiler/js-graph.h" | 6 #include "src/compiler/js-graph.h" |
| 7 #include "src/compiler/js-typed-lowering.h" | 7 #include "src/compiler/js-typed-lowering.h" |
| 8 #include "src/compiler/machine-operator.h" | 8 #include "src/compiler/machine-operator.h" |
| 9 #include "src/compiler/node-properties.h" | 9 #include "src/compiler/node-properties.h" |
| 10 #include "src/compiler/opcodes.h" | 10 #include "src/compiler/opcodes.h" |
| 11 #include "src/compiler/operator-properties.h" | 11 #include "src/compiler/operator-properties.h" |
| 12 #include "src/compiler/simplified-operator.h" | 12 #include "src/compiler/simplified-operator.h" |
| 13 #include "src/compiler/typer.h" | 13 #include "src/compiler/typer.h" |
| 14 #include "src/factory.h" |
| 15 #include "src/isolate.h" |
| 16 #include "src/objects-inl.h" |
| 17 // FIXME(mstarzinger, marja): This is weird, but required because of the missing |
| 18 // (disallowed) include: src/type-feedback-vector.h -> |
| 19 // src/type-feedback-vector-inl.h |
| 20 #include "src/type-feedback-vector-inl.h" |
| 14 #include "test/cctest/cctest.h" | 21 #include "test/cctest/cctest.h" |
| 15 | 22 |
| 16 namespace v8 { | 23 namespace v8 { |
| 17 namespace internal { | 24 namespace internal { |
| 18 namespace compiler { | 25 namespace compiler { |
| 19 | 26 |
| 20 class JSTypedLoweringTester : public HandleAndZoneScope { | 27 class JSTypedLoweringTester : public HandleAndZoneScope { |
| 21 public: | 28 public: |
| 22 JSTypedLoweringTester( | 29 JSTypedLoweringTester( |
| 23 int num_parameters = 0, | 30 int num_parameters = 0, |
| (...skipping 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 CHECK_EQ(p1, r->InputAt(1)); | 1242 CHECK_EQ(p1, r->InputAt(1)); |
| 1236 } | 1243 } |
| 1237 } | 1244 } |
| 1238 } | 1245 } |
| 1239 } | 1246 } |
| 1240 } | 1247 } |
| 1241 | 1248 |
| 1242 } // namespace compiler | 1249 } // namespace compiler |
| 1243 } // namespace internal | 1250 } // namespace internal |
| 1244 } // namespace v8 | 1251 } // namespace v8 |
| OLD | NEW |