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/bytecode-branch-analysis.h" | 8 #include "src/compiler/bytecode-branch-analysis.h" |
9 #include "src/compiler/bytecode-loop-analysis.h" | 9 #include "src/compiler/bytecode-loop-analysis.h" |
| 10 #include "src/compiler/compiler-source-position-table.h" |
10 #include "src/compiler/js-graph.h" | 11 #include "src/compiler/js-graph.h" |
11 #include "src/compiler/liveness-analyzer.h" | 12 #include "src/compiler/liveness-analyzer.h" |
12 #include "src/compiler/source-position.h" | |
13 #include "src/compiler/state-values-utils.h" | 13 #include "src/compiler/state-values-utils.h" |
14 #include "src/compiler/type-hint-analyzer.h" | 14 #include "src/compiler/type-hint-analyzer.h" |
15 #include "src/interpreter/bytecode-array-iterator.h" | 15 #include "src/interpreter/bytecode-array-iterator.h" |
16 #include "src/interpreter/bytecode-flags.h" | 16 #include "src/interpreter/bytecode-flags.h" |
17 #include "src/interpreter/bytecodes.h" | 17 #include "src/interpreter/bytecodes.h" |
18 #include "src/source-position-table.h" | 18 #include "src/source-position-table.h" |
19 | 19 |
20 namespace v8 { | 20 namespace v8 { |
21 namespace internal { | 21 namespace internal { |
22 | 22 |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 static int const kBinaryOperationSmiHintIndex = 2; | 324 static int const kBinaryOperationSmiHintIndex = 2; |
325 | 325 |
326 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder); | 326 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder); |
327 }; | 327 }; |
328 | 328 |
329 } // namespace compiler | 329 } // namespace compiler |
330 } // namespace internal | 330 } // namespace internal |
331 } // namespace v8 | 331 } // namespace v8 |
332 | 332 |
333 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ | 333 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
OLD | NEW |