OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_BYTECODE_GRAPH_BUILDER_H_ | 5 #ifndef V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
6 #define V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ | 6 #define V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
7 | 7 |
8 #include "src/compiler.h" | 8 #include "src/compiler.h" |
9 #include "src/compiler/bytecode-branch-analysis.h" | 9 #include "src/compiler/bytecode-branch-analysis.h" |
10 #include "src/compiler/js-graph.h" | 10 #include "src/compiler/js-graph.h" |
| 11 #include "src/compiler/type-hint-analyzer.h" |
11 #include "src/interpreter/bytecode-array-iterator.h" | 12 #include "src/interpreter/bytecode-array-iterator.h" |
12 #include "src/interpreter/bytecode-flags.h" | 13 #include "src/interpreter/bytecode-flags.h" |
13 #include "src/interpreter/bytecodes.h" | 14 #include "src/interpreter/bytecodes.h" |
14 | 15 |
15 namespace v8 { | 16 namespace v8 { |
16 namespace internal { | 17 namespace internal { |
17 namespace compiler { | 18 namespace compiler { |
18 | 19 |
19 // The BytecodeGraphBuilder produces a high-level IR graph based on | 20 // The BytecodeGraphBuilder produces a high-level IR graph based on |
20 // interpreter bytecodes. | 21 // interpreter bytecodes. |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 ZoneVector<Node*> exit_controls_; | 241 ZoneVector<Node*> exit_controls_; |
241 | 242 |
242 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder); | 243 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder); |
243 }; | 244 }; |
244 | 245 |
245 } // namespace compiler | 246 } // namespace compiler |
246 } // namespace internal | 247 } // namespace internal |
247 } // namespace v8 | 248 } // namespace v8 |
248 | 249 |
249 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ | 250 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
OLD | NEW |