| 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_VISUALIZER_H_ | 5 #ifndef V8_COMPILER_GRAPH_VISUALIZER_H_ |
| 6 #define V8_COMPILER_GRAPH_VISUALIZER_H_ | 6 #define V8_COMPILER_GRAPH_VISUALIZER_H_ |
| 7 | 7 |
| 8 #include <stdio.h> |
| 8 #include <iosfwd> | 9 #include <iosfwd> |
| 9 | 10 |
| 10 namespace v8 { | 11 namespace v8 { |
| 11 namespace internal { | 12 namespace internal { |
| 12 | 13 |
| 13 class CompilationInfo; | 14 class CompilationInfo; |
| 14 | 15 |
| 15 namespace compiler { | 16 namespace compiler { |
| 16 | 17 |
| 17 class Graph; | 18 class Graph; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 std::ostream& operator<<(std::ostream& os, const AsDOT& ad); | 79 std::ostream& operator<<(std::ostream& os, const AsDOT& ad); |
| 79 std::ostream& operator<<(std::ostream& os, const AsC1VCompilation& ac); | 80 std::ostream& operator<<(std::ostream& os, const AsC1VCompilation& ac); |
| 80 std::ostream& operator<<(std::ostream& os, const AsC1V& ac); | 81 std::ostream& operator<<(std::ostream& os, const AsC1V& ac); |
| 81 std::ostream& operator<<(std::ostream& os, const AsC1VAllocator& ac); | 82 std::ostream& operator<<(std::ostream& os, const AsC1VAllocator& ac); |
| 82 | 83 |
| 83 } // namespace compiler | 84 } // namespace compiler |
| 84 } // namespace internal | 85 } // namespace internal |
| 85 } // namespace v8 | 86 } // namespace v8 |
| 86 | 87 |
| 87 #endif // V8_COMPILER_GRAPH_VISUALIZER_H_ | 88 #endif // V8_COMPILER_GRAPH_VISUALIZER_H_ |
| OLD | NEW |