Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_AST_GRAPH_BUILDER_H_ | 5 #ifndef V8_COMPILER_AST_GRAPH_BUILDER_H_ |
| 6 #define V8_COMPILER_AST_GRAPH_BUILDER_H_ | 6 #define V8_COMPILER_AST_GRAPH_BUILDER_H_ |
| 7 | 7 |
| 8 #include "src/ast/ast.h" | 8 #include "src/ast/ast.h" |
| 9 #include "src/compiler/js-graph.h" | 9 #include "src/compiler/js-graph.h" |
| 10 #include "src/compiler/liveness-analyzer.h" | 10 #include "src/compiler/liveness-analyzer.h" |
| 11 #include "src/compiler/state-values-utils.h" | 11 #include "src/compiler/state-values-utils.h" |
| 12 | 12 |
| 13 namespace v8 { | 13 namespace v8 { |
| 14 namespace internal { | 14 namespace internal { |
| 15 | 15 |
| 16 // Forward declarations. | 16 // Forward declarations. |
| 17 class BitVector; | 17 class BitVector; |
| 18 | 18 class CompilationInfo; |
|
Yang
2016/05/13 07:07:20
lol... I guess it's because so far we always got i
Michael Starzinger
2016/05/13 08:42:40
Yes. There were several headers unwittingly relyin
| |
| 19 | 19 |
| 20 namespace compiler { | 20 namespace compiler { |
| 21 | 21 |
| 22 // Forward declarations. | 22 // Forward declarations. |
| 23 class ControlBuilder; | 23 class ControlBuilder; |
| 24 class Graph; | 24 class Graph; |
| 25 class LoopAssignmentAnalysis; | 25 class LoopAssignmentAnalysis; |
| 26 class LoopBuilder; | 26 class LoopBuilder; |
| 27 class Node; | 27 class Node; |
| 28 class TypeHintAnalysis; | 28 class TypeHintAnalysis; |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 592 | 592 |
| 593 // Prepare environment to be used as loop header. | 593 // Prepare environment to be used as loop header. |
| 594 void PrepareForLoop(BitVector* assigned, bool is_osr = false); | 594 void PrepareForLoop(BitVector* assigned, bool is_osr = false); |
| 595 }; | 595 }; |
| 596 | 596 |
| 597 } // namespace compiler | 597 } // namespace compiler |
| 598 } // namespace internal | 598 } // namespace internal |
| 599 } // namespace v8 | 599 } // namespace v8 |
| 600 | 600 |
| 601 #endif // V8_COMPILER_AST_GRAPH_BUILDER_H_ | 601 #endif // V8_COMPILER_AST_GRAPH_BUILDER_H_ |
| OLD | NEW |