| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_CRANKSHAFT_HYDROGEN_H_ | 5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_ |
| 6 #define V8_CRANKSHAFT_HYDROGEN_H_ | 6 #define V8_CRANKSHAFT_HYDROGEN_H_ |
| 7 | 7 |
| 8 #include "src/accessors.h" | 8 #include "src/accessors.h" |
| 9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
| 10 #include "src/ast/ast.h" | 10 #include "src/ast/ast.h" |
| 11 #include "src/ast/scopes.h" | 11 #include "src/ast/scopes.h" |
| 12 #include "src/bailout-reason.h" | 12 #include "src/bailout-reason.h" |
| 13 #include "src/compiler.h" | 13 #include "src/compiler.h" |
| 14 #include "src/crankshaft/compilation-phase.h" |
| 14 #include "src/crankshaft/hydrogen-instructions.h" | 15 #include "src/crankshaft/hydrogen-instructions.h" |
| 15 #include "src/zone.h" | 16 #include "src/zone.h" |
| 16 | 17 |
| 17 namespace v8 { | 18 namespace v8 { |
| 18 namespace internal { | 19 namespace internal { |
| 19 | 20 |
| 20 // Forward declarations. | 21 // Forward declarations. |
| 21 class BitVector; | 22 class BitVector; |
| 22 class FunctionState; | 23 class FunctionState; |
| 23 class HEnvironment; | 24 class HEnvironment; |
| (...skipping 2998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3022 | 3023 |
| 3023 private: | 3024 private: |
| 3024 HGraphBuilder* builder_; | 3025 HGraphBuilder* builder_; |
| 3025 }; | 3026 }; |
| 3026 | 3027 |
| 3027 | 3028 |
| 3028 } // namespace internal | 3029 } // namespace internal |
| 3029 } // namespace v8 | 3030 } // namespace v8 |
| 3030 | 3031 |
| 3031 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3032 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
| OLD | NEW |