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/effect-control-linearizer.h" | 5 #include "src/compiler/effect-control-linearizer.h" |
6 | 6 |
7 #include "src/code-factory.h" | 7 #include "src/code-factory.h" |
8 #include "src/compiler/access-builder.h" | 8 #include "src/compiler/access-builder.h" |
9 #include "src/compiler/compiler-source-position-table.h" | 9 #include "src/compiler/compiler-source-position-table.h" |
10 #include "src/compiler/graph-assembler.h" | |
11 #include "src/compiler/js-graph.h" | 10 #include "src/compiler/js-graph.h" |
12 #include "src/compiler/linkage.h" | 11 #include "src/compiler/linkage.h" |
13 #include "src/compiler/node-matchers.h" | 12 #include "src/compiler/node-matchers.h" |
14 #include "src/compiler/node-properties.h" | 13 #include "src/compiler/node-properties.h" |
15 #include "src/compiler/node.h" | 14 #include "src/compiler/node.h" |
16 #include "src/compiler/schedule.h" | 15 #include "src/compiler/schedule.h" |
17 | 16 |
18 namespace v8 { | 17 namespace v8 { |
19 namespace internal { | 18 namespace internal { |
20 namespace compiler { | 19 namespace compiler { |
(...skipping 2630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2651 return isolate()->factory(); | 2650 return isolate()->factory(); |
2652 } | 2651 } |
2653 | 2652 |
2654 Isolate* EffectControlLinearizer::isolate() const { | 2653 Isolate* EffectControlLinearizer::isolate() const { |
2655 return jsgraph()->isolate(); | 2654 return jsgraph()->isolate(); |
2656 } | 2655 } |
2657 | 2656 |
2658 } // namespace compiler | 2657 } // namespace compiler |
2659 } // namespace internal | 2658 } // namespace internal |
2660 } // namespace v8 | 2659 } // namespace v8 |
OLD | NEW |