| 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_H_ | 5 #ifndef V8_COMPILER_GRAPH_H_ |
| 6 #define V8_COMPILER_GRAPH_H_ | 6 #define V8_COMPILER_GRAPH_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "src/compiler/generic-algorithm.h" | |
| 12 #include "src/compiler/node.h" | 11 #include "src/compiler/node.h" |
| 13 #include "src/compiler/node-aux-data.h" | 12 #include "src/compiler/node-aux-data.h" |
| 14 #include "src/compiler/source-position.h" | 13 #include "src/compiler/source-position.h" |
| 15 | 14 |
| 16 namespace v8 { | 15 namespace v8 { |
| 17 namespace internal { | 16 namespace internal { |
| 18 namespace compiler { | 17 namespace compiler { |
| 19 | 18 |
| 20 class GraphDecorator; | 19 class GraphDecorator; |
| 21 | 20 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 public: | 140 public: |
| 142 virtual ~GraphDecorator() {} | 141 virtual ~GraphDecorator() {} |
| 143 virtual void Decorate(Node* node) = 0; | 142 virtual void Decorate(Node* node) = 0; |
| 144 }; | 143 }; |
| 145 | 144 |
| 146 } // namespace compiler | 145 } // namespace compiler |
| 147 } // namespace internal | 146 } // namespace internal |
| 148 } // namespace v8 | 147 } // namespace v8 |
| 149 | 148 |
| 150 #endif // V8_COMPILER_GRAPH_H_ | 149 #endif // V8_COMPILER_GRAPH_H_ |
| OLD | NEW |