| 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" | |
| 9 | |
| 10 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 11 #include "src/compiler/common-operator.h" | 9 #include "src/compiler/common-operator.h" |
| 12 #include "src/compiler/graph.h" | 10 #include "src/compiler/graph.h" |
| 13 #include "src/compiler/node.h" | 11 #include "src/compiler/node.h" |
| 14 #include "src/unique.h" | 12 #include "src/unique.h" |
| 15 | 13 |
| 16 namespace v8 { | 14 namespace v8 { |
| 17 namespace internal { | 15 namespace internal { |
| 18 namespace compiler { | 16 namespace compiler { |
| 19 | 17 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 private: | 73 private: |
| 76 Isolate* isolate_; | 74 Isolate* isolate_; |
| 77 Graph* graph_; | 75 Graph* graph_; |
| 78 }; | 76 }; |
| 79 | 77 |
| 80 } // namespace compiler | 78 } // namespace compiler |
| 81 } // namespace internal | 79 } // namespace internal |
| 82 } // namespace v8 | 80 } // namespace v8 |
| 83 | 81 |
| 84 #endif // V8_COMPILER_GRAPH_BUILDER_H__ | 82 #endif // V8_COMPILER_GRAPH_BUILDER_H__ |
| OLD | NEW |