| 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_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
| 6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
| 7 | 7 |
| 8 #include "v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "accessors.h" | 10 #include "src/accessors.h" |
| 11 #include "allocation.h" | 11 #include "src/allocation.h" |
| 12 #include "ast.h" | 12 #include "src/ast.h" |
| 13 #include "compiler.h" | 13 #include "src/compiler.h" |
| 14 #include "hydrogen-instructions.h" | 14 #include "src/hydrogen-instructions.h" |
| 15 #include "zone.h" | 15 #include "src/zone.h" |
| 16 #include "scopes.h" | 16 #include "src/scopes.h" |
| 17 | 17 |
| 18 namespace v8 { | 18 namespace v8 { |
| 19 namespace internal { | 19 namespace internal { |
| 20 | 20 |
| 21 // Forward declarations. | 21 // Forward declarations. |
| 22 class BitVector; | 22 class BitVector; |
| 23 class FunctionState; | 23 class FunctionState; |
| 24 class HEnvironment; | 24 class HEnvironment; |
| 25 class HGraph; | 25 class HGraph; |
| 26 class HLoopInformation; | 26 class HLoopInformation; |
| (...skipping 2783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2810 } | 2810 } |
| 2811 | 2811 |
| 2812 private: | 2812 private: |
| 2813 HGraphBuilder* builder_; | 2813 HGraphBuilder* builder_; |
| 2814 }; | 2814 }; |
| 2815 | 2815 |
| 2816 | 2816 |
| 2817 } } // namespace v8::internal | 2817 } } // namespace v8::internal |
| 2818 | 2818 |
| 2819 #endif // V8_HYDROGEN_H_ | 2819 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |