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 #ifndef V8_COMPILER_JS_GENERIC_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_GENERIC_LOWERING_H_ |
6 #define V8_COMPILER_JS_GENERIC_LOWERING_H_ | 6 #define V8_COMPILER_JS_GENERIC_LOWERING_H_ |
7 | 7 |
8 #include "src/v8.h" | |
9 | |
10 #include "src/allocation.h" | 8 #include "src/allocation.h" |
11 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
12 #include "src/compiler/graph.h" | 10 #include "src/compiler/graph.h" |
13 #include "src/compiler/graph-reducer.h" | 11 #include "src/compiler/graph-reducer.h" |
14 #include "src/compiler/js-graph.h" | 12 #include "src/compiler/js-graph.h" |
| 13 #include "src/compiler/linkage.h" |
15 #include "src/compiler/opcodes.h" | 14 #include "src/compiler/opcodes.h" |
16 | 15 |
17 namespace v8 { | 16 namespace v8 { |
18 namespace internal { | 17 namespace internal { |
19 namespace compiler { | 18 namespace compiler { |
20 | 19 |
21 // Forward declarations. | 20 // Forward declarations. |
22 class CommonOperatorBuilder; | 21 class CommonOperatorBuilder; |
23 class MachineOperatorBuilder; | 22 class MachineOperatorBuilder; |
24 class Linkage; | 23 class Linkage; |
(...skipping 43 matching lines...) Loading... |
68 JSGraph* jsgraph_; | 67 JSGraph* jsgraph_; |
69 Linkage* linkage_; | 68 Linkage* linkage_; |
70 SetOncePointer<Node> centrystub_constant_; | 69 SetOncePointer<Node> centrystub_constant_; |
71 }; | 70 }; |
72 | 71 |
73 } // namespace compiler | 72 } // namespace compiler |
74 } // namespace internal | 73 } // namespace internal |
75 } // namespace v8 | 74 } // namespace v8 |
76 | 75 |
77 #endif // V8_COMPILER_JS_GENERIC_LOWERING_H_ | 76 #endif // V8_COMPILER_JS_GENERIC_LOWERING_H_ |
OLD | NEW |