OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_GRAPH_BUILDER_H_ | 5 #ifndef V8_COMPILER_GRAPH_BUILDER_H_ |
6 #define V8_COMPILER_GRAPH_BUILDER_H_ | 6 #define V8_COMPILER_GRAPH_BUILDER_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
11 #include "src/compiler/common-operator.h" | 11 #include "src/compiler/common-operator.h" |
12 #include "src/compiler/graph.h" | 12 #include "src/compiler/graph.h" |
| 13 #include "src/compiler/node.h" |
13 #include "src/unique.h" | 14 #include "src/unique.h" |
14 | 15 |
15 namespace v8 { | 16 namespace v8 { |
16 namespace internal { | 17 namespace internal { |
17 | 18 |
18 class BitVector; | 19 class BitVector; |
19 | 20 |
20 namespace compiler { | 21 namespace compiler { |
21 | 22 |
22 class Node; | 23 class Node; |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 StructuredGraphBuilder* builder_; | 240 StructuredGraphBuilder* builder_; |
240 Node* control_dependency_; | 241 Node* control_dependency_; |
241 Node* effect_dependency_; | 242 Node* effect_dependency_; |
242 NodeVector values_; | 243 NodeVector values_; |
243 }; | 244 }; |
244 } | 245 } |
245 } | 246 } |
246 } // namespace v8::internal::compiler | 247 } // namespace v8::internal::compiler |
247 | 248 |
248 #endif // V8_COMPILER_GRAPH_BUILDER_H__ | 249 #endif // V8_COMPILER_GRAPH_BUILDER_H__ |
OLD | NEW |