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 <stdio.h> |
9 #include <iosfwd> | 9 #include <iosfwd> |
10 #include <memory> | 10 #include <memory> |
11 | 11 |
12 #include "src/base/smart-pointers.h" | |
13 | |
14 namespace v8 { | 12 namespace v8 { |
15 namespace internal { | 13 namespace internal { |
16 | 14 |
17 class CompilationInfo; | 15 class CompilationInfo; |
18 | 16 |
19 namespace compiler { | 17 namespace compiler { |
20 | 18 |
21 class Graph; | 19 class Graph; |
22 class InstructionSequence; | 20 class InstructionSequence; |
23 class RegisterAllocationData; | 21 class RegisterAllocationData; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 std::ostream& operator<<(std::ostream& os, const AsC1VCompilation& ac); | 73 std::ostream& operator<<(std::ostream& os, const AsC1VCompilation& ac); |
76 std::ostream& operator<<(std::ostream& os, const AsC1V& ac); | 74 std::ostream& operator<<(std::ostream& os, const AsC1V& ac); |
77 std::ostream& operator<<(std::ostream& os, | 75 std::ostream& operator<<(std::ostream& os, |
78 const AsC1VRegisterAllocationData& ac); | 76 const AsC1VRegisterAllocationData& ac); |
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_VISUALIZER_H_ | 82 #endif // V8_COMPILER_GRAPH_VISUALIZER_H_ |
OLD | NEW |